/*	CSS file  */

/*@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700|Roboto:100,300,400,');*/
/*@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700|Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');*/
/*Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, /*sup, */tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    /*font: inherit;*/
    vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

html, body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    background: #ffffff;
}

.clearfix::after {
    content: "";
    display: block;
    height: 0;
    clear: both;
}

h1 {
    color: #212529;
    margin-top: 25px;
    margin-bottom: 25px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 58px;
}

h2 {
    color: #212529;
    margin-top: 50px;
    margin-bottom: 15px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 40px;
    line-height: 50px;
}

h3 {
    color: #212529;
    margin-top: 20px;
    margin-bottom: 15px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
}

p {
    color: #727a86;
    margin-top: 0;
    margin-bottom: 15px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 24px;
}

ul {
    margin: 20px 0 15px;
    /*padding-top: 5px;*/
}

ul > li {
    color: #141414;
    margin-top: 30px;
    padding-left: 30px;
    list-style: none;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 24px;
    background: url("../img/general/checkmark.svg") left top 5px  no-repeat;
}

ul > li:first-child {
    margin-top: 0;
}

ul.blue {
    max-width: 540px;
}

ul.blue li {
    display: inline-block;
    margin-top: 20px;
    vertical-align: top;
    background: none;
    padding-left: 15px;
    padding-right: 15px;
}

ul.blue li::before {
    content: "";
    display: block;
    position: absolute;
    width: 5px;
    height: 12px;
    left: 0;
    top: 5px;
    background: #23b2f0;
}

.wrap {
    max-width: 1720px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    box-sizing: border-box;
}

.wrap-desktop {
    box-sizing: border-box;
}

div.blue {
    margin: 0;
    padding: 50px 0 20px;
    background: #255cff;
}

.blue h3 {
    color: #ffffff;
    margin: 0;
}

.description {
    color: #727272;
    max-width: 540px;
    margin-top: 15px;
    margin-bottom: 20px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 28px;
}

.overlay {
    position: fixed;
    display: none;
    opacity: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(31, 34, 44, .6);
    z-index: 10;

    -webkit-transition: all 275ms ease;
    transition: all 275ms ease;
}

.overlay.show {
    opacity: .9999;
}

.center {
    text-align: center;
}

.mobile-center {
    text-align: center;
}

.card {
    width: 100%;
    max-width: 320px;
    padding: 20px;
    margin: 0 auto 20px;
    border-radius: 10px;
    box-shadow: 5px 5px 38px rgba(130, 141, 167, .1);
    background: #ffffff;
}

/* ===== LINKS & BUTTONS ===== */

a {
    display: inline-block;
    position: relative;
    margin-top: 30px;
    margin-bottom: 20px;
    color: #3d7fe4;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;

    -webkit-transition: all 275ms ease;
    transition: all 275ms ease;
    cursor: pointer;
}

a:hover, a:visited:hover {
    color: #2b62fb;
}

a:visited {
    color: #6966ff;
}

a.unl::after {
    content: "";
    display: block;
    position: absolute;
    /*bottom: 0;*/
    /*right: 0;*/
    height: 2px;
    width: 0;
    background: #3d7fe4;

    margin-top: -2px;

    -webkit-transition: all 275ms ease;
    transition: all 275ms ease;
}

a.unl:hover::after {
    width: 100%;
}

a.unl:visited::after {
    background: #6966ff;
}

a.unl-2::after {
    content: "";
    display: block;
    position: absolute;
    /*bottom: 0;*/
    /*right: 0;*/
    height: 2px;
    width: 100%;
    background: #3d7fe4;

    margin-top: -2px;

    -webkit-transition: all 275ms ease;
    transition: all 275ms ease;
}

a.unl-2:hover::after {
    width: 0;
}

a.unl-2:visited::after {
    background: #6966ff;
}

.btn {
    display: table;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    padding: 23px 40px;
    color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    background: #397ce7;
    border-radius: 40px;
    border: 0;
    cursor: pointer;


    -webkit-transition: all 275ms ease;
    transition: all 275ms ease;
}

.btn:hover {
    color: #ffffff;
    background: #255cff;
    box-shadow: none;
}

.btn.light {
    color: #2b62fb !important;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(43, 56, 108, .3);
}

.btn.light:hover {
    color: #ffffff !important;
    background: #092997;
}

.btn:active,
.btn.light:active {
    background: #c3c9d9;
}

.btn:visited,
.btn:visited:hover {
    color: #ffffff;
}

p > a {
    line-height: inherit;
    font-size: inherit;
    margin: 0;
    font-weight: 600;
    color: #5273EF;
}

a.close {
    height: 30px;
    width: 30px;
    top: 15px;
    right: 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    cursor: pointer;
}

a.close::after {
    content: '';
    width: 30px;
    height: 2px;
    display: block;
    background: #d1d1d1;
    position: absolute;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-top: 15px;
    border-radius: 2px;
    -webkit-transition: 275ms ease-in-out;
    -o-transition: 275ms ease-in-out;
    transition: 275ms ease-in-out;
}

a.close:hover::after {
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    background-color: #5273EF;
    height: 3px;
}

a.close::before {
    content: '';
    width: 30px;
    height: 2px;
    display: block;
    background: #d1d1d1;
    position: absolute;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    margin-top: 15px;
    border-radius: 2px;
    -webkit-transition: 275ms ease-in-out;
    -o-transition: 275ms ease-in-out;
    transition: 275ms ease-in-out;
}

a.close:hover::before {
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
    background-color: #5273EF;
    height: 3px;
}

a.read-more {
    display: block;
    position: absolute;
    margin: 0;
    right: -10px;
    bottom: -10px;
    width: 60px;
    height: 60px;
    border-radius: 10px 0;
    background: #f16643 url("../img/general/arrow-r.svg") right 19px center no-repeat;
}

a.read-more:hover {
    background-color: #ff843a;
}

a.tag {
    font-size: 14px;
    line-height: 15px;
    font-weight: 400;
    color: #060028;
    display: inline-block;
    margin: 12px 12px 0 0;
    background: #F3F6FA;
    padding: 9px 14px;
    border-radius: 37px;
    transition: 0.2s;
}

a.tag:hover {
    color: #fff;
    background: #000;
    transition: 0.2s;
}

h3 > a,
h3 > a:visited {
    margin: 0;
    color: #212529;
    font-size: 18px;
    line-height: 28px;
}


/* ===== HEADER ===== */

header {
    padding: 10px 0;
    box-sizing: border-box;
    background: #fff;
}

