/*=======================================
            Banner Carousel
========================================*/

.banner-carousel {

    .contents {
        position: relative;
    }

    .carousel {
        margin-bottom: 0;

        .slide {
            padding: 80px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
            border-radius: 30px;
            background-color: var(--darkblue);
            overflow: hidden;
            height: inherit !important;

            @media (max-width: 1000px) {
                padding: 60px;
            }

            @media (max-width: 600px) {
                padding: 50px 30px;
            }

            @media (max-width: 450px) {
                padding: 50px 20px;
            }

            .overlay {
                background-color: var(--darkblue);
                mix-blend-mode: overlay;
                inset: 0;
                position: absolute;
                z-index: 4;
            }

            .inner {
                position: relative;
                z-index: 5;
            }

            .title {
                font-size: 72px;
                line-height: 1;
                font-weight: 700;
                text-shadow: 4px 4px 15px rgba(0, 0, 0, 0.25);
                max-width: 900px;
                margin-bottom: 10px;

                @media (max-width: 1200px) {
                    margin-bottom: 30px;
                    font-size: 60px;
                }

                @media (max-width: 800px) {
                    font-size: 50px;
                }

                @media (max-width: 600px) {
                    font-size: 40px;
                    margin-bottom: 40px;
                }

            }

            .info {
                width: 52%;
                margin: 0 0 0 auto;

                @media (max-width: 1200px) {
                    width: 100%;
                }

                &.no-sub {
                    margin: 30px 0 0 0;
                    width: 100%;
                }

                .subtitle {
                    font-size: 30px;
                    line-height: 1.2;
                    font-weight: 600;
                    text-shadow: 4px 4px 15px rgba(0, 0, 0, 0.25);
                    margin-bottom: 25px;

                    @media (max-width: 1200px) {
                        margin-bottom: 40px;
                        font-size: 26px;
                    }

                    @media (max-width: 800px) {
                        font-size: 24px;
                    }

                    @media (max-width: 600px) {
                        font-size: 22px;
                    }

                }

                .buttons {
                    justify-content: flex-start;

                    .button {
                        margin-right: 15px;
                        margin-bottom: 15px;
                    }

                }

            }

            /* Video */

            .bg-video {
                filter: grayscale();

                position: absolute;
                top: 50%;
                left: 50%;
                min-width: 100%;
                min-height: 100%;
                transform: translate(-50%, -50%);
                object-fit: cover;
                z-index: 0;
                overflow: hidden;
                border-radius: 30px;

                /* video {
                    width: 100%;
                    height: auto;
                } */

            }

        }

    }

    .slick-list {
        z-index: 2;
    }

    .slick-track {
        display: flex !important;

        &:after {
            content: "";
            background-color: var(--red);
            width: 100%;
            position: absolute;
            bottom: 0;
            height: 30px;
            z-index: -1;
        }

    }

    .slick-dots {
        background-color: var(--red);
        padding: 40px 130px 40px 20px;
        z-index: 1;
        position: static;
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;
        flex-wrap: nowrap;
        box-shadow: 4px 4px 15px 0 rgba(0, 0, 0, 0.25);
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;

        @media (max-width: 600px) {
            padding: 25px 110px 25px 30px;
        }

        li {
            flex-grow: 1;
            height: 5px;
            margin: 0;
            background-color: rgba(255, 255, 255, 0.4);

            button {
                width: 100%;
                height: 5px;
                border-radius: 3px;
                padding: 0;

                &:before {
                    display: none;
                }

            }

            &.slick-active {

                button {
                    background: #fff !important;
                }

            }

        }

    }

    .arrows {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-content: center;
        width: 80px;
        position: absolute;
        right: 20px;
        bottom: 22px;
        z-index: 50;

        @media (max-width: 600px) {
            width: 55px;
            right: 30px;
            bottom: 15px;
        }

        .arrow {
            width: 25px;
            height: auto;
            cursor: pointer;

            @media (max-width: 600px) {
                width: 16px;
            }

            &.prev {
                transform: rotate(180deg);
            }

        }

    }

}





/*=======================================
            Stats Carousel
========================================*/

.stats-carousel {

    .container {
        width: 100%;
        padding: 0;
        padding-left: calc((100vw - 1440px) / 2);

        @media (min-width: 1600px) {
            width: 1600px;
            margin: 0 auto;
            padding: 0 30px;
        }

        @media (max-width: 1300px) {
            width: 100%;
        }

    }

    .contents {
        padding-left: 30px;
        align-items: center;

        @media (max-width: 450px) {
            padding-left: 15px;
        }

        .left {
            width: 460px;

            @media (max-width: 1400px) {
                width: 400px;
            }

            @media (max-width: 1300px) {
                width: 100%;
                padding-right: 30px;
                margin-bottom: 30px;
            }

            @media (max-width: 450px) {
                padding-right: 15px;
            }

            .title {
                font-size: 30px;
                line-height: 1.2;
                color: #fff;
                font-weight: 600;
                text-shadow: 4px 4px 15px rgba(0, 0, 0, 0.25);
                margin-bottom: 25px;

                @media (max-width: 1400px) {
                    font-size: 26px;
                }

                @media (max-width: 1300px) {
                    max-width: 800px;
                }

            }

        }

        .carousel-wrap {
            width: 900px;

            @media (max-width: 1600px) {
                width: 875px;
            }

            @media (max-width: 1400px) {
                width: 850px;
            }

            @media (max-width: 1300px) {
                width: 100%;
            }

            .arrows {
                justify-content: flex-end;
                align-items: center;
                margin-bottom: 15px;
                margin-right: 20px;

                @media (max-width: 600px) {
                    display: none;
                }

                .arrow {
                    width: 35px;
                    height: auto;
                    cursor: pointer;

                    &.prev {
                        margin-right: 12px;
                        transform: rotate(180deg);
                    }

                }

            }


            .slick-list {
                padding-right: 45%;

                @media (max-width: 1300px) {
                    padding-right: 25%;
                }

                @media (max-width: 1100px) {
                    padding-right: 15%;
                }

                @media (max-width: 1000px) {
                    padding-right: 10%;
                }

                @media (max-width: 900px) {
                    padding-right: 40%;
                }

                @media (max-width: 650px) {
                    padding-right: 20%;
                }

                @media (max-width: 650px) {
                    padding-right: 10%;
                }

            }

            .card {
                background-color: #fff;
                box-shadow: 4px 4px 15px 0 rgba(0, 0, 0, 0.25);
                width: 450px;
                aspect-ratio: 1/1;
                border-radius: 30px;
                padding: 50px;
                margin: 0 20px 0 0;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                opacity: 0.5;
                transition: all 0.3s ease-in-out;

                &.slick-active {
                    opacity: 1;
                }

                @media (max-width: 500px) {
                    padding: 30px;
                }

                .icon {
                    height: 90px;
                    width: auto;

                    @media (max-width: 500px) {
                        height: 70px;
                    }

                    img {
                        height: 100%;
                        width: auto;
                    }

                }

                .val {
                    font-size: 100px;
                    color: var(--red);
                    font-weight: 600;
                    line-height: 1;
                    margin-bottom: 25px;

                    @media (max-width: 1300px) {
                        font-size: 80px;
                    }

                    @media (max-width: 700px) {
                        font-size: 70px;
                    }

                    @media (max-width: 500px) {
                        margin-bottom: 15px;
                    }

                }

                .sub {
                    font-size: 30px;
                    line-height: 1.2;
                    font-weight: 600;

                    @media (max-width: 500px) {
                        font-size: 22px;
                    }

                }

            }

        }

    }

}






