@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&display=swap');

:root {
    --primary-orange: #FF5C2A;
    --secondary-orange: #F84007;
    --primary-red: #E63946;
    --footer-col: #050517;
    --light-yellow: #FFFC34;
    --yellow: #E6A83E;
    --dark-ass: #8E8D87;
    --light-ass: #C3C3C3;
    --white: #ffffff;
    --black: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: "Lexend Deca", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.55;
}

ul li {
    list-style: none;
}

a {
    text-decoration: none;
    display: block;
    max-width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.container {
    max-width: 1350px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}
.col70 {
    max-width: 70%;
    flex: 0 0 70%;
    padding: 0 15px;
}

.col30 {
    max-width: 30%;
    flex: 0 0 30%;
    padding: 0 15px;
}

.col60 {
    max-width: 60%;
    flex: 0 0 60%;
    padding: 0 15px;
}

.col25 {
    max-width: 25%;
    flex: 0 0 25%;
    padding: 0 25px;
}

.col40 {
    max-width: 40%;
    flex: 0 0 40%;
    padding: 0 15px;
}

.col50 {
    max-width: 50%;
    flex: 0 0 50%;
    padding: 0 15px;
}

.col33 {
    max-width: 33.333%;
    flex: 0 0 33.333%;
    padding: 0 15px;
}

.col100 {
    max-width: 100%;
    flex: 0 0 100%;
    padding: 0 15px;
}

h1 {
    font-family: "Lexend Deca", sans-serif;
    font-size: 90px;
    font-weight: 400;
    line-height: 1;
    color: var(--white);
}

h2 {
    font-family: "Lexend Deca", sans-serif;
    font-size: 57px;
    font-weight: 400;
    line-height: 1;
    color: var(--black);
}

.header {
    padding: 20px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-links {
    margin-left: auto;
}

.navlinks {
    display: flex;
    align-items: center;
}

.navlinks li {
    padding: 0 30px;
}

.navlinks li a {
    text-transform: capitalize;
    color: var(--black);
}

.navlinks li a:hover {
    color: var(--secondary-orange);
}

.cmn-btn {
    display: inline-block;
    background: var(--primary-orange);
    color: var(--white);
    padding: 20px 48px;
    transition: 0.5s ease;
    border-radius: 0;
    text-transform: capitalize;
}

.cmn-btn:hover {
    background: var(--primary-red);
}

.hamburger {
    position: absolute;
    right: 100px;
    display: none;
    cursor: pointer;
    width: 30px;
    height: 25px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.hamburger .bar {
    width: 30px;
    height: 3px;
    background-color: #000;
    transition: 0.3s;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.footer {
    background: var(--footer-col);
    color: var(--light-ass);
    padding: 80px 100px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 120px;
}

.footer-col {
    flex: 1;
    max-width: 100%;
}

.footer-brand {
    max-width: 100%;
}

.footer-logo img {
    max-width: 100%;
    margin-bottom: 17px;
}

.footer-brand p {
    font-size: 19px;
    line-height: 29px;
    margin-bottom: 44px;
}

.footer-socials a {
    margin-right: 15px;
    font-size: 13px;
    color: var(--light-ass);
    text-transform: uppercase;
}

.footer-socials a:hover {
    color: var(--white);
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li {
    color: var(--white);
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: var(--light-ass);
    font-size: 13px;
}

.footer ul li a:hover {
    color: var(--white);
}


.footer-email {
    color: var(--white);
    margin-bottom: 5px;
}

.footer small {
    font-size: 12px;
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid var(--light-ass);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: var(--light-ass);
}

.footer-bottom a {
    color: var(--light-ass);
}

.footer-bottom a:hover {
    color: white;
}

.top-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.top-image {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}
.contact-section {
    padding: 80px 0;
    background: var(--white);
}

.main-title {
    font-size: 47px;
    font-weight: 500;
    margin-bottom: 70px;
    padding-top: 80px;
}

.info-row h4 {
    font-size: 19px;
    margin-bottom: 12px;
}

.info-row p {
    font-size: 19px;
    color: var(--dark-ass);
}
.info-row a{
        font-size: 19px;
    color: var(--dark-ass);
}

/* DIVIDER */
hr {
    border: none;
    border-top: 1px solid var(--light-ass);
    margin: 50px 0;
}

/* CTA */
.cta-text {
    font-size: 47px;
    padding-top: 70px;
}

.cta-text a {
    color: var(--primary-orange);
    text-decoration: underline;
}

/* responsive */

@media (max-width: 768px){
        .footer-top {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 565px){
        .footer {
        padding: 50px 20px;
    }
}

@media (max-width: 320px){
        .footer-socials a {
        display: block;
        margin-bottom: 10px;
    }
}

@media (min-width: 1024px) {
    .top-image {
        max-height: 450px;
    }
}

@media (max-width: 480px) {
    .top-image img {
        height: 200px;
        object-fit: cover;
    }
}

@media (max-width: 1024px) {

    .main-title {
        font-size: 40px;
        margin-bottom: 50px;
        padding-top: 60px;
    }

    .cta-text {
        font-size: 40px;
        padding-top: 50px;
    }

    .col25 {
        max-width: 50%;
        flex: 0 0 50%;
        margin-bottom: 40px;
    }
}


@media (max-width: 767px) {

    .contact-section {
        padding: 60px 0;
    }

    .main-title {
        font-size: 34px;
        margin-bottom: 40px;
        padding-top: 40px;
    }

    .info-row {
        gap: 30px;
    }

    .col25 {
        max-width: 100%;
        flex: 0 0 100%;
        margin-bottom: 30px;
    }

    .info-row h4 {
        font-size: 18px;
    }

    .info-row p,
    .info-row a {
        font-size: 18px;
    }

    .cta-text {
        font-size: 32px;
        padding-top: 40px;
    }
}

@media (max-width: 552px) {

    .main-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    hr {
        margin: 40px 0;
    }

    .cta-text {
        font-size: 26px;
        padding-top: 30px;
        line-height: 1.4;
    }
}

@media (max-width: 320px) {

    .contact-section {
        padding: 50px 0;
    }

    .main-title {
        font-size: 24px;
    }

    .info-row h4 {
        font-size: 16px;
    }

    .info-row p,
    .info-row a {
        font-size: 16px;
    }

    .cta-text {
        font-size: 22px;
    }
}
@media (max-width: 995px) {

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .navbar-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #fff;
        transition: 0.4s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1000;
    }

    .navbar-links.active {
        right: 0;
    }

    .navlinks {
        flex-direction: column;
    }

    .navlinks li {
        padding: 20px 0;
    }

    .headerbtn {
        display: none;
    }
}