.header .wrap {
    padding: 0 80px;
    max-width: 1720px;
    width: 100%;
}

.header.scroll {
    box-shadow: -15px -10px 76px rgb(98 109 128 / 14%);
}

.header.scroll .menu-btn {
    background: #fff;
    box-shadow: 0 0 50px rgba(62, 73, 78, .13);
}

header .logo {
    width: 128px;
    height: 40px;
    display: inline-block;
    vertical-align: top;
    margin: 0;
    background: center / contain no-repeat url("/resources/img/about-us/logo.svg");
}

header .menu-btn {
    position: fixed;
    top: -15px;
    right: -13px;
    width: 87px;
    height: 87px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;

    -webkit-transition: all 275ms ease;
    transition: all 275ms ease;
}

header .menu-btn span,
header .menu-btn span::before,
header .menu-btn span::after {
    display: block;
    height: 3px;
    width: 32px;
    margin: 45px 0 0 24px;
    background: #060028;
    border-radius: 2px;

    -webkit-transition: all 275ms ease;
    transition: all 275ms ease;
}

header .menu-btn span::before {
    content: "";
    display: block;
    position: absolute;
    width: 32px;
    margin: -9px 0 0 0;
}

header .menu-btn span::after {
    content: "";
    display: block;
    position: absolute;
    width: 32px;
    margin: 9px 0 0 0;
}

header .menu-btn:hover span::before,
header .menu-btn:hover span::after {
    width: 26px;
    margin-left: 0;
}

header .menu {
    position: fixed;
    width: 280px;
    height: 100%;
    top: 0;
    right: -280px;
    background: #ffffff;
    overflow-y: auto;
    z-index: 11;

    -webkit-transition: all 275ms ease;
    transition: all 275ms ease;
}

header .menu.show {
    right: 0;
    box-shadow: 0 0 50px rgba(7, 20, 37, .3);
}

header .menu .menu-top {
    padding: 10px 20px;
}

header .menu .btns {
    padding: 17px 0 17px 20px;
    border: #e1e4ee 1px solid;
    border-left: 0;
    border-right: 0;
}

header .menu .btns .btn {
    display: inline-block;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    font-family: 'Graphik';
    box-shadow: none;
    outline: 0;
    color: #060028;
    background: transparent;
    padding: 8px 30px;
    border: 2px solid #060028;
    border-radius: 100px;
    transition: 0.3s;
}

header .menu .btns .btn:hover {
    background: #5273EF;
    border: 2px solid #5273EF;
    color: #fff;
    transition: 0.3s;
}

header .menu .btns .btn:focus {
    background: #0067FF;
    box-shadow: 0 0 0 2px #FFFFFF, 0 0 0 4px #0054D0;
}

header .menu * {
    margin: 0;
    padding: 0;
}

header .menu nav ul li {
    background: none;
    cursor: pointer;
    position: relative;
}

header .menu nav ul li a {
    display: block;
    padding: 15px 0 15px 20px;
    color: #212529;
    font-size: 15px;
}

header .menu nav ul li.active,
header .menu nav ul li a:hover {
    background: #f7f9fe;
}

header .menu nav ul li > ul li a {
    padding-left: 60px;
}

header .menu nav ul li > ul li.active,
header .menu nav ul li > ul li a:hover {
    background: #e6ecfa;
}

.header .menu nav ul li.active a,
.header .menu nav ul li.active ul li.active a {
    font-weight: 700;
}

.header .menu nav ul li.active ul li a {
    font-weight: 400;
}

@media (min-width: 1024px) {
    header.header .menu nav>ul>li:first-child::after {
        top: 50%;
        transform: translateY(-50%);
        right: 20px;
        background: center / contain no-repeat url("/resources/img/about-us/nav-arrow.svg");
        width: 10px;
        height: 6px;
    }

    header.header .menu nav>ul>li:first-child:hover::after {
        transform: translateY(-50%) rotate(180deg);
    }

    header.header .menu nav>ul>li>a::before {
        top: -8px;
    }

    header.header .menu nav ul li:first-child>ul {
        top: 56px;
    }

    header.header.scroll .menu nav ul li:first-child>ul {
        top: 64px;
    }

    header.header .menu nav ul li:first-child>ul>li {
        padding: 0;
    }
}

@media (min-width: 1280px) {
    header.header .menu nav>ul li:first-child {
        padding-right: 55px;
    }

    header.header .menu nav>ul li {
        padding-right: 40px;
        padding-left: 0;
    }

    header.header .menu nav>ul>li:first-child::after,
    header.header.scroll .menu nav>ul>li:first-child::after {
        right: 40px;
    }
}

/* ===== NEW HEADER ===== */

@media(max-width: 1279px) {
    .header .wrap {
        padding: 0 40px;
    }
    header.header .menu nav>ul li:first-child {
        padding-right: 35px;
    }
}
@media(max-width: 1023px) {
    header.header .menu nav>ul li:first-child {
        padding-right: 0;
    }
    header.header .menu nav ul li:first-child>ul {
        top: auto;
    }
}
@media(max-width: 768px) {
    .header .wrap {
        padding: 0 20px;
    }
}
/* ===== NEW HEADER ===== */


/* ===== FOOTER ===== */