/*=======================================
            Four Technologies
========================================*/

.four-tech {

    .top {
        justify-content: space-between;
        align-items: center;
        margin-bottom: 25px;

        .title {
            font-size: 48px;
            font-weight: 600;
            line-height: 1.1;

            @media (max-width: 1200px) {
                width: 100%;
                margin-bottom: 20px;
            }

            @media (max-width: 800px) {
                font-size: 40px;
            }

            @media (max-width: 600px) {
                font-size: 30px;
            }

        }

        .link {
            justify-content: flex-end;
            align-items: center;

            a {
                color: #fff;
                font-size: 18px;
                line-height: 1;
                font-weight: 400;
                text-transform: uppercase;
                margin-right: 12px;
                border-bottom: 2px solid var(--darkblue);
                text-decoration: none;
                padding-bottom: 3px;

                &:hover {
                    border-color: var(--red);
                }

                @media (max-width: 600px) {
                    font-size: 16px;
                    margin-right: 10px;
                }

            }

            svg {
                width: 10px;

                @media (max-width: 600px) {
                    width: 8px;
                }

            }

        }

    }

    /* Cards */

    .cards {
        justify-content: flex-start;
        align-items: unset;
        margin: 0 -12px;

        &.has-desc {

            @media (max-width: 1200px) {

                .card {
                    width: calc(50% - 24px);
                    margin-bottom: 24px;
                }

            }

            @media (max-width: 600px) {
                margin: 0;

                .card {
                    width: calc(100%);
                    margin: 0 0 24px 0;
                }

            }

        }

        .card {
            width: calc(25% - 24px);
            margin: 0 12px;
            background-color: #fff;
            border-radius: 30px;
            overflow: hidden;
            position: relative;
            box-shadow: 4px 4px 15px 0 rgba(0, 0, 0, 0.25);
            display: flex;
            flex-direction: column;

            &:hover {

                .bottom .link-wrap svg path {
                    fill: var(--red);
                }

                .bottom.has-description .arrow svg path {
                    fill: var(--red);
                }

            }

            @media (max-width: 1000px) {
                width: calc(50% - 24px);
                margin-bottom: 24px;
            }

            @media (max-width: 600px) {
                width: calc(50% - 14px);
                margin: 0 7px 25px;
                border-radius: 30px 30px 25px 25px;
            }

            .image {
                box-shadow: 4px 4px 15px 0 rgba(0, 0, 0, 0.25);
                border-radius: 30px;

                img {
                    border-radius: 30px;
                }

            }

            .bottom {
                padding: 20px;

                @media (max-width: 500px) {
                    padding: 15px;
                }

                .link-wrap {
                    color: var(--darkblue);
                    align-items: center;
                    justify-content: space-between;

                    span {
                        font-size: 20px;
                        line-height: 1;
                        font-weight: 400;
                        width: calc(100% - 30px);
                        padding-right: 15px;

                        @media (max-width: 1200px) {
                            font-size: 18px;
                        }

                        @media (max-width: 500px) {
                            font-size: 16px;
                        }

                    }

                    svg {
                        width: 30px;
                        height: auto;

                        @media (max-width: 500px) {
                            width: 20px;
                        }

                        path {
                            fill: var(--darkblue);
                            transition: all 0.3s ease-in-out;
                        }

                    }

                }

                /* Has Description */

                &.has-description {
                    height: 100%;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;

                    h3 {
                        font-size: 30px;
                        line-height: 1.2;
                        margin-bottom: 15px;
                        font-weight: 600;

                        @media (max-width: 1000px) {
                            font-size: 25px;
                        }

                    }

                    .desc {
                        font-size: 16px;
                        line-height: 1.5;
                        font-weight: 400;

                        /* @media (max-width: 1000px) {
                            font-size: 14px;
                        } */

                    }

                    .arrow {
                        margin-top: 20px;

                        svg {
                            width: 30px;
                            height: auto;
                            margin-left: auto;

                            path {
                                fill: var(--darkblue);
                                transition: all 0.3s ease-in-out;
                            }

                        }

                    }

                }

            }

        }

    }

}






/*=======================================
            Image Banner
========================================*/

.image-banner {

    .banner-card {
        border-radius: 30px;
        overflow: hidden;
        padding: 65px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;

        @media (max-width: 800px) {
            padding: 50px;
        }

        @media (max-width: 600px) {
            padding: 40px 30px;
        }

        .overlay {
            position: absolute;
            inset: 0;
            background-color: rgba(0, 0, 0, 0.25);
            z-index: 1;
        }

        .inner {
            max-width: 670px;
            margin-top: 200px;
            position: relative;
            z-index: 2;

            .title {
                font-size: 65px;
                line-height: 1.1;
                font-weight: 600;
                margin-bottom: 25px;

                @media (max-width: 800px) {
                    font-size: 50px;
                }

                @media (max-width: 600px) {
                    font-size: 40px;
                }

            }

            .description {
                font-size: 18px;
                line-height: 1.5;
                font-weight: 400;
                margin-bottom: 30px;
                text-shadow: 4px 4px 15px rgba(0, 0, 0, 0.25);

                @media (max-width: 600px) {
                    font-size: 16px;
                }

            }

        }

    }

}






/*=======================================
            Newsletter
========================================*/

.cta-banner {
    background-color: var(--red);
    padding: 50px 0;

    @media (max-width: 600px) {
        padding: 40px 0;
    }

    @media (max-width: 450px) {
        padding: 30px 0;
    }

    .contents {
        justify-content: flex-start;
        align-items: center;

        @media (max-width: 1200px) {
            flex-direction: column;
            align-items: center;
        }

        h2 {
            color: #fff;
            font-size: 30px;
            font-weight: 600;
            line-height: 1.2;
            margin-right: 30px;

            @media (max-width: 1200px) {
                margin: 0 0 20px;
                text-align: center;
            }

            @media (max-width: 600px) {
                font-size: 25px;
            }

            @media (max-width: 450px) {
                font-size: 22px;
            }

        }

        @media (max-width: 600px) {

            .button {
                min-width: 165px;
            }

        }

    }

}






/*=======================================
            Page Banner
========================================*/

