/* .tech-details-1-header-wrapper-section {
    padding: 120px 180px;
    display: flex;
    align-items: center;
    gap: 80px;
} */

/* .tech-details-1-header-left {
    flex: 1 1 auto;
} */
.tech-details-1-header-left {
    padding-right: 80px;
}
.tech-details-1-header-left > h1 {
    font-size: 54px;
    font-weight: 700;
    line-height: 1.4;
    text-align: left;
    max-width: fit-content;
}

.tech-details-1-header-left > p {
    color: #616567;
    font-size: 16px;
    font-weight: 400;
    line-height: 25.6px;
    text-align: left;
}

.tech-details-1-header-left .tech-details-1-header-btn-group {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.tech-details-1-header-right-video-container {
    width: 97%;
    height: 97%;
    border-top-right-radius: 40px;
    border-bottom-left-radius: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: grid;
    place-content: center;
}

.tech-details-1-header-right-bg {
    position: absolute;
    width: 97%;
    height: 97%;
    background: linear-gradient(98.99deg, #ED0579 0%, #F7941D 100%);
    right: 0;
    bottom: 0;
    z-index: -1;
    border-top-right-radius: 40px;
    border-bottom-left-radius: 40px;
}

/* connect people section */

.connect-people-wrapper-section h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
}

.connect-people-wrapper-section > p {
    color: #616567;
    font-size: 16px;
    font-weight: 400;
}
.connect-people h4 {
    margin-bottom: 10px;
    color: #ED0579;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.6;
}

.connect-people p {
    color: #616567;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
}

/* connect people images grid section */

.connect-people-image-grid-item {
    width: 20%;
    height: 500px;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    isolation: isolate;
    padding: 40px;
    display: flex;
    transition: width 1s;
}
.connect-people-image-grid-item.hover {
    width: 40%;
    transition: width 1s;
}
.connect-people-image-grid-item-content {
    padding: 20px;
    background: #FFFFFFCC;
    margin-top: auto;
    width: 100%;
    opacity: 0;
}
.connect-people-image-grid-item.hover .connect-people-image-grid-item-content{
    opacity: 1;
}
.connect-people-image-grid-item-content h3 {
    text-align: left;
    margin-bottom: 20px;
}

.connect-people-image-grid-item-content p {
    color: #616567;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    margin-bottom: 40px;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
}