.footer-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 15px;
}
.footer__inner {
    padding: 48px 0 34px;
}
.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 75px;
    margin-bottom: 35px;
    border-bottom: 1px solid #9ba5b9;
}
.footer__contacts {
    max-width: 340px;
    width: 100%;
    margin-right: 30px;
}
.footer__contacts-signup {
    margin-bottom: 48px;
}
.footer__contacts-signup h2 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 900;
    color: #212529;
    margin: 0 0 8px 0;
    font-family: "Graphik";
}
.footer__contacts-signup p {
    font-size: 14px;
    line-height: 26px;
    font-weight: 400;
    margin: 0 0 24px 0;
    font-family: "Graphik";
}
.footer__contacts-form {
    padding: 0;
    position: relative;
    display: flex;
    width: 100%;
}
.footer__contacts-input {
    border: 1px solid #9ba5b9;
    border-radius: 48px;
    padding: 14px 62px 14px 20px;
    width: 100%;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #5b6375;
    outline: none;
    transition: 0.3s;
    font-family: 'Open Sans', sans-serif;
}
.footer__contacts-input:focus {
    border: 1px solid #788399;
    transition: 0.3s;
}
.footer__contacts-input.error {
    border: 1px solid #ff6347;
}
.footer__contacts-btn {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50px;
    width: 44px;
    height: 44px;
    border: none;
    background: url(/resources/img/footer/footer-input-arrow.svg), #212529;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    transition: 0.3s;
}
.footer__contacts-btn:hover {
    transform: translateY(-50%) scale(0.97);
    background: url(/resources/img/footer/footer-input-arrow.svg), #257dfd;
    background-repeat: no-repeat;
    background-position: center;
    transition: 0.4s;
    border-radius: 50px !important;
}
.form-error-text {
    margin-top: 5px;
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    color: #ff6347;
    text-align: center;
    display: none;
}
.form-error-text.active {
    display: block;
}
.footer__contacts-link {
    margin: 0 10px 0 0;
    max-width: 32px;
    width: 100%;
    line-height: 0;
}
.footer__contacts-link:last-child {
    margin: 0;
}
.footer__contacts-link svg {
    width: 100%;
    height: auto;
}
.footer__contacts-link svg path:first-child {
    fill: #f3f6fa;
    transition: 0.2s;
}
.footer__contacts-link svg path:last-child {
    fill: #212529;
    transition: 0.3s;
}
.footer__contacts-link svg:hover path:first-child {
    fill: #212529;
    transition: 0.2s;
}
.footer__contacts-link svg:hover path:last-child {
    fill: #f3f6fa;
    transition: 0.3s;
}
.footer .footer-title {
    margin: 0 0 16px 0;
    padding: 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 900;
    color: #212529;
    background: none;
    font-family: "Graphik";
}
.footer__nav {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0;
}
.footer__nav-block {
    margin: 0 75px 0 0;
}
.footer__nav-block:last-child {
    margin: 0;
}
.footer__nav-list {
    font-family: "Graphik";
}
.footer__nav-item {
    margin: 0;
    padding: 0;
    margin: 0 0 16px 0;
    background: none;
    font-family: "Graphik";
}
.footer__nav-item:last-child {
    margin: 0;
}
.footer__nav-item a {
    margin: 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #212529;
    transition: 0.3s;
    font-family: "Graphik";
}
.footer__nav-item a:hover {
    color: #257dfd;
    transition: 0.3s;
}
.footer__nav-social {
    display: none;
}
.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer__bottom-copyright {
    color: #5b6375;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: #5b6375;
    font-family: "Graphik";
}
.footer__bottom-docs {
    color: #212529;
}
.footer__bottom-link {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin: 0 32px 0 0;
    transition: 0.3s;
    color: #212529;
    font-family: "Graphik";
}
.footer__bottom-link:hover {
    color: #257dfd;
    transition: 0.3s;
}
.footer__bottom-link:last-child {
    margin: 0;
}

.footer__succes-box {
    position: relative;
}

.footer__contacts-comment {
    position: absolute;
    bottom: 50px;
    left: -40px;
    width: 268px;
    height: 185px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.3s;
}

.footer__contacts-comment::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 100%;
    height: 100%;
    background: url("https://static.epom.com/resources/img/footer/footer-comment-bg.webp");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.footer__contacts-comment.active {
    opacity: 1;
    visibility: visible;
    pointer-events: painted;
    transition: 0.3s;
}

.footer-comment-text {
    max-width: 70%;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    margin: 0 auto 16px;
    z-index: 20;
}

.footer-comment-btn {
    margin: 0;
    background: #060028;
    padding: 10px;
    font-size: 14px !important;
    line-height: 20px;
    display: block;
    max-width: 110px;
    width: 100%;
    text-align: center;
    box-shadow: none;
    z-index: 20;
}

@media (max-width: 1024px) {
    .footer__inner {
        max-width: 640px;
        margin: 0 auto;
    }
    .footer__top {
        flex-direction: column;
    }
    .footer__contacts {
        margin: 0 0 40px;
    }
    .footer__contacts-signup {
        margin: 0;
    }
    .footer__contacts-social {
        display: none;
    }
    .footer__nav {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .footer__nav-social {
        display: block;
    }
    .footer__nav-block {
        margin: 0 0 40px;
        max-width: 48%;
        width: 100%;
    }
}
@media (max-width: 640px) {
    .footer__inner {
        max-width: 400px;
    }
    .footer__top {
        padding-bottom: 30px;
        margin-bottom: 20px;
    }
    .footer__contacts {
        max-width: 100%;
    }
    .footer__nav {
        flex-direction: column;
    }
    .footer__nav-block {
        max-width: 100%;
    }
    .footer__bottom {
        flex-direction: column-reverse;
        align-items: flex-start;
    }
    .footer__bottom-docs {
        margin-bottom: 8px;
    }
    .footer__contacts-comment {
        left: auto;
        right: 0;
    }
    .footer__contacts-comment::before {
        transform: translateX(-50%) translateY(-50%) rotate3d(0, 1, 0, 180deg);
    }
}

/* ===== FOOTER ===== */


/* ===== SWIPER ===== */

.move {
    transition: left 175ms ease;
    -webkit-transition: left 175ms ease;
}

.draw {
    -webkit-transition: color 0.25s;
    transition: color 0.25s;
}
.draw::before,
.draw::after {
    border: 1px solid transparent;
    width: 0;
    height: 0;
}
.draw::before {
    top: 0;
    left: 0;
}
.draw::after {
    bottom: 0;
    right: 0;
}
.draw:hover {
    color: #2fa4e2;
}
.draw:hover::before,
.draw:hover::after {
    width: 100%;
    height: 100%;
}
.draw:hover::before {
    border-top-color: #2fa4e2;
    border-right-color: #2fa4e2;
    -webkit-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
    transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}
.draw:hover::after {
    border-bottom-color: #2fa4e2;
    border-left-color: #2fa4e2;
    -webkit-transition: border-color 0s ease-out 0.5s, width 0.25s ease-out 0.5s, height 0.25s ease-out 0.75s;
    transition: border-color 0s ease-out 0.5s, width 0.25s ease-out 0.5s, height 0.25s ease-out 0.75s;
}

div.swiper div.wrapper {
    width: 100%;
    height: 360px;
    margin: auto;
    position: relative;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    /*user-select: none;*/
}

div.swiper div.wrapper div.wrap-slide {
    /*width: 280px;*/
    width: 100%;
    /*max-width: 885px;*/
    height: 330px;
    display: block;
    position: absolute;
}

div.swiper div.wrapper div.wrap-slide > div.slider {
    width: 500%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    cursor: grab;
}

div.swiper div.wrapper div.wrap-slide > div.slider:active {
    cursor: grabbing;
}

div.swiper div.wrapper div.wrap-slide > div.slider > div {
    width: 295px;
    height: 100%;
    position: relative;
    float: left;
    background-size: 100% 100% !important;
}

div.swiper div.wrapper div.wrap-slide > div.slider > div > div.slide {
    position: absolute;
    padding: 20px;
    top: 0;
    right: 15px;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    box-shadow: 5px 5px 38px rgba(130, 140, 168, .1);
    background-color: #ffffff;

    transition: 275ms ease;
    -webkit-transition: 275ms ease;
}

div.swiper div.wrapper div.wrap-slide > div.slider > div.active > div.slide {
    box-shadow: 15px 15px 51px rgba(98, 109, 128, .3);
}

div.swiper div.wrapper div.controls {
    height: 30px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0);
}

