@charset "UTF-8";
/**
 * Accordion v3.3.4
 * Lightweight and accessible accordion module created in pure Javascript
 * https://github.com/michu2k/Accordion
 *
 * Copyright (c) Michał Strumpf
 * Published under MIT License
 */
.ac {
    margin-top: 8px;
    border: 1px solid #eee;
    background-color: #fff;
    box-sizing: border-box
}
.ac .ac-header {
    margin: 0;
    padding: 0
}
.ac .ac-trigger {
    font: bold 16px Arial, sans-serif;
    color: #111;
    text-align: left;
    width: 100%;
    padding: 8px 32px 8px 8px;
    display: block;
    cursor: pointer;
    background-color: transparent;
    transition: color .25s ease;
    position: relative;
    text-decoration: none;
    margin: 0;
    border: 0
}
.ac .ac-trigger::after {
    content: "+";
    text-align: center;
    width: 15px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    position: absolute;
    right: 10px;
    top: 50%
}
.ac .ac-trigger:focus {
    color: #8a8a8a
}
.ac .ac-panel {
    overflow: hidden;
    transition-property: height, visibility;
    transition-timing-function: ease
}
.ac .ac-panel .ac-text {
    font: 15px/24px Arial, sans-serif;
    color: #111;
    padding: 8px;
    margin: 0
}
.ac.js-enabled .ac-panel {
    visibility: hidden
}
.ac.is-active .ac-panel {
    visibility: visible
}
.ac.is-active > .ac-header .ac-trigger::after {
    content: "–"
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */ html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%
}
body {
    margin: 0
}
main {
    display: block
}
h1 {
    font-size: 2em;
    margin: .67em 0
}
hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible
}
pre {
    font-family: monospace, monospace;
    font-size: 1em
}
a {
    background-color: transparent
}
abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}
b, strong {
    font-weight: bolder
}
code, kbd, samp {
    font-family: monospace, monospace;
    font-size: 1em
}
small {
    font-size: 80%
}
sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}
sub {
    bottom: -.25em
}
sup {
    top: -.5em
}
img {
    border-style: none
}
button, input, optgroup, select, textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}
button, input {
    overflow: visible
}
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: 1px dotted ButtonText
}
fieldset {
    padding: .35em .75em .625em
}
legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal
}
progress {
    vertical-align: baseline
}
textarea {
    overflow: auto
}
[type=checkbox], [type=radio] {
    box-sizing: border-box;
    padding: 0
}
[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
}
details {
    display: block
}
summary {
    display: list-item
}
[hidden], template {
    display: none
}
@font-face {
    font-family: FSAlbert;
    src: url("../fonts/FSAlbertWeb-Regular.woff") format("woff")
}
@font-face {
    font-family: icomoon;
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/icomoon.woff?yuzzw2) format("woff")
}
[class*=" icon-"], [class^=icon-] {
    font-family: icomoon !important;
    speak: none;
    font-feature-settings: normal;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    line-height: 1;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}