.page-banner {

    .wrap {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 90px;
        border-radius: 30px;
        position: relative;
        overflow: hidden;
        background-color: var(--darkblue);
        box-shadow: 4px 4px 15px 0 rgba(0, 0, 0, 0.25);
        z-index: 2;

        @media (max-width: 1000px) {
            padding: 50px;
        }

        @media (max-width: 600px) {
            padding: 40px 30px;
        }

        .overlay {
            position: absolute;
            inset: 0;
            z-index: 3;
            background-color: #0F1E82;
            mix-blend-mode: overlay;
        }

        .inner {
            position: relative;
            z-index: 4;
            max-width: 910px;
        }

        .breadcrumb {
            background-color: var(--red);
            color: #fff;
            font-size: 14px;
            font-weight: 500;
            display: inline-block;
            padding: 8px 12px;
            text-transform: uppercase;
            margin-bottom: 20px;

            @media (max-width: 600px) {
                font-size: 12px;
            }

            .sep {
                padding: 0 5px;
            }

            a {
                color: #fff;
            }

        }

        h1,
        .title {
            font-size: 72px;
            font-weight: 700;
            line-height: 1;
            text-shadow: 4px 4px 15px rgba(0, 0, 0, 0.25);
            margin-bottom: 35px;

            @media (max-width: 1200px) {
                font-size: 65px;
            }

            @media (max-width: 1000px) {
                font-size: 50px;
                margin-bottom: 30px;
            }

            @media (max-width: 600px) {
                font-size: 40px;
                margin-bottom: 25px;
            }

            @media (max-width: 450px) {
                font-size: 35px;
            }

        }

        .sub {
            font-size: 30px;
            line-height: 1.2;
            font-weight: 600;
            text-shadow: 4px 4px 15px rgba(0, 0, 0, 0.25);

            @media (max-width: 1000px) {
                font-size: 25px;
            }

            @media (max-width: 600px) {
                font-size: 20px;
            }

            @media (max-width: 450px) {
                font-size: 18px;
            }

        }

        .back-link {
            position: absolute;
            bottom: 30px;
            left: 90px;
            z-index: 10;

            @media (max-width: 1000px) {
                left: 50px;
            }

            @media (max-width: 600px) {
                left: 30px;
            }

            a {
                color: #fff;
                text-decoration: none;
                font-size: 14px;
                font-weight: 500;
                cursor: pointer;

                span {
                    position: relative;
                    top: -1px;
                }

            }

        }

    }

    .redbar {
        background-color: var(--red);
        height: 55px;
        width: 100%;
        border-radius: 0 0 30px 30px;
        position: relative;
        z-index: 0;
        top: -25px;
        box-shadow: 4px 4px 15px 0 rgba(0, 0, 0, 0.25);

        @media (max-width: 600px) {
            height: 45px;
            top: -25px;
        }

    }

}






/*=======================================
            Two Col Text
========================================*/

.two-col-text {

    .contents {
        align-items: flex-start;

        .col {
            width: calc(50% - 40px);
            font-size: 18px;
            line-height: 1.5;
            font-weight: 400;

            @media (max-width: 1000px) {
                width: 100%;
                margin-bottom: 30px;

                &:last-of-type {
                    margin-bottom: 0;
                }

            }

            @media (max-width: 450px) {
                font-size: 18px;
            }

            :is(h1, h2, h3, h4, h5, h6) {
                font-size: 24px;
                line-height: 1.4;
                font-weight: 600;

                @media (max-width: 600px) {
                    font-size: 22px;
                }

                @media (max-width: 450px) {
                    font-size: 20px;
                }

            }

        }

    }

}






/*=======================================
            News Block
========================================*/

.news-block {
    padding: 100px 0;

    .top {
        margin-bottom: 30px;

        .title {
            max-width: 420px;
            font-size: 30px;
            line-height: 1.2;
            color: #fff;
            font-weight: 600;
        }

    }

    .grid {
        display: grid;
        grid-template-columns: repeat(3, auto);
        grid-gap: 30px;

        @media (max-width: 1300px) {
            grid-template-columns: repeat(2, auto);
        }

        @media (max-width: 700px) {
            grid-template-columns: repeat(1, auto);
        }

        .card {

            &.featured {
                grid-row: 1 / 3;

                @media (max-width: 1000px) {
                    grid-column: 1 / 3;
                }

                @media (max-width: 1000px) {
                    grid-column: unset;
                }

            }

            @media (max-width: 700px) {

                &:nth-last-of-type(-n+2) {
                    display: none;
                }

            }

        }

        /* Article - Full */

        article.full {
            border-radius: 30px;
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;

            &:hover {

                .arrow svg path {
                    fill: var(--red);
                }

            }

            .image {
                border-radius: 30px;
                position: relative;
                z-index: 3;

                img {
                    border-radius: 30px;
                }

                .cat {
                    background-color: var(--red);
                    color: #fff;
                    font-size: 14px;
                    line-height: 1;
                    font-weight: 500;
                    display: inline-block;
                    padding: 4px 7px;
                    position: absolute;
                    bottom: -11px;
                    left: 30px;
                    font-weight: 600;
                    z-index: 5;
                }

            }

            .main {
                padding: 30px 20px 20px 30px;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                flex-grow: 1;
                color: var(--darkblue);
                background-color: #fff;
                position: relative;
                z-index: 0;

                @media (max-width: 600px) {
                    padding: 30px 20px 20px 25px;
                }

                &:before {
                    content: "";
                    background-color: #fff;
                    position: absolute;
                    z-index: -1;
                    width: 100%;
                    height: 50px;
                    top: -50px;
                    left: 0;
                }

                .wrap {
                    padding-right: 20px;

                    @media (max-width: 600px) {
                        padding-right: 10px;
                    }

                }

                h3 {
                    font-size: 30px;
                    font-weight: 600;
                    line-height: 1.2;
                    margin-bottom: 15px;

                    @media (max-width: 600px) {
                        font-size: 22px;
                    }

                }

                .date {
                    font-size: 16px;
                    font-weight: 400;
                    margin-bottom: 15px;
                }

                .excerpt {
                    font-size: 16px;
                    font-weight: 400;
                    line-height: 1.6;
                }

            }

            .arrow {
                margin-top: 20px;

                svg {
                    width: 35px;
                    height: auto;
                    margin-left: auto;

                    path {
                        fill: var(--darkblue);
                        transition: all 0.3s ease-in-out;
                    }

                }

            }

        }

        /* Article - Small */

        article.small {
            background-color: #fff;
            border-radius: 30px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 100%;
            padding: 30px 20px 20px 30px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;

            &:hover {

                .arrow svg path {
                    fill: var(--red);
                }

            }

            .wrap {
                padding-right: 10px;
            }

            .meta {
                justify-content: flex-start;
                align-items: center;
                margin-bottom: 15px;

                .cat {
                    background-color: var(--red);
                    color: #fff;
                    font-size: 14px;
                    line-height: 1;
                    font-weight: 600;
                    padding: 4px 7px;
                    margin-right: 7px;
                    display: inline-block;
                }

                .date {
                    font-size: 16px;
                    line-height: 1;
                    font-weight: 400;
                }

            }

            h3 {
                font-size: 30px;
                line-height: 1.2;
                font-weight: 600;
                margin-bottom: 10px;

                @media (max-width: 800px) {
                    font-size: 25px;
                }

                @media (max-width: 600px) {
                    font-size: 22px;
                }

            }

            .excerpt {
                font-size: 16px;
                line-height: 1.5;
                font-weight: 400;

                @media (max-width: 800px) {
                    display: none;
                }

            }

            .arrow {
                margin-top: 20px;

                @media (max-width: 600px) {
                    margin-top: 0;
                }

                svg {
                    width: 35px;
                    height: auto;
                    margin-left: auto;

                    path {
                        fill: var(--darkblue);
                        transition: all 0.3s ease-in-out;
                    }

                }

            }

        }

    }

}






/*=======================================
            Checklist
========================================*/

