* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* Gotham Light */
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

/* Gotham Light Italic */
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-LightItalic.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
}

/* Gotham Book */
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Book.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

/* Gotham Book Italic */
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-BookItalic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}

/* Gotham Medium */
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

/* Gotham Medium Italic */
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-MediumItalic.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
}

/* Gotham Bold */
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

/* Gotham Bold Italic */
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-BoldItalic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
}

/* Gotham Black */
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Black.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

/* Gotham Black Italic */
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-BlackItalic.otf') format('opentype');
    font-weight: 800;
    font-style: italic;
}

/* Gotham Ultra */
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Ultra.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

/* Gotham Ultra Italic */
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-UltraItalic.otf') format('opentype');
    font-weight: 900;
    font-style: italic;
}

/* Gotham XLight */
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-XLight.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
}

/* Gotham XLight Italic */
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-XLightItalic.otf') format('opentype');
    font-weight: 200;
    font-style: italic;
}

/* Gotham Thin */
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Thin.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
}

/* Gotham Thin Italic */
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-ThinItalic.otf') format('opentype');
    font-weight: 100;
    font-style: italic;
}

/* Header */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 90px;
    background: #fff;
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;
}

.navbar ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 34px;
}

.navbar a {
    color: #333;
    font-family: Lato;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    /* 177.778% */
    text-decoration: none;
}

.logo img {
    width: 260px;
    object-fit: cover;
}

.navbar button {
    background: #A17435;
    border: none;
}

.navbar button a {
    display: block;
    padding: 20px 33px;
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.mobile-menu {
    display: none;
}

.burger {
    width: 30px;
    height: 15px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    display: none;
}

.burger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #333;
    position: absolute;
    transition: all 0.3s ease-in-out;
    border-radius: 3px;
}

.burger span:nth-child(1) {
    top: 0;
}

.burger span:nth-child(2) {
    bottom: 0;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
}

.burger.active span:nth-child(2) {
    transform: rotate(-45deg);
    bottom: 4px;
}

/* Hero section */
.hero-section {
    width: 100%;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.hero-section>img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 26px;
    padding: 300px 100px;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.00) 0%, #000 100%);
}

.hero-section h2 {
    display: flex;
    flex-direction: column;
    color: #FFF;
    font-family: Gotham;
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 84px;
    /* 140% */
    text-transform: capitalize;
}

.hero-section p {
    width: 559px;
    color: #FFF;
    font-family: Gotham;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px;
    /* 188.889% */
}

/* Reasons to choose Square Gold Trading */
.choose-wrapper {
    width: 100%;
    display: flex;
}

.choose-content {
    width: 55%;
    background: #222;
    padding: 120px 0 120px 90px;
    position: relative;
}

.choose-content h3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
    color: #FFF;
    font-family: Gotham;
    font-size: 54px;
    font-style: normal;
    font-weight: 700;
    line-height: 73px;
    /* 135.185% */
    text-transform: capitalize;
}

.choose-points {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 15px;
    align-items: baseline;
    padding-right: 20px;
}