.icon-chevron-down:before {
    content: "\e908"
}
.icon-cross:before {
    content: "\e90d"
}
.icon-chevron-up:before {
    content: "\e911"
}
.icon-chevron-left:before {
    content: "\e912"
}
.icon-chevron-right:before {
    content: "\e913"
}
[data-aos][data-aos][data-aos-duration="50"], body[data-aos-duration="50"] [data-aos] {
    transition-duration: 50ms
}
[data-aos][data-aos][data-aos-delay="50"], body[data-aos-delay="50"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="50"].aos-animate, body[data-aos-delay="50"] [data-aos].aos-animate {
    transition-delay: 50ms
}
[data-aos][data-aos][data-aos-duration="100"], body[data-aos-duration="100"] [data-aos] {
    transition-duration: .1s
}
[data-aos][data-aos][data-aos-delay="100"], body[data-aos-delay="100"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="100"].aos-animate, body[data-aos-delay="100"] [data-aos].aos-animate {
    transition-delay: .1s
}
[data-aos][data-aos][data-aos-duration="150"], body[data-aos-duration="150"] [data-aos] {
    transition-duration: .15s
}
[data-aos][data-aos][data-aos-delay="150"], body[data-aos-delay="150"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="150"].aos-animate, body[data-aos-delay="150"] [data-aos].aos-animate {
    transition-delay: .15s
}
[data-aos][data-aos][data-aos-duration="200"], body[data-aos-duration="200"] [data-aos] {
    transition-duration: .2s
}
[data-aos][data-aos][data-aos-delay="200"], body[data-aos-delay="200"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="200"].aos-animate, body[data-aos-delay="200"] [data-aos].aos-animate {
    transition-delay: .2s
}
[data-aos][data-aos][data-aos-duration="250"], body[data-aos-duration="250"] [data-aos] {
    transition-duration: .25s
}
[data-aos][data-aos][data-aos-delay="250"], body[data-aos-delay="250"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="250"].aos-animate, body[data-aos-delay="250"] [data-aos].aos-animate {
    transition-delay: .25s
}
[data-aos][data-aos][data-aos-duration="300"], body[data-aos-duration="300"] [data-aos] {
    transition-duration: .3s
}
[data-aos][data-aos][data-aos-delay="300"], body[data-aos-delay="300"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="300"].aos-animate, body[data-aos-delay="300"] [data-aos].aos-animate {
    transition-delay: .3s
}
[data-aos][data-aos][data-aos-duration="350"], body[data-aos-duration="350"] [data-aos] {
    transition-duration: .35s
}
[data-aos][data-aos][data-aos-delay="350"], body[data-aos-delay="350"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="350"].aos-animate, body[data-aos-delay="350"] [data-aos].aos-animate {
    transition-delay: .35s
}
[data-aos][data-aos][data-aos-duration="400"], body[data-aos-duration="400"] [data-aos] {
    transition-duration: .4s
}
[data-aos][data-aos][data-aos-delay="400"], body[data-aos-delay="400"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="400"].aos-animate, body[data-aos-delay="400"] [data-aos].aos-animate {
    transition-delay: .4s
}
[data-aos][data-aos][data-aos-duration="450"], body[data-aos-duration="450"] [data-aos] {
    transition-duration: .45s
}
[data-aos][data-aos][data-aos-delay="450"], body[data-aos-delay="450"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="450"].aos-animate, body[data-aos-delay="450"] [data-aos].aos-animate {
    transition-delay: .45s
}
[data-aos][data-aos][data-aos-duration="500"], body[data-aos-duration="500"] [data-aos] {
    transition-duration: .5s
}
[data-aos][data-aos][data-aos-delay="500"], body[data-aos-delay="500"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="500"].aos-animate, body[data-aos-delay="500"] [data-aos].aos-animate {
    transition-delay: .5s
}
[data-aos][data-aos][data-aos-duration="550"], body[data-aos-duration="550"] [data-aos] {
    transition-duration: .55s
}
[data-aos][data-aos][data-aos-delay="550"], body[data-aos-delay="550"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="550"].aos-animate, body[data-aos-delay="550"] [data-aos].aos-animate {
    transition-delay: .55s
}
[data-aos][data-aos][data-aos-duration="600"], body[data-aos-duration="600"] [data-aos] {
    transition-duration: .6s
}
[data-aos][data-aos][data-aos-delay="600"], body[data-aos-delay="600"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="600"].aos-animate, body[data-aos-delay="600"] [data-aos].aos-animate {
    transition-delay: .6s
}
[data-aos][data-aos][data-aos-duration="650"], body[data-aos-duration="650"] [data-aos] {
    transition-duration: .65s
}
[data-aos][data-aos][data-aos-delay="650"], body[data-aos-delay="650"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="650"].aos-animate, body[data-aos-delay="650"] [data-aos].aos-animate {
    transition-delay: .65s
}
[data-aos][data-aos][data-aos-duration="700"], body[data-aos-duration="700"] [data-aos] {
    transition-duration: .7s
}
[data-aos][data-aos][data-aos-delay="700"], body[data-aos-delay="700"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="700"].aos-animate, body[data-aos-delay="700"] [data-aos].aos-animate {
    transition-delay: .7s
}
[data-aos][data-aos][data-aos-duration="750"], body[data-aos-duration="750"] [data-aos] {
    transition-duration: .75s
}
[data-aos][data-aos][data-aos-delay="750"], body[data-aos-delay="750"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="750"].aos-animate, body[data-aos-delay="750"] [data-aos].aos-animate {
    transition-delay: .75s
}
[data-aos][data-aos][data-aos-duration="800"], body[data-aos-duration="800"] [data-aos] {
    transition-duration: .8s
}
[data-aos][data-aos][data-aos-delay="800"], body[data-aos-delay="800"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="800"].aos-animate, body[data-aos-delay="800"] [data-aos].aos-animate {
    transition-delay: .8s
}
[data-aos][data-aos][data-aos-duration="850"], body[data-aos-duration="850"] [data-aos] {
    transition-duration: .85s
}
[data-aos][data-aos][data-aos-delay="850"], body[data-aos-delay="850"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="850"].aos-animate, body[data-aos-delay="850"] [data-aos].aos-animate {
    transition-delay: .85s
}
[data-aos][data-aos][data-aos-duration="900"], body[data-aos-duration="900"] [data-aos] {
    transition-duration: .9s
}
[data-aos][data-aos][data-aos-delay="900"], body[data-aos-delay="900"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="900"].aos-animate, body[data-aos-delay="900"] [data-aos].aos-animate {
    transition-delay: .9s
}
[data-aos][data-aos][data-aos-duration="950"], body[data-aos-duration="950"] [data-aos] {
    transition-duration: .95s
}
[data-aos][data-aos][data-aos-delay="950"], body[data-aos-delay="950"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="950"].aos-animate, body[data-aos-delay="950"] [data-aos].aos-animate {
    transition-delay: .95s
}
[data-aos][data-aos][data-aos-duration="1000"], body[data-aos-duration="1000"] [data-aos] {
    transition-duration: 1s
}
[data-aos][data-aos][data-aos-delay="1000"], body[data-aos-delay="1000"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="1000"].aos-animate, body[data-aos-delay="1000"] [data-aos].aos-animate {
    transition-delay: 1s
}
[data-aos][data-aos][data-aos-duration="1050"], body[data-aos-duration="1050"] [data-aos] {
    transition-duration: 1.05s
}
[data-aos][data-aos][data-aos-delay="1050"], body[data-aos-delay="1050"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="1050"].aos-animate, body[data-aos-delay="1050"] [data-aos].aos-animate {
    transition-delay: 1.05s
}
[data-aos][data-aos][data-aos-duration="1100"], body[data-aos-duration="1100"] [data-aos] {
    transition-duration: 1.1s
}
[data-aos][data-aos][data-aos-delay="1100"], body[data-aos-delay="1100"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="1100"].aos-animate, body[data-aos-delay="1100"] [data-aos].aos-animate {
    transition-delay: 1.1s
}
[data-aos][data-aos][data-aos-duration="1150"], body[data-aos-duration="1150"] [data-aos] {
    transition-duration: 1.15s
}
[data-aos][data-aos][data-aos-delay="1150"], body[data-aos-delay="1150"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="1150"].aos-animate, body[data-aos-delay="1150"] [data-aos].aos-animate {
    transition-delay: 1.15s
}
[data-aos][data-aos][data-aos-duration="1200"], body[data-aos-duration="1200"] [data-aos] {
    transition-duration: 1.2s
}
[data-aos][data-aos][data-aos-delay="1200"], body[data-aos-delay="1200"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="1200"].aos-animate, body[data-aos-delay="1200"] [data-aos].aos-animate {
    transition-delay: 1.2s
}
[data-aos][data-aos][data-aos-duration="1250"], body[data-aos-duration="1250"] [data-aos] {
    transition-duration: 1.25s
}
[data-aos][data-aos][data-aos-delay="1250"], body[data-aos-delay="1250"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="1250"].aos-animate, body[data-aos-delay="1250"] [data-aos].aos-animate {
    transition-delay: 1.25s
}
[data-aos][data-aos][data-aos-duration="1300"], body[data-aos-duration="1300"] [data-aos] {
    transition-duration: 1.3s
}
[data-aos][data-aos][data-aos-delay="1300"], body[data-aos-delay="1300"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="1300"].aos-animate, body[data-aos-delay="1300"] [data-aos].aos-animate {
    transition-delay: 1.3s
}
[data-aos][data-aos][data-aos-duration="1350"], body[data-aos-duration="1350"] [data-aos] {
    transition-duration: 1.35s
}
[data-aos][data-aos][data-aos-delay="1350"], body[data-aos-delay="1350"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="1350"].aos-animate, body[data-aos-delay="1350"] [data-aos].aos-animate {
    transition-delay: 1.35s
}
[data-aos][data-aos][data-aos-duration="1400"], body[data-aos-duration="1400"] [data-aos] {
    transition-duration: 1.4s
}
[data-aos][data-aos][data-aos-delay="1400"], body[data-aos-delay="1400"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="1400"].aos-animate, body[data-aos-delay="1400"] [data-aos].aos-animate {
    transition-delay: 1.4s
}
[data-aos][data-aos][data-aos-duration="1450"], body[data-aos-duration="1450"] [data-aos] {
    transition-duration: 1.45s
}
[data-aos][data-aos][data-aos-delay="1450"], body[data-aos-delay="1450"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="1450"].aos-animate, body[data-aos-delay="1450"] [data-aos].aos-animate {
    transition-delay: 1.45s
}
[data-aos][data-aos][data-aos-duration="1500"], body[data-aos-duration="1500"] [data-aos] {
    transition-duration: 1.5s
}
[data-aos][data-aos][data-aos-delay="1500"], body[data-aos-delay="1500"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="1500"].aos-animate, body[data-aos-delay="1500"] [data-aos].aos-animate {
    transition-delay: 1.5s
}
[data-aos][data-aos][data-aos-duration="1550"], body[data-aos-duration="1550"] [data-aos] {
    transition-duration: 1.55s
}
[data-aos][data-aos][data-aos-delay="1550"], body[data-aos-delay="1550"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="1550"].aos-animate, body[data-aos-delay="1550"] [data-aos].aos-animate {
    transition-delay: 1.55s
}
[data-aos][data-aos][data-aos-duration="1600"], body[data-aos-duration="1600"] [data-aos] {
    transition-duration: 1.6s
}
[data-aos][data-aos][data-aos-delay="1600"], body[data-aos-delay="1600"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="1600"].aos-animate, body[data-aos-delay="1600"] [data-aos].aos-animate {
    transition-delay: 1.6s
}
[data-aos][data-aos][data-aos-duration="1650"], body[data-aos-duration="1650"] [data-aos] {
    transition-duration: 1.65s
}
[data-aos][data-aos][data-aos-delay="1650"], body[data-aos-delay="1650"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="1650"].aos-animate, body[data-aos-delay="1650"] [data-aos].aos-animate {
    transition-delay: 1.65s
}
[data-aos][data-aos][data-aos-duration="1700"], body[data-aos-duration="1700"] [data-aos] {
    transition-duration: 1.7s
}
[data-aos][data-aos][data-aos-delay="1700"], body[data-aos-delay="1700"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="1700"].aos-animate, body[data-aos-delay="1700"] [data-aos].aos-animate {
    transition-delay: 1.7s
}
[data-aos][data-aos][data-aos-duration="1750"], body[data-aos-duration="1750"] [data-aos] {
    transition-duration: 1.75s
}
[data-aos][data-aos][data-aos-delay="1750"], body[data-aos-delay="1750"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="1750"].aos-animate, body[data-aos-delay="1750"] [data-aos].aos-animate {
    transition-delay: 1.75s
}
[data-aos][data-aos][data-aos-duration="1800"], body[data-aos-duration="1800"] [data-aos] {
    transition-duration: 1.8s
}
[data-aos][data-aos][data-aos-delay="1800"], body[data-aos-delay="1800"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="1800"].aos-animate, body[data-aos-delay="1800"] [data-aos].aos-animate {
    transition-delay: 1.8s
}
[data-aos][data-aos][data-aos-duration="1850"], body[data-aos-duration="1850"] [data-aos] {
    transition-duration: 1.85s
}
[data-aos][data-aos][data-aos-delay="1850"], body[data-aos-delay="1850"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="1850"].aos-animate, body[data-aos-delay="1850"] [data-aos].aos-animate {
    transition-delay: 1.85s
}
[data-aos][data-aos][data-aos-duration="1900"], body[data-aos-duration="1900"] [data-aos] {
    transition-duration: 1.9s
}
[data-aos][data-aos][data-aos-delay="1900"], body[data-aos-delay="1900"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="1900"].aos-animate, body[data-aos-delay="1900"] [data-aos].aos-animate {
    transition-delay: 1.9s
}
[data-aos][data-aos][data-aos-duration="1950"], body[data-aos-duration="1950"] [data-aos] {
    transition-duration: 1.95s
}
[data-aos][data-aos][data-aos-delay="1950"], body[data-aos-delay="1950"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="1950"].aos-animate, body[data-aos-delay="1950"] [data-aos].aos-animate {
    transition-delay: 1.95s
}
[data-aos][data-aos][data-aos-duration="2000"], body[data-aos-duration="2000"] [data-aos] {
    transition-duration: 2s
}
[data-aos][data-aos][data-aos-delay="2000"], body[data-aos-delay="2000"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="2000"].aos-animate, body[data-aos-delay="2000"] [data-aos].aos-animate {
    transition-delay: 2s
}
[data-aos][data-aos][data-aos-duration="2050"], body[data-aos-duration="2050"] [data-aos] {
    transition-duration: 2.05s
}
[data-aos][data-aos][data-aos-delay="2050"], body[data-aos-delay="2050"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="2050"].aos-animate, body[data-aos-delay="2050"] [data-aos].aos-animate {
    transition-delay: 2.05s
}
[data-aos][data-aos][data-aos-duration="2100"], body[data-aos-duration="2100"] [data-aos] {
    transition-duration: 2.1s
}
[data-aos][data-aos][data-aos-delay="2100"], body[data-aos-delay="2100"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="2100"].aos-animate, body[data-aos-delay="2100"] [data-aos].aos-animate {
    transition-delay: 2.1s
}
[data-aos][data-aos][data-aos-duration="2150"], body[data-aos-duration="2150"] [data-aos] {
    transition-duration: 2.15s
}
[data-aos][data-aos][data-aos-delay="2150"], body[data-aos-delay="2150"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="2150"].aos-animate, body[data-aos-delay="2150"] [data-aos].aos-animate {
    transition-delay: 2.15s
}
[data-aos][data-aos][data-aos-duration="2200"], body[data-aos-duration="2200"] [data-aos] {
    transition-duration: 2.2s
}
[data-aos][data-aos][data-aos-delay="2200"], body[data-aos-delay="2200"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="2200"].aos-animate, body[data-aos-delay="2200"] [data-aos].aos-animate {
    transition-delay: 2.2s
}
[data-aos][data-aos][data-aos-duration="2250"], body[data-aos-duration="2250"] [data-aos] {
    transition-duration: 2.25s
}
[data-aos][data-aos][data-aos-delay="2250"], body[data-aos-delay="2250"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="2250"].aos-animate, body[data-aos-delay="2250"] [data-aos].aos-animate {
    transition-delay: 2.25s
}
[data-aos][data-aos][data-aos-duration="2300"], body[data-aos-duration="2300"] [data-aos] {
    transition-duration: 2.3s
}
[data-aos][data-aos][data-aos-delay="2300"], body[data-aos-delay="2300"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="2300"].aos-animate, body[data-aos-delay="2300"] [data-aos].aos-animate {
    transition-delay: 2.3s
}
[data-aos][data-aos][data-aos-duration="2350"], body[data-aos-duration="2350"] [data-aos] {
    transition-duration: 2.35s
}
[data-aos][data-aos][data-aos-delay="2350"], body[data-aos-delay="2350"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="2350"].aos-animate, body[data-aos-delay="2350"] [data-aos].aos-animate {
    transition-delay: 2.35s
}
[data-aos][data-aos][data-aos-duration="2400"], body[data-aos-duration="2400"] [data-aos] {
    transition-duration: 2.4s
}
[data-aos][data-aos][data-aos-delay="2400"], body[data-aos-delay="2400"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="2400"].aos-animate, body[data-aos-delay="2400"] [data-aos].aos-animate {
    transition-delay: 2.4s
}
[data-aos][data-aos][data-aos-duration="2450"], body[data-aos-duration="2450"] [data-aos] {
    transition-duration: 2.45s
}
[data-aos][data-aos][data-aos-delay="2450"], body[data-aos-delay="2450"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="2450"].aos-animate, body[data-aos-delay="2450"] [data-aos].aos-animate {
    transition-delay: 2.45s
}
[data-aos][data-aos][data-aos-duration="2500"], body[data-aos-duration="2500"] [data-aos] {
    transition-duration: 2.5s
}
[data-aos][data-aos][data-aos-delay="2500"], body[data-aos-delay="2500"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="2500"].aos-animate, body[data-aos-delay="2500"] [data-aos].aos-animate {
    transition-delay: 2.5s
}
[data-aos][data-aos][data-aos-duration="2550"], body[data-aos-duration="2550"] [data-aos] {
    transition-duration: 2.55s
}
[data-aos][data-aos][data-aos-delay="2550"], body[data-aos-delay="2550"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="2550"].aos-animate, body[data-aos-delay="2550"] [data-aos].aos-animate {
    transition-delay: 2.55s
}
[data-aos][data-aos][data-aos-duration="2600"], body[data-aos-duration="2600"] [data-aos] {
    transition-duration: 2.6s
}
[data-aos][data-aos][data-aos-delay="2600"], body[data-aos-delay="2600"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="2600"].aos-animate, body[data-aos-delay="2600"] [data-aos].aos-animate {
    transition-delay: 2.6s
}
[data-aos][data-aos][data-aos-duration="2650"], body[data-aos-duration="2650"] [data-aos] {
    transition-duration: 2.65s
}
[data-aos][data-aos][data-aos-delay="2650"], body[data-aos-delay="2650"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="2650"].aos-animate, body[data-aos-delay="2650"] [data-aos].aos-animate {
    transition-delay: 2.65s
}
[data-aos][data-aos][data-aos-duration="2700"], body[data-aos-duration="2700"] [data-aos] {
    transition-duration: 2.7s
}
[data-aos][data-aos][data-aos-delay="2700"], body[data-aos-delay="2700"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="2700"].aos-animate, body[data-aos-delay="2700"] [data-aos].aos-animate {
    transition-delay: 2.7s
}
[data-aos][data-aos][data-aos-duration="2750"], body[data-aos-duration="2750"] [data-aos] {
    transition-duration: 2.75s
}
[data-aos][data-aos][data-aos-delay="2750"], body[data-aos-delay="2750"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="2750"].aos-animate, body[data-aos-delay="2750"] [data-aos].aos-animate {
    transition-delay: 2.75s
}
[data-aos][data-aos][data-aos-duration="2800"], body[data-aos-duration="2800"] [data-aos] {
    transition-duration: 2.8s
}
[data-aos][data-aos][data-aos-delay="2800"], body[data-aos-delay="2800"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="2800"].aos-animate, body[data-aos-delay="2800"] [data-aos].aos-animate {
    transition-delay: 2.8s
}
[data-aos][data-aos][data-aos-duration="2850"], body[data-aos-duration="2850"] [data-aos] {
    transition-duration: 2.85s
}
[data-aos][data-aos][data-aos-delay="2850"], body[data-aos-delay="2850"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="2850"].aos-animate, body[data-aos-delay="2850"] [data-aos].aos-animate {
    transition-delay: 2.85s
}
[data-aos][data-aos][data-aos-duration="2900"], body[data-aos-duration="2900"] [data-aos] {
    transition-duration: 2.9s
}
[data-aos][data-aos][data-aos-delay="2900"], body[data-aos-delay="2900"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="2900"].aos-animate, body[data-aos-delay="2900"] [data-aos].aos-animate {
    transition-delay: 2.9s
}
[data-aos][data-aos][data-aos-duration="2950"], body[data-aos-duration="2950"] [data-aos] {
    transition-duration: 2.95s
}
[data-aos][data-aos][data-aos-delay="2950"], body[data-aos-delay="2950"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="2950"].aos-animate, body[data-aos-delay="2950"] [data-aos].aos-animate {
    transition-delay: 2.95s
}
[data-aos][data-aos][data-aos-duration="3000"], body[data-aos-duration="3000"] [data-aos] {
    transition-duration: 3s
}
[data-aos][data-aos][data-aos-delay="3000"], body[data-aos-delay="3000"] [data-aos] {
    transition-delay: 0
}
[data-aos][data-aos][data-aos-delay="3000"].aos-animate, body[data-aos-delay="3000"] [data-aos].aos-animate {
    transition-delay: 3s
}
[data-aos][data-aos][data-aos-easing=linear], body[data-aos-easing=linear] [data-aos] {
    transition-timing-function: cubic-bezier(.25, .25, .75, .75)
}
[data-aos][data-aos][data-aos-easing=ease], body[data-aos-easing=ease] [data-aos] {
    transition-timing-function: ease
}
[data-aos][data-aos][data-aos-easing=ease-in], body[data-aos-easing=ease-in] [data-aos] {
    transition-timing-function: ease-in
}
[data-aos][data-aos][data-aos-easing=ease-out], body[data-aos-easing=ease-out] [data-aos] {
    transition-timing-function: ease-out
}
[data-aos][data-aos][data-aos-easing=ease-in-out], body[data-aos-easing=ease-in-out] [data-aos] {
    transition-timing-function: ease-in-out
}
[data-aos][data-aos][data-aos-easing=ease-in-back], body[data-aos-easing=ease-in-back] [data-aos] {
    transition-timing-function: cubic-bezier(.6, -.28, .735, .045)
}
[data-aos][data-aos][data-aos-easing=ease-out-back], body[data-aos-easing=ease-out-back] [data-aos] {
    transition-timing-function: cubic-bezier(.175, .885, .32, 1.275)
}
[data-aos][data-aos][data-aos-easing=ease-in-out-back], body[data-aos-easing=ease-in-out-back] [data-aos] {
    transition-timing-function: cubic-bezier(.68, -.55, .265, 1.55)
}
[data-aos][data-aos][data-aos-easing=ease-in-sine], body[data-aos-easing=ease-in-sine] [data-aos] {
    transition-timing-function: cubic-bezier(.47, 0, .745, .715)
}
[data-aos][data-aos][data-aos-easing=ease-out-sine], body[data-aos-easing=ease-out-sine] [data-aos] {
    transition-timing-function: cubic-bezier(.39, .575, .565, 1)
}
[data-aos][data-aos][data-aos-easing=ease-in-out-sine], body[data-aos-easing=ease-in-out-sine] [data-aos] {
    transition-timing-function: cubic-bezier(.445, .05, .55, .95)
}
[data-aos][data-aos][data-aos-easing=ease-in-quad], body[data-aos-easing=ease-in-quad] [data-aos] {
    transition-timing-function: cubic-bezier(.55, .085, .68, .53)
}
[data-aos][data-aos][data-aos-easing=ease-out-quad], body[data-aos-easing=ease-out-quad] [data-aos] {
    transition-timing-function: cubic-bezier(.25, .46, .45, .94)
}
[data-aos][data-aos][data-aos-easing=ease-in-out-quad], body[data-aos-easing=ease-in-out-quad] [data-aos] {
    transition-timing-function: cubic-bezier(.455, .03, .515, .955)
}
[data-aos][data-aos][data-aos-easing=ease-in-cubic], body[data-aos-easing=ease-in-cubic] [data-aos] {
    transition-timing-function: cubic-bezier(.55, .085, .68, .53)
}
[data-aos][data-aos][data-aos-easing=ease-out-cubic], body[data-aos-easing=ease-out-cubic] [data-aos] {
    transition-timing-function: cubic-bezier(.25, .46, .45, .94)
}
[data-aos][data-aos][data-aos-easing=ease-in-out-cubic], body[data-aos-easing=ease-in-out-cubic] [data-aos] {
    transition-timing-function: cubic-bezier(.455, .03, .515, .955)
}
[data-aos][data-aos][data-aos-easing=ease-in-quart], body[data-aos-easing=ease-in-quart] [data-aos] {
    transition-timing-function: cubic-bezier(.55, .085, .68, .53)
}
[data-aos][data-aos][data-aos-easing=ease-out-quart], body[data-aos-easing=ease-out-quart] [data-aos] {
    transition-timing-function: cubic-bezier(.25, .46, .45, .94)
}
[data-aos][data-aos][data-aos-easing=ease-in-out-quart], body[data-aos-easing=ease-in-out-quart] [data-aos] {
    transition-timing-function: cubic-bezier(.455, .03, .515, .955)
}
[data-aos^=fade][data-aos^=fade] {
    opacity: 0;
    transition-property: opacity, transform
}
[data-aos^=fade][data-aos^=fade].aos-animate {
    opacity: 1;
    transform: translateZ(0)
}
[data-aos=fade-up] {
    transform: translate3d(0, 100px, 0)
}
[data-aos=fade-down] {
    transform: translate3d(0, -100px, 0)
}
[data-aos=fade-right] {
    transform: translate3d(-100px, 0, 0)
}
[data-aos=fade-left] {
    transform: translate3d(100px, 0, 0)
}
[data-aos=fade-up-right] {
    transform: translate3d(-100px, 100px, 0)
}
[data-aos=fade-up-left] {
    transform: translate3d(100px, 100px, 0)
}
[data-aos=fade-down-right] {
    transform: translate3d(-100px, -100px, 0)
}
[data-aos=fade-down-left] {
    transform: translate3d(100px, -100px, 0)
}
[data-aos^=zoom][data-aos^=zoom] {
    opacity: 0;
    transition-property: opacity, transform
}
[data-aos^=zoom][data-aos^=zoom].aos-animate {
    opacity: 1;
    transform: translateZ(0) scale(1)
}
[data-aos=zoom-in] {
    transform: scale(.6)
}
[data-aos=zoom-in-up] {
    transform: translate3d(0, 100px, 0) scale(.6)
}
[data-aos=zoom-in-down] {
    transform: translate3d(0, -100px, 0) scale(.6)
}
[data-aos=zoom-in-right] {
    transform: translate3d(-100px, 0, 0) scale(.6)
}
[data-aos=zoom-in-left] {
    transform: translate3d(100px, 0, 0) scale(.6)
}
[data-aos=zoom-out] {
    transform: scale(1.2)
}
[data-aos=zoom-out-up] {
    transform: translate3d(0, 100px, 0) scale(1.2)
}
[data-aos=zoom-out-down] {
    transform: translate3d(0, -100px, 0) scale(1.2)
}
[data-aos=zoom-out-right] {
    transform: translate3d(-100px, 0, 0) scale(1.2)
}
[data-aos=zoom-out-left] {
    transform: translate3d(100px, 0, 0) scale(1.2)
}
[data-aos^=slide][data-aos^=slide] {
    transition-property: transform
}
[data-aos^=slide][data-aos^=slide].aos-animate {
    transform: translateZ(0)
}
[data-aos=slide-up] {
    transform: translate3d(0, 100%, 0)
}
[data-aos=slide-down] {
    transform: translate3d(0, -100%, 0)
}
[data-aos=slide-right] {
    transform: translate3d(-100%, 0, 0)
}
[data-aos=slide-left] {
    transform: translate3d(100%, 0, 0)
}
[data-aos^=flip][data-aos^=flip] {
    backface-visibility: hidden;
    transition-property: transform
}
[data-aos=flip-left] {
    transform: perspective(2500px) rotateY(-100deg)
}
[data-aos=flip-left].aos-animate {
    transform: perspective(2500px) rotateY(0)
}
[data-aos=flip-right] {
    transform: perspective(2500px) rotateY(100deg)
}
[data-aos=flip-right].aos-animate {
    transform: perspective(2500px) rotateY(0)
}
[data-aos=flip-up] {
    transform: perspective(2500px) rotateX(-100deg)
}
[data-aos=flip-up].aos-animate {
    transform: perspective(2500px) rotateX(0)
}
[data-aos=flip-down] {
    transform: perspective(2500px) rotateX(100deg)
}
[data-aos=flip-down].aos-animate {
    transform: perspective(2500px) rotateX(0)
}
@font-face {
    font-family: swiper-icons;
    font-style: normal;
    font-weight: 400;
    src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff")
}
:root {
    --swiper-theme-color: #007aff
}
:host {
    display: block;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1
}
.swiper {
    display: block;
    list-style: none;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    padding: 0;
    position: relative;
    z-index: 1
}
.swiper-vertical > .swiper-wrapper {
    flex-direction: column
}
.swiper-wrapper {
    box-sizing: content-box;
    display: flex;
    height: 100%;
    position: relative;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, ease);
    transition-timing-function: ease;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    width: 100%;
    z-index: 1
}
.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
    transform: translateZ(0)
}
.swiper-horizontal {
    touch-action: pan-y
}
.swiper-vertical {
    touch-action: pan-x
}
.swiper-slide {
    display: block;
    flex-shrink: 0;
    height: 100%;
    position: relative;
    transition-property: transform;
    width: 100%
}
.swiper-slide-invisible-blank {
    visibility: hidden
}
.swiper-autoheight, .swiper-autoheight .swiper-slide {
    height: auto
}
.swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height
}
.swiper-backface-hidden .swiper-slide {
    backface-visibility: hidden;
    transform: translateZ(0)
}
.swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px
}
.swiper-3d .swiper-wrapper {
    transform-style: preserve-3d
}
.swiper-3d {
    perspective: 1200px
}
.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide {
    transform-style: preserve-3d
}
.swiper-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
    display: none
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
    scroll-snap-type: x mandatory
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
    scroll-snap-type: y mandatory
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
    scroll-snap-type: none
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: none
}
.swiper-css-mode.swiper-centered > .swiper-wrapper:before {
    content: "";
    flex-shrink: 0;
    order: 9999
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: center center;
    scroll-snap-stop: always
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
    margin-left: var(--swiper-centered-offset-before)
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper:before {
    height: 100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after)
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
    margin-top: var(--swiper-centered-offset-before)
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper:before {
    height: var(--swiper-centered-offset-after);
    min-width: 1px;
    width: 100%
}
.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10
}
.swiper-3d .swiper-slide-shadow {
    background: rgba(0, 0, 0, .15)
}
.swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(270deg, rgba(0, 0, 0, .5), transparent)
}
.swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, .5), transparent)
}
.swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, .5), transparent)
}
.swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, .5), transparent)
}
.swiper-lazy-preloader {
    border: 4px solid #007aff;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top: 4px solid transparent;
    box-sizing: border-box;
    height: 42px;
    left: 50%;
    margin-left: -21px;
    margin-top: -21px;
    position: absolute;
    top: 50%;
    transform-origin: 50%;
    width: 42px;
    z-index: 10
}
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s linear infinite
}
.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff
}
.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000
}
@keyframes swiper-preloader-spin {
    0% {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(1turn)
    }
}
html {
    box-sizing: border-box
}
*, :after, :before {
    box-sizing: inherit
}
.resize-active * {
    transition: none !important
}
.visually-hidden {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px
}
.visually-hidden.focusable:active, .visually-hidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    white-space: inherit;
    width: auto
}
.header-menu-list, .list-unstyled {
    list-style: none;
    margin: 0;
    padding: 0
}
.bg-primary {
    background-color: #0c417f !important
}
.bg-light {
    background-color: #f5f5f5 !important
}
.bg-light-blue {
    background-color: #e5f3f9 !important
}
.bg-dark {
    background-color: #071d2c !important
}
.bg-dark-gray {
    background-color: #353535 !important
}
.bg-white {
    background-color: #fff !important
}
.text-white {
    color: #fff !important
}
.text-danger {
    color: #dc3a3a !important
}
.text-center {
    text-align: center !important
}
.overflow-hidden {
    overflow: hidden !important
}
.w-100 {
    width: 100% !important
}
.z-1 {
    z-index: 1 !important
}
.z-2 {
    z-index: 2 !important
}
.z-3 {
    z-index: 3 !important
}
.rounded {
    border-radius: 16px
}
.pb-0 {
    padding-bottom: 0 !important
}
@font-face {
    font-display: swap;
    font-family: Core Circus;
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/CoreCircus.woff2) format("woff2"), url(../fonts/CoreCircus.woff) format("woff")
}
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #0a2c44;
    font-family: arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5
}
a {
    color: #008dc8;
    -webkit-text-decoration: underline;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .35s cubic-bezier(.3, .86, .36, .95)
}
a:hover {
    color: #005d85;
    -webkit-text-decoration: none;
    text-decoration: none
}
dl, ol, p, ul {
    margin: 0 0 1.2em
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-family: 'FSAlbert', arial, sans-serif;
    ;
    font-weight: 400;
    font-weight: 500;
    line-height: 1.3;
    margin: 0 0 .6em
}
.h1, h1 {
    font-size: 32px
}
.h1, .h2, h1, h2 {
    line-height: 1.3
}
.h2, h2 {
    font-size: 28px
}
.h3, h3 {
    line-height: 1.3
}
.h3, .h4, h3, h4 {
    font-size: 24px
}
.h5, .h6, h5, h6 {
    font-size: 18px
}
.h6, h6 {
    font-weight: 600
}
input[type=email], input[type=tel], input[type=text], textarea {
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid;
    border-radius: 0;
    min-width: 0;
    padding: 1.2rem 2.4rem;
    transition: border-color .35s cubic-bezier(.3, .86, .36, .95);
    width: 100%
}
input[type=email]:focus, input[type=email]:hover, input[type=tel]:focus, input[type=tel]:hover, input[type=text]:focus, input[type=text]:hover, textarea:focus, textarea:hover {
    box-shadow: none;
    outline: none
}
.header {
    background-color: #fff;
    border-bottom: 2px solid #00a09d;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100
}
.header.bg-primary a, .header.bg-primary a:hover {
    color: #fff
}
.header.bg-primary .btn:hover {
    background-color: transparent;
    border-color: #fff;
    color: #fff
}
.header.bg-primary .header-toggle span, .header.bg-primary .header-toggle:after, .header.bg-primary .header-toggle:before {
    background-color: #fff
}
.header.bg-primary .header-logo {
    display: none
}
.header.bg-primary .logo-mobile {
    align-items: center;
    display: flex
}
.header-inner {
    padding: 12px 20px;
    position: relative
}
.header-row {
    align-items: center;
    display: flex;
    gap: 20px
}
.header .logo-mobile, .header-logo {
    flex: 0 0 154px
}
.header-logo img {
    vertical-align: top;
    width: 100%
}
.header-menu {
    color: #0a2c44;
    font-size: 16px;
    letter-spacing: -.16px;
    line-height: 1.5
}
.header-menu-list a {
    color: #0c417f;
    display: block;
    font-weight: 700;
    padding: 12px 10px;
    -webkit-text-decoration: none;
    text-decoration: none
}
.header-menu-list a:hover {
    color: #26b4e9;
    -webkit-text-decoration: underline;
    text-decoration: underline
}
.header-btns {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: auto;
    padding-top: 20px
}
.header-btns > * {
    flex: 1 1 auto
}
.header-toggle {
    background: none;
    border: 0;
    height: 32px;
    margin-left: auto;
    position: relative;
    width: 48px;
    z-index: 99
}
.header-toggle:after, .header-toggle:before {
    content: "";
    transform-origin: left
}
.header-toggle span, .header-toggle:after, .header-toggle:before {
    background: #0a2c44;
    border-radius: 2px;
    height: 2px;
    left: 11px;
    position: absolute;
    right: 11px;
    transition: background .35s cubic-bezier(.3, .86, .36, .95), transform .35s cubic-bezier(.3, .86, .36, .95), opacity .35s cubic-bezier(.3, .86, .36, .95)
}
.header-toggle:before {
    top: 7px
}
.header-toggle:after {
    bottom: 7px
}
.header-toggle span {
    top: 50%;
    transform: translateY(-50%)
}
.mobile-menu-active .header-toggle span, .mobile-menu-active .header-toggle:after, .mobile-menu-active .header-toggle:before {
    background: #fff
}
.mobile-menu-active .header-toggle span {
    opacity: 0
}
.mobile-menu-active .header-toggle:before {
    transform: rotate(45deg)
}
.mobile-menu-active .header-toggle:after {
    transform: translateY(2px) rotate(-45deg)
}
.header-toggle-icon {
    display: block
}
.header-toggle-icon-close, .mobile-menu-active .header-toggle-icon-open {
    display: none
}
.mobile-menu-active .header-toggle-icon-close {
    display: block
}
.header .btn-basket:hover path {
    stroke: #fff
}
.header .btn-basket svg path {
    transition: stroke .35s cubic-bezier(.3, .86, .36, .95)
}
.header .logo-mobile {
    display: none;
    position: relative;
    z-index: 99
}
.header.bg-primary .has-dropdown:focus-within > a, .header.bg-primary .has-dropdown:hover > a {
    color: #fff !important
}
.header.bg-primary .has-dropdown:focus-within > a:after, .header.bg-primary .has-dropdown:hover > a:after {
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' fill='none'%3E%3Cpath stroke='%23fff' stroke-linecap='square' stroke-linejoin='round' stroke-width='1.667' d='m2 2 5 5 5-5'/%3E%3C/svg%3E");
    transform: translateY(-50%) rotate(180deg)
}
.has-dropdown {
    position: relative
}
.has-dropdown:focus-within > a, .has-dropdown:hover > a {
    color: #26b4e9;
    -webkit-text-decoration: underline;
    text-decoration: underline
}
.has-dropdown:focus-within > a:after, .has-dropdown:hover > a:after {
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' fill='none'%3E%3Cpath stroke='%2326B4E9' stroke-linecap='square' stroke-linejoin='round' stroke-width='1.667' d='m2 2 5 5 5-5'/%3E%3C/svg%3E");
    transform: translateY(-50%) rotate(180deg)
}
.has-dropdown:focus-within .header-dropdown, .has-dropdown:hover .header-dropdown {
    opacity: 1;
    pointer-events: all;
    visibility: visible
}
.header-dropdown {
    padding: 0 0 0 20px
}
.header-dropdown ul {
    list-style-type: none;
    margin: 0;
    padding: 0
}
.header-dropdown a span {
    display: none
}
.header a {
    font-family: 'FSAlbert', arial, sans-serif
}
body {
    background-color: #fff
}
.accessibility {
    height: 1px;
    left: -10000px;
    overflow: hidden;
    position: absolute;
    top: auto;
    width: 1px
}
.accessibility:focus {
    height: auto;
    position: static;
    width: auto
}
.visually-hidden {
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    width: 1px !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
    white-space: nowrap !important
}
img {
    height: auto;
    max-width: 100%
}
html {
    scroll-behavior: smooth
}
p {
    opacity: .9
}
p b {
    opacity: 1
}
.address-row {
    align-items: center;
    display: flex;
    gap: 8px;
    margin-bottom: 23px
}
.address-icon {
    flex: 0 0 auto
}
.address-text {
    flex: 1 1 auto;
    font-size: 16px;
    font-style: normal;
    line-height: 1.5;
    margin-bottom: 0
}
sub, sup {
    font-size: 50%
}
sup {
    top: -.8em
}
.decorated-underline {
    color: #008dc8;
    position: relative;
    z-index: 1
}
.decorated-underline svg {
    height: auto;
    left: 0;
    position: absolute;
    top: 50%;
    width: 100%;
    z-index: -1
}
.decorated-circle-line {
    position: relative;
    z-index: 1
}
.decorated-circle-line svg {
    height: 120% !important;
    left: -10%;
    position: absolute;
    top: -10%;
    width: 120% !important;
    z-index: -1
}
.footer {
    background-color: #15417f;
    font-size: 16px;
    line-height: 1.6
}
.footer-top {
    padding-bottom: 50px;
    padding-top: 100px
}
.footer-bottom {
    display: flex;
    justify-content: center;
    padding-bottom: 24px;
    padding-top: 24px
}
.footer-logo {
    margin-bottom: 33px
}
.footer-text {
    font-weight: 400;
    margin: 0 auto 40px;
    max-width: 936px;
    opacity: .7
}
.footer-text > :last-child {
    margin-bottom: 0
}
.footer-links {
    margin-bottom: 39px
}
.footer-links li {
    padding-bottom: 10px;
    padding-top: 10px
}
.footer-links a {
    color: inherit;
    -webkit-text-decoration: none;
    text-decoration: none
}
.footer-links a:hover {
    color: #008dc8;
    -webkit-text-decoration: underline;
    text-decoration: underline
}
.footer-copy {
    display: block;
    opacity: .6
}
.footer-dropdown {
    margin-bottom: 5px
}
.footer-line {
    background-color: #fff;
    box-shadow: 0 4px 4px 0 hsla(0, 0%, 100%, .25);
    height: 1px;
    left: 50%;
    opacity: .16;
    position: relative;
    transform: translateX(-50%);
    width: 100vw
}
.footer-drop {
    color: #0a2c44;
    position: relative;
    z-index: 2
}
.footer-drop:before {
    background-color: #fff;
    content: "";
    height: 100%;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: 110vw;
    z-index: -1
}
.footer-drop-top {
    padding: 19px 0
}
.footer-drop.drop-active .footer-drop-opener:after {
    top: 5px;
    transform: rotate(0)
}
.footer-drop-opener {
    align-items: center;
    color: #0a2c44;
    display: flex;
    font-family: 'FSAlbert', arial, sans-serif;
    ;
    font-size: 16px;
    font-weight: 700;
    min-height: 32px;
    padding: 0 48px 0 0;
    position: relative;
    -webkit-text-decoration: none;
    text-decoration: none
}
.footer-drop-opener:before {
    background: rgba(53, 53, 53, .08);
    border: rgba(53, 53, 53, .04);
    border-radius: 50%;
    content: "";
    height: 32px;
    position: absolute;
    right: 0;
    top: 0;
    width: 32px
}
.footer-drop-opener:after {
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='21' fill='none'%3E%3Cpath stroke='%230A2C44' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.667' d='m15 13.35-5-5-5 5'/%3E%3C/svg%3E");
    content: "";
    height: 20px;
    position: absolute;
    right: 6px;
    top: 7px;
    transform: rotate(180deg);
    transition: .35s;
    width: 20px
}
.footer-drop-body {
    margin: 0 auto;
    max-width: 936px;
    padding: 16px 0 48px;
    position: relative
}
.footer-drop-body:before {
    background-color: rgba(53, 53, 53, .24);
    content: "";
    height: 1px;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: 110vw;
    z-index: -1
}
.footer-drop-body > :last-child {
    margin-bottom: 0
}
.under-hero {
    padding: 48px 0
}
.under-hero h3 {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0;
    margin: 0 0 24px;
    opacity: .8;
    text-transform: none
}
.under-hero-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -4px;
    row-gap: 8px
}
.under-hero-column {
    display: flex;
    padding: 0 4px;
    width: 50%
}
.under-hero-item {
    align-items: center;
    background-color: #fff;
    border: 1px solid rgba(53, 53, 53, .24);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    padding: 16px 24px;
    text-align: center;
    width: 100%
}
.under-hero-item strong {
    font-family: arial, sans-serif;
    font-size: 16px
}
.under-hero-icon {
    border: 1px solid rgba(53, 53, 53, .24);
    border-radius: 50%;
    flex: 0 0 56px;
    height: 56px;
    margin: 0 0 12px;
    position: relative;
    width: 56px
}
.under-hero-icon svg {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 32px
}
.under-hero-icon svg path {
    stroke: #008dc8
}
.usp.bg-light-blue .usp-item {
    background-color: #fff
}
.usp.bg-primary .section-title {
    color: #fff
}
.usp.bg-primary .section-buttons .btn-outline-primary {
    border-color: #fff;
    color: #fff
}
.usp.bg-primary .section-buttons .btn-outline-primary:hover {
    background-color: #008dc8;
    border-color: #008dc8;
    color: #fff
}
.usp.variant-5 .section-buttons {
    justify-content: flex-start
}
.usp.variant-5 .usp-inner {
    max-width: 744px
}
.usp.variant-6 .section-buttons {
    justify-content: flex-start
}
.usp.variant-6 .usp-inner {
    max-width: 980px
}
.usp.variant-1 .section-buttons, .usp.variant-2 .section-buttons, .usp.variant-3 .section-buttons, .usp.variant-4 .section-buttons {
    justify-content: flex-start
}
.usp.variant-1 .usp-column, .usp.variant-2 .usp-column, .usp.variant-3 .usp-column, .usp.variant-4 .usp-column {
    width: 100% !important
}
.usp.variant-4 .usp-text p {
    max-width: 100%
}
.usp.variant-7 {
    text-align: center
}
.usp.variant-7 .section-title {
    margin-left: auto;
    margin-right: auto;
    max-width: 744px
}
.usp-image {
    margin: 0 auto;
    max-width: 456px
}
.usp-image img {
    border-radius: 16px;
    display: block
}
.usp-list {
    font-size: 16px;
    font-weight: 700;
    list-style-type: none;
    margin: 0;
    padding: 0
}
.usp-list li {
    margin: 0 0 20px;
    padding: 0 0 0 28px;
    position: relative
}
.usp-list li:last-child {
    margin-bottom: 0
}
.usp-list li:before {
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='17' fill='none'%3E%3Cpath stroke='%2326B4E9' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.8' d='m14.5 3.8-8.278 8.944L1.777 8.3'/%3E%3C/svg%3E");
    content: "";
    height: 16px;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 16px
}
.usp-wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 32px
}
.usp-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
    row-gap: 8px
}
.usp-column {
    padding: 0 12px
}
.usp-column, .usp-item {
    display: flex;
    width: 100%
}
.usp-item {
    align-items: center;
    background-color: #e5f3f9;
    border-radius: 16px;
    color: #0c417f;
    font-family: arial, sans-serif;
    min-height: 64px;
    padding: 12px 16px 12px 52px;
    position: relative
}
.usp-item:before {
    background-color: #008dc8;
    border-radius: 50%;
    height: 24px;
    left: 16px;
    width: 24px
}
.usp-item:after, .usp-item:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%)
}
.usp-item:after {
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.1' d='M10.542 2.475 4.333 9.183 1 5.85'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h12v12H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
    height: 12px;
    left: 23px;
    width: 12px
}
.section-title:has(+.section-buttons), .section-title:has(+.usp-list) {
    margin-bottom: 32px
}
.section-title + .section-buttons {
    margin-top: 32px
}
.steps .section-title {
    margin-bottom: 64px !important
}
.steps.bg-light-blue .steps-item {
    background-color: #fff
}
.steps.bg-primary .section-title {
    color: #fff
}
.steps.bg-primary .section-buttons .btn-outline-primary {
    border-color: #fff;
    color: #fff
}
.steps.bg-primary .section-buttons .btn-outline-primary:hover {
    background-color: #008dc8;
    border-color: #008dc8;
    color: #fff
}
.steps-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
    row-gap: 48px
}
.steps-column {
    padding: 0 12px;
    width: 100%
}
.steps-item {
    background-color: #fff;
    background-color: #e5f3f9;
    border: 1px solid rgba(53, 53, 53, .24);
    border-radius: 16px;
    font-family: arial, sans-serif;
    font-size: 16px;
    padding: 32px 24px;
    position: relative
}
.steps-item > :last-child {
    margin-bottom: 0
}
.steps-item .flag-wrapper {
    bottom: calc(100% - 16px);
    left: -8px;
    position: absolute
}
.cards-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
    row-gap: 24px
}
.cards-column {
    padding: 0 12px;
    width: 100%
}
.cards.bg-primary .section-title {
    color: #fff
}
.card {
    background-color: #fff;
    border: 1px solid rgba(53, 53, 53, .24);
    border-radius: 16px;
    font-family: arial, sans-serif;
    font-size: 16px;
    margin: 0 auto;
    max-width: 360px;
    padding: 24px;
    position: relative
}
.card:before {
    background-color: #0a2c44;
    border-radius: 2px;
    content: "";
    height: 2px;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: 160px
}
.card .h6 {
    margin: 0 0 12px
}
.card-image {
    margin: 0 0 24px
}
.card-image img {
    aspect-ratio: 312/200;
    border-radius: 12px;
    display: block;
    -o-object-fit: cover;
    object-fit: cover
}
.articles-section {
    background-color: #f5f5f5
}
.articles-section.bg-primary .section-title {
    color: #fff
}
.articles-section.bg-primary .meta {
    color: #26b4e9 !important
}
.articles-section.bg-primary .article-lg {
    background-color: #e5f3f9
}
.articles-section.bg-primary .article-lg .article-body {
    color: #000
}
.articles-section.bg-primary .article-sm .h6 {
    color: #fff
}
.articles-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
    row-gap: 32px
}
.articles-item {
    padding: 0 12px;
    width: 100%
}
.articles-section.bg-primary .articles-item {
    color: #fff
}
.articles-item:first-child {
    width: 100% !important
}
.articles-item p {
    opacity: 1
}
.article {
    color: currentColor;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    max-width: 360px;
    width: 100%
}
.article-lg {
    background-color: #fff;
    border: 1px solid rgba(53, 53, 53, .24);
    border-radius: 16px;
    padding: 24px
}
.article-lg .article-image img {
    aspect-ratio: 440/320
}
.article-sm {
    flex-direction: row !important;
    -webkit-text-decoration: none;
    text-decoration: none
}
.article-sm:hover .h6 {
    -webkit-text-decoration: underline;
    text-decoration: underline
}
.article-sm .h6 {
    margin-top: 4px !important
}
.article-sm .meta {
    font-size: 12px !important
}
.article-sm .article-image {
    flex: 0 0 98px;
    margin: 0 18px 0 0
}
.article-sm .article-image img {
    aspect-ratio: 98/88
}
.article .h6 {
    color: #0a2c44;
    margin: 12px 0
}
.article .excerpt {
    font-size: 16px
}
.article-body > :last-child {
    margin-bottom: 0
}
.article-body .meta {
    color: #00a09d;
    font-family: 'FSAlbert', arial, sans-serif;
    ;
    font-size: 14px;
    font-weight: 500
}
.article-image {
    margin: 0 0 24px
}
.article-image img {
    border-radius: 12px;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}