div.swiper div.wrapper div.controls > div {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin: 20px 5px 0;
    vertical-align: middle;
    border-radius: 50%;
    cursor: pointer;
    border: transparent 2px solid;
    background: #ff4000;
}

div.swiper div.wrapper div.controls > div.active {
    width: 11px;
    height: 11px;
    border: #ff4000 2px solid;
    background: transparent;
}

div.swiper div.wrapper div.wrap-slide div.slider div.slide img {
    display: block;
    width: auto;
    height: 100px;
}

div.swiper div.wrapper div.wrap-slide > div.slider > div > div.slide h3 {
    margin: 10px 0;
}

div.swiper div.wrapper div.wrap-slide > div.slider > div > div.slide p {
    margin: 0;
}

/* ===== FORM ===== */

form {
    padding: 10px;
}

form label,
form div.radio {
    display: block;
    max-width: 340px;
    margin: 10px auto 0;
    padding: 10px 10px 0;
}

form label span {
    display: block;
    color: #727a85;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    margin: 0 0 2px 7px;
}

form label input,
form label textarea {
    width: 100%;
    padding: 13px 15px;
    color: #212529;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    border: #e1e4ee 1px solid;

    -webkit-transition: all 275ms ease;
    transition: all 275ms ease;
}

form label input {
    /*border-radius: 23px;*/
    border-radius: 25px;
    box-shadow: none;
}

form label textarea {
    border-radius: 10px;
    resize: vertical;
}

form label input::placeholder,
form label textarea::placeholder {
    color: #bbc1ca;
}

form label input:focus,
form label textarea:focus {
    border-color: #ffffff;
    box-shadow: 3px 3px 18px rgba(225, 228, 238, .89);
    outline: none;
}

form div.submit-wrap .btn {
    max-width: 250px;
    margin-left: auto;
}

form.processing div.submit-wrap {
    background: url("/resources/img/general/loader.svg") center center no-repeat;
}

form.processing div.submit-wrap .btn {
    visibility: hidden;

    -webkit-transition: none;
    transition: none;
}


/* custom-select */
form label.custom-select select {
    position: absolute;
    opacity: 0;
}

form label.custom-select .select {
    width: 100%;
    padding: 13px 30px 13px 15px;
    color: #212529;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    border: #e1e4ee 1px solid;
    border-radius: 23px;
    background: #ffffff;
    z-index: 2;

    -webkit-transition: all 275ms ease;
    transition: all 275ms ease;
}

form label.custom-select .select::after {
    position: absolute;
    content: "";
    top: 20px;
    right: 15px;
    width: 12px;
    height: 7px;
    background: url("/resources/img/general/arrow-d.svg") top right no-repeat;

    -webkit-transition: all 275ms ease-out;
    transition: all 275ms ease-out;
}

form label.custom-select.focus .select::after {
    transform: rotate(180deg);
}

form label.custom-select .select.unset {
    color: #bbc1ca;
}

form label.custom-select .select,
form label.custom-select .items div {
    cursor: pointer;
    /*user-select: none;*/
}

form label.custom-select .items {
    position: absolute;
    background: #ffffff;
    padding-top: 24px;
    margin-top: -24px;
    /*top: 100%;*/
    left: 10px;
    right: 10px;
    max-height: 0;
    border-radius: 0 0 23px 23px;
    box-shadow: none;
    overflow: hidden;
    z-index: 1;

    -webkit-transition: all 275ms ease-out;
    transition: all 275ms ease-out;
}

form label.custom-select.focus .items {
    max-height: 600px;
    box-shadow: 5px 0 18px rgba(225, 228, 238, .89);
}

form label.custom-select .items div {
    padding: 13px 15px;
    color: #727a86;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    border-radius: 23px;

    -webkit-transition: background-color 125ms ease-out;
    transition: background-color 125ms ease-out;
}

form label.custom-select .same-as-selected,
form label.custom-select .items div:hover {
    background-color: #f7f9fe;
    color: #212529;
}

form label.custom-select.multiple .same-as-selected {
    background-color: #ffffff;
    background-image: url("/resources/img/general/checkmark-form.svg");
    background-position: center right 15px;
    background-repeat: no-repeat;
}

form label.custom-select.multiple .select {
    padding: 7px 25px 7px 15px;

    -webkit-transition: unset;
    transition: unset;
}

form label.custom-select.multiple .select.unset {
    padding: 13px;
}

form label.custom-select.multiple .select > div {
    display: inline-block;
    margin: 3px 5px 3px 0;
    padding: 2px 10px 4px;
    font-size: 14px;
    background: #ebedf4;
    border-radius: 11px;
}

form label.custom-select.multiple .select > div > img {
    margin-left: 10px;
}


form label input:disabled,
form label select:disabled ~ div.select {
    background:#efefef;
}

form label.invalid input,
form label.invalid div.select {
    border-color: #ee6660;
}

form label span.validateMessage {
    color: #ee6660;
    overflow: hidden;
    max-height: 0;
    font-size: 13px;
    font-weight: 400;
    margin-top: 2px;

    position: absolute;

    -webkit-transition: all 275ms ease-out;
    transition: all 275ms ease-out;
}

form label.invalid span.validateMessage {
    max-height: 20px;
}

form div.radio h3 {
    color: #727a86;
    font-size: 15px;
    line-height: 24px;
}

form div.radio label {
    color: #212529;
    padding: 0 0 0 35px;
    margin: 20px 0 23px;
    font-size: 14px;
    line-height: 20px;
    cursor: pointer;
}

form div.radio label {
    padding-left: 35px;
}

form div.radio label input[type=radio] {
    position: absolute;
    opacity: 0;
    width: 0;
}

form div.radio label span.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    margin: 0;
    border-radius: 50%;
    border: #e1e4ee 1px solid;

    -webkit-transition: all 275ms ease;
    transition: all 275ms ease;
}