.checklist {

    .contents {
        justify-content: flex-start;

        .info {
            width: 400px;

            @media (max-width: 1000px) {
                width: 100%;
                margin-bottom: 30px;
            }

            .title {
                font-size: 48px;
                font-weight: 600;
                line-height: 1.1;
                margin-bottom: 30px;

                @media (max-width: 800px) {
                    font-size: 40px;
                    margin-bottom: 20px;
                }

                @media (max-width: 600px) {
                    font-size: 30px;
                }

                &.medium {
                    font-size: 30px;
                    line-height: 1.2;

                    @media (max-width: 600px) {
                        font-size: 25px;
                    }

                }

            }

            .desc {
                font-size: 18px;
                font-weight: 400;
                line-height: 1.5;

                @media (max-width: 600px) {
                    font-size: 16px;
                }

            }

        }

        .items {
            width: calc(100% - 400px);
            padding-left: 70px;

            @media (max-width: 1000px) {
                width: 100%;
                padding-left: 0;
            }

            .item {
                justify-content: space-between;
                align-items: unset;
                border-radius: 30px;
                overflow: hidden;
                color: var(--darkblue);
                margin-bottom: 15px;

                .icon {
                    background-color: var(--red);
                    width: 90px;
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    align-items: center;

                    @media (max-width: 600px) {
                        width: 60px;
                    }

                    svg {
                        width: 35px;
                        height: auto;
                        margin-left: 5px;

                        @media (max-width: 600px) {
                            width: 25px;
                        }

                    }

                }

                .text {
                    padding: 25px 50px 25px 20px;
                    width: calc(100% - 90px);
                    background-color: #fff;

                    @media (max-width: 600px) {
                        width: calc(100% - 60px);
                        padding: 20px 50px 20px 20px;
                    }

                    p {
                        font-size: 18px;
                        font-weight: 400;
                        line-height: 1.3;
                        margin-bottom: 0;

                        @media (max-width: 600px) {
                            font-size: 16px;
                        }

                        a {
                            color: var(--red);
                        }

                    }

                }

            }

        }

    }

}






/*=======================================
            Checklist (Alt)
========================================*/

.checklist-alt {

    @media (max-width: 600px) {

        .container {
            padding: 0 10px;
        }

    }

    .inner {
        background-color: var(--blue);
        padding: 100px 80px;
        border-radius: 30px;

        @media (max-width: 1200px) {
            padding: 70px 50px;
        }

        @media (max-width: 600px) {
            padding: 50px 40px;
        }

        @media (max-width: 500px) {
            padding: 30px;
        }

        @media (max-width: 450px) {
            padding: 30px 20px;
        }

    }

    .top {
        margin-bottom: 50px;

        @media (max-width: 600px) {
            margin-bottom: 30px;
        }

        .title {
            font-size: 30px;
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 20px;
            max-width: 400px;

            @media (max-width: 600px) {
                font-size: 24px;
            }

        }

        .desc {
            font-size: 18px;
            font-weight: 400;
            line-height: 1.5;
            max-width: 960px;

            @media (max-width: 600px) {
                font-size: 16px;
            }

        }

    }

    .items {
        display: grid;
        grid-template-columns: auto auto;
        gap: 15px 35px;

        @media (max-width: 1200px) {
            display: block;
        }

        .item {
            justify-content: space-between;
            align-items: unset;
            border-radius: 30px;
            overflow: hidden;
            color: var(--darkblue);

            @media (max-width: 1200px) {
                margin-bottom: 15px;

                &:last-of-type {
                    margin-bottom: 0;
                }

            }

            .icon {
                background-color: var(--red);
                width: 90px;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;

                @media (max-width: 600px) {
                    width: 60px;
                }

                svg {
                    width: 35px;
                    height: auto;
                    margin-left: 5px;

                    @media (max-width: 600px) {
                        width: 25px;
                    }

                }

            }

            .text {
                padding: 20px 50px 20px 20px;
                width: calc(100% - 90px);
                background-color: #fff;
                display: flex;
                flex-direction: column;
                justify-content: center;

                @media (max-width: 1200px) {
                    padding: 25px 50px 25px 20px;
                }

                @media (max-width: 600px) {
                    width: calc(100% - 60px);
                    padding: 20px 50px 20px 20px;
                }

                p {
                    font-size: 18px;
                    font-weight: 400;
                    line-height: 1.3;
                    margin-bottom: 0;

                    @media (max-width: 600px) {
                        font-size: 16px;
                    }

                }

            }

        }

    }


}






/*=======================================
            Icon Cards
========================================*/

.icon-cards {

    .intro {
        max-width: 1030px;
        color: #fff;
        font-size: 30px;
        font-weight: 600;
        line-height: 1.2;
        margin-bottom: 50px;

        @media (max-width: 600px) {
            font-size: 25px;
        }

    }

    .cards {
        justify-content: flex-start;
        align-items: unset;
        margin: 0 -10px;

        &.two-col {

            .card {
                width: calc(50% - 20px);

                @media (max-width: 1200px) {

                    &:last-of-type {
                        width: calc(50% - 20px);
                        margin-bottom: 20px;
                    }

                }

                @media (max-width: 800px) {
                    width: calc(100% - 20px) !important;
                }

            }

        }

        .card {
            width: calc(100% / 3 - 20px);
            margin: 0 10px 40px;
            background-color: #fff;
            border-radius: 30px;
            padding: 50px 30px;

            @media (max-width: 1200px) {
                width: calc(50% - 20px);
                margin-bottom: 20px;
                padding: 30px;

                &:last-of-type {
                    width: calc(100% - 20px);
                    margin-bottom: 0;
                }

            }

            @media (max-width: 800px) {
                width: calc(100% - 20px);
            }

            @media (max-width: 600px) {
                padding: 30px 20px;
            }

            .top {
                justify-content: flex-start;
                align-items: center;
                margin-bottom: 30px;

                @media (max-width: 1200px) {
                    margin-bottom: 20px;
                }

                .icon {
                    width: 100px;

                    @media (max-width: 600px) {
                        width: 70px;
                    }

                }

                .title {
                    width: calc(100% - 100px);
                    padding-left: 20px;
                    font-size: 30px;
                    line-height: 1.2;
                    font-weight: 600;

                    @media (max-width: 600px) {
                        width: calc(100% - 70px);
                        font-size: 25px;
                    }

                }

            }

            .desc {
                font-size: 16px;
                line-height: 1.5;
                font-weight: 400;

                @media (max-width: 450px) {
                    font-size: 14px;
                }

            }

        }

    }

}






/*=======================================
            Icon & Text
========================================*/

.icon-text {

    .contents {
        align-items: flex-start;

        .icon {
            width: 320px;
            border-radius: 30px;
            overflow: hidden;

            @media (max-width: 450px) {
                width: 100%;
            }

        }

        .text {
            width: calc(100% - 320px);
            padding-left: 45px;
            padding-top: 15px;

            @media (max-width: 800px) {
                width: 100%;
                padding: 0;
                margin-top: 20px;
            }

            .title {
                font-size: 30px;
                line-height: 1.2;
                font-weight: 600;
                margin-bottom: 20px;

                @media (max-width: 1000px) {
                    font-size: 25px;
                }

            }

            .text-container {
                font-size: 24px;
                line-height: 1.5;
                font-weight: 400;

                @media (max-width: 1000px) {
                    font-size: 20px;
                }

            }

        }

    }

}






/*=======================================
            Title & Text
========================================*/

