.meet_c2c_section {
    position: relative;
    padding-bottom: 0px;
    background: linear-gradient(180deg, var(--black), var(--black-level-19), var(--light-opac-9));
    margin-top: -93px;
    padding-top: calc(5rem + 93px);

    &::before {
        content: "";
        left: 0px;
        top: 0px;
        width: 100%;
        height: 100%;
        background-image: url(../../images/about/meet_c2c_bg.png);
        background-size: cover;
        position: absolute;
    }

    .meet_c2c_top {
        text-align: center;
        margin-bottom: 5rem;

        h1 {
            font-family: "CalSans-SemiBold";
            font-size: 64px;
            line-height: 68px;
            margin-bottom: 2rem;
        }

        p {
            font-size: 20px;
            line-height: 30px;
        }
    }

    .meet_c2c_content {
        padding: 0rem 5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;

        h2 {
            margin-bottom: 0.2rem;
        }
    }
}

.why_c2c_section {
    position: relative;

    &::before {
        content: "";
        position: absolute;
        top: 80px;
        left: 25%;
        width: 50%;
        height: 135px;
        border-radius: 50%;
        background: var(--blue-level-2);
        z-index: -1;
        filter: blur(150px);
    }

    .c2c_kpi_container {
        display: flex;
        justify-content: space-around;
        margin-top: 6rem;

        .c2c_kpi {
            text-align: center;
            position: relative;

            img {
                position: absolute;
                top: -49px;
                left: -54px;
                z-index: -1;
            }

            &:nth-child(3) {
                img {
                    left: -27px;
                }
            }
        }
    }
}

.global_presence_section {
    background-image: url(../../images/about/Global_Presence_bg.png);
    background-size: cover;

    img {
        margin-top: 4rem;
    }
}

.executive_container {
    display: flex;
    margin-top: 2.5rem;
    justify-content: space-around;

    .executive_box {
        position: relative;
        padding: 2px;
        border-radius: 14px;
        background: var(--secondary-gradient);
        height: 430px;
        width: 270px;
        flex-shrink: 0;

        &::after {
            content: "";
            position: absolute;
            bottom: 2px;
            height: 28%;
            background: var(--black-level-19);
            width: calc(100% - 4px);
            left: 2px;
            border-radius: 0px 0px 14px 14px;
        }

        img {
            border-radius: 14px 14px 0px 0px;
            max-width: 100%;
        }

        .executive_content {
            position: absolute;
            z-index: 1;
            bottom: 20px;
            width: 100%;
            text-align: center;

            h3 {
                font-size: 20px;
                font-family: "CalSans-SemiBold";
            }

            p {
                margin: 3px 0px;
                font-size: 15px;
            }

            button {
                color: var(--primary-8);
                font-size: 14px;
                text-decoration: underline;
                cursor: pointer;
                background: transparent;
                border: none;
            }
        }
    }
}

.executive_box_body {
    justify-content: center;
    display: flex;
    align-items: center;
    padding: 50px;
    text-align: center;

    p {
        font-size: 14px;
    }
}

.custom-modal:popover-open {
    border-radius: 20px;
    transition: linear 1s;
    border: none;
    background: url(../../images/about/executive_popup_bg.png);
    background-size: cover;
    color: white;
    width: 1180px;
    height: 428px;
    overflow: hidden;

    .executive_container {
        .executive_box {
            border-radius: 0;
            background: transparent;
            top: -4px;
            left: -4px;

            img {
                border-radius: 14px 0px;
            }

            &::after {
                border-radius: 0px 0px 0px 14px;
            }

            .executive_content {
                bottom: 30px;
            }
        }
    }
}

.modal_close {
    background: transparent;
    border: none;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}

.custom-modal::backdrop {
    background-color: var(--black-level-19);
    opacity: 0.7;
}

body:has(.custom-modal:popover-open) {
    filter: blur(20px);
}

@media only screen and (max-width:991px) {

    .meet_c2c_section {
        .meet_c2c_top {

            h1 {
                font-size: 40px;
                line-height: 40px;
            }

            p {
                font-size: 18px;
                line-height: 25px;
            }
        }

        .meet_c2c_content {
            padding: 4rem 0rem;
        }

    }

    .why_c2c_section {

        .c2c_kpi_container {
            flex-wrap: wrap;

            .c2c_kpi {
                width: 50%;
                margin-bottom: 30px;

                img {
                    position: unset;
                    margin-bottom: 15px;
                }
            }
        }
    }

    .executive_container {
        overflow-x: auto;

        &::-webkit-scrollbar-thumb {
            background: var(--black) !important;
        }

        .executive_box {
            margin-right: 30px;
        }
    }

    .custom-modal:popover-open {
        width: 90%;
        height: 70vh;
        overflow: auto;

        .executive_container {
            flex-direction: column;
            align-items: center;
            justify-content: center;
            overflow-x: hidden;

            .executive_box {
                margin: 50px 0px 0px 0px;
                height: 335px;
                width: 220px;

                img {
                    border-radius: 14px;
                }

                .executive_content {
                    h3 {
                        font-size: 18px;
                    }

                    p {
                        font-size: 13px;
                    }
                }

                &::after {
                    border-radius: 0px 0px 14px 14px;
                }

            }

            .executive_box_body {
                padding: 20px;
            }
        }

        &::-webkit-scrollbar-thumb {
            background: var(--black) !important;
        }
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .executive_container {
        overflow-x: hidden;

        &:hover {
            overflow-x: scroll;
        }

        &::-webkit-scrollbar-thumb {
            background: var(--black) !important;
        }

        .executive_box {
            margin-right: 30px;
        }
    }

    .custom-modal:popover-open {

        width: 90%;
        overflow-y: auto;

        &::-webkit-scrollbar-thumb {
            background: var(--black) !important;
        }
    }
}