/* Start Investments */
.investments {
    padding: var(--section-padding);
}

.investments h3 {
    color: var(--primary-color);
}

@media (min-width: 992px) {
    .investments h3 {
        max-width: 450px;
    }
}

.investments .video-overlay {
    position: relative;
}
@media (max-width: 767.98px) {
    .investments .video-overlay::before {
        position: static !important;
    }
}
.investments .video-overlay iframe {
    width: 100%;
}
.investments .video-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    inset-inline-end: 0;
    width: 10px;
    height: 98%;
    background: linear-gradient(90deg, #1B90AE 0%, #007096 100%);
    z-index: 1;
}

.investments .pdf-card {
    padding: 1rem;
    border-radius: var(--main-radius);
    background-color: var(--light-color);
}

@media (max-width: 575.98px) {
    .investments .pdf-card {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
}

.investments .pdf-card h5 {
    color: var(--primary-color);
}

.investments .pdf-card picture {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.investments .pdf-card picture img {
    width: 36px;
    height: 36px;
}

/* End Investments */
/* Start Story Section */
.story-section {
    padding: var(--section-padding);
    background-image: url("../Assets/Image/story-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.story-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1B90AED9;
}

.story-section .container {
    position: relative;
}

.story-section h3,
.story-section h5 {
    position: relative;
    color: var(--light-color);
}

@media (min-width: 992px) {
    .story-section h5 {
        max-width: 650px;
    }
}

/* End Story Section */
/* Start Product Secvice Section */
.product-service-section {
    padding: var(--section-padding);
}

@media (min-width: 1199.98px) {
    .product-service-section .product-service-container {
        max-width: 80%;
        margin-inline: auto;
    }
}

.product-service-section .product-service-title h4 {
    color: var(--secondary-color);
    text-align: center;
}

.product-service-section .product-service-title h3 {
    color: var(--primary-color);
}

.product-service-section .product-service-item {
    overflow: hidden;
    border-radius: var(--main-radius);
    border: 1.5px solid rgb(83 86 90 / 25%);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-service-section .product-service-item .product-service-content-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.product-service-section .product-service-item .product-service-content {
    height: 100%;
}

.product-service-section .product-service-item h4 {
    color: var(--primary-color);
    text-align: center;
    min-height: 57px;
}
.product-service-section .product-service-item p {
    text-align: center;
}

/* End Product Secvice Section */
/* Start Help Form Section */
.help-form-section {
    padding: var(--section-padding);
    background-color: var(--light-color);
}

.help-form-section .help-form-title h3 {
    color: var(--primary-color);
}

@media (min-width: 992px) {
    .help-form-section .form-container {
        max-width: 960px;
        margin-inline: auto;
    }

    .help-form-section .help-form-title h5 {
        max-width: 570px;
        margin: 0 auto;
    }
}

/* End Help Form Section */
