* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    color: #141414;
    scroll-behavior: smooth;
}

body {
    background-color: #fff;
}

section {
    padding: 0 20px;
}

.container {
    margin: 0 auto;
    max-width: 1500px;
    width: 100%;
    overflow: hidden;
}

.horizontal-divider {
    width: 100%;
    height: 1px;
    background-color: #141414;
    margin-top: 140px;
    margin-bottom: 20px;
}

.horizontal-divider.first {
    margin-top: 60px;
}

.header {
    padding-top: 40px;
    overflow: hidden;
}

.header h1 {
    font-size: 60px;
    line-height: 90px;
    font-weight: 500;
    color: #141414;
    margin-bottom: 60px;
}

.header .page {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 60px;
}

.header .page p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    color: #141414;
    opacity: 100%;
}

.header .page a {
    text-decoration: none;
    transition: all ease 300ms;
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    color: #141414;
    opacity: 70%;
}

.header .page a:hover {
    opacity: 100%;
}

.header .page-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header .page-nav p {
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    color: #141414;
}

.header .page-nav a {
    color: #141414;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    text-decoration: none;
    opacity: 40%;
    transition: all ease 300ms;
}

.header .page-nav a:hover {
    opacity: 100%;
}

.about h2 {
    margin: 0 0 50px;
    font-size: 32px;
    line-height: 38px;
    font-weight: 500;
}

.about-flex {
    display: flex;
    gap: 40px;
    position: relative; 
    margin-bottom: 70px;
}

.about-flex .text-wrap {
    width: 40%;
    position: relative;
}

.about-flex .img-wrap {
    width: 60%;
}

.about-flex .img-wrap img {
    width: 100%;
}

.about-flex .text-wrap h5 {
    margin: 0 0 20px;
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
}

.about-flex .text-wrap p {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: .5px;
}

.about-flex .text-wrap .text-sticky {
    position: sticky;
    top: 30px;
}

.offer {
    padding-bottom: 140px;
}

.offer h2 {
    margin: 0 0 50px;
    font-size: 32px;
    line-height: 38px;
    font-weight: 500;
}

.offer p {
    font-size: 20px;
    max-width: 730px;
}

.offer .benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
    /* margin-bottom: 140px; */
}

.offer .benefit-grid .item {
    padding: 30px;
    /* background-color: rgba(0, 0, 0, 0.05); */
    background-color: #DADCD1;
}

.offer .benefit-grid .item h5 {
    margin-bottom: 14px;
    font-size: 22px;
    line-height: 30px;
    font-weight: 400;
}

.offer .benefit-grid .item p {
    font-size: 16px;
    line-height: 24px;
    /* font-weight: 300; */
    opacity: 80%;
}

.offer .offer-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

.offer .offer-flex h2 {
    margin-bottom: 25px;
    font-size: 38px;
    line-height: 57px;
}

.offer .offer-flex p {
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 30px;
}

.offer .offer-flex .cta {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 10px;
}

.offer .offer-flex .cta p {
    font-weight: 500;
    margin: 0;
}

.offer .offer-divider {
    width: 100%;
    height: 1px;
    background-color: #000;
    margin-top: 100px;
    margin-bottom: 100px;
}

.offer .offer-flex .left {
    width: 50%;
}

.offer .offer-flex .right {
    width: 710px;
    min-width: 710px;
    position: relative;
}

.offer .offer-flex .right img {
    width: 100%;
}

.dot {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    background-color: rgba(218, 220, 209, 0.40);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    transition: all ease 400ms;
}

.dot .main-dot {
    width: 12px;
    height: 12px;
    min-height: 12px;
    min-width: 12px;
    background-color: #DADCD1;
    border-radius: 6px;
}

.dot:hover {
    transform: scale(1.3);
}

.dot.first {
    top: 326px;
    left: 307px;
}

.dot.second {
    top: 410px;
    left: 420px;
}

.dot.third {
    top: 415px;
    left: 492px;
}

.dot.fourth {
    top: 485px;
    left: 412px;
}

.dot.fifth {
    top: 558px;
    left: 355px;
}

.calc {
    padding-bottom: 200px;
}

