:root {
    --bg-primary: #ffffff;
    --border-color: #d4d8df;
    --text-white: #d4d8df;
    /*--text-secondary: #747474;*/
    --text-secondary: #6E6E6E;
    --blue-grey: #666C8A;
    --lt-blue: #00aaff;
    --text-primary: #2a3c60;
    --accent-blue: #2a3c60;
    /*--text-lightblue: #1691a5;*/
    /*--text-lightblue: #147F90;*/
    --text-lightblue: #127787;
    /*--lt-purple: #557cc7;*/
    --lt-purple: #4B75C3;
    --md-purple: #4e5d7b;
    --accent-yellow: #f9bb32;
    --accent-yellow-hover: #ffcb63;
    --bt-radius: 8px;
    --padding-pc: 15px;
    --padding-mt: 10px;
    --padding-pc2: 30px;
    --padding-mt2: 20px;
    --col-width: 8.333%;
    --box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
    --size: calc(100vw / 1920);
    --size-txt: calc(100vw / 1450);
}

.screen-reader-text {
    border: 0;
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}
.screen-reader-text:focus {
    background-color: #ddd;
    clip-path: none;
    color: #444;
    display: block;
    font-size: 1em;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/** Set up scroll padding and margin for focused elements for accessibility fix - paired with function in main.min.js with the note 'Set CSS Variable for Header Offset' */
html {
    scroll-padding-top: 100px;
}
:focus {
    scroll-margin-top: 100px;
}


.animwords .dir i,
.button__menu.opened .sp2,
.header__container a.header__logo .logo_white,
.header__container a.header__logo span {
    opacity: 0;
}
.animwords .dir {
    display: inline-block;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    margin: -30px 0;
}
.animwords .dir .b {
    width: 100%;
    height: 60%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-102%, -50%);
    background-color: var(--main-color);
    transition: all 0.5s cubic-bezier(1, -0.005, 0.015, 0.995);
    z-index: 2;
}
.animwords .dir i {
    font-style: normal;
    display: inline-block;
    transition: all 0.5s cubic-bezier(0, 0.49, 0.015, 0.995);
}
.animwords .dir.dir-t i {
    transform: translateY(-100%);
}
.animwords .dir.dir-b i {
    transform: translateY(100%);
}
.animwords .dir.dir-r i {
    transform: translateX(30px);
}
.animwords__animate .animwords .dir .b {
    transform: translate(102%, -50%);
}
.animwords__animate .animwords .dir i,
.animwords__animate .animwords .dir.dir-b i,
.animwords__animate .animwords .dir.dir-t i {
    opacity: 1;
    transform: translateY(0);
}
.animwords__animate .animwords .dir.dir-r i {
    opacity: 1;
    transform: translateX(0);
}
.button__cd {
    margin: -10px;
    width: calc(100% + 20px);
    display: flex;
    flex-wrap: wrap;
}
.button__cd.button__cd-center {
    justify-content: center;
}
.button {
    padding: 16px 36px;
    width: 100%;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-yellow);
    border-radius: var(--bt-radius);
    min-height: 58px;
    margin: 10px;
    transition: all 150ms linear;
}
.button.button--arrow:after,
.button.button--back:before {
    font-size: 14px;
    font-family: icomoon !important;
    font-weight: 400 !important;
    text-transform: none !important;
    content: "\e90a";
    transition: all 150ms ease-out;
    display: inline-block;
}
.button.button--arrow:after {
    margin: 0 0 0 8px;
}
.button.button--back:before {
    margin: 0 8px 0 0;
    transform: scaleX(-1);
}
.button.button--white {
    color: #fff;
    background: rgba(255, 255, 255, 0.3);
}
.button.button--yelow-light {
    background: #fef1d6;
}
.button.button--blue {
    color: #fff;
    background: var(--lt-purple);
}
.button.button--blue-light {
    background: rgba(42, 60, 96, 0.15);
}
.button.button--dark {
    color: #fff;
    background: rgba(42, 60, 96, 0.3);
}
.button__confirm {
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%;
    border-radius: 32px;
    background-color: var(--lt-purple);
    padding: 16px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
}
@media (min-width: 380px) {
    .button {
        width: auto;
    }
}
@media (min-width: 768px) {
    .button:hover {
        background-color: var(--accent-yellow-hover);
    }
    .button:hover.button-arrow:after {
        transform: translateX(3px);
    }
    .button:hover.button--back:before {
        transform: translateX(-3px) scaleX(-1);
    }
    .button--white {
        color: #fff;
        background: rgba(255, 255, 255, 0.3);
    }
    .button--blue-light:hover,
    .button--blue:hover,
    .button--dark:hover,
    .button--white:hover {
        color: var(--text-primary);
        background-color: var(--accent-yellow);
    }
}
.grid-block {
    margin: 80px 0;
}
.grid-block--blue {
    background-color: #eef1f9;
    padding: 80px 0;
    margin: 0;
}
.grid-block.grid-block__color,
.grid-block__color {
    padding: 80px 0;
    margin: 0;
    border-bottom: 1px solid var(--border-color);
}
.grid-block__bg {
    background-color: var(--text-lightblue);
}
.grid-block__container,
.grid-block__container-md-sm,
.grid-block__container-sm,
.grid-block__container-sm-md {
    padding: 0 var(--padding-mt2);
}
.grid-block__box {
    min-height: 50vh;
    border: 1px solid green;
}
.grid-block__hr {
    margin: 0 0 80px;
}
.grid-block__hr:last-child {
    display: none;
}
.grid-block__colorcd {
    padding: 80px 0;
    margin: 0 20px;
    width: calc(100% - 40px);
}
@media (min-width: 768px) {
    .grid-block,
    .grid-block__hr {
        border-bottom: 1px solid var(--border-color);
    }
    .grid-block {
        margin-top: 0;
        margin-bottom: 0;
        padding: 80px 0;
    }
    .grid-block__colorcd {
        padding: 80px 0;
        margin: 0 30px;
        width: calc(100% - 60px);
    }
    .grid-block--blue,
    .grid-block__color {
        margin-top: -1px;
        position: relative;
        z-index: 2;
    }
    .grid-block--blue {
        border: 0;
    }
    .grid-block__color {
        padding: 80px 30px;
    }
    .grid-block__container {
        padding: 0 var(--padding-pc2);
    }
    .grid-block__container-sm {
        padding: 0 calc(var(--padding-pc2) * 2);
    }
    .grid-block__container-md-sm,
    .grid-block__container-sm-md {
        padding: 0 var(--padding-pc2);
    }
    .grid-block__hr {
        padding: 80px 0 0;
        margin: 0 0 80px;
    }
    .grid-block__hr:last-child {
        display: none;
    }
}
@media (min-width: 1024px) {
    .grid-block__hr {
        padding: 100px 0 0;
        margin: 0 0 100px;
    }
    .grid-block__hr:last-child {
        display: none;
    }
    .grid-block__colorcd {
        margin: 0 calc(100 * var(--size));
        padding: 100px 0;
        width: calc(100% - var(--size) * 200);
    }
    .grid-block {
        margin: 0;
        border-bottom: 1px solid var(--border-color);
        position: relative;
        padding: 100px 0;
    }
    .grid-block:after,
    .grid-block:before {
        content: " ";
        position: absolute;
        top: 0;
        height: 100%;
        width: 1px;
        z-index: 2;
    }
    .grid-block:before {
        left: calc(100 * var(--size));
        border-left: 1px solid var(--border-color);
    }
    .grid-block:after {
        right: calc(100 * var(--size));
        border-right: 1px solid var(--border-color);
    }
    .grid-block-vm {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }
    .grid-block__bg {
        left: calc(100 * var(--size)) !important;
        width: calc(100% - var(--size) * 200) !important;
    }
    .grid-block--blue {
        border: 0;
        margin-top: -1px;
        position: relative;
        z-index: 2;
    }
    .grid-block__container {
        padding: 0 calc(200 * var(--size));
    }
    .grid-block__container-md-sm,
    .grid-block__container-sm,
    .grid-block__container-sm-md {
        padding: 0 calc(300 * var(--size));
    }
    .grid-block__row {
        display: flex;
        flex-wrap: wrap;
        margin: 0 calc(-34 * var(--size));
        width: calc(100% + var(--size) * 68);
    }
    .grid-block__col {
        width: 50%;
        flex: 0 0 50%;
        padding: 0 calc(34 * var(--size));
    }
}
@media (min-width: 1024px) and (max-width: 1200px) {
    .grid-block__container-md-sm {
        padding: 0 calc(200 * var(--size));
    }
    .grid-block__col-md {
        width: calc(50% + var(--size) * 100);
        flex: 0 0 calc(50% + var(--size) * 100);
        margin-left: calc(-100 * var(--size));
    }
    .grid-block__col-md:last-child {
        margin-left: initial;
        margin-right: calc(-100 * var(--size));
    }
}
.header {
    position: fixed;
    left: 0;
    top: 0;
    height: 72px;
    z-index: 100;
    width: 100%;
}
.header__container {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}
.header__container:after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    content: " ";
    border-bottom: 1px solid rgba(19, 25, 38, 0.05);
    z-index: 6;
    transition: all 150ms linear;
}
.header__container:before {
    position: absolute;
    content: " ";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 2;
    transition: background-color 150ms linear;
}
.header__container a.header__logo {
    width: 190px;
    height: 50px;
    z-index: 5;
}
.header__container a.header__logo img {
    transition: 0.3s linear;
    object-fit: contain;
    object-position: left center;
}
.button__menu {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color 150ms linear;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 7;
    cursor: pointer;
    width: 24px;
    height: 21px;
    pointer-events: all;
    padding: 0;
}
.button__menu .cls,
.button__menu span {
    display: none;
}
.button__menu .sp {
    position: relative;
    width: 28px;
    height: 21px;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.button__menu .sp1,
.button__menu .sp2,
.button__menu .sp3 {
    width: 100%;
    height: 3px;
    transition: all 0.3s ease-in-out;
    display: block;
    transform-origin: right center;
    position: relative;
}
.button__menu .sp1:before,
.button__menu .sp2:before,
.button__menu .sp3:before {
    border-radius: 999px;
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent-yellow);
    transition: all 0.3s ease-in-out;
}
.header.header--transparent:not(.not-top) .header__container:before,
a,
button {
    background-color: transparent;
}
.button__menu.opened .sp1 {
    transform: translateY(9px);
}
.button__menu.opened .sp1:before {
    transform: rotate(45deg);
}
.button__menu.opened .sp3 {
    transform: translateY(-9px);
}
.button__menu.opened .sp3:before {
    transform: rotate(-45deg);
}
.header.header--transparent:not(.not-top) .header__container:after {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.header.header--transparent:not(.not-top) .header__container a.header__logo .logo_white {
    opacity: 1;
}
.header.header--transparent:not(.not-top) .header__container a.header__logo .logo_color,
.header.header--transparent:not(.not-top).header--colorlogo .header__container a.header__logo .logo_white {
    opacity: 0;
}
.header.header--transparent:not(.not-top).header--colorlogo .header__container a.header__logo .logo_color {
    opacity: 1;
}
.header.header--transparent:not(.not-top) .button__menu .sp1:before,
.header.header--transparent:not(.not-top) .button__menu .sp2:before,
.header.header--transparent:not(.not-top) .button__menu .sp3:before {
    background-color: #fff;
}
.header__menuin > ul > li:last-child a {
    border-radius: var(--bt-radius);
    background-color: var(--accent-yellow);
    text-align: center;
    width: 100%;
    padding: 16px 20px;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    max-width: 360px;
    margin: 0 auto;
}
@media (max-width: 767px) {
    .header__menu,
    .header__menuin {
        position: absolute;
        left: 0;
        top: 0;
    }
    .header__menu {
        pointer-events: none;
        width: 100%;
        height: 100vh;
        overflow: hidden;
    }
    .header__menuin {
        transform: translateY(calc(-100% - 30px));
        transition: transform 0.5s cubic-bezier(1, 0, 0.15, 1.005);
    }
    .header__menuin ul {
        display: flex;
        flex-direction: column;
        padding: 90px 20px 80px;
        background: #fff;
        box-shadow: 0 20px 30px 0 rgba(19, 25, 38, 0.4);
    }
    .header__menuin ul li {
        margin: 30px 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
    }
    .header__menuin ul li a {
        color: var(--text-primary);
        font-weight: 600;
        line-height: 24px;
        font-size: 25px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .header__menuin ul li.has-childs > a:after {
        color: var(--accent-yellow);
        content: "\f107";
        font-family: icomoon !important;
        font-weight: 400 !important;
        text-transform: none !important;
        margin: 0 0 0 10px;
    }
    .header__menuin ul li.has-childs.opened > a:after {
        transform: scaleY(-1);
    }
    .header__menuin ul li.has-childs.opened ul {
        height: auto;
    }
    .header__menuin ul li ul {
        padding: 0;
        height: 0;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        width: 100%;
        box-shadow: none;
    }
    .header__menuin ul li ul li {
        width: 100%;
    }
    .header__menuin ul li ul li a.mainbt {
        font-size: 20px;
        padding: 8px 0;
        margin: 0;
    }
    .header__menuin ul ul.child {
        margin: 18px 0;
    }
    .header__menuin ul ul.child li {
        margin: 0;
    }
    .mt-menu-opened .header__menu {
        pointer-events: all;
    }
    .mt-menu-opened .header__menuin {
        transform: translateY(0);
    }
    .mt-menu-opened .header.header--transparent:not(.not-top) .header__container:after {
        border-bottom: 1px solid rgba(19, 25, 38, 0.05);
    }
    .mt-menu-opened .header.header--transparent:not(.not-top) .header__container a.header__logo .logo_white {
        opacity: 0;
    }
    .mt-menu-opened .header.header--transparent:not(.not-top) .header__container a.header__logo .logo_color {
        opacity: 1;
    }
    .mt-menu-opened .header.header--transparent:not(.not-top) .button__menu .sp1:before,
    .mt-menu-opened .header.header--transparent:not(.not-top) .button__menu .sp2:before,
    .mt-menu-opened .header.header--transparent:not(.not-top) .button__menu .sp3:before {
        background-color: var(--accent-yellow);
    }
    .has-childs.opened > .child {
        transform: none !important;
    }

}
@media (min-width: 768px) {
    .header {
        height: 80px;
    }
    .header__container {
        padding: 0 30px;
        height: 80px;
        align-items: center;
    }
    .header__container a.header__logo {
        width: 246px;
        height: 54px;
    }
    .button__menu {
        display: none;
    }
    .header__menu {
        position: relative;
        z-index: 7;
    }
    .header__menu .header__menuin > ul {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
    .header__menu .header__menuin > ul > li {
        margin: 0 15px;
        position: relative;
    }
    .header__menu .header__menuin > ul > li:last-child {
        margin-right: 0;
    }
    .header__menu .header__menuin > ul > li > a {
        color: var(--text-primary);
        font-weight: 600;
        line-height: 1.33em;
        font-size: 16px;
        transition: all 150ms linear;
    }
    .header__menu .header__menuin > ul > li > a:hover {
        color: var(--accent-yellow-hover);
    }
    .header__menu .header__menuin > ul > li:last-of-type > a:hover {
        background-color: var(--accent-yellow-hover);
        color: var(--text-primary);
    }
    .header__menu .header__menuin > ul > li:last-child > a {
        font-size: 16px;
        padding: 16px 20px;
        min-height: initial;
    }
    .header__menu .header__menuin > ul > li.has-childs > a:after {
        color: var(--accent-yellow);
        content: "\f107";
        font-family: icomoon !important;
        font-weight: 400 !important;
        text-transform: none !important;
        margin: 0 0 0 10px;
    }
    .header__menu .header__menuin > ul > li.has-childs ul {
        /*pointer-events: none;*/
        opacity: 0;
        visibility: hidden;
        position: absolute;
        left: 50%;
        transform: translateX(-50%) scale(0.97) translateY(-20px);
        top: calc(100% - 16px);
        border-radius: 8px;
        background-color: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(8px);
        /*overflow: hidden;*/
        display: flex;
        flex-direction: column;
        width: 160px;
        z-index: 2;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        transition: all 0.2s ease-out;
    }
    /* Handle 3rd level menu */
    .header__menu .header__menuin > ul > li.has-childs ul > li.has-childs ul {
        left: 241px;
        top: calc(100% - 30px);
        overflow: hidden;
        opacity: 0;
    }
    .header__menu .header__menuin > ul > li.has-childs ul li {
        position: relative;
        padding: 0;
        margin: 0;
        box-sizing: content-box;
        width: 100%;
    }
    .header__menu .header__menuin > ul > li.has-childs ul li:hover {
        background-color: #fafafa;
        border-radius: 8px;
    }
    .header__menu .header__menuin > ul > li.has-childs ul li a {
        width: 100%;
        padding: 16px 20px;
        justify-content: space-between;
        align-items: center;
        align-self: stretch;
        color: #2a3c60 !important;
        font-size: 16px;
        font-weight: 600;
        line-height: 1.6em;
        height: initial !important;
        transition: all 150ms linear;
        background-color: transparent;
        border-top: 1px solid #6d80bf;
        display: inline-flex;
    }
    .header__menu .header__menuin > ul > li.has-childs ul li a {
        border-radius: 0 0 8px 8px;
    }
    /*.header__menu .header__menuin > ul > li:first-of-type.has-childs ul li:first-of-type a {*/
    /*    border-radius: 0 0 8px 8px;*/
    /*}*/
    .header__menu .header__menuin > ul > li.has-childs ul li:first-of-type a {
        border-radius: 8px 8px 0 0;
    }
    .header__menu .header__menuin > ul > li.has-childs ul li.has-childs a:after {
        width: 16px;
        height: 16px;
        content: " ";
        background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M6 12L10 8L6 4" stroke="%23B8BECA" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
        background-position: center center;
        background-repeat: no-repeat;
    }
    .header__menu .header__menuin > ul > li.has-childs ul li.has-childs ul li a:after {
        background-image: none;
    }
    .header__menu .header__menuin > ul > li.has-childs ul li a:hover {
        background-color: #fafafa;
        color: var(--accent-yellow) !important;
        border-top: 1px solid #6d80bf;
    }
    /*.header__menu .header__menuin > ul > li.has-childs ul li:first-child a {*/
    /*    border-color: transparent !important;*/
    /*}*/
    .header__menu .header__menuin > ul > li.has-childs:hover > a {
        color: var(--accent-yellow);
    }
    .header__menu .header__menuin > ul > li.has-childs:hover > a:after {
        transform: scaleY(-1);
    }
    .header__menu .header__menuin > ul > li.has-childs:hover ul {
        opacity: 1;
        pointer-events: all;
        transform: translateX(-50%);
    }
    .header__menuin {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
    .header.header--transparent:not(.not-top) .header__menu > .header__menuin > ul > li > a {
        color: #fff;
    }
    .header.header--transparent:not(.not-top) .header__menu > .header__menuin > ul > li > a.active-hover,
    .header.header--transparent:not(.not-top) .header__menu > .header__menuin > ul > li > a:hover {
        color: var(--accent-yellow);
    }
    .header.header--transparent:not(.not-top) .header__menu > .header__menuin > ul > li:last-child a {
        color: #fff;
    }
    .header.header--transparent:not(.not-top) .header__menu > .header__menuin > ul > li:last-child a:last-child {
        background-color: rgba(255, 255, 255, 0.3);
    }
    .header.header--transparent:not(.not-top) .header__menu > .header__menuin > ul > li:last-child a:last-child:hover {
        background-color: var(--accent-yellow-hover);
    }
    .header__menu .header__menuin > ul > li:not(:last-child) > a {
        display: flex;
        align-items: center;
        height: 80px;
        position: relative;
    }
    .header__menu .header__menuin > ul > li:not(:last-child) > a.active-hover:before {
        content: " ";
        width: 100%;
        height: 2px;
        background-color: var(--accent-yellow);
        position: absolute;
        left: 0;
        bottom: 0;
    }
    .header__menuin ul li.has-childs > a {
        pointer-events: none;
    }
    .has-childs.opened > .child {
        opacity: 1 !important;
        pointer-events: all !important;
        transform: translateX(-50%) !important;
    }
}

/* HANDLE MENU ITEMS WITH CHILDREN */
.has-childs:hover > .child,
.has-childs:focus-within > .child {
    display: flex;
}

button,
hr,
input {
    overflow: visible;
}
@media (min-width: 1024px) {
    .header__menu ul li:not(:last-child) a {
        height: 100px;
    }
    .header.not-top .header__menu ul li:not(:last-child) a {
        height: 70px;
    }
    .header,
    .header__container {
        height: 100px;
        transition: all 150ms ease-out;
    }
    .header__container {
        padding: 0 calc(20px + var(--size) * 100);
    }
    .header__menu .header__menuin > ul > li {
        margin: 0 30px;
    }
    .header__menu .header__menuin > ul > li:last-child {
        margin-right: 0;
    }
    .header__menu .header__menuin > ul > li a {
        font-size: 18px;
    }
    .header__menu .header__menuin > ul > li:last-child a {
        font-size: 18px;
        padding: 16px 36px;
    }
    .header.not-top,
    .header.not-top .header__container {
        height: 70px;
    }
}
h3,
h4,
h5,
h6 {
    margin: 20px 0;
}
.header__banner {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    padding: 5px 20px;
    background-color: var(--accent-blue);
    text-align: center;
    opacity: 0;
    color: #fff;
}
[type="checkbox"],
[type="radio"],
legend {
    padding: 0;
    box-sizing: border-box;
}
.header__banner a {
    text-decoration: underline !important;
    color: #fff;
    font-weight: 700;
}
.header__banner.show {
    pointer-events: all;
    opacity: 1;
    z-index: 101;
}
.scr-grid-a,
.slick-slide.dragging img {
    pointer-events: none;
} /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}
details,
main {
    display: block;
}
hr {
    box-sizing: content-box;
    height: 0;
}
code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}
abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted;
}
b,
strong {
    font-weight: bolder;
}
small {
    font-size: 80%;
}
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}
sub {
    bottom: -0.25em;
}
sup {
    top: -0.5em;
}
img {
    border-style: none;
}
button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}
button,
select {
    text-transform: none;
}
[type="button"],
[type="reset"],
[type="submit"],
button {
    -webkit-appearance: button;
}
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
    border-style: none;
    padding: 0;
}
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring,
button:-moz-focusring {
    outline: ButtonText dotted 1px;
}
fieldset {
    padding: 0.35em 0.75em 0.625em;
}
legend {
    color: inherit;
    display: table;
    max-width: 100%;
    white-space: normal;
}
progress {
    vertical-align: baseline;
}
textarea {
    overflow: auto;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}
