


.hero-section {
    position: relative;
    z-index: 2;
    color: #fff;
    top: 0;
    height: 40%;
}


.hero-section h3 {
    position: relative;
    font-size: 64px;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-top: 15%;
    width: 50%;
    z-index: 3;
}

/* Objectives and vision */
.objectives {
    padding: 80px 0;
}

.objectives-wrapper {
    height: 785px;
    width: 97.5%;
}

.row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.images-col {
    position: relative;
}

.image-wrapper {
    transition: flex 1s ease, transform 1s ease;
}

/* .image-wrapper.right {
    position: absolute;
    right: 0;
} */

/* .image-wrapper.right img {
    width: 90%;
}

.image-wrapper.left {
    position: relative;
    width: 100%;
} */

.image_left {
    position: absolute;
    top: 0;
    left: 0;
    height: 53%;
}

.image_right {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 90%;
    transition: height 2s ease-in-out;
}

.image_right:hover {
    height: 100%;
}

/* .image-wrapper.left img {
    position: relative;
    left: -1.5em;
    top: -1.5em;
} */

/* .image-wrapper img {
    object-fit: cover;
    object-position: top;
    transition: transform 1s ease;
} */

.img_overlay {
    background: rgba(64, 0, 166, 0.3); 
    position: absolute;
    bottom: 0;
    left: 0; 
    width: 100%;
    height: 100%;
}

.objectives_btns {
    border-bottom: 1px solid #190040;
}
/* Purple rectangles */
.decor {
    background: var(--bs-primary);
    transition: all 1s ease;
}

.decor.top {
    width: 18.5rem;
    height: 3.4rem;
    position: absolute;
    right: 0;
}

.decor.bottom {
    width: 3rem;
    height: 22.25rem;
    position: absolute;
    left: 0;
    bottom: 0;
}

.text-col {
    flex: 1;
    padding: 20px 40px;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
}

.subtitle {
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    color: var(--bs-primary);
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 10px 0 20px;
}

.highlight {
    color: var(--bs-primary);
    font-weight: 600;
}

.objectives_texts {
    position: relative;
}

.objectives_text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;

}

.objectives_text.show {
    visibility: visible;
    opacity: 1;
} 
/* End of objectives and vision */

/* founders-section */
.content ul li {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
}

.image {
    position: relative;
}

.image img {
    width: 90%;
}

.caption {
    position: absolute;
    bottom: -23px;
    right: 8%;
    width: 60%;
    padding: 10px;
    background: #fff;
    border-top: 5px solid var(--bs-primary);
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1);
}

.caption p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}
/* End of founders section */


/* Values section */
.values-title h2 {
    padding: 0 20%;
    text-align: center;
}

.values-cards__item {
    width: 19%;
    height: 280px;
    background: #fff;
}

.values-cards__item span {
    font-size: 14px;
}

.values-cards__item .icon {
    background: var(--bs-primary);
    border-radius: 50%;
    width: 70px;
    height: 70px;
}

.values-cards__item.card-highlighted {
    background: var(--bs-primary);
    border: 1px solid var(--bs-warning);
    color: #fff;
    height: 340px;
}

.values-cards__item.card-highlighted .icon {
    background: #fff;
}

.values-cards__item.card-highlighted .card-title {
    color: var(--bs-warning);
}
/* End of values section */


/* Engagement section */
.Engagement-section {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 80px 20px;
    display: flex;
    align-items: center;
}

.Engagement-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #190040 0%, rgba(64, 0, 166, 0) 145.94%);
    z-index: 1;
}

.Engagement-section .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.Engagement-section .content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.Engagement-section .content p {
    font-size: 20px;
    font-style: normal;
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 20px;
}

.Engagement-section .content ul {
    list-style: none;
    list-style-position: outside;
    padding: 0;
    margin-bottom: 20px;
}

.Engagement-section .content ul li {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 30px;
}

.Engagement-section .content ul li span {
    color:  #ffc107;
}
/* End of engagement section */