.title-text {

    .contents {
        justify-content: flex-start;

        .title {
            width: 385px;

            @media (max-width: 1000px) {
                width: 100%;
                margin-bottom: 20px;
            }

            h2 {
                font-size: 30px;
                line-height: 1.2;
                font-weight: 600;

                @media (max-width: 600px) {
                    font-size: 25px;
                }

                &.large {
                    font-size: 48px;

                    @media (max-width: 1000px) {
                        font-size: 40px;
                    }

                    @media (max-width: 600px) {
                        font-size: 30px;
                    }

                }

            }

        }

        .text {
            width: calc(100% - 385px);
            padding-left: 100px;

            @media (max-width: 1000px) {
                width: 100%;
                padding-left: 0;
            }

            .text-container {
                font-size: 18px;
                line-height: 1.5;
                font-weight: 400;

                @media (max-width: 600px) {
                    font-size: 16px;
                }

                h3, h4 {
                    font-size: 24px;
                    font-weight: 600;

                    @media (max-width: 600px) {
                        font-size: 20px;
                    }

                }

            }

        }

    }

}






/*=======================================
            Link Cards
========================================*/

.link-cards {

    /* Top */

    .top {
        max-width: 1030px;

        .title {
            font-size: 30px;
            line-height: 1.2;
            font-weight: 600;
            margin-bottom: 50px;

            @media (max-width: 800px) {
                font-size: 25px;
                margin-bottom: 30px;
            }

            @media (max-width: 600px) {
                font-size: 22px;
            }

        }

    }

    /* Cards */

    .cards {
        justify-content: flex-start;
        align-items: unset;
        margin: 0 -7px;

        @media (max-width: 600px) {
            margin: 0;
        }

        &.two-col {

            .card {
                width: calc(50% - 14px);
                margin-bottom: 30px;

                @media (max-width: 600px) {
                    width: calc(100%);
                    margin: 0 0 24px 0;
                }

            }

        }

        .card {
            width: calc(100% / 3 - 14px);
            margin: 0 7px 50px;
            background-color: #fff;
            border-radius: 30px;
            overflow: hidden;
            position: relative;
            box-shadow: 4px 4px 15px 0 rgba(0, 0, 0, 0.25);
            display: flex;
            flex-direction: column;

            @media (max-width: 1200px) {
                width: calc(50% - 14px);
                margin-bottom: 30px;
            }

            @media (max-width: 600px) {
                width: calc(100%);
                margin: 0 0 24px 0;
            }

            &:hover {

                .bottom .arrow svg path {
                    fill: var(--red);
                }

            }

            .image {
                box-shadow: 4px 4px 15px 0 rgba(0, 0, 0, 0.25);
                border-radius: 30px;

                img {
                    border-radius: 30px;
                }

            }

            .bottom {
                padding: 20px;
                height: 100%;
                display: flex;
                flex-direction: column;
                justify-content: space-between;

                @media (max-width: 500px) {
                    padding: 15px;
                }

                h3 {
                    font-size: 30px;
                    line-height: 1.2;
                    margin-bottom: 15px;
                    font-weight: 600;

                    @media (max-width: 1000px) {
                        font-size: 25px;
                    }

                }

                .desc {
                    font-size: 16px;
                    line-height: 1.5;
                    font-weight: 400;
                }

                .arrow {
                    margin-top: 20px;

                    svg {
                        width: 30px;
                        height: auto;
                        margin-left: auto;

                        path {
                            fill: var(--darkblue);
                            transition: all 0.3s ease-in-out;
                        }

                    }

                }

            }

        }

    }

}







/*=======================================
            Team Block
========================================*/

.team-block {

    .top {
        margin-bottom: 30px;

        h2 {
            font-size: 36px;
            line-height: 1.2;
            margin-bottom: 15px;
            font-weight: 600;

            @media (max-width: 800px) {
                font-size: 30px;
            }

        }

        .desc {
            font-size: 18px;
            line-height: 1.5;
            font-weight: 400;
            max-width: 810px;

            @media (max-width: 600px) {
                font-size: 16px;
            }

        }

    }

    .team-grid {
        justify-content: flex-start;
        align-items: unset;
        margin: 0 -10px;

        .card {
            width: calc(25% - 20px);
            margin: 0 10px 50px;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            background-color: #fff;
            border-radius: 30px;
            overflow: hidden;

            @media screen and (max-width: 1100px) {
                width: calc(100% / 3 - 20px);
            }

            @media screen and (max-width: 800px) {
                width: calc(50% - 20px);
                margin: 0 10px 20px;
            }

            @media screen and (max-width: 600px) {
                width: calc(100% - 20px);
            }

            &:hover {

                .info .icon svg path {
                    fill: var(--red);
                }

            }

            .image {
                border-radius: 30px;
                overflow: hidden;
            }

            .info {
                padding: 20px 15px 15px;
                position: relative;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                flex-grow: 1;

                .inner {

                    .name {
                        font-size: 18px;
                        line-height: 1.2;
                        font-weight: 700;
                        margin-bottom: 10px;
                    }

                    .job,
                    .company {
                        font-size: 16px;
                        line-height: 1.5;
                        font-weight: 400;
                    }

                }

                .icon {
                    justify-content: space-between;
                    align-items: center;
                    margin-top: 30px;

                    span {
                        font-size: 16px;
                        line-height: 1;
                    }

                    svg {
                        width: 30px;

                        path {
                            fill: var(--darkblue);
                            transition: all 0.3s ease-in-out;
                        }

                    }

                }

            }

        }

    }

}




/*=======================================
            Person Modal
========================================*/

html.no-scroll {
    overflow-y: hidden;
}

.person-modal {
    position: fixed;
    inset: 0;
    z-index: 999;
    background-color: var(--darkblue);
    display: none;

    .container {
        height: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .contents {
        max-width: 1300px;
        padding: 75px 40px;
        background-color: var(--blue);
        position: relative;
        border-radius: 30px;

        @media screen and (max-height: 1000px) {
            height: calc(100% - 60px);
            overflow-y: auto;
        }

        @media screen and (max-width: 1000px) {
            padding: 40px;
        }

        @media screen and (max-width: 600px) {
            padding: 60px 20px 20px 20px;
        }

        .close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: auto;
            cursor: pointer;

            @media screen and (max-width: 600px) {
                width: 30px;
            }

            svg path {
                fill: var(--darkblue);
            }

        }

        .image {
            width: 250px;
            border-radius: 30px;
            overflow: hidden;

            @media screen and (max-width: 1000px) {
                width: 300px;
                margin-bottom: 20px;
            }

            @media screen and (max-width: 450px) {
                width: 100%;
            }

        }

        .info {
            padding-left: 30px;
            padding-top: 15px;
            width: calc(100% - 250px);

            @media screen and (max-width: 1000px) {
                width: 100%;
                padding-left: 0;
            }

            .name {
                font-size: 48px;
                line-height: 1.1;
                font-weight: 600;
                margin-bottom: 15px;

                @media screen and (max-width: 1000px) {
                    font-size: 40px;
                }

                @media screen and (max-width: 600px) {
                    font-size: 30px;
                }

            }

            .job-title,
            .company {
                font-size: 18px;
                line-height: 1.5;
                font-weight: 400;
                margin-bottom: 5px;

                @media screen and (max-width: 600px) {
                    font-size: 16px;
                }

            }

            .bio {
                font-size: 18px;
                line-height: 1.5;
                font-weight: 400;
                margin-top: 30px;
                padding-right: 80px;

                @media screen and (max-width: 1200px) {
                    padding-right: 0;
                }

                @media screen and (max-width: 600px) {
                    font-size: 16px;
                }

            }

        }

    }

}







