/* old  CSSS content starts here. This portion till next comment is the one that runs on website ( PUBLISHED VERSION)
 * After comment is added some css from main css to get this preview */
.header {
    background-color: #fff;
    border-bottom: 1px solid #e8e9eb;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 50;
}
.header::before {
    content: "";
    background-color: #447bbe;
    height: 100%;
    pointer-events: none;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 10;
    transform: translateY(-100%);
}
@media (max-width: 991.98px) {
    .header .container {
        max-width: none;
    }
}
.header__inner {
    height: calc(100vh - var(--header-height-mobile));
    height: calc((var(--vh, 1vh) * 100) - var(--header-height-mobile));
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: #fff;
    padding: 35px 0;
    position: fixed;
    top: var(--header-height-mobile);
    right: 0;
    bottom: 0;
    left: 0;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50px);
    transition: all 0.2s ease-in-out;
}
.is-open .header__inner {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
@media (min-width: 992px) {
    .header__inner {
        height: var(--header-height);
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 25px 0;
        background-color: transparent;
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        overflow-y: visible;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        transition: none;
    }
}
.header__mobile {
    background-color: #fff;
    border-bottom: 1px solid #e8e9eb;
    height: var(--header-height-mobile);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 50;
}
.header__mobile .header__logo {
    display: flex;
}
@media (min-width: 992px) {
    .header__mobile {
        display: none;
    }
}
.header__btn-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    color: #666;
}
.header__logo {
    display: none;
    align-items: center;
    margin: 0;
    padding: 0;
}
@media (min-width: 992px) {
    .header__logo {
        display: flex;
    }
}
.header__logo img {
    display: block;
    width: 136px;
    height: auto;
    transition: all 0.2s ease-in-out;
}
@media (min-width: 992px) {
    .header__logo img {
        width: 160px;
    }
}
@media (min-width: 576px) {
    .header__logo:hover img,
    .header__logo:active img,
    .header__logo:focus img {
        opacity: 0.7;
    }
}
.header__menu {
    display: flex;
    flex-shrink: 0;
}
.header__actions {
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-shrink: 0;
    padding: 90px 0 0;
    position: relative;
}
.header__actions::before {
    content: "";
    background-color: #e8e9eb;
    width: 120px;
    height: 1px;
    position: absolute;
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
}
@media (min-width: 992px) {
    .header__actions {
        flex-direction: row;
        align-items: center;
        padding: 0;
    }
    .header__actions::before {
        display: none;
    }
}
.header__actions .btn-text {
    font-size: 1.125rem;
    margin: 0 0 22px;
}
@media (min-width: 992px) {
    .header__actions .btn-text {
        margin: 0 8px 0 0;
    }
}
@media (min-width: 1200px) {
    .header__actions .btn-text {
        margin: 0 16px 0 0;
    }
}
.menu__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
}
@media (min-width: 992px) {
    .menu__list {
        flex-direction: row;
        width: auto;
    }
}

.menu__item {
    margin: 0;
    padding: 0;
    position: relative;
}
@media (min-width: 992px) {
    .menu__item {
        margin: 0 6px;
    }
}
@media (min-width: 1200px) {
    .menu__item {
        margin: 0 13px;
    }
}
@media (min-width: 576px) {
    .menu__item:hover .menu__link,
    .menu__item:active .menu__link,
    .menu__item:focus .menu__link {
        color: #7a94a8;
    }
}

@media (min-width: 576px) and (min-width: 992px) {
    .menu__item:hover .submenu__list,
    .menu__item:active .submenu__list,
    .menu__item:focus .submenu__list {
        opacity: 1;
        visibility: visible;
    }
}

.menu__link {
    cursor: pointer;
    color: #447bbe;
    display: flex;
    justify-content: center;
    font-family: "Nunito", sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.34;
    padding: 15px 8px;
    width: 100%;
}
@media (min-width: 992px) {
    .menu__link {
        width: auto;
        padding: 7px 8px;
        font-size: 1.125rem;
    }
}
@media (min-width: 1200px) {
    .menu__link {
        padding: 7px 16px;
    }
}
.menu__link--chevron::before {
    content: "";
    width: 26px;
}
@media (min-width: 992px) {
    .menu__link--chevron::before {
        display: none;
    }
}


/*------------------------- chevron Versions ------------------------------------------------------------------------------
 * Drop down menu  chevron CSS
 * Verison selection
 * 1st verion copied form main CSS
 * 2nd verison is amde one 
 * Published verison runs on old (1st verion) 
 * 
 * You can toogle between this verisn top chooise which one suit you, or works best. 
 * Please select teh one that suits. 
 * Its replaing deffintinf for .menu__link--chevron::after, if not conevenniest this set up just comment of delete this definistion and uncomnet the deff taht is below 


/* This is 1st Verion for old style copied form main css that is replased with deff above ----------------------------------------------------
.menu__link--chevron::after {
    content: "";
    font-family: "Icons";
    margin: 0 0 0 8px;
}

------------------------------------------------------------------------------------------------------------------------------------------*/ 

