/* #region - reset */

*,
*::before,
*::after {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

button {
    color: inherit;
    background-color: transparent;
    border-width: 0;
    padding: 0;
    cursor: pointer;
}

figure {
    margin: 0;
    display: block;
}

img,
video {
    max-width: 100%;
    width: auto;
    height: auto;
    display: block;
}

iframe {
    display: block;
}

input::-moz-focus-inner {
    border: 0;
    padding: 0;
    margin: 0;
}

ul,
ol,
dd {
    list-style: none;
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
}

p {
    margin: 0;
}

cite {
    font-style: normal;
}

fieldset {
    border-width: 0;
    padding: 0;
    margin: 0;
}

/* #endregion */
/* #region - global */

html {
    font-size: 62.5%;
}

a,
[role='button'],
[type='button'],
[type='submit'] {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
}

.preload-partial {
    visibility: hidden;
}

.preload-full *,
.no-transition * {
    transition: none !important;
}

.is-locked .site {
    pointer-events: none;
}

.site__main {
    overflow: hidden;
}

.main__container {
    display: flex;
    flex-direction: column;
}

.is-ie .main__container * {
    min-height: .1rem;
    /* ie fix */
}

.site__svg {
    display: none;
}

picture.is-object-fit,
img[data-object-fit],
video[data-object-fit] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    font-family: 'object-fit: cover';
}

img[data-object-fit='contain'],
video[data-object-fit='contain'] {
    object-fit: contain;
    font-family: 'object-fit: contain';
}

[class*='-background'] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

    [class*='-background'] img,
    [class*='-background'] video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        font-family: 'object-fit: cover';
    }

    [class*='-background'] ~ * {
        position: relative;
        z-index: 1;
    }

/**/

body {
    font-family: 'Euclid Square', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.8;
    color: #000;
    background-color: #FFF;
    visibility: visible;
}

::selection {
    background-color: rgba(31, 123, 189, .25);
}

a {
    color: #0F45F1;
    transition: all .3s ease;
    transition-property: color, background, border;
}

    a:hover {
        color: #0F45F1;
    }

.container {
    max-width: 168rem;
    width: 100%;
    padding: 0 8rem;
    margin: auto;
}

.container__inner {
    padding: 0 12rem;
    margin: auto;
}

picture {
    background-color: #EEE;
}

.placeholder__top {
    position: absolute;
    top: 0;
}

/* #endregion */
/* #region - header */