/*=======================================
            Partners Block
========================================*/

.partners-block {

    .top {
        margin-bottom: 30px;

        h2 {
            font-size: 36px;
            line-height: 1.2;
            margin-bottom: 30px;
            font-weight: 600;

            @media (max-width: 800px) {
                font-size: 30px;
            }

        }

        .desc {
            column-count: 2;
            column-gap: 50px;
            font-size: 18px;
            line-height: 1.5;
            font-weight: 400;

            @media screen and (max-width: 1000px) {
                column-count: 1;
            }

            @media (max-width: 600px) {
                font-size: 16px;
            }

            p {
                margin-bottom: 30px;

                @media (max-width: 600px) {
                    margin-bottom: 20px;
                }

            }

            h3 {
                font-size: 24px;
                font-weight: 600;
                line-height: 1.4;
                margin-bottom: 30px;

                @media (max-width: 600px) {
                    font-size: 20px;
                    margin-bottom: 20px;
                }

            }

        }

    }

    .partners-grid {
        justify-content: flex-start;
        align-items: unset;
        margin: 0 -10px;

        .card {
            width: calc(100% / 3 - 20px);
            margin: 0 10px 50px;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            background-color: #fafafa;
            border-radius: 30px;
            overflow: hidden;

            @media screen and (max-width: 1000px) {
                width: calc(50% - 20px);
                margin: 0 10px 20px;
            }

            @media screen and (max-width: 600px) {
                width: calc(100% - 20px);
            }

            &:hover {

                .info .icon svg path {
                    fill: var(--red);
                }

            }

            .image {
                border-radius: 30px;
                overflow: hidden;
                aspect-ratio: 9/5;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                background-color: #fff;

                img {
                    width: 60%;
                    height: auto;
                    max-width: 60%;
                    max-height: 80%;
                }

            }

            .info {
                padding: 20px 15px 15px;
                position: relative;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                flex-grow: 1;

                .inner {

                    .name {
                        font-size: 28px;
                        line-height: 1.2;
                        font-weight: 600;

                        @media (max-width: 1200px) {
                            font-size: 24px;
                        }

                        @media (max-width: 800px) {
                            font-size: 20px;
                        }

                        @media (max-width: 600px) {
                            font-size: 24px;
                        }

                    }

                }

                .icon {
                    justify-content: space-between;
                    align-items: center;
                    margin-top: 60px;

                    span {
                        font-size: 16px;
                        line-height: 1;
                    }

                    svg {
                        width: 30px;

                        path {
                            fill: var(--darkblue);
                            transition: all 0.3s ease-in-out;
                        }

                    }

                }

            }

        }

    }

}




/*=======================================
            Person Modal
========================================*/

html.no-scroll {
    overflow-y: hidden;
}

.partner-modal {
    position: fixed;
    inset: 0;
    z-index: 999;
    background-color: var(--darkblue);
    display: none;

    .container {
        height: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .contents {
        max-width: 1300px;
        padding: 75px 40px;
        background-color: var(--blue);
        position: relative;
        border-radius: 30px;

        @media screen and (max-height: 1000px) {
            height: calc(100% - 60px);
            overflow-y: auto;
        }

        @media screen and (max-width: 1000px) {
            padding: 40px;
        }

        @media screen and (max-width: 600px) {
            padding: 60px 20px 20px 20px;
        }

        .close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: auto;
            cursor: pointer;

            @media screen and (max-width: 600px) {
                width: 30px;
            }

            svg path {
                fill: var(--darkblue);
            }

        }

        .image {
            width: 250px;
            aspect-ratio: 1/1;
            border-radius: 30px;
            overflow: hidden;
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            background-color: #fff;

            @media screen and (max-width: 1000px) {
                width: 300px;
                margin-bottom: 20px;
            }

            @media screen and (max-width: 450px) {
                width: 100%;
            }

            img {
                width: 80%;
                height: auto;
                max-width: 80%;
                max-height: 80%;
            }

        }

        .info {
            padding-left: 30px;
            padding-top: 15px;
            width: calc(100% - 250px);

            @media screen and (max-width: 1000px) {
                width: 100%;
                padding-left: 0;
            }

            .name {
                font-size: 48px;
                line-height: 1.1;
                font-weight: 600;
                margin-bottom: 15px;

                @media screen and (max-width: 1000px) {
                    font-size: 40px;
                }

                @media screen and (max-width: 600px) {
                    font-size: 30px;
                }

            }

            .bio {
                font-size: 18px;
                line-height: 1.5;
                font-weight: 400;
                margin-top: 30px;
                padding-right: 80px;

                @media screen and (max-width: 1200px) {
                    padding-right: 0;
                }

                @media screen and (max-width: 600px) {
                    font-size: 16px;
                }

                p {
                    margin-bottom: 30px;
                }

            }

        }

    }

}







/*=======================================
            Text Banner
========================================*/

.text-banner {

    .contents {
        background-color: var(--red);
        padding: 70px;
        border-radius: 15px;

        @media (max-width: 1000px) {
            padding: 40px;
        }

        @media (max-width: 600px) {
            padding: 30px;
        }

        @media (max-width: 450px) {
            padding: 15px;
        }

        .inner {
            background-color: #fff;
            padding: 70px;
            text-align: center;

            @media (max-width: 600px) {
                padding: 50px;
            }

            @media (max-width: 450px) {
                padding: 40px 30px;
            }

            .title {
                font-size: 30px;
                line-height: 1.2;
                font-weight: 600;
                max-width: 1020px;
                margin: 0 auto 50px;

                @media (max-width: 1000px) {
                    font-size: 25px;
                    margin-bottom: 30px;
                }

                @media (max-width: 600px) {
                    font-size: 20px;
                }

            }

            .subtitle {
                max-width: 940px;
                margin: 0 auto;
                font-size: 18px;
                font-weight: 400;
                line-height: 1.6;

                @media (max-width: 600px) {
                    font-size: 16px;
                }

            }

            .button {
                margin-top: 40px;
            }

        }

    }

}







/*=======================================
            Numbered List
========================================*/

.numbered-list {
    background-color: var(--blue);

    .top {
        text-align: center;
        max-width: 630px;
        margin: 0 auto 50px;

        .title {
            font-size: 48px;
            line-height: 1.1;
            font-weight: 600;
            margin-bottom: 15px;

            @media (max-width: 800px) {
                font-size: 40px;
            }

            @media (max-width: 600px) {
                font-size: 30px;
            }

        }

        .subtitle {
            font-size: 18px;
            line-height: 1.5;
            font-weight: 400;

            @media (max-width: 600px) {
                font-size: 16px;
            }

        }

    }

    .list {
        max-width: 920px;
        margin: 0 auto;

        .item {
            border-radius: 30px;
            justify-content: space-between;
            align-items: unset;
            overflow: hidden;
            margin-bottom: 20px;

            .number {
                width: 90px;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                background-color: var(--red);

                @media (max-width: 600px) {
                    width: 70px;
                }

                .num-wrap {
                    background-color: rgba(255, 255, 255, 0.4);
                    width: 33px;
                    height: 33px;
                    border-radius: 100%;
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    align-items: center;

                    @media (max-width: 600px) {
                        width: 30px;
                        height: 30px;
                        margin-left: 2px;
                    }

                    span {
                        color: #fff;
                        font-size: 24px;
                        line-height: 1;
                        font-weight: 600;

                        @media (max-width: 600px) {
                            font-size: 18px;
                        }

                    }

                }

            }

            .main {
                width: calc(100% - 90px);
                background-color: #fff;
                padding: 30px 50px 30px 20px;
                font-size: 24px;
                line-height: 1.4;
                font-weight: 600;

                @media (max-width: 800px) {
                    font-size: 20px;
                }

                @media (max-width: 600px) {
                    font-size: 18px;
                    padding: 20px;
                    width: calc(100% - 70px);
                    line-height: 1.2;
                }

            }

        }

    }

}