form div.radio label:hover input[type=radio] ~ .checkmark {
    border-color: #3d7fe4;
}

form div.radio label input[type=radio]:checked ~ .checkmark {
    background-color: #3d7fe4;
    border-color: #3d7fe4;
}

form div.radio label .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

form div.radio label input[type=radio]:checked ~ .checkmark:after {
    display: block;
}

form div.radio label .checkmark:after {
    top: 6px;
    left: 6px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffffff;
}

form div.radio label input[type=radio]:disabled ~ .checkmark {
    border-color: #e1e4ee;
    background-color: #e1e4ee;
}

.grecaptcha-badge {
    z-index: 999;
}

.calendly-badge-widget {
    bottom: 108px;
    right: 5px;
}

.calendly-badge-widget .calendly-badge-content {
    width: 65px;
    height: 65px;
    padding: 0;
    border-radius: 50%;
    font-size: 0;
    background: rgb(154, 213, 204) url("/resources/img/general/phone.svg") center center no-repeat !important;
    background-size: 20px !important;
    box-shadow: 5px 5px 40px rgba(154, 213, 204, .46);

    -webkit-transition: all 275ms ease;
    transition: all 275ms ease;
}

.calendly-badge-widget .calendly-badge-content:hover {
    box-shadow: 5px 5px 40px rgba(154, 213, 204, 1);
}

body > div.drift-conductor-item {
    right: 0 !important;
}


a#totop {
    display: none;
    position: fixed;
    width: 65px;
    height: 65px;
    right: 5px;
    bottom: 170px;
    border-radius: 50%;
    background: #ffffff url("/resources/img/general/to-top-arrow.svg") center center no-repeat;
    box-shadow: 5px 5px 27px rgba(130, 141, 167, .23);
    z-index: 100;
}

a#totop:hover {
    box-shadow: 5px 5px 45px rgba(130, 141, 167, .46);
}

/* BLOG NEW DESIGN */
.wrap.blog {
    z-index: 5;
}
.blog {
    margin-top: 48px;
}
.blog h1 {
    font-size: 48px;
    line-height: 60px;
    font-weight: 700;
    color: #060028;
    font-family: "NewSpirit";
    margin: 0 0 24px;
}
.blog h3 {
    font-size: 22px;
    line-height: 32px;
}
.blog * {
    font-family: "Graphik";
}

.blog .subscribe form label input {
    font-family: 'Open Sans', sans-serif;
}

.blog .description {
    font-size: 16px;
    line-height: 24px;
    margin-top: 24px;
    max-width: 500px;
    font-family: "Graphik";
    max-width: 380px;
}

.blog .subscribe {
    margin-top: 48px;
}

.blog .subscribe h3 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    color: #060028;
    margin: 0 0 16px;
    font-family: "Graphik";
}

.blog .clearfix {
    margin: 8px 0 24px;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.blog .clearfix .cat {
    margin-top: 8px;
}

.blog .sorting {
    max-width: 96%;
    margin-left: auto;
}

.blog .sorting__box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    padding-left: 30px;
}

.blog .sorting__box a {
    font-size: 14px;
    line-height: 15px;
    font-weight: 400;
    color: #060028;
    display: inline-block;
    margin: 0 12px 12px 0;
    background: #F3F6FA;
    padding: 9px 14px;
    border-radius: 37px;
}

.blog .sorting__box a.active {
    background: #060028;
    color: #fff;
}

.latest-carousel {
    margin: 38px 0 87px;
}

.latest-carousel a {
    margin: 0;
    width: 100%;
}

.latest-carousel__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

h3.latest-carousel__top-title {
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    color: #060028;
    font-family: 'NewSpirit';
    margin: 0;
}

.latest-carousel__top-arrows {
    display: flex;
    align-items: center;
    justify-content: center;
}

.latest-carousel__top-arrows .arrow {
    width: 32px;
    height: 32px;
    cursor: pointer;
    background: url("/resources/img/blog/popular-slider-arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 16px;
    transition: 0.3s;
}

.latest-carousel__top-arrows .arrow:nth-child(2) {
    background: url("/resources/img/blog/popular-slider-arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(180deg);
}

.latest-carousel__top-arrows .arrow:hover {
    transform: scale(1.1) translateX(-5px);
    transition: 0.3s;
}

.latest-carousel__top-arrows .arrow:nth-child(2):hover {
    transform: scale(1.1) rotate(180deg) translateX(-5px);
    transition: 0.3s;
}

.latest-carousel .slick-track {
    padding-top: 12px;
}

.latest-carousel .cat {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.latest-carousel .cat a {
    display: inline-block;
    width: auto;
    background: #F3F6FA;
    padding: 9px 14px;
    font-size: 14px;
    line-height: 15px;
    font-weight: 400;
    color: #060028;
    border-radius: 37px;
    margin: 20px 12px 0 0;
    transition: 0.3s;
    border: none;
}

.latest-carousel .cat a:hover {
    color: #fff;
    background: #000;
    transition: 0.3s;
}

.latest-carousel__main {
    margin: 0 -30px;
}

.latest-carousel__main-item {
    display: block;
    margin: 0 28px;
    text-align: left;
}

.latest-carousel__main-item.slick-slide {
    height: auto;
}

.latest-carousel__main-item h3 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
    color: #060028;
    margin: 16px 0;
    font-family: 'Graphik';
}

.latest-carousel__main-item .date {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 15px;
    font-weight: 400;
    color: #737579;
    font-family: 'Graphik';
}
.latest-carousel__main-item p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #2c2c2c;
}
.latest-carousel__main-item p b {
    font-weight: 400;
}

.latest-carousel .latest-carousel__main .latest-carousel__main-item a > img.article-image-bg {
    max-width: 100%;
    width: 100%;
    height: auto;
    opacity: 0;
    transition: 0.2s;
    display: block;
}

.latest-carousel .latest-carousel__main .latest-carousel__main-item a:hover > img.article-image-bg {
    opacity: 1;
    transition: 0.2s;
}

.latest-carousel .latest-carousel__main .latest-carousel__main-item a > img.hover-square {
    display: block;
    position: absolute;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    border-radius: 10px;

    -webkit-transition: all 275ms ease-out;
    transition: all 275ms ease-out;
}

.latest-carousel .latest-carousel__main .latest-carousel__main-item a > img.hover-square:hover {
    margin: -10px 0 0 -10px;
}

.latest-carousel .latest-carousel__main .latest-carousel__main-item a > picture > img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.latest-carousel .latest-carousel__main .latest-carousel__main-item a > picture::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.2);

    -webkit-transition: all 275ms ease-out;
    transition: all 275ms ease-out;
}