.faq {
    background-color: #f5f5f5
}
.faq .section-title {
    text-align: center
}
.faq.variant .section-title {
    margin: 0 auto 64px;
    text-align: center
}
.faq.variant .faq-accordion {
    margin: 0 auto;
    max-width: 936px
}
.faq-row {
    display: flex;
    flex-direction: column
}
.faq-item {
    border-top: 1px solid rgba(53, 53, 53, .24);
    margin: 0 0 24px;
    overflow: hidden;
    padding: 24px 0 0
}
.faq-item:last-child {
    margin-bottom: 0
}
.faq-item.is-active .faq-opener span:after {
    transform: rotate(0)
}
.faq-body {
    font-size: 16px;
    padding: 0 48px 0 0;
    transition: .4s
}
.is-active .faq-body {
    padding: 8px 48px 0 0
}
.faq-body p {
    margin: 0 0 16px
}
.faq-body > :last-child {
    margin-bottom: 0
}
.faq-opener {
    background-color: transparent;
    border: 0;
    color: #0a2c44;
    cursor: pointer;
    display: block;
    font-family: 'FSAlbert', arial, sans-serif;
    ;
    font-size: 18px;
    font-weight: 700;
    min-height: 24px;
    padding: 0 48px 0 0;
    position: relative;
    text-align: left;
    -webkit-text-decoration: none;
    text-decoration: none;
    width: 100%
}
.faq-opener span {
    background: rgba(53, 53, 53, .08);
    border: rgba(53, 53, 53, .04);
    border-radius: 50%;
    height: 24px;
    position: absolute;
    right: 0;
    top: 0;
    width: 24px
}
.faq-opener span:after, .faq-opener span:before {
    background-color: #0a2c44;
    content: "";
    height: 2px;
    position: absolute;
    right: 6px;
    top: 11px;
    width: 11px
}
.faq-opener span:after {
    transform: rotate(-90deg);
    transition: .35s
}
.reviews-controls {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin: 48px 0 0
}
.reviews-controls-sm {
    justify-content: center !important
}
.reviews-controls-sm .swiper-arrows {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: center
}
.reviews-line {
    flex: 1 1 auto;
    overflow: hidden
}
.reviews-line .swiper-pagination {
    display: inline-block;
    position: relative
}
.reviews-line .swiper-pagination:after {
    background-color: rgba(10, 44, 68, .15);
    content: "";
    height: 1px;
    left: calc(100% + 16px);
    position: absolute;
    top: 50%;
    width: 100vw
}
.reviews-swiper {
    overflow: hidden
}
.reviews-swiper-lg {
    overflow: visible
}
.reviews-swiper-lg blockquote {
    flex-direction: column-reverse !important
}
.reviews-swiper-lg blockquote:after {
    bottom: 0 !important;
    top: auto !important
}
.reviews-swiper-lg blockquote q {
    font-size: 20px;
    font-weight: 300
}
.reviews-swiper-lg .card {
    max-width: 650px !important
}
.reviews-swiper-lg .cite-image {
    flex: 0 0 48px !important;
    height: 48px !important;
    width: 48px !important
}
.reviews-swiper-lg .cite-text {
    align-items: center !important;
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 4px
}
.reviews-swiper-lg .cite-text .name {
    margin: 0 8px 0 0
}
.reviews-swiper-lg .cite-text .place {
    margin: 0 !important
}
.reviews-swiper-lg .cite-text .mark {
    width: 100%
}
.reviews-swiper .swiper-wrapper {
    align-items: stretch
}
.reviews-swiper .swiper-slide {
    display: flex;
    height: auto !important;
    max-width: 100%;
    width: auto
}
.reviews-swiper .swiper-slide:last-child {
    margin: 0
}
.reviews-swiper .card {
    max-width: 100%
}
.review {
    box-sizing: border-box !important;
    margin: 0
}
.review blockquote {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 0 !important;
    position: relative
}
.review blockquote:after {
    background-image: url(../images/quotes.svg);
    content: "";
    height: 40px;
    position: absolute;
    right: 0;
    top: 0;
    width: 56px
}
.review q {
    font-style: italic
}
.review q:after, .review q:before {
    display: none
}
.review cite {
    align-items: center;
    display: flex;
    font-style: normal;
    padding: 0 64px 0 0
}
.review .cite-image {
    background-color: #e5f3f9;
    border-radius: 50%;
    flex: 0 0 64px;
    height: 64px;
    margin: 0 12px 0 0;
    overflow: hidden;
    position: relative;
    width: 64px
}
.review .cite-image:before {
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='38' height='38' fill='none'%3E%3Cpath stroke='%230C417F' stroke-linecap='round' stroke-linejoin='round' d='M6.963 32.382a13.5 13.5 0 0 1 24.075 0M37 19c0 9.941-8.059 18-18 18S1 28.941 1 19 9.059 1 19 1s18 8.059 18 18m-10.5-1.5a7.5 7.5 0 1 1-15 0 7.5 7.5 0 0 1 15 0'/%3E%3C/svg%3E");
    content: "";
    height: 38px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 38px
}
.review .cite-image img {
    display: block;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: relative;
    width: 100%;
    z-index: 1
}
.review .cite-text {
    align-items: flex-start;
    color: #071d2c;
    display: flex;
    flex-direction: column
}
.review .cite-text .name {
    font-size: 16px;
    line-height: 1.6
}
.review .cite-text .place {
    font-family: 'FSAlbert', arial, sans-serif;
    ;
    font-weight: 500;
    line-height: 1.3;
    margin: 0 0 4px;
    opacity: .5
}
.review .cite-text .mark {
    display: flex
}
.review .cite-text .mark img {
    margin: 0 2px 0 0;
    width: 16px
}
.btn {
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 100px;
    color: #0a2c44;
    cursor: pointer;
    display: inline-block;
    font-family: 'FSAlbert', Arial, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: .7px;
    line-height: 1.5;
    padding: 10px 30px;
    text-align: center;
    -webkit-text-decoration: none;
    text-decoration: none;
    transition: color .35s cubic-bezier(.3, .86, .36, .95), background-color .35s cubic-bezier(.3, .86, .36, .95), border-color .35s cubic-bezier(.3, .86, .36, .95), box-shadow .35s cubic-bezier(.3, .86, .36, .95);
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}
.btn, .btn-arrow svg {
    vertical-align: middle
}
.btn-arrow svg {
    margin: 0 0 0 11px;
    width: 11px
}
.btn-arrow svg path {
    stroke: currentColor
}
.btn-phone svg {
    margin: 0 11px 0 0;
    vertical-align: middle;
    width: 13px
}
.btn-phone svg path {
    stroke: currentColor
}
.btn-xs {
    font-weight: 400;
    letter-spacing: 0;
    padding: 4px 16px
}
.btn-sm, .btn-xs {
    line-height: 1.6;
    min-width: 0
}
.btn-round {
    align-items: center;
    display: inline-flex;
    height: 47px;
    justify-content: center;
    min-width: 0;
    padding: 0;
    width: 47px
}
.btn-round-lg {
    height: 75px;
    line-height: 1.2;
    padding: 5px;
    width: 75px
}
.btn-primary {
    background-color: #008dc8;
    color: #fff
}
.btn-primary:hover {
    background-color: #fff;
    color: #0a2c44
}
.btn-outline-primary, .btn-primary:hover {
    border-color: rgba(10, 44, 68, .32)
}
.btn-outline-primary:hover {
    background-color: #0a2c44;
    border-color: #0a2c44;
    color: #fff
}
.btn-danger {
    background-color: #dc3a3a;
    border-color: #dc3a3a;
    color: #fff
}
.btn-danger:hover {
    background-color: #b62020;
    border-color: #b62020;
    color: #fff
}
.btn-success {
    background-color: #48b753;
    border-color: #48b753;
    color: #fff
}
.btn-success:hover {
    background-color: #3d9946;
    border-color: #3d9946;
    color: #fff
}
.btn-info {
    background-color: #008dc8;
    border-color: #008dc8;
    color: #fff
}
.btn-info:hover {
    background-color: #005d85;
    border-color: #005d85;
    color: #fff
}
.btn-transparent {
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    background: hsla(0, 0%, 100%, .16);
    border: 1px solid hsla(0, 0%, 100%, .32);
    border-radius: 16px;
    color: #fff
}
.btn-icon {
    vertical-align: middle
}
.fixed-cta {
    bottom: 20px;
    opacity: 0;
    position: fixed;
    right: 20px;
    transition: opacity .35s cubic-bezier(.3, .86, .36, .95), visibility .35s cubic-bezier(.3, .86, .36, .95), 1s cubic-bezier(.3, .86, .36, .95) .35s;
    visibility: hidden;
    z-index: 99
}
.fixed-cta.is-shown {
    opacity: 1;
    visibility: visible
}
.fixed-cta .btn {
    display: flex;
    flex-wrap: wrap
}
.fixed-cta .btn.btn-round-lg {
    width: 75px
}
.fixed-cta .text {
    display: none
}
.fixed-cta .icon {
    display: block;
    width: 100%
}
.section {
    --border-radius-mobile: 24px;
    --border-radius-desktop: 48px;
    padding-bottom: 80px;
    padding-top: 80px;
    position: relative
}
.section.gutter-top-sm {
    padding-top: 35px
}
.section.gutter-top-lg {
    padding-top: 150px
}
.section.gutter-bottom-lg {
    padding-bottom: 150px
}
.section.compensate-margin-top {
    border-top: 50px solid transparent
}
.section.compensate-margin-bottom {
    border-bottom: 50px solid transparent
}
.section.rounded-top {
    border-top-left-radius: var(--border-radius-mobile);
    border-top-right-radius: var(--border-radius-mobile)
}
.section.rounded-bottom {
    border-bottom-left-radius: var(--border-radius-mobile);
    border-bottom-right-radius: var(--border-radius-mobile)
}
.section.negative-margin-top {
    margin-top: -50px
}
.section.decorated-bg {
    background-image: url(../images/bg-decor.png) !important;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 100%
}
.section.negative-margin-bottom {
    margin-bottom: -50px
}
.section-header {
    margin-bottom: 32px
}
.wrapper {
    overflow: hidden;
    position: relative;
    width: 100%
}
.container {
    margin-left: auto;
    margin-right: auto;
    max-width: 1158px;
    padding-left: 24px;
    padding-right: 24px;
    width: 100%
}
.container-md {
    max-width: 936px
}
.container-sm {
    max-width: 744px
}
.social {
    margin-left: -6px;
    margin-right: -6px
}
.social li {
    display: inline-block;
    padding-left: 6px;
    padding-right: 6px;
    vertical-align: middle
}
.social a {
    background-color: hsla(0, 0%, 100%, .16);
    border: 1px solid hsla(0, 0%, 100%, .08);
    border-radius: 50%;
    color: #fff;
    display: block;
    height: 48px;
    padding: 10px;
    transition: color .35s cubic-bezier(.3, .86, .36, .95), background-color .35s cubic-bezier(.3, .86, .36, .95), border-color .35s cubic-bezier(.3, .86, .36, .95);
    width: 48px
}
.social a:hover {
    background-color: #fff;
    border-color: #fff;
    color: #0a2c44
}
.social svg {
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%
}
.dropdown {
    display: inline-block;
    position: relative;
    vertical-align: top
}
.dropdown.is-active .dropdown-toggle {
    background: #fff;
    border: 1px solid rgba(10, 44, 68, .08);
    color: #008dc8
}
.dropdown.is-active .dropdown-toggle-icon {
    transform: rotate(180deg)
}
.dropdown-toggle {
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    line-height: 1.6;
    padding: 10px 30px;
    transition: color .35s cubic-bezier(.3, .86, .36, .95), background-color .35s cubic-bezier(.3, .86, .36, .95), border-color .35s cubic-bezier(.3, .86, .36, .95);
    vertical-align: top
}
.dropdown-toggle:hover {
    background: hsla(0, 0%, 100%, .16);
    border: 1px solid hsla(0, 0%, 100%, .08)
}
.dropdown-toggle-icon {
    margin-left: 5px;
    pointer-events: none;
    vertical-align: middle
}
.dropdown-menu {
    background-color: #fff;
    border-radius: 8px;
    bottom: 100%;
    display: none;
    left: 0;
    margin-bottom: 5px;
    margin-top: 5px;
    padding: 8px;
    position: absolute;
    width: 273px
}
.is-active .dropdown-menu {
    display: block
}
.dropdown-menu li {
    margin-bottom: 4px
}
.dropdown-menu li:last-child {
    margin-bottom: 0
}
.dropdown-menu a {
    border-radius: 8px;
    color: #0a2c44;
    display: block;
    padding: 4px;
    -webkit-text-decoration: none;
    text-decoration: none
}
.dropdown-menu a:hover {
    background-color: #e5f3f9
}
.widget {
    align-items: center;
    background-color: #fff;
    border: 1px solid rgba(53, 53, 53, .24);
    border-radius: 12px 0 0 12px;
    border-right: 0;
    display: flex;
    flex-direction: column;
    padding: 12px;
    position: fixed;
    right: 0;
    row-gap: 4px;
    text-align: center;
    top: 50%;
    z-index: 10
}
.widget.bg-primary {
    border-color: rgba(229, 243, 249, .24)
}
.widget.bg-primary .title, .widget.bg-primary .widget-mark, .widget.bg-primary .widget-mark strong {
    color: #fff
}
.widget.bg-primary .number {
    color: #26b4e9
}
.widget-mark {
    color: #9c9c9c;
    font-family: 'FSAlbert', arial, sans-serif;
    ;
    font-size: 16px
}
.widget-mark strong {
    color: #0c417f;
    font-size: 20px;
    font-weight: 600
}
.widget .stars {
    display: flex;
    gap: 5px;
    justify-content: center
}
.widget .stars img {
    width: 13px
}
.widget .title {
    color: #071d2c;
    font-size: 14px
}
.widget .number {
    color: #9c9c9c;
    font-size: 12px
}
.widget-mobile {
    align-items: center;
    background-color: #fff;
    border: 1px solid rgba(53, 53, 53, .24);
    border-radius: 12px 12px 0 0;
    border-right: 0;
    display: flex;
    max-width: 100%;
    padding: 6px 12px;
    position: fixed;
    right: 0;
    top: 50%;
    transform: rotate(-90deg);
    transform-origin: right bottom;
    transition: .35s;
    z-index: 99
}
.widget-mobile.hidden {
    transform: rotate(-90deg) translateY(100%)
}
.widget-mobile .title {
    color: #0a2c44;
    font-size: 12px;
    line-height: 1;
    margin: 0 12px
}
.widget-mobile .star {
    flex: 0 0 13px;
    margin: 0 5px 0 0
}
.widget-mobile .star img {
    width: 100%
}
.widget-mobile .mark {
    color: #0c417f;
    font-family: 'FSAlbert', arial, sans-serif;
    ;
    font-size: 18px;
    font-weight: 600
}
.widget-mobile button {
    background-color: transparent;
    border: 0;
    padding: 0
}
.widget-mobile button path {
    stroke: #0a2c44
}
.widget-mobile.bg-primary {
    border-color: rgba(229, 243, 249, .24)
}
.widget-mobile.bg-primary .mark, .widget-mobile.bg-primary .title {
    color: #fff
}
.widget-mobile.bg-primary path {
    stroke: #fff
}
.cookies {
    background-color: #fff;
    border: 1px solid rgba(53, 53, 53, .24);
    border-bottom: 0;
    border-radius: 16px 16px 0 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    left: 0;
    padding: 24px;
    position: fixed;
    transform: translateY(150%);
    transition: .8s;
    width: 100%;
    z-index: 99
}
.cookies.shown {
    transform: translateY(0)
}
.cookies-text {
    font-size: 16px;
    text-align: center
}
.cookies-text > :last-child {
    margin-bottom: 0
}
.cookies-buttons {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    gap: 12px
}
.cookies-buttons .btn {
    font-size: 16px
}
.cookies-buttons a:not([class]) {
    text-align: center
}
.cookies-icon {
    align-items: center;
    align-self: center;
    background-color: #008dc8;
    border: 2px solid #051724;
    border-radius: 50%;
    box-shadow: -3px 3px 0 0 #051724;
    display: flex;
    height: 40px;
    justify-content: center;
    width: 40px
}
.cookies-icon img {
    height: 24px;
    width: 24px
}
.cookies.bg-primary {
    border-color: rgba(229, 243, 249, .24);
    color: #fff
}
.cookies.bg-primary .btn-outline-primary {
    border-color: #fff;
    color: #fff
}
.cookies.bg-primary .btn-outline-primary:hover {
    background-color: #008dc8;
    border-color: #008dc8;
    color: #fff
}
.sticky-button {
    background-color: #fff;
    border: 1px solid rgba(53, 53, 53, .24);
    border-radius: 16px 16px 0 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    padding: 16px 24px;
    position: fixed;
    width: 100%;
    z-index: 98
}
.offer {
    padding: 80px 0 0
}
.offer + .hero {
    padding-top: 0
}
.offer + .hero .hero-inner {
    padding-top: 48px
}
.offer-inner {
    background-color: #e5f3f9;
    border-radius: 16px;
    flex-direction: column;
    padding: 24px
}
.offer-icon, .offer-inner {
    align-items: center;
    display: flex
}
.offer-icon {
    background: rgba(10, 44, 68, .08);
    border: 1px solid rgba(10, 44, 68, .04);
    border-radius: 50%;
    flex: 0 0 56px;
    height: 56px;
    justify-content: center;
    margin: 0 0 12px;
    width: 56px
}
.offer-icon img {
    width: 26px
}
.offer-text {
    font-size: 16px;
    margin: 0 0 24px;
    text-align: center
}
.offer-text .h6 {
    margin: 0 0 8px
}
.offer-text > :last-child {
    margin-bottom: 0
}
.section-title {
    margin: 0 0 48px;
    max-width: 836px
}
.variant-6 .section-title {
    max-width: 100%
}
.section-title.text-center {
    margin: 0 auto 48px
}
.section-title p {
    font-family: arial, sans-serif
}
.section-title > :last-child {
    margin-bottom: 0
}
.section-buttons {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin: 48px 0 0
}
.hero {
    padding-bottom: 122px
}
.hero-svg {
    height: auto;
    left: 50%;
    position: absolute;
    top: 100%;
    width: 110px
}
.hero-inner {
    padding: 60px 0 0
}
.hero-inner .flag-wrapper {
    display: block;
    margin: 0 0 16px
}
.hero-inner .h1 {
    line-height: 1.2;
    margin: 0 0 24px;
    max-width: 840px;
    text-transform: none
}
.hero-inner-text {
    font-family: arial, sans-serif;
    font-size: 16px;
    margin: 0 0 48px;
    position: relative
}
.hero-inner-text > * {
    margin: 0 0 32px
}
.hero-inner-text > :last-child {
    margin-bottom: 0
}
.hero-inner-image {
    margin: 0 auto;
    max-width: 456px;
    position: relative
}
.hero-inner-image img {
    border-radius: 16px;
    display: block
}
.hero.variant-2 .hero-inner {
    align-items: center !important;
    flex-direction: column !important
}
.hero.variant-2 .hero-inner-text {
    text-align: center
}
.hero.variant-2 .hero-inner-text h1 {
    max-width: 936px
}
.hero.variant-2 .hero-inner-text p {
    margin-left: auto;
    margin-right: auto;
    max-width: 544px
}
.hero.variant-2 .hero-inner-text .flag-wrapper {
    left: 0;
    margin: 0 0 16px;
    position: relative;
    top: 0;
    transform: translateX(0)
}
.hero.variant-2 .hero-inner-text .flag-wrapper .flag {
    transform: rotate(0)
}
.hero.variant-1 .hero-inner-text {
    text-align: center
}
.hero.variant-1 .hero-inner-text h1 {
    max-width: 936px
}
.hero.variant-1 .hero-inner-text p {
    margin-left: auto;
    margin-right: auto;
    max-width: 544px
}
.hero.variant-1 .hero-inner-text .flag-wrapper {
    left: 0;
    margin: 0 0 16px;
    position: relative;
    top: 0;
    transform: translateX(0)
}
.hero.variant-1 .hero-inner-text .flag-wrapper .flag {
    transform: rotate(0)
}
.hero.variant-1 .hero-inner-image {
    margin: 0 auto !important;
    max-width: 744px !important
}
.hero.variant-10 {
    color: #fff;
    position: relative
}
.hero.variant-10:before {
    background: linear-gradient(90deg, rgba(0, 0, 0, .48) 11.41%, transparent 64.55%), linear-gradient(0deg, rgba(0, 0, 0, .4), rgba(0, 0, 0, .4));
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1
}
.hero.variant-10 .container {
    position: relative;
    z-index: 2
}
.hero.variant-10 .hero-inner-text {
    text-align: center
}
.hero.variant-10 .hero-inner-text h1 {
    max-width: 936px
}
.hero.variant-10 .hero-inner-text p {
    margin-left: auto;
    margin-right: auto;
    max-width: 544px
}
.hero.variant-10 .hero-inner-text .flag-wrapper {
    left: 0;
    margin: 0 0 16px;
    position: relative;
    top: 0;
    transform: translateX(0)
}
.hero.variant-10 .hero-inner-text .flag-wrapper .flag {
    transform: rotate(0)
}
.hero.variant-10 .hero-bg {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}
.hero.variant-10 .hero-bg img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}
.hero.variant-0 {
    color: #fff;
    position: relative
}
.hero.variant-0:before {
    background: linear-gradient(90deg, rgba(0, 0, 0, .48) 11.41%, transparent 64.55%), linear-gradient(0deg, rgba(0, 0, 0, .4), rgba(0, 0, 0, .4));
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1
}
.hero.variant-0 .container {
    position: relative;
    z-index: 2
}
.hero.variant-0 .hero-bg {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}
.hero.variant-0 .hero-bg img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}
.marquee {
    display: flex;
    left: 50%;
    position: relative;
    transform: translateX(-50%);
    width: 100vw
}
.marquee-inner {
    animation: var(--speed) linear 1s infinite marquee;
    display: flex;
    flex: 0 0 auto
}
.marquee img {
    border-radius: 12px;
    height: 100px;
    margin-left: 6px;
    margin-right: 6px;
    width: auto
}
@keyframes marquee {
    0% {
        transform: translateZ(0)
    }
    to {
        transform: translate3d(-100%, 0, 0)
    }
}


  /* Changes 30 July 2024 */