/*=======================================
                Stats Grid
========================================*/

.stats-grid {

    .contents {
        justify-content: space-between;
        align-items: unset;
        margin: 0 -8px;

        .card {
            width: calc(100% / 3 - 16px);
            margin: 0 8px 24px;
            background-color: #fff;
            box-shadow: 4px 4px 15px 0 rgba(0, 0, 0, 0.25);
            aspect-ratio: 1/1;
            border-radius: 30px;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: all 0.3s ease-in-out;

            &.no-icon {
                aspect-ratio: unset;

                @media (max-width: 700px) {

                    .val {
                        margin-top: 0;
                    }

                }

            }

            @media (max-width: 1100px) {
                width: calc(50% - 16px);
            }

            @media (max-width: 700px) {
                width: calc(100% - 16px);
                aspect-ratio: auto;
                padding: 30px;
            }

            .icon {
                height: 90px;
                width: auto;

                @media (max-width: 500px) {
                    height: 70px;
                }

                img {
                    height: 100%;
                    width: auto;
                }

            }

            .val {
                font-size: 100px;
                color: var(--red);
                font-weight: 600;
                line-height: 1;
                margin-bottom: 25px;

                @media (max-width: 1300px) {
                    font-size: 80px;
                }

                @media (max-width: 1200px) {
                    font-size: 70px;
                }

                @media (max-width: 800px) {
                    font-size: 60px;
                }

                @media (max-width: 700px) {
                    margin-top: 50px;
                }

                @media (max-width: 500px) {
                    margin-bottom: 15px;
                }

            }

            .sub {
                font-size: 30px;
                line-height: 1.2;
                font-weight: 600;

                @media (max-width: 500px) {
                    font-size: 22px;
                }

            }

        }

    }

}







/*=======================================
            Image & Text
========================================*/

.image-text {
    background-color: var(--blue);

    .contents {
        justify-content: space-between;
        align-items: center;

        .image {
            width: calc(50%);

            @media (max-width: 1000px) {
                width: auto;
                max-width: 500px;
            }

            img {
                border-radius: 30px;
            }

        }

        .text {
            width: calc(50%);
            padding-left: 65px;

            @media (max-width: 1000px) {
                width: 100%;
                padding-left: 0;
                margin-top: 30px;
            }

            .title {
                font-size: 32px;
                line-height: 1.1;
                font-weight: 600;
                margin-bottom: 35px;

                @media (max-width: 1000px) {
                    margin-bottom: 20px;
                }

                @media (max-width: 600px) {
                    font-size: 25px;
                }

            }

            .text-container {
                font-size: 18px;
                line-height: 1.5;
                font-weight: 400;

                @media (max-width: 600px) {
                    font-size: 16px;
                }

                p:last-of-type {
                    margin-bottom: 0;
                }

            }

        }

    }

}






/*=======================================
            Form Block
========================================*/

.form-block {

    .contents {
        background-color: #fff;
        border-radius: 30px;
        padding: 75px;

        @media (max-width: 800px) {
            padding: 50px;
        }

        @media (max-width: 600px) {
            padding: 30px;
        }

        .title {
            text-align: center;
            max-width: 920px;
            margin: 0 auto 60px;
            font-size: 30px;
            line-height: 1.2;
            font-weight: 600;

            @media (max-width: 600px) {
                font-size: 25px;
            }

        }

        .form-wrap {
            justify-content: space-between;
            align-items: flex-start;

            .sidebar {
                width: 250px;

                @media (max-width: 1000px) {
                    width: 100%;
                    margin-bottom: 30px;
                }

                h3 {
                    font-size: 30px;
                    line-height: 1.2;
                    font-weight: 600;
                    margin-bottom: 15px;

                    @media (max-width: 600px) {
                        font-size: 25px;
                    }
                }

                p {
                    font-size: 18px;
                    line-height: 1.5;
                    display: flex;
                    flex-direction: row;
                    justify-content: flex-start;

                    span {
                        color: var(--red);
                        padding-right: 5px;
                    }

                }

            }

            .form {
                width: calc(100% - 250px);
                padding-left: 60px;
                padding-right: 60px;

                @media (max-width: 1200px) {
                    padding-right: 0;
                }

                @media (max-width: 1000px) {
                    width: 100%;
                    padding: 0;
                }

                .gform_required_legend {
                    display: none;
                }

                .gfield {

                    .gfield_label {
                        font-size: 18px;
                        line-height: 1.2;
                        font-weight: 400;
                        margin-bottom: 5px;

                        .gfield_required_asterisk {
                            color: var(--red);
                        }

                    }

                    input[type="text"],
                    input[type="email"],
                    textarea {
                        background-color: #E6E4FE;
                        border: none;
                        border-radius: 15px;
                        padding: 16px 20px;
                    }

                    textarea {
                        resize: none;
                        line-height: 1.5;
                    }

                }

                input[type="submit"] {
                    background-color: var(--red);
                    border-color: var(--red);
                    color: #fff;
                    line-height: 1 !important;
                }

            }

        }

    }

}







/*=======================================
            CTA Block
========================================*/

.cta-block {
    background-color: var(--blue);
    padding: 100px 0;

    @media (max-width: 1000px) {
        padding: 50px 0;
    }

    @media (max-width: 600px) {
        padding: 30px 0;
    }

    .contents {
        background-color: #fff;
        border-radius: 30px;
        max-width: 850px;
        margin: 0 auto;
        padding: 80px 30px;
        text-align: center;
        color: var(--darkblue);

        @media (max-width: 600px) {
            padding: 50px 30px;
        }

        .title {
            font-size: 48px;
            line-height: 1;
            font-weight: 600;
            margin-bottom: 20px;

            @media (max-width: 800px) {
                font-size: 40px;
            }

            @media (max-width: 600px) {
                font-size: 30px;
            }

        }

        .subtitle {
            font-size: 18px;
            line-height: 1.5;
            font-weight: 400;
            max-width: 570px;
            margin: 0 auto;

            @media (max-width: 600px) {
                font-size: 16px;
            }

        }

        .button {
            margin-top: 30px;
        }

    }

}







/*=======================================
            Logo CTA
========================================*/