@media(max-width: 1399px) {
    .blog .sorting__box {
        padding-left: 10px;
    }
}
@media(max-width: 1023px) {
    .blog .subscribe {
        margin-top: 40px;
    }
    .blog .navigation {
        text-align: center;
        max-width: 500px;
        margin: 0 auto 64px;
    }
    .blog .navigation p.description {
        margin: 24px auto 40px;
    }
    .blog .navigation .subscribe form {
        margin: 0 auto;
        max-width: 340px;
    }
    .blog .sorting__box {
        padding: 0;
    }
    .blog ul.clearfix {
        justify-content: space-between;
    }
    .blog ul.clearfix li {
        max-width: 50%;
        width: 100%;
        border: none;
    }
    .blog a.link {
        width: 100%;
    }
    .blog ul.clearfix li article {
        padding: 22px 16px 24px;
    }
    .latest-carousel {
        margin: 38px 0 64px;
    }
    .latest-carousel__top {
        margin-bottom: 36px;
    }
    .latest-carousel__main {
        margin: 0 -15px;
    }
    .latest-carousel__main-item {
        margin: 0 16px;
    }
    .latest-carousel .latest-carousel__main .latest-carousel__main-item a > img.hover-square:hover {
        margin: 0;
    }
}
@media(max-width: 768px) {
    .blog ul.clearfix li {
        max-width: 500px;
        margin: 0 auto;
    }
    .latest-carousel__top {
        margin-bottom: 28px;
    }
}
@media (max-width: 639px) {
    .latest-carousel__top-arrows {
        display: none;
    }
    .latest-carousel__main-item {
        margin: 0 16px 40px;
    }
    .latest-carousel__main-item:last-child {
        margin: 0 16px;
    }
}
@media(max-width: 375px) {
    .blog h1 {
        font-size: 40px;
        line-height: 50px;
        margin: 40px auto 24px;
    }
    .blog ul.clearfix li article {
        padding: 24px 16px;
    }
}
/* BLOG NEW DESIGN */
/*************************************
 *                                   *
 *     M E D I A   Q U E R I E S     *
 *                                   *
 *************************************/