[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}
::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.2em;
}
summary {
    display: list-item;
}
[hidden],
template {
    display: none;
}
.scr-grid-a {
    display: block;
    position: fixed;
    border-left: 1px dashed rgba(255, 0, 0, 0.1);
    border-right: 1px dashed rgba(255, 0, 0, 0.1);
    left: 50%;
    top: 0;
    width: calc(100% - 40px);
    height: 100%;
    z-index: 9999;
    transform: translateX(-50%);
}
@media (min-width: 767px) {
    .scr-grid-a {
        width: calc(100% - 60px);
    }
    .scr-grid-b {
        display: block;
        position: fixed;
        border-left: 1px dashed rgba(255, 0, 0, 0.1);
        border-right: 1px dashed rgba(255, 0, 0, 0.1);
        left: 50%;
        top: 0;
        width: calc(100% - 120px);
        height: 100%;
        z-index: 9999;
        pointer-events: none;
        transform: translateX(-50%);
    }
}
@media (min-width: 1023px) {
    .scr-grid-a {
        width: calc(100% - var(--size) * 200);
    }
    .scr-grid-b {
        width: calc(100% - var(--size) * 400);
    }
    .scr-grid-c {
        display: block;
        position: fixed;
        border-left: 1px dashed rgba(255, 0, 0, 0.1);
        border-right: 1px dashed rgba(255, 0, 0, 0.1);
        left: 50%;
        top: 0;
        width: calc(100% - var(--size) * 600);
        height: 100%;
        z-index: 9999;
        pointer-events: none;
        transform: translateX(-50%);
    }
}
h1 {
    font-size: 32px;
    margin: 28px 0;
}
h1 i {
    font-style: normal;
}
@media (min-width: 768px) {
    h1 {
        font-size: clamp(32px, calc(var(--size-txt) * 72), 72px);
        margin: 40px 0;
    }
}
h2 {
    font-size: 25px;
    margin: 20px 0 40px;
}
@media (min-width: 768px) {
    h2 {
        font-size: clamp(25px, calc(var(--size-txt) * 40), 40px);
    }
}
h3 {
    font-size: 25px;
}
@media (min-width: 768px) {
    h3 {
        font-size: clamp(22px, calc(var(--size-txt) * 32), 32px);
    }
}
h4,
h5,
h6 {
    font-size: 20px;
}
@media (min-width: 768px) {
    h4,
    h5,
    h6 {
        font-size: clamp(20px, calc(var(--size-txt) * 25), 25px);
    }
}
p {
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 400;
    margin: 40px 0;
    line-height: 1.6em;
}
.title,
.title a {
    color: var(--text-lightblue);
}
p.perex {
    font-size: 18px;
    line-height: 1.7em;
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child,
ol:first-child,
p:first-child,
ul:first-child {
    margin-top: 0;
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
ol:last-child,
p:last-child,
ul:last-child {
    margin-bottom: 0;
}
.title {
    margin: 20px 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2em;
    letter-spacing: 2.6px;
    text-transform: uppercase;
}
.title a {
    position: relative;
    z-index: 10;
    text-decoration: none;
    transition: color 150ms linear;
}
.title a:hover {
    color: var(--accent-yellow);
}
.title--white {
    color: #fff;
}
.title--yellow,
.title--yellow a {
    color: var(--accent-yellow);
}
.title--teal,
.title--teal a {
    color: var(--text-lightblue);
}
.cases-item-big .title--yellow,
.cases-item-big .title--yellow a,
.cases-item .title--yellow,
.cases-item .title--yellow a {
    color: var(--text-primary);
}
.title--yellow a:hover,
body,
button {
    color: var(--text-primary);
}
html {
    margin: 0 !important;
}
body {
    font-family: "Golos Text";
    margin: 0;
    font-size: 18px;
    background-color: var(--bg-primary);
    font-weight: 400;
}
body:before {
    content: " ";
    position: fixed;
    left: 100%;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4);
    z-index: 500;
    opacity: 0;
    transition: opacity 0.3s linear;
}
body.loading:before {
    left: 0;
    opacity: 1;
}
.js__anim__item,
.lazy {
    opacity: 0;
}
#wpadminbar {
    position: fixed;
    top: initial !important;
    left: 0;
    bottom: 0 !important;
}
.text-center {
    text-align: center;
}
.add_after:after,
.add_before:before {
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
img.cover {
    object-fit: cover;
}
img.contain {
    object-fit: contain;
}
* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    outline-style: none;
}
a,
a:hover,
a:link,
a:visited {
    outline: 0;
    text-decoration: none;
    box-shadow: none;
    transition: .3s;
}
a:focus-visible,
.slick-active:focus-visible,
.slick-arrow:focus-visible,
#slick-slide-control00:focus-visible {
    outline: 2px solid var(--lt-blue) !important;
    outline-offset: 4px;
}
.hero-slider__slide:focus-visible,
.slick-active:focus-visible {
    border: 2px solid var(--lt-blue) !important;
    outline: 2px solid var(--lt-blue) !important;
    outline-offset: 4px;
}
.bootstrap-select .dropdown-toggle:focus,
:focus,
button,
button:active,
button:focus,
input:active,
input:focus,
select:active,
select:focus,
textarea:active,
textarea:focus {
    outline: 0 !important;
}
button {
    box-shadow: none;
    border-radius: 0;
    border: 0;
}
.overflow_hidden {
    overflow: hidden;
}
body.stopScroll,
html.stopScroll {
    overflow: hidden !important;
}
body.stopScroll.stopScroll-form,
html.stopScroll.stopScroll-form {
    height: 100%;
}
.hidden {
    display: none !important;
}
.df,
.row {
    display: flex;
}
@media (max-width: 1100px) {
    body.mt {
        cursor: pointer;
    }
}
.w100 {
    width: 100%;
}
.container {
    width: 100%;
    max-width: var(--container-width);
    padding: 0 calc(var(--padding-mt) * 2);
    margin: 0 auto;
}
.row {
    flex-wrap: wrap;
    width: calc(100% + var(--padding-mt) * 2);
    margin: 0 calc(var(--padding-mt) * -1);
}
@media (min-width: 768px) {
    .container {
        padding: 0 calc(var(--padding-pc) * 2);
    }
    .row {
        margin: 0 calc(var(--padding-pc) * -1);
        width: calc(100% + var(--padding-pc) * 2);
    }
}
.df-xc {
    justify-content: center;
}
.df-xs {
    justify-content: flex-start;
}
.df-xe {
    justify-content: flex-end;
}
.df-yc {
    align-items: center;
}
.df-ys {
    align-items: flex-start;
}
.df-ye {
    align-items: flex-end;
}
.df-wrap {
    flex-wrap: wrap;
}
.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9 {
    width: var(--col-width);
    padding: var(--padding-mt);
}
.slick-list,
ul,
ul li {
    margin: 0;
    padding: 0;
}
.col-1 {
    width: calc(var(--col-width) * 1);
}
.col-2 {
    width: calc(var(--col-width) * 2);
}
.col-3 {
    width: calc(var(--col-width) * 3);
}
.col-4 {
    width: calc(var(--col-width) * 4);
}
.col-5 {
    width: calc(var(--col-width) * 5);
}
.col-6 {
    width: calc(var(--col-width) * 6);
}
.col-7 {
    width: calc(var(--col-width) * 7);
}
.col-8 {
    width: calc(var(--col-width) * 8);
}
.col-9 {
    width: calc(var(--col-width) * 9);
}
.col-10 {
    width: calc(var(--col-width) * 10);
}
.col-11 {
    width: calc(var(--col-width) * 11);
}
.col-12 {
    width: calc(var(--col-width) * 12);
}
@media (min-width: 768px) {
    .col-md-1 {
        width: calc(var(--col-width) * 1);
    }
    .col-md-2 {
        width: calc(var(--col-width) * 2);
    }
    .col-md-3 {
        width: calc(var(--col-width) * 3);
    }
    .col-md-4 {
        width: calc(var(--col-width) * 4);
    }
    .col-md-5 {
        width: calc(var(--col-width) * 5);
    }
    .col-md-6 {
        width: calc(var(--col-width) * 6);
    }
    .col-md-7 {
        width: calc(var(--col-width) * 7);
    }
    .col-md-8 {
        width: calc(var(--col-width) * 8);
    }
    .col-md-9 {
        width: calc(var(--col-width) * 9);
    }
    .col-md-10 {
        width: calc(var(--col-width) * 10);
    }
    .col-md-11 {
        width: calc(var(--col-width) * 11);
    }
    .col-md-12 {
        width: calc(var(--col-width) * 12);
    }
}
.abs,
div {
    width: 100%;
}
ul {
    list-style: none;
}
.relative {
    position: relative;
}
.abs {
    position: absolute !important;
    left: 0;
    top: 0;
    height: 100%;
}
.slick-list,
.slick-slider,
.slick-track {
    position: relative;
    display: block;
}
@font-face {
    font-display: swap;
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/golos-text-v4-latin_latin-ext-regular.woff2) format("woff2");
}
@font-face {
    font-display: swap;
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 500;
    src: url(../fonts/golos-text-v4-latin_latin-ext-500.woff2) format("woff2");
}
@font-face {
    font-display: swap;
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 600;
    src: url(../fonts/golos-text-v4-latin_latin-ext-600.woff2) format("woff2");
}
@font-face {
    font-display: swap;
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 700;
    src: url(../fonts/golos-text-v4-latin_latin-ext-700.woff2) format("woff2");
}
@font-face {
    font-display: swap;
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 800;
    src: url(../fonts/golos-text-v4-latin_latin-ext-800.woff2) format("woff2");
}
@font-face {
    font-display: swap;
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 900;
    src: url(../fonts/golos-text-v4-latin_latin-ext-900.woff2) format("woff2");
}
@font-face {
    font-family: icomoon;
    src: url(../fonts/icons/icomoon.eot?gvqq4);
    src:
            url(../fonts/icons/icomoon.eot?gvqq4#iefix) format("embedded-opentype"),
            url(../fonts/icons/icomoon.ttf?gvqq4) format("truetype"),
            url(../fonts/icons/icomoon.woff?gvqq4) format("woff"),
            url(../fonts/icons/icomoon.svg?gvqq4#icomoon) format("svg");
    font-weight: 400;
    font-style: normal;
    font-display: block;
}
[class*=" icon-"],
[class^="icon-"] {
    font-family: icomoon !important;
    speak: never;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.icon-check1:before {
    content: "\e909";
}
.icon-access_time:before {
    content: "\e906";
}
.icon-close:before {
    content: "\e908";
}
.icon-time:before {
    content: "\e905";
}
.icon-wallet1:before {
    content: "\e904";
}
.icon-search:before {
    content: "\e90b";
}
.icon-arrow-kpcs:before {
    content: "\e90a";
}
.icon-process-arrow:before {
    content: "\e907";
}
.icon-link1:before {
    content: "\e902";
}
.icon-cash:before,
.icon-money:before,
.icon-wallet:before {
    content: "\e903";
}
.icon-share:before {
    content: "\e901";
}
.icon-arrow:before {
    content: "\e900";
}
.icon-envelope-o:before {
    content: "\f003";
}
.icon-star:before {
    content: "\f005";
}
.icon-check:before {
    content: "\f00c";
}
.icon-map-marker:before {
    content: "\f041";
}
.icon-play:before {
    content: "\f04b";
}
.icon-calendar:before {
    content: "\f073";
}
.icon-facebook-square:before {
    content: "\f082";
}
.icon-linkedin-square:before {
    content: "\f08c";
}
.icon-twitter:before {
    content: "\f099";
}
.icon-facebook-f:before,
.icon-facebook:before {
    content: "\f09a";
}
.icon-chain:before,
.icon-link:before {
    content: "\f0c1";
}
.icon-envelope:before {
    content: "\f0e0";
}
.icon-linkedin:before {
    content: "\f0e1";
}
.icon-angle-left:before {
    content: "\f104";
}
.icon-angle-right:before {
    content: "\f105";
}
.icon-angle-up:before {
    content: "\f106";
}
.icon-angle-down:before {
    content: "\f107";
}
.icon-play-circle:before {
    content: "\f144";
}
.icon-youtube-play:before {
    content: "\f16a";
}
.icon-instagram:before {
    content: "\f16d";
}
.icon-long-arrow-down:before {
    content: "\f175";
}
.icon-long-arrow-up:before {
    content: "\f176";
}
.icon-long-arrow-left:before {
    content: "\f177";
}
.icon-long-arrow-right:before {
    content: "\f178";
}
.icon-dribbble:before {
    content: "\f17d";
}
.icon-free-code-camp:before {
    content: "\f2c5";
}
.slick-slider {
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.slick-list {
    overflow: hidden;
}
.slick-list:focus {
    outline: 0;
}
.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}
.slick-slider .slick-list,
.slick-slider .slick-track {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.slick-track {
    left: 0;
    top: 0;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:after,
.slick-track:before {
    content: "";
    display: table;
}
.slick-track:after {
    clear: both;
}
.slick-loading .slick-track {
    visibility: hidden;
}
.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none;
}
[dir="rtl"] .slick-slide {
    float: right;
}
.slick-slide img {
    display: block;
}
.slick-slide.slick-loading img {
    display: none;
}
.slick-initialized .slick-slide {
    display: block;
}
.slick-loading .slick-slide {
    visibility: hidden;
}
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