@media (max-width: 768px) { 
  .hero-inner-text {
    text-align: center; 
  }

  .hero-inner-text h1, 
  .hero-inner-text p {
    text-align: center;
  }

  .hero-inner-text .btn {  
    display: block;      
    margin: 0 auto;      
  }
  .header-row img {        
    display: block;        
	  margin: 0 auto; 
  }   
	
  .hero-inner-image img {
    width: 60% !important;
    height: auto !important;         
    display: block !important;   
    margin: 0 auto !important;   
  }
}

  /* End Changes 30 July 2024 */



.flag {
    background-color: #008dc8;
    border: 2px solid #051724;
    border-radius: 8px;
    box-shadow: -3px 3px 0 0 #051724;
    color: #fff;
    display: inline-block;
    font-family: Kalam, 'FSAlbert', arial, sans-serif;
    ;
    font-size: 18px;
    letter-spacing: 0 !important;
    line-height: 1;
    padding: 15px 16px 11px;
    position: relative;
    text-transform: uppercase;
    transform: rotate(-4deg);
    z-index: 9
}
.flag svg {
    bottom: 100%;
    height: 28px !important;
    position: absolute;
    right: 100%;
    transform: translate(20%, 40%);
    width: 28px !important
}
.benefits-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
    row-gap: 24px
}
.benefits-col {
    display: flex;
    padding: 0 12px;
    width: 100%
}
.benefits-button {
    display: flex;
    justify-content: center;
    margin: 48px 0 0
}
.aos-animate .benefit-icon path {
    stroke-dashoffset: 0 !important
}
.benefit {
    background-color: #fff;
    border: 1px solid rgba(10, 44, 68, .24);
    border-radius: 16px;
    padding: 24px;
    width: 100%
}
.benefit-icon {
    align-items: center;
    background-color: #008dc8;
    border: 2px solid #0a2c44;
    border-radius: 50%;
    box-shadow: -3px 4px 0 0 #0a2c44;
    display: flex;
    flex: 0 0 80px;
    height: 80px;
    justify-content: center;
    margin: 0 0 24px;
    width: 80px
}
.benefit-icon svg {
    height: auto;
    width: 44px
}
.benefit-icon svg path {
    transition-delay: 1s !important;
    transition-duration: 1.5s
}
.benefit-text .h4 {
    margin: 0 0 16px
}
.benefit-text > :last-child {
    margin-bottom: 0
}
.swiper {
    box-sizing: border-box !important
}
.swiper-btn {
    background-color: rgba(10, 44, 68, .08);
    border: 1px solid rgba(10, 44, 68, .04);
    border-radius: 50%;
    color: #0a2c44;
    cursor: pointer;
    display: inline-block;
    height: 48px;
    padding: 10px;
    transition: color .35s cubic-bezier(.3, .86, .36, .95), background-color .35s cubic-bezier(.3, .86, .36, .95), border-color .35s cubic-bezier(.3, .86, .36, .95);
    vertical-align: middle;
    width: 48px
}
.swiper-btn:hover {
    background-color: #fff;
    border-color: #fff;
    color: #0a2c44
}
.swiper-btn[disabled] {
    opacity: .25;
    pointer-events: none
}
.swiper-btn svg {
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%
}
.tf-v1-iframe-wrapper {
    background-color: #fff
}
@media (min-width:520px) {
    .footer-links li {
        display: inline-block;
        padding-bottom: 0;
        padding-top: 0;
        vertical-align: top
    }
    .footer-links li:not(:last-child):after {
        content: "|";
        margin-left: 6px;
        margin-right: 3px;
        opacity: .6
    }
}
@media (min-width:768px) {
    .header {
        border-bottom: 5px solid #00a09d
    }
    .footer-drop-opener {
        font-size: 20px
    }
    .under-hero-row {
        margin: 0 -12px;
        row-gap: 24px
    }
    .under-hero-column {
        padding: 0 12px;
        width: 33.3333333333%
    }
    .under-hero-item strong {
        font-size: 18px
    }
    .usp-row {
        row-gap: 16px
    }
    .usp-column {
        width: 50%
    }
    .usp-item {
        padding: 20px 24px 20px 60px
    }
    .usp-item:before {
        left: 24px
    }
    .usp-item:after {
        left: 30px
    }
    .steps-item {
        padding: 40px 32px
    }
    .articles-wrapper {
        row-gap: 48px
    }
    .articles-item {
        width: 50%
    }
    .article {
        margin: 0;
        max-width: 100%
    }
    .reviews-swiper-lg blockquote q {
        font-size: 24px
    }
    .reviews-swiper-lg .card {
        padding: 48px
    }
    .benefit {
        align-items: flex-start;
        display: flex;
        padding: 32px 24px
    }
    .benefit-icon {
        margin: 0 24px 0 0
    }
}
@media (min-width:1024px) {
    .header.bg-primary .has-dropdown > a:after {
        background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' fill='none'%3E%3Cpath stroke='%23fff' stroke-linecap='square' stroke-linejoin='round' stroke-width='1.667' d='m2 2 5 5 5-5'/%3E%3C/svg%3E")
    }
    .header.bg-primary .header-dropdown a {
        color: #0c417f;
    }
    .header-inner {
        padding: 22px 0
    }
    .header .logo-mobile, .header-logo {
        flex: 0 0 200px
    }
    .header-collapse {
        align-items: center;
        display: flex;
        flex: 1 1 auto;
        gap: 20px
    }
    .header-menu {
        flex: 0 1 auto;
        margin-left: auto;
        margin-right: 0
    }
    .header-menu-list li {
        display: inline-block;
        padding: 10px 8px;
        vertical-align: top
    }
    .header-menu-list a {
        display: inline-block;
        padding: 0;
        text-align: center;
        vertical-align: top
    }
    .header-btns {
        border: 0;
        flex: 0 0 auto;
        flex-direction: row;
        gap: 10px;
        margin-top: 0;
        padding: 0
    }
    .header-btns .btn {
        font-size: 16px;
        padding: 10px 22px
    }
    .header-toggle {
        display: none
    }
    .header .btn-basket {
        align-items: center;
        border-radius: 50%;
        display: flex;
        height: 48px;
        justify-content: center;
        padding: 5px;
        width: 48px
    }
    .header .btn-basket .button-text {
        display: none
    }
    .has-dropdown > a {
        padding: 0 24px 0 0;
        position: relative
    }
    .has-dropdown > a:after {
        background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' fill='none'%3E%3Cpath stroke='%230C417F' stroke-linecap='square' stroke-linejoin='round' stroke-width='1.667' d='m2 2 5 5 5-5'/%3E%3C/svg%3E");
        content: "";
        height: 8px;
        top: 50%;
        transform: translateY(-50%);
        width: 13px
    }
    .has-dropdown > a:after, .header-dropdown {
        position: absolute;
        right: 0;
        transition: .35s
    }
    .header-dropdown {
        background-color: #fff;
        border: 1px solid rgba(53, 53, 53, .24);
        border-radius: 8px;
        min-width: 296px;
        opacity: 0;
        padding: 7px;
        pointer-events: none;
        top: calc(100% - 1px);
        visibility: hidden
    }
    .header-dropdown ul {
        display: flex;
        flex-direction: column
    }
    .header-dropdown ul li {
        padding: 0
    }
    .header-dropdown a {
        align-items: center;
        border-radius: 8px;
        color: #0c417f;
        display: flex;
        font-weight: 700;
        padding: 8px;
        transition: .35s
    }
    .header-dropdown a:hover {
        background-color: #e5f3f9;
        color: #0c417f;
        -webkit-text-decoration: none;
        text-decoration: none
    }
    .header-dropdown a span {
        background: rgba(10, 44, 68, .08);
        border: 1px solid rgba(10, 44, 68, .04);
        border-radius: 50%;
        display: block;
        flex: 0 0 40px;
        height: 40px;
        margin: 0 12px 0 0;
        position: relative;
        width: 40px
    }
    .header-dropdown a span img {
        height: 24px;
        left: 50%;
        position: absolute;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 24px
    }
    .under-hero-column {
        width: 16.6666666667%
    }
    .usp.variant-1 .section-buttons, .usp.variant-2 .section-buttons, .usp.variant-3 .section-buttons, .usp.variant-4 .section-buttons {
        margin-top: 32px
    }
    .usp.variant-1 .usp-row, .usp.variant-2 .usp-row, .usp.variant-3 .usp-row, .usp.variant-4 .usp-row {
        max-width: 552px
    }
    .usp-image {
        margin: 0 0 0 auto
    }
    .usp-list {
        font-size: 18px
    }
    .usp-wrapper {
        -moz-column-gap: 32px;
        column-gap: 32px;
        flex-direction: row;
        justify-content: space-between
    }
    .usp-info {
        flex: 0 0 456px
    }
    .usp-text {
        flex: 0 1 552px
    }
    .usp-text p {
        max-width: 456px
    }
    .steps .section-title {
        margin-bottom: 96px !important
    }
    .cards-column, .steps-column {
        width: 33.333%
    }
    .article {
        align-items: center;
        flex-direction: row
    }
    .article-lg .article-image {
        flex: 0 0 440px;
        margin: 0 48px 0 0
    }
    .article-sm .h6 {
        margin-top: 12px
    }
    .article-sm .meta {
        font-size: 14px !important
    }
    .article-sm .article-image {
        flex: 0 0 160px;
        margin: 0 24px 0 0
    }
    .article-sm .article-image img {
        aspect-ratio: 160/104
    }
    .faq .section-title {
        text-align: left
    }
    .faq.variant .section-title {
        text-align: center
    }
    .faq.variant .faq-row {
        flex-direction: column
    }
    .faq.variant .faq-title {
        flex: 0 0 100%;
        margin: 0
    }
    .faq-row {
        flex-direction: row;
        justify-content: space-between
    }
    .faq-title {
        flex: 0 0 456px;
        margin: 0 64px 0 0
    }
    .faq-accordion {
        max-width: 552px
    }
    .btn {
        font-size: 18px;
        padding: 14px 30px
    }
    .container {
        padding-left: 15px;
        padding-right: 15px
    }
    .widget-mobile {
        display: none;
        visibility: hidden
    }
    .cookies {
        border: 1px solid rgba(53, 53, 53, .24);
        border-radius: 16px;
        bottom: 32px;
        left: 32px;
        max-width: 654px;
        padding: 24px 32px
    }
    .cookies-text {
        text-align: left
    }
    .cookies-buttons {
        align-items: center;
        flex-direction: row-reverse;
        gap: 8px
    }
    .cookies-buttons a:not([class]) {
        margin-right: auto
    }
    .cookies-icon {
        position: absolute;
        right: 100%;
        top: 100%;
        transform: translate(50%, -50%)
    }
    .sticky-button {
        display: none
    }
    .offer {
        padding: 132px 0 0
    }
    .offer-inner {
        flex-direction: row
    }
    .offer-icon {
        flex: 0 0 80px;
        height: 80px;
        margin: 0 24px 0 0;
        width: 80px
    }
    .offer-icon img {
        width: 40px
    }
    .offer .btn {
        margin-left: auto;
        white-space: nowrap
    }
    .offer-text {
        flex: 0 1 687px;
        margin: 0 24px 0 0;
        text-align: left
    }
    .offer-text .h6 {
        margin: 0 0 12px
    }
    .section-title {
        margin: 0 0 64px
    }
    .section-title.text-center {
        margin: 0 auto 64px
    }
    .section-buttons {
        margin: 64px 0 0
    }
    .hero-svg {
        left: auto;
        right: 0;
        top: calc(100% - 30px)
    }
    .hero-inner {
        display: flex;
        gap: 46px;
        justify-content: space-between
    }
    .hero-inner .flag-wrapper {
        display: inline-block;
        transform: translateY(-7px)
    }
    .hero-inner-text {
        flex: 0 0 456px;
        font-size: 18px;
        margin: 0;
        padding-top: 42px
    }
    .hero-inner-image {
        flex: 0 0 456px;
        margin: 0 0 0 auto
    }
    .hero.variant-2 {
        padding-bottom: 80px
    }
    .hero.variant-2 .hero-inner {
        gap: 64px !important;
        padding-top: 0
    }
    .hero.variant-2 .hero-inner-text {
        flex: 1 1 auto;
        padding-top: 0
    }
    .hero.variant-1 .hero-inner {
        align-items: center;
        flex-direction: column;
        gap: 64px !important
    }
    .hero.variant-1 .hero-inner-text {
        flex: 1 1 auto
    }
    .hero.variant-10 .hero-inner {
        align-items: center;
        flex-direction: column;
        gap: 64px !important
    }
    .hero.variant-10 .hero-inner-text {
        flex: 1 1 auto
    }
    .hero.variant-0 .hero-inner-text {
        flex: 0 0 580px !important
    }
    .benefits-col {
        width: 50%
    }
    .benefits-button {
        margin: 64px 0 0
    }
}
@media (min-width:1158px) {
    .article-lg .article-image {
        margin: 0 64px 0 0
    }
    .hero-inner {
        gap: 96px
    }
    .hero-inner-text {
        flex: 0 0 580px
    }
}
@media (min-width:1200px) {
    .h1, h1 {
        font-size: 52px
    }
    .h2, h2 {
        font-size: 48px
    }
    .h3, h3 {
        font-size: 36px
    }
    .h5, h5 {
        font-size: 24px
    }
    .h6, h6 {
        font-size: 20px
    }
    .footer-top {
        padding-bottom: 120px;
        padding-top: 210px
    }
    .btn-xs {
        font-size: 14px;
        padding: 4px 16px
    }
    .btn-sm {
        font-size: 16px;
        padding: 10px 22px
    }
    .btn-round-lg {
        height: 148px;
        padding: 16px;
        width: 148px
    }
    .fixed-cta .btn {
        align-items: normal
    }
    .fixed-cta .btn.btn-round-lg {
        width: 148px
    }
    .fixed-cta .text {
        display: block
    }
    .fixed-cta .icon {
        align-self: flex-end;
        margin: 0 0 5px
    }
    .section {
        padding-bottom: 160px;
        padding-top: 160px
    }
    .section.gutter-top-sm {
        padding-top: 120px
    }
    .section.gutter-top-lg {
        padding-top: 210px
    }
    .section.gutter-bottom-lg {
        padding-bottom: 210px
    }
    .section.rounded-top {
        border-top-left-radius: var(--border-radius-desktop);
        border-top-right-radius: var(--border-radius-desktop)
    }
    .section.rounded-bottom {
        border-bottom-left-radius: var(--border-radius-desktop);
        border-bottom-right-radius: var(--border-radius-desktop)
    }
    .section-header {
        margin-bottom: 64px
    }
    .marquee img {
        height: 200px;
        margin-left: 12px;
        margin-right: 12px
    }
}
@media (min-width:1480px) {
    .header-menu-list li {
        padding-left: 10px;
        padding-right: 10px
    }
}
@media (max-width:1023px) {
    .header-inner {
        margin: 0 -24px
    }
    .mobile-menu-active .header-inner {
        background: #0a2c44;
        border-radius: 0
    }
    .mobile-menu-active .header-logo {
        display: none
    }
    .header-collapse {
        background-color: #0a2c44;
        display: flex;
        flex-wrap: wrap;
        left: 0;
        min-height: calc(100dvh - 56px);
        opacity: 1;
        overflow-y: auto;
        padding: 35px 12px;
        position: absolute;
        top: 100%;
        touch-action: pan-y;
        transform: translateY(-150%);
        transition: .35s;
        visibility: hidden;
        width: 100%
    }
    .mobile-menu-active .header-collapse {
        opacity: 1;
        transform: translateY(0);
        visibility: visible
    }
    .header-collapse a {
        color: #fff !important
    }
    .header-collapse .btn-outline-primary {
        border-color: hsla(0, 0%, 100%, .32);
        color: #fff
    }
    .header-menu {
        width: 100%
    }
    .header-menu-list {
        font-size: 18px
    }
    .header-btns {
        width: 100%
    }
    .header .btn-basket svg {
        margin: 0 2px -2px 0
    }
    .header .btn-basket svg path {
        stroke: #fff
    }
    .header .logo-mobile {
        flex: 0 0 155px
    }
    .mobile-menu-active .header .logo-mobile {
        display: block
    }
    body:has(.sticky-button) .footer-drop {
        padding-bottom: 80px
    }
    .steps-item .flag-wrapper svg {
        bottom: calc(100% - 7px) !important;
        right: calc(100% - 7px) !important
    }
    .article .excerpt {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis
    }
    .widget {
        display: none;
        visibility: hidden
    }
    .hero-revert-mobile {
        display: flex;
        flex-direction: column-reverse
    }
    .hero-revert-mobile .hero-inner-image {
        margin-bottom: 48px
    }
    .hero-inner-image-sm {
        margin: 0 auto;
        max-width: 60%
    }
}
@media (max-width:767px) {
    .usp-item, .usp-text {
        font-size: 16px
    }
    .btn {
        width: 100%
    }
    .fixed-cta .btn {
        font-size: 16px
    }
    .flag {
        padding: 12px 11px 8px
    }
    .benefit {
        text-align: center
    }
    .benefit-icon {
        margin: 0 auto 24px
    }
}
@media (max-width:519px) {
    .btn-mobile-block {
        width: 100%
    }
}