@media (min-width: 768px) {
    .wrap {
        padding: 0 40px;
    }

    footer .wrap {
        padding: 0 20px;
    }

    @media (min-width: 1024px) {
        .wrap-desktop {
            padding: 0 40px;
            margin: 0;
        }

        footer div.wrap-desktop .footer-navigation {
            max-width: 638px;
        }

        h1 {
            max-width: 540px;
            margin-top: 90px;
            margin-bottom: 50px;
            font-size: 60px;
            line-height: 70px;
        }

        h2 {
            max-width: 605px;
            margin-top: 90px;
            margin-bottom: 22px;
            font-size: 48px;
            line-height: 58px;
        }

        h3 {
            margin-top: 25px;
            font-size: 20px;
            line-height: 30px;
        }

        p {
            margin-top: 10px;
            font-size: 16px;
        }

        .description {
            margin-top: 22px;
            font-size: 20px;
            line-height: 33px;
        }

        .mobile-center {
            text-align: left;
        }

        a, .btn {
            font-size: 18px;
        }

        .btn {
            margin-left: 0;
        }

        a.read-more:hover {
            width: 167px;
            background-color: #f16643;
        }

        a.read-more::before {
            content: "";
            margin-left: 19px;
            color: #d16643;
            line-height: 60px;
            font-size: 1px;

            -webkit-transition: all 275ms ease;
            transition: all 275ms ease;
        }

        a.read-more:hover::before {
            content: "Read more";
            color: #ffffff;
            font-size: 16px;
        }

        h3 > a {
            font-size: 20px;
            line-height: 30px;
        }

        a.tag {
            font-size: 14px;
            /*line-height: 36px;*/
        }

        body {
            padding-top: 64px;
        }

        ul > li {
            font-size: 16px;
        }

        header {
            position: fixed;
            width: 100%;
            padding: 0;
            height: 64px;
            top: 0;
            left: 0;
            z-index: 1000;

            -webkit-transition: all 275ms ease;
            transition: all 275ms ease;

            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        header .wrap {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 12px;
            padding-bottom: 12px;
        }

        header .menu-btn {
            display: none;
        }

        header .menu {
            width: auto;
            height: auto;
            background: inherit;
            overflow: visible;
            display: flex;
            flex-direction: row-reverse;
            align-items: center;
            position: relative;
            right: unset;
            top: unset;
        }

        header .menu .menu-top {
            display: none;
        }

        header .menu .btns {
            padding: 0;
            border: 0;
            -webkit-transition: all 275ms ease;
            transition: all 275ms ease;
        }

        header .menu nav ul li {
            display: table-cell;
            padding-left: 0;
            padding-right: 20px;

            -webkit-transition: all 275ms ease;
            transition: all 275ms ease;
        }

        header.scroll .menu nav ul li {
            height: inherit;
        }

        header .menu nav ul li:first-child {
            padding-right: 44px;
        }

        header .menu nav > ul > li:first-child::after {
            content: "";
            display: block;
            position: absolute;
            top: 43px;
            right: 14px;
            width: 14px;
            height: 7px;
            background: url("/resources/img/general/arrow-d.svg") center center no-repeat;

            -webkit-transition: all 275ms ease;
            transition: all 275ms ease;
        }

        header .menu nav > ul > li:first-child:hover::after {
            transform: rotate(180deg);
        }

        header .menu nav ul li:first-child > ul {
            display: block;
            position: absolute;
            margin:0;
            padding: 0;
            max-height: 0;
            overflow: hidden;
            top: 90px;
            left: 0;
            border-radius: 0 0 10px 10px;
            background: #ffffff;

            -webkit-transition: all 275ms ease;
            transition: all 275ms ease;
        }

        header.scroll .menu nav ul li:first-child > ul {
            top: 74px;
        }

        header .menu nav ul li:first-child:hover > ul {
            max-height: 150px;
            box-shadow: -15px -10px 76px rgba(98, 109, 128, .14);
        }

        header .menu nav ul li:first-child > ul > li {
            margin: 0;
            padding: 0;

            display: block;
        }

        header .menu nav ul li:first-child > ul > li > a {
            margin: 0;
            padding: 15px 25px;
            white-space: nowrap;
            font-weight: 400;
        }

        header .menu nav ul li:first-child > ul > li > a:hover {
            background: #f7f9fe;
        }

        header .menu nav ul li a {
            padding: 12px 0;
            font-size: 16px;
            line-height: 24px;
            font-weight: 400;
            font-family: 'Graphik';
            color: #2C2C2C;
            -webkit-transition: all 275ms ease;
            transition: all 275ms ease;
        }

        .header .menu nav ul li a::before {
            background: #5273EF;
        }

        header .menu nav > ul > li > a::before {
            content: "";
            display: block;
            position: absolute;
            top: 0;
            /*left: 0;*/
            width: 100%;
            height: 0;
            background: #0db1f3;

            -webkit-transition: all 275ms ease;
            transition: all 275ms ease;
        }


        header .menu nav ul li a:hover,
        header .menu nav ul li.active,
        header .menu nav ul li.active a {
            color: #000000;
            background: none;
        }

        header .menu nav ul li a:hover::before,
        header .menu nav ul li.active a::before {
            width: 100%;
            height: 2px;
        }

        .header .menu nav ul li.active a::before {
            top: -8px;
            background: #5273EF;
        }

        header .menu .btns a.unl {
            font-size: 16px;
        }

        footer h2 {
            margin-top: 30px;
        }

        footer nav {
            width: auto;
            margin-top: 10px;
            border: none;
            padding-left: 0;
        }

        footer nav.nav--first,
        footer nav.nav--second {
            padding-right: 40px;
        }

        footer .copyright,
        footer nav:nth-child(2n+2),
        footer div.wrap-desktop .footer-navigation .nav--third,
        footer div.wrap-desktop .footer-navigation .sn {
            border: none;
        }

        footer nav.sn {
            position: relative;
            margin-top: 0;
            padding: 0;
        }

        footer .partner-img {
            display: none;
        }

        footer .wrap {
            padding: 0;
        }

        footer div.wrap-desktop > div >  nav.sn > a {
            margin: 15px 0 0 0;
        }

        div.swiper.mobile-only div.wrapper {
            height: inherit;
        }

        div.swiper.mobile-only div.wrapper div.wrap-slide {
            position: relative;
            height: 100%;
            width: 100%;
            max-width: none;
        }

        div.swiper.mobile-only div.wrapper div.wrap-slide > div.slider {
            position: relative;
            width: 100%;
            cursor: default;
        }

        div.swiper.mobile-only div.wrapper div.wrap-slide > div.slider > div {
            display: inline-block;
            width: 50%;
            float: inherit;
            vertical-align: top;
        }

        div.swiper.mobile-only div.wrapper div.wrap-slide > div.slider > div > div.slide {
            position: relative;
            margin: 0 0 30px 30px;
        }

        div.swiper.mobile-only div.wrapper div.wrap-slide > div.slider > div.active > div.slide {
            box-shadow: 5px 5px 38px rgba(130, 140, 168, .1);
        }

        div.swiper div.wrapper div.controls {
            display: none;
        }


        form label,
        form div.radio {
            max-width: 435px;
        }

        form label span {
            font-size: 13px;
        }

        form label input,
        form label textarea,
        form label.custom-select .select,
        form label.custom-select .items div {
            font-size: 16px;
        }

        form label.custom-select .select {
            border-radius: 25px;
        }

        form label.custom-select.multiple .select > div {
            font-size: 16px;
            border-radius: 14px;
        }


        form div.radio label {
            margin: 20px 0;
            font-size: 16px;
            line-height: 24px;
        }

        form div.radio label:nth-child(2) {
            margin-top: 15px;
        }

        form div.radio h3 {
            font-size: 24px;
            line-height: 32px;
        }


        @media (min-width: 1280px) {

            /*footer .wrap,*/
            .wrap {
                padding: 0 80px;
            }

            .wrap-desktop {
                padding: 0 80px;
                max-width: 1720px;
                margin: 0 auto;
            }

            /*header .menu {*/
            /*    right: 80px;*/
            /*}*/

            /*header .menu .btns {*/
            /*    padding: 23px 0 0 30px;*/
            /*}*/

            footer nav.nav--first,
            footer nav.nav--second {
                padding-right: 76px;
            }

            footer div.wrap-desktop .footer-navigation nav > a {
                font-size: 15px;
                margin-top: 25px;
            }

            footer div.wrap-desktop .footer-navigation nav > a:hover {
                color: #2b62fb;
            }

            header .menu nav ul li {
                padding: 0 15px;
            }
        }
    }
}

/*Global Pop Up*/

/* ===== Site Banner ==== */
.site-banner {
    position: fixed;
    bottom: 16px;
    left: -100%;
    width: 326px;
    height: 460px;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 1s;
}
.site-banner.show {
    left: 16px;
    opacity: 1;
    visibility: visible;
    pointer-events: painted;
    transition: 1s;
}
.site-banner-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 16px;
    height: 16px;
    background: center / contain no-repeat url(/resources/img/banner/site-banner-close.svg);
    z-index: 1;
    cursor: pointer;
}
.site-banner-link {
    margin: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: url(../../resources/img/banner/ad-server-banner.webp);
    background-size: contain;
    background-repeat: no-repeat;
    cursor: default;
}
.site-banner-btn {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: 231px;
    padding: 14px 0;
    font-size: 16px;
    line-height: 24px;
    font-width: 700;
    font-family: 'Graphik';
    background: #060028;
    border-radius: 100px;
    color: #fff;
    cursor: pointer;
    text-align: center;
    transition: 0.3s;
}
.site-banner-btn:hover {
    color: #060028;
    background: #fff;
    transition: 0.3s;
}
@media(max-width: 500px) {
    .site-banner {
        display: none;
    }
}
/* ===== Site Banner ==== */

/* ===== POP-UP ===== */

.overlay-pop-up {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 39, 61, 0.4);
    z-index: 998;
}

.overlay-pop-up.show {
    display: block;
}

.overlay-pop-up a.global-pop-up {
    display: block;
    position: fixed;
    margin: 0;
    top: 50%;
    right: 50%;
    width: 280px;
    height: 530px;
    transform: translate(50%,-50%);
    transition: 275ms ease;
    background: url("https://static.epom.com/resources/img/pop-ups/coronacalypse-m.webp")  no-repeat;
    background-size: contain;
    z-index: 999;
    box-shadow: 0 0 100px #686D81;
}

@media (min-width: 1024px) {
    .overlay-pop-up a.global-pop-up {
        width: 900px;
        height: 500px;
        background: url("https://static.epom.com/resources/img/pop-ups/coronacalypse.webp") no-repeat;
        background-size: contain;
    }
}

