@import "./main.css";

/* our story */
.our_story_container {
    display: flex;
    gap: 20px;
    background-color: var(--primary-bg-color);
    border-radius: 20px;
    overflow: hidden;
}

.our_story_img {
    flex: 0 0 calc(50% - 10px);
}

.our_story_img .image_container {
    position: relative;
    overflow: hidden;
    padding-top: 80%;
    border-radius: 20px;
    height: 100%;
}

.our_story_img .image_container img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.our_story_content {
    flex: 0 0 calc(50% - 10px);
    padding: 40px 40px 40px 0px;
    text-align: center;
}

@media only screen and (max-width: 1024px) {
    .our_story_content {
        padding: 20px 20px 20px 0px;
    }
}

@media only screen and (max-width: 768px) {
    .our_story_container {
        flex-direction: column;
    }

    .our_story_content {
        padding: 0px 20px 20px 20px;
    }
}

/* mission_vision */

.mission_vision {
    background-color: var(--primary-bg-color);
    padding: 0;
    margin-top: 40px;
}

.mission_vision_container {
    display: flex;
    flex-direction: column;
}

.mission_vision_card {
    display: flex;
    align-items: center;
}

.mission_vision_card .image_container {
    padding-top: 23.3075%;
    position: relative;
    overflow: hidden;
    width: 49.869%;
    min-height: 400px;
}

.mission_vision_card .image_container img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission_vision_card_content {
    flex: 1;
    position: relative;
    padding: 25px;
}

.mission_vision_card_wrapper {
    max-width: 700px;
    width: 100%;
    height: fit-content;
}

.mission_vision_card:nth-of-type(even) .mission_vision_card_wrapper {
    margin-left: auto;
}


.mission_vision_container .mission_vision_card .section-title {
    margin-bottom: 17px;
}

.mission_vision_container .mission_vision_card .section-info {
    color: #828282;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    font-family: var(--urbanist-semibold);
}

.mission_vision_card:nth-of-type(odd) {
    flex-direction: row;
    background: #F4FBFF;
}

.mission_vision_card:nth-of-type(even) {
    flex-direction: row-reverse;
    background: rgba(10, 126, 60, 0.05);
}

.mission_vision_card:nth-of-type(odd) .image-wrapper {
    background: rgba(10, 126, 60, 0.14);
}

.mission_vision_card:nth-of-type(even) .image-wrapper {
    background: rgba(244, 251, 255, 1);
}

.mission_vision_card_wrapper .image-wrapper {
    width: fit-content;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 40px;
}

.mission_vision_card_wrapper .image-wrapper img {
    width: 50px;
    height: 50px;
}


@media only screen and (max-width: 1024px) {
    .mission_vision_card_content {
        padding: 20px;
    }
}

@media only screen and (max-width: 992px) {
    .mission_vision {
        padding-top: 40px;
    }

    .mission_vision_card:nth-of-type(odd) {
        flex-direction: column;
    }

    .mission_vision_card:nth-of-type(even) {
        flex-direction: column;
    }

    .mission_vision_card .image_container {
        width: 100%;
    }

    .mission_vision_card_wrapper {
        max-width: 100%;
    }
}

@media only screen and (max-width: 768px) {
    .mission_vision_container {
        flex-direction: column;
    }

    .mission_vision_card .image_container {
        min-height: 250px;
    }

    .mission_vision_card_wrapper .image-wrapper {
        margin-bottom: 20px;
    }

    .mission_vision_container .mission_vision_card .section-title {
        margin-bottom: 5px;
    }
}

/* driven_values_container */

.driven_values_container {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
}

.driven_card {
    background-color: #F4FBFF;
    box-shadow: none;
    padding: 24px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 0 0 calc((100% - 40px) / 3);
}

.driven_card img {
    max-width: 60px;
    width: 100%;
}

.driven_card.efficacy {
    background-color: #F4FBFF;
    /* background-color: #F3F9F5; */
}

.driven_card.safety {
    background-color: #F4FBFF;
    /* background-color: #F3F9F5; */
}

.driven_card .item-card-title {
    margin-bottom: 0px;
    font-size: 24px;
    line-height: 29px;
    font-weight: 700;
    font-family: 'urbanist-bold';
}

.driven_values_container .driven_card .section-info {
    color: #828282;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    font-family: 'urbanist-semibold';
}

@media only screen and (max-width:1025px) {
    .driven_card {
        padding: 20px;
    }
}

@media only screen and (max-width:768px) {
    .driven_card {
        flex: 0 0 calc((100% - 20px) / 2);
    }

    .driven_card img {
        max-width: 40px;
        width: 100%;
    }

    .driven_values_container {
        flex-direction: column;
    }
}

