html {
    scroll-behavior: smooth
}

.about-section {
    background: #f4f1eb;
    color: #111;
    padding: 120px 5%
}

.about-container {
    max-width: 1450px;
    margin: auto
}

.about-top {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 65px
}

.about-number {
    font-size: 11px;
    color: #777
}

.about-label {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 2.5px;
    font-weight: 600;
    white-space: nowrap
}

.about-line {
    width: 100%;
    height: 1px;
    background: #d2cfc8
}

.about-heading {
    max-width: 1200px;
    margin-bottom: 90px
}

.about-heading h2 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(45px, 6vw, 90px);
    font-weight: 500;
    line-height: 1.03;
    letter-spacing: -5px
}

.about-heading h2 span {
    color: #99958e
}

.about-content {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 4%;
    align-items: start
}

.about-image {
    position: relative;
    height: 580px;
    overflow: hidden
}

.about-image img {
    width: 100%;
    height: 115%;
    object-fit: cover;
    display: block;
    transition: transform 1s cubic-bezier(.16, 1, .3, 1)
}

.about-image:hover img {
    transform: scale(1.03)
}

/* .about-image-tag {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 145px;
    height: 145px;
    background: #b8ff5a;
    color: #111;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.about-image-tag span {
    text-transform: uppercase;
    font-size: 9px;
    letter-spacing: 2px;
    margin-bottom: 5px
}

.about-image-tag strong {
    font-family: "Manrope", sans-serif;
    font-size: 32px;
    font-weight: 500
} */

.about-info {
    padding-bottom: 10px
}

.about-small-title {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 35px
}

.about-info p {
    font-size: 17px;
    line-height: 1.8;
    color: #686560;
    margin-bottom: 22px
}

.about-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 230px;
    margin-top: 45px;
    padding-bottom: 12px;
    border-bottom: 1px solid #111;
    font-size: 13px;
    font-weight: 500
}

.about-link i {
    font-style: normal;
    font-size: 18px;
    transition: .3s
}

.about-link:hover i {
    transform: translate(5px, 5px)
}

/* .about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 110px;
    border-top: 1px solid #cbc8c1;
    border-bottom: 1px solid #cbc8c1
}

.about-stat {
    position: relative;
    padding: 45px 30px;
    border-right: 1px solid #cbc8c1
}

.about-stat:first-child {
    padding-left: 0
}

.about-stat:last-child {
    border-right: 0
}

.about-stat .stat-number {
    font-family: "Manrope", sans-serif;
    font-size: 60px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: -3px
}

.about-stat sup {
    font-size: 25px;
    color: #6c9f2d;
    vertical-align: top
}

.about-stat p {
    margin-top: 18px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #777
} */

@media(max-width:900px) {
    .about-section {
        padding: 90px 6%
    }

    .about-heading {
        margin-bottom: 60px
    }

    .about-heading h2 {
        letter-spacing: -3px
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px
    }

    .about-image {
        height: 500px
    }

    .about-info {
        max-width: 600px
    }

    /* .about-stats {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 80px
    } */

    .about-stat:nth-child(2) {
        border-right: 0
    }

    .about-stat:nth-child(1),
    .about-stat:nth-child(2) {
        border-bottom: 1px solid #cbc8c1
    }

    .about-stat:first-child {
        padding-left: 30px
    }
}

@media(max-width:550px) {
    .about-section {
        padding: 75px 6%
    }

    .about-top {
        margin-bottom: 45px
    }

    .about-heading h2 {
        font-size: 42px;
        letter-spacing: -2px
    }

    .about-image {
        height: 390px
    }

    /* .about-image-tag {
        width: 110px;
        height: 110px
    } 

    .about-image-tag strong {
        font-size: 25px
    }*/

    .about-info p {
        font-size: 15px
    }

    /* .about-stats {
        grid-template-columns: 1fr
    } */

    .about-stat {
        border-right: 0;
        border-bottom: 1px solid #cbc8c1 !important;
        padding: 35px 0 !important
    }

    .about-stat:last-child {
        border-bottom: 0 !important
    }

    .about-stat .stat-number {
        font-size: 50px
    }
}