.about-hero-sec {
    margin-top: clamp(40px, 6.3vw, 63px);
    margin-bottom: clamp(40.74px, 6.6vw, 66px);
}

.about-hero-title {
    font-weight: 400;
    font-size: clamp(30.08px, 5.176vw, 51.76px);
    line-height: 1.1;
    letter-spacing: -1%;
    margin: 0;
}

.about-hero-row .hero-left {
    max-width: clamp(400px, 50.4vw, 504px);
}

.about-hero-row .hero-left img {
    border-radius: 5px;
    height: 100%;
    width: 100%;
    display: block;
    object-fit: cover;
}

.about-hero-row {
    margin-top: clamp(12.85px, 2vw, 20px);
    display: flex;
    align-items: stretch;
    justify-content: center;
    background-color: #DEC6B04D;

}

.about-hero-row strong {
    font-weight: 600;
    font-style: Italic;

    color: #1A4D2E;

}

.about-hero-row .hero-right {
    padding: 50px 40px 40px 58px;
    flex: 1;
}

.about-hero-row .hero-right p {
    font-weight: 300;
    font-size: clamp(15.33px, 2.4vw, 24px);
    line-height: 1.57;
    font-family: Source Serif Pro;
    letter-spacing: 1.5%;

}

.about-team-sec {
    padding-bottom: clamp(54.6px, 12.3vw, 123px);
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: clamp(26.39px, 5.3vw, 53px);
    column-gap: clamp(9.46px, 1.9vw, 19px);
}

.about-team-item {
    background-color: #9AA89E;
    position: relative;
    border-radius: 5px;

}

.about-team-title {
    font-family: Source Serif Pro;
    font-weight: 400;
    font-size: clamp(30.08px, 5.176vw, 51.76px);
    line-height: 1.1;
    letter-spacing: -1%;
    margin-bottom: clamp(14.53px, 3.5vw, 35px);

}

.about-team-item .avartar {
    border-radius: 5px;
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
    display: block;
    cursor: pointer;

}

.about-team-item-title .item-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.about-team-item-title .item-content p {
    font-family: Source Serif Pro;
    font-weight: 700;
    font-size:14px;
    line-height: 1;
    letter-spacing: -1%;
    margin: 0;
}

.about-team-item-title .item-content span {
    font-weight: 300;
    font-size:  12px;
    line-height: 100%;
    letter-spacing: -1%;

}

.about-team-item-title {
    box-shadow: 0px 4px 4px 0px #0000001A;
    backdrop-filter: blur(7.699999809265137px);
    background: #FFFFFFB2;
    position: absolute;
    bottom: clamp(-13px, -2.2vw,-22px);
    width: 88%;
    left: 49%;
    transform: translateX(-50%);
    padding: 14px 12px 14px 17px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}


.team-avatar {
    cursor: pointer;
}

.team-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.team-modal.active {
    opacity: 1;
    visibility: visible;
}

.team-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.team-modal-content {
    display: flex;
    align-items: flex-start;
    gap: 31px;
    position: relative;
    z-index: 1;
    width: 884px;
    max-width: 100%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transform: translateY(30px);
    transition: transform 0.4s ease;
    padding: clamp(20px, 4vw, 40px);
}

.team-modal.active .team-modal-content {
    transform: translateY(0);
}

.team-modal-image {
    background-color: #9AA89E;
    width: 235px;
    height: 235px;
}

.team-modal-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.team-modal-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    gap: 11px;
}

.team-modal-info p {
    white-space: pre-line;
}

.team-modal-info h2 {
    font-weight: 400;
    font-size: 35px;
    line-height: 38px;
    letter-spacing: -1%;
    margin: 0;
}



.team-modal-info p {
    font-family: Source Serif Pro;
    font-weight: 400;
    font-size: 15px;
    line-height: 150%;
    letter-spacing: -1%;
	margin:0;

}
.team-modal-info>p {
	padding-right:56px;
	display: flex;
    flex-direction: column;
    gap: 12px;
	
}
.team-modal-close {
    position: absolute;
    z-index: 2;
    top: 40px;
    right: 34px;
    border: 0;
    background: transparent;
    line-height: 1;
    cursor: pointer;
}

@media only screen and (max-width:991px) {
    .about-hero-row {
        flex-direction: column;
    }

    .team-modal-content {
        flex-direction: column;
    }

    .about-hero-row .hero-left {
        max-width: 100%;
    }

    .team-modal-image {
        margin-left: auto;
        margin-right: auto;
    }

    .about-hero-row .hero-left {
        width: unset;
    }
}

@media only screen and (max-width:767px) {
    .about-team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-hero-row .hero-right {
        padding: 32.02px 57px 29.26px 37px;
    }

    .about-team-item-title {
        padding: 7.97px 5.98px 5.97px 8.47px;
    }

    .about-hero-sec .container,
    .about-team-sec .container {
        padding: 0 35px;
    }
    .about-team-item-title .item-content {
        gap: 2px;
    }
    .about-team-sec{
            background: linear-gradient(to bottom,
            #F9F7F5 0 20.77%,
            #1A2B1F 20.77% 100%);
    }
	.about-team-item-title .item-content p {
    	font-size: clamp(6.97px, 0.946vw, 14px);
	}
	.about-team-item-title .item-content span {
		font-size: clamp(5.98px, 0.811vw, 12px);
	}
	
}