/* generic app */
* {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 100%;
    box-sizing: border-box;
}

/* COLORS */
/* PROJECT VALUES */
/* TYPOGRAPHY */
/* SPACING */
/* BUTTONS */
/* @import "./node_modules/bootstrap/scss/bootstrap"; */
html {
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

main {
    height: max-content;
    display: flex;
    flex-direction: column;
}

.left {
    right: auto !important;
}

.content-overflow {
    position: relative;
    overflow-x: hidden;
    height: min-content;
}

.container {
    max-width: 1184px;
    margin-left: auto;
    margin-right: auto;
}

.w-100 {
    width: 100%;
}

::placeholder {
    color: #aeb0b7;
    opacity: 1; /* Firefox */
}

::-ms-input-placeholder { /* Edge 12-18 */
    color: #aeb0b7;
}

/* components */
.navigation {
    font-family: "Open Sans";
    padding: 0 2rem;
    z-index: 2;
}

.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    color: #172b60;
    padding: 8px;
    z-index: 1000;
    transition: top 0.3s;
}

    .skip-to-content:focus {
        top: 0;
    }

.visually-hidden {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.reserved-area .menu .menu-item > p {
    font-weight: 700;
    font-size: 14px;
    padding: 12px 28px;
    background: white;
    border-radius: 100px;
    width: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    color: #4B5E8D;
}

.navigation .content-box .reserved-area .menu .menu-item .menu-dropdown {
}

    .navigation .content-box .reserved-area .menu .menu-item .menu-dropdown .menu-dropdown-item a {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .navigation .content-box .reserved-area .menu .menu-item .menu-dropdown .menu-dropdown-item {
        /*padding: 12px 4px 12px 4px;*/
        padding: 2px;
    }

        .navigation .content-box .reserved-area .menu .menu-item .menu-dropdown .menu-dropdown-item a > span {
            padding-right: 20px;
        }

            .navigation .content-box .reserved-area .menu .menu-item .menu-dropdown .menu-dropdown-item a > span > img {
                padding-right: 10px;
            }

.navigation .content-box {
    padding: 1rem 0;
    max-width: 1184px;
    margin: 0 auto;
    padding-top: 32px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    height: 100px;
}

    .navigation .content-box .harmburguer-menu {
        display: none;
    }

    .navigation .content-box .menu-mobile-container {
        -webkit-transform: translateX(-100%);
        display: none;
    }

        .navigation .content-box .menu-mobile-container.is-open {
            -webkit-transform: translateX(0);
        }

    .navigation .content-box .menu {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
        height: 100%;
    }

        .navigation .content-box .menu .menu-item {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            padding: 8px 0;
            gap: 12px;
            font-size: 14px;
            font-weight: 700;
            position: relative;
            cursor: pointer;
            color: #172b60;
        }

            .navigation .content-box .menu .menu-item a {
                text-decoration: none;
                color: #172b60;
            }

            .navigation .content-box .menu .menu-item:hover .menu-dropdown {
                display: initial;
            }

            .navigation .content-box .menu .menu-item .menu-dropdown {
                display: none;
                position: absolute;
                background-color: #ffffff;
                padding: 8px 16px;
                border-radius: 12px;
                left: 0;
                top: 100%;
                box-shadow: 0px 2px 30px rgba(109, 137, 206, 0.19);
                border: 0.5px solid #efeff1;
                z-index: 9;
                overflow: hidden;
            }

                .navigation .content-box .menu .menu-item .menu-dropdown .menu-dropdown-item {
                    display: flex;
                    flex-direction: column;
                    padding: 0px;
                    gap: 8px;
                    align-self: stretch;
                    height: auto;
                    white-space: nowrap;
                    /*padding: 12px 16px;*/
                    font-weight: 400;
                    border-radius: 8px;
                    transition: 0.1s;
                }

                    .navigation
                    .content-box
                    .menu
                    .menu-item
                    .menu-dropdown
                    .menu-dropdown-item:hover {
                        background-color: #eaf0ff;
                        font-weight: 700;
                    }

                        .navigation
                        .content-box
                        .menu
                        .menu-item
                        .menu-dropdown
                        .menu-dropdown-item:hover
                        a {
                            color: #4092ce;
                        }

                    .navigation .content-box .menu .menu-item .menu-dropdown .menu-dropdown-item a {
                        text-decoration: none;
                        color: #172b60;
                        padding: 12px 16px;
                    }

    .navigation .content-box .logo-and-menu {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 43px;
    }

    .navigation .content-box .search-and-button {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 32px;
    }

        .navigation .content-box .search-and-button .button-box .primary-button {
            display: inline-block;
            text-decoration: none;
            color: #ffffff;
        }

            .navigation .content-box .search-and-button .button-box .primary-button p {
                user-select: none;
                font-weight: 700;
                font-size: 14px;
                padding: 12px 28px;
                background: linear-gradient(180deg, #1272b7 0%, #43a0e4 100%);
                border-radius: 100px;
                width: fit-content;
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                flex-wrap: wrap;
                gap: 16px;
            }

            .navigation
            .content-box
            .search-and-button
            .button-box
            .primary-button:hover
            p {
                background: #4b5e8d;
                border-color: transparent;
                color: #fff;
            }

            .navigation
            .content-box
            .search-and-button
            .button-box
            .primary-button:active
            p {
                background: #6d89ce;
                border-color: transparent;
                color: #fff;
            }

            .navigation .content-box .search-and-button .button-box .primary-button img {
                filter: brightness(5);
            }

@media screen and (max-width: 728px) {
    .navigation {
        padding: 0;
    }

        .navigation .content-box {
            max-width: 294px;
        }

            .navigation .content-box .harmburguer-menu {
                display: initial;
                cursor: pointer;
            }

            .navigation .content-box .menu-mobile-container {
                display: initial;
                background-color: #ffffff;
                position: fixed;
                left: 0;
                top: 0;
                bottom: 0;
                right: 150px;
                z-index: 9;
                border-radius: 0 16px 16px 0;
                transition: 0.3s;
                padding: 16px;
                overflow: hidden;
            }

                .navigation .content-box .menu-mobile-container .return-menu,
                .navigation .content-box .menu-mobile-container .closed {
                    display: none;
                }

                .navigation .content-box .menu-mobile-container .is-selected {
                    display: initial;
                }

                .navigation .content-box .menu-mobile-container .menu-mobile {
                    display: flex;
                    flex-direction: column;
                    justify-content: flex-start;
                    align-items: center;
                    flex-wrap: wrap;
                    gap: 20px;
                    margin-top: 24px;
                    position: relative;
                    height: 100%;
                    transform: translateX(0);
                    transition: 0.2s;
                }

                    .navigation .content-box .menu-mobile-container .menu-mobile .menu-item {
                        display: flex;
                        flex-direction: row;
                        justify-content: space-between;
                        align-items: center;
                        flex-wrap: wrap;
                        width: 100%;
                        font-size: 16px;
                        padding: 12px 8px 12px 16px;
                        color: #172b60;
                        cursor: pointer;
                    }

                        .navigation .content-box .menu-mobile-container .menu-mobile .menu-item a {
                            text-decoration: none;
                            color: #172b60;
                        }

                        .navigation
                        .content-box
                        .menu-mobile-container
                        .menu-mobile
                        .menu-item
                        .menu-dropdown {
                            transform: translateX(100%);
                            position: absolute;
                            background-color: #ffffff;
                            top: 0;
                            left: 0;
                            right: 0;
                            bottom: 0;
                            transition: 0.2s;
                        }

                            .navigation
                            .content-box
                            .menu-mobile-container
                            .menu-mobile
                            .menu-item
                            .menu-dropdown
                            .menu-dropdown-item {
                                display: flex;
                                flex-direction: column;
                                justify-content: space-between;
                                align-items: flex-start;
                                flex-wrap: wrap;
                                width: 100%;
                                font-size: 16px;
                                padding: 12px 8px 12px 16px;
                                color: #172b60;
                            }

                                .navigation
                                .content-box
                                .menu-mobile-container
                                .menu-mobile
                                .menu-item
                                .menu-dropdown
                                .menu-dropdown-item
                                .menu-title {
                                    font-size: 20px;
                                    font-weight: 700;
                                    color: #4092ce;
                                }

                        .navigation
                        .content-box
                        .menu-mobile-container
                        .menu-mobile
                        .menu-item
                        .is-active {
                            transform: translateX(0);
                            display: block;
                        }

            .navigation .content-box .menu-mobile-overlay {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: #3f4453;
                opacity: 0.3;
                z-index: 8;
            }

            .navigation .content-box .logo-and-menu .site-logo img {
                width: 120px;
            }

            .navigation .content-box .logo-and-menu .menu {
                display: none;
            }

            .navigation .content-box .search-and-button .search-bar {
                display: flex;
                flex-direction: row;
                justify-content: flex-end;
                align-items: center;
                flex-wrap: wrap;
                width: 56px;
            }

            .navigation .content-box .search-and-button .reserved-area {
                display: none;
            }
}

@media (min-width: 729px) and (max-width: 1024px) {
    .navigation .content-box .harmburguer-menu {
        display: initial;
    }

    .navigation .content-box .menu-mobile-container {
        display: initial;
        background-color: #ffffff;
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        right: 550px;
        z-index: 9;
        border-radius: 0 16px 16px 0;
        transition: 0.3s;
        padding: 16px;
        overflow: hidden;
    }

        .navigation .content-box .menu-mobile-container .return-menu,
        .navigation .content-box .menu-mobile-container .closed {
            display: none;
        }

        .navigation .content-box .menu-mobile-container .is-selected {
            display: initial;
        }

        .navigation .content-box .menu-mobile-container .menu-mobile {
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 24px;
            position: relative;
            height: 100%;
            transform: translateX(0);
            transition: 0.2s;
        }

            .navigation .content-box .menu-mobile-container .menu-mobile .menu-item {
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                flex-wrap: wrap;
                width: 100%;
                font-size: 16px;
                padding: 12px 8px 12px 16px;
                color: #172b60;
            }

                .navigation .content-box .menu-mobile-container .menu-mobile .menu-item a {
                    text-decoration: none;
                    color: #172b60;
                }

                .navigation
                .content-box
                .menu-mobile-container
                .menu-mobile
                .menu-item
                .menu-dropdown {
                    transform: translateX(100%);
                    position: absolute;
                    background-color: #ffffff;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    transition: 0.2s;
                }

                    .navigation
                    .content-box
                    .menu-mobile-container
                    .menu-mobile
                    .menu-item
                    .menu-dropdown
                    .menu-dropdown-item {
                        display: flex;
                        flex-direction: column;
                        justify-content: space-between;
                        align-items: flex-start;
                        flex-wrap: wrap;
                        width: 100%;
                        font-size: 16px;
                        padding: 12px 8px 12px 16px;
                        color: #172b60;
                    }

                        .navigation
                        .content-box
                        .menu-mobile-container
                        .menu-mobile
                        .menu-item
                        .menu-dropdown
                        .menu-dropdown-item
                        .menu-title {
                            font-size: 20px;
                            font-weight: 700;
                            color: #4092ce;
                        }

                .navigation
                .content-box
                .menu-mobile-container
                .menu-mobile
                .menu-item
                .is-active {
                    transform: translateX(0);
                    display: block;
                }

    .navigation .content-box .menu-mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #3f4453;
        opacity: 0.3;
        z-index: 8;
    }

    .navigation .content-box .logo-and-menu .site-logo img {
        width: 160px;
    }

    .navigation .content-box .logo-and-menu .menu {
        display: none;
    }

    .navigation .content-box .search-and-button .search-bar {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        flex-wrap: wrap;
        width: 56px;
    }
}

@media (min-width: 1025px) and (max-width: 1180px) {
    .navigation .content-box .logo-and-menu .site-logo img {
        width: 160px;
    }
}

.bg-defocused-circle-1 {
    width: 450px;
    height: 450px;
    background-color: #cedcff;
    filter: blur(150px);
    position: absolute;
    top: -220px;
    left: 81px;
    opacity: 0.8;
    z-index: -1;
}

.bg-defocused-circle-2 {
    width: 871px;
    height: 871px;
    background-color: #cedcff;
    filter: blur(150px);
    position: absolute;
    top: -330px;
    left: 648px;
    z-index: -1;
}

@media screen and (max-width: 1200px) {
    .bg-defocused-circle-1 {
        display: none;
    }

    .bg-defocused-circle-2 {
        width: 100%;
        height: 400px;
        background-color: #cedcff;
        filter: blur(100px);
        position: absolute;
        top: 0;
        left: 0;
    }
}

@media screen and (max-width: 1500px) {
    .bg-defocused-circle-2 {
        width: 100%;
        height: 600px;
        background-color: #cedcff;
        filter: blur(100px);
        position: absolute;
        top: 0;
        left: 0;
    }
}

.breadcrumb-container {
    font-family: "Open Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;
    padding: 0 2rem;
}

    .breadcrumb-container .content-box {
        padding: 1rem 0;
        max-width: 1184px;
        margin: 0 auto;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
        gap: 4px;
    }

        .breadcrumb-container .content-box a {
            text-decoration: none;
            color: #787c87;
        }

        .breadcrumb-container .content-box img {
            width: 16px;
        }

        .breadcrumb-container .content-box .current-page {
            color: #4092ce;
            cursor: default;
        }

@media screen and (max-width: 728px) {
    .breadcrumb-container {
        display: none;
    }
}

footer {
    font-family: "Open Sans", sans-serif;
    background-color: #313c59;
    padding: 40px 2rem 0;
    height: fit-content;
    margin-top: auto;
}

    footer .terms-and-conditions a {
        color: white;
        text-decoration: none;
    }

    footer .content-box {
        padding: 1rem 0;
        max-width: 1184px;
        margin: 0 auto;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
        column-gap: 125px;
        row-gap: 40px;
    }

        footer .content-box .newsletter-container {
            display: flex;
            flex-direction: column;
            justify-content: initial;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 80px;
            max-width: 280px;
        }

            footer .content-box .newsletter-container .newsletter {
                color: #ffffff;
            }

                footer .content-box .newsletter-container .newsletter .newsletter-title {
                    font-weight: 700;
                }

                footer
                .content-box
                .newsletter-container
                .newsletter
                .newsletter-form
                .input-container {
                    position: relative;
                    display: flex;
                    flex-direction: row;
                    justify-content: space-between;
                    align-items: center;
                    flex-wrap: wrap;
                    flex-wrap: nowrap;
                    margin: 20px 0;
                    padding: 4px 4px 4px 21px;
                    gap: 8px;
                    background-color: #ffffff;
                    border-radius: 10px;
                    border: 2px solid transparent;
                }

                footer .content-box .newsletter-container .newsletter .newsletter-form .service {
                    position: relative;
                    display: flex;
                    flex-direction: row;
                    justify-content: space-between;
                    align-items: center;
                    flex-wrap: nowrap;
                    font-size: 12px;
                    margin: 20px 0;
                    padding: 4px 4px 4px 21px;
                    gap: 8px;
                }

                    footer .content-box .newsletter-container .newsletter .newsletter-form .service .hidden {
                        display: none;
                    }

                    footer .content-box .newsletter-container .newsletter .newsletter-form .service .required-msg {
                        font-size: 12px;
                        color: red;
                        position: absolute;
                        bottom: -20px;
                        opacity: 1;
                        transition: 0.1s;
                    }

                footer
                .content-box
                .newsletter-container
                .newsletter
                .newsletter-form
                .input-container
                .mail-input {
                    appearance: none;
                    height: 100%;
                    font-weight: 400;
                    color: #4b5e8d;
                    border: 0;
                    outline: 0;
                    width: 100%;
                }

                    footer
                    .content-box
                    .newsletter-container
                    .newsletter
                    .newsletter-form
                    .input-container
                    .mail-input::placeholder {
                        color: inherit;
                        font-weight: inherit;
                    }

                footer
                .content-box
                .newsletter-container
                .newsletter
                .newsletter-form
                .input-container
                .required-msg {
                    font-size: 12px;
                    color: red;
                    position: absolute;
                    bottom: -20px;
                    right: 0;
                    opacity: 1;
                    transition: 0.1s;
                }

                    footer
                    .content-box
                    .newsletter-container
                    .newsletter
                    .newsletter-form
                    .input-container
                    .required-msg.disabled {
                        opacity: 0;
                    }

                footer
                .content-box
                .newsletter-container
                .newsletter
                .newsletter-form
                .input-container
                .submit-newsletter {
                    appearance: none;
                    border: 0;
                    background: linear-gradient(180deg, #1272b7 0%, #43a0e4 100%);
                    position: relative;
                    padding: 6px;
                    width: 32px;
                    height: 32px;
                    border-radius: 8px;
                    cursor: pointer;
                }

                    footer
                    .content-box
                    .newsletter-container
                    .newsletter
                    .newsletter-form
                    .input-container
                    .submit-newsletter:hover {
                        background: #4b5e8d;
                        border-color: transparent;
                        color: #fff;
                    }

                    footer
                    .content-box
                    .newsletter-container
                    .newsletter
                    .newsletter-form
                    .input-container
                    .submit-newsletter:active {
                        background: #6d89ce;
                        border-color: transparent;
                        color: #fff;
                    }

                footer
                .content-box
                .newsletter-container
                .newsletter
                .newsletter-form
                .terms-and-conditions {
                    display: flex;
                    flex-direction: row;
                    justify-content: initial;
                    align-items: center;
                    flex-wrap: wrap;
                    flex-wrap: nowrap;
                    gap: 20px;
                }

                    footer
                    .content-box
                    .newsletter-container
                    .newsletter
                    .newsletter-form
                    .terms-and-conditions
                    input {
                        min-width: 16px;
                        min-height: 16px;
                    }

                    footer
                    .content-box
                    .newsletter-container
                    .newsletter
                    .newsletter-form
                    .terms-and-conditions
                    label {
                        font-size: 12px;
                        font-weight: 300;
                        user-select: none;
                    }

        footer .content-box .sitemap-container {
            display: flex;
            flex-direction: row;
            justify-content: initial;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 38px;
            flex-wrap: nowrap;
        }

            footer .content-box .sitemap-container .sm {
                display: flex;
                flex-direction: column;
                justify-content: initial;
                align-items: flex-start;
                flex-wrap: wrap;
                gap: 8px;
                flex-wrap: nowrap;
                color: #ffffff;
            }

                footer .content-box .sitemap-container .sm .sm-title {
                    font-weight: 700;
                }

                footer .content-box .sitemap-container .sm .sm-link a {
                    text-decoration: none;
                    font-size: 14px;
                    font-weight: 300;
                    color: #ffffff;
                }

        footer .content-box .info-container {
            width: 100%;
        }

            footer .content-box .info-container .divider {
                margin-bottom: 16px;
                border-color: #6d89ce;
                opacity: 0.2;
                border-color: #ffffff;
                margin: 0;
            }

            footer .content-box .info-container .logos-and-social {
                display: flex;
                flex-direction: row;
                justify-content: flex-end;
                align-items: center;
                flex-wrap: wrap;
                padding: 10px;
            }

                footer .content-box .info-container .logos-and-social .social {
                    display: flex;
                }

                footer .content-box .info-container .logos-and-social .logos .logos-desc {
                    display: inline-block;
                    color: #ffffff;
                    font-size: 12px;
                    font-weight: 700;
                }

                footer .content-box .info-container .logos-and-social .logos img {
                    vertical-align: middle;
                    margin-left: 16px;
                }

                footer .content-box .info-container .logos-and-social .social .social-link {
                    display: flex;
                    text-decoration: none;
                    margin-left: 16px;
                }

            footer .content-box .info-container .terms-and-copy {
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                flex-wrap: wrap;
                padding: 16px 0;
            }

                footer .content-box .info-container .terms-and-copy .terms a {
                    text-decoration: none;
                    font-size: 12px;
                    font-weight: 600;
                    margin-right: 24px;
                    color: #ffffff;
                }

                footer .content-box .info-container .terms-and-copy .copyright {
                    color: #ffffff;
                    font-size: 12px;
                    font-weight: 600;
                }

@media screen and (max-width: 728px) {
    .footer {
        padding: 8px 0 0;
    }

        .footer .content-box {
            max-width: 294px;
            display: block;
        }

            .footer .content-box .newsletter-container {
                gap: 16px;
            }

            .footer .content-box .sitemap-container {
                display: none;
            }

            .footer .content-box .info-container {
                margin-top: 24px;
            }

                .footer .content-box .info-container .logos-and-social {
                    padding: 16px 0;
                    flex-direction: column;
                    align-items: center;
                    gap: 8px;
                }

                    .footer .content-box .info-container .logos-and-social .logos .logos-desc,
                    .footer .content-box .info-container .logos-and-social .logos img {
                        display: block;
                        text-align: center;
                        margin: 0;
                    }

                .footer .content-box .info-container .terms-and-copy {
                    margin-top: 24px;
                    flex-direction: column;
                    gap: 16px;
                }

                    .footer .content-box .info-container .terms-and-copy .terms a {
                        display: block;
                        text-align: center;
                        margin: 0 auto 24px;
                    }

                    .footer .content-box .info-container .terms-and-copy .copyright {
                        margin: 0;
                    }
}

.hero-section {
    margin-bottom: 88px;
    font-family: "Open Sans";
    padding-left: 2rem;
}

    .hero-section .swiper {
        width: 100%;
        height: fit-content;
        overflow: initial;
    }

        .hero-section .swiper .swiper-wrapper .swiper-slide {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            flex-wrap: nowrap;
            padding-left: calc((100% - 1184px) / 2);
        }

          /*  .hero-section .swiper .swiper-wrapper .swiper-slide .slide-content h1 {
                font-family: "Open Sans", sans-serif;
                font-size: 62px;
                font-weight: 800;
                line-height: 72px;
                letter-spacing: 0px;
                color: #172b60;
                width: 479px;
                max-height: 300px;
            }*/

            .hero-section .swiper .swiper-wrapper .swiper-slide .slide-content .hero-slide-title{
                font-family: "Open Sans", sans-serif;
                font-size: 62px;
                font-weight: 800;
                line-height: 72px;
                letter-spacing: 0px;
                color: #172b60;
                width: 479px;
                max-height: 300px;
            }


            .hero-section .swiper .swiper-wrapper .swiper-slide .slide-content .button-box {
                margin-top: 24px;
            }

                .hero-section
                .swiper
                .swiper-wrapper
                .swiper-slide
                .slide-content
                .button-box
                .primary-button {
                    display: inline-block;
                    text-decoration: none;
                    color: #ffffff;
                }

                    .hero-section
                    .swiper
                    .swiper-wrapper
                    .swiper-slide
                    .slide-content
                    .button-box
                    .primary-button
                    p {
                        user-select: none;
                        font-weight: 700;
                        font-size: 14px;
                        padding: 12px 28px;
                        background: linear-gradient(180deg, #1272b7 0%, #43a0e4 100%);
                        border-radius: 100px;
                        width: fit-content;
                    }

                    .hero-section
                    .swiper
                    .swiper-wrapper
                    .swiper-slide
                    .slide-content
                    .button-box
                    .primary-button
                    p {
                        display: flex;
                        flex-direction: row;
                        justify-content: space-between;
                        align-items: initial;
                        flex-wrap: wrap;
                        gap: 8px;
                    }

                    .hero-section
                    .swiper
                    .swiper-wrapper
                    .swiper-slide
                    .slide-content
                    .button-box
                    .primary-button:hover
                    p {
                        background: #4b5e8d;
                        border-color: transparent;
                        color: #fff;
                    }

                    .hero-section
                    .swiper
                    .swiper-wrapper
                    .swiper-slide
                    .slide-content
                    .button-box
                    .primary-button:active
                    p {
                        background: #6d89ce;
                        border-color: transparent;
                        color: #fff;
                    }

                    .hero-section
                    .swiper
                    .swiper-wrapper
                    .swiper-slide
                    .slide-content
                    .button-box
                    .primary-button
                    img {
                        filter: brightness(5);
                    }

            .hero-section .swiper .swiper-wrapper .swiper-slide .slide-image {
                width: 809px;
                height: 616px;
                overflow: hidden;
                border-top-left-radius: 400px;
                display: flex;
                flex-direction: row;
                justify-content: flex-end;
                align-items: center;
                flex-wrap: wrap;
            }

                .hero-section .swiper .swiper-wrapper .swiper-slide .slide-image img {
                    height: 100%;
                }

        .hero-section .swiper .pagination-container {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 7px;
            position: relative;
            padding-left: calc((100% - 1184px) / 2);
            top: 80px;
            font-family: "Open Sans", sans-serif;
            font-weight: 700;
            color: #91af11;
            width: fit-content;
            z-index: 9;
        }

            .hero-section .swiper .pagination-container .swiper-pagination {
                width: 150px;
                position: relative;
                border-radius: 10px;
                overflow: hidden;
                background-color: #d9d9d9;
            }

                .hero-section
                .swiper
                .pagination-container
                .swiper-pagination
                .swiper-pagination-progressbar-fill {
                    background-color: #91af11;
                }

    .hero-section .slider-button {
        position: absolute;
        right: 235px;
        bottom: -25px;
        z-index: 9;
    }

        .hero-section .slider-button .prev-slide,
        .hero-section .slider-button .next-slide {
            border: 2px solid #4092ce;
            display: inline-block;
            width: 20px;
            height: 20px;
            box-sizing: initial;
            border-radius: 50px;
            padding: 15px;
            cursor: pointer;
            background-color: #ffffff;
        }

@media screen and (max-width: 728px) {
    .hero-section {
        padding: 0;
    }

        .hero-section .swiper {
            padding-top: 16px;
        }

            .hero-section .swiper .swiper-wrapper .swiper-slide {
                flex-direction: column;
            }

                .hero-section .swiper .swiper-wrapper .swiper-slide .slide-content {
                    margin: 0 auto;
                    text-align: center;
                    padding: 24px 0;
                }

                    .hero-section .swiper .swiper-wrapper .swiper-slide .slide-content h1 {
                        max-width: 294px;
                        font-size: 40px;
                        line-height: 44px;
                    }

                .hero-section .swiper .swiper-wrapper .swiper-slide .slide-image {
                    position: relative;
                    margin: 0 0 0 auto;
                    width: calc(100% - (100% - 294px) / 2);
                    justify-content: center;
                    height: 378px;
                    border-top-left-radius: 200px;
                }

            .hero-section .swiper .pagination-container {
                position: relative;
                width: 100%;
                left: initial;
                top: initial;
            }

                .hero-section .swiper .pagination-container .swiper-pagination {
                    width: 78px;
                    position: relative;
                }

            .hero-section .swiper .slider-button {
                right: 24px;
                bottom: -30px;
            }
}

@media (min-width: 729px) and (max-width: 1180px) {
    .hero-section .swiper {
        padding-top: 16px;
    }

        .hero-section .swiper .swiper-wrapper .swiper-slide .slide-content {
            padding: 24px 0;
        }

            .hero-section .swiper .swiper-wrapper .swiper-slide .slide-content h1 {
                max-width: 294px;
                font-size: 40px;
                line-height: 44px;
            }

        .hero-section .swiper .swiper-wrapper .swiper-slide .slide-image {
            position: relative;
            margin: 0 0 0 auto;
            max-width: 494px;
            justify-content: center;
            height: 478px;
            border-top-left-radius: 200px;
        }

        .hero-section .swiper .pagination-container {
            position: relative;
            padding-left: calc((100% - 750px) / 2);
        }

            .hero-section .swiper .pagination-container .swiper-pagination {
                width: 78px;
                position: relative;
            }

        .hero-section .swiper .slider-button {
            right: 24px;
            bottom: -30px;
        }
}

.hero-image-text-section {
    font-family: "Open Sans";
    padding: 0 2rem;
}

    .hero-image-text-section .content-box {
        padding: 1rem 0;
        max-width: 1184px;
        margin: 0 auto;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 40px;
    }

        .hero-image-text-section .content-box .text-content {
            max-width: 579px;
        }

            .hero-image-text-section .content-box .text-content h1 {
                font-family: "Open Sans", sans-serif;
                font-size: 62px;
                font-weight: 800;
                line-height: 72px;
                letter-spacing: 0px;
                color: #172b60;
            }

            .hero-image-text-section .content-box .text-content > p {
                font-size: 16px;
                line-height: 24px;
                color: #4b5e8d;
                margin-top: 8px;
            }

            .hero-image-text-section .content-box .text-content .social {
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
                flex-wrap: wrap;
                margin-top: 24px;
                gap: 8px;
            }

                .hero-image-text-section .content-box .text-content .social p {
                    font-size: 12px;
                    color: #4b5e8d;
                }

                .hero-image-text-section .content-box .text-content .social a {
                    height: 38px;
                }

        .hero-image-text-section .content-box .image img {
            max-width: 100%;
        }

@media screen and (max-width: 728px) {
    .hero-image-text-section {
        padding: 0;
    }

        .hero-image-text-section .content-box {
            max-width: 294px;
        }

            .hero-image-text-section .content-box .text-content h1 {
                font-size: 32px;
                line-height: 42px;
            }
}

.icon-text-section {
    font-family: "Open Sans", sans-serif;
    padding: 0 2rem;
}

    .icon-text-section .content-box {
        padding: 1rem 0;
        max-width: 1184px;
        margin: 0 auto;
    }

        .icon-text-section .content-box .title h3 {
            font-weight: 700;
            font-size: 18px;
            text-transform: uppercase;
            color: #4e8804;
        }

        .icon-text-section .content-box .title h2 {
            font-weight: 800;
            font-size: 48px;
            color: #172b60;
        }

        .icon-text-section .content-box .numbers {
            display: flex;
            flex-direction: row;
            justify-content: initial;
            align-items: center;
            flex-wrap: wrap;
        }

            .icon-text-section .content-box .numbers li {
                width: 278px;
                text-align: center;
                margin: 20px 0;
            }

                .icon-text-section .content-box .numbers li div {
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    align-items: center;
                    flex-wrap: wrap;
                    flex-wrap: nowrap;
                    gap: 8px;
                }

                    .icon-text-section .content-box .numbers li div p {
                        font-size: 62px;
                        font-weight: 800;
                        color: #4092ce;
                    }

                        .icon-text-section .content-box .numbers li div p small {
                            font-size: 48px;
                            font-weight: 700;
                        }

                .icon-text-section .content-box .numbers li .description {
                    font-size: 16px;
                    font-weight: 400;
                    color: #66748d;
                }

@media screen and (max-width: 728px) {
    .icon-text-section {
        padding: 0;
    }

        .icon-text-section .content-box {
            max-width: 294px;
        }

            .icon-text-section .content-box .title {
                text-align: center;
            }

                .icon-text-section .content-box .title h3 {
                    font-size: 14px;
                }

                .icon-text-section .content-box .title h2 {
                    font-size: 32px;
                }

            .icon-text-section .content-box .numbers {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                flex-wrap: wrap;
            }

                .icon-text-section .content-box .numbers li {
                    width: 134px;
                }

                    .icon-text-section .content-box .numbers li div img {
                        width: 40px;
                    }

                    .icon-text-section .content-box .numbers li div p {
                        font-size: 40px;
                    }

                        .icon-text-section .content-box .numbers li div p small {
                            font-size: 18px;
                        }
}

.image-text-section {
    font-family: "Open Sans", sans-serif;
    margin-top: 100px;
    padding: 0 2rem;
}

    .image-text-section .content-box {
        padding: 1rem 0;
        max-width: 1184px;
        margin: 0 auto;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 25px;
    }

        .image-text-section .content-box .text-content {
            max-width: 479px;
        }

            .image-text-section .content-box .text-content .title {
                margin-bottom: 8px;
            }

                .image-text-section .content-box .text-content .title h2 {
                    font-weight: 800;
                    font-size: 48px;
                    color: #172b60;
                }

                .image-text-section .content-box .text-content .title h3 {
                    font-weight: 700;
                    font-size: 18px;
                    text-transform: uppercase;
                    color: #4e8804;
                }

            .image-text-section .content-box .text-content .text-body {
                margin-bottom: 40px;
            }

                .image-text-section .content-box .text-content .text-body p {
                    font-size: 16px;
                    line-height: 24px;
                    color: #4b5e8d;
                }

            .image-text-section .content-box .text-content .secondary-button {
                display: inline-block;
                text-decoration: none;
                color: #4092ce;
            }

                .image-text-section .content-box .text-content .secondary-button p {
                    font-weight: 700;
                    font-size: 14px;
                    padding: 12px 28px;
                    border: 2px solid #4092ce;
                    border-radius: 100px;
                    width: fit-content;
                }

                .image-text-section .content-box .text-content .secondary-button:hover p {
                    background: #4b5e8d;
                    border-color: transparent;
                    color: #fff;
                }

                .image-text-section .content-box .text-content .secondary-button:active p {
                    background: #6d89ce;
                    border-color: transparent;
                    color: #fff;
                }

@media screen and (max-width: 728px) {
    .image-text-section {
        padding: 0;
        margin-top: 24px;
        text-align: center;
    }

        .image-text-section .content-box {
            flex-direction: column;
            max-width: 294px;
        }

            .image-text-section .content-box .image-container img {
                width: 100%;
            }

            .image-text-section .content-box .text-content .title h2 {
                font-size: 32px;
            }

            .image-text-section .content-box .text-content .title h3 {
                font-size: 14px;
            }

            .image-text-section .content-box .text-content .secondary-button {
                display: inline-block;
                text-decoration: none;
                color: #4092ce;
            }

                .image-text-section .content-box .text-content .secondary-button p {
                    font-weight: 700;
                    font-size: 14px;
                    padding: 12px 28px;
                    border: 2px solid #4092ce;
                    border-radius: 100px;
                    width: fit-content;
                }
}

.workshop-section {
    padding: 0 2rem;
    font-family: "Open Sans", sans-serif;
    background: linear-gradient(116.28deg, #4200ff 28.88%, #00ffff 100.93%);
    margin-top: 100px;
}

    .workshop-section .content-box {
        padding: 1rem 0;
        max-width: 1184px;
        margin: 0 auto;
        padding: 80px 0;
    }

        .section-pretitle {
            font-weight: 700;
            font-size: 18px;
            text-transform: uppercase;
            color: #00ffff;
            margin-bottom: 10px;
        }

        .section-title {
            font-weight: 800;
            font-size: 48px;
            color: #ffffff;
        }

        /*.workshop-section .content-box .title h3 {
            font-weight: 700;
            font-size: 18px;
            text-transform: uppercase;
            color: #4e8804;
            color: #00ffff;
        }*/

        .workshop-section .content-box .title .title-and-logo {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

            /* Course card titles (from partial) */
            .workshop-course-title {
                font-size: 20px;
                font-weight: 600;
                color: #ffffff;
                line-height: 1.4;
                margin-bottom: 0.5rem;
            }
/*
            .workshop-section .content-box .title .title-and-logo h2 {
                font-weight: 800;
                font-size: 48px;
                color: #172b60;
                color: #ffffff;
            }*/

        .workshop-section .content-box .description {
            margin-bottom: 40px;
        }

            .workshop-section .content-box .description p {
                font-size: 16px;
                line-height: 24px;
                color: #4b5e8d;
                color: #ffffff;
            }

        .workshop-section .content-box .tab {
            margin-bottom: 40px;
        }

            .workshop-section .content-box .tab .tab-head {
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
                flex-wrap: wrap;
                gap: 32px;
                margin-bottom: 40px;
                text-transform: uppercase;
                overflow: auto;
            }

                .workshop-section .content-box .tab .tab-head::-webkit-scrollbar {
                    display: none;
                }

                .workshop-section .content-box .tab .tab-head .tab-text {
                    padding: 4px 24px;
                    border-radius: 4px;
                    color: #ffffff;
                    cursor: pointer;
                    user-select: none;
                    text-align: center;
                    min-width: fit-content;
                    transition: 0.15s;
                }

                    .workshop-section .content-box .tab .tab-head .tab-text.is-active {
                        background-color: #00ffff;
                        color: #001aff;
                        font-weight: 700;
                    }

                        .workshop-section .content-box .tab .tab-head .tab-text.is-active:hover {
                            background-color: #00ffff;
                        }

                    .workshop-section .content-box .tab .tab-head .tab-text:hover {
                        background-color: #6d89ce;
                    }

            .workshop-section .content-box .tab .tab-body {
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                flex-wrap: wrap;
            }

                .workshop-section .content-box .tab .tab-body .tab-content {
                    display: none;
                }

                    .workshop-section .content-box .tab .tab-body .tab-content.is-active {
                        display: block;
                    }

                    .workshop-section .content-box .tab .tab-body .tab-content .cards {
                        display: flex;
                        flex-direction: row;
                        justify-content: initial;
                        align-items: center;
                        flex-wrap: wrap;
                        gap: 24px;
                    }

                        .workshop-section .content-box .tab .tab-body .tab-content .cards .card-course {
                            background-color: #ffffff;
                            max-width: 356px;
                            padding: 8px;
                            border-radius: 8px;
                        }

                            .workshop-section
                            .content-box
                            .tab
                            .tab-body
                            .tab-content
                            .cards
                            .card-course
                            a {
                                text-decoration: none;
                            }

                                .workshop-section
                                .content-box
                                .tab
                                .tab-body
                                .tab-content
                                .cards
                                .card-course
                                a
                                .thumbnail
                                img {
                                    width: 100%;
                                    border-radius: 4px;
                                }

                                .workshop-section
                                .content-box
                                .tab
                                .tab-body
                                .tab-content
                                .cards
                                .card-course
                                a
                                .body-content {
                                    padding: 24px 8px 8px 8px;
                                }

                                    .workshop-section
                                    .content-box
                                    .tab
                                    .tab-body
                                    .tab-content
                                    .cards
                                    .card-course
                                    a
                                    .body-content
                                    .tag-and-title {
                                        margin-bottom: 26px;
                                    }

                                        .workshop-section
                                        .content-box
                                        .tab
                                        .tab-body
                                        .tab-content
                                        .cards
                                        .card-course
                                        a
                                        .body-content
                                        .tag-and-title
                                        .tag-and-bookmarker {
                                            display: flex;
                                            flex-direction: row;
                                            justify-content: space-between;
                                            align-items: center;
                                            flex-wrap: wrap;
                                            margin-bottom: 20px;
                                        }

                                            .workshop-section
                                            .content-box
                                            .tab
                                            .tab-body
                                            .tab-content
                                            .cards
                                            .card-course
                                            a
                                            .body-content
                                            .tag-and-title
                                            .tag-and-bookmarker
                                            .tag {
                                                color: #001aff;
                                                background-color: #00ffff;
                                                padding: 4px 8px;
                                                font-size: 12px;
                                                font-weight: 700;
                                                border-radius: 4px;
                                            }

                                        .workshop-section
                                        .content-box
                                        .tab
                                        .tab-body
                                        .tab-content
                                        .cards
                                        .card-course
                                        a
                                        .body-content
                                        .tag-and-title
                                        .title-and-descripton
                                        h4 {
                                            margin-bottom: 8px;
                                            font-size: 24px;
                                            color: #001aff;
                                        }

                                        .workshop-section
                                        .content-box
                                        .tab
                                        .tab-body
                                        .tab-content
                                        .cards
                                        .card-course
                                        a
                                        .body-content
                                        .tag-and-title
                                        .title-and-descripton
                                        p {
                                            font-size: 16px;
                                            line-height: 24px;
                                            color: #4b5e8d;
                                        }

                                    .workshop-section
                                    .content-box
                                    .tab
                                    .tab-body
                                    .tab-content
                                    .cards
                                    .card-course
                                    a
                                    .body-content
                                    .footer
                                    .divider {
                                        margin-bottom: 16px;
                                        border-color: #6d89ce;
                                        opacity: 0.2;
                                    }

                                    .workshop-section
                                    .content-box
                                    .tab
                                    .tab-body
                                    .tab-content
                                    .cards
                                    .card-course
                                    a
                                    .body-content
                                    .footer
                                    .wrap-content {
                                        display: flex;
                                        flex-direction: row;
                                        justify-content: space-between;
                                        align-items: center;
                                        flex-wrap: wrap;
                                    }

                                        .workshop-section
                                        .content-box
                                        .tab
                                        .tab-body
                                        .tab-content
                                        .cards
                                        .card-course
                                        a
                                        .body-content
                                        .footer
                                        .wrap-content
                                        .duration
                                        * {
                                            display: inline;
                                            vertical-align: middle;
                                        }

                                        .workshop-section
                                        .content-box
                                        .tab
                                        .tab-body
                                        .tab-content
                                        .cards
                                        .card-course
                                        a
                                        .body-content
                                        .footer
                                        .wrap-content
                                        .duration
                                        p {
                                            font-size: 12px;
                                            font-weight: 700;
                                            color: #4b5e8d;
                                        }

                                        .workshop-section
                                        .content-box
                                        .tab
                                        .tab-body
                                        .tab-content
                                        .cards
                                        .card-course
                                        a
                                        .body-content
                                        .footer
                                        .wrap-content
                                        .date
                                        * {
                                            display: inline;
                                            vertical-align: middle;
                                        }

                                        .workshop-section
                                        .content-box
                                        .tab
                                        .tab-body
                                        .tab-content
                                        .cards
                                        .card-course
                                        a
                                        .body-content
                                        .footer
                                        .wrap-content
                                        .date
                                        p {
                                            font-size: 12px;
                                            font-weight: 700;
                                            color: #4b5e8d;
                                        }

        .workshop-section .content-box .button-box {
            text-align: center;
        }

            .workshop-section .content-box .button-box .secondary-button {
                display: inline-block;
                text-decoration: none;
                color: #4092ce;
                margin: 0 auto;
            }

                .workshop-section .content-box .button-box .secondary-button p {
                    font-weight: 700;
                    font-size: 14px;
                    padding: 12px 28px;
                    border: 2px solid #4092ce;
                    border-radius: 100px;
                    width: fit-content;
                    background-color: #ffffff;
                    border: none;
                }

                .workshop-section .content-box .button-box .secondary-button:hover p {
                    background: #4b5e8d;
                    border-color: transparent;
                    color: #fff;
                }

                .workshop-section .content-box .button-box .secondary-button:active p {
                    background: #6d89ce;
                    border-color: transparent;
                    color: #fff;
                }

@media screen and (max-width: 728px) {
    .workshop-section {
        padding: 0;
        margin-top: 40px;
        overflow: hidden;
        max-width: 100vw;
    }

        .workshop-section .content-box {
            padding: 40px 0;
        }

            .workshop-section .content-box .title {
                max-width: 294px;
                margin: 0 auto;
                text-align: center;
                margin-bottom: 8px;
            }

                .workshop-section .content-box .title h3 {
                    font-size: 14px;
                    margin-bottom: 8px;
                }

                .workshop-section .content-box .title .title-and-logo {
                    display: block;
                }

                    .workshop-section .content-box .title .title-and-logo h2 {
                        font-size: 32px;
                    }

                    .workshop-section .content-box .title .title-and-logo img {
                        display: none;
                    }

            .workshop-section .content-box .description {
                text-align: center;
                max-width: 294px;
                margin: 0 auto;
            }

            .workshop-section .content-box .tab {
                margin-top: 24px;
            }

                .workshop-section .content-box .tab .tab-head {
                    flex-wrap: nowrap;
                    gap: 16px;
                    overflow-x: scroll;
                    padding-left: calc((100% - 294px) / 2);
                    padding-right: calc((100% - 294px) / 2);
                    position: relative;
                }

                .workshop-section .content-box .tab .tab-body {
                    max-width: 294px;
                    margin: 0 auto;
                }
}

.news-section {
    padding: 66px 2rem;
    font-family: "Open Sans", sans-serif;
}

    .news-section .content-box {
        padding: 1rem 0;
        max-width: 1184px;
        margin: 0 auto;
    }

        .news-section .content-box .title {
            margin-bottom: 40px;
        }

            /*.news-section .content-box .title h2 {
                font-weight: 800;
                font-size: 48px;
                color: #172b60;
            }

            .news-section .content-box .title h3 {
                font-weight: 700;
                font-size: 18px;
                text-transform: uppercase;
                color: #4e8804;
            }*/

            
            .news-pretitle {
                font-weight: 700;
                font-size: 18px;
                text-transform: uppercase;
                color: #4e8804;
                margin-bottom: 10px;
            }

          
            .news-section-title {
                font-weight: 800;
                font-size: 48px;
                color: #172b60;
                line-height: 1.2;
            }


            .news-featured-title {
                font-weight: 800;
                font-size: 32px;
                color: #ffffff;
                margin-top: 8px;
            }


            .news-article-title {
                font-weight: 600;
                font-size: 18px;
                color: #ffffff;
                line-height: 1.4;
            }
          
.news-section .content-box .news {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

            .news-section .content-box .news .featured-news {
                background-image: url("/assets/imgs/temp/news-section/96.png");
                background-size: cover;
                background-position: center;
                border-radius: 14px;
                overflow: hidden;
                height: 665px;
                width: 580px;
            }

                .news-section .content-box .news .featured-news .news-link {
                    display: flex;
                    flex-direction: column;
                    justify-content: flex-end;
                    align-items: flex-start;
                    flex-wrap: wrap;
                    padding: 28px 32px;
                    background: linear-gradient(rgba(0, 0, 0, 0), black);
                    width: 100%;
                    height: 100%;
                    text-decoration: none;
                }

                    .news-section .content-box .news .featured-news .news-link .tag {
                        color: #4e8804;
                        background-color: #ecffb5;
                        padding: 4px 8px;
                        font-size: 12px;
                        font-weight: 700;
                        border-radius: 4px;
                        display: inline-block;
                    }

                    .news-section .content-box .news .featured-news .news-link h2 {
                        font-weight: 800;
                        font-size: 48px;
                        color: #172b60;
                        margin-top: 8px;
                        font-size: 32px;
                        color: #ffffff;
                    }

                    .news-section .content-box .news .featured-news .news-link .footer {
                        width: 100%;
                    }

                        .news-section .content-box .news .featured-news .news-link .footer .divider {
                            margin-bottom: 16px;
                            border-color: #6d89ce;
                            opacity: 0.2;
                            margin-top: 8px;
                            border-color: #eaf0ff;
                        }

                        .news-section .content-box .news .featured-news .news-link .footer .date * {
                            display: inline;
                            vertical-align: middle;
                        }

                        .news-section .content-box .news .featured-news .news-link .footer .date p {
                            font-size: 12px;
                            font-weight: 700;
                            color: #4b5e8d;
                        }

                        .news-section .content-box .news .featured-news .news-link .footer .date p {
                            color: #ffffff;
                        }

            .news-section .content-box .news .news-right-container {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                flex-wrap: wrap;
                gap: 24px;
            }

                .news-section .content-box .news .news-right-container .news-right .news-link {
                    display: flex;
                    flex-direction: row;
                    justify-content: space-between;
                    align-items: center;
                    flex-wrap: wrap;
                    gap: 24px;
                    text-decoration: none;
                    box-sizing: border-box;
                }

                    .news-section
                    .content-box
                    .news
                    .news-right-container
                    .news-right
                    .news-link
                    .news-image {
                        max-width: 177px;
                        max-height: 206px;
                        border-radius: 14px;
                        overflow: hidden;
                        display: flex;
                        flex-direction: row;
                        justify-content: center;
                        align-items: center;
                        flex-wrap: wrap;
                    }

                        .news-section
                        .content-box
                        .news
                        .news-right-container
                        .news-right
                        .news-link
                        .news-image
                        img {
                            min-width: 500px;
                        }

                    .news-section
                    .content-box
                    .news
                    .news-right-container
                    .news-right
                    .news-link
                    .news-content {
                        max-width: 379px;
                    }

                        .news-section
                        .content-box
                        .news
                        .news-right-container
                        .news-right
                        .news-link
                        .news-content
                        .tag {
                            color: #4e8804;
                            background-color: #ecffb5;
                            padding: 4px 8px;
                            font-size: 12px;
                            font-weight: 700;
                            border-radius: 4px;
                            display: inline-block;
                            width: max-content;
                        }

                        .news-section
                        .content-box
                        .news
                        .news-right-container
                        .news-right
                        .news-link
                        .news-content
                        .news-title {
                            margin-bottom: 8px;
                            font-size: 24px;
                            color: #001aff;
                            margin-top: 8px;
                            color: #172b60;
                        }

                        .news-section
                        .content-box
                        .news
                        .news-right-container
                        .news-right
                        .news-link
                        .news-content
                        .news-description {
                            font-size: 16px;
                            line-height: 24px;
                            color: #4b5e8d;
                        }

                        .news-section
                        .content-box
                        .news
                        .news-right-container
                        .news-right
                        .news-link
                        .news-content
                        .news-title,
                        .news-section
                        .content-box
                        .news
                        .news-right-container
                        .news-right
                        .news-link
                        .news-content
                        .news-description {
                            display: -webkit-box;
                            max-width: inherit;
                            -webkit-line-clamp: 2;
                            -webkit-box-orient: vertical;
                            overflow: hidden;
                        }

                        .news-section
                        .content-box
                        .news
                        .news-right-container
                        .news-right
                        .news-link
                        .news-content
                        .footer
                        .divider {
                            margin-top: 15px;
                            margin-bottom: 16px;
                            border-color: #6d89ce;
                            opacity: 0.2;
                        }

                        .news-section
                        .content-box
                        .news
                        .news-right-container
                        .news-right
                        .news-link
                        .news-content
                        .footer
                        .date
                        * {
                            display: inline;
                            vertical-align: middle;
                        }

                        .news-section
                        .content-box
                        .news
                        .news-right-container
                        .news-right
                        .news-link
                        .news-content
                        .footer
                        .date
                        p {
                            font-size: 12px;
                            font-weight: 700;
                            color: #4b5e8d;
                        }

        .news-section .content-box .button-box {
            margin-top: 44px;
            text-align: center;
        }

            .news-section .content-box .button-box .secondary-button {
                display: inline-block;
                text-decoration: none;
                color: #4092ce;
            }

                .news-section .content-box .button-box .secondary-button p {
                    font-weight: 700;
                    font-size: 14px;
                    padding: 12px 28px;
                    border: 2px solid #4092ce;
                    border-radius: 100px;
                    width: fit-content;
                }

                .news-section .content-box .button-box .secondary-button:hover p {
                    background: #4b5e8d;
                    border-color: transparent;
                    color: #fff;
                }

                .news-section .content-box .button-box .secondary-button:active p {
                    background: #6d89ce;
                    border-color: transparent;
                    color: #fff;
                }

@media screen and (max-width: 728px) {
    .news-section {
        padding: 40px 0;
    }

        .news-section .content-box {
            max-width: 294px;
        }

            .news-section .content-box .title {
                text-align: center;
            }

                .news-section .content-box .title h2 {
                    font-size: 32px;
                }

                .news-section .content-box .title h3 {
                    font-size: 14px;
                }

            .news-section .content-box .news {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: flex-start;
                flex-wrap: wrap;
            }

                .news-section .content-box .news .featured-news {
                    max-width: 100%;
                }

                .news-section
                .content-box
                .news
                .news-right-container
                .news-right
                .news-link {
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: flex-start;
                    flex-wrap: wrap;
                }

                    .news-section
                    .content-box
                    .news
                    .news-right-container
                    .news-right
                    .news-link
                    .news-image {
                        max-width: 294px;
                        max-height: 220px;
                    }

                    .news-section
                    .content-box
                    .news
                    .news-right-container
                    .news-right
                    .news-link
                    .news-content {
                        max-width: 294px;
                    }
}

.news-list-section {
    font-family: "Open Sans";
    padding: 0 2rem;
    margin-top: 80px;
}

    .news-list-section .tab .tab-head {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
        gap: 14px;
        margin: 0 auto;
        max-width: 1184px;
        margin-bottom: 40px;
        text-transform: uppercase;
    }

        .news-list-section .tab .tab-head::-webkit-scrollbar {
            display: none;
        }

        .news-list-section .tab .tab-head .tab-text {
            min-width: fit-content;
            padding: 4px 24px;
            border-radius: 4px;
            user-select: none;
            cursor: pointer;
            font-size: 16px;
            text-align: center;
            color: #172b60;
            transition: 0.15s;
        }

            .news-list-section .tab .tab-head .tab-text.is-active {
                background: #4092ce;
                color: #ffffff;
                font-weight: 700;
            }

            .news-list-section .tab .tab-head .tab-text:hover {
                background-color: #6d89ce;
                color: #ffffff;
            }

    .news-list-section .content-box {
        padding: 1rem 0;
        max-width: 1184px;
        margin: 0 auto;
    }

        .news-list-section .content-box .tab-content {
            display: none;
        }

            .news-list-section .content-box .tab-content.is-active {
                display: block;
            }

            .news-list-section .content-box .tab-content .latest-news .news-link {
                text-decoration: none;
            }

                .news-list-section
                .content-box
                .tab-content
                .latest-news
                .news-link
                .desktop-latest-news {
                    display: flex;
                    flex-direction: row;
                    justify-content: space-between;
                    align-items: center;
                    flex-wrap: wrap;
                    flex-wrap: nowrap;
                    gap: 24px;
                }

                    .news-list-section
                    .content-box
                    .tab-content
                    .latest-news
                    .news-link
                    .desktop-latest-news
                    .news-image {
                        height: 404px;
                        overflow: hidden;
                        border-radius: 14px;
                    }

                        .news-list-section
                        .content-box
                        .tab-content
                        .latest-news
                        .news-link
                        .desktop-latest-news
                        .news-image
                        img {
                            height: 100%;
                        }

                    .news-list-section
                    .content-box
                    .tab-content
                    .latest-news
                    .news-link
                    .desktop-latest-news
                    .news-content {
                        max-width: 50%;
                    }

                        .news-list-section
                        .content-box
                        .tab-content
                        .latest-news
                        .news-link
                        .desktop-latest-news
                        .news-content
                        .tag {
                            color: #4e8804;
                            background-color: #ecffb5;
                            padding: 4px 8px;
                            font-size: 12px;
                            font-weight: 700;
                            border-radius: 4px;
                            display: inline-block;
                            width: max-content;
                        }

                        .news-list-section
                        .content-box
                        .tab-content
                        .latest-news
                        .news-link
                        .desktop-latest-news
                        .news-content
                        .news-title {
                            margin-top: 8px;
                            font-weight: 800;
                            font-size: 48px;
                            color: #172b60;
                            font-weight: 700;
                            line-height: 58px;
                        }

                        .news-list-section
                        .content-box
                        .tab-content
                        .latest-news
                        .news-link
                        .desktop-latest-news
                        .news-content
                        .news-description {
                            margin-top: 24px;
                            font-size: 16px;
                            line-height: 24px;
                            color: #4b5e8d;
                            line-height: 26px;
                            display: -webkit-box;
                            -webkit-line-clamp: 2;
                            -webkit-box-orient: vertical;
                            overflow: hidden;
                        }

                        .news-list-section
                        .content-box
                        .tab-content
                        .latest-news
                        .news-link
                        .desktop-latest-news
                        .news-content
                        .footer {
                            margin-top: 24px;
                        }

                            .news-list-section
                            .content-box
                            .tab-content
                            .latest-news
                            .news-link
                            .desktop-latest-news
                            .news-content
                            .footer
                            .divider {
                                margin-bottom: 16px;
                                border-color: #6d89ce;
                                opacity: 0.2;
                            }

                            .news-list-section
                            .content-box
                            .tab-content
                            .latest-news
                            .news-link
                            .desktop-latest-news
                            .news-content
                            .footer
                            .date
                            * {
                                display: inline;
                                vertical-align: middle;
                            }

                            .news-list-section
                            .content-box
                            .tab-content
                            .latest-news
                            .news-link
                            .desktop-latest-news
                            .news-content
                            .footer
                            .date
                            p {
                                font-size: 12px;
                                font-weight: 700;
                                color: #4b5e8d;
                            }

                .news-list-section
                .content-box
                .tab-content
                .latest-news
                .news-link
                .mobile-latest-news {
                    display: none;
                }

            .news-list-section .content-box .tab-content .recent-news {
                margin-top: 96px;
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                flex-wrap: wrap;
                flex-wrap: nowrap;
                gap: 24px;
            }

                .news-list-section .content-box .tab-content .recent-news .news-left-container,
                .news-list-section
                .content-box
                .tab-content
                .recent-news
                .news-right-container {
                    display: flex;
                    flex-direction: column;
                    justify-content: initial;
                    align-items: center;
                    flex-wrap: wrap;
                    gap: 40px;
                    max-width: 50%;
                }

                    .news-list-section
                    .content-box
                    .tab-content
                    .recent-news
                    .news-left-container
                    .news,
                    .news-list-section
                    .content-box
                    .tab-content
                    .recent-news
                    .news-right-container
                    .news {
                        max-width: 100%;
                        height: 206px;
                    }

                        .news-list-section
                        .content-box
                        .tab-content
                        .recent-news
                        .news-left-container
                        .news
                        .news-link,
                        .news-list-section
                        .content-box
                        .tab-content
                        .recent-news
                        .news-right-container
                        .news
                        .news-link {
                            height: inherit;
                            display: flex;
                            flex-direction: row;
                            justify-content: space-between;
                            align-items: center;
                            flex-wrap: wrap;
                            flex-wrap: nowrap;
                            gap: 24px;
                            text-decoration: none;
                        }

                            .news-list-section
                            .content-box
                            .tab-content
                            .recent-news
                            .news-left-container
                            .news
                            .news-link
                            .news-image,
                            .news-list-section
                            .content-box
                            .tab-content
                            .recent-news
                            .news-right-container
                            .news
                            .news-link
                            .news-image {
                                max-width: 217px;
                                height: inherit;
                                overflow: hidden;
                                border-radius: 14px;
                                display: flex;
                                flex-direction: row;
                                justify-content: center;
                                align-items: center;
                                flex-wrap: wrap;
                            }

                                .news-list-section
                                .content-box
                                .tab-content
                                .recent-news
                                .news-left-container
                                .news
                                .news-link
                                .news-image
                                img,
                                .news-list-section
                                .content-box
                                .tab-content
                                .recent-news
                                .news-right-container
                                .news
                                .news-link
                                .news-image
                                img {
                                    height: 100%;
                                }

                            .news-list-section
                            .content-box
                            .tab-content
                            .recent-news
                            .news-left-container
                            .news
                            .news-link
                            .news-content
                            .tag,
                            .news-list-section
                            .content-box
                            .tab-content
                            .recent-news
                            .news-right-container
                            .news
                            .news-link
                            .news-content
                            .tag {
                                color: #4e8804;
                                background-color: #ecffb5;
                                padding: 4px 8px;
                                font-size: 12px;
                                font-weight: 700;
                                border-radius: 4px;
                                display: inline-block;
                                width: max-content;
                            }

                            .news-list-section
                            .content-box
                            .tab-content
                            .recent-news
                            .news-left-container
                            .news
                            .news-link
                            .news-content
                            .news-title,
                            .news-list-section
                            .content-box
                            .tab-content
                            .recent-news
                            .news-right-container
                            .news
                            .news-link
                            .news-content
                            .news-title {
                                margin-top: 8px;
                                margin-bottom: 8px;
                                font-size: 24px;
                                color: #001aff;
                                color: #172b60;
                            }

                            .news-list-section
                            .content-box
                            .tab-content
                            .recent-news
                            .news-left-container
                            .news
                            .news-link
                            .news-content
                            .news-description,
                            .news-list-section
                            .content-box
                            .tab-content
                            .recent-news
                            .news-right-container
                            .news
                            .news-link
                            .news-content
                            .news-description {
                                font-size: 16px;
                                line-height: 24px;
                                color: #4b5e8d;
                            }

                            .news-list-section
                            .content-box
                            .tab-content
                            .recent-news
                            .news-left-container
                            .news
                            .news-link
                            .news-content
                            .news-title,
                            .news-list-section
                            .content-box
                            .tab-content
                            .recent-news
                            .news-left-container
                            .news
                            .news-link
                            .news-content
                            .news-description,
                            .news-list-section
                            .content-box
                            .tab-content
                            .recent-news
                            .news-right-container
                            .news
                            .news-link
                            .news-content
                            .news-title,
                            .news-list-section
                            .content-box
                            .tab-content
                            .recent-news
                            .news-right-container
                            .news
                            .news-link
                            .news-content
                            .news-description {
                                display: -webkit-box;
                                -webkit-line-clamp: 2;
                                -webkit-box-orient: vertical;
                                overflow: hidden;
                            }

                            .news-list-section
                            .content-box
                            .tab-content
                            .recent-news
                            .news-left-container
                            .news
                            .news-link
                            .news-content
                            .footer,
                            .news-list-section
                            .content-box
                            .tab-content
                            .recent-news
                            .news-right-container
                            .news
                            .news-link
                            .news-content
                            .footer {
                                margin-top: 16px;
                            }

                                .news-list-section
                                .content-box
                                .tab-content
                                .recent-news
                                .news-left-container
                                .news
                                .news-link
                                .news-content
                                .footer
                                .divider,
                                .news-list-section
                                .content-box
                                .tab-content
                                .recent-news
                                .news-right-container
                                .news
                                .news-link
                                .news-content
                                .footer
                                .divider {
                                    margin-bottom: 16px;
                                    border-color: #6d89ce;
                                    opacity: 0.2;
                                }

                                .news-list-section
                                .content-box
                                .tab-content
                                .recent-news
                                .news-left-container
                                .news
                                .news-link
                                .news-content
                                .footer
                                .date
                                *,
                                .news-list-section
                                .content-box
                                .tab-content
                                .recent-news
                                .news-right-container
                                .news
                                .news-link
                                .news-content
                                .footer
                                .date
                                * {
                                    display: inline;
                                    vertical-align: middle;
                                }

                                .news-list-section
                                .content-box
                                .tab-content
                                .recent-news
                                .news-left-container
                                .news
                                .news-link
                                .news-content
                                .footer
                                .date
                                p,
                                .news-list-section
                                .content-box
                                .tab-content
                                .recent-news
                                .news-right-container
                                .news
                                .news-link
                                .news-content
                                .footer
                                .date
                                p {
                                    font-size: 12px;
                                    font-weight: 700;
                                    color: #4b5e8d;
                                }

        .news-list-section .content-box .pagination {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            margin: 40px 0;
        }

            .news-list-section .content-box .pagination .control {
                cursor: pointer;
            }

            .news-list-section .content-box .pagination .page {
                width: 64px;
                text-align: center;
                font-size: 18px;
                font-weight: 700;
                color: #b7bdc8;
                cursor: pointer;
            }

                .news-list-section .content-box .pagination .page.active {
                    color: #4092ce;
                }

        .news-list-section .content-box .button-box {
            display: none;
        }

@media screen and (max-width: 728px) {
    .news-list-section {
        padding: 0;
        overflow: hidden;
    }

        .news-list-section .tab .tab-head {
            max-width: 100vw;
            padding-left: calc((100% - 294px) / 2);
            padding-right: calc((100% - 294px) / 2);
            flex-wrap: nowrap;
            overflow-x: scroll;
        }

        .news-list-section .content-box {
            max-width: 294px;
        }

            .news-list-section
            .content-box
            .tab-content
            .latest-news
            .news-link
            .desktop-latest-news {
                display: none;
            }

            .news-list-section
            .content-box
            .tab-content
            .latest-news
            .news-link
            .mobile-latest-news {
                background-image: url("../../../assets/NewsSection/96.png");
                background-size: cover;
                background-position: center;
                border-radius: 14px;
                overflow: hidden;
                height: 523px;
                width: 100%;
                display: inline-block;
            }

                .news-list-section
                .content-box
                .tab-content
                .latest-news
                .news-link
                .mobile-latest-news
                .news-overlay {
                    display: flex;
                    flex-direction: column;
                    justify-content: flex-end;
                    align-items: flex-start;
                    flex-wrap: wrap;
                    padding: 28px 32px;
                    background: linear-gradient(rgba(0, 0, 0, 0), black);
                    height: 100%;
                    text-decoration: none;
                }

                    .news-list-section
                    .content-box
                    .tab-content
                    .latest-news
                    .news-link
                    .mobile-latest-news
                    .news-overlay
                    .tag {
                        color: #4e8804;
                        background-color: #ecffb5;
                        padding: 4px 8px;
                        font-size: 12px;
                        font-weight: 700;
                        border-radius: 4px;
                        display: inline-block;
                    }

                    .news-list-section
                    .content-box
                    .tab-content
                    .latest-news
                    .news-link
                    .mobile-latest-news
                    .news-overlay
                    h2 {
                        font-weight: 800;
                        font-size: 48px;
                        color: #172b60;
                        line-height: 42px;
                        margin-top: 8px;
                        font-size: 29px;
                        color: #ffffff;
                    }

                    .news-list-section
                    .content-box
                    .tab-content
                    .latest-news
                    .news-link
                    .mobile-latest-news
                    .news-overlay
                    .footer {
                        width: 100%;
                    }

                        .news-list-section
                        .content-box
                        .tab-content
                        .latest-news
                        .news-link
                        .mobile-latest-news
                        .news-overlay
                        .footer
                        .divider {
                            margin-bottom: 16px;
                            border-color: #6d89ce;
                            opacity: 0.2;
                            margin-top: 8px;
                            border-color: #eaf0ff;
                        }

                        .news-list-section
                        .content-box
                        .tab-content
                        .latest-news
                        .news-link
                        .mobile-latest-news
                        .news-overlay
                        .footer
                        .date
                        * {
                            display: inline;
                            vertical-align: middle;
                        }

                        .news-list-section
                        .content-box
                        .tab-content
                        .latest-news
                        .news-link
                        .mobile-latest-news
                        .news-overlay
                        .footer
                        .date
                        p {
                            font-size: 12px;
                            font-weight: 700;
                            color: #4b5e8d;
                        }

                        .news-list-section
                        .content-box
                        .tab-content
                        .latest-news
                        .news-link
                        .mobile-latest-news
                        .news-overlay
                        .footer
                        .date
                        p {
                            color: #ffffff;
                        }

            .news-list-section .content-box .tab-content .recent-news {
                flex-direction: column;
            }

                .news-list-section
                .content-box
                .tab-content
                .recent-news
                .news-left-container {
                    max-width: 100%;
                }

                    .news-list-section
                    .content-box
                    .tab-content
                    .recent-news
                    .news-left-container
                    .news {
                        height: initial;
                    }

                        .news-list-section
                        .content-box
                        .tab-content
                        .recent-news
                        .news-left-container
                        .news
                        .news-link {
                            flex-direction: column;
                            height: fit-content;
                        }

                            .news-list-section
                            .content-box
                            .tab-content
                            .recent-news
                            .news-left-container
                            .news
                            .news-link
                            .news-image {
                                max-width: 100%;
                                height: 220px;
                            }

                .news-list-section
                .content-box
                .tab-content
                .recent-news
                .news-right-container {
                    display: none;
                }

            .news-list-section .content-box .pagination {
                display: none;
            }

            .news-list-section .content-box .button-box {
                margin-top: 24px;
                display: block;
            }

                .news-list-section .content-box .button-box button {
                    cursor: pointer;
                    font-family: "Open Sans";
                    width: 100%;
                    appearance: none;
                    border: 2px solid #4092ce;
                    background: transparent;
                    color: #4092ce;
                    border-radius: 50px;
                    padding: 12px 0;
                    font-size: 14px;
                    font-weight: 700;
                }
}

.card-image-text-section-slider {
    font-family: "Open Sans", sans-serif;
    margin-top: 18px;
    padding: 0 2rem;
}

@media screen and (max-width: 575px) {
    .card-image-text-section-slider {
        padding: 0;
    }
}

.card-image-text-section-slider .content-box {
    padding: 1rem 0;
    max-width: 1184px;
    margin: 0 auto;
    padding: 1rem 30px;
    max-width: 1244px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    overflow: hidden;
}

@media screen and (max-width: 575px) {
    .card-image-text-section-slider .content-box {
        padding: 0 0.75rem;
    }
}

.card-image-text-section-slider .content-box .section-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

@media screen and (max-width: 767px) {
    .card-image-text-section-slider .content-box .section-wrapper {
        margin-bottom: 1rem;
    }
}

.card-image-text-section-slider .content-box .section-wrapper .section-title {
    flex: 1;
    font-size: 2rem;
    line-height: 2.625rem;
    color: #172b60;
}

@media screen and (max-width: 767px) {
    .card-image-text-section-slider .content-box .section-wrapper .section-title {
        font-size: 1.5rem;
        line-height: 2.125rem;
    }
}

.card-image-text-section-slider
.content-box
.section-wrapper
.swiper-navigation {
    position: static;
    flex: 0 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

@media screen and (max-width: 575px) {
    .card-image-text-section-slider
    .content-box
    .section-wrapper
    .swiper-navigation {
        display: none;
    }
}

.card-image-text-section-slider
.content-box
.section-wrapper
.swiper-navigation
.prev-slide,
.card-image-text-section-slider
.content-box
.section-wrapper
.swiper-navigation
.next-slide {
    border: 2px solid #4092ce;
    width: 20px;
    height: 20px;
    box-sizing: initial;
    border-radius: 50px;
    padding: 15px;
    cursor: pointer;
    background-color: #ffffff;
}

.card-image-text-section-slider
.content-box
.section-wrapper
.swiper-navigation
.swiper-button-disabled {
    opacity: 0.3;
}

.card-image-text-section-slider
.content-box
.swiper-pagination
.swiper-pagination-bullet {
    width: 8px;
    height: 4px;
    border-radius: 4px;
    transition: all 0.2s ease-in-out;
}

    .card-image-text-section-slider
    .content-box
    .swiper-pagination
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
        width: 24px;
        color: #4092ce;
    }

.card-image-text-section-slider .content-box .card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1rem 0.5rem;
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0px 2px 30px rgba(109, 137, 206, 0.19);
}

    .card-image-text-section-slider .content-box .card .card-image-wrapper {
        margin: -0.5rem 0 1.5rem;
    }

        .card-image-text-section-slider .content-box .card .card-image-wrapper img {
            width: 100%;
            aspect-ratio: 10/9;
            object-fit: cover;
            border-radius: 0.25rem;
        }

@media screen and (max-width: 575px) {
    .card-image-text-section-slider .content-box .card .card-image-wrapper img {
        aspect-ratio: 1;
    }
}

.card-image-text-section-slider
.content-box
.card
.card-image-wrapper ~ .card-text-wrapper {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

.card-image-text-section-slider .content-box .card .card-text-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
}

    .card-image-text-section-slider
    .content-box
    .card
    .card-text-wrapper
    .card-label {
        display: block;
        font-size: 0.875rem;
        line-height: 1.375rem;
        color: #4e8804;
    }

    .card-image-text-section-slider
    .content-box
    .card
    .card-text-wrapper
    .card-title {
        flex: 1;
        display: block;
        font-size: 1.125rem;
        line-height: 1.75rem;
        color: #172b60;
        margin-top: 1rem;
    }

    .card-image-text-section-slider
    .content-box
    .card
    .card-text-wrapper
    .card-label-info {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        font-size: 0.75rem;
        line-height: 1rem;
        color: #4e8804;
        margin-top: 1rem;
    }

        .card-image-text-section-slider
        .content-box
        .card
        .card-text-wrapper
        .card-label-info > img {
            flex: 0 0 auto;
        }

.card-image-text-section-slider .content-box .swiper {
    overflow: visible;
}

    .card-image-text-section-slider .content-box .swiper .swiper-wrapper {
        padding-bottom: 30px;
    }

@media screen and (max-width: 767px) {
    .card-image-text-section-slider .content-box .swiper .swiper-wrapper {
        padding-bottom: 42px;
    }
}

.card-image-text-section-slider
.content-box
.swiper
.swiper-wrapper
.swiper-slide {
    height: auto;
    opacity: 0;
    transition: none;
}

@media screen and (max-width: 575px) {
    .card-image-text-section-slider
    .content-box
    .swiper
    .swiper-wrapper
    .swiper-slide {
        max-width: 215px;
    }
}

.card-image-text-section-slider
.content-box
.swiper
.swiper-wrapper
.swiper-slide.swiper-slide-visible {
    opacity: 1;
}

.card-image-text-section-slider
.content-box
.swiper
.swiper-wrapper
.swiper-slide
.slide-content {
    height: 100%;
}

.checklist-section {
    font-family: "Open Sans", sans-serif;
    padding: 0 2rem;
}

    .checklist-section .content-box {
        padding: 1rem 0;
        max-width: 1184px;
        margin: 0 auto;
    }

        .checklist-section .content-box .checklist {
            display: flex;
            align-items: start;
            flex-direction: column;
            max-width: 780px;
            margin: 0 auto;
        }

            .checklist-section .content-box .checklist .checklist-item {
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: flex-start;
                flex-wrap: wrap;
                flex-wrap: nowrap;
                gap: 30px;
                margin: 50px 0;
            }

                .checklist-section .content-box .checklist .checklist-item img {
                    margin-left: 44px;
                }

                .checklist-section .content-box .checklist .checklist-item div p {
                    color: #4b5e8d;
                }

                    .checklist-section .content-box .checklist .checklist-item div p em {
                        font-weight: 700;
                        font-style: normal;
                    }

@media screen and (max-width: 728px) {
    .checklist-section {
        padding: 0;
    }

        .checklist-section .content-box {
            max-width: 294px;
        }

            .checklist-section .content-box .checklist .checklist-item {
                gap: 16px;
            }

                .checklist-section .content-box .checklist .checklist-item img {
                    margin: 0;
                }
}

.image-quote-section {
    background-color: #eff0f6;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top right;
    margin-top: 40px;
    padding: 0 2rem;
    font-family: "Open Sans";
}

    .image-quote-section .content-box {
        padding: 1rem 0;
        max-width: 1184px;
        margin: 0 auto;
        padding: 123px 0;
        z-index: 1;
    }

        .image-quote-section .content-box .text-content {
            max-width: 579px;
        }

            .image-quote-section .content-box .text-content .message {
                margin-top: 24px;
                color: #313c59;
                font-size: 24px;
                line-height: 34px;
            }

            .image-quote-section .content-box .text-content h2 {
                margin-top: 24px;
                font-weight: 800;
                font-size: 48px;
                color: #172b60;
                color: #4e8804;
            }

            .image-quote-section .content-box .text-content .role {
                margin-top: 16px;
                color: #4b5e8d;
            }

            .image-quote-section .content-box .text-content hr {
                margin-top: 16px;
                width: 181px;
                appearance: none;
                border: 2px solid #4b5e8d;
            }

@media screen and (max-width: 728px) {
    .image-quote-section {
        background-size: cover;
    }

        .image-quote-section .content-box {
            max-width: 294px;
        }

            .image-quote-section .content-box .text-content .message {
                font-size: 24px;
                font-weight: 700;
            }

            .image-quote-section .content-box .text-content h2 {
                font-size: 22px;
            }

            .image-quote-section .content-box .text-content .role {
                font-size: 12px;
            }

            .image-quote-section .content-box .text-content hr {
                width: 271px;
            }

            .image-quote-section .content-box .background-image {
                display: none;
            }
}

.products-list-section {
    font-family: "Open Sans", sans-serif;
    padding: 0 2rem;
}

    .products-list-section .content-box {
        padding: 1rem 0;
        max-width: 1184px;
        margin: 0 auto;
    }

        .products-list-section .content-box .section-header h3 {
            font-weight: 700;
            font-size: 18px;
            text-transform: uppercase;
            color: #4e8804;
            font-size: 32px;
            text-transform: initial;
            color: #172b60;
        }

        .products-list-section .content-box .section-header p {
            font-size: 16px;
            line-height: 24px;
            color: #4b5e8d;
        }

        .products-list-section .content-box .products-list {
            display: flex;
            flex-direction: row;
            justify-content: flex-start;
            align-items: stretch;
            flex-wrap: wrap;
            margin-top: 40px;
            gap: 24px;
        }

            .products-list-section .content-box .products-list .product {
                border: 1px solid #eaf0ff;
                padding: 8px 12px;
                border-radius: 8px;
                max-width: 378px;
                cursor: pointer;
                background-color: #ffffff;
                transition: 0.1s;
                overflow: hidden;
            }

                .products-list-section .content-box .products-list .product:hover {
                    border-color: #4092ce;
                    box-shadow: 0px 2px 30px rgba(109, 137, 206, 0.19);
                }

                .products-list-section .content-box .products-list .product .product-link {
                    text-decoration: none;
                    height: 100%;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                }

.product .product-link .thumbnail img {
    width: 100%;
    max-height: 262px;
    border-radius: 4px;
    object-fit: cover;
}

.products-list-section
.content-box
.products-list
.product
.product-link
.product-body {
    padding: 24px 8px;
}

    .products-list-section
    .content-box
    .products-list
    .product
    .product-link
    .product-body
    .product-title {
        margin-bottom: 8px;
        font-size: 24px;
        color: #001aff;
        color: #172b60;
    }

    .products-list-section
    .content-box
    .products-list
    .product
    .product-link
    .product-body
    .product-description {
        font-size: 16px;
        line-height: 24px;
        color: #4b5e8d;
        margin-top: 16px;
    }

@media screen and (max-width: 728px) {
    .products-list-section {
        padding: 0;
    }

        .products-list-section .content-box {
            max-width: 294px;
        }

            .products-list-section .content-box .products-list .product-link img {
                transform: translateX(-11%);
            }

            .products-list-section .content-box .products-list .product-link .product {
                max-width: 100%;
            }
}

.rich-text-section {
    font-family: "Open Sans";
    padding: 0 2rem;
    margin-top: 80px;
}

    .rich-text-section:last-child {
        margin-top: 40px;
        margin-bottom: 80px;
    }

    .rich-text-section .content-box {
        padding: 1rem 0;
        max-width: 1184px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

        .rich-text-section .content-box .section-header,
        .rich-text-section .content-box h1,
        .rich-text-section .content-box h2,
        .rich-text-section .content-box h3 {
            max-width: 780px;
            width: 100%;
            margin: 0 auto;
        }

            .rich-text-section .content-box h1:first-child,
            .rich-text-section .content-box h2:first-child,
            .rich-text-section .content-box h3:first-child {
                margin-top: 0px;
            }

        .rich-text-section .content-box h1 {
            font-size: 48px;
            color: #172b60;
            margin-top: 24px;
        }

        .rich-text-section .content-box .section-header .title,
        .rich-text-section .content-box h2 {
            font-size: 32px;
            color: #172b60;
            margin-top: 24px;
        }

        .rich-text-section .content-box h3 {
            font-size: 24px;
            color: #172b60;
            margin-top: 24px;
        }

        .rich-text-section .content-box a {
            color: #4092ce;
        }

        .rich-text-section .content-box .section-header p,
        .rich-text-section .content-box p {
            width: 100%;
        }

            .rich-text-section .content-box .section-header p em {
                color: #172b60;
            }

            .rich-text-section .content-box p em,
            .rich-text-section .content-box ul li em,
            .rich-text-section .content-box ul li strong {
                color: #4b5e8d;
                font-weight: 700;
                font-style: normal;
            }

        .rich-text-section .content-box ul {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 780px;
            width: 100%;
            padding-left: 32px;
            margin: 0 auto;
        }

            .rich-text-section .content-box ul li {
                color: #4b5e8d;
                list-style: disc;
            }

        .rich-text-section .content-box .text-content,
        .rich-text-section .content-box .highlighted-text-content,
        .rich-text-section .content-box p {
            max-width: 780px;
            margin: 0 auto;
            font-size: 16px;
            line-height: 24px;
            color: #4b5e8d;
        }

        .rich-text-section .content-box .text-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: initial;
            flex-wrap: wrap;
            flex-wrap: nowrap;
            gap: 24px;
        }

            .rich-text-section .content-box .text-content .signature {
                margin-bottom: 40px;
            }

                .rich-text-section .content-box .text-content .signature h3 {
                    font-weight: 700;
                    font-size: 18px;
                    text-transform: uppercase;
                    color: #4e8804;
                    color: #172b60;
                    text-transform: capitalize;
                }

        .rich-text-section .content-box .highlighted-text-content {
            margin-bottom: 24px;
            position: relative;
        }

            .rich-text-section .content-box .highlighted-text-content .vertical-line {
                position: absolute;
                min-width: 4px;
                top: 0;
                bottom: 0;
                border-radius: 15px;
                background-color: #4092ce;
            }

            .rich-text-section .content-box .highlighted-text-content p {
                font-weight: 700;
                padding-left: 24px;
            }

@media screen and (max-width: 728px) {
    .rich-text-section {
        padding: 0;
        margin-top: 24px;
    }

        .rich-text-section .content-box {
            max-width: 294px;
            padding: 0;
        }

            .rich-text-section .content-box .section-header .title {
                font-size: 24px;
            }
}

.services-slider-section {
    font-family: "Open Sans";
    margin-top: 76px;
    padding: 80px 2rem;
    background-color: #f4f5f9;
}

    .services-slider-section .content-box {
        padding: 1rem 0;
        max-width: 1184px;
        margin: 0 auto;
        overflow: hidden;
    }

        .services-slider-section .content-box .section-header .title {
            font-weight: 800;
            font-size: 48px;
            color: #172b60;
            font-size: 32px;
        }

        .services-slider-section .content-box .tab-slider {
            margin-top: 24px;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            flex-wrap: nowrap;
        }

            .services-slider-section .content-box .tab-slider .swiper-wrapper {
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                flex-wrap: wrap;
                flex-wrap: nowrap;
                gap: 8px;
                overflow-x: auto;
                padding: 4px 0;
                width: calc(100% - 50px);
                text-align: center;
                transition: 0.2s;
                scroll-behavior: smooth;
                padding-right: 15px;
                padding-left: 15px;
            }

                .services-slider-section
                .content-box
                .tab-slider
                .swiper-wrapper::-webkit-scrollbar {
                    display: none;
                }

                .services-slider-section
                .content-box
                .tab-slider
                .swiper-wrapper
                .swiper-slide {
                    width: fit-content;
                }

                    .services-slider-section
                    .content-box
                    .tab-slider
                    .swiper-wrapper
                    .swiper-slide
                    .tab-text {
                        padding: 4px 12px;
                        border-radius: 4px;
                        cursor: pointer;
                        white-space: nowrap;
                        text-transform: uppercase;
                        transition: 0.15s;
                    }

                        .services-slider-section
                        .content-box
                        .tab-slider
                        .swiper-wrapper
                        .swiper-slide
                        .tab-text.is-active {
                            background-color: #4092ce;
                            color: #ffffff;
                            font-weight: 700;
                        }

                        .services-slider-section
                        .content-box
                        .tab-slider
                        .swiper-wrapper
                        .swiper-slide
                        .tab-text:hover {
                            background-color: #6d89ce;
                            color: #ffffff;
                        }

            .services-slider-section .content-box .tab-slider .slider-navigation {
                z-index: 6;
                cursor: pointer;
                background-color: #f4f5f9;
            }

                .services-slider-section .content-box .tab-slider .slider-navigation .back-tab {
                    transform: rotate(180deg);
                }

        .services-slider-section .content-box .tab-body {
            margin-top: 24px;
        }

            .services-slider-section .content-box .tab-body .tab-content {
                display: none;
            }

                .services-slider-section .content-box .tab-body .tab-content.is-active {
                    display: flex;
                    flex-direction: row;
                    justify-content: initial;
                    align-items: center;
                    flex-wrap: wrap;
                    gap: 24px;
                }

                .services-slider-section .content-box .tab-body .tab-content .image {
                    width: 479px;
                    max-width: 100%;
                    overflow: hidden;
                }

                .services-slider-section .content-box .tab-body .tab-content .text-content {
                    max-width: 679px;
                    width: 100%;
                }

                    .services-slider-section
                    .content-box
                    .tab-body
                    .tab-content
                    .text-content
                    .tab-title {
                        font-size: 18px;
                        color: #172b60;
                        margin-bottom: 8px;
                    }

                    .services-slider-section .content-box .tab-body .tab-content .text-content p {
                        font-size: 16px;
                        line-height: 24px;
                        color: #4b5e8d;
                        margin-bottom: 32px;
                    }

                    .services-slider-section
                    .content-box
                    .tab-body
                    .tab-content
                    .text-content
                    .join-us-btn {
                        display: flex;
                        flex-direction: row;
                        justify-content: initial;
                        align-items: center;
                        flex-wrap: wrap;
                        margin-top: 48px;
                        gap: 8px;
                        text-decoration: none;
                        font-weight: 700;
                        font-size: 14px;
                        color: #4092ce;
                    }

@media screen and (max-width: 728px) {
    .services-slider-section {
        padding: 40px 0px;
        overflow: hidden;
    }

        .services-slider-section .content-box {
            overflow: initial;
        }

            .services-slider-section .content-box .section-header {
                max-width: 294px;
                margin: 0 auto;
            }

                .services-slider-section .content-box .section-header .title {
                    font-size: 22px;
                }

            .services-slider-section .content-box .tab-slider .swiper-wrapper {
                width: 100% !important;
                position: relative;
                left: calc((100% - 294px) / 2);
                padding-right: calc((100% - 294px) / 2);
            }

            .services-slider-section .content-box .tab-slider .slider-navigation {
                display: none;
            }

            .services-slider-section .content-box .tab-body {
                max-width: 294px;
                margin: 32px auto 0;
            }

                .services-slider-section .content-box .tab-body .tab-content.is-active {
                    flex-direction: column;
                }

                .services-slider-section .content-box .tab-body .tab-content .image {
                    border-radius: 100px 0 100px 0;
                }
}

.video-section {
    padding: 0 2rem;
    margin-top: 40px;
}

    .video-section .content-box {
        padding: 1rem 0;
        max-width: 1184px;
        margin: 0 auto;
        position: relative;
        padding: 0;
    }

        .video-section .content-box .video {
            width: 100%;
            background-color: #d9d9d9;
        }

        .video-section .content-box .controls {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 5px;
            opacity: 0;
            transition: 0.3s;
            cursor: pointer;
        }

            .video-section .content-box .controls .buttons .play-pause {
                width: 40px;
                height: 40px;
                background-color: transparent;
                border: 0;
                outline: 0;
                cursor: pointer;
            }

                .video-section .content-box .controls .buttons .play-pause.play::before {
                    content: url("/media/icons/video-section/circle-play.svg");
                }

                .video-section .content-box .controls .buttons .play-pause.pause::before {
                    content: url("/media/icons/video-section/circle-pause.svg");
                }

            .video-section .content-box .controls.show-controls {
                background: rgba(0, 0, 0, 0.5);
                opacity: 1;
            }

@media screen and (max-width: 728px) {
    .video-section .content-box {
        max-width: 294px;
    }
}

.news-body-section {
    font-family: "Open Sans";
    padding: 0 2rem;
}

    .news-body-section .content-box {
        padding: 1rem 0;
        max-width: 1184px;
        margin: 0 auto;
    }

        .news-body-section .content-box .news-header,
        .news-body-section .content-box .news-content,
        .news-body-section .content-box .related-tags {
            max-width: 780px;
            margin: 0 auto;
        }

            .news-body-section .content-box .news-header .tag {
                color: #4e8804;
                background-color: #ecffb5;
                padding: 4px 8px;
                font-size: 12px;
                font-weight: 700;
                border-radius: 4px;
                display: inline-block;
            }

            .news-body-section .content-box .news-header .news-title {
                font-weight: 700;
                font-size: 18px;
                text-transform: uppercase;
                color: #4e8804;
                margin: 16px 0;
                font-size: 32px;
                color: #172b60;
                text-transform: initial;
            }

                .news-body-section .content-box .news-header .news-title em {
                    text-decoration: underline;
                    text-decoration-thickness: 1px;
                    text-underline-offset: 10px;
                    color: #4092ce;
                    font-style: normal;
                }

            .news-body-section .content-box .news-header .date * {
                display: inline;
                vertical-align: middle;
            }

            .news-body-section .content-box .news-header .date p {
                font-size: 12px;
                font-weight: 700;
                color: #4b5e8d;
            }

            .news-body-section .content-box .news-header .date p {
                font-weight: 400;
                font-size: 16px;
                margin-left: 8px;
            }

        .news-body-section .content-box .swiper {
            margin: 40px 0;
            overflow: visible;
        }

            .news-body-section
            .content-box
            .swiper
            .swiper-wrapper
            .swiper-slide
            .slider-image {
                max-width: 100%;
                overflow: hidden;
                border-radius: 0 100px 0 100px;
                max-height: 634px;
            }

                .news-body-section
                .content-box
                .swiper
                .swiper-wrapper
                .swiper-slide
                .slider-image
                img {
                    height: 100%;
                }

            .news-body-section
            .content-box
            .swiper
            .swiper-wrapper
            .swiper-slide
            .subtitle {
                text-align: center;
                font-size: 12px;
                color: #787c87;
                margin-top: 8px;
            }

            .news-body-section .content-box .swiper .slider-button {
                position: absolute;
                right: 5%;
                bottom: 3px;
                z-index: 9;
            }

                .news-body-section .content-box .swiper .slider-button .prev-slide,
                .news-body-section .content-box .swiper .slider-button .next-slide {
                    border: 2px solid #4092ce;
                    display: inline-block;
                    width: 20px;
                    height: 20px;
                    box-sizing: initial;
                    border-radius: 50px;
                    padding: 15px;
                    cursor: pointer;
                    background-color: #ffffff;
                }

        .news-body-section .content-box .news-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 32px;
        }

            .news-body-section .content-box .news-content p {
                font-size: 16px;
                line-height: 24px;
                color: #4b5e8d;
            }

        .news-body-section .content-box .related-tags {
            margin-top: 24px;
            display: flex;
            flex-direction: row;
            justify-content: initial;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
        }

            .news-body-section .content-box .related-tags .tag {
                color: #4e8804;
                background-color: #ecffb5;
                padding: 4px 8px;
                font-size: 12px;
                font-weight: 700;
                border-radius: 4px;
                display: inline-block;
            }

@media screen and (max-width: 728px) {
    .news-body-section {
        padding: 0;
    }

        .news-body-section .content-box {
            max-width: 294px;
        }

            .news-body-section .content-box .news-header .news-title {
                font-size: 18px;
            }

                .news-body-section .content-box .news-header .news-title em {
                    text-decoration: none;
                }

            .news-body-section
            .content-box
            .swiper
            .swiper-wrapper
            .swiper-slide
            .slider-image {
                border-radius: 14px;
                height: 260px;
            }

            .news-body-section .content-box .swiper .slider-button {
                display: none;
            }

            .news-body-section .content-box .related-tags {
                flex-direction: column;
                align-items: flex-start;
            }
}

.related-news-section {
    margin-top: 100px;
    padding: 40px 2rem 80px;
    background-color: #f4f5f9;
    font-family: "Open Sans";
}

    .related-news-section .content-box {
        padding: 1rem 0;
        max-width: 1184px;
        margin: 0 auto;
    }

        .related-news-section .content-box .swiper.related-news .section-title {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

            .related-news-section .content-box .swiper.related-news .section-title h3 {
                font-weight: 700;
                font-size: 18px;
                text-transform: uppercase;
                color: #4e8804;
                color: #172b60;
                text-transform: initial;
            }

            .related-news-section
            .content-box
            .swiper.related-news
            .section-title
            .slider-button
            .prev-news,
            .related-news-section
            .content-box
            .swiper.related-news
            .section-title
            .slider-button
            .next-news {
                border: 2px solid #4092ce;
                display: inline-block;
                width: 20px;
                height: 20px;
                box-sizing: initial;
                border-radius: 50px;
                padding: 15px;
                cursor: pointer;
                background-color: #ffffff;
            }

        .related-news-section .content-box .swiper.related-news .swiper-wrapper {
            margin-top: 24px;
        }

            .related-news-section
            .content-box
            .swiper.related-news
            .swiper-wrapper
            .swiper-slide
            .news {
                max-width: 100%;
                height: 206px;
            }

                .related-news-section
                .content-box
                .swiper.related-news
                .swiper-wrapper
                .swiper-slide
                .news
                .news-link {
                    height: inherit;
                    display: flex;
                    flex-direction: row;
                    justify-content: space-between;
                    align-items: center;
                    flex-wrap: wrap;
                    flex-wrap: nowrap;
                    gap: 24px;
                    text-decoration: none;
                }

                    .related-news-section
                    .content-box
                    .swiper.related-news
                    .swiper-wrapper
                    .swiper-slide
                    .news
                    .news-link
                    .news-image {
                        max-width: 217px;
                        height: inherit;
                        overflow: hidden;
                        border-radius: 14px;
                        display: flex;
                        flex-direction: row;
                        justify-content: center;
                        align-items: center;
                        flex-wrap: wrap;
                    }

                        .related-news-section
                        .content-box
                        .swiper.related-news
                        .swiper-wrapper
                        .swiper-slide
                        .news
                        .news-link
                        .news-image
                        img {
                            height: 100%;
                        }

                    .related-news-section
                    .content-box
                    .swiper.related-news
                    .swiper-wrapper
                    .swiper-slide
                    .news
                    .news-link
                    .news-content
                    .tag {
                        color: #4e8804;
                        background-color: #ecffb5;
                        padding: 4px 8px;
                        font-size: 12px;
                        font-weight: 700;
                        border-radius: 4px;
                        display: inline-block;
                        width: max-content;
                    }

                    .related-news-section
                    .content-box
                    .swiper.related-news
                    .swiper-wrapper
                    .swiper-slide
                    .news
                    .news-link
                    .news-content
                    .news-title {
                        margin-top: 8px;
                        margin-bottom: 8px;
                        font-size: 24px;
                        color: #001aff;
                        color: #172b60;
                    }

                    .related-news-section
                    .content-box
                    .swiper.related-news
                    .swiper-wrapper
                    .swiper-slide
                    .news
                    .news-link
                    .news-content
                    .news-description {
                        font-size: 16px;
                        line-height: 24px;
                        color: #4b5e8d;
                    }

                    .related-news-section
                    .content-box
                    .swiper.related-news
                    .swiper-wrapper
                    .swiper-slide
                    .news
                    .news-link
                    .news-content
                    .news-title,
                    .related-news-section
                    .content-box
                    .swiper.related-news
                    .swiper-wrapper
                    .swiper-slide
                    .news
                    .news-link
                    .news-content
                    .news-description {
                        display: -webkit-box;
                        -webkit-line-clamp: 2;
                        -webkit-box-orient: vertical;
                        overflow: hidden;
                    }

                    .related-news-section
                    .content-box
                    .swiper.related-news
                    .swiper-wrapper
                    .swiper-slide
                    .news
                    .news-link
                    .news-content
                    .footer {
                        margin-top: 16px;
                    }

                        .related-news-section
                        .content-box
                        .swiper.related-news
                        .swiper-wrapper
                        .swiper-slide
                        .news
                        .news-link
                        .news-content
                        .footer
                        .divider {
                            margin-bottom: 16px;
                            border-color: #6d89ce;
                            opacity: 0.2;
                        }

                        .related-news-section
                        .content-box
                        .swiper.related-news
                        .swiper-wrapper
                        .swiper-slide
                        .news
                        .news-link
                        .news-content
                        .footer
                        .date
                        * {
                            display: inline;
                            vertical-align: middle;
                        }

                        .related-news-section
                        .content-box
                        .swiper.related-news
                        .swiper-wrapper
                        .swiper-slide
                        .news
                        .news-link
                        .news-content
                        .footer
                        .date
                        p {
                            font-size: 12px;
                            font-weight: 700;
                            color: #4b5e8d;
                        }

        .related-news-section .content-box .swiper.related-news .pagination {
            display: none;
        }

@media screen and (max-width: 728px) {
    .related-news-section {
        padding: 24px 0;
    }

        .related-news-section .content-box {
            max-width: 294px;
        }

            .related-news-section
            .content-box
            .swiper.related-news
            .section-title
            .slider-button {
                display: none;
            }

            .related-news-section
            .content-box
            .swiper.related-news
            .swiper-wrapper
            .swiper-slide
            .news {
                height: fit-content;
            }

                .related-news-section
                .content-box
                .swiper.related-news
                .swiper-wrapper
                .swiper-slide
                .news
                .news-link {
                    flex-direction: column;
                }

                    .related-news-section
                    .content-box
                    .swiper.related-news
                    .swiper-wrapper
                    .swiper-slide
                    .news
                    .news-link
                    .news-image {
                        max-width: 100%;
                        height: 220px;
                    }

            .related-news-section .content-box .swiper.related-news .pagination {
                margin-top: 40px;
                display: block;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                flex-wrap: wrap;
            }

                .related-news-section
                .content-box
                .swiper.related-news
                .pagination
                .swiper-pagination-bullet {
                    width: 8px;
                    height: 4px;
                    border-radius: 20px;
                    transition: 0.2s;
                }

                .related-news-section
                .content-box
                .swiper.related-news
                .pagination
                .swiper-pagination-bullet-active {
                    width: 24px;
                }
}

.product-detail-section {
    margin-top: 40px;
    padding: 0 2rem;
    font-family: "Open Sans";
}

    .product-detail-section .content-box {
        padding: 1rem 0;
        max-width: 1184px;
        margin: 0 auto;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        flex-wrap: wrap;
        gap: 24px;
    }

        .product-detail-section .content-box .product-selected-image {
            max-width: 476px;
            width: 100%;
            position: relative;
        }

            .product-detail-section .content-box .product-selected-image img {
                width: 100%;
            }

            .product-detail-section .content-box .product-selected-image .bg-circle {
                position: relative;
                z-index: -1;
            }

            .product-detail-section .content-box .product-selected-image .product-image {
                position: absolute;
                right: 0;
                top: 20%;
            }

        .product-detail-section .content-box .product-details {
            max-width: 50%;
        }

            .product-detail-section .content-box .product-details .product-description {
                font-size: 16px;
                line-height: 24px;
                color: #4b5e8d;
            }

            .product-detail-section .content-box .product-details .product-variations {
                margin-top: 40px;
            }

                .product-detail-section
                .content-box
                .product-details
                .product-variations
                .variations-list {
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: initial;
                    flex-wrap: wrap;
                    gap: 16px;
                }

                    .product-detail-section
                    .content-box
                    .product-details
                    .product-variations
                    .variations-list
                    .variations-title {
                        font-size: 16px;
                        line-height: 24px;
                        color: #4b5e8d;
                    }

                    .product-detail-section
                    .content-box
                    .product-details
                    .product-variations
                    .variations-list
                    .variation {
                        display: flex;
                        flex-direction: row;
                        justify-content: initial;
                        align-items: flex-start;
                        flex-wrap: wrap;
                        flex-wrap: nowrap;
                        gap: 8px;
                    }

                        .product-detail-section
                        .content-box
                        .product-details
                        .product-variations
                        .variations-list
                        .variation
                        .variation-code {
                            font-weight: 700;
                            color: #4e8804;
                            font-style: normal;
                        }

                        .product-detail-section
                        .content-box
                        .product-details
                        .product-variations
                        .variations-list
                        .variation
                        .variation-description {
                            color: #4e8804;
                        }

            .product-detail-section .content-box .product-details .slider-shortcuts {
                margin-top: 40px;
                display: flex;
                flex-direction: row;
                justify-content: initial;
                align-items: center;
                flex-wrap: wrap;
                gap: 16px;
            }

                .product-detail-section
                .content-box
                .product-details
                .slider-shortcuts
                .product-image-shortcut {
                    width: 60px;
                    height: 60px;
                    border-radius: 4px;
                    border: 1px solid #d6d7db;
                    overflow: hidden;
                    cursor: pointer;
                    transition: opacity 0.15s;
                }

                    .product-detail-section
                    .content-box
                    .product-details
                    .slider-shortcuts
                    .product-image-shortcut:hover {
                        opacity: 0.7;
                    }

                    .product-detail-section
                    .content-box
                    .product-details
                    .slider-shortcuts
                    .product-image-shortcut.is-selected {
                        border-color: #4092ce;
                        border-width: 2px;
                    }

                    .product-detail-section
                    .content-box
                    .product-details
                    .slider-shortcuts
                    .product-image-shortcut
                    img {
                        width: 100%;
                    }

@media screen and (max-width: 728px) {
    .product-detail-section {
        padding: 0;
    }

        .product-detail-section .content-box {
            max-width: 294px;
            flex-direction: column-reverse;
        }

            .product-detail-section .content-box .product-details {
                max-width: 100%;
            }

                .product-detail-section .content-box .product-details .product-variations {
                    margin-top: 24px;
                }
}

@media (max-width: 1180px) and (min-width: 729px) {
    .product-detail-section .content-box {
        gap: 60px;
    }

        .product-detail-section .content-box .product-details {
            max-width: 100%;
        }
}

.related-product-section {
    margin-top: 100px;
    padding: 40px 2rem 80px;
    background-color: #f3f7ff;
    font-family: "Open Sans";
}

    .related-product-section .content-box {
        padding: 1rem 0;
        max-width: 1184px;
        margin: 0 auto;
    }

        .related-product-section .content-box .swiper.related-product .section-title {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

            .related-product-section
            .content-box
            .swiper.related-product
            .section-title
            h3 {
                font-weight: 700;
                font-size: 18px;
                text-transform: uppercase;
                color: #4e8804;
                font-size: 32px;
                color: #172b60;
                text-transform: initial;
            }

            .related-product-section
            .content-box
            .swiper.related-product
            .section-title
            .slider-button
            .prev-product,
            .related-product-section
            .content-box
            .swiper.related-product
            .section-title
            .slider-button
            .next-product {
                border: 2px solid #4092ce;
                display: inline-block;
                width: 20px;
                height: 20px;
                box-sizing: initial;
                border-radius: 50px;
                padding: 15px;
                cursor: pointer;
                background-color: #ffffff;
            }

        .related-product-section .content-box .swiper.related-product .swiper-wrapper {
            margin-top: 24px;
        }

            .related-product-section
            .content-box
            .swiper.related-product
            .swiper-wrapper
            .swiper-slide
            .product {
                border: 1px solid #eaf0ff;
                padding: 8px 12px;
                border-radius: 8px;
                max-width: 378px;
                cursor: pointer;
                background-color: #ffffff;
                transition: 0.1s;
                overflow: hidden;
            }

                .related-product-section
                .content-box
                .swiper.related-product
                .swiper-wrapper
                .swiper-slide
                .product:hover {
                    border-color: #4092ce;
                    box-shadow: 0px 2px 30px rgba(109, 137, 206, 0.19);
                }

                .related-product-section
                .content-box
                .swiper.related-product
                .swiper-wrapper
                .swiper-slide
                .product
                .product-link {
                    text-decoration: none;
                }

                    .related-product-section
                    .content-box
                    .swiper.related-product
                    .swiper-wrapper
                    .swiper-slide
                    .product
                    .product-link
                    .product-body {
                        padding: 24px 8px;
                    }

                        .related-product-section
                        .content-box
                        .swiper.related-product
                        .swiper-wrapper
                        .swiper-slide
                        .product
                        .product-link
                        .product-body
                        .product-title {
                            margin-bottom: 8px;
                            font-size: 24px;
                            color: #001aff;
                            color: #172b60;
                        }

                        .related-product-section
                        .content-box
                        .swiper.related-product
                        .swiper-wrapper
                        .swiper-slide
                        .product
                        .product-link
                        .product-body
                        .product-description {
                            font-size: 16px;
                            line-height: 24px;
                            color: #4b5e8d;
                            margin-top: 16px;
                        }

        .related-product-section .content-box .swiper.related-product .pagination {
            display: none;
        }

@media screen and (max-width: 728px) {
    .related-product-section {
        padding: 24px 0;
    }

        .related-product-section .content-box {
            max-width: 294px;
        }

            .related-product-section
            .content-box
            .swiper.related-product
            .section-title
            .slider-button {
                display: none;
            }

            .related-product-section
            .content-box
            .swiper.related-product
            .swiper-wrapper
            .swiper-slide
            .product-link
            img {
                transform: translateX(-11%);
            }

            .related-product-section
            .content-box
            .swiper.related-product
            .swiper-wrapper
            .swiper-slide
            .product-link
            .product {
                max-width: 100%;
            }

            .related-product-section .content-box .swiper.related-product .pagination {
                margin-top: 40px;
                display: block;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                flex-wrap: wrap;
            }

                .related-product-section
                .content-box
                .swiper.related-product
                .pagination
                .swiper-pagination-bullet {
                    width: 8px;
                    height: 4px;
                    border-radius: 20px;
                    transition: 0.2s;
                }

                .related-product-section
                .content-box
                .swiper.related-product
                .pagination
                .swiper-pagination-bullet-active {
                    width: 24px;
                }
}

.headquarters-section {
    margin-top: 80px;
    padding: 0 2rem;
    font-family: "Open Sans";
}

    .headquarters-section .content-box {
        padding: 1rem 0;
        max-width: 1184px;
        margin: 0 auto;
    }

        .headquarters-section .content-box .section-header .title {
            font-weight: 700;
            font-size: 18px;
            text-transform: uppercase;
            color: #4e8804;
            font-size: 24px;
            text-transform: initial;
            color: #172b60;
        }

        .headquarters-section .content-box .section-header p {
            font-size: 16px;
            line-height: 24px;
            color: #4b5e8d;
            margin-top: 10px;
        }

        .headquarters-section .content-box .headquarters {
            display: flex;
            flex-direction: row;
            justify-content: initial;
            align-items: center;
            flex-wrap: wrap;
            gap: 24px;
            margin-top: 24px;
        }

            .headquarters-section .content-box .headquarters .left-headquarter,
            .headquarters-section .content-box .headquarters .right-headquarter {
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                flex-wrap: wrap;
                flex-wrap: nowrap;
                max-width: 580px;
                width: 580px;
                border-radius: 8px;
                background-color: #ffffff;
                padding: 8px 8px 8px 16px;
                box-shadow: 0px 2px 30px rgba(109, 137, 206, 0.19);
            }

                .headquarters-section
                .content-box
                .headquarters
                .left-headquarter
                .headquarter-content,
                .headquarters-section
                .content-box
                .headquarters
                .right-headquarter
                .headquarter-content {
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    align-items: initial;
                    flex-wrap: wrap;
                    max-width: 50%;
                }

                    .headquarters-section
                    .content-box
                    .headquarters
                    .left-headquarter
                    .headquarter-content
                    .map-pin,
                    .headquarters-section
                    .content-box
                    .headquarters
                    .right-headquarter
                    .headquarter-content
                    .map-pin {
                        background-color: #ecffb5;
                        padding: 14px;
                        border-radius: 0px 10px;
                        width: 52px;
                    }

                    .headquarters-section
                    .content-box
                    .headquarters
                    .left-headquarter
                    .headquarter-content
                    .headquarter-title,
                    .headquarters-section
                    .content-box
                    .headquarters
                    .right-headquarter
                    .headquarter-content
                    .headquarter-title {
                        margin-top: 24px;
                        font-size: 18px;
                        color: #172b60;
                        font-weight: 700;
                    }

                    .headquarters-section
                    .content-box
                    .headquarters
                    .left-headquarter
                    .headquarter-content
                    .headquarter-adress,
                    .headquarters-section
                    .content-box
                    .headquarters
                    .right-headquarter
                    .headquarter-content
                    .headquarter-adress {
                        margin-top: 16px;
                        font-size: 16px;
                        line-height: 24px;
                        color: #4b5e8d;
                    }

                    .headquarters-section
                    .content-box
                    .headquarters
                    .left-headquarter
                    .headquarter-content
                    .headquarter-phone,
                    .headquarters-section
                    .content-box
                    .headquarters
                    .right-headquarter
                    .headquarter-content
                    .headquarter-phone {
                        margin-top: 16px;
                        display: flex;
                        flex-direction: row;
                        justify-content: initial;
                        align-items: center;
                        flex-wrap: wrap;
                        flex-wrap: nowrap;
                        gap: 8px;
                        color: #4e8804;
                        font-size: 12px;
                    }

                    .headquarters-section
                    .content-box
                    .headquarters
                    .left-headquarter
                    .headquarter-content
                    .how-to-get-btn,
                    .headquarters-section
                    .content-box
                    .headquarters
                    .right-headquarter
                    .headquarter-content
                    .how-to-get-btn {
                        margin-top: 62px;
                        display: flex;
                        flex-direction: row;
                        justify-content: initial;
                        align-items: center;
                        flex-wrap: wrap;
                        flex-wrap: nowrap;
                        gap: 8px;
                        text-decoration: none;
                        color: #4092ce;
                        font-size: 14px;
                        font-weight: 700;
                    }

.how-to-get-btn:hover {
    filter: brightness(0.75) saturate(0.7) hue-rotate(15deg);
}

.how-to-get-btn:active {
    filter: brightness(1) saturate(0.7) hue-rotate(15deg);
}

.headquarters-section
.content-box
.headquarters
.left-headquarter
.headquarter-thumbnail,
.headquarters-section
.content-box
.headquarters
.right-headquarter
.headquarter-thumbnail {
    max-width: 50%;
    max-height: 336px;
    overflow: hidden;
    border-radius: 4px;
}

@media screen and (max-width: 728px) {
    .headquarters-section {
        padding: 0;
        margin-top: 0;
    }

        .headquarters-section .content-box {
            max-width: 294px;
        }

            .headquarters-section .content-box .headquarters .left-headquarter,
            .headquarters-section .content-box .headquarters .right-headquarter {
                max-width: 100%;
                padding: 16px 24px;
            }

                .headquarters-section
                .content-box
                .headquarters
                .left-headquarter
                .headquarter-content,
                .headquarters-section
                .content-box
                .headquarters
                .right-headquarter
                .headquarter-content {
                    max-width: 100%;
                }

                    .headquarters-section
                    .content-box
                    .headquarters
                    .left-headquarter
                    .headquarter-content
                    .headquarter-title,
                    .headquarters-section
                    .content-box
                    .headquarters
                    .right-headquarter
                    .headquarter-content
                    .headquarter-title {
                        margin-top: 24px;
                    }

                    .headquarters-section
                    .content-box
                    .headquarters
                    .left-headquarter
                    .headquarter-content
                    .headquarter-adress,
                    .headquarters-section
                    .content-box
                    .headquarters
                    .right-headquarter
                    .headquarter-content
                    .headquarter-adress {
                        margin-top: 16px;
                    }

                    .headquarters-section
                    .content-box
                    .headquarters
                    .left-headquarter
                    .headquarter-content
                    .headquarter-phone,
                    .headquarters-section
                    .content-box
                    .headquarters
                    .right-headquarter
                    .headquarter-content
                    .headquarter-phone {
                        margin-top: 8px;
                    }

                    .headquarters-section
                    .content-box
                    .headquarters
                    .left-headquarter
                    .headquarter-content
                    .how-to-get-btn,
                    .headquarters-section
                    .content-box
                    .headquarters
                    .right-headquarter
                    .headquarter-content
                    .how-to-get-btn {
                        margin-top: 24px;
                    }

                .headquarters-section
                .content-box
                .headquarters
                .left-headquarter
                .headquarter-thumbnail,
                .headquarters-section
                .content-box
                .headquarters
                .right-headquarter
                .headquarter-thumbnail {
                    display: none;
                }
}

.icon-text-cta-section {
    font-family: "Open Sans";
    padding: 0 2rem;
    margin: 80px 0;
}

    .icon-text-cta-section .content-box {
        padding: 1rem 0;
        max-width: 1184px;
        margin: 0 auto;
    }

        .icon-text-cta-section .content-box .cta-cards {
            display: flex;
            flex-direction: row;
            justify-content: space-around;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 24px;
        }

            .icon-text-cta-section .content-box .cta-cards .card {
                text-align: center;
                max-width: 278px;
            }

                .icon-text-cta-section .content-box .cta-cards .card .cta-title {
                    margin-top: 16px;
                    font-weight: 700;
                    color: #172b60;
                }

                .icon-text-cta-section .content-box .cta-cards .card .cta-adress {
                    margin-top: 8px;
                    font-size: 16px;
                    line-height: 24px;
                    color: #4b5e8d;
                }

                .icon-text-cta-section .content-box .cta-cards .card .how-to-get-btn {
                    margin-top: 16px;
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    align-items: center;
                    flex-wrap: wrap;
                    gap: 8px;
                    text-decoration: none;
                    color: #4092ce;
                    font-size: 14px;
                    font-weight: 700;
                }

@media screen and (max-width: 728px) {
    .icon-text-cta-section {
        font-family: "Open Sans";
        padding: 0 2rem;
        margin: 24px 0 40px;
    }

        .icon-text-cta-section .content-box {
            max-width: 294px;
        }

            .icon-text-cta-section .content-box .cta-cards .card {
                max-width: 100%;
            }
}

@media (min-width: 729px) and (max-width: 830px) {
    .icon-text-cta-section .content-box .cta-cards {
        justify-content: flex-start;
    }
}

.contact-form-section {
    font-family: "Open Sans";
    padding: 80px 2rem;
    background-color: #eff0f6;
}

    .contact-form-section .content-box {
        padding: 1rem 0;
        max-width: 1184px;
        margin: 0 auto;
        max-width: 782px;
    }

        .contact-form-section .content-box .section-header .title {
            font-size: 24px;
            color: #172b60;
        }

        .contact-form-section .content-box .section-header p {
            margin-top: 16px;
            font-size: 16px;
            line-height: 24px;
            color: #4b5e8d;
        }

            .contact-form-section .content-box .section-header p em {
                font-weight: 700;
                color: #4092ce;
                font-style: normal;
            }

        .contact-form-section .content-box .contact-form {
            margin-top: 40px;
            display: flex;
            flex-direction: row;
            justify-content: initial;
            align-items: center;
            flex-wrap: wrap;
            gap: 24px;
        }

            .contact-form-section .content-box .contact-form label {
                display: flex;
                flex-direction: column;
                justify-content: initial;
                align-items: initial;
                flex-wrap: wrap;
                gap: 4px;
                max-width: 379px;
                width: 100%;
                position: relative;
            }

                .contact-form-section .content-box .contact-form label span {
                    font-size: 14px;
                    font-weight: 600;
                    color: #172b60;
                }

                .contact-form-section .content-box .contact-form label input,
                .contact-form-section .content-box .contact-form label textarea {
                    border: 1px solid #aeb0b7;
                    border-radius: 4px;
                    padding: 10px 16px;
                    font-size: 14px;
                    font-weight: 400;
                }

                    .contact-form-section .content-box .contact-form label input::placeholder,
                    .contact-form-section .content-box .contact-form label textarea::placeholder {
                        color: #aeb0b7;
                    }

                    .contact-form-section .content-box .contact-form label input:focus,
                    .contact-form-section .content-box .contact-form label textarea:focus {
                        outline: 0;
                    }

                .contact-form-section .content-box .contact-form label .required-msg {
                    font-size: 12px;
                    color: red;
                    position: absolute;
                    bottom: -20px;
                    right: 0;
                    opacity: 1;
                    transition: 0.1s;
                }

                    .contact-form-section .content-box .contact-form label .required-msg.disabled {
                        opacity: 0;
                    }

            .contact-form-section .content-box .contact-form .observations {
                max-width: 100%;
                margin-bottom: 20px;
            }

                .contact-form-section .content-box .contact-form .observations .optional {
                    font-size: 12px;
                    color: #787c87;
                    font-weight: 400;
                    margin-left: 4px;
                }

                .contact-form-section .content-box .contact-form .observations textarea {
                    resize: none;
                    font-family: "Open Sans";
                }

            .contact-form-section .content-box .contact-form .submit-button {
                appearance: none;
                cursor: pointer;
                padding: 12px 24px;
                border-radius: 100px;
                background: linear-gradient(180deg, #1272b7 0%, #43a0e4 100%);
                border: 0;
                color: #ffffff;
                min-width: 175px;
                font-size: 14px;
                font-weight: 700;
                font-family: "Open Sans";
                margin: 0 auto;
            }

                .contact-form-section .content-box .contact-form .submit-button:hover {
                    background: #4b5e8d;
                    border-color: transparent;
                    color: #fff;
                }

                .contact-form-section .content-box .contact-form .submit-button:active {
                    background: #6d89ce;
                    border-color: transparent;
                    color: #fff;
                }

@media screen and (max-width: 728px) {
    .contact-form-section {
        padding: 40px 0;
    }

        .contact-form-section .content-box {
            max-width: 294px;
        }
}

.history-section {
    font-family: "Open Sans", sans-serif;
    padding: 80px 2rem;
    background-color: #f4f5f9;
    margin-top: 80px;
    overflow-x: hidden;
}

    .history-section .content-box {
        padding: 1rem 0;
        max-width: 1184px;
        margin: 0 auto;
    }

        .history-section .content-box .timeline {
            overflow: visible;
            user-select: none;
        }

            .history-section .content-box .timeline .section-title {
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                flex-wrap: wrap;
            }

                .history-section .content-box .timeline .section-title h3 {
                    font-size: 32px;
                    font-weight: 700;
                    color: #172b60;
                }

                .history-section
                .content-box
                .timeline
                .section-title
                .slider-button
                .prev-history,
                .history-section
                .content-box
                .timeline
                .section-title
                .slider-button
                .next-history {
                    border: 2px solid #4092ce;
                    display: inline-block;
                    width: 20px;
                    height: 20px;
                    box-sizing: initial;
                    border-radius: 50px;
                    padding: 15px;
                    cursor: pointer;
                    background-color: #ffffff;
                }

            .history-section .content-box .timeline .swiper-wrapper {
                margin-top: 100px;
            }

                .history-section .content-box .timeline .swiper-wrapper .swiper-slide {
                    display: flex;
                    flex-direction: row;
                    justify-content: initial;
                    align-items: center;
                    flex-wrap: wrap;
                    flex-wrap: nowrap;
                    gap: 24px;
                    position: relative;
                    width: max-content;
                }

                    .history-section .content-box .timeline .swiper-wrapper .swiper-slide .year {
                        font-family: "Bitter", sans-serif;
                        font-size: 100px;
                        font-weight: 700;
                        color: #d6d7db;
                        position: absolute;
                        top: -75px;
                        left: -20px;
                        z-index: -1;
                    }

                    .history-section
                    .content-box
                    .timeline
                    .swiper-wrapper
                    .swiper-slide
                    .year-card {
                        max-width: 254px;
                        width: 100%;
                        background-color: #ffffff;
                        padding: 16px 24px;
                        border: 1px solid #eaf0ff;
                        border-radius: 8px;
                    }

                        .history-section
                        .content-box
                        .timeline
                        .swiper-wrapper
                        .swiper-slide
                        .year-card
                        .card-flag {
                            padding: 10px;
                            background-color: #ecffb5;
                            border-radius: 0px 10px;
                        }

                        .history-section
                        .content-box
                        .timeline
                        .swiper-wrapper
                        .swiper-slide
                        .year-card
                        .card-title {
                            margin-top: 24px;
                            font-weight: 700;
                            font-size: 18px;
                            color: #172b60;
                        }

                        .history-section
                        .content-box
                        .timeline
                        .swiper-wrapper
                        .swiper-slide
                        .year-card
                        .card-description {
                            margin-top: 16px;
                            font-size: 16px;
                            line-height: 24px;
                            color: #4b5e8d;
                        }

                        .history-section
                        .content-box
                        .timeline
                        .swiper-wrapper
                        .swiper-slide
                        .year-card
                        .card-caption {
                            margin-top: 68px;
                            color: #4e8804;
                            font-weight: 400;
                            font-size: 12px;
                        }

            .history-section .content-box .timeline .pagination-container {
                height: 100px;
            }

            .history-section .content-box .timeline .pagination {
                margin-top: 40px;
                background-color: #cedcff;
                border-radius: 50px;
                position: relative;
                width: 100%;
                height: 2px;
            }

                .history-section .content-box .timeline .pagination .pagination-fill {
                    background-color: #4092ce;
                    width: 100%;
                    height: 100%;
                    position: absolute;
                    transition-duration: 300ms;
                    left: 0;
                    top: 0;
                    transform: scaleX(0);
                    transform-origin: left top;
                }

                .history-section .content-box .timeline .pagination .timeline-circle {
                    width: 6px;
                    height: 6px;
                    background-color: #cedcff;
                    display: inline-block;
                    border-radius: 50px;
                    position: absolute;
                    left: 0;
                    top: 50%;
                    transform: translateY(-50%);
                    transition: 300ms;
                }

                    .history-section .content-box .timeline .pagination .timeline-circle.is-active {
                        background-color: #4092ce;

                    }

                    .history-section
                    .content-box
                    .timeline
                    .pagination
                    .timeline-circle
                    .timeline-year {
                        transform: translate(0, 16px);
                        font-weight: 400;
                        font-size: 14px;
                        color: #4092ce;
                    }

@media screen and (max-width: 728px) {
    .history-section {
        padding: 40px 0;
    }

        .history-section .content-box {
            max-width: 100%;
        }

            .history-section .content-box .timeline {
                padding-left: calc((100% - 294px) / 2);
            }

                .history-section .content-box .timeline .slider-button {
                    display: none;
                }

                .history-section .content-box .timeline .pagination-container {
                    width: 100%;
                    overflow-x: auto;
                    scroll-behavior: smooth;
                }

                    .history-section
                    .content-box
                    .timeline
                    .pagination-container::-webkit-scrollbar {
                        display: none;
                    }

                    .history-section .content-box .timeline .pagination-container .pagination {
                        width: 600px;
                    }
}

.filters-section {
    padding: 0 2rem;
    margin-top: 80px;
    font-family: "Open Sans", sans-serif;
}

    .filters-section .content-box {
        padding: 1rem 0;
        max-width: 1184px;
        margin: 0 auto;
    }

        .filters-section .content-box .section-header .title {
            font-size: 32px;
            color: #172b60;
            font-weight: 700;
        }

        .filters-section .content-box .section-header p {
            font-size: 16px;
            line-height: 24px;
            color: #4b5e8d;
            margin-top: 8px;
        }

        .filters-section .content-box .table-filters {
            margin-top: 40px;
            display: flex;
            flex-direction: row;
            justify-content: initial;
            align-items: center;
            flex-wrap: wrap;
            gap: 24px;
            transition: 0.2s;
        }

            .filters-section .content-box .table-filters label {
                font-size: 14px;
                font-weight: 600;
                color: #172b60;
                width: 277px;
            }

                .filters-section .content-box .table-filters label .filter {
                    width: 100%;
                    appearance: none;
                    padding: 10px 16px;
                    border-radius: 8px;
                    border: 1px solid #aeb0b7;
                    outline: 0;
                    cursor: pointer;
                    background-image: url("/media/icons/filters-section/chevron-down.svg");
                    background-repeat: no-repeat;
                    background-position: 95% center;
                    margin-top: 8px;
                }

                    .filters-section .content-box .table-filters label .filter select:invalid {
                        color: gray;
                    }

select:invalid {
    color: gray;
}

.filters-section .content-box .table-filters label .filter option {
    color: #172b60;
    border-radius: 8px;
}

@keyframes fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media screen and (max-width: 728px) {
    .filters-section {
        padding: 0;
        margin-top: 40px;
    }

        .filters-section .content-box {
            max-width: 294px;
        }

            .filters-section .content-box .table-filters label {
                width: 100%;
            }
}

.table-component-section {
    padding: 0 2rem;
    font-family: "Open Sans", sans-serif;
}

    .table-component-section .content-box {
        padding: 1rem 0;
        max-width: 1184px;
        margin: 0 auto;
    }

        .table-component-section .content-box .table.desktop {
            box-shadow: 0px 2px 30px rgba(109, 137, 206, 0.19);
            padding: 16px;
            border-radius: 10px;
        }

            .table-component-section .content-box .table.desktop .row {
                padding: 20px 16px;
            }

                .table-component-section .content-box .table.desktop .row:nth-child(even) {
                    background-color: #f4f5f9;
                }

            .table-component-section .content-box .table.desktop .col {
                max-width: calc(20% - 18.5px);
                width: 100%;
                cursor: pointer;
                user-select: none;
            }

                .table-component-section .content-box .table.desktop .col:nth-child(6) {
                    width: 74px;
                }

                .table-component-section .content-box .table.desktop .col .col-name {
                    display: inline-block;
                    margin-right: 8px;
                    font-weight: 700;
                    color: #172b60;
                }

                .table-component-section .content-box .table.desktop .col img {
                    vertical-align: middle;
                    transition: 0.2s;
                }

                    .table-component-section .content-box .table.desktop .col img.active {
                        transform: rotate(-180deg);
                    }

            .table-component-section .content-box .table.desktop .table-head {
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
                flex-wrap: wrap;
                transition: 0.2s;
            }

                .table-component-section .content-box .table.desktop .table-head.row {
                    background-color: #f4f5f9;
                }

        .table-component-section .content-box .table.mobile {
            display: none;
        }

        .table-component-section .content-box .pagination {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            margin: 40px 0;
        }

            .table-component-section .content-box .pagination .control {
                cursor: pointer;
            }

            .table-component-section .content-box .pagination .page {
                width: 64px;
                text-align: center;
                font-size: 18px;
                font-weight: 700;
                color: #b7bdc8;
                cursor: pointer;
            }

                .table-component-section .content-box .pagination .page.active {
                    color: #4092ce;
                }

@media screen and (max-width: 728px) {
    .table-component-section {
        padding: 0;
    }

        .table-component-section .content-box {
            max-width: 294px;
        }

            .table-component-section .content-box .table.desktop {
                display: none;
            }

            .table-component-section .content-box .table.mobile {
                display: block;
            }

                .table-component-section .content-box .table.mobile .tbl {
                    border: 1px solid #eff0f6;
                    padding: 8px;
                    border-radius: 10px;
                    margin-bottom: 24px;
                }

                    .table-component-section .content-box .table.mobile .tbl .row {
                        display: flex;
                        flex-direction: row;
                        justify-content: flex-start;
                        align-items: center;
                        flex-wrap: wrap;
                        flex-wrap: nowrap;
                        padding: 20px 16px;
                    }

                        .table-component-section .content-box .table.mobile .tbl .row:nth-child(odd) {
                            background-color: #f4f5f9;
                        }

                        .table-component-section .content-box .table.mobile .tbl .row .row-name,
                        .table-component-section .content-box .table.mobile .tbl .row .row-content {
                            width: 50%;
                            font-size: 14px;
                        }

                        .table-component-section .content-box .table.mobile .tbl .row .row-name {
                            font-weight: 700;
                            color: #172b60;
                        }

                        .table-component-section .content-box .table.mobile .tbl .row .row-content {
                            color: #4b5e8d;
                        }

                        .table-component-section .content-box .table.mobile .tbl .row.row-5 {
                            padding: 0;
                        }

                            .table-component-section
                            .content-box
                            .table.mobile
                            .tbl
                            .row.row-5[open]
                            summary {
                                border: 1px solid #4092ce;
                            }

                                .table-component-section
                                .content-box
                                .table.mobile
                                .tbl
                                .row.row-5[open]
                                summary
                                img {
                                    transform: rotate(-180deg);
                                }

                            .table-component-section
                            .content-box
                            .table.mobile
                            .tbl
                            .row.row-5[open]
                            .row-content {
                                border: 1px solid #4092ce;
                                border-top: 0;
                                padding: 24px;
                                width: 100%;
                                color: #4b5e8d;
                            }

                            .table-component-section .content-box .table.mobile .tbl .row.row-5 summary {
                                cursor: pointer;
                                user-select: none;
                                padding: 20px 16px;
                            }

                                .table-component-section
                                .content-box
                                .table.mobile
                                .tbl
                                .row.row-5
                                summary::-webkit-details-marker {
                                    display: none;
                                }

                                .table-component-section
                                .content-box
                                .table.mobile
                                .tbl
                                .row.row-5
                                summary
                                .row-name {
                                    color: #4092ce;
                                    display: inline;
                                    margin-right: 4px;
                                }

                                .table-component-section
                                .content-box
                                .table.mobile
                                .tbl
                                .row.row-5
                                summary
                                img {
                                    vertical-align: middle;
                                    transition: 0.2s;
                                }

                            .table-component-section
                            .content-box
                            .table.mobile
                            .tbl
                            .row.row-5
                            .row-content {
                                padding: 24px;
                                border: 1px solid transparent;
                            }

                                .table-component-section
                                .content-box
                                .table.mobile
                                .tbl
                                .row.row-5
                                .row-content
                                .role-header {
                                    display: flex;
                                    flex-direction: column;
                                    justify-content: flex-start;
                                    align-items: center;
                                    flex-wrap: wrap;
                                    gap: 16px;
                                }

                                    .table-component-section
                                    .content-box
                                    .table.mobile
                                    .tbl
                                    .row.row-5
                                    .row-content
                                    .role-header
                                    .title-and-info {
                                        text-align: center;
                                    }

                                        .table-component-section
                                        .content-box
                                        .table.mobile
                                        .tbl
                                        .row.row-5
                                        .row-content
                                        .role-header
                                        .title-and-info
                                        .role-title {
                                            font-size: 24px;
                                            color: #4b5e8d;
                                        }

                                        .table-component-section
                                        .content-box
                                        .table.mobile
                                        .tbl
                                        .row.row-5
                                        .row-content
                                        .role-header
                                        .title-and-info
                                        .role-info {
                                            margin-top: 13px;
                                            white-space: nowrap;
                                            display: flex;
                                            flex-direction: column;
                                        }

                                            .table-component-section
                                            .content-box
                                            .table.mobile
                                            .tbl
                                            .row.row-5
                                            .row-content
                                            .role-header
                                            .title-and-info
                                            .role-info
                                            p {
                                                display: inline-block;
                                                font-size: 14px;
                                                color: #787c87;
                                            }

                                            .table-component-section
                                            .content-box
                                            .table.mobile
                                            .tbl
                                            .row.row-5
                                            .row-content
                                            .role-header
                                            .title-and-info
                                            .role-info
                                            img {
                                                vertical-align: middle;
                                                margin: 0 8px;
                                            }

                                    .table-component-section
                                    .content-box
                                    .table.mobile
                                    .tbl
                                    .row.row-5
                                    .row-content
                                    .role-header
                                    .button-box {
                                        cursor: pointer;
                                    }

                                        .table-component-section
                                        .content-box
                                        .table.mobile
                                        .tbl
                                        .row.row-5
                                        .row-content
                                        .role-header
                                        .button-box
                                        .secondary-button {
                                            display: inline-block;
                                            text-decoration: none;
                                            color: #4092ce;
                                        }

                                            .table-component-section
                                            .content-box
                                            .table.mobile
                                            .tbl
                                            .row.row-5
                                            .row-content
                                            .role-header
                                            .button-box
                                            .secondary-button
                                            p {
                                                font-weight: 700;
                                                font-size: 14px;
                                                padding: 12px 28px;
                                                border: 2px solid #4092ce;
                                                border-radius: 100px;
                                                width: fit-content;
                                            }

                                            .table-component-section
                                            .content-box
                                            .table.mobile
                                            .tbl
                                            .row.row-5
                                            .row-content
                                            .role-header
                                            .button-box
                                            .secondary-button
                                            p {
                                                display: inline-block;
                                                padding: 8px 16px;
                                            }

                                            .table-component-section
                                            .content-box
                                            .table.mobile
                                            .tbl
                                            .row.row-5
                                            .row-content
                                            .role-header
                                            .button-box
                                            .secondary-button:hover
                                            p {
                                                background: #4b5e8d;
                                                border-color: transparent;
                                                color: #fff;
                                            }

                                            .table-component-section
                                            .content-box
                                            .table.mobile
                                            .tbl
                                            .row.row-5
                                            .row-content
                                            .role-header
                                            .button-box
                                            .secondary-button:active
                                            p {
                                                background: #6d89ce;
                                                border-color: transparent;
                                                color: #fff;
                                            }

                                            .table-component-section
                                            .content-box
                                            .table.mobile
                                            .tbl
                                            .row.row-5
                                            .row-content
                                            .role-header
                                            .button-box
                                            .secondary-button
                                            p
                                            img {
                                                vertical-align: middle;
                                                margin-left: 4px;
                                            }

                                .table-component-section
                                .content-box
                                .table.mobile
                                .tbl
                                .row.row-5
                                .row-content
                                .role-details
                                .time-and-education
                                .time,
                                .table-component-section
                                .content-box
                                .table.mobile
                                .tbl
                                .row.row-5
                                .row-content
                                .role-details
                                .time-and-education
                                .education {
                                    padding-bottom: 8px;
                                }

                                    .table-component-section
                                    .content-box
                                    .table.mobile
                                    .tbl
                                    .row.row-5
                                    .row-content
                                    .role-details
                                    .time-and-education
                                    .time
                                    img,
                                    .table-component-section
                                    .content-box
                                    .table.mobile
                                    .tbl
                                    .row.row-5
                                    .row-content
                                    .role-details
                                    .time-and-education
                                    .education
                                    img {
                                        vertical-align: middle;
                                        margin-right: 8px;
                                    }

                                    .table-component-section
                                    .content-box
                                    .table.mobile
                                    .tbl
                                    .row.row-5
                                    .row-content
                                    .role-details
                                    .time-and-education
                                    .time
                                    p,
                                    .table-component-section
                                    .content-box
                                    .table.mobile
                                    .tbl
                                    .row.row-5
                                    .row-content
                                    .role-details
                                    .time-and-education
                                    .education
                                    p {
                                        display: inline-block;
                                        color: #4b5e8d;
                                    }

                                .table-component-section
                                .content-box
                                .table.mobile
                                .tbl
                                .row.row-5
                                .row-content
                                .role-details
                                .role-description {
                                    margin-top: 24px;
                                }

                                    .table-component-section
                                    .content-box
                                    .table.mobile
                                    .tbl
                                    .row.row-5
                                    .row-content
                                    .role-details
                                    .role-description
                                    .title {
                                        font-weight: 700;
                                        color: #4b5e8d;
                                    }

                                    .table-component-section
                                    .content-box
                                    .table.mobile
                                    .tbl
                                    .row.row-5
                                    .row-content
                                    .role-details
                                    .role-description
                                    .description {
                                        color: #4b5e8d;
                                        margin-top: 8px;
                                    }

                                    .table-component-section
                                    .content-box
                                    .table.mobile
                                    .tbl
                                    .row.row-5
                                    .row-content
                                    .role-details
                                    .role-description
                                    .description-list {
                                        margin-top: 20px;
                                        padding-left: 24px;
                                    }

                                        .table-component-section
                                        .content-box
                                        .table.mobile
                                        .tbl
                                        .row.row-5
                                        .row-content
                                        .role-details
                                        .role-description
                                        .description-list
                                        li {
                                            list-style: disc;
                                            color: #4b5e8d;
                                        }

                .table-component-section .content-box .table.mobile .button-box {
                    text-align: center;
                    margin-bottom: 20px;
                }

                    .table-component-section
                    .content-box
                    .table.mobile
                    .button-box
                    .secondary-button {
                        display: inline-block;
                        text-decoration: none;
                        color: #4092ce;
                        width: 100%;
                    }

                        .table-component-section
                        .content-box
                        .table.mobile
                        .button-box
                        .secondary-button
                        p {
                            font-weight: 700;
                            font-size: 14px;
                            padding: 12px 28px;
                            border: 2px solid #4092ce;
                            border-radius: 100px;
                            width: fit-content;
                        }

                            .table-component-section
                            .content-box
                            .table.mobile
                            .button-box
                            .secondary-button
                            p:hover {
                                background: #4b5e8d;
                                border-color: transparent;
                                color: #fff;
                            }

                        .table-component-section
                        .content-box
                        .table.mobile
                        .button-box
                        .secondary-button
                        p {
                            width: inherit;
                        }

            .table-component-section .content-box .pagination {
                display: none;
            }
}

.apply-modal {
    font-family: "Open Sans", sans-serif;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 9;
    background-color: rgba(0, 0, 0, 0.3);
    animation: modalFade 0.3s;
    display: flex;
    align-items: start;
    justify-content: center;
    overflow: auto;
    padding-top: 100px;
}

    .apply-modal.hidden {
        display: none;
        opacity: 0;
    }

    .apply-modal .content-box {
        position: relative;
        background-color: white;
        border-radius: 8px;
        max-width: 860px;
        width: 100%;
        padding: 24px 40px;
        height: auto;
    }

        .apply-modal .content-box .modal-header .back-button {
            display: none;
        }

        .apply-modal .content-box .modal-header .title {
            font-size: 24px;
            color: #172b60;
            font-weight: 700;
        }

        .apply-modal .content-box .modal-header p {
            font-size: 16px;
            line-height: 24px;
            color: #4b5e8d;
            margin-top: 16px;
        }

        .apply-modal .content-box .application-form {
            display: flex;
            flex-direction: row;
            justify-content: initial;
            align-items: center;
            flex-wrap: wrap;
            gap: 24px;
        }

            .apply-modal .content-box .application-form .form-label {
                margin-top: 20px;
                font-size: 18px;
                color: #172b60;
                width: 100%;
            }

                .apply-modal .content-box .application-form .form-label:first-child {
                    margin-top: 40px;
                }

            .apply-modal .content-box .application-form label {
                display: flex;
                flex-direction: column;
                justify-content: initial;
                align-items: initial;
                flex-wrap: wrap;
                flex-wrap: nowrap;
                gap: 4px;
                width: 100%;
                position: relative;
            }

                .apply-modal .content-box .application-form label:nth-child(3),
                .apply-modal .content-box .application-form label:nth-child(4),
                .apply-modal .content-box .application-form label:nth-child(5),
                .apply-modal .content-box .application-form label:nth-child(6) {
                    max-width: calc(50% - 12px);
                }

                .apply-modal .content-box .application-form label span {
                    font-size: 14px;
                    font-weight: 600;
                    color: #172b60;
                }

                .apply-modal .content-box .application-form label input,
                .apply-modal .content-box .application-form label textarea {
                    border: 1px solid #aeb0b7;
                    border-radius: 4px;
                    padding: 10px 16px;
                    font-size: 14px;
                    font-weight: 400;
                }

                    .apply-modal .content-box .application-form label input::placeholder,
                    .apply-modal .content-box .application-form label textarea::placeholder {
                        color: #aeb0b7;
                    }

                .apply-modal .content-box .application-form label select:invalid {
                    color: #aeb0b7;
                }

                .apply-modal .content-box .application-form label input:focus,
                .apply-modal .content-box .application-form label textarea:focus {
                    outline: 0;
                }

                .apply-modal .content-box .application-form label .required-msg {
                    font-size: 12px;
                    color: red;
                    position: absolute;
                    bottom: -20px;
                    right: 0;
                    opacity: 1;
                    transition: 0.1s;
                }

                    .apply-modal .content-box .application-form label .required-msg.disabled {
                        opacity: 0;
                    }

.disabled {
    opacity: 0;
}

.apply-modal .content-box .application-form label select {
    width: 100%;
    appearance: none;
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid #aeb0b7;
    outline: 0;
    cursor: pointer;
    background-image: url("/media/icons/apply-modal/chevron-down.svg");
    background-repeat: no-repeat;
    background-position: 95% center;
}

    .apply-modal .content-box .application-form label select option {
        border-radius: 8px;
        color: black;
        padding: 10px 16px;
    }

.apply-modal .content-box .application-form .cv-file {
    width: 100%;
}

    .apply-modal .content-box .application-form .cv-file .cv-label {
        font-size: 14px;
        font-weight: 600;
        color: #172b60;
    }

    .apply-modal .content-box .application-form .cv-file .file-area {
        margin: 8px 0;
        user-select: none;
        cursor: pointer;
        padding: 24px 40px;
        border: 1px dashed #4092ce;
        text-align: center;
        background-color: #eff0f6;
    }

        .apply-modal .content-box .application-form .cv-file .file-area p {
            font-size: 14px;
        }

            .apply-modal .content-box .application-form .cv-file .file-area p em {
                font-style: normal;
                font-weight: 700;
                color: #4092ce;
            }

    .apply-modal .content-box .application-form .cv-file .subtitle {
        font-size: 12px;
        color: #4b5e8d;
        line-height: 24px;
        vertical-align: middle;
    }

.apply-modal .uploaded-files {
    display: flex;
    align-items: center;
    justify-content: start;
}

    .apply-modal .uploaded-files img {
        margin-right: 10px;
    }

.apply-modal .content-box .application-form .cv-file-mobile {
    display: none;
}

.apply-modal .content-box .application-form .terms-and-conditions {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 20px;
}

    .apply-modal
    .content-box
    .application-form
    .terms-and-conditions
    #terms-and-conditions {
        min-width: 16px;
        min-height: 16px;
        cursor: pointer;
        -webkit-appearance: none;
        border: 1px solid #3f4453;
        border-radius: 4px;
    }

        .apply-modal
        .content-box
        .application-form
        .terms-and-conditions
        #terms-and-conditions:checked {
            background-color: #4092ce;
            background-image: url("/media/icons/apply-modal/check.svg");
            background-repeat: no-repeat;
            background-position: center center;
            background-size: 70%;
            border-color: transparent;
        }

    .apply-modal .content-box .application-form .terms-and-conditions label {
        user-select: none;
        font-size: 12px;
        color: #4b5e8d;
    }

        .apply-modal .content-box .application-form .terms-and-conditions label a {
            font-style: normal;
            font-weight: 700;
            text-decoration: none;
            color: #4b5e8d;
        }

            .apply-modal
            .content-box
            .application-form
            .terms-and-conditions
            label
            a:hover {
                text-decoration: underline;
                text-underline-offset: 2px;
            }

.apply-modal .content-box .application-form button,
.apply-modal .content-box .application-form .button-box {
    font-family: "Open Sans", sans-serif;
    margin-top: 40px;
    cursor: pointer;
}

.apply-modal .content-box .application-form .submit-button {
    display: inline-block;
    text-decoration: none;
    color: #ffffff;
    appearance: none;
    border: 0;
    background-color: transparent;
}

    .apply-modal .content-box .application-form .submit-button p {
        user-select: none;
        font-weight: 700;
        font-size: 14px;
        padding: 12px 28px;
        background: linear-gradient(180deg, #1272b7 0%, #43a0e4 100%);
        border-radius: 100px;
        width: fit-content;
    }

    .apply-modal .content-box .application-form .submit-button:hover p {
        background: #4b5e8d;
        border-color: transparent;
        color: #fff;
    }

    .apply-modal .content-box .application-form .submit-button:active p {
        background: #6d89ce;
        border-color: transparent;
        color: #fff;
    }

.apply-modal .content-box .application-form .cancel-button {
    display: inline-block;
    text-decoration: none;
    color: #4092ce;
    appearance: none;
    border: 0;
    background-color: transparent;
}

    .apply-modal .content-box .application-form .cancel-button p {
        font-weight: 700;
        font-size: 14px;
        padding: 12px 28px;
        border: 2px solid #4092ce;
        border-radius: 100px;
        width: fit-content;
    }

@keyframes modalFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media screen and (max-width: 728px) {
    .apply-modal {
        bottom: initial;
        top: initial;
        background: transparent;
        position: relative;
    }

        .apply-modal .content-box {
            transform: none;
            max-width: 294px;
            padding: 24px 0;
            background: transparent;
        }

            .apply-modal .content-box .modal-header .back-button {
                cursor: pointer;
                display: block;
                margin-bottom: 24px;
                font-size: 14px;
                font-weight: 700;
                color: #4092ce;
            }

                .apply-modal .content-box .modal-header .back-button img {
                    vertical-align: middle;
                    margin-right: 8px;
                }

            .apply-modal .content-box .application-form {
                padding-bottom: 24px;
            }

                .apply-modal .content-box .application-form label:nth-child(3),
                .apply-modal .content-box .application-form label:nth-child(4),
                .apply-modal .content-box .application-form label:nth-child(5),
                .apply-modal .content-box .application-form label:nth-child(6) {
                    max-width: 100%;
                }

                .apply-modal .content-box .application-form .cv-file {
                    display: none;
                }

                .apply-modal .content-box .application-form .cv-file-mobile {
                    display: inline-block;
                    text-decoration: none;
                    color: #4092ce;
                    display: block;
                    width: 100%;
                    text-align: center;
                    font-size: 14px;
                }

                    .apply-modal .content-box .application-form .cv-file-mobile p {
                        font-weight: 700;
                        font-size: 14px;
                        padding: 12px 28px;
                        border: 2px solid #4092ce;
                        border-radius: 100px;
                        width: fit-content;
                    }

                    .apply-modal .content-box .application-form .cv-file-mobile p {
                        width: inherit;
                    }

                        .apply-modal .content-box .application-form .cv-file-mobile p img {
                            vertical-align: middle;
                            margin-right: 8px;
                        }

                .apply-modal .content-box .application-form .submit-button {
                    width: 100%;
                }

                    .apply-modal .content-box .application-form .submit-button p {
                        width: inherit;
                    }

                    .apply-modal .content-box .application-form .submit-button:hover p {
                        background: #4b5e8d;
                        border-color: transparent;
                        color: #fff;
                    }

                    .apply-modal .content-box .application-form .submit-button:active p {
                        background: #6d89ce;
                        border-color: transparent;
                        color: #fff;
                    }

                .apply-modal .content-box .application-form .button-box {
                    margin-top: 0px;
                    width: 100%;
                    text-align: center;
                }

                    .apply-modal .content-box .application-form .button-box .cancel-button {
                        width: 100%;
                    }

                        .apply-modal .content-box .application-form .button-box .cancel-button p {
                            width: inherit;
                        }
}

.table-component-section .content-box .table.desktop .table-body details.row {
    padding: 0;
    transition: 0.2s;
}

    .table-component-section
    .content-box
    .table.desktop
    .table-body
    details.row[open]
    summary,
    .table-component-section
    .content-box
    .table.desktop
    .table-body
    details.row[open]
    .row-content {
        border-color: #4092ce;
    }

        .table-component-section
        .content-box
        .table.desktop
        .table-body
        details.row[open]
        summary
        .col-5
        img {
            transform: rotate(-180deg);
        }

    .table-component-section
    .content-box
    .table.desktop
    .table-body
    details.row[open]
    .row-content {
        border-top: 0;
    }

    .table-component-section
    .content-box
    .table.desktop
    .table-body
    details.row
    summary {
        padding: 20px 24px;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
        flex-wrap: nowrap;
        color: #4b5e8d;
        font-size: 14px;
        border: 1px solid transparent;
        cursor: pointer;
    }

        .table-component-section
        .content-box
        .table.desktop
        .table-body
        details.row
        summary
        .col
        .col-content {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .table-component-section
        .content-box
        .table.desktop
        .table-body
        details.row
        summary
        .col-5 {
            text-align: center;
        }

    .table-component-section
    .content-box
    .table.desktop
    .table-body
    details.row
    .row-content {
        padding: 24px;
        border: 1px solid transparent;
    }

        .table-component-section
        .content-box
        .table.desktop
        .table-body
        details.row
        .row-content
        .role-header {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

            .table-component-section
            .content-box
            .table.desktop
            .table-body
            details.row
            .row-content
            .role-header
            .title-and-info
            .role-title {
                font-size: 24px;
                color: #4b5e8d;
            }

            .table-component-section
            .content-box
            .table.desktop
            .table-body
            details.row
            .row-content
            .role-header
            .title-and-info
            .role-info {
                margin-top: 14px;
            }

                .table-component-section
                .content-box
                .table.desktop
                .table-body
                details.row
                .row-content
                .role-header
                .title-and-info
                .role-info
                p {
                    display: inline-block;
                    font-size: 14px;
                    color: #787c87;
                }

                .table-component-section
                .content-box
                .table.desktop
                .table-body
                details.row
                .row-content
                .role-header
                .title-and-info
                .role-info
                img {
                    vertical-align: middle;
                    margin: 0 12px;
                }

            .table-component-section
            .content-box
            .table.desktop
            .table-body
            details.row
            .row-content
            .role-header
            .button-box {
                cursor: pointer;
            }

                .table-component-section
                .content-box
                .table.desktop
                .table-body
                details.row
                .row-content
                .role-header
                .button-box
                .secondary-button {
                    display: inline-block;
                    text-decoration: none;
                    color: #4092ce;
                }

                    .table-component-section
                    .content-box
                    .table.desktop
                    .table-body
                    details.row
                    .row-content
                    .role-header
                    .button-box
                    .secondary-button
                    p {
                        font-weight: 700;
                        font-size: 14px;
                        padding: 12px 28px;
                        border: 2px solid #4092ce;
                        border-radius: 100px;
                        width: fit-content;
                    }

                    .table-component-section
                    .content-box
                    .table.desktop
                    .table-body
                    details.row
                    .row-content
                    .role-header
                    .button-box
                    .secondary-button
                    p {
                        display: inline-block;
                        padding: 8px 16px;
                    }

                    .table-component-section
                    .content-box
                    .table.desktop
                    .table-body
                    details.row
                    .row-content
                    .role-header
                    .button-box
                    .secondary-button:hover
                    p {
                        background: #4b5e8d;
                        border-color: transparent;
                        color: #fff;
                    }

                    .table-component-section
                    .content-box
                    .table.desktop
                    .table-body
                    details.row
                    .row-content
                    .role-header
                    .button-box
                    .secondary-button:active
                    p {
                        background: #6d89ce;
                        border-color: transparent;
                        color: #fff;
                    }

                    .table-component-section
                    .content-box
                    .table.desktop
                    .table-body
                    details.row
                    .row-content
                    .role-header
                    .button-box
                    .secondary-button
                    p
                    img {
                        vertical-align: middle;
                        margin-left: 4px;
                    }

                    .table-component-section
                    .content-box
                    .table.desktop
                    .table-body
                    details.row
                    .row-content
                    .role-header
                    .button-box
                    .secondary-button:hover
                    p
                    img,
                    .table-component-section
                    .content-box
                    .table.desktop
                    .table-body
                    details.row
                    .row-content
                    .role-header
                    .button-box
                    .secondary-button:active
                    p
                    img {
                        filter: brightness(5);
                    }

        .table-component-section
        .content-box
        .table.desktop
        .table-body
        details.row
        .row-content
        .role-details {
            margin-top: 20px;
        }

            .table-component-section
            .content-box
            .table.desktop
            .table-body
            details.row
            .row-content
            .role-details
            .time-and-education
            .time,
            .table-component-section
            .content-box
            .table.desktop
            .table-body
            details.row
            .row-content
            .role-details
            .time-and-education
            .education {
                padding: 4px 0;
            }

                .table-component-section
                .content-box
                .table.desktop
                .table-body
                details.row
                .row-content
                .role-details
                .time-and-education
                .time
                img,
                .table-component-section
                .content-box
                .table.desktop
                .table-body
                details.row
                .row-content
                .role-details
                .time-and-education
                .education
                img {
                    vertical-align: middle;
                    margin-right: 8px;
                }

                .table-component-section
                .content-box
                .table.desktop
                .table-body
                details.row
                .row-content
                .role-details
                .time-and-education
                .time
                p,
                .table-component-section
                .content-box
                .table.desktop
                .table-body
                details.row
                .row-content
                .role-details
                .time-and-education
                .education
                p {
                    display: inline-block;
                    color: #4b5e8d;
                }

            .table-component-section
            .content-box
            .table.desktop
            .table-body
            details.row
            .row-content
            .role-details
            .role-description {
                margin-top: 24px;
            }

                .table-component-section
                .content-box
                .table.desktop
                .table-body
                details.row
                .row-content
                .role-details
                .role-description
                .title {
                    font-weight: 700;
                    color: #4b5e8d;
                }

                .table-component-section
                .content-box
                .table.desktop
                .table-body
                details.row
                .row-content
                .role-details
                .role-description
                .description {
                    color: #4b5e8d;
                    margin-top: 8px;
                }

                .table-component-section
                .content-box
                .table.desktop
                .table-body
                details.row
                .row-content
                .role-details
                .role-description
                .description-list {
                    margin-top: 20px;
                    padding-left: 24px;
                }

                    .table-component-section
                    .content-box
                    .table.desktop
                    .table-body
                    details.row
                    .row-content
                    .role-details
                    .role-description
                    .description-list
                    li {
                        list-style: disc;
                        color: #4b5e8d;
                    }

    .table-component-section
    .content-box
    .table.desktop
    .table-body
    details.row
    summary,
    .table-component-section
    .content-box
    .table.desktop
    .table-body
    details.row
    .row-content {
        transition: 0.2s;
    }

.sucess-modal {
    font-family: "Open Sans", sans-serif;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
    background-color: rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: modalFade 0.3s;
}

    .sucess-modal.hidden {
        display: none;
        opacity: 0;
    }

    .sucess-modal .content-box {
        padding: 1rem 0;
        max-width: 1184px;
        margin: 0 auto;
        position: relative;
        top: 50%;
        transform: translateY(-50%);
        background-color: white;
        border-radius: 8px;
        max-width: 455px;
        padding: 24px 40px;
        text-align: center;
    }

        .sucess-modal .content-box .modal-header .title {
            margin-top: 16px;
            font-size: 24px;
            color: #172b60;
        }

        .sucess-modal .content-box .modal-header p {
            margin-top: 16px;
            color: #555770;
        }

        .sucess-modal .content-box .close-modal {
            cursor: pointer;
            margin-top: 48px;
            font-family: "Open Sans", sans-serif;
            appearance: none;
            border: 0;
            background-color: transparent;
            font-size: 14px;
            font-weight: 700;
            color: #4092ce;
        }

@media screen and (max-width: 728px) {
    .sucess-modal {
        padding: 0;
    }

        .sucess-modal .content-box {
            max-width: 294px;
            padding: 16px;
        }
}

.workshops-section {
    padding: 0 2rem;
    font-family: "Open Sans", sans-serif;
    margin-top: 80px;
}

    .workshops-section .tabs {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
        gap: 24px;
        padding-left: calc((100% - 1184px) / 2);
    }

        .workshops-section .tabs .tab-text {
            padding: 4px 24px;
            color: #172b60;
            text-transform: uppercase;
            border-radius: 4px;
            cursor: pointer;
            transition: 0.15s;
        }

            .workshops-section .tabs .tab-text.is-active {
                background-color: #003398;
                color: #ffffff;
                font-weight: 700;
            }

            .workshops-section .tabs .tab-text:hover {
                background-color: #6d89ce;
                color: #ffffff;
            }

    .workshops-section .content-box {
        padding: 1rem 0;
        max-width: 1184px;
        margin: 0 auto;
    }

        .workshops-section .content-box .workshop-filters {
            display: flex;
            flex-direction: row;
            justify-content: flex-start;
            align-items: center;
            flex-wrap: wrap;
            gap: 24px;
            margin-top: 24px;
        }

            .workshops-section .content-box .workshop-filters label {
                font-size: 14px;
                font-weight: 600;
                color: #172b60;
                width: 277px;
            }

                .workshops-section .content-box .workshop-filters label:first-child .filter {
                    width: 100%;
                    appearance: none;
                    padding: 10px 16px;
                    border-radius: 8px;
                    border: 1px solid #aeb0b7;
                    outline: 0;
                    cursor: pointer;
                    font-family: "Open Sans";
                    background-image: url("/media/icons/workshops-section/calendar.svg");
                    background-repeat: no-repeat;
                    background-position: 95% center;
                }

                    .workshops-section
                    .content-box
                    .workshop-filters
                    label:first-child
                    .filter
                    option {
                        color: #172b60;
                        border-radius: 8px;
                    }

                .workshops-section .content-box .workshop-filters label .filter {
                    width: 100%;
                    appearance: none;
                    padding: 10px 16px;
                    border-radius: 8px;
                    border: 1px solid #aeb0b7;
                    outline: 0;
                    cursor: pointer;
                    background-image: url("/media/icons/filters-section/chevron-down.svg");
                    background-repeat: no-repeat;
                    background-position: 95% center;
                    margin-top: 8px;
                }

                    .workshops-section .content-box .workshop-filters label .filter select:invalid {
                        color: #aeb0b7;
                    }

                    .workshops-section .content-box .workshop-filters label .filter option {
                        color: #172b60;
                        border-radius: 8px;
                    }

        .workshops-section .content-box .tab-body {
            display: flex;
            flex-direction: row;
            justify-content: flex-start;
            align-items: center;
            flex-wrap: wrap;
            margin-top: 24px;
            margin-bottom: 80px;
        }

            .workshops-section .content-box .tab-body .tab-content {
                display: none;
            }

                .workshops-section .content-box .tab-body .tab-content.is-active {
                    width: 100%;
                    display: flex;
                    flex-direction: row;
                    justify-content: flex-start;
                    align-items: center;
                    flex-wrap: wrap;
                    gap: 24px;
                }

                .workshops-section .content-box .tab-body .tab-content .cards {
                    width: 100%;
                    display: flex;
                    flex-direction: row;
                    justify-content: initial;
                    align-items: stretch;
                    flex-wrap: wrap;
                    gap: 24px;
                }

                    .workshops-section .content-box .tab-body .tab-content .cards .card-course {
                        background-color: #ffffff;
                        width: 100%;
                        max-width: 378px;
                        padding: 8px;
                        border-radius: 8px;
                        border: 1px solid #eff0f6;
                        animation: fade 1s;
                    }

                        .workshops-section .content-box .tab-body .tab-content .cards .card-course a {
                            text-decoration: none;
                            height: 100%;
                            display: flex;
                            flex-direction: column;
                            justify-content: space-between;
                        }

                            .workshops-section
                            .content-box
                            .tab-body
                            .tab-content
                            .cards
                            .card-course
                            a
                            .thumbnail
                            img {
                                width: 100%;
                                max-height: 262px;
                                border-radius: 4px;
                                object-fit: cover;
                            }

                            .workshops-section
                            .content-box
                            .tab-body
                            .tab-content
                            .cards
                            .card-course
                            a
                            .body-content {
                                padding: 24px 8px 8px 8px;
                            }

                                .workshops-section
                                .content-box
                                .tab-body
                                .tab-content
                                .cards
                                .card-course
                                a
                                .body-content
                                .tag-and-title {
                                    margin-bottom: 26px;
                                }

                                    .workshops-section
                                    .content-box
                                    .tab-body
                                    .tab-content
                                    .cards
                                    .card-course
                                    a
                                    .body-content
                                    .tag-and-title
                                    .tag-and-bookmarker {
                                        display: flex;
                                        flex-direction: row;
                                        justify-content: space-between;
                                        align-items: center;
                                        flex-wrap: wrap;
                                        margin-bottom: 20px;
                                    }

                                        .workshops-section
                                        .content-box
                                        .tab-body
                                        .tab-content
                                        .cards
                                        .card-course
                                        a
                                        .body-content
                                        .tag-and-title
                                        .tag-and-bookmarker
                                        .tag {
                                            color: #001aff;
                                            background-color: #00ffff;
                                            padding: 4px 8px;
                                            font-size: 12px;
                                            font-weight: 700;
                                            border-radius: 4px;
                                            background-color: #003398;
                                            color: #ffffff;
                                        }

                                    .workshops-section
                                    .content-box
                                    .tab-body
                                    .tab-content
                                    .cards
                                    .card-course
                                    a
                                    .body-content
                                    .tag-and-title
                                    .title-and-descripton
                                    h4 {
                                        margin-bottom: 8px;
                                        font-size: 24px;
                                        color: #003398;
                                    }

                                    .workshops-section
                                    .content-box
                                    .tab-body
                                    .tab-content
                                    .cards
                                    .card-course
                                    a
                                    .body-content
                                    .tag-and-title
                                    .title-and-descripton
                                    p {
                                        font-size: 16px;
                                        line-height: 24px;
                                        color: #4b5e8d;
                                        display: -webkit-box;
                                        -webkit-line-clamp: 3;
                                        -webkit-box-orient: vertical;
                                        overflow: hidden;
                                    }

                                .workshops-section
                                .content-box
                                .tab-body
                                .tab-content
                                .cards
                                .card-course
                                a
                                .body-content
                                .footer
                                .divider {
                                    margin-bottom: 16px;
                                    border-color: #6d89ce;
                                    opacity: 0.2;
                                }

                                .workshops-section
                                .content-box
                                .tab-body
                                .tab-content
                                .cards
                                .card-course
                                a
                                .body-content
                                .footer
                                .wrap-content {
                                    display: flex;
                                    flex-direction: row;
                                    justify-content: space-between;
                                    align-items: center;
                                    flex-wrap: wrap;
                                }

                                    .workshops-section
                                    .content-box
                                    .tab-body
                                    .tab-content
                                    .cards
                                    .card-course
                                    a
                                    .body-content
                                    .footer
                                    .wrap-content
                                    .duration
                                    * {
                                        display: inline;
                                        vertical-align: middle;
                                    }

                                    .workshops-section
                                    .content-box
                                    .tab-body
                                    .tab-content
                                    .cards
                                    .card-course
                                    a
                                    .body-content
                                    .footer
                                    .wrap-content
                                    .duration
                                    p {
                                        font-size: 12px;
                                        font-weight: 700;
                                        color: #4b5e8d;
                                    }

                                    .workshops-section
                                    .content-box
                                    .tab-body
                                    .tab-content
                                    .cards
                                    .card-course
                                    a
                                    .body-content
                                    .footer
                                    .wrap-content
                                    .date
                                    * {
                                        display: inline;
                                        vertical-align: middle;
                                    }

                                    .workshops-section
                                    .content-box
                                    .tab-body
                                    .tab-content
                                    .cards
                                    .card-course
                                    a
                                    .body-content
                                    .footer
                                    .wrap-content
                                    .date
                                    p {
                                        font-size: 12px;
                                        font-weight: 700;
                                        color: #4b5e8d;
                                    }

        .workshops-section .content-box .pagination {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            margin: 40px 0;
        }

            .workshops-section .content-box .pagination .control {
                cursor: pointer;
            }

            .workshops-section .content-box .pagination .page {
                width: 64px;
                text-align: center;
                font-size: 18px;
                font-weight: 700;
                color: #b7bdc8;
                cursor: pointer;
            }

                .workshops-section .content-box .pagination .page.active {
                    color: #4092ce;
                }

        .workshops-section .content-box .button-box {
            display: none;
        }

@media screen and (max-width: 728px) {
    .workshops-section {
        padding: 0;
        margin-top: 40px;
    }

        .workshops-section .tabs {
            flex-wrap: nowrap;
            overflow-x: scroll;
            padding: 0 calc((100% - 294px) / 2);
        }

            .workshops-section .tabs .tab-text {
                white-space: nowrap;
            }

        .workshops-section .content-box {
            max-width: 294px;
        }

            .workshops-section .content-box .workshop-filters label {
                width: 100%;
            }

            .workshops-section .content-box .tab-body {
                margin-bottom: 0;
            }

            .workshops-section .content-box .pagination {
                display: none;
            }

            .workshops-section .content-box .button-box {
                margin-top: 24px;
                margin-bottom: 40px;
                display: block;
            }

                .workshops-section .content-box .button-box button {
                    cursor: pointer;
                    font-family: "Open Sans";
                    width: 100%;
                    appearance: none;
                    border: 2px solid #4092ce;
                    background: transparent;
                    color: #4092ce;
                    border-radius: 50px;
                    padding: 12px 0;
                    font-size: 14px;
                    font-weight: 700;
                }
}

.workshop-overview-details-section {
    padding: 0 2rem;
    font-family: "Open Sans", sans-serif;
    margin-top: 80px;
}

    .workshop-overview-details-section .content-box {
        padding: 1rem 0;
        max-width: 1184px;
        margin: 0 auto;
    }

        .workshop-overview-details-section .content-box .overview-details {
            display: flex;
            flex-direction: row;
            justify-content: flex-start;
            align-items: center;
            flex-wrap: wrap;
            gap: 24px;
            border: 1px solid #eaf0ff;
            padding: 24px;
            border-radius: 8px;
            background-color: #ffffff;
        }

            .workshop-overview-details-section .content-box .overview-details .detail {
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
                flex-wrap: wrap;
                flex-wrap: nowrap;
                gap: 16px;
                width: 265px;
            }

                .workshop-overview-details-section
                .content-box
                .overview-details
                .detail
                .detail-image {
                    padding: 10px;
                    background-color: #00ffff;
                    border-radius: 0 8px;
                }

                .workshop-overview-details-section
                .content-box
                .overview-details
                .detail
                .label-and-description {
                    color: #172b60;
                }

                    .workshop-overview-details-section
                    .content-box
                    .overview-details
                    .detail
                    .label-and-description
                    .detail-label {
                        font-size: 14px;
                        font-weight: 700;
                        text-transform: uppercase;
                    }

                    .workshop-overview-details-section
                    .content-box
                    .overview-details
                    .detail
                    .label-and-description
                    .detail-description {
                        margin-top: 8px;
                        color: #4b5e8d;
                    }

@media screen and (max-width: 728px) {
    .workshop-overview-details-section {
        padding: 0;
        margin-top: 40px;
    }

        .workshop-overview-details-section .content-box {
            max-width: 294px;
        }
}

.workshops-details-section {
    padding: 0 2rem;
    font-family: "Open Sans", sans-serif;
    margin-bottom: 80px;
}

    .workshops-details-section .content-box {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 1rem 0;
        max-width: 1184px;
        margin: 0 auto;
    }

@media screen and (max-width: 728px) {
    .workshops-details-section {
        padding: 0;
        margin-bottom: 40px;
    }

        .workshops-details-section .content-box {
            max-width: 100%;
        }
}

.workshops-details-section .content-box .text-section {
    margin-top: 40px;
    max-width: 680px;
}

    .workshops-details-section .content-box .text-section h4 {
        font-size: 18px;
        color: #172b60;
        font-weight: 700;
        margin-top: 40px;
    }

        .workshops-details-section .content-box .text-section h4:first-child {
            margin: 0;
        }

    .workshops-details-section .content-box .text-section p {
        font-size: 16px;
        line-height: 24px;
        color: #4b5e8d;
        margin-top: 8px;
    }

    .workshops-details-section .content-box .text-section .simple-list li {
        margin-left: 24px;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
        flex-wrap: nowrap;
        gap: 24px;
        margin-top: 16px;
    }

@media screen and (max-width: 728px) {
    .workshops-details-section .content-box .text-section {
        max-width: 294px;
        margin: 40px auto;
    }
}

.workshops-details-section .content-box .signup-section {
    margin-top: 40px;
    margin-left: 16px;
    width: 378px;
}

    .workshops-details-section .content-box .signup-section .signup-header {
        padding: 24px;
        background-color: #f4f5f9;
        border-radius: 8px;
    }

        .workshops-details-section
        .content-box
        .signup-section
        .signup-header
        .section-header
        .section-title {
            margin-bottom: 8px;
            font-size: 24px;
            color: #001aff;
            color: #172b60;
        }

        .workshops-details-section
        .content-box
        .signup-section
        .signup-header
        .section-header
        .button-box {
            margin-top: 24px;
            cursor: pointer;
        }

            .workshops-details-section
            .content-box
            .signup-section
            .signup-header
            .section-header
            .button-box
            .primary-button {
                display: inline-block;
                text-decoration: none;
                color: #ffffff;
                width: 100%;
                text-align: center;
            }

                .workshops-details-section
                .content-box
                .signup-section
                .signup-header
                .section-header
                .button-box
                .primary-button
                p {
                    user-select: none;
                    font-weight: 700;
                    font-size: 14px;
                    padding: 12px 28px;
                    background: linear-gradient(180deg, #1272b7 0%, #43a0e4 100%);
                    border-radius: 100px;
                    width: fit-content;
                }

                .workshops-details-section
                .content-box
                .signup-section
                .signup-header
                .section-header
                .button-box
                .primary-button
                p {
                    width: inherit;
                }

                    .workshops-details-section
                    .content-box
                    .signup-section
                    .signup-header
                    .section-header
                    .button-box
                    .primary-button
                    p
                    img {
                        vertical-align: middle;
                        margin-left: 8px;
                    }

                .workshops-details-section
                .content-box
                .signup-section
                .signup-header
                .section-header
                .button-box
                .secondary-button:hover
                p,
                .workshops-details-section
                .content-box
                .signup-section
                .signup-header
                .section-header
                .button-box
                .primary-button:hover
                p {
                    background: #4b5e8d;
                    border-color: transparent;
                    color: #fff;
                }

                .workshops-details-section
                .content-box
                .signup-section
                .signup-header
                .section-header
                .button-box
                .secondary-button:active
                p,
                .workshops-details-section
                .content-box
                .signup-section
                .signup-header
                .section-header
                .button-box
                .primary-button:active
                p {
                    background: #6d89ce;
                    border-color: transparent;
                    color: #fff;
                }

        /* .primary-button:active,
.secondary-button:active,
.primary-button:active p,
.secondary-button:active p,
.submit-newsletter:active {
  background: #6d89ce !important;
  border-color: transparent !important;
  color: #fff !important;
} */

        .workshops-details-section
        .content-box
        .signup-section
        .signup-header
        .workshop-prices {
            margin-top: 40px;
        }

            .workshops-details-section
            .content-box
            .signup-section
            .signup-header
            .workshop-prices
            .prices-label {
                font-size: 14px;
                font-weight: 700;
                color: #172b60;
            }

            .workshops-details-section
            .content-box
            .signup-section
            .signup-header
            .workshop-prices
            .price-list {
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
                flex-wrap: wrap;
                gap: 20px;
                margin-top: 8px;
            }

                .workshops-details-section
                .content-box
                .signup-section
                .signup-header
                .workshop-prices
                .price-list
                .price {
                    width: calc(50% - 10px);
                    padding: 16px;
                    background-color: #ffffff;
                    text-align: center;
                    border-radius: 8px;
                }

                    .workshops-details-section
                    .content-box
                    .signup-section
                    .signup-header
                    .workshop-prices
                    .price-list
                    .price
                    p {
                        font-size: 32px;
                        font-weight: 700;
                        color: #003398;
                    }

                        .workshops-details-section
                        .content-box
                        .signup-section
                        .signup-header
                        .workshop-prices
                        .price-list
                        .price
                        p
                        small {
                            font-size: 18px;
                        }

                    .workshops-details-section
                    .content-box
                    .signup-section
                    .signup-header
                    .workshop-prices
                    .price-list
                    .price
                    .price-detail
                    p {
                        font-size: 12px;
                        font-weight: 400;
                        color: #aeb0b7;
                        display: inline-block;
                    }

                    .workshops-details-section
                    .content-box
                    .signup-section
                    .signup-header
                    .workshop-prices
                    .price-list
                    .price
                    .price-detail
                    .info-btn {
                        cursor: pointer;
                        display: inline-block;
                        position: relative;
                    }

                        .workshops-details-section
                        .content-box
                        .signup-section
                        .signup-header
                        .workshop-prices
                        .price-list
                        .price
                        .price-detail
                        .info-btn:hover
                        .info-text {
                            display: initial;
                        }

                        .workshops-details-section
                        .content-box
                        .signup-section
                        .signup-header
                        .workshop-prices
                        .price-list
                        .price
                        .price-detail
                        .info-btn
                        img {
                            vertical-align: middle;
                        }

                        .workshops-details-section
                        .content-box
                        .signup-section
                        .signup-header
                        .workshop-prices
                        .price-list
                        .price
                        .price-detail
                        .info-btn
                        .info-text {
                            display: none;
                            position: absolute;
                            width: 160px;
                            background-color: #313c59;
                            padding: 8px 16px;
                            border-radius: 4px;
                            color: #ffffff;
                            font-size: 14px;
                            bottom: 130%;
                            left: 50%;
                            transform: translateX(-50%);
                        }

                            .workshops-details-section
                            .content-box
                            .signup-section
                            .signup-header
                            .workshop-prices
                            .price-list
                            .price
                            .price-detail
                            .info-btn
                            .info-text::after {
                                content: "";
                                position: absolute;
                                left: 50%;
                                transform: translateX(-50%) rotate(-45deg);
                                bottom: -6px;
                                border: 8px solid transparent;
                                border-color: transparent transparent #313c59 #313c59;
                                border-radius: 3px;
                            }

                .workshops-details-section
                .content-box
                .signup-section
                .signup-header
                .workshop-prices
                .price-list
                .free-price {
                    width: 100%;
                    padding: 16px;
                    background-color: #ffffff;
                    text-align: center;
                    border-radius: 8px;
                }

                    .workshops-details-section
                    .content-box
                    .signup-section
                    .signup-header
                    .workshop-prices
                    .price-list
                    .free-price
                    p {
                        font-size: 32px;
                        font-weight: 700;
                        color: #172b60;
                    }

            .workshops-details-section
            .content-box
            .signup-section
            .signup-header
            .workshop-prices
            .info {
                font-size: 14px;
                color: #4b5e8d;
                margin-top: 40px;
            }

        .workshops-details-section
        .content-box
        .signup-section
        .signup-header
        .workshop-details {
            margin-top: 40px;
        }

            .workshops-details-section
            .content-box
            .signup-section
            .signup-header
            .workshop-details
            li
            .detail-label {
                font-size: 14px;
                font-weight: 700;
                color: #172b60;
            }

            .workshops-details-section
            .content-box
            .signup-section
            .signup-header
            .workshop-details
            li
            p {
                margin: 4px 0 24px;
                color: #4b5e8d;
            }

            .workshops-details-section
            .content-box
            .signup-section
            .signup-header
            .workshop-details
            li:last-child
            p {
                margin-bottom: 0;
            }

    .workshops-details-section .content-box .signup-section .signup-contact {
        padding: 24px;
        background-color: #f4f5f9;
        border-radius: 8px;
        margin-top: 24px;
    }

        .workshops-details-section
        .content-box
        .signup-section
        .signup-contact
        .contact-title {
            font-size: 18px;
            color: #172b60;
            font-weight: 700;
        }

        .workshops-details-section .content-box .signup-section .signup-contact p {
            font-size: 16px;
            line-height: 24px;
            color: #4b5e8d;
            margin-top: 10px;
        }

        .workshops-details-section
        .content-box
        .signup-section
        .signup-contact
        .email-info {
            margin-top: 24px;
        }

            .workshops-details-section
            .content-box
            .signup-section
            .signup-contact
            .email-info
            img {
                vertical-align: middle;
                margin-right: 8px;
            }

            .workshops-details-section
            .content-box
            .signup-section
            .signup-contact
            .email-info
            a {
                color: #4092ce;
                text-underline-offset: 2px;
                text-decoration-thickness: 1px;
            }

@media screen and (max-width: 728px) {
    .workshops-details-section .content-box .signup-section {
        position: relative;
        float: none;
        margin: 20px 0 0;
        width: 100%;
    }

        .workshops-details-section .content-box .signup-section .signup-header,
        .workshops-details-section .content-box .signup-section .signup-contact {
            border-radius: 0;
        }
}

.form-stepper-section {
    margin-top: 100px;
    margin-bottom: 80px;
    padding: 0 2rem;
    font-family: "Open Sans", sans-serif;
    animation: fade 0.5s;
}

    .form-stepper-section.hidden {
        display: none;
    }

    .form-stepper-section .content-box {
        padding: 1rem 0;
        max-width: 1184px;
        margin: 0 auto;
    }

        .form-stepper-section .content-box h2 {
            font-size: 32px;
            font-weight: 700;
            color: #172b60;
        }

            .form-stepper-section .content-box h2 em {
                font-style: normal;
                color: #4092ce;
            }

        .form-stepper-section .content-box .form-progress {
            position: relative;
            width: 872px;
            margin: 80px auto 0;
            user-select: none;
        }

            .form-stepper-section .content-box .form-progress .progress-count,
            .form-stepper-section .content-box .form-progress .progress-name {
                display: none;
            }

            .form-stepper-section .content-box .form-progress progress {
                -webkit-appearance: none;
                width: inherit;
            }

                .form-stepper-section
                .content-box
                .form-progress
                progress::-webkit-progress-bar {
                    background-color: #d6d7db;
                    height: 2px;
                }

                .form-stepper-section
                .content-box
                .form-progress
                progress::-webkit-progress-value {
                    background-color: #4092ce;
                    transition: 0.3s;
                }

            .form-stepper-section .content-box .form-progress .progress-item {
                position: absolute;
                padding: 4px;
                background-color: #d6d7db;
                border: 5px solid #ffffff;
                outline-offset: -1px;
                top: -3px;
                border-radius: 50%;
            }

                .form-stepper-section .content-box .form-progress .progress-item.active {
                    border-color: #4092ce;
                    background-color: #ffffff;
                    padding: 6px;
                    top: -5px;
                }

                    .form-stepper-section
                    .content-box
                    .form-progress
                    .progress-item.active
                    .progress-label {
                        transition: 0.2s;
                        font-weight: 700;
                        color: #4092ce;
                    }

                .form-stepper-section .content-box .form-progress .progress-item.complete {
                    border-color: #4092ce;
                    padding: 6px;
                    top: -5px;
                    background-color: #4092ce;
                    background-image: url("/media/icons/form-stepper/check.svg");
                    background-repeat: no-repeat;
                    background-position: center;
                    background-size: 80%;
                }

                    .form-stepper-section
                    .content-box
                    .form-progress
                    .progress-item.complete
                    .progress-label {
                        font-weight: 700;
                        color: #4092ce;
                    }

                .form-stepper-section
                .content-box
                .form-progress
                .progress-item
                .progress-label {
                    position: absolute;
                    white-space: nowrap;
                    top: 25px;
                    left: 50%;
                    transform: translateX(-50%);
                    color: #787c87;
                    font-weight: 400;
                    font-size: 14px;
                }

                .form-stepper-section .content-box .form-progress .progress-item:nth-child(1) {
                    left: 0;
                }

                .form-stepper-section .content-box .form-progress .progress-item:nth-child(2) {
                    left: 33.33%;
                }

                .form-stepper-section .content-box .form-progress .progress-item:nth-child(3) {
                    left: 66.66%;
                }

                .form-stepper-section .content-box .form-progress .progress-item:nth-child(4) {
                    left: 100%;
                }

        .form-stepper-section .content-box .form-stepper {
            margin-top: 100px;
        }

            .form-stepper-section .content-box .form-stepper .form-step {
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
                flex-wrap: wrap;
                gap: 24px;
                animation: fade 0.5s;
                opacity: 0;
            }

                .form-stepper-section .content-box .form-stepper .form-step .form-group {
                    display: flex;
                    flex-direction: row;
                    justify-content: flex-start;
                    align-items: center;
                    flex-wrap: wrap;
                    gap: 24px;
                    width: 100%;
                }

                .form-stepper-section .content-box .form-stepper .form-step label {
                    width: calc(50% - 12px);
                    position: relative;
                }

                    .form-stepper-section .content-box .form-stepper .form-step label span {
                        display: block;
                        font-size: 14px;
                        font-weight: 600;
                        color: #172b60;
                        width: 277px;
                        width: auto;
                    }

                    .form-stepper-section
                    .content-box
                    .form-stepper
                    .form-step
                    label
                    input:not(.terms input),
                    .form-stepper-section .content-box .form-stepper .form-step label select {
                        margin-top: 8px;
                        appearance: none;
                        padding: 10px 16px;
                        border-radius: 4px;
                        border: 1px solid #aeb0b7;
                        outline: 0;
                        width: 100%;
                    }

                        .form-stepper-section
                        .content-box
                        .form-stepper
                        .form-step
                        label
                        input:not(.terms input)::placeholder,
                        .form-stepper-section
                        .content-box
                        .form-stepper
                        .form-step
                        label
                        select::placeholder {
                            color: #aeb0b7;
                        }

                    .form-stepper-section .content-box .form-stepper .form-step label select {
                        background-image: url("/media/icons/apply-modal/chevron-down.svg");
                        background-repeat: no-repeat;
                        background-position: 95% center;
                    }

                    .form-stepper-section
                    .content-box
                    .form-stepper
                    .form-step
                    label
                    .required-msg {
                        font-size: 12px;
                        color: red !important;
                        position: absolute;
                        bottom: -20px;
                        right: 0;
                        opacity: 1;
                        transition: 0.1s;
                    }

                        .form-stepper-section
                        .content-box
                        .form-stepper
                        .form-step
                        label
                        .required-msg.disabled {
                            opacity: 0;
                        }

                .form-stepper-section .content-box .form-stepper .form-step .form-buttons {
                    margin-top: 80px;
                    width: 100%;
                    user-select: none;
                    display: flex;
                    flex-direction: row;
                    justify-content: space-between;
                    align-items: center;
                    flex-wrap: wrap;
                }

                    .form-stepper-section .content-box .form-stepper .form-step .form-buttons .next,
                    .form-stepper-section
                    .content-box
                    .form-stepper
                    .form-step
                    .form-buttons
                    .previous,
                    .form-stepper-section
                    .content-box
                    .form-stepper
                    .form-step
                    .form-buttons
                    .submit {
                        cursor: pointer;
                    }

                    .form-stepper-section
                    .content-box
                    .form-stepper
                    .form-step
                    .form-buttons
                    .previous {
                        display: inline-block;
                        text-decoration: none;
                        color: #4092ce;
                    }

                        .form-stepper-section
                        .content-box
                        .form-stepper
                        .form-step
                        .form-buttons
                        .previous
                        p {
                            font-weight: 700;
                            font-size: 14px;
                            padding: 12px 28px;
                            border: 2px solid #4092ce;
                            border-radius: 100px;
                            width: fit-content;
                        }

                    .form-stepper-section .content-box .form-stepper .form-step .form-buttons .next,
                    .form-stepper-section
                    .content-box
                    .form-stepper
                    .form-step
                    .form-buttons
                    .submit {
                        display: inline-block;
                        text-decoration: none;
                        color: #ffffff;
                    }

                        .form-stepper-section
                        .content-box
                        .form-stepper
                        .form-step
                        .form-buttons
                        .next
                        p,
                        .form-stepper-section
                        .content-box
                        .form-stepper
                        .form-step
                        .form-buttons
                        .submit
                        p {
                            user-select: none;
                            font-weight: 700;
                            font-size: 14px;
                            padding: 12px 28px;
                            background: linear-gradient(180deg, #1272b7 0%, #43a0e4 100%);
                            border-radius: 100px;
                            width: fit-content;
                        }

.form-step.step-2 .cv-file {
    width: 100%;
}

    .form-step.step-2 .cv-file .cv-label {
        font-size: 14px;
        font-weight: 600;
        color: #172b60;
    }

    .form-step.step-2 .cv-file .file-area {
        margin: 8px 0;
        user-select: none;
        cursor: pointer;
        padding: 24px 40px;
        border: 1px dashed #4092ce;
        text-align: center;
        background-color: #eff0f6;
    }

        .form-step.step-2 .cv-file .file-area p {
            font-size: 14px;
        }

            .form-step.step-2 .cv-file .file-area p em {
                font-style: normal;
                font-weight: 700;
                color: #4092ce;
            }

    .form-step.step-2 .cv-file .subtitle {
        font-size: 12px;
        color: #4b5e8d;
        line-height: 24px;
        vertical-align: middle;
    }

.form-step.step-2 .uploaded-files {
    display: flex;
    align-items: center;
    justify-content: start;
}

    .form-step.step-2 .uploaded-files img {
        margin-right: 10px;
    }

.form-step.step-2 .content-box .application-form .cv-file-mobile {
    display: none;
}

.form-stepper-section
.content-box
.form-stepper
.form-step
.form-buttons
.next
p
img,
.form-stepper-section
.content-box
.form-stepper
.form-step
.form-buttons
.submit
p
img {
    vertical-align: middle;
    margin-left: 8px;
}

.form-stepper-section .content-box .form-stepper .form-step.step-1 {
    display: none;
}

    .form-stepper-section .content-box .form-stepper .form-step.step-1.active-step {
        display: flex;
        opacity: 1;
    }

    .form-stepper-section .content-box .form-stepper .form-step.step-1 .address {
        width: 100%;
    }

    .form-stepper-section
    .content-box
    .form-stepper
    .form-step.step-1
    .form-buttons {
        justify-content: flex-end;
    }

.form-stepper-section .content-box .form-stepper .form-step.step-2 {
    display: none;
}

    .form-stepper-section .content-box .form-stepper .form-step.step-2.active-step {
        display: flex;
        opacity: 1;
    }

    .form-stepper-section .content-box .form-stepper .form-step.step-2 .name {
        width: 100%;
    }

    .form-stepper-section .content-box .form-stepper .form-step.step-2 .add-person {
        text-align: right;
        cursor: pointer;
        margin-bottom: 32px;
        margin-left: auto;
    }

        .form-stepper-section
        .content-box
        .form-stepper
        .form-step.step-2
        .add-person
        p {
            display: inline-block;
            font-size: 14px;
            font-weight: 700;
            color: #4092ce;
        }

        .form-stepper-section
        .content-box
        .form-stepper
        .form-step.step-2
        .add-person
        img {
            vertical-align: middle;
            margin-right: 8px;
        }

.form-stepper-section .content-box .form-stepper .form-step.step-3 {
    display: none;
}

    .form-stepper-section .content-box .form-stepper .form-step.step-3.active-step {
        display: flex;
        opacity: 1;
    }

.form-stepper-section .content-box .form-stepper .form-step.step-4 {
    display: none;
}

    .form-stepper-section .content-box .form-stepper .form-step.step-4.active-step {
        display: flex;
        opacity: 1;
    }

    .form-stepper-section .content-box .form-stepper .form-step.step-4 .period {
        border: 1px solid #eff0f6;
        padding: 16px 24px;
        border-radius: 8px;
        width: 278px;
        user-select: none;
        cursor: pointer;
    }

        .form-stepper-section
        .content-box
        .form-stepper
        .form-step.step-4
        .period.selected {
            border-color: #4092ce;
        }

        .form-stepper-section .content-box .form-stepper .form-step.step-4 .period h3 {
            font-weight: 700;
            font-size: 18px;
            text-transform: uppercase;
            color: #4e8804;
            color: #172b60;
        }

        .form-stepper-section .content-box .form-stepper .form-step.step-4 .period p {
            font-size: 16px;
            line-height: 24px;
            color: #4b5e8d;
            margin-top: 16px;
        }

        .form-stepper-section
        .content-box
        .form-stepper
        .form-step.step-4
        .period
        .period-footer {
            margin-top: 16px;
        }

            .form-stepper-section
            .content-box
            .form-stepper
            .form-step.step-4
            .period
            .period-footer
            img {
                vertical-align: middle;
            }

            .form-stepper-section
            .content-box
            .form-stepper
            .form-step.step-4
            .period
            .period-footer
            p {
                display: inline-block;
                color: #4e8804;
                margin-left: 8px;
                font-size: 12px;
            }

        .form-stepper-section
        .content-box
        .form-stepper
        .form-step.step-4
        .period
        input {
            display: none;
        }

    .form-stepper-section .content-box .form-stepper .form-step.step-4 .terms {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
        flex-wrap: nowrap;
        width: 100%;
        margin-top: 40px;
        gap: 16px;
    }

        .form-stepper-section
        .content-box
        .form-stepper
        .form-step.step-4
        .terms
        input {
            min-width: 16px;
            min-height: 16px;
            cursor: pointer;
            -webkit-appearance: none;
            border: 1px solid #3f4453;
            border-radius: 4px;
        }

            .form-stepper-section
            .content-box
            .form-stepper
            .form-step.step-4
            .terms
            input:checked {
                background-color: #4092ce;
                background-image: url("/media/icons/apply-modal/check.svg");
                background-repeat: no-repeat;
                background-position: center center;
                background-size: 70%;
                border-color: transparent !important;
            }

        .form-stepper-section .content-box .form-stepper .form-step.step-4 .terms span {
            color: #4b5e8d;
            font-size: 12px;
        }

            .form-stepper-section
            .content-box
            .form-stepper
            .form-step.step-4
            .terms
            span
            a {
                color: #4092ce;
            }

@media screen and (max-width: 728px) {
    .form-stepper-section {
        padding: 0;
        margin: 40px 0;
    }

        .form-stepper-section .content-box {
            max-width: 294px;
        }

            .form-stepper-section .content-box .form-progress {
                width: 100%;
                margin: 80px 0 0;
            }

                .form-stepper-section .content-box .form-progress .progress-count,
                .form-stepper-section .content-box .form-progress .progress-name {
                    display: block;
                }

                .form-stepper-section .content-box .form-progress .progress-count {
                    font-size: 12px;
                    color: #787c87;
                }

                .form-stepper-section .content-box .form-progress .progress-name {
                    font-weight: 700;
                    color: #4092ce;
                    font-size: 14px;
                    margin: 8px 0;
                }

                .form-stepper-section
                .content-box
                .form-progress
                progress::-webkit-progress-bar {
                    height: 4px;
                }

                .form-stepper-section .content-box .form-progress .progress-item {
                    display: none !important;
                }

            .form-stepper-section .content-box .form-stepper {
                margin-top: 40px;
            }

                .form-stepper-section .content-box .form-stepper .form-step label {
                    width: 100%;
                }

                .form-stepper-section .content-box .form-stepper .form-step .add-person {
                    display: none !important;
                }

                .form-stepper-section .content-box .form-stepper .form-step .form-buttons {
                    margin-top: 40px;
                    width: 100%;
                    justify-content: center !important;
                }

                    .form-stepper-section
                    .content-box
                    .form-stepper
                    .form-step
                    .form-buttons
                    .previous {
                        display: none;
                    }
}

.search {
    font-family: "Open Sans";
}

    .search .search-title {
        font-size: 72px;
        line-height: 82px;
        color: #172b60;
    }

    .search .search-form {
        display: flex;
        flex-wrap: wrap;
        padding: 24px 40px;
        justify-content: space-between;
        background-color: #f3f7ff;
        margin-top: 24px;
        gap: 12px;
        border-radius: 8px;
    }

        .search .search-form .input-label {
            width: 464px;
            height: 86px;
        }

            .search .search-form .input-label div {
                position: relative;
            }

            .search .search-form .input-label .input-icon {
                position: absolute;
                left: 10px;
                top: 50%;
                transform: translateY(-50%);
                width: 16px;
                height: 16px;
                background-image: url("/media/icons/search/search.svg");
            }

            .search .search-form .input-label:nth-child(2) {
                width: 244px;
            }

            .search .search-form .input-label .label,
            .search .search-results .input-label .label {
                height: 18px;
                margin-bottom: 8px;
                color: #172b60;
                font-weight: 600;
                font-size: 14px;
            }

            .search .search-form .input-label input,
            .search .search-results .input-label select {
                width: 100%;
                height: 40px;
                border: 1px solid #aeb0b7;
                border-radius: 8px;
                padding: 10px 16px;
                font-size: 14px;
                font-weight: 400;
                outline: none;
            }

            .search .search-form .input-label:first-child input {
                padding-left: 32px;
            }

        .search .search-form .submit,
        .search .search-form .clear {
            appearance: none;
            height: 48px;
            margin-top: 18px;
            font-family: "Open Sans";
            min-width: 178px;
            cursor: pointer;
            text-align: center;
        }

    .search .primary-button {
        display: inline-block;
        text-decoration: none;
        color: #ffffff;
        border: none;
        user-select: none;
        font-weight: 700;
        font-size: 14px;
        padding: 12px 32px;
        background: linear-gradient(180deg, #1272b7 0%, #43a0e4 100%);
        border-radius: 100px;
        width: fit-content;
    }

    .search .secondary-button {
        display: inline-block;
        text-decoration: none;
        color: #4092ce;
        font-weight: 700;
        font-size: 14px;
        padding: 12px 32px;
        border: 2px solid #4092ce;
        border-radius: 100px;
        width: fit-content;
        background-color: transparent;
    }

        .search .secondary-button:hover,
        .search .primary-button:hover {
            background: #4b5e8d;
            border-color: transparent;
            color: #fff;
        }

        .search .secondary-button:active,
        .search .primary-button:active {
            background: #6d89ce;
            border-color: transparent;
            color: #fff;
        }

@media screen and (max-width: 728px) {
    .search .container {
        max-width: 294px;
    }

    .search .search-title {
        font-size: 32px;
        line-height: 42px;
    }

    .search .search-form {
        padding: 12px;
    }

        .search .search-form .input-label:nth-child(1) .label {
            display: none;
        }

        .search .search-form .input-label:nth-child(2) {
            width: 100%;
        }

        .search .search-form .input-label {
            height: auto;
        }

    .search .primary-button,
    .search .secondary-button {
        display: none;
    }
}

.search .search-results {
    margin-top: 32px;
    padding-bottom: 80px;
}

    .search .search-results .results-header {
        padding-bottom: 24px;
        margin-bottom: 24px;
        border-bottom: 1px solid #d6d7db;
    }

    .search .search-results .results-title {
        font-size: 24px;
        font-weight: 700;
        color: #172b60;
    }

    .search .search-results .results-count {
        font-size: 16px;
        color: #172b60;
    }

    .search .search-results .filters {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }

    .search .search-results .input-label {
        width: 274px;
    }

        .search .search-results .input-label select {
            appearance: none;
            width: 100%;
            padding-right: 28px;
            background-image: url("/media/icons/apply-modal/chevron-down.svg");
            background-repeat: no-repeat;
            background-position: 95% center;
        }

.search .date {
    width: 100%;
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid #aeb0b7;
    outline: 0;
    cursor: pointer;
    font-family: "Open Sans";
}

.search input[type="date"]::-webkit-inner-spin-button,
.search input[type="date"]::-webkit-calendar-picker-indicator {
    background-image: url(/media/icons/workshops-section/calendar.svg);
    background-repeat: no-repeat;
    background-position: 95% center;
    cursor: pointer;
}

.search .search-results .results-body {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

    .search .search-results .results-body .result {
        text-decoration: none;
        color: #172b60;
    }

        .search .search-results .results-body .result .result-date,
        .search .search-results .results-body .result .result-description {
            font-size: 16px;
            display: -webkit-box;
            max-width: inherit;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .search .search-results .results-body .result .result-description {
            margin-top: 16px;
        }

        .search .search-results .results-body .result .result-title {
            font-size: 24px;
            font-weight: 700;
            color: #4092ce;
            margin-top: 8px;
            display: -webkit-box;
            max-width: inherit;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-decoration: none;
        }

            .search .search-results .results-body .result .result-title:hover {
                color: #4b5e8d;
            }

@media screen and (max-width: 728px) {
    .search .search-results {
        margin-top: 24px;
    }

        .search .search-results .results-body .result .result-date {
            font-size: 12px;
        }

        .search .search-results .results-title {
            font-size: 18px;
        }

        .search .search-results .filters {
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
            margin-top: 8px;
        }

        .search .search-results .input-label {
            width: 100%;
        }
}

.not-found {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding-top: 120px;
    padding-bottom: 120px;
}

    .not-found h1 {
        font-family: "Open Sans", sans-serif;
        line-height: 150px;
        letter-spacing: 0px;
        color: #172b60;
        margin-top: 24px;
        font-weight: 800;
        font-size: 150px;
    }

    .not-found h2 {
        font-family: "Open Sans", sans-serif;
        line-height: 72px;
        letter-spacing: 0px;
        color: #172b60;
        margin-top: 24px;
        font-weight: 800;
        font-size: 48px;
        text-align: center;
    }

    .not-found p {
        font-size: 16px;
        line-height: 24px;
        color: #4b5e8d;
        margin-top: 8px;
        font-family: "Open Sans", sans-serif;
        text-align: center;
    }

    .not-found .button-box .primary-button {
        display: inline-block;
        text-decoration: none;
        color: #ffffff;
    }

        .not-found .button-box .primary-button p {
            font-family: "Open Sans";
            user-select: none;
            color: white;
            font-weight: 700;
            font-size: 14px;
            padding: 12px 28px;
            background: linear-gradient(180deg, #1272b7 0%, #43a0e4 100%);
            border-radius: 100px;
            width: fit-content;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        .not-found .button-box .primary-button:hover p {
            background: #4b5e8d;
            border-color: transparent;
            color: #fff;
        }