.calc h2 {
    margin-bottom: 20px;
    font-size: 28px;
    line-height: 42px;
    font-weight: 500;
}

.calc p {
    max-width: 639px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 80px;
    opacity: 80%;
}

.calc-cont {
    width: 100%;
    border: 1px solid #000;
    padding: 50px;
    text-align: center;
    background-color: #DADCD1;
}

.calc-content {
    max-width: 870px;
    margin: 0 auto;
}

.calc-content h3 {
    margin: 0 0 14px;
    font-size: 28px;
    line-height: 42px;
    font-weight: 500;
}

.calc-content p {
    margin: 0 auto 40px;
    max-width: 556px;
    font-size: 16px;
    line-height: 24px;
    color: #141414;
    opacity: 80%;
}

.calc-content .form {
    width: 100%;
}

.calc-content .form .fields {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.calc-content .form .fields .field {
    width: 100%;
    text-align: left;
}

.calc-content .form .fields .field label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 21px;
    color: #141414;
    font-weight: 500;
}

.calc-content .form .fields .field input {
    width: 100%;
    border: 1px solid #000;
    background-color: transparent;
    padding: 14px;
    font-size: 16px;
    line-height: 18px;
    color: #141414;
    outline: none;
}

.calc-content .form .fields .field input::placeholder {
    opacity: 30%;
}

.calc-content .form button {
    cursor: pointer;
    transition: all ease 300ms;
    background-color: #141414;
    border: 1px solid #141414;
    outline: none;
    color: #fff;
    padding: 14px 36px;
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    margin-bottom: 8px;
}

.calc-content .form button:hover {
    background-color: transparent;
    color: #141414;
}

.calc-content .form .caption {
    margin: 0;
    max-width: none;
    font-size: 14px;
    line-height: 21px;
}

.offer .showcase-wrap {
    width: 200px;
    background-color: #fff;
    padding: 15px;
    border: 1px solid #000;
    position: absolute;
}

.offer .showcase-wrap h5 {
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
}

.offer .showcase-wrap.one {
    top: 68px;
    right: 289px;
    display: none;
}

.offer .showcase-wrap.two {
    top: 153px;
    right: 182px;
    display: none;
}

.offer .showcase-wrap.three {
    top: 132px;
    right: 105px;
    display: none;
}

.offer .showcase-wrap.four {
    top: 203px;
    right: 185px;
    display: none;
}

.offer .showcase-wrap.five {
    top: 301px;
    right: 243px;
    display: none;
}

.offer .showcase-wrap p {
    font-size: 14px;
    line-height: 20px;
    margin-top: 6px;
    text-decoration: underline;
    color: #141414;
    cursor: pointer;
    margin-bottom: 0;
    transition: all ease-in 300ms;
}

.offer .showcase-wrap p:hover {
    opacity: 60%;
}

.offer .line {
    width: 100px;
    height: 2px;
    background-color: #000;
    position: absolute;
}

@media screen and (max-width: 1250px) {
    .offer .offer-flex .right {
        width: 510px;
        min-width: 510px;
        position: relative;
    }

    .dot.first {
        top: 256px;
        left: 241px;
    }

    .dot.second {
        top: 289px;
        left: 290px;
    }

    .dot.third {
        top: 295px;
        left: 349px;
    }

    .dot.fourth {
        top: 341px;
        left: 287px;
    }

    .dot.fifth {
        top: 395px;
        left: 255px;
    }

    .offer .showcase-wrap.one {
        top: -5px;
        right: 166px;
    }

    .offer .showcase-wrap.two {
        top: 30px;
        right: 121px;
    }

    .offer .showcase-wrap.three {
        top: 12px;
        right: 55px;
    }

    .offer .showcase-wrap.four {
        top: 58px;
        right: 123px;
    }

    .offer .showcase-wrap.five {
        top: 137px;
        right: 150px; 
    }
}