.choose-points img {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.choose-points p {
    color: #FFF;
    font-family: Gotham;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 50px;
    /* 277.778% */
}

.img-wrapper {
    width: 45%;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.earing {
    width: 179px;
    position: absolute;
    right: 50px;
    top: 70px;
}

.earing img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Our Services */
.services-wrapper {
    width: 100%;
    padding: 180px 90px 0;
}

.services-wrapper h3 {
    color: #333;
    font-family: Gotham;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 74px;
    /* 115.625% */
    text-transform: capitalize;
    text-align: center;
}

.services-container {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 27px;
}

.service-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.service-img {
    padding: 17px;
    border: 0.984px solid #000;
}

.service-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.service-card h5 {
    color: #000;
    font-family: Gotham;
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.service-card p {
    color: #6A6A6A;
    font-family: Gotham;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    /* 177.778% */
    padding-right: 12px;
}

/* Contact Us */
.contact-wrapper {
    width: 100%;
    padding: 180px 90px;
}

.contact-container {
    width: 100%;
    padding: 58px;
    border: 1px solid #fff;
    box-shadow: 0px 1px 15px rgba(0, 0, 0, 0.15);
    border-radius: 16px;
    display: flex;
    gap: 40px;
}

.phone-img,
.contact-form {
    width: 50%;
}

.phone-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.contact-form h4 {
    color: #161616;
    font-family: Gotham;
    font-size: 54px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    /* 64.8px */
}

.contact-form p {
    color: #1E1E1E;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    /* 160% */
    margin: 14px 0 24px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}

.contact-form form>div {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form form label {
    color: #1E1E1E;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    /* 160% */
}

.contact-form form input {
    padding: 17px 20px;
    border-radius: 12px;
    border: 0.5px solid rgba(151, 151, 151, 0.10);
    background: #F7F7F7;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.05);
    color: #DCDCDC;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    /* 145.455% */
    outline: none;
}

.contact-form form ::placeholder {
    color: #DCDCDC;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    /* 145.455% */
}

.contact-form form textarea {
    padding: 17px 20px;
    border-radius: 12px;
    border: 0.5px solid rgba(151, 151, 151, 0.10);
    background: #F7F7F7;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.05);
    color: #DCDCDC;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    /* 145.455% */
    resize: none;
    height: 164px;
}

.contact-form form button {
    padding: 19px 40px;
    background: #A17435;
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
}

/* Footer */
.footer-wrapper {
    width: 100%;
    padding: 70px 90px 30px;
    background: #111010;
}

.footer-content {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 60px;
}

.about-us h6 {
    color: #FFF;
    font-family: Gotham;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 50px 0 20px;
}

.about-us p {
    width: 315px;
    color: #FFF;
    font-family: Gotham;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 155.556% */
}

.footer-content h5 {
    color: #FFF;
    font-family: Gotham;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 50px;
    white-space: nowrap;
}

.quick-menu ul {
    display: flex;
    flex-direction: column;
    list-style: none;
}

.quick-menu ul li a {
    color: #FFF;
    font-family: Gotham;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px;
    /* 211.111% */
    text-decoration: none;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-info>div {
    display: flex;
    gap: 15px;
}

.contact-info a {
    color: #FFF;
    font-family: Gotham;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    /* 144.444% */
    text-decoration: none;
}

.contact-info p {
    width: 258px;
    color: #FFF;
    font-family: Gotham;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    /* 144.444% */
}

.contact-info h6 {
    color: #FFF;
    font-family: Gotham;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    /* 130% */
}

.email-wrapper {
    display: flex;
    flex-direction: column;
}

.number-wrapper {
    display: flex;
    gap: 30px;
}

.icon-bg {
    display: inline-flex;
    width: 26px;
    height: 26px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 27.368px;
    border: 0.274px solid #FFF;
    background: rgba(255, 255, 255, 0.10);
}

.social-media>div {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.social-media>div>a {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.social-icon-wrapper {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.10);
    border: 0.4px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-media h6 {
    color: #FFF;
    font-family: Gotham;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 111.111% */
}

.line {
    width: 100%;
    height: 1px;
    background-color: #fff;
    margin: 130px 0 30px;
}

.copyright {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.copyright p {
    color: var(--White, #FFF);
    text-align: center;
    font-family: Gotham;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 1440px) {
    .navbar {
        padding: 18px 60px;
    }

    .hero-content {
        padding: 250px 80px;
    }

    .choose-content {
        padding-left: 60px;
    }

    .earing {
        width: 170px;
        right: 30px;
        top: 80px;
    }

    .services-wrapper {
        padding: 150px 70px 0;
    }

    .contact-wrapper {
        padding: 150px 70px;
    }

    .footer-wrapper {
        padding: 70px 70px 30px;
    }

    .about-us p {
        width: 272px;
    }
}

@media (max-width: 1280px) {
    .navbar {
        padding: 18px 45px;
    }

    .logo img {
        width: 220px;
    }

    .navbar ul {
        gap: 26px;
    }

    .navbar button a {
        padding: 18px 26px;
    }

    .hero-content {
        padding: 60px;
        justify-content: center;
    }

    .hero-section h2,
    .services-wrapper h3 {
        font-size: 50px;
        line-height: 66px;
    }

    .choose-content {
        padding-left: 50px;
    }

    .choose-content h3,
    .contact-form h4 {
        font-size: 42px;
        line-height: 56px;
    }

    .earing {
        width: 140px;
        right: 12px;
        top: 90px;
    }

    .services-wrapper {
        padding: 120px 60px 0;
    }

    .contact-wrapper {
        padding: 120px 60px;
    }

    .service-card h5 {
        font-size: 28px;
    }

    .service-card {
        gap: 22px;
    }

    .services-container {
        gap: 22px;
    }

    .footer-content {
        gap: 26px;
    }

    .footer-wrapper {
        padding: 60px 30px 24px;
    }

    .line {
        margin-bottom: 24px;
    }

    .about-us h6,
    .footer-content h5 {
        font-size: 24px;
    }

    .about-us p,
    .quick-menu ul li a,
    .contact-info a,
    .contact-info p,
    .social-media h6,
    .copyright p {
        font-size: 16px;
    }

    .contact-info h6 {
        font-size: 18px;
    }

    .number-wrapper {
        gap: 20px;
    }

    .contact-info,
    .social-media>div>a {
        gap: 12px;
    }

    .social-icon-wrapper {
        width: 30px;
        height: 30px;
    }

    .contact-form form label {
        font-size: 18px;
    }

    .contact-form form input {
        padding: 10px 16px;
        border-radius: 8px;
        font-size: 20px;
        line-height: normal;
    }

    .contact-form form ::placeholder {
        font-size: 20px;
        line-height: normal;
    }

    .contact-form form textarea {
        padding: 10px 16px;
        border-radius: 8px;
        font-size: 20px;
        height: 140px;
    }

    .contact-form form button {
        padding: 16px 36px;
    }

    .contact-container {
        padding: 50px 44px;
    }
}

@media (max-width: 1024px) {
    .navbar nav {
        display: none;
    }

    .burger {
        display: block;
    }

    .btn-wrapper {
        display: flex;
        gap: 30px;
        align-items: center;
    }

    .mobile-menu {
        display: block;
        position: absolute;
        background-color: #fff;
        padding: 20px;
        top: 80px;
        right: 0;
        opacity: 0;
        transition: ease all 0.3s;
        visibility: hidden;
    }

    .show {
        visibility: visible;
        opacity: 1;
    }

    .mobile-menu aside ul,
    .choose-wrapper,
    .contact-container {
        flex-direction: column;
    }

    .choose-wrapper>div,
    .contact-container>div {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: repeat(2, auto);
        gap: 30px;
    }

    .footer-content h5 {
        margin-bottom: 30px;
    }

    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .earing {
        width: 150px;
        right: unset;
        top: 120px;
        left: 420px;
    }


    .hero-content {
        padding: 50px;
    }

    .copyright {
        flex-direction: column;
        gap: 4px;
    }
}

@media (max-width: 768px) {
    .navbar button {
        display: none;
    }

    .hero-content {
        padding: 30px;
    }

    .hero-section h2,
    .services-wrapper h3 {
        font-size: 40px;
        line-height: normal;
    }

    .hero-section div {
        gap: 20px;
    }

    .choose-content h3,
    .contact-form h4 {
        font-size: 38px;
        line-height: normal;
    }

    .earing {
        top: 80px;
    }

    .choose-content {
        padding-left: 40px;
    }

    .services-wrapper {
        padding: 80px 40px 0;
    }

    .service-card h5 {
        font-size: 26px;
    }

    .contact-wrapper {
        padding: 80px 40px;
    }
}

@media (max-width: 640px) {
    .navbar {
        padding: 12px 26px;
    }

    .choose-content {
        padding: 40px 20px;
    }

    .mobile-menu {
        top: 65px;
    }

    .logo img {
        width: 160px;
    }

    .hero-section h2,
    .services-wrapper h3 {
        font-size: 36px;
    }

    .hero-content {
        padding: 20px;
    }

    .hero-section p,
    .choose-points p,
    .service-card p,
    .contact-form form label,
    .contact-form form input,
    .contact-form form textarea,
    .contact-form form ::placeholder {
        font-size: 16px;
        line-height: normal;
    }

    .service-card {
        gap: 14px;
    }

    .service-img {
        padding: 14px;
    }

    .choose-content h3,
    .contact-form h4 {
        font-size: 32px;
    }

    .choose-content h3 {
        margin-bottom: 12px;
    }

    .earing {
        width: 100px;
        right: 30px;
        top: 80px;
        left: unset;
    }

    .choose-points img {
        width: 15px;
        height: 15px;
    }

    .choose-points {
        gap: 12px;
    }

    .services-container {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }

    .contact-wrapper {
        padding: 60px 20px;
    }

    .contact-container {
        padding: 30px 20px;
    }

    .contact-form p {
        font-size: 18px;
        line-height: normal;
    }

    .services-wrapper {
        padding: 60px 20px 0;
    }

    .hero-section div {
        gap: 8px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .about-us p {
        width: 80%;
    }

    .line {
        margin-top: 80px;
    }

    .copyright p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {

    .hero-section h2,
    .services-wrapper h3 {
        font-size: 28px;
    }

    .choose-content h3,
    .contact-form h4 {
        font-size: 25px;
    }

    .choose-content h3 {
        margin-bottom: 14px;
    }

    .choose-points img {
        width: 13px;
        height: 13px;
    }

    .hero-section p,
    .choose-points p,
    .service-card p,
    .contact-form form label,
    .contact-form form input,
    .contact-form form textarea,
    .contact-form form ::placeholder,
    .about-us p,
    .quick-menu ul li a,
    .contact-info a,
    .contact-info p,
    .social-media h6,
    .copyright p {
        font-size: 14px;
    }

    .service-card h5 {
        font-size: 22px;
    }

    .contact-form p,
    .contact-info h6 {
        font-size: 16px;
    }

    .number-wrapper{
        flex-direction: column;
    }

    .contact-form form button {
        font-size: 12px;
        padding: 12px 30px;
    }

    .about-us h6,
    .footer-content h5 {
        font-size: 21px;
    }
}