/* 2nd verions  of chevron if need to use just uncoment thgis section and comment the 1st verion -----------------------------------------------------*/
 
.menu__link--chevron::after{
    border-style: solid;
    border-width: 0.15em 0.15em 0 0;
    content: '';
    display: inline-flex;
    height: 0.4em;
    left: 0.35em;
    position: relative;
    top: 0.35em;
    transform: rotate(135deg);
    vertical-align: top;
    width: 0.4em;
    margin: 0 0 0 8px;
    font-family: "Icons";
}


/*-----------------------------------------------------------------------------------------------------------------------------------------*/



@media (min-width: 576px) {
    .menu__link:hover,
    .menu__link:active,
    .menu__link:focus {
        color: #7a94a8;
    }
}
.menu__link.is-active {
    color: #ebab39;
}
@media (min-width: 576px) {
    .menu__link.is-active:hover,
    .menu__link.is-active:active,
    .menu__link.is-active:focus {
        color: #ebab39;
    }
}
/*old  CSS content finishes here  WEBSITE RUNS ON THIS SECTION - PUBLISHED VERSION*/




/***************************************************************************************************/
 /* added from main css still not active its for PREVIEW ONLY and NOT PUBLISHED, THERE IS PROBLEM WITH 
  * CHEVRON-DOWN ARROW nad body-font have to find the source to pull similar design  */

/* second add to from main CSS External files import */
/*
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Open+Sans:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap');
*/
/* HubSpot_Boilerplate-modules.css is required to address style issues with the default modules and responsive grid layout */

/* second Add finished here */

.submenu__list {
    background: #ffffff;
    box-shadow: 0 4px 14px 0 rgba(208, 208, 208, 0.5);
    list-style: none;
    margin: 0;
    padding: 14px 24px;
    display: none;
    opacity: 0;
    visibility: hidden;
    flex-direction: column;
    overflow: hidden;
    z-index: 10;
    transition: all 0.2s ease-in-out;
}

@media (min-width: 992px) {
    .submenu__list {
        width: 254px;
        background: #ffffff;
        box-shadow: 0 4px 14px 0 rgba(208, 208, 208, 0.5);
        border-radius: 4px;
        list-style: none;
        margin: 0;
        padding: 14px 24px;
        display: flex;
        opacity: 0;
        visibility: hidden;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 10;
    }
}

.submenu__list.is-open {
    display: flex;
    opacity: 1;
    visibility: visible;
}

@media (min-width: 992px) {
    .submenu__list.is-open {
        opacity: 0;
        visibility: hidden;
    }
}

.submenu__item {
    margin: 0;
    padding: 0;
}

.submenu__link {
    display: block;
    font-family: "Nunito", sans-serif; 
    font-size: 1rem;
    font-weight: 700;
    color: #7a94a8;
    line-height: 1.3;
    padding: 6px 0;
    text-align: center;
}

@media (min-width: 992px) {
    .submenu__link {
        text-align: left;
    }
}

@media (min-width: 576px) {
    .submenu__link:hover,
    .submenu__link:active,
    .submenu__link:focus {
        color: #447bbe;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    font-family: "Nunito", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.375;
    color: #fff;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    background-color: #5f9be3;
    border: 0;
    border-radius: 4px;
    box-shadow: 0 1px 2px 0 rgba(75, 78, 80, 0.2), 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    outline: 0;
    padding: 7px 18px;
    transition: all 0.2s ease-in-out;
}

.btn .ico {
    font-size: 20px;
    margin: 0 6px 0 0;
}

@media (min-width: 576px) {
    .btn:hover,
    .btn:active,
    .btn:focus {
        color: #fff;
        text-decoration: none;
        background-color: #2573d1;
    }
}

.btn.disabled,
.btn:disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

@media (min-width: 576px) {
    .btn.disabled:hover,
    .btn.disabled:active,
    .btn.disabled:focus,
    .btn:disabled:hover,
    .btn:disabled:active,
    .btn:disabled:focus {
        background-color: #c2c4c8;
    }
}

.btn--primary {
    background-color: #ebab39;
    color: #fff;
}

@media (min-width: 576px) {
    .btn--primary:hover,
    .btn--primary:active,
    .btn--primary:focus {
        background-color: #c48414;
        color: #fff;
    }
}

@media (min-width: 576px) {
    .btn--primary.disabled:hover,
    .btn--primary.disabled:active,
    .btn--primary.disabled:focus,
    .btn--primary:disabled:hover,
    .btn--primary:disabled:active,
    .btn--primary:disabled:focus {
        background-color: #c2c4c8;
    }
}

.btn--secondary {
    background-color: #efd01c;
    color: #fff;
}

@media (min-width: 576px) {
    .btn--secondary:hover,
    .btn--secondary:active,
    .btn--secondary:focus {
        background-color: #b29a0d;
        color: #fff;
    }
}

@media (min-width: 576px) {
    .btn--secondary.disabled:hover,
    .btn--secondary.disabled:active,
    .btn--secondary.disabled:focus,
    .btn--secondary:disabled:hover,
    .btn--secondary:disabled:active,
    .btn--secondary:disabled:focus {
        background-color: #c2c4c8;
    }
}

.btn--lg {
    font-size: 1.25rem;
    padding: 12px 20px;
}

.btn--block {
    display: block;
    width: 100%;
}

.btn-text {
    display: inline-flex;
    font-family: "Nunito", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.34;
    color: #447bbe;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    background-color: transaprent;
    border: 0;
    outline: 0;
    padding: 7px 16px;
    transition: all 0.2s ease-in-out;
}

.btn-text:disabled,
.btn-text.disabled {
    pointer-events: none;
}

.btn-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    color: currentColor;
    background-color: transparent;
    outline: 0 none;
    border: 0 none;
    border-radius: 0;
    padding: 0;
    margin: 0;
}