@media screen and (max-width: 1000px) {
    .about-flex {
        align-items: center;
    }

    .offer h2 {
        margin: 0 0 20px;
    }

    .offer .offer-flex h2 {
        margin-bottom: 20px;
        font-size: 32px;
        line-height: 46px;
    }

    .offer .offer-flex {
        flex-direction: column;
        gap: 50px;
    }

    .offer .offer-flex .left {
        width: 100%;
    }

    .offer .offer-flex .right {
        width: 100%;
    }

    .offer .offer-flex .right .main-image {
        height: 940px;
        width: 100%;
        object-fit: cover;
        object-position: center;
        min-height: 940px;
    }

    .dot.first {
        top: 456px;
        left: 46%;
    }

    .dot.second {
        top: 543px;
        left: 60%;
    }

    .dot.third {
        top: 546px;
        left: 72%;
    }

    .dot.fourth {
        top: 627px;
        left: 57%;
    }

    .dot.fifth {
        top: 725px;
        left: 51%;
    }
    
    .offer .showcase-wrap.one {
        top: 195px;
        right: 43%;
    }

    .offer .showcase-wrap.two {
        top: 283px;
        right: 29%;
    }

    .offer .showcase-wrap.three {
        top: 258px;
        right: 17%;
    }

    .offer .showcase-wrap.four {
        top: 340px;
        right: 32%;
    }

    .offer .showcase-wrap.five {
        top: 463px;
        right: 38%;
    }
}

@media screen and (max-width: 800px) {
    .about-flex {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 50px;
    }

    .about-flex .text-wrap {
        width: 100%;
        position: relative;
    }

    .about-flex .img-wrap {
        width: 100%;
        order: 1;
    }

    .offer .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
        /* margin-bottom: 140px; */
    }
    
    .offer .offer-divider {
        margin-top: 100px;
        margin-bottom: 40px;
    }

    .offer .offer-flex .cta img {
        transform: rotate(90deg);
    }
}

@media screen and (max-width: 700px) {
    .calc-content p {
        margin: 0 auto 20px;
        max-width: none;
    }

    .calc-cont {
        padding: 40px;
    }

    .calc-content .form .fields {
        flex-direction: column;
        gap: 20px;
    }

    .calc {
        padding-bottom: 140px;
    }

    .header h1 {
        font-size: 50px;
        line-height: 60px;
    }
}

@media screen and (max-width: 600px) {
    .offer .benefit-grid {
        grid-template-columns: repeat(1, 1fr);
        /* margin-bottom: 140px; */
    }

    .offer .offer-flex .right .main-image {
        height: 640px;
        min-height: 640px;
    }

    .dot.first {
        top: 326px;
        left: 46%;
    }

    .dot.second {
        top: 365px;
        left: 60%;
    }

    .dot.third {
        top: 371px;
        left: 72%;
    }

    .dot.fourth {
        top: 427px;
        left: 57%;
    }

    .dot.fifth {
        top: 494px;
        left: 51%;
    }

    .offer .offer-flex .cta img {
        display: none;
    }

    .offer .showcase-wrap.one {
        top: 66px;
        left: 46%;
        right: none;
        transform: translateX(-50%);
    }

    .offer .showcase-wrap.two {
        top: 107px;
        left: 60%;
        transform: translateX(-50%);
    }

    .offer .showcase-wrap.three {
        transform: translateX(-50%);
        top: 84px;
        left: 72%;
    }

    .offer .showcase-wrap.four {
        transform: translateX(-50%); 
        top: 144px;
        left: 57%;
    }

    .offer .showcase-wrap.five {
        transform: translateX(-50%);
        top: 235px;
        left: 51%;
    }
}

@media screen and (max-width: 500px) {
    .calc-cont {
        padding: 40px 20px;
    }

    .calc-content .form button {
        width: 100%;
    }

    .offer .offer-flex p {
        margin-bottom: 20px;
        font-size: 20px;
        line-height: 28px;
    }

    .offer .offer-flex p {
        font-size: 18px;
        line-height: 26px;
    }

    .offer .showcase-wrap p {
        font-size: 14px;
                margin: 6px 0 0 ;
        line-height: 20px;
    }
}

@media screen and (max-width: 460px) {
    .offer .showcase-wrap.three {
        top: 88px;
        left: 59%;
    }
}

@media screen and (max-width: 410px) {
    .header h1 {
        font-size: 40px;
        line-height: 50px;
    }
}