.logo-cta {

    .contents {
        background-color: var(--red);
        border-radius: 30px;
        box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.26);
        padding: 25px;
        align-items: center;
        position: relative;
        overflow: hidden;

        @media (max-width: 1000px) {
            padding: 50px;
        }

        .info {
            padding-left: 55px;
            color: #fff;
            width: calc(100% - 380px);
            padding-right: 50px;

            @media (max-width: 1200px) {
                padding-left: 20px;
            }

            @media (max-width: 1000px) {
                padding: 0;
                width: 100%;
                text-align: center;
            }

            .inner {
                max-width: 700px;

                @media (max-width: 1000px) {
                    max-width: 100%;
                }

            }

            .title {
                font-size: 48px;
                line-height: 1.1;
                font-weight: 600;
                margin-bottom: 15px;

                @media (max-width: 1200px) {
                    font-size: 40px;
                }

                @media (max-width: 600px) {
                    font-size: 35px;
                }

            }

            .sub {
                font-size: 30px;
                line-height: 1.2;
                font-weight: 600;
                margin-bottom: 40px;

                @media (max-width: 1200px) {
                    font-size: 25px;
                }

                @media (max-width: 600px) {
                    font-size: 20px;
                    margin-bottom: 30px;
                }

                &.small {
                    font-size: 18px;
                    line-height: 1.5;
                    font-weight: 400;
                }

            }

        }

        .logo {
            width: 380px;
            height: auto;

            @media (max-width: 1000px) {
                width: 100%;
                height: auto;
                position: absolute;
                left: 0;
                opacity: 0.3;
            }

            @media (max-width: 1000px) {
                width: 150%;
                left: calc(-25%);
            }

        }

    }

}







/*=======================================
            Events Block
========================================*/

.events-block {

    .contents {
        max-width: 1200px;
        margin: 0 auto;
        justify-content: space-between;
        align-items: center;
    }

    .intro {
        width: 310px;
        padding-right: 50px;
        color: #fff;

        @media (max-width: 1200px) {
            width: 100%;
            margin-bottom: 30px;
        }

        .title {
            font-size: 30px;
            font-weight: 600;
            line-height: 1.2;

            @media (max-width: 600px) {
                font-size: 25px;
            }

        }

        .button {
            margin-top: 30px;

            @media (max-width: 1200px) {
                margin-top: 20px;
            }

        }

    }

    .right {
        width: calc(100% - 310px);

        @media (max-width: 1200px) {
            width: 100%;
        }

    }

    .event {

        &:hover {

            .main .arrow svg path {
                fill: var(--red);
            }

        }

        .inner {
            justify-content: space-between;
            align-items: unset;
            position: relative;
        }

        .left {
            width: 180px;
            background-color: var(--red);
            color: #fff;
            border-radius: 30px 0 0 30px;
            padding: 50px 40px;
            position: relative;

            &.bg-orange {
                background-color: var(--orange);

                &:after {
                    background-color: var(--orange);
                }

            }

            @media (max-width: 800px) {
                width: 100%;
                border-radius: 30px 30px 0 0;
                padding: 30px;
            }

            .day {
                font-size: 18px;
                line-height: 1.5;
                font-weight: 400;
            }

            .date {
                font-size: 24px;
                line-height: 1.2;
                font-weight: 700;
            }

            &:after {
                content: "";
                background-color: var(--red);
                width: 30px;
                height: 100%;
                position: absolute;
                right: -30px;
                top: 0;
                z-index: -1;

                @media (max-width: 800px) {
                    width: 100%;
                    bottom: -30px;
                    right: 0;
                    height: 30px;
                    top: auto;
                }

            }

        }

        .main {
            width: calc(100% - 180px);
            background-color: #fff;
            border-radius: 30px;
            padding: 50px 50px 70px;
            color: var(--darkblue);
            position: relative;

            @media (max-width: 800px) {
                width: 100%;
                padding: 30px 90px 30px 30px;
            }

            @media (max-width: 600px) {
                padding: 30px;
            }

            .title {
                font-size: 30px;
                font-weight: 600;
                line-height: 1.2;
                margin-bottom: 10px;

                @media (max-width: 800px) {
                    font-size: 26px;
                }

                @media (max-width: 450px) {
                    font-size: 24px;
                }

            }

            .desc {
                font-size: 18px;
                line-height: 1.5;
                font-weight: 400;
                margin-bottom: 30px;

                @media (max-width: 800px) {
                    font-size: 16px;
                }

            }

            .meta {

                .meta-item {
                    justify-content: space-between;
                    align-items: center;
                    padding: 8px 0;
                    border-top: 1px solid var(--darkblue);

                    &.event-passed {
                        border-bottom: 1px solid var(--darkblue);
                    }

                    .icon {
                        width: 20px;
                        height: auto;
                    }

                    .text {
                        width: calc(100% - 21px);
                        padding-left: 11px;
                        padding-top: 1px;
                        font-size: 18px;
                        line-height: 1.2;
                        font-weight: 400;

                        @media (max-width: 800px) {
                            font-size: 16px;
                        }

                    }

                }

            }

            .arrow {
                width: 35px;
                height: auto;
                position: absolute;
                bottom: 25px;
                right: 25px;

                @media (max-width: 600px) {
                    width: 30px;
                    position: static;
                    margin: 0 0 0 auto;
                }

                svg path {
                    fill: var(--darkblue);
                    transition: all 0.3s ease-in-out;
                }

            }

        }

    }

}







/*=======================================
            Accordion
========================================*/

.accordion {

    h2.title {
        font-size: 40px;
        font-weight: 600;
        line-height: 1.2;
        margin-bottom: 30px;

        @media (max-width: 600px) {
            font-size: 30px;
        }
    }

    .item {
        position: relative;
        margin-bottom: 20px;
        transition: transform 0.3s ease-in-out;

        .top {
            align-items: center;
            cursor: pointer;
            color: var(--darkblue);
            background-color: #fff;
            padding: 30px;
            border-radius: 30px;

            @media (max-width: 600px) {
                padding: 20px;
            }

            .title {
                font-size: 24px;
                font-weight: 600;
                line-height: 1.4;
                width: calc(100% - 36px);
                padding-right: 50px;

                @media (max-width: 1000px) {
                    font-size: 20px;
                    width: calc(100% - 30px);
                }

                @media (max-width: 600px) {
                    font-size: 18px;
                }

            }

            .chevron {
                width: 36px;
                transition: transform 0.3s ease-in-out;

                @media (max-width: 1000px) {
                    width: 30px;
                }

                @media (max-width: 600px) {
                    width: 25px;
                }

            }

        }

        &.open {

            .chevron {
                transform: rotate(180deg);
            }

        }

        .main {
            font-size: 18px;
            font-weight: 400;
            line-height: 1.5;
            display: none;
            padding: 30px 70px;
            color: #fff;
            max-width: 1070px;

            @media (max-width: 1000px) {
                padding: 30px;
            }

            @media (max-width: 600px) {
                font-size: 16px;
            }

        }



    }

}







/*=======================================
            Image Block
========================================*/

.image-block {

    img {
        border-radius: 30px;
        position: relative;
        z-index: 1;
    }

    .caption {
        background-color: var(--red);
        color: #fff;
        font-size: 16px;
        width: 100%;
        border-radius: 0 0 30px 30px;
        position: relative;
        z-index: 0;
        top: -25px;
        box-shadow: 4px 4px 15px 0 rgba(0, 0, 0, 0.25);
        padding: 40px 20px 20px 20px;

        @media (max-width: 600px) {
            font-size: 14px;
        }

    }

}