.btn-menu__icon {
    position: relative;
    display: block;
    font-size: 26px;
    width: 1em;
    height: 3px;
    color: inherit;
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    transform: scale(1);
    background-size: 100% 100%;
    will-change: transform, background-size;
    transition: transform 0.2s, background-size 0.2s;
}

.btn-menu__icon::before,
.btn-menu__icon::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: inherit;
    border-radius: inherit;
    will-change: inherit;
    transition: inherit;
}

.btn-menu__icon::before {
    transform: translateY(-0.25em) rotate(0);
}

.btn-menu__icon::after {
    transform: translateY(0.25em) rotate(0);
}

.btn-menu.is-active .btn-menu__icon {
    background-size: 0% 100%;
}

.btn-menu.is-active .btn-menu__icon::before {
    transform: translateY(0) rotate(45deg);
}

.btn-menu.is-active .btn-menu__icon::after {
    transform: translateY(0) rotate(-45deg);
}

.container {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container,
    .container-sm {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container,
    .container-sm,
    .container-md {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container,
    .container-sm,
    .container-md,
    .container-lg {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl,
    .container-xxl {
        max-width: 1320px;
    }
}

:root {
    font-size: 16px;
}

html {
    box-sizing: border-box;
    height: 100%;
}

html.is-open {
    overflow: hidden;
}

html.is-open body {
    overflow: hidden;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: #fff;
    color: #8a8b8d;
    margin: 0;
    padding: var(--header-height-mobile) 0 0;
    font-family: "Open Sans", sans-serif;
    line-height: 1.375;
    height: 100%;
}

@media (min-width: 992px) {
    body {
        padding: var(--header-height) 0 0;
    }
}

a {
    color: #5f9be3;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

@media (min-width: 576px) {
    a:hover,
    a:active,
    a:focus {
        color: #ebab39;
        text-decoration: none;
    }
}

strong,
b {
    font-weight: 700;
}

p {
    margin: 0 0 24px;
}

.h1,
.hero__title,
.img-text__title,
.team__title,
.h2,
.h3,
.course__title,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.h1,
.hero__title,
.img-text__title,
.team__title,
h1 {
    color: #5f9be3;
    font-size: 1.625rem;
    margin: 0 0 16px;
}

@media (min-width: 768px) {
    .h1,
    .hero__title,
    .img-text__title,
    .team__title,
    h1 {
        font-size: 1.75rem;
        margin: 0 0 32px;
    }
}

.h2,
h2 {
    color: #447bbe;
    font-size: 1.25rem;
    margin: 0 0 16px;
}

@media (min-width: 768px) {
    .h2,
    h2 {
        font-size: 1.5rem;
        margin: 0 0 32px;
    }
}

.h3,
.course__title,
h3 {
    color: #5f9be3;
    font-size: 1.125rem;
    margin: 0 0 6px;
}

@media (min-width: 768px) {
    .h3,
    .course__title,
    h3 {
        font-size: 1.25rem;
        margin: 0 0 12px;
    }
}

.h4,
h4 {
    font-size: 1.125rem;
    margin: 0 0 12px;
}

.h5,
h5 {
    font-size: 1rem;
    margin: 0 0 12px;
}

.h6,
h6 {
    font-size: 1rem;
    margin: 0 0 12px;
}

img,
.img {
    max-width: 100%;
}

@font-face {
    font-family: "Icons";
    src: url("../fonts/Icons.ttf?vv6w93") format("truetype"), url("../fonts/Icons.woff?vv6w93") format("woff"), url("../fonts/Icons.svg?vv6w93#Icons") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
} 
 :root {
    --header-height: 97px;
    --header-height-mobile: 80px;
}

:root {
    --swiper-theme-color: #d8d8d8;
}

:root {
    --swiper-navigation-size: 44px;
    /*
    --swiper-navigation-color: var(--swiper-theme-color);
    */
}
}