@media only screen and (max-width:640px) {
    .driven_card {
        flex: 0 0 100%;
        gap: 10px;
    }
}

/* about_owner_info */

.about_owner_info {
    background-color: var(--primary-bg-color);
    padding: 0;
}

.about_owner_info_content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.about_owner_img {
    position: relative;
    flex: 0 0 43.57%;
    padding-top: 40.053%;
    min-height: 450px;
}

.owner_information {
    flex: 1;
    padding: 20px 0;
    max-width: 820px;
    width: 100%;
    text-align: left;
}


.about_owner_img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about_owner_info_content .section-info {
    margin-bottom: 16px;
    color: #828282;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    font-family: 'urbanist-semibold';
}

@media only screen and (max-width: 1199px) {
    .about_owner_info_content {
        flex-direction: column;
    }

    .about_owner_info_content .section-subtitle-wrapper {
        margin: auto;
        margin-bottom: 30px;
    }

    .about_owner_info_content .section-title {
        text-align: center;
    }

    .about_owner_img {
        width: 100%;
    }

    .owner_information {
        max-width: 100%;
    }

    .about_owner_info {
        padding: 20px;
    }

    @media only screen and (max-width: 580px) {
        .about_owner_img {
            min-height: 350px;
        }

        .about_owner_info_content .section-info {
            text-align: justify;
        }
    }
}


/* founders_content */

.founders_content {
    display: flex;
    gap: 20px;
    text-align: center;
    flex-wrap: wrap;
}

.founders_content_item {
    flex: 0 0 calc((100% - 60px) / 4);
}

.founders_img {
    padding-top: 100%;
    position: relative;
    margin-bottom: 24px;
    border-radius: 50%;
    overflow: hidden;
}

.founders_img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 768px) {
    .founders_content_item {
        flex: 0 0 calc((100% - 20px) / 2);
    }
}

/* Global Imapct */

.global-impact {
    background: #F4FBFF;
}

.global-impact .container {
    background-image: url("../img/about/world.png");
    background-repeat: no-repeat;
    background-position-y: 40px;
    background-position-x: center;
}

.global-impact .impact-details p {
    font-size: 18px;
    line-height: 24px;
    color: #828282;
    font-weight: 600;
    font-family: 'urbanist-semibold';
    margin-bottom: 24px;
}

.global-impact .impact-numbers-content {
    padding-top: 20px;
}

.global-impact .impact-numbers-item-number {
    color: #193E52;
}

.global-impact .impact-numbers-item .section-info {
    text-align: left;
    padding-top: 28px;
    border-top: 1px solid #ebebeb;
}

.global-impact .impact-numbers-item .section-info h5 {
    font-size: 24px;
    line-height: 29px;
    font-weight: 700;
    font-family: 'urbanist-bold';
}

.global-impact .impact-numbers-item .section-info p {
    font-size: 20px;
    line-height: 24px;
    color: #828282;
    font-weight: 600;
    font-family: 'urbanist-semibold';
}


@media (max-width:768px) {
    .global-impact .impact-numbers-item .section-info {
        padding-top: 12px;
    }

    .global-impact .impact-numbers-item {
        padding: 0;
    }

    .global-impact .impact-numbers-item .section-info h5 {
        font-size: 22px;
        line-height: 24px;
    }

    .global-impact .impact-numbers-item .section-info p {
        font-size: 18px;
        line-height: 22px;
    }

}


.easily-develop-banner .easily-develop-content .section-info {
    color: #ffffff;
    margin-bottom: 24px;
    font-size: 24px;
    line-height: 31px;
    font-weight: 600;
    font-family: var(--urbanist-semibold);
}

@media (max-width:768px) {
    .easily-develop-banner .easily-develop-content .section-info {
        font-size: 18px;
        line-height: 22px;
    }

    .global-impact .container {
        background-image: none;
    }
}


/* our story */

section.our_story_section {
    padding-bottom: 110px;
}

.our_story_section .section-title {
    max-width: 1040px;
    width: 100%;
}

.timeline-wrapper {
    padding-bottom: 40px;
}