.site__header {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: center;
    background-color: #FFF;
    box-shadow: 0 .3rem .6rem 0 rgba(0, 0, 0, .1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 9rem;
    padding: 0;
    z-index: 99;
    transform: translate3d(0, 0, 0);
    transition: all .2s ease;
}

.is-scrolled-down .site__header {
    height: 9rem;
    transition-duration: .3s;
}

.site__header > .container {
    max-width: none;
    height: 100%;
    padding: 0 4rem;
    display: flex;
    align-items: center;
}

.header__desktop,
.header__mobile {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo,
.header__logo a {
    height: 5rem;
    display: block;
}

.header__logo {
    margin: -3rem 0rem 0rem -3rem;
    flex: 0 0 auto;
}

.header__logo__mobile{
    display: none;
}

.header__desktop .header__links,
.header__desktop .header__nav,
.header__desktop .header__nav > ul {
    height: 100%;
}

.header__links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
}

.header__nav > ul {
    margin: 0 -.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .header__nav > ul > li {
        border: .1rem solid transparent;
        border-bottom: 0;
        position: relative;
        margin: 0 .5rem;
    }

        .header__nav > ul > li.has-children:hover {
            z-index: 1;
            transition: border .3s ease;
        }

.header__nav ul > li > a {
    color: inherit;
    position: relative;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .header__nav ul > li > a:hover,
    .header__nav ul > li.has-children:hover > a {
        color: #0F45F1;
    }

.header__nav ul > li.active > a,
.header__nav ul > li.active-child > a {
    color: #0F45F1;
    display: flex;
    align-items: center;
}

.header__nav ul > li.has-children > a {
    padding-right: 3.5rem;
}

    .header__nav ul > li.has-children > a:after {
        content: '\f107';
        font-family: 'Font Awesome 5 Pro';
        font-weight: 400;
        position: relative;
        top: .1rem;
        margin: 0 -2rem 0 1rem;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        cursor: pointer;
    }

.header__nav ul.sub-menu > li.has-children > a:after {
    content: '\f105';
}

.header__nav ul.sub-menu {
    text-align: left;
    white-space: nowrap;
    background-color: #FFF;
    box-shadow: 0 0 0 .1rem rgba(243, 244, 245, 1);
    border: .1rem solid transparent;
    position: absolute;
    top: 100%;
    left: -.1rem;
    min-width: calc(100% + .2rem);
    padding: .5rem 0;
    opacity: 0;
    pointer-events: none;
}

.header__nav ul > li:hover > ul.sub-menu {
    opacity: 1;
    transition: all .3s ease;
    pointer-events: all;
}

.header__nav ul.sub-menu ul.sub-menu {
    top: -.6rem;
    left: 100%;
    min-width: 100%;
}

.header__nav ul.sub-menu > li {
    position: relative;
}

    .header__nav ul.sub-menu > li > a {
        padding: 1.25rem 3.5rem 1.25rem 1.5rem;
    }

        .header__nav ul.sub-menu > li > a:hover {
            color: #FFF;
            background-color: #0F45F1;
        }

/* mobile */

.nav--is-active > * {
    pointer-events: none;
}

/*
.header__mobile {
    display: none;
}
*/

.header__nav-drawer-btn {
    position: relative;
    width: 1.8rem;
    height: 1.4rem;
    margin-left: auto;
    z-index: 2;
    display: block;
    transform: rotate(0deg);
    transition: rotate .5s ease-in-out;
    cursor: pointer;
}

.nav--is-active .header__nav-drawer-btn {
    pointer-events: all;
}

.header__nav-drawer-btn span {
    background-color: #081C63;
    border-radius: .3rem;
    position: absolute;
    left: 0;
    width: 100%;
    height: .2rem;
    display: block;
    opacity: 1;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
    pointer-events: none;
}

    .header__nav-drawer-btn span:nth-child(1) {
        top: 0;
    }

    .header__nav-drawer-btn span:nth-child(2),
    .header__nav-drawer-btn span:nth-child(3) {
        top: .6rem;
    }

    .header__nav-drawer-btn span:nth-child(4) {
        top: 1.2rem;
    }

.header__nav-drawer-btn:hover span {
    background-color: #0F45F1;
}

.nav--is-active .header__nav-drawer-btn span {
    background-color: #0F45F1;
}

    .nav--is-active .header__nav-drawer-btn span:nth-child(1),
    .nav--is-active .header__nav-drawer-btn span:nth-child(4) {
        top: .6rem;
        left: 50%;
        width: 0;
    }

    .nav--is-active .header__nav-drawer-btn span:nth-child(2) {
        transform: rotate(45deg);
    }

    .nav--is-active .header__nav-drawer-btn span:nth-child(3) {
        transform: rotate(-45deg);
    }

.header__nav-drawer {
    text-align: center;
    background-color: #FFF;
    position: fixed;
    top: 0;
    right: 0;
    max-width: 42rem;
    width: 100%;
    height: 100vh;
    z-index: 1;
    opacity: 1;
    transform: translateX(100%);
    transition: all .5s ease;
    transition-property: opacity transform;
    will-change: opacity transform;
    pointer-events: none;
}

.nav--is-active .header__nav-drawer {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.header__nav-drawer:before {
    content: '';
    position: absolute;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    top: 0;
    left: -100vw;
    opacity: 0;
    transition: opacity .25s ease;
    pointer-events: none;
}

.nav--is-active .header__nav-drawer:before {
    opacity: .5;
}

.header__nav-drawer-scroll {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 8rem 4rem;
    overflow: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
}

.header__nav-drawer .header__links {
    text-align: left;
    border: 0;
    width: 100%;
    margin-top: 4rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    flex: none;
}

.header__nav-drawer .header__nav {
    width: 100%;
    margin-bottom: 8rem;
}

    .header__nav-drawer .header__nav [data-accordion],
    .header__nav-drawer .header__nav [data-accordion-group] > [data-accordion] {
        border: 0;
        border-bottom: .1rem solid rgba(32, 28, 26, .1);
        width: 100%;
        padding: 0 0 2rem;
        margin: 0 0 2rem;
    }

    .header__nav-drawer .header__nav [data-accordion] {
        pointer-events: none;
    }

    .header__nav-drawer .header__nav [data-accordion-group] {
        margin: 0;
        align-items: flex-start;
        flex-direction: column;
    }

        .header__nav-drawer .header__nav [data-accordion-group].sub-menu {
            white-space: normal;
            background: none;
            box-shadow: none;
            border: 0;
            position: relative;
            top: 0;
            left: 0;
            min-width: auto;
            padding: .5rem 0;
            opacity: 1;
            pointer-events: all;
        }

            .header__nav-drawer .header__nav [data-accordion-group].sub-menu ul.sub-menu {
                top: 0;
                left: 0;
                min-width: auto;
                padding-bottom: 0;
                margin-bottom: -.5rem;
            }

    .header__nav-drawer .header__nav [data-accordion].has-children {
        pointer-events: all;
    }

    .header__nav-drawer .header__nav [data-accordion]:last-child {
        border-bottom: 0;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .header__nav-drawer .header__nav [data-accordion] > [data-control] {
        cursor: default;
    }

        .header__nav-drawer .header__nav [data-accordion] > [data-control]:after {
            content: '\f107';
            padding-top: .1rem;
            display: none;
        }

    .header__nav-drawer .header__nav [data-accordion].open > [data-control]:after {
        content: '\f106';
        padding-top: 0;
    }

    .header__nav-drawer .header__nav [data-accordion].has-children > [data-control]:after {
        display: flex;
    }

    .header__nav-drawer .header__nav [data-accordion] > [data-control] > a {
        color: inherit;
        position: relative;
        display: inline;
        transition: none;
        pointer-events: all;
    }

        .header__nav-drawer .header__nav [data-accordion] > [data-control] > a br {
            display: none;
        }

    .header__nav-drawer .header__nav [data-accordion] > [data-content] > * {
        padding-left: 2rem;
    }

/* centered menu */

.header__nav-drawer {
    max-width: none;
    opacity: 0;
    transform: translateY(0);
    transition: opacity .4s ease;
}

.nav--is-active .header__nav-drawer {
    transform: translateY(0);
}

.header__nav-drawer .header__links {
    font-size: 2.2rem;
    text-align: center;
    margin: auto;
}

.header__nav-drawer .header__nav-drawer-scroll {
    transform: translateY(5rem);
    transition: transform .4s ease;
}

.nav--is-active .header__nav-drawer .header__nav-drawer-scroll {
    transform: translateY(0);
}

.header__nav-drawer .header__nav {
    margin: 0;
}

    .header__nav-drawer .header__nav [data-accordion],
    .header__nav-drawer .header__nav [data-accordion-group] > [data-accordion] {
        border-bottom: 0;
        padding-bottom: 3rem;
        margin-bottom: 3rem;
    }

        .header__nav-drawer .header__nav [data-accordion]:last-child {
            border-bottom: 0;
            padding-bottom: 0;
            margin-bottom: 0;
        }

        .header__nav-drawer .header__nav [data-accordion] > [data-control] {
            color: inherit;
            padding: 0;
        }

            .header__nav-drawer .header__nav [data-accordion] > [data-control]:hover {
                color: #0F45F1;
            }

            .header__nav-drawer .header__nav [data-accordion] > [data-control] > a {
                pointer-events: none;
            }

.nav--is-active .header__nav-drawer .header__nav [data-accordion] > [data-control] > a {
    pointer-events: all;
}

/* #endregion */
/* #region - footer */

.site__footer {
    color: #081C63;
    padding: 4rem 0;
}

    .site__footer > .container {
        max-width: none;
        padding: 0 4rem;
        display: flex;
        align-items: center;
    }

.footer__copyright {
    padding-right: 8rem;
    margin-right: auto;
}

    .footer__copyright p {
        font-size: 1.4rem;
        margin: 10px 0px;
    }

.footer__social {
    position: relative;
    top: -.2rem;
    margin-right: 4rem;
}

    .footer__social ul {
        margin: -.5rem;
        display: flex;
    }

        .footer__social ul > li {
            margin: .5rem;
            display: flex;
        }

    .footer__social i {
        color: #FFF;
        border-radius: 100%;
        width: 4rem;
        height: 4rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .footer__social i[class*="facebook"] {
            background-color: #3D5A96;
        }

        .footer__social i[class*="twitter"] {
            background-color: #2AA3EF;
        }

.is-ie .footer__social i:before {
    position: relative;
    top: .1rem
}

.footer__scroll-top {
    font-weight: 700;
    text-transform: uppercase;
}

    .footer__scroll-top a {
        color: inherit;
    }

        .footer__scroll-top a:hover {
            color: #0F45F1;
        }

    .footer__scroll-top i {
        margin-left: .5rem;
    }

/* #endregion */
/* #region - accordion */

[data-accordion-group] {
    width: 100%;
    margin-bottom: -2rem;
}

[data-accordion] {
    border-bottom: .1rem solid rgba(32, 28, 26, .1);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

    [data-accordion]:last-child {
        border: 0;
        padding-bottom: 0;
    }

    [data-accordion] > [data-control] {
        position: relative;
        padding-right: 4rem;
        transition: color .3s cubic-bezier(0, 0, .2, 1);
        cursor: pointer;
    }

        [data-accordion] > [data-control]:hover {
            color: #0F45F1;
        }

    [data-accordion].open > [data-control] {
        color: #0F45F1;
    }

    [data-accordion] > [data-control]:after {
        content: '\f067';
        font-family: 'Font Awesome 5 Pro';
        font-weight: 400;
        position: absolute;
        top: 50%;
        right: 0;
        width: 2rem;
        height: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        transform: translateY(-50%);
        cursor: pointer;
    }

    [data-accordion].open > [data-control]:after {
        content: '\f068';
        color: #0F45F1;
    }

    [data-accordion] > [data-content] {
        overflow: hidden;
        max-height: 0;
    }

        [data-accordion] > [data-content] > * {
            padding: 3rem 0 1rem;
        }

            [data-accordion] > [data-content] > * > *:last-child {
                margin-bottom: 0;
            }

/* #endregion */
/* #region - slider */

.is-slider {
    position: relative;
}

    .is-slider .swiper-slide {
        height: auto;
        overflow: hidden;
    }

    .is-slider .swiper-navigation {
        position: absolute;
        top: 50%;
        left: 50%;
        width: calc(100% + 12rem);
        width: 100%;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transform: translate(-50%, -50%);
        pointer-events: none;
    }

    .is-slider .swiper-button-next,
    .is-slider .swiper-button-prev {
        font-size: 3rem;
        font-weight: 300;
        line-height: 0;
        color: #FFF;
        background: #081C63;
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        width: 5rem;
        height: 7rem;
        margin: 0;
        display: flex;
        align-items: center;
        flex: 0 0 auto;
        transition: all .3s cubic-bezier(0, 0, .2, 1);
        transition-property: background, color, opacity;
        pointer-events: all;
        outline: none;
    }

    .is-slider .swiper-container-rtl ~ .swiper-navigation .swiper-button-next,
    .is-slider .swiper-container-rtl ~ .swiper-navigation .swiper-button-prev {
        transform: scaleX(-1);
    }

    .is-slider .swiper-button-next:hover,
    .is-slider .swiper-button-prev:hover {
        color: #FFF;
        background: #4C95CA;
    }

    .is-slider .swiper-button-next:before,
    .is-slider .swiper-button-prev:before {
        content: '\f054';
        font-family: 'Font Awesome 5 Pro';
        margin: 0;
        transition: transform .4s ease;
    }

    .is-slider .swiper-button-prev:before {
        content: '\f053';
    }

    .is-slider .swiper-button-next:after,
    .is-slider .swiper-button-prev:after {
        display: none;
    }

    .is-slider .swiper-button-next.swiper-button-disabled,
    .is-slider .swiper-button-prev.swiper-button-disabled {
        opacity: .25;
        pointer-events: none;
    }

    .is-slider .swiper-button-lock {
        transition: none;
    }

    .is-slider .swiper-pagination {
        position: relative;
        margin-top: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .is-slider .swiper-pagination .swiper-pagination-bullet {
            background-color: rgba(8, 28, 99, .1);
            border-radius: 100%;
            width: 1rem;
            height: 1rem;
            margin: .5rem;
            opacity: 1;
            outline: none;
            transition: all .1s ease;
        }

        .is-slider .swiper-pagination .swiper-pagination-bullet-active {
            background-color: #081C63;
        }

    .is-slider .swiper-pagination-lock {
        display: none;
    }

/* #endregion */
/* #region - template */

[class*="-H1"],
[class*="-H2"],
[class*="-H3"],
[class*="-H4"],
[class*="-H5"],
[class*="-H6"] {
    font-weight: 600;
    color: #081C63;
    margin-bottom: 3rem;
}

[class*="-H1"] {
    font-size: 3.6rem;
    line-height: 1.3;
}

[class*="-H2"] {
    font-size: 3.6rem;
    line-height: 1.3;
}

[class*="-H3"] {
    font-size: 2.8rem;
    line-height: 1.4;
}

[class*="-H4"] {
    font-size: 2.2rem;
    line-height: 1.5;
}

[class*="-H5"] {
    font-size: 1.8rem;
    line-height: 1.8;
}

[class*="-H6"] {
    font-size: 1.4rem;
    line-height: 1.8;
}

[class*="-P"] {
    font-size: 2.2rem;
    line-height: 1.8;
}

    [class*="-P"] p + p {
        margin-top: 3rem;
    }

[class*="-BTN"] {
    font-weight: 700;
    letter-spacing: .1rem;
    text-transform: uppercase;
    text-align: center;
    color: #FFF;
    background: #0F45F1;
    background: linear-gradient(130deg, #0F45F1, #00B8E4, #00B8E4, #0F45F1);
    background-size: 300% 100%;
    border-radius: 5rem;
    box-shadow: 0 .3rem 2rem 0 rgba(0, 0, 0, .2);
    padding: 2rem 4rem;
    display: table;
    transition: all .3s ease;
    transition-property: color, background, border;
}

    [class*="-BTN"]:hover {
        color: #FFF;
        background-position: 100% 0;
    }

/**/

.site__breadcrumbs {
    font-size: 1.6rem;
    text-transform: uppercase;
    color: #FFF;
    background-color: #081C63;
    padding: 2rem 0;
    overflow: hidden;
}

    .site__breadcrumbs > .container {
        max-width: none;
        padding: 0 4rem;
    }

    .site__breadcrumbs span {
        position: relative;
    }

        .site__breadcrumbs span.current-item {
            color: #00B8E4;
        }

        .site__breadcrumbs span:after {
            content: '';
            position: absolute;
            bottom: -2.6rem;
            left: 0;
            width: 100%;
            border-bottom: .4rem solid #00B8E4;
            opacity: 0;
            pointer-events: none;
        }

        .site__breadcrumbs span.current-item:after {
            opacity: 1;
        }

    .site__breadcrumbs a {
        color: inherit;
    }

        .site__breadcrumbs a:hover {
            color: #00B8E4;
        }

    .site__breadcrumbs i {
        margin: 0 1.5rem;
    }

/**/

.site__back {
    background-color: #F7F7F7;
    padding: 4rem 0;
}

    .site__back a {
        font-weight: 600;
        text-transform: uppercase;
        color: #081C63;
        margin: auto;
        display: table;
    }

        .site__back a:hover {
            color: #0F45F1;
        }

    .site__back i {
        margin-right: 1rem;
    }

/* #endregion */
/* #region - home */

.home__hero {
    position: relative;
    padding: 5rem 0;
    display: flex;
    flex-direction: column;
}

    .home__hero > .container {
        position: relative;
        display: flex;
        justify-content: space-around;
        flex-direction: column;
        flex: 1;
    }

.home__hero-content {
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
}

    .home__hero-content > * {
        max-width: 100%;
    }

.home__hero-H3 {
    font-weight: 400;
    margin-bottom: 5rem;
}

.home__hero-image {
    position: relative;
    margin-top: -16rem;
    z-index: -1;
}

    .home__hero-image .blob {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

/**/

.home__about {
    padding: 8rem 0;
}

.home__about-items {
    margin: -4rem 0;
    display: flex;
    flex-direction: column;
}

.home__about-item {
    margin: 4rem 0;
    display: flex;
    align-items: center;
}

.home__about-item-image,
.home__about-item-content {
    flex: 1;
}

.home__about-item-image {
    padding: 0 8rem 0 0;
}

.home__about-item:nth-child(even) .home__about-item-image {
    padding: 0 0 0 8rem;
    order: 2;
}

/**/

.home__hiw {
    padding: 8rem 0;
}

.home__hiw-H2 {
    text-align: center;
}

.home__hiw-items {
    margin: -2rem -4rem;
    display: flex;
    flex-wrap: wrap;
}

.home__hiw-item {
    width: calc(33.33% - 8rem);
    margin: 2rem 4rem;
}

.home__hiw-item-image {
    position: relative;
    max-width: 24rem;
    margin: 0 auto 2rem;
}

    .home__hiw-item-image:after {
        content: '';
        padding-top: 100%;
        display: block;
    }

.home__hiw-item-H3 {
    text-align: center;
}

/**/

.home__wwo {
    background-color: #F7F7F7;
    padding: 16rem 0;
    margin: 8rem 0;
}

    .home__wwo > .container {
        display: flex;
    }

.home__wwo-col:nth-child(1) {
    padding-right: 8rem;
    flex: 1;
}

.home__wwo-quote-H4 {
    font-weight: 400;
    margin-bottom: 0;
}

.home__wwo-col:nth-child(2) {
    flex: 3;
}

.home__wwo-P {
    margin-bottom: 4rem;
}

.home__wwo-logos {
    margin: -1.5rem -4%;
    display: flex;
    justify-content: space-between;
}

.home__wwo-logo {
    margin: 1.5rem 4%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .home__wwo-logo > div {
        /* width: 100%; */
        height: 8rem;
        flex: auto;
        margin: 0px 5px;
    }

    .home__wwo-logo img {
        position: relative;
        height: 100%;
        margin: auto;
        padding: 8px;
    }

.is-ie .home__wwo-logo img {
    height: auto;
}

/**/

.home__partners {
    padding: 8rem 0;
}

    .home__partners > .container {
        display: flex;
    }

.home__partners-col:nth-child(1) {
    padding-right: 8rem;
    flex: 1;
}

.home__partners-content {
    max-width: 64rem;
}

.home__partners-P {
    margin-bottom: 5rem;
}

.home__partners-col:nth-child(2) {
    flex: 1;
}

.home__partners-logos {
    margin: -4rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.home__partners-logo {
    width: calc((100% / 2) - 8.01rem);
    margin: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .home__partners-logo > div {
        position: relative;
        flex: 1;
        transform: scale(.9);
    }

        .home__partners-logo > div:after {
            content: '';
            padding-top: 25%;
            display: block;
        }

    .home__partners-logo img {
        opacity: 0;
        transition: opacity .5s ease;
    }

        .home__partners-logo img.active {
            opacity: 1;
        }

.home__partners-item {
    width: calc(33.33% - 8rem);
    margin: 2rem 4rem;
}

.home__partners-item-H4 {
    text-align: center;
}

.home__partners-item-image {
    position: relative;
    max-width: 24rem;
    margin: 0 auto 2rem;
}

    .home__partners-item-image:after {
        content: '';
        padding-top: 100%;
        display: block;
    }


/**/

.home__so {
    padding: 8rem 0;
}

.home__so-H2 {
    text-align: center;
}

.home__so-P {
    margin-bottom: 4rem;
}

.home__so-items {
    color: #081C63;
    display: flex;
}

.home__so-col:nth-child(1) {
    max-width: 25rem;
    width: 40%;
    padding-right: 4rem;
}

.home__so-side-labels {
    position: relative;
    margin-top: 1.5rem;
}

.home__so-side-label {
    text-align: right;
    position: absolute;
    right: 0;
    padding: .6rem 0;
}

.home__so-side-label,
.home__so-label {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: .1rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: .5;
}

.home__so-col:nth-child(2) {
    width: 60%;
    flex: 1;
}

.home__so-slider .swiper-container {
    border-radius: 2rem;
    box-shadow: 0 0 5rem .1rem rgba(0, 0, 0, .1);
}

.home__so-slide {
    font-size: 2.2rem;
    line-height: 1.5;
    text-align: center;
    border-top: 1.5rem solid;
    padding: 8rem 0;
}

    .home__so-slide:nth-child(1) {
        border-top-color: #9900D9;
    }

    .home__so-slide:nth-child(2) {
        border-top-color: #4AE3AD;
    }

    .home__so-slide:nth-child(3) {
        border-top-color: #EB664A;
    }

    .home__so-slide:nth-child(4) {
        border-top-color: #00B8E4;
    }

    .home__so-slide.highlight {
        background: rgba(74, 227, 173, .05);
        box-shadow: 0 0 5rem .1rem rgba(0, 0, 0, .1);
    }

    .home__so-slide > * {
        padding: 0 3rem;
    }

.home__so-label {
    display: none;
}

.home__so-type {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: .1rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.home__so-slide:nth-child(1) .home__so-type {
    color: #9900D9;
}

.home__so-slide:nth-child(2) .home__so-type {
    color: #4AE3AD;
}

.home__so-slide:nth-child(3) .home__so-type {
    color: #EB664A;
}

.home__so-slide:nth-child(4) .home__so-type {
    color: #00B8E4;
}

.home__so-price {
    font-size: 3.6rem;
    font-weight: 600;
    line-height: 1.3;
    border-bottom: .1rem solid #E3E8EB;
    padding-bottom: 4rem;
    margin-bottom: 2rem;
}

.home__so-price_details {
    display: inline;
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 0.3;
    padding-top: 20px;
}

.home__so-duration,
.home__so-noup {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: .1rem solid #E3E8EB;
}

.home__so-sp {
    font-size: 1.6rem;
    line-height: 1.5;
}

    .home__so-sp ul {
        padding: .4rem 0;
    }

        .home__so-sp ul:after {
            content: '';
            margin-bottom: -2rem;
            display: block;
        }

        .home__so-sp ul > li {
            margin-bottom: 2rem;
        }

    .home__so-sp a {
        color: inherit;
        display: block;
    }

        .home__so-sp a:hover {
            color: #0F45F1;
        }

    .home__so-sp p {
        margin: 20px 0px;
        font-size: 1rem;
        text-align: left;
        text-justify: newspaper;
    }

/**/

.home__register {
    padding: 8rem 0;
}

    .home__register > .container {
        display: flex;
    }

.home__register-col:nth-child(1) {
    padding-right: 8rem;
    flex: 1;
}

.home__register-col:nth-child(2) {
    flex: 3;
}

.home__register-H2 {
    margin: 0;
}

/* #endregion */
/* #region - contact form */

.cf__form {
    width: 100%;
}

form .error {
    color: #aa0101;
}

form .loading-icon {
    position: absolute;
    margin-top: -44px;
    margin-left: 44px;
    color: #fff;
}

/**/
.cf__section {
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

    .cf__section > div {
        width: 100%;
        margin-bottom: 4rem;
    }

    .cf__section > .is-half {
        width: calc(50% - 4rem);
    }

    .cf__section input,
    .cf__section textarea,
    .cf__section select {
        font-size: 2.2rem;
        line-height: normal;
        color: #081C63;
        background-color: transparent;
        border: 0;
        border-bottom: .1rem solid #081C63;
        border-radius: 0;
        width: 100%;
        padding: 1rem 0;
        display: block;
        outline: none;
        resize: none;
        -webkit-appearance: none;
    }

    .cf__section textarea {
        line-height: 2.4;
        border: 0;
        padding: 0;
    }

.is-ie .cf__section textarea {
    line-height: 1.6;
    border: .1rem solid #081C63;
    padding: 1rem 1.5rem;
}

.cf__section .cf__select {
    position: relative;
    display: block;
}

    .cf__section .cf__select:after {
        content: '\f078';
        font-family: 'Font Awesome 5 Pro';
        font-size: 1.4rem;
        font-weight: 700;
        line-height: 1;
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        padding: 1rem 0;
        display: flex;
        align-items: center;
    }

.cf__section select {
    padding-right: 3rem;
}

.is-ie .cf__section input,
.is-ie .cf__section select {
    padding: 1rem .2rem;
}

.is-ie .cf__section select {
    padding: .9rem 0;
}

    .is-ie .cf__section select::-ms-expand {
        opacity: 0;
    }

.cf__section label > span:first-child {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: .1rem;
    text-transform: uppercase;
    color: #081C63;
    margin-bottom: 0;
    display: inline-block;
}

/**/

.cf__footer {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

    .cf__footer .cf__submit {
        position: relative;
        margin-right: auto;
    }

    .cf__footer input[type='submit'] {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        cursor: pointer;
    }

        .cf__footer input[type='submit'] ~ a {
            font-weight: 700;
            letter-spacing: .1rem;
            text-transform: uppercase;
            text-align: center;
            color: #FFF;
            background: #0F45F1;
            background: linear-gradient(130deg, #0F45F1, #00B8E4, #00B8E4, #0F45F1);
            background-size: 300% 100%;
            border-radius: 5rem;
            box-shadow: 0 .3rem 2rem 0 rgba(0, 0, 0, .2);
            min-width: 24rem;
            padding: 2rem 4rem;
            display: table;
            transition: all .3s ease;
            transition-property: color, background, border;
        }

        .cf__footer input[type='submit']:hover ~ a {
            color: #FFF;
            background-position: 100% 0;
        }

        .cf__footer input[type='submit'] ~ a:after {
            content: '\f061';
            font-family: 'Font Awesome 5 Pro';
            font-weight: 700;
            margin-left: 1.5rem;
            display: none;
        }

    .cf__footer .cf__loader {
        font-size: 2rem;
        background: none;
        position: absolute;
        top: 50%;
        left: 50%;
        width: 2rem;
        height: 2rem;
        margin: 0;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        flex: 1 0 auto;
        opacity: 0;
        transform: translate(-50%, -50%);
        transition: opacity .3s ease;
        pointer-events: none;
    }

        .cf__footer .cf__loader:before {
            content: '\f110';
            font-family: 'Font Awesome 5 Pro';
            font-weight: 400;
            line-height: 1;
            color: #FFF;
            animation: loading 1.2s linear infinite;
        }

@keyframes loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

form.is-sending .cf__footer .cf__submit {
    pointer-events: none;
}

form.is-sending .cf__footer .cf__loader {
    opacity: 1;
}

form.is-sending .cf__footer input[type='submit'] ~ a {
    color: transparent;
}

/**/

.cf__section .error__message {
    font-size: 1.4rem;
    color: #EB664A;
    margin-top: 1rem;
}

.cf__footer .cf__response {
    font-size: 1.4rem;
    margin-top: 2rem;
}

    .cf__footer .cf__response.is-successful {
        color: #00B8E4;
    }

    .cf__footer .cf__response.is-unsuccessful {
        color: #EB664A;
    }

/* #endregion */
/* #region - partners */

.partners__list {
    padding: 8rem 0;
}

.partners__list-H1 {
    text-align: center;
    margin-bottom: 8rem;
}

.partners__list-logos {
    margin: -4rem;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.partners__list-logo {
    position: relative;
    width: calc((100% / 4) - 8.01rem);
    margin: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .partners__list-logo:before {
        content: '';
        box-shadow: 0 0 5rem .1rem rgba(0, 0, 0, .1);
        position: absolute;
        top: -3rem;
        left: -3rem;
        width: calc(100% + 6rem);
        height: calc(100% + 6rem);
        opacity: 0;
        transition: opacity .5s ease;
    }

    .partners__list-logo:hover:before {
        opacity: 1;
    }

    .partners__list-logo > div {
        position: relative;
        flex: 1;
        transform: scale(.8);
        transition: transform .3s ease;
    }

    .partners__list-logo:hover > div {
        transform: scale(1);
    }

    .partners__list-logo > div:after {
        content: '';
        padding-top: 20%;
        display: block;
    }

    .partners__list-logo img {
        margin: auto;
    }

.faqs {
    padding: 6rem 0;
}

.faqs-H2 {
    text-align: center;
}

.faqs-items {
    color: #081C63;
    display: flex;
}

.faqs-col {
    width: 50%;
    padding-right: 4rem;
}


/* #endregion */




/* #accordion */

.accordion {
    /* background-color: #eee;
    color: #444; */
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 2rem;
    transition: 0.4s;
}

/* .active, .accordion:hover {
    background-color: #ccc;
  } */

/* .accordion:after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
  } */

/* .active:after {
    content: "\2212";
  } */

.panel {
    color: #898989;
    font-size: 1.5rem;
    padding: 0 25px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

/* end-accordion */

/* enquire - start */
.text-center {
    text-align: center;
}

.enquire-container .enquire__hero-image {
    position: relative;
    margin-top: -7rem;
    z-index: -1;
    width: 100%;
    height: 100%;
}

    .enquire-container .enquire__hero-image img {
        width: 64%;
        height: 50%;
        margin: 0px auto;
    }

.enquire-pre-registration .course-flex {
    display: flex;
    flex-direction: column;
    margin-right: 5rem;
    margin-top: 2rem;
    flex: 3;
}

    .enquire-pre-registration .course-flex .enquire-logos {
        margin: 2rem 0;
        display: flex;
        justify-content: space-between;
    }

        .enquire-pre-registration .course-flex .enquire-logos .enquire-logos-inner {
            margin: auto;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .enquire-pre-registration .course-flex .enquire-logos .enquire-logos-inner img {
                height: 70%;
            }

            .enquire-pre-registration .course-flex .enquire-logos .enquire-logos-inner .img-first {
                height: 75%;
            }

.enquire-pre-registration .course-flex-item {
    font-size: 2.2rem;
    line-height: 1.8;
    color: #081C63;
}

.enquire-pre-registration .course-flex-item-first {
    margin-bottom: 5rem;
}

.enquire-pre-registration .enquire__register-col {
    margin-top: 4rem;
}

.section-title {
    margin-bottom: 3rem;
}

.custom-list-style-first {
    margin-left: -1rem;
}

.custom-list-style {
    margin-left: 2rem;
    list-style-type: square;
}

/* enquire - end */
