@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --primary-color: #F6B53D;
    --secondary-color: #f59e0b;
}
html {
  scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif; 
}


header.stickyhead {
    background-color: #fff;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .nav-logo img {
    transition: all 0.5s ease-in-out;
}

header.stickyhead .nav-logo img {
    max-width: 80px;
}

.tx-prime {
    color: var(--primary-color);
}


.container {
    max-width: 1700px;
    padding: 0 20px;
    margin: 0 auto;
}

.box1 {
    transform: translate(-25px, 195px);
}

.box3 {
    transform: translate(25px, 222px);
}

.content-dec {
    top: -150px;
}

@media (min-width:1800px) {
    .container {
        max-width: 1650px;
    }
    .w-500px{
        width: 600px;
    }

}

@media (max-width:1920px) {
    .container {
        max-width: 1650px;
    }

}

@media (max-width:1699px) {
    .container {
        max-width: 1536px;
    }
}

@media (max-width:1536px) {
    .container {
        max-width: 1400px;
    }
}


@media (max-width:1440px) {
    .container {
        max-width: 1300px;
    }

    .box1 {
        transform: translate(-25px, 160px);
    }

    .box3 {
        transform: translate(25px, 194px);
    }
}

@media (max-width:1366px) {
    .container {
        max-width: 1280px;
    }

}



@media (max-width:1280px) {
    .container {
        max-width: 1190px;
    }

    .box1 {
        transform: translate(-25px, 140px);
    }

    .box3 {
        transform: translate(25px, 175px);
    }
}

@media (max-width:992px) {
    .container {
        max-width: 850px;
    }

    .box1 {
        transform: translate(-14px, 128px);
    }

    .box2 {
        transform: translate(0px, 51px);
    }

    .box3 {
        transform: translate(15px, 186px);
    }

    .box2 .txt,
    .box1 .txt,
    .box3 .txt {

        margin-top: 20px;
    }

    .content-dec .img {
        width: 80px;
        margin: auto;
    }

    .content-dec .txt p {
        font-size: 12px;
    }
}

@media (max-width:768px) {
    .container {
        max-width: 767px;
    }

    .box1 {
        transform: translate(-14px, 116px);
    }

    .box2 {
        transform: translate(0px, 51px);
    }

    .box3 {
        transform: translate(15px, 164px);
    }

    .box2 .txt,
    .box1 .txt,
    .box3 .txt {

        margin-top: 20px;
    }

    .content-dec .img {
        width: 80px;
        margin: auto;
    }

    .content-dec .txt p {
        font-size: 12px;
    }
}

@media (max-width:767px) {
    .content-dec {
        position: static;
    }

    .content-dec>div {
        transform: inherit;
        padding: 30px;
        border-radius: 10px;
        border: 5px solid var(--primary-color);
        margin-bottom: 20px;
    }

    .content-dec .txt {
        padding-left: 0;
        padding-right: 0;
    }

    .content-dec .txt h2 {
        font-size: 25px;
    }

    .content-dec .txt p {
        font-size: 16px;
    }

    footer .grid-sector {
        gap: 20px;
    }

    footer .grid-sector .bx {
        border: none;
    }
}