.timeline {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

@media (max-width:768px) {
    .timeline {
        flex-direction: column;
        width: fit-content;
        margin: auto;
        gap: 50px;
    }

    .timeline:before {
        content: "";
        width: 6px;
        height: 100%;
        background: #F4FBFF;
        position: absolute;
    }
}



.timeline-item {
    position: relative;
    text-align: center;
    color: #999;
    font-weight: 500;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

@media (max-width:768px) {
    .timeline-item:nth-of-type(even) {
        flex-direction: row-reverse;
    }

    .timeline-item:nth-of-type(odd) {
        flex-direction: row;
    }
}

.timeline-circle::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    height: 6px;
    background: #F4FBFF;
    z-index: -1;
}

@media (max-width:768px) {
    .timeline-circle {
        position: absolute;
    }

    .timeline-circle::before {
        display: none;
    }
}

.timeline-item.active .timeline-circle::before {
    top: 15px;
}


.timeline-year {
    color: #828282;
    display: block;
    font-size: 24px;
    line-height: 29px;
    font-family: var(--urbanist-bold);
}

@media (max-width:768px) {
    .timeline-year {
        padding-left: 100px;
        font-size: 20px;
        line-height: 24px;
    }

    .timeline-item:nth-last-of-type(even) .timeline-year {
        padding-left: 0;
        padding-right: 100px;
    }
}


.timeline-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    margin: 0 auto;
    border: 4px solid rgba(10, 126, 60, 0.14);
}

@media (max-width:768px) {
    .timeline-item .timeline-circle {
        width: 22px;
        height: 22px;
    }
}

.timeline-item.active .timeline-circle {
    border-color: #0A7E3C;
    border-width: 5px;
    width: 34px;
    height: 34px;
}

@media (max-width:768px) {
    .timeline-item.active .timeline-circle {
        width: 28px;
        height: 28px;
    }
}

.timeline-item.active span {
    color: #0A7E3C;
    font-weight: 700;
    font-family: var(--urbanist-bold);
}

.info-card-slider {
    max-width: 720px;
    width: 100%;
    margin: auto;
}

.info-card-slider .slick-track {
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-card-slider .slick-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    bottom: -50px;
    top: unset;
    transform: unset;
}

.info-card-slider .slick-prev {
    left: 43%;
}

.info-card-slider .slick-next {
    right: 43%;
}

@media (max-width:768px) {
    .info-card-slider .slick-prev {
        left: 35%;
    }

    .info-card-slider .slick-next {
        right: 35%;
    }
}

.info-card-slider .slick-arrow.slick-disabled:before {
    opacity: 1;
    background-color: transparent;
    border: 1px solid #0A7E3C;
    content: url("data:image/svg+xml;utf8,<svg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M15.8333 10.0002L4.16659 10.0002' stroke='%230A7E3C' stroke-width='1.275' stroke-linecap='round' stroke-linejoin='round'/><path d='M10 15.8335L4.16667 10.0002L10 4.16683' stroke='%230A7E3C' stroke-width='1.275' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

.info-card-slider .slick-prev.slick-disabled:before {
    scale: 1;
}

.info-card-slider .slick-next.slick-disabled:before {
    scale: -1;
}

.info-card-slider .slick-arrow:not(.slick-disabled):hover:before {
    opacity: 0.75;
}

.info-card-slider .slick-arrow:before {
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0A7E3C;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    content: url("data:image/svg+xml;utf8,<svg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M5 12H19' stroke='white' stroke-width='1.53' stroke-linecap='round' stroke-linejoin='round'/><path d='M12 5L19 12L12 19' stroke='white' stroke-width='1.53' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    transition: opacity 0.2s ease-in-out;
}


.info-card-slider .slick-prev:before {
    scale: -1;
}

.info-card-slider .slick-next:before {
    scale: 1;
}

.info-card-wrapper {
    padding: 0 5px;
}

.info-card-wrapper.slick-slide {
    height: -webkit-fill-available !important;
}

.info-card {
    background-color: #193E52;
    text-align: center;
    padding: 32px 40px;
    border-radius: 20px;
    margin-top: 80px;
    max-width: 705px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

@media (max-width:768px) {
    .info-card {
        margin-top: 0;
        padding: 24px 20px;
    }
}

.info-card h3 {
    font-size: 24px;
    line-height: 29px;
    font-weight: 600;
    font-family: var(--urbanist-semibold);
    margin-bottom: 14px;
    color: white;
}

@media (max-width:768px) {
    .info-card h3 {
        font-size: 22px;
        line-height: 26px;
    }
}

.info-card p {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    margin: 0;
    color: white;
    font-family: var(--urbanist-semibold);
}

@media (max-width:768px) {
    .info-card p {
        font-size: 16px;
        line-height: 19px;
        font-weight: 500;
        font-family: var(--urbanist-medium);
    }
}

@media (max-width:640px) {
    .info-card-slider .slick-prev {
        left: 40%;
    }

    .info-card-slider .slick-next {
        right: 40%;
    }
}

@media (max-width:500px) {
    .info-card-slider .slick-prev {
        left: 35%;
    }

    .info-card-slider .slick-next {
        right: 35%;
    }
}