/*a.global-pop-up {
    display: block;
    position: fixed;
    top: 38%;
    right: 0;
    width: 240px;
    height: 415px;
    transform: translate(100%,-50%);
    transition: 275ms ease;
    background: url("/resources/img/pop-ups/survive-guide.png") center center no-repeat;
    background-size: contain;
    border-radius: 4px;
    z-index: 999;
}*/

/*a.global-pop-up.show {
    -webkit-transform: translate(0,-50%);
    transform: translate(0,-50%);
}*/

a.global-pop-up > div.close {
    height: 24px;
    width: 24px;
    top: 5px;
    right: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    display: block;
    cursor: pointer;
}

a.global-pop-up > div.close:after {
    content: '';
    width: 24px;
    height: 2px;
    display: block;
    background: #C8D2E2;
    position: absolute;
    transform: rotate(45deg);
    margin-top: 15px;
    border-radius: 2px;
    -webkit-transition: 275ms ease-in-out;
    -o-transition: 275ms ease-in-out;
    transition: 275ms ease-in-out;
}

a.global-pop-up > div.close:hover:after {
    transform: rotate(135deg);
    background-color: #b81900;
    height: 3px;
}
a.global-pop-up > div.close:before {
    content: '';
    width: 24px;
    height: 2px;
    display: block;
    background: #C8D2E2;
    position: absolute;
    transform: rotate(135deg);
    margin-top: 15px;
    border-radius: 2px;
    -webkit-transition: 275ms ease-in-out;
    -o-transition: 275ms ease-in-out;
    transition: 275ms ease-in-out;
}
a.global-pop-up > div.close:hover:before {
    transform: rotate(225deg);
    background-color: #b81900;
    height: 3px;
}


/*BANNER*/

.is-banner-visible .comparison-banner {
    top: 90px;
}

.comparison-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    top: -100%;
    width: calc(100% - 32px);
    padding: 30px 18px;
    border-radius: 12px;
    background: #EEECFF;
    background-size: contain;
    text-align: center;
    z-index: 10;
    transition: top .6s ease;
    box-sizing: border-box;
    cursor: pointer;
}

.comparison-banner__title {
    width: 290px;
    margin: 0 auto 12px;
    font-weight: 900;
    font-size: 20px;
    line-height: 28px;
    font-family: Archivo, "Open Sans", sans-serif;
    color: #212529;
    text-align: center;
}

.comparison-banner__title--tablet .download {
    position: relative;
}

.comparison-banner__title--tablet .download::before {
    position: absolute;
    content: "";
    width: 100px;
    height: 11px;
    bottom: 0;
    left: -2px;
    right: 0;
    z-index: -1;
    background-size: contain;
    background-image: url("/resources/img/comparison/green-line.svg");
    background-repeat: no-repeat;
}

.comparison-banner__title--tablet .ad-server {
    position: relative;
    display: inline-block;
}

.comparison-banner__title--tablet .ad-server::before {
    position: absolute;
    content: "";
    width: 16px;
    height: 18px;
    top: -8px;
    left: -8px;
    z-index: -1;
    background-size: contain;
    background-image: url("/resources/img/comparison/lines-illustration-mobile.svg");
    background-repeat: no-repeat;
}

.comparison-banner__title--desktop {
    display: none;
}

.comparison-banner__image {
    margin: 0;
}

.comparison-banner__image img {
    display: none;
}

.comparison-banner__pricing {
    display: inline-block;
    font-family: "Open Sans", sans-serif;
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    color: #0067FF;
    text-decoration: none;
    position: relative;
    margin: 0;
}

.comparison-banner__pricing::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -20px;
    width: 16px;
    height: 16px;
    display: block;
    background-image: url("/resources/img/comparison/arrow-show.svg");
}

.comparison-banner__pricing::before {
    content: "";
    position: absolute;
    width: 0;
    bottom: -3px;
    height: 2px;
    display: block;
    right: 0;
    background: #0067FF;
    transition: width .15s ease;
    will-change: width;
}

.comparison-banner__pricing:hover::before {
    width: 100%;
    left: 0;
    background: #0067FF;
}

.comparison-banner .close-banner {
    position: absolute;
    padding: 8px;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    box-sizing: border-box;
    transition: border-color .3s ease ;
    z-index: 2;
}


@media (min-width: 640px) {
    .comparison-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .comparison-banner {
        padding: 16px 24px;
    }

    .is-banner-visible .comparison-banner {
        top: 95px;
    }

    .comparison-banner__title {
        width: 342px;
        margin: 0;
        text-align: left;
    }

    .comparison-banner__pricing {
        margin: 0 56px 0 0;
    }

    .comparison-banner__title--tablet .ad-server::before {
        top: -8px;
        left: unset;
        right: -16px;
        background-image: url("/resources/img/comparison/lines-illustration.svg");
    }
}

@media (min-width: 960px) {
    .is-banner-visible .comparison-banner {
        bottom: 16px;
        top: unset;
    }

    .comparison-banner {
        top: unset;
        bottom: -100%;
        left: 16px;
        width: 286px;
        height: 434px;
        padding: 20px 16px 32px;
        transition: bottom .6s ease;
    }

    .comparison-content {
        display: block;
    }

    .comparison-banner__title--desktop {
        display: block;
    }

    .comparison-banner__title--tablet {
        display: none;
    }

    .comparison-banner__image img {
        display: block;
        width: 200px;
        height: auto;
    }

    .comparison-banner__title {
        width: 100%;
        margin: 24px 0 16px;
        text-align: center;
    }

    .comparison-banner__pricing {
        margin: 0;
    }
}

@media only screen and (min-width: 1280px) {
    .comparison-banner {
        width: 238px;
        height: 369px;
    }

    .comparison-banner__title {
        font-size: 16px;
        line-height: 24px;
    }

    .comparison-banner__image img {
        width: 148px;
    }
}

@media only screen and (min-width: 1480px) {
    .comparison-banner {
        width: 286px;
        height: 444px;
    }

    .comparison-banner__title {
        font-size: 20px;
        line-height: 28px;
    }

    .comparison-banner__image img {
        width: 212px;
    }
}


.stop-war {
    background: #FFF6A7;
    cursor: pointer;
    z-index: 1;
}

.stop-war .wrap p {
    width: 100%;
    text-align: center;
    padding: 10px 60px;
    box-sizing: border-box;
    color: #060028;
    font-weight: 400;
    font-family: 'Graphik';
    margin: 0;
}

.stop-war .wrap p a {
    color: #5273EF;
    font-weight: 600;
}

.stop-war .wrap a {
    display: unset;
    font-size: inherit;
}