html,
body{
    overflow-x:hidden;
    width:100%;
}

*,
*::before,
*::after{
    box-sizing:border-box;
}

img{
    max-width:100%;
    height:auto;
}

.container{
    overflow:hidden;
}

/*=== ABOUT HERO ===*/
.about-hero {
    background: #f8f6f3;
}

.about-content {
    padding-right: 70px;
}

.about-subtitle {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #8d8d8d;
    margin-bottom: 18px;
    font-weight: 600;
}

.about-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 55px;
    line-height: 1.02;
    font-weight: 500;
    color: #1f1f1f;
    margin-bottom: 20px;
}

.hero-line {
    width: 60px;
    height: 2px;
    background: #c8a56a;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 17px;
    line-height: 2;
    color: #555;
    margin-bottom: 20px;
}

.theme-btn {
    display: inline-block;
    background: #1f252b;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    text-decoration: none;
    transition: .35s;
}

.theme-btn:hover {
    background: #c8a56a;
    color: #fff;
}

.about-image {
    max-width: 650px;
    margin-left: auto;
}

.about-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 4px;
}

@media(max-width:991px) {
    .about-hero {
        padding: 50px 0;

    }

    .about-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .about-content h1 {
        font-size: 52px;
    }

    .about-image img {
        height: 450px;
    }
}

@media(max-width:767px) {
    .about-content h1 {
        font-size: 42px
    }

    .about-content p {
        font-size: 16px;
        line-height: 1.8;
    }

    .about-image img {
        height: 320px;
    }

    .theme-btn {
        padding: 13px 22px;
    }
}

/*=== WHO WE ARE ===*/
.about-company {
    padding: 20px 0;
    background: #fff;
}

.company-image {
    overflow: hidden;
}

.company-image img {
    width: 100%;
    display: block;
    height: 400px;
    object-fit: cover;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 35px;
    font-weight: 500;
    color: #1f1f1f;
    margin-bottom: 10px;
}

.about-features {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ebe6de;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-features {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ebe6de;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-feature {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.about-feature .feature-icon {
    width: 55px;
    height: 55px;
    border: 1px solid #e4d8c8;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #b89a63;
    font-size: 22px;
    flex-shrink: 0;
}

.about-feature h5 {
    font-size: 20px;
    margin-bottom: 8px;
    font-family: 'Cormorant Garamond', serif;
}

.about-company p {
    color: #666;
    line-height: 1.5;
    font-size: 14px;
    margin-bottom: 10px;
}

@media(max-width:991px) {
    .about-company {
        padding: 70px 0;
    }

    .company-image {
        margin-bottom: 40px;
    }

    .company-image img {
        height: 420px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .section-title {
        font-size: 42px;
    }
}

@media(max-width:767px) {
    .company-image img {
        height: 300px;
    }

    .section-title {
        font-size: 36px;
    }
}

/*=== TEAM SECTION ===*/
.team-section {
    padding: 20px 0;
    background: #f8f6f3;
}

.team-intro {
    color: #666;
    line-height: 1.9;
    font-size: 16px;
}

.team-card {
    background: #fff;
    border: 1px solid #ebe6de;
    transition: .35s;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
    border-color: #b89a63;
}

.team-image {
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 245px;
    object-fit: cover;
    transition: .5s;
}

.team-card:hover img {
    transform: scale(1.05);
}

.team-content {
    padding: 15px;
    ;
}

.team-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    margin-bottom: 0px;
    color: #1f1f1f;
    font-weight: 500;
}

.team-content span {
    display: block;
    color: #b89a63;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 0px;
}

.team-content p {
    color: #666;
    font-size: 15px;
    margin: 0;
}

.outline-btn {
    display: inline-block;
    padding: 14px 32px;
    border: 1px solid #222;
    color: #222;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: .35s;
    margin-top: 15px;
}

.outline-btn:hover {
    background: #222;
    color: #fff;
}

@media(max-width:991px) {
    .team-section {
        padding: 70px 0;
    }

    .team-image img {
        height: 300px;
    }

    .team-intro {
        margin-top: 20px;
    }
}

@media(max-width:767px) {
    .team-section {
        padding: 60px 0;
    }

    .team-image img {
        height: 280px;
    }

    .team-content h4 {
        font-size: 24px;
    }

    .outline-btn {
        width: 100%;
        text-align: center;
    }
}

/*=== STATISTICS ===*/
.about-stats {
    padding: 15px 0;
    background: #f3eee7;
    border-top: 1px solid #ebe6de;
    border-bottom: 1px solid #ebe6de;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 10px 30px;
    border-right: 1px solid #e6ddd2;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item i {
    font-size: 30px;
    color: #b89a63;
}

.stat-item h2 {
    margin: 0;
    font-size: 46px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}

.stat-item p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

/*=== VALUES ===*/
.values-section {
    padding: 10px 0;
}

.values-text {
    color: #666;
    line-height: 1.9;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.value-card {
    text-align: center;
    padding: 15px 15px;
    border-left: 1px solid #ebe6de;
}

.value-card:first-child {
    border-left: none;
}

.value-icon {
    width: 57px;
    height: 57px;
    margin: auto;
    border-radius: 50%;
    border: 1px solid #e5ddd1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #b89a63;
    margin-bottom: 10px;
}

.value-card h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    margin-bottom: 10px;
}

.value-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

@media(max-width:991px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        border-bottom: 1px solid #ebe6de;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 40px;
    }
}

@media(max-width:767px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        justify-content: flex-start;
        border-right: none;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        border-left: none;
        border-top: 1px solid #ebe6de;
    }

}







/* Large Desktop */
@media (max-width: 1399px) {}

/* Desktop */
@media (max-width: 1199px) {
    .about-hero {
        padding: 15px 0;
    }

    .about-subtitle {
        margin-bottom: 10px;
    }
    .about-content h1 {
        font-size: 34px;
    }

    .about-content h1 {
        margin-bottom: 15px;
    }

    .hero-line {
        margin-bottom: 15px;
    }

    .about-content {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .about-company {
        padding: 20px 0;
    }

    .g-5, .gy-5 {
        --bs-gutter-y: 1rem;
    }
}

/* Laptop */
@media (max-width: 991px) {
    .about-hero {
        padding: 15px 0;
    }

    .about-subtitle {
        margin-bottom: 10px;
    }
    .about-content h1 {
        font-size: 34px;
    }

    .about-content h1 {
        margin-bottom: 15px;
    }

    .hero-line {
        margin-bottom: 15px;
    }

    .about-content {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .about-company {
        padding: 20px 0;
    }

    .g-5, .gy-5 {
        --bs-gutter-y: 1rem;
    }
}

/* Tablet */
@media (max-width: 767px) {
    .about-hero {
        padding: 15px 0;
    }

    .about-subtitle {
        margin-bottom: 10px;
    }
    .about-content h1 {
        font-size: 34px;
    }

    .about-content h1 {
        margin-bottom: 15px;
    }

    .hero-line {
        margin-bottom: 15px;
    }

    .about-content {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .about-company {
        padding: 20px 0;
    }

    .g-5, .gy-5 {
        --bs-gutter-y: 1rem;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .about-hero {
        padding: 15px 0;
    }

    .about-subtitle {
        margin-bottom: 10px;
    }
    .about-content h1 {
        font-size: 34px;
    }

    .about-content h1 {
        margin-bottom: 15px;
    }

    .hero-line {
        margin-bottom: 15px;
    }

    .about-content {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .about-company {
        padding: 20px 0;
    }

    .g-5, .gy-5 {
        --bs-gutter-y: 1rem;
    }
    
}