html, body {
    overflow-x: hidden !important;
}

body {
    background: #fff;
    font-family: 'Montserrat', sans-serif;
    font-family: "SF Regular";
    letter-spacing: .5px;
    color: #3E4D5E;
}

body.modal-open, .modal-open .modal {
    padding-right: 0 !important;
}

* {
    outline: none !important;
    text-decoration: none !important;
}

.text-area, .header, .section-1 .contianer, .section-2, .section-2s, .info-val, .section2, footer, .txt-f, .section-4, .application {
    position: relative;
    z-index: 33;
}

.header .container, .section-1 .container {
    /* max-width: 84%; */
    /* max-width: 1600px; */
    /* max-width: 1440px; */
    max-width: 1200px;
    /* padding-left: 0; */
    /* padding-right: 0; */
    padding-left: 40px;
    padding-right: 40px;
    margin: 0 auto;
}

.section-2 .container, .section-2s .container, .section-3 .container, .info-val .container, .txt-f .container, .section-4 .container, .application .container {
    /* max-width: 1080px; */
    /* max-width: 1600px; */
    /* max-width: 1440px; */
    max-width: 1200px;
    padding-left: 40px;
    padding-right: 40px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .header .container, .section-1 .container {
        /* max-width: 1080px; */
        margin: 0 auto;
        /* padding-left: 40px; */
        /* padding-right: 40px; */
    }
}

@media (max-width: 425px) {
    .header .container, .section-1 .container, .section-2 .container, .section-2s .container, .section-3 .container, .info-val .container, .txt-f .container, .section-4 .container, .application .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.header {
    position: relative;
    z-index: 98;
    /* padding-top: 60px; */
    padding-top: 40px;
    background: transparent;
}

@media (max-width: 768px) {
    .header {
        padding-top: 30px;
        padding-top: 20px;
    }
}

/* menu-burger */

.navigation__logo {
    position: relative;
    z-index: 100;
}

.navigation__burger {
    position: relative;
    display: block;
    width: 30px;
    height: 30px;
    background-color: inherit;
    z-index: 100;
    cursor: pointer;
}

.navigation__burger span {
    position: absolute;
    top: 50%;
    height: 4px;
    width: 30px;
    margin-left: 0px;
    background: #3E4D5E;
}

.navigation__burger span::before {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 4px;
    width: 30px;
    margin-top: -5px;
    margin-left: -15px;
    background: #3E4D5E;
}

.navigation__burger span::after {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 4px;
    width: 30px;
    margin-top: 1px;
    margin-left: -15px;
    background: #3E4D5E;
}

.navigation .navigation__burger span::before, .navigation .navigation__burger span::after {
    content: '';
    display: block;
    transition: 0.4s;
}

.navigation .navigation__burger span::before {
    transform: translateY(-5px);
}

.navigation .navigation__burger span::after {
    transform: translateY(5px);
}

.navigation .navigation__burger--active span {
    height: 0;
}

.navigation .navigation__burger--active span:before {
    background: white;
    transform: translateY(5px) rotate(45deg);
}

.navigation .navigation__burger--active span:after {
    background: white;
    transform: rotate(135deg);
}

.logo__img {
    transition: all 1500ms ease 0ms;
}

.logo__img:hover {
    transform: rotate(360deg);
    transition: transform 500ms ease 0ms;
}

.menu-popup {
    position: fixed;
    top: 0;
    right: 0%;
    display: none;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, #fff 10%, #64B8E9 70%);
    z-index: 99;
    transition: 0.5s;
    transform: translateY(-100%);
}

.menu-popup--active {
    transform: translateY(0%);
}

.menu-popup__list {
    position: absolute;
    top: 45%;
    left: 50%;
    padding: 0;
    margin: 0;
    list-style: none;
    transform: translate(-50%, -50%);
}

.menu-popup__item {
    margin: 0 auto;
    text-align: center;
}

.menu-popup__link {
    /* font-size: 22px; */
    font-size: 20px;
    font-weight: 700;
    color: white !important;
}

.menu-popup__link:hover {
    text-decoration: none;
    color: #3E4D5D !important;
    transition: 100ms;
}

.menu-popup__button {
    position: absolute;
    top: 75%;
    left: 50%;
    width: 213px;
    padding: 0;
    margin: 0;
    list-style: none;
    transform: translate(-50%, -50%);
}

.menu-popup__btn-1 {
    display: inline-block;
    padding: 3px 14px;
    /* font-size: 18px; */
    font-size: 16px;
    font-weight: 700;
    color: white;
    background: none;
    border: 3px solid white;
    border-radius: 30px;
}

.menu-popup__btn-1:hover {
    color: #3E4D5D;
    border-color: #3E4D5D;
}

.menu-popup__btn-2 {
    display: inline-block;
    margin-left: 10px;
    padding: 3px 27px;
    /* font-size: 18px; */
    font-size: 16px;
    font-weight: 700;
    color: #61B8E9;
    background: white;
    border: 3px solid white;
    border-radius: 30px;
}

.menu-popup__btn-2:hover {
    color: #fff;
    background: #3E4D5D;
    border-color: #3E4D5D;
}

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

.navigation__menu {
    margin-right: auto;
}

.menu__list {
    display: flex;
    list-style: none;
    margin: 0;
    margin-left: 2.3vw;
}

.menu__link {
    margin-right: 2.3vw;
    /* font-size: 18px; */
    font-size: 16px;
    font-family: "SF Medium";
    color: #3E4D5E;
}

.menu__link:hover {
    color: #64B9E7 !important;
}

ul {
    padding: 0;
}

.burger-show {
    display: none;
}

.btn-1 {
    font-family: "SF Regular";
    display: inline-block;
    padding: 3px 14px;
    /* font-size: 18px; */
    font-size: 16px;
    font-weight: 700;
    color: #61B8E9;
    background: none;
    border: 3px solid #61B8E9;
    border-radius: 30px;
}

.btn-1:hover {
    color: #3E4D5D;
    border-color: #3E4D5D;
}

.btn-2 {
    display: inline-block;
    padding: 3px 27px;
    /* font-size: 18px; */
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: #61B8E9;
    border: 3px solid #61B8E9;
    border-radius: 30px;
}

.btn-2:hover {
    color: #fff;
    background: #3E4D5D;
    border-color: #3E4D5D;
}

.section-1 {
    min-height: 61vw;
    margin-top: 8vw;
}

@media (max-width: 1280px) {
    .section-1 {
        margin-top: 100px;
    }
}

@media (max-width: 768px) {
    .burger-show, .menu-popup {
        display: block;
    }
    .menu-hide, .button-hide {
        display: none;
    }
    .section-1 {
        margin-top: 40px;
    }
}

@media (max-width: 585px) {
    .btn-2 {
        margin-left: 10px;
    }
}

@media (max-width: 420px) {
    .section-1 {
        margin-top: 25px;
    }
}

.paralax-img {
    width: 87%;
    height: 78vw;
    top: 0;
    position: absolute;
    right: 4.83vw;
}

.bg-1 {
    width: 24vw;
    height: 64vw;
    position: absolute;
    right: 0;
    top: -8vw;
    border-radius: 27vw;
    z-index: 3;
}

.bg-2 {
    width: 24vw;
    height: 64vw;
    position: absolute;
    right: 31.4vw;
    top: 11vw;
    border-radius: 27vw;
    z-index: 3;
}

.bg-3 {
    width: 24vw;
    height: 24vw;
    position: absolute;
    right: auto;
    top: 32vw;
    border-radius: 127vw;
    z-index: 3;
    left: 0;
}

.bg-4 {
    width: 15vw;
    height: 40vw;
    position: absolute;
    right: 0;
    top: 16vw;
    border-radius: 27vw;
    z-index: 3;
}

.bg-5 {
    width: 15vw;
    height: 40vw;
    position: absolute;
    right: 19vw;
    top: 28vw;
    border-radius: 27vw;
    z-index: 3;
}

.bg-6 {
    width: 15vw;
    height: 15vw;
    position: absolute;
    right: 38vw;
    top: 41vw;
    border-radius: 27vw;
    z-index: 3;
}

/* @media (min-width: 1921px) { */

@media (min-width: 1201px) {
    .bg-1 {
        /* width: 420px;
		height: 1200px; */
        width: 288px;
        height: 768px;
        position: absolute;
        right: 0;
        /* top: -31px; */
        top: -96px;
        border-radius: 27vw;
        z-index: 3;
    }
    .bg-2 {
        /* width: 420px; */
        /* height: 1200px; */
        width: 288px;
        height: 768px;
        position: absolute;
        /* right: 565px; */
        right: 376.8px;
        /* top: 192px; */
        top: 132px;
        border-radius: 27vw;
        z-index: 3;
    }
    .bg-3 {
        /* width: 413px;
		height: 413px; */
        width: 288px;
        height: 288px;
        position: absolute;
        /* right: 1100px; */
        /* top: 600px; */
        right: 756px;
        top: 384px;
        border-radius: 127vw;
        z-index: 3;
        left: auto;
    }
    .bg-4 {
        /* width: 280px; */
        /* height: 750px; */
        width: 180px;
        height: 480px;
        position: absolute;
        right: 0;
        /* top: 200px; */
        top: 192px;
        border-radius: 127vw;
        z-index: 3;
    }
    .bg-5 {
        /* width: 280px;
		height: 750px; */
        width: 180px;
        height: 480px;
        position: absolute;
        /* right: 340px; */
        /* top: 500px; */
        right: 228px;
        top: 336px;
        border-radius: 127vw;
        z-index: 3;
    }
    .bg-6 {
        /* width: 260px;
		height: 260px; */
        width: 180px;
        height: 180px;
        position: absolute;
        /* right: 700px;
		top: 700px; */
        right: 456px;
        top: 492px;
        border-radius: 27vw;
        z-index: 3;
    }
    .section-1 {
        /* min-height: 1200px; */
        min-height: 800px;
    }
    .paralax-container {
        position: relative;
        /* width: 1600px; */
        width: 1080px;
        height: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .paralax-img {
        display: block;
        /* margin-top: 45vw; */
        margin-top: 170px;
    }
}

.animateds {
    position: absolute;
    background: #EFF8FD;
    border-radius: 50vw;
    height: 100%;
    width: 100%;
}

.animateds2 {
    position: absolute;
    background: #EFF8FD;
    border-radius: 50vw;
    height: 100%;
    width: 100%;
}

.animateds3 {
    position: absolute;
    background: #EFF8FD;
    border-radius: 50vw;
    height: 100%;
    width: 100%;
}

.animateds4 {
    position: absolute;
    background: #64B9E7;
    border-radius: 50vw;
    height: 100%;
    width: 100%;
}

.animateds5 {
    position: absolute;
    background: #64B9E7;
    border-radius: 50vw;
    height: 100%;
    width: 100%;
}

.animateds6 {
    position: absolute;
    background: #64B9E7;
    border-radius: 50vw;
    height: 100%;
    width: 100%;
}

.animateds {
    -webkit-animation: pulses 3s;
    /* Safari 4.0 - 8.0 */
    -webkit-animation-fill-mode: forwards;
    /* Safari 4.0 - 8.0 */
    animation: pulses 3s infinite;
    animation-fill-mode: forwards;
}

@-webkit-keyframes pulses {
    0% {
        top: 0px;
    }
    50% {
        top: 8vh;
    }
    100% {
        top: 0px;
    }
}

@keyframes pulses {
    0% {
        top: 0px;
    }
    50% {
        top: 8vh;
    }
    100% {
        top: 0px;
    }
}

.animateds2 {
    -webkit-animation: pulses2 4s;
    /* Safari 4.0 - 8.0 */
    -webkit-animation-fill-mode: forwards;
    /* Safari 4.0 - 8.0 */
    animation: pulses2 4s infinite;
    animation-fill-mode: forwards;
}

@-webkit-keyframes pulses2 {
    0% {
        top: 0px;
    }
    50% {
        top: 5vh;
    }
    100% {
        top: 0px;
    }
}

@keyframes pulses2 {
    0% {
        top: 0px;
    }
    50% {
        top: 5vh;
    }
    100% {
        top: 0px;
    }
}

.animateds3 {
    -webkit-animation: pulses3 5s;
    /* Safari 4.0 - 8.0 */
    -webkit-animation-fill-mode: forwards;
    /* Safari 4.0 - 8.0 */
    animation: pulses3 5s infinite;
    animation-fill-mode: forwards;
}

@-webkit-keyframes pulses3 {
    0% {
        top: 0;
    }
    50% {
        top: 10vh;
    }
    100% {
        top: 0px;
    }
}

@keyframes pulses3 {
    0% {
        top: 0px;
    }
    50% {
        top: 10vh;
    }
    100% {
        top: 0px;
    }
}

.animateds4 {
    -webkit-animation: pulses4 6s;
    /* Safari 4.0 - 8.0 */
    -webkit-animation-fill-mode: forwards;
    /* Safari 4.0 - 8.0 */
    animation: pulses4 6s infinite;
    animation-fill-mode: forwards;
}

@-webkit-keyframes pulses4 {
    0% {
        top: 0;
    }
    50% {
        top: 14vh;
    }
    100% {
        top: 0px;
    }
}

@keyframes pulses4 {
    0% {
        top: 0px;
    }
    50% {
        top: 14vh;
    }
    100% {
        top: 0px;
    }
}

.animateds5 {
    -webkit-animation: pulses5 2s;
    /* Safari 4.0 - 8.0 */
    -webkit-animation-fill-mode: forwards;
    /* Safari 4.0 - 8.0 */
    animation: pulses5 2s infinite;
    animation-fill-mode: forwards;
}

@-webkit-keyframes pulses5 {
    0% {
        top: 0;
    }
    50% {
        top: 4vh;
    }
    100% {
        top: 0px;
    }
}

@keyframes pulses5 {
    0% {
        top: 0px;
    }
    50% {
        top: 4vh;
    }
    100% {
        top: 0px;
    }
}

.animateds6 {
    -webkit-animation: pulses6 5.5s;
    /* Safari 4.0 - 8.0 */
    -webkit-animation-fill-mode: forwards;
    /* Safari 4.0 - 8.0 */
    animation: pulses6 5.5s infinite;
    animation-fill-mode: forwards;
}

@-webkit-keyframes pulses6 {
    0% {
        top: 0;
    }
    50% {
        top: 8vh;
    }
    100% {
        top: 0px;
    }
}

@keyframes pulses6 {
    0% {
        top: 0px;
    }
    50% {
        top: 8vh;
    }
    100% {
        top: 0px;
    }
}

.text-area h1 {
    font-family: "SF Bold";
    font-weight: 800;
    /* font-size: 3.5vw; */
    /* font-size: 3vw; */
    font-size: 2.8vw;
    line-height: 3.6vw;
}

@media (min-width: 2560px) {
    .text-area h1 {
        /* font-size: 90px; */
        font-size: 67.5px;
        line-height: 1.4;
    }
}

@media (min-width: 1920px) {
    .section-1 {
        /* margin-top: 150px; */
        margin-top: 100px;
    }
}

@media (max-width: 1280px) {
    .text-area h1 {
        /* font-size: 45px; */
        font-size: 40px;
        line-height: 1.2;
    }
}

@media (max-width: 960px) {
    .text-area h1 {
        /* font-size: 35px; */
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .text-area h1 {
        padding-top: 10px;
        font-weight: 800;
        /* font-size: 30px; */
        font-size: 28px;
        text-align: center;
    }
}

@media (max-width: 420px) {
    .text-area h1 {
        /* font-size: 22px; */
        font-size: 20px;
    }
}

.section-2 {
    margin-bottom: 90px;
}

.section-2 h2 {
    font-family: 'SF Bold';
    /* font-size: 30px; */
    font-size: 27px;
    font-weight: 800;
}

.section-2 p {
    margin-bottom: 50px;
    /* font-size: 20px; */
    font-size: 18px;
    text-align: justify;
    line-height: 1.4;
}

.section-2s h3 {
    font-family:"SF Bold";
    width: 90%;
    margin-bottom: 20px;
    margin-top: 40px;
    /* font-size: 18px; */
    font-size: 16px;
    font-weight: 700;
}

.section-2s p {
    width: 90%;
    /* font-size: 18px; */
    font-size: 16px;
}

.advantages__wrapper {
    display: block;
    width: 150px;
    height: 150px;
    margin: 0 auto;
    margin-left: 0;
    background: #EFF8FD;
    border-radius: 50%;
}

.img-cert {
    width: 75px;
    padding-top: 31px;
    margin-left: 0;
}

.img-net {
    width: 90px;
    padding-top: 31px;
    margin-left: 0;
}

.img-sup {
    width: 100px;
    padding-top: 31px;
    margin-left: 0;
}

.img-soft {
    width: 100px;
    padding-top: 31px;
    margin-left: 0;
}

@media (max-width: 991px) {
    .advantages__item, .advantages__wrapper {
        margin: 0 auto;
    }
    .section-2s h3 {
        margin: 40px auto 0;
    }
    .section-2s p {
        margin: 20px auto 0;
    }
    .section-2s h3, .section-2s p {
        width: 80%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .section-2 {
        margin-top: 33vw;
        margin-bottom: 45px;
    }
    .section-2 h2 {
        font-weight: bold;
        /* font-size: 24px; */
        font-size: 22px;
        text-align: center;
    }
    .section-2 p {
        margin-bottom: 40px;
        /* font-size: 18px; */
        font-size: 16px;
    }
    .section-2s h3, .section-2s p {
        width: 90%;
    }
    .section-2s p {
        margin-bottom: 40px;
    }
}

@media (max-width: 650px) {
    .section-2 {
        margin-top: 38vw;
    }
}

@media (max-width: 540px) {
    .section-2e {
        margin-top: 43vw;
    }
}

@media (max-width: 464px) {
    .section-2 {
        margin-top: 200px;
    }
}

@media (max-width: 420px) {
    .section-2 h2 {
        /* font-size: 20px; */
        font-size: 18px;
    }
    .section-2 p, .section-2s p {
        /* font-size: 16px; */
        font-size: 14px;
    }
    .section-2s h3 {
        margin-top: 30px;
        margin-bottom: 20px;
    }
}

.arrow {
    position: absolute;
    top: 48%;
    transform: translateY(-50%);
    z-index: 4;
    width: 30px;
    height: 30px;
    border: none;
    background-size: 100%;
}

.arrow--next {
    right: -20px;
    background: url(../img/right-arrow.png) center no-repeat / cover;
}

.arrow--next:focus, .arrow--prev:focus {
    outline: none
}

.arrow--prev {
    left: -20px;
    transform: translateY(-50%) rotate(180deg);
    background: url(../img/right-arrow.png) center no-repeat / cover;
}

.section-3 {
    position: relative;
    z-index: 34;
    margin-top: 4vw;
    margin-bottom: 4vw;
    padding-top: 5.4vw;
    padding-bottom: 5.4vw;
    background: #60B8E9;
    border-radius: 0 150vw 150vw 0;
    overflow: hidden;
}

@media (min-width: 1680px) {
    .section-3 {
        margin-top: 65px;
        margin-bottom: 65px;
    }
}

@media (min-width: 1850px) {
    .section-3 {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

@media (max-width: 768px) {
    .section-3 {
        margin-bottom: 40px;
        padding-bottom: 40px;
        text-align: center;
        border-radius: 0 !important;
    }
    .section-3 h3 {
        margin-top: 20px;
        margin-bottom: 15px;
        /* font-size: 30px; */
        font-size: 27px;
    }
}

.bg-blue .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.text-info {
    width: 70%;
}

.text-info h3 {
    font-family: "SF Bold";
    margin-bottom: 1.8vw;
    /* font-size: 36px; */
    font-size: 32px;
    font-weight: 800;
    color: #fff;
}

.text-info p {
    color: #fff;
    /* font-size: 24px; */
    font-size: 22px;
}

.btn-more {
    display: block;
    width: 140px;
    height: 140px;
    line-height: 140px;
    /* margin-right: -4vw; */
    background: #fff;
    border-radius: 50%;
}

.btn-more:hover {
    width: 146px;
    height: 146px;
    line-height: 146px;
    margin-top: -3px;
    margin-bottom: -3px;
    /* margin-right: -4.2vw; */
    margin-right: -3px;
}

.btn-more span {
    display: block;
    /* font-size: 26px; */
    font-size: 24px;
    text-align: center;
    font-weight: 700;
    color: #60B8E9;
}

.btn-more:hover span {
    /* font-size: 30px; */
    font-size: 27px;
}

.btn-more {
    box-shadow: 0 0 0 rgba(255, 255, 255, 0.14);
    animation: pulse 2s infinite;
}

@media (max-width: 768px) {
    .bg-blue .container {
        display: flex;
        flex-direction: column;
    }
    .text-info {
        width: 100%;
        margin-bottom: 30px;
    }
    .text-info h3 {
        /* font-size: 30px; */
        font-size: 27px;
    }
    .text-info p {
        /* font-size: 24px; */
        font-size: 22px;
    }
}

@media (max-width: 420px) {
    .text-info h3 {
        /* font-size: 24px; */
        font-size: 22px;
    }
    .text-info p {
        /* font-size: 16px; */
        font-size: 14px;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.info-val {
    margin-bottom: 4vw;
    font-weight: 700;
    /* font-size: 18px; */
    font-size: 16px;
    line-height: 1.2;
}

.info-val ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: center;
}

.info-val li {
    display: inline-block;
    text-align: left;
}

.info-val li:last-child {
    display: flex;
    align-items: center;
}

.info-val span {
    display: block;
}

.blue-color {
    color: #64B9E7;
}

.green-color {
    /* color: #B3FFCC; */
    color: #38a803;
}

.red-color {
    /* color: #FFB3B3; */
    color: #ff0044;
}

@media (min-width: 1680px) {
    .info-val {
        margin-bottom: 65px;
    }
}

/* @media (max-width: 1280px) {
	.info-val {
		font-size: 20px;
	}
} */

@media (max-width: 768px) {
    .info-val {
        margin-bottom: 40px;
    }
    .info-val ul {
        flex-wrap: wrap;
    }
    .info-val li {
        width: 50%;
        padding-bottom: 10px;
    }
    .info-val li {
        display: flex;
        flex-direction: row;
    }
    .info-val .green-color:last-child::before {
        position: absolute;
        content: ' ';
        left: -30px;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 20px solid #38a803;
    }
    .info-val .green-color:last-child {
        position: relative;
        margin-left: 40px;
    }
    .info-val .red-color:last-child::before {
        position: absolute;
        content: ' ';
        left: -30px;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 20px solid #ff0044;
    }
    .info-val .red-color:last-child {
        position: relative;
        margin-left: 40px;
    }
}

@media (max-width: 580px) {
    .info-val li {
        width: 100%;
        padding-bottom: 30px;
        justify-content: center;
    }
    .info-val li:last-child {
        padding-bottom: 0;
    }
}

.l-link {
    width: 56px;
    height: 56px;
    margin-left: 20px;
    background: #64B9E7 url(../img/arrow.svg) 0 0 no-repeat;
    background-position: center;
    border-radius: 50%;
}

.l-link:hover {
    background: #3E4D5D url(../img/arrow.svg) 0 0 no-repeat;
    background-position: center;
    background-size: 80%;
}

@media (max-width: 1280px) {
    .l-link {
        width: 48px;
        height: 48px;
    }
    .l-link:hover {
        background-size: 90%;
    }
}

@media (max-width: 768px) {
    .l-link {
        width: 40px;
        height: 24px;
        background: url(../img/a-mob.svg) 0 0 no-repeat;
        background-position: center;
        border-radius: 0;
    }
    .l-link:hover {
        background: url(../img/a-mobh.svg) 0 0 no-repeat;
        background-position: center;
    }
}

.section2 {
    margin-bottom: 100px;
}

.map-container {
    position: relative;
}

.map-container {
    overflow: hidden;
    border-radius: 1000px 0 0 1000px;
}

#map * {
    transition: none;
}

#map {
    /* touch-action: initial !important; */
    /* pointer-events: none; */
    touch-action: auto !important;
    /* touch-action: pan-y pinch-zoom !important; */
    height: 800px;
    width: 100%;
}

@media (max-width: 1280px) {
    #map {
        /* height: 600px; */
        height: 450px;
    }
}

body .section2 [class*="ymaps-2"][class*="-placemark-overlay"]:last-child {
    display: none !important;
}

body #map [class*="ymaps-2"][class*="-searchbox-button"] {
    transition: all 0.3s ease;
}

[class*="ymaps-2"][class*="-copyright"] {
    display: none !important;
}

body [class*="ymaps-2"][class*="-_pin_right"] {
    box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.15), 0 2px 0.23vw -3px rgba(0, 0, 0, 0.15);
    border-color: transparent;
    background-color: #fff;
    box-sizing: border-box !important;
    border-width: 0 !important;
    border-style: solid;
    background-clip: border-box;
    width: 100px;
    cursor: pointer;
    -webkit-transition: background-color .15s ease-out, border-color .15s ease-out, opacity .15s ease-out;
    transition: background-color .15s ease-out, border-color .15s ease-out, opacity .15s ease-out;
    display: inline-block;
    text-align: center;
    height: 39px;
    /* margin-left: 45px; */
    margin-left: 15px;
    border-radius: 30px !important;
}

body [class*="ymaps-2"][class*="-searchbox-button-text"] {
    display: inline-block;
    position: relative;
    white-space: nowrap;
    font-size: 18px;
    /* font-size: 16px; */
    font-family: "SF Bold";
    line-height: 39px;
    color: #64B9E7;
    font-weight: 700;
}

body [class*="ymaps-2"][class*="-_pin_right"]:hover {
    background: #3E4D5D !important;
}

body [class*="ymaps-2"][class*="-searchbox__normal-layout"] {
    width: 98% !important;
}

body [class*="ymaps-2"][class*="-controls__toolbar"] {
    margin-top: 30px;
    /* margin-left: -270px !important; */
}

body [class*="ymaps-2"][class*="-searchbox-input__input"] {
    display: block;
    width: 100%;
    height: 39px;
    padding: 0 10px;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    /* font-size: 16px; */
    font-size: 14px;
    background-color: transparent;
    background-clip: padding-box;
    box-sizing: border-box !important;
    font-weight: 600;
}

body [class*="ymaps-2"][class*="-controls__control"] {
    top: 280px !important;
}

@media (max-width: 1280px) {
    body [class*="ymaps-2"][class*="-controls__control"] {
        top: 200px !important;
    }
}

body [class*="ymaps-2"][class*="-controls__control_toolbar"] {
    margin-right: -80px !important;
}

[class*="ymaps-2"][class*="-float-button"] {
    border-radius: 0 !important;
}

[class*="ymaps-2"][class*="-controls__control"] {
    right: 0px !important;
    left: auto !important;
}

[class*="ymaps-2"][class*="-map"] {
    background: #64B9E7 !important;
}

[class*="ymaps-2"][class*="-map"] * {
    box-shadow: none !important;
}

[class*="ymaps-2"][class*="-searchbox__normal-layout"]:after {
    box-shadow: none !important;
}

[class*="ymaps-2"][class*="-searchbox-input"] {
    border-radius: 500px !important;
}

body [class*="ymaps-2"][class*="-search__suggest"] {
    margin-top: 3px !important;
    border: 0 !important;
}

[class*="ymaps-2"][class*="-zoom"] {
    margin-right: 20px;
}

body [class*="ymaps-2"][class*="-_pin_right"]:hover [class*="-searchbox-button-text"] {
    color: #fff !important;
}

html body [class*="ymaps-2"][class*="-popup"] {
    display: none !important;
}

.ymaps-2-1-74-controls__toolbar_left {
    width: 50%;
}

@media (min-width: 1081px) {
    /* body [class*="ymaps-2"][class*="-controls__control_toolbar"] {
        width: 47vw;
    } */
    body [class*="ymaps-2"][class*="-controls__toolbar"] {
        /* float: right !important; */
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 1080px) {
    .map-container {
        border-radius: 0 !important;
    }
    body .section2 {
        margin-bottom: 60px;
    }
    body [class*="ymaps-2"][class*="-controls__toolbar"] {
        width: 87vw !important;
        margin-left: 10px !important;
    }
    button.bt-map {
        background: none;
        position: absolute;
        top: 100px;
        z-index: 2;
        right: auto;
        left: 30px;
    }
}

@media (max-width: 768px) {
    body [class*="ymaps-2"][class*="-controls__control_toolbar"] {
        margin-right: 0 !important;
        margin-left: -10px !important;
        width: 97vw;
    }
    body [class*="ymaps-2"][class*="-searchbox__input-cell"] {
        width: 95vw;
    }
    body [class*="ymaps-2"][class*="-searchbox__button-cell"] {
        position: absolute;
        top: 60px;
        right: 0;
    }
    [class*="ymaps-2"][class*="-zoom"] {
        display: none !important;
    }
    body [class*="ymaps-2"][class*="-controls__toolbar"] {
        max-width: 95% !important;
    }
    button.bt-map {
        left: 10px;
    }
}

footer {
    background: #EFF8FD;
    margin-top: -450px;
    z-index: 32;
    padding-bottom: 40px;
    padding-top: 450px;
    overflow: hidden;
}

footer .container {
    position: relative;
    z-index: 35;
    display: flex;
    /* justify-content: space-between; */
    justify-content: flex-end;
    max-width: 1080px;
    /* max-width: 1440px; */
    /* max-width: 1200px; */
    padding-left: 40px;
    padding-right: 40px;
}

@media (max-width: 420px) {
    footer .container {
        padding-left: 0px;
        padding-right: 0px;
    }
}

.side1, .side2, .side3 {
    display: flex;
    flex-direction: column;
    padding-left: 40px;
}

@media (max-width: 768px) {
    footer .container {
        display: flex;
        flex-direction: column;
    }
    .side1, .side2, .side3 {
        padding-left: 0;
    }
}

.side1 {
    display: flex;
    justify-content: space-between;
}

.side1 .btn-1, .side1 .btn-2 {
    margin: 0;
    margin-bottom: 20px;
    border-color: #7F90A4;
}

.side1 h4 a {
    display: block;
    font-weight: 700;
    color: #7F90A4;
    font-size: 14px;
    line-height: 1.4;
}

.side1 img {
    width: 100px;
}

.side1 .btn-1 {
    color: #7F90A4;
}

.side1 .btn-1:hover {
    border-color: #3E4D5D;
    color: #3E4D5D;
}

.side1 .btn-2 {
    margin-top: auto;
    background: #7F90A4;
    color: #fff;
}

.side1 .btn-2:hover {
    border-color: #3E4D5D;
    background: #3E4D5D;
}

.side1-container {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: space-between;
    height: 100%;
}

.footer-wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.side2 p {
    margin-bottom: 30px;
}

.side2, .side2 a {
    display: block;
    color: #7F90A4;
    /* font-size: 16px; */
    font-size: 14px;
    line-height: 1.4;
}

.side2 {
    justify-content: space-between;
    text-align: center;
}

.side3 {
    justify-content: flex-end;
    text-align: center;
}

.side3 p {
    margin-bottom: 20px;
    font-size: 8px;
    /* font-size: 7px; */
    color: #7F90A4;
}

.side3 a {
    padding-bottom: 20px;
}

.side3 a:hover, .side2 a:hover {
    color: #3E4D5D;
}

@media (max-width: 768px) {
    footer .container {
        max-width: 80vw;
    }
    .side2 * {
        text-align: center;
    }
    .side2 {
        margin-bottom: 20px;
    }
    .side2 a {
        line-height: 1.6;
    }
    .side3 a {
        margin-bottom: 5px;
        text-align: center;
    }
    .side3 {
        /* margin-bottom: 60px; */
        margin-bottom: 20px;
    }
    .side1 img {
        position: absolute;
        bottom: 0;
        right: -20px;
        width: 80px;
    }
    .side3 p {
        /* position: absolute; */
        /* bottom: -23px; */
        /* left: -20px; */
    }
    .side1-container h4 {
        margin: 0 auto 20px;
        /* flex-direction: row;
        justify-content: center;
        text-align: center; */
    }
    .footer-wrapper {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
    .side1 a {
        width: 100px;
    }
    .side1 .btn-2 {
        margin-right: 20px;
    }
}

.modal-dialog {
    max-width: 400px;
    margin: 0 auto;
}

.modal-content {
    border-radius: 49px;
    border-color: #ddd;
}

.modal-body button.btn-modal {
    width: 100%;
    margin: 0;
    margin-bottom: 41px;
    margin-top: 28px;
    /* font-size: 16px; */
    font-size: 14px;
}

.modal .form-area {
    margin: 0 auto;
    margin-bottom: 10px;
    width: 100%;
    max-width: 289px;
}

.login label {
    position: relative;
}

.login ion-icon {
    position: absolute;
    top: 33%;
    right: 5px;
    cursor: pointer;
}

.modal .form-area input, .modal-body button.btn-modal {
    height: 40px;
    text-align: center;
    /* font-size: 16px; */
    font-size: 14px;
}

.modal-title {
    line-height: 1.5;
    text-align: center;
    display: block;
    width: 100%;
    /* font-size: 25px; */
    font-size: 23px;
    font-weight: 700;
    margin-top: 33px;
    margin-bottom: 30px;
}

.modal input {
    border: none;
    border-radius: 50px;
    width: 100%;
    padding: 0px 10px;
    background: #EFF8FD;
}

.modal label {
    text-align: center;
    display: block;
    font-weight: 700;
    /* font-size: 17px; */
    font-size: 15px;
}

.btn-modal:disabled {
    display: inline-block;
    padding: 3px 27px;
    /* font-size: 18px; */
    font-size: 16px;
    font-weight: 700;
    color: #000;
    background: #DEE7EC;
    border: 3px solid #DEE7EC;
    border-radius: 30px;
}

.btn-modal--active {
    display: inline-block;
    padding: 3px 27px;
    /* font-size: 18px; */
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: #61B8E9;
    border: 3px solid #61B8E9;
    border-radius: 30px;
}

.btn-modal--active:hover {
    color: #fff;
    background: #3E4D5D;
    border-color: #3E4D5D;
}

.close span {
    /* font-size: 35px; */
    font-size: 32px;
    position: absolute;
    right: 30px;
}

.modal label span {
    color: red;
    /* font-size: 15px; */
    font-size: 13px;
}

.opened .jq-selectbox__trigger {
    transform: rotate(180deg);
    top: 10px;
    right: 20px;
    width: 30px !important;
    height: 20px !important;
}

.jq-selectbox__search {
    display: none !important;
}

.jq-selectbox ul {
    height: 300px;
}

.jq-selectbox {
    height: 40px !important;
    padding-top: 0;
}

.jq-selectbox__select {
    height: 40px !important;
}

.jq-selectbox__select-text {
    display: block;
    width: 100%;
    height: 40px !important;
    padding: 0;
    line-height: 40px;
    font-weight: 400;
    text-align: center;
    /* font-size: 16px; */
    font-size: 14px;
    color: #3E4D5E;
}

.jq-selectbox li {
    /* font-size: 16px; */
    font-size: 14px;
    font-weight: 400;
    line-height: 30px;
    min-width: 0;
    min-height: 0;
}

.jq-selectbox__trigger {
    top: 5px;
    right: 10px;
    background: url(../img/arrows.svg) 0 0 no-repeat;
    opacity: 1;
    width: 30px !important;
    height: 20px !important;
}

.jq-selectbox__trigger-arrow {
    width: 20px !important;
    height: auto;
}

.arrow-down {
    /* display: block; */
    position: fixed;
    width: 40px;
    height: 40px;
    background: #8090A3;
    /* right: 25px; */
    /* bottom: 25px; */
    /* z-index: 35; */
    /* opacity: 0; */
    cursor: pointer;
    border-radius: 50%;
    z-index: 2000;
}

.arrow-down:hover {
    background: #3E4D5D;
}

.arrow-down:before {
    content: '';
    position: absolute;
    width: 14px;
    height: 21px;
    background: url(../img/arrowt.svg) 0 0 no-repeat;
    background-size: contain;
    margin-left: 14px;
    margin-top: 9px;
}

.arrow-top {
    /* display: block; */
    position: fixed;
    width: 40px;
    height: 40px;
    background: #8090A3;
    /* right: 25px; */
    /* bottom: 25px; */
    /* z-index: 35; */
    /* opacity: 0; */
    cursor: pointer;
    border-radius: 50%;
    z-index: 2000;
}

.arrow-top:hover {
    background: #3E4D5D;
}

.arrow-top:before {
    content: '';
    position: absolute;
    width: 14px;
    height: 23px;
    background: url(../img/arrowt.svg) 0 0 no-repeat;
    background-size: contain;
    margin-left: 13px;
    margin-top: 7px;
    transform: rotate(180deg);
}

/* for features.html */

section.txt-f h1, .section-4 h2 {
    font-weight: 800;
    font-size: 40px;
    margin-bottom: 50px;
}

section.txt-f h1 {
    margin-top: 60px;
}

.section-4 h2 {
    margin-top: 60px;
}

section.txt-f p span {
    font-weight: bold;
    display: block;
    font-size: 30px;
    margin-bottom: 20px;
}

section.txt-f p {
    margin-bottom: 27px;
    text-align: justify;
    /* font-size: 20px; */
    font-size: 18px;
    line-height: 1.4;
}

section.txt-f p:last-child {
    color: #60B8E9;
}

@media (max-width: 768px) {
    section.txt-f h1, .section-4 h2 {
        margin-bottom: 30px;
        /* font-size: 30px; */
        font-size: 27px;
        text-align: center;
    }
    section.txt-f h1 {
        margin-top: 40px;
    }
    .section-4 h2 {
        margin-top: 40px;
    }
    section.txt-f p {
        /* font-size: 18px; */
        font-size: 16px;
        line-height: 1.4;
    }
    section.txt-f p span {
        /* font-size: 24px; */
        font-size: 22px;
    }
}

@media (max-width: 420px) {
    section.txt-f h1, .section-4 h2 {
        /* font-size: 24px; */
        font-size: 22px;
    }
    section.txt-f p {
        /* font-size: 16px; */
        font-size: 14px;
    }
    section.txt-f p span {
        /* font-size: 20px; */
        font-size: 18px;
    }
}

.member-area {
    padding: 60px;
    text-align: center;
    background: #fff;
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.07);
    border-radius: 50px;
}

.section-4 .member-area {
    margin-bottom: 60px;
}

.section-4 .member-area h3, .application .member-area h3 {
    font-family: "SF Bold";
    letter-spacing: .5px;
    margin-top: 0;
    /* font-size: 20px; */
    font-size: 18px;
    font-weight: 700;
    padding-left: 44px;
    position: relative;
    margin-bottom: 40px !important;
}

.member-area .btn-2 {
    display: block;
    margin: 0 auto;
    margin-top: 50px;
}

.no-active {
    color: #DFE7EC;
}

.member-area p {
    font-family: "SF Regular";
    letter-spacing: .5px;
    margin-top: 10px;
    /* font-size: 18px; */
    font-size: 16px;
}

.member-area span {
    font-family: "SF Bold";
    letter-spacing: .5px;
    display: block;
    margin-top: 40px;
    font-weight: 700;
    /* font-size: 20px; */
    font-size: 18px;
}

.member-area h3:before {
    position: absolute;
    content: '';
    width: 30px;
    height: 30px;
    margin-top: -3px;
    margin-left: -44px;
    border-radius: 50%;
}

.member-area h3.mb-1:before {
    background: #F5DED7 !important;
}

.member-area h3.mb-2:before {
    background: #EAF3FB !important;
}

.member-area h3.mb-3:before {
    background: #F6F1D7 !important;
}

@media (min-width: 2090px) {
    .section-4 .member-area h3 {
        /* font-size: 24px; */
        font-size: 22px;
    }
    .member-area p {
        /* font-size: 22px; */
        font-size: 20px;
    }
}

@media (max-width: 1120px) {
    .member-area {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .section-4 .member-area h3 {
        /* font-size: 20px; */
        font-size: 18px;
    }
    .member-area p {
        /* font-size: 16px; */
        font-size: 14px;
    }
    .member-area span {
        margin-top: 30px;
    }
    .member-area .btn-2 {
        margin-top: 30px;
    }
}

.l-footer {
    background: none;
}

.l-footer .footer-img {
    background: #EFF8FD;
    position: absolute;
    left: 0;
    right: 0;
    width: 276%;
    height: 275vw;
    border-radius: 50%;
    margin-left: -88%;
    margin-right: -13%;
    margin-top: -15%;
}

/* for success.html */

.succ img {
    width: 9vw;
    margin: 0 auto;
    display: block;
    margin-top: 32vh;
}

.succ p {
    text-align: center;
    margin-top: 2.4vw;
    /* font-size: 1.8vw; */
    font-size: 1.6vw;
    font-weight: bold;
}

.spb {
    position: absolute;
    right: 3vw;
    bottom: 2vw;
    /* font-size: 0.6vw; */
    font-size: 0.5vw;
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .succ img {
        width: 12vw;
        margin: 0 auto;
        display: block;
        margin-top: 32vh;
    }
    .succ p {
        text-align: center;
        margin-top: 2.4vw;
        font-size: 2.8vw;
        font-weight: bold;
    }
    .spb {
        position: absolute;
        right: 5vw;
        bottom: 4vw;
        /* font-size: 1.2vw; */
        font-size: 1.1vw;
    }
}

@media screen and (max-width: 1023px) and (min-aspect-ratio: 15 / 9) {
    .spb {
        position: absolute;
        right: 5vw;
        bottom: 4vw;
        /* font-size: 0.9vw; */
        font-size: 0.8vw;
        display: none;
    }
    .succ img {
        width: 12vw;
        margin: 0 auto;
        display: block;
        margin-top: 28vh;
    }
    .succ p {
        text-align: center;
        margin-top: 2.4vw;
        /* font-size: 2.8vw; */
        font-size: 2.5vw;
        font-weight: bold;
    }
}

@media (max-width: 768px) {
    .succ img {
        width: 19vw;
        margin: 0 auto;
        display: block;
        margin-top: 35vh;
    }
    .succ p {
        text-align: center;
        margin-top: 5.4vw;
        /* font-size: 4.8vw; */
        font-size: 4.3vw;
        font-weight: bold;
    }
    .spb {
        position: absolute;
        right: 9vw;
        bottom: 7vw;
        /* font-size: 2.2vw; */
        font-size: 2vw;
        display: none;
    }
}

.application {
    margin-bottom: 200px;
}

@media (max-width: 960px) {
    .application {
        margin-bottom: 19vw;
    }
}

.application h1 {
    font-family: "SF Medium";
    font-weight: 800;
    font-size: 36px;
    margin-top: 60px;
    text-align: center;
    letter-spacing: .5px;
}

.application form, .payment-window form {
    margin: 0 auto;
}

.application legend, .payment-window legend {
    font-family: "SF Regular";
    padding-top: 40px;
    padding-bottom: 20px;
    /* font-size: 30px; */
    font-size: 27px;
    font-weight: 700;
    text-align: center;
    letter-spacing: .5px;
}

.application .form-area, .application .form-submit {
    max-width: 400px;
    margin: 0 auto;
}

.payment-window .form-area, .payment-window .form-submit {
    max-width: 400px;
    margin: 0 auto;
}

.application .form-area, .login, #card_payment_form .form-area {
    position: relative;
    width: 100%;
    border: 1px solid #DEE7EC;
    margin-bottom: 25px;
}

.form-area.login:nth-child(1) {
    margin-bottom: 20px;
}

.application .passwordMatch, .application .messageBox {
    border: none;
    top: -34px;
    margin-bottom: -5px;
}

.application .passwordMatch, .application .messageBox span {
    font-size: 13px;
    top: -11px!important;
    font-weight: 400!important;
}

.application .passwordMatch, .application .messageBox span[class*="-angle"] {
    top: -4px!important;
}

#validModalEmail {
    font-size: 13px;
}

/* .application .form-area>label {
    margin-top: 12px;
} */

/* .application .form-area>label,
.payment-window .form-area>label {
    display: block;
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 700;
} */

.application .form-area:not(.agreement-wrapper)>label, .payment-window .form-area>label {
    font-family: "SF Regular";
    display: block;
    margin-bottom: 0;
    /* font-size: 18px; */
    font-size: 13px;
    /* font-weight: 700; */
    font-weight: normal;
    position: absolute;
    top: -8px;
    left: 5px;
    padding: 0 5px;
    background-color: white;
    color: #7F90A4;
    line-height: 1;
    letter-spacing: .5px;
}



.application .form-area.b-none>label {
    top: -4px;
    left: 20px;
}

.application .form-area.license-field {
    border: none;
    margin-bottom: 30px;
    margin-top: 40px;
}

.application .form-area.license-description {
    margin-top: -10px;
}

.application .form-area.license-field>label {
    display: inline-block;
    position: inherit;
    line-height: unset;
    top: -15px;
}

.application .form-area>label[for="license-desc"] {
    left: 8px;
    top: -2px;
}

.application .form-area.license-field input {
    position: relative;
    top: -9px;
    left: 7px;
}

.application .form-area input#autocomplete.hide {
    display: none;
}

.application .form-area input#street {
    display: none;
}

.application .form-area input#street.show {
    display: block;
}

.application .form-area.license-field input+label {
    margin-bottom: 0;
    padding: 0 0 0 5px;
}

.application input, .payment-window input {
    font-family: "SF Regular";
    border: none;
    width: 100%;
    /* padding: 5px 0px; */
    padding: 10px 20px 10px 10px;
    color: #3E4D5E;
    font-size: 16px;
    letter-spacing: .5px;
}

.payment-window .login__password {
    padding-right: 30px;
}

.application input[type="radio"] {
    width: auto;
}

.ml20 {
    margin-left: 20px;
}

.application textarea {
    font-family: "SF Regular";
    width: 100%;
    margin-top: 5px;
    padding: 10px;
    /* border-bottom: 1px solid #3E4D5E; */
    resize: none;
    color:#3E4D5E;
    font-size: 16px;
    letter-spacing: .5px;
    font-weight: 400;
    border: 1px solid #DEE7EC;

}

.application .form-area.b-none {
    border: none!important;
}

.application .form-area span {
    color: #DFE7EC;
}

/*
.application .form-area .red {
    color: red;
} */

input[type="checkbox"] {
    display: none;
}

input[type="checkbox"]+label {
    display: block;
    position: relative;
    padding-left: 23px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

input[type="checkbox"]+label:last-child {
    margin-bottom: 0;
}

input[type="checkbox"]+label:before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    border: 1px solid #3E4D5E;
    position: absolute;
    left: 0;
    top: 3px;
    opacity: .6;
    -webkit-transition: all .12s, border-color .08s;
    transition: all .12s, border-color .08s;
}

input[type="checkbox"]:checked+label:before {
    width: 10px;
    top: 0px;
    left: 5px;
    border-radius: 0;
    opacity: 1;
    border-color: #0066cc;
    border-top-color: transparent;
    border-left-color: transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);

}

.mt20 {
    margin-top: 20px !important;
}

.application .agreement-wrapper label {
    font-family: "SF Regular";
    letter-spacing: .5px;
    display: inline-block;
    font-size: 14px;
    font-weight: normal;
}

.application .agreement-wrapper a {
    font-family: "SF Regular";
    letter-spacing: .5px;
    padding-left: 25px;
    /* font-size: 12px; */
    font-size: 11px;
}

.btn-3 {
    font-family: "SF Bold";
    letter-spacing: .5px;
    display: inline-block;
    margin: 0 auto;
    margin-top: 50px;
    padding: 3px 27px;
    /* font-size: 18px; */
    font-size: 16px;
    color: #fff;
    background: #DEE7EC;
    border: 3px solid #DEE7EC;
    border-radius: 30px;
    cursor: pointer;
}

.choosen {
    background: #61B8E9;
    border: 3px solid #61B8E9;
}

@media (max-width: 767px) {
    .application .col-12:not(:last-child) .member-area {
        margin-bottom: 60px;
    }
}

.application fieldset:last-child label {
    padding-left: 5px;
    /* font-size: 18px; */
    font-size: 16px;
    font-weight: normal;
}

.application fieldset:last-child .form-area {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: baseline;
}

.btn-snd, .btn-next, .btn-pay, .btn-login {
    font-family: "SF Bold";
    letter-spacing: .5px;
    margin-top: 40px;
    padding: 3px 27px;
    /* font-size: 18px; */
    font-size: 16px;
    color: #fff;
    background: #61B8E9;
    border: 3px solid #61B8E9;
    border-radius: 30px;
}

.application .form-submit, .payment-window .form-submit {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.hide {
    display: none;
}

@media (max-width: 768px) {
    .application h1 {
        margin-top: 40px;
        /* font-size: 30px; */
        font-size: 27px;
        text-align: center;
    }
    .application legend {
        /* font-size: 24px; */
        font-size: 22px;
        line-height: 1.2;
    }
    .application .form-area label, .application .form-area input {
        /* font-size: 18px; */
        font-size: 16px;
    }
}

@media (max-width: 420px) {
    .application h1 {
        /* font-size: 24px; */
        font-size: 22px;
    }
    .application legend {
        /* font-size: 24px; */
        font-size: 22px;
    }
    .application .form-area label, .application .form-area input {
        /* font-size: 16px; */
        font-size: 14px;
    }
    .application .form-area.b-none>label {
        left: 0;
    }
}

.application .labelfocus {
    /* color: #FFACAC !important; */
    font-weight: bold !important;
}

.application select {
    /* -moz-appearance: none; */
    /* -webkit-appearance: none; */
    border: none;
    background: transparent;
    outline: none;
    padding: 10px 10px 10px 6px;
}

/* modal window */

.show {
    display: block;
}

.modal-window {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 101;
    background-color: white;
    height: 100vh;
}

.payment-window .container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.payment-window form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
}

.modal-window form {
    scrollbar-width: none;
    /* For Firefox */
    -ms-overflow-style: none;
    /* For Internet Explorer and Edge */
}

.modal-window form::-webkit-scrollbar {
    width: 0px;
    /* For Chrome, Safari, and Opera */
}

.payment-window img {
    display: block;
    width: 108px;
    margin: 0 auto 30px;
}

.payment-window__btn-back {
    position: absolute;
    top: 5%;
    left: 5%;
    display: flex;
    align-items: baseline;
    cursor: pointer;
}

.payment-window__btn-back img {
    width: 20px;
    margin: 0;
    margin-right: 10px;
}

.payment-window__btn-back span {
    color: #DEE7EC;
    /* font-size: 20px; */
    font-size: 18px;
    font-weight: 700;
}

.invoice-sent-window {
    text-align: center;
}

.invoice-sent-window .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.invoice-sent-window h1 {
    /* font-size: 30px; */
    font-family: "SF Regular";
    letter-spacing: .5px;
    font-size: 27px;
    font-weight: 700;
}

.invoice-sent-window img {
    position: absolute;
    top: 40px;
}

input::placeholder {
    /*color: #7f90a4;*/
    color: transparent;
}

input:focus::-webkit-input-placeholder {
    color: transparent;
}

input:focus:-moz-placeholder {
    color: transparent;
}

/* FF 4-18 */

input:focus::-moz-placeholder {
    color: transparent;
}

/* FF 19+ */

input:focus:-ms-input-placeholder {
    color: transparent;
}

/* IE 10+ */

.ymaps-2-1-74-float-button.ymaps-2-1-74-_hidden-icon {
    height: 39px;
    /* right: -70px; */
    margin-left: 75px;
    z-index: 2;
    font-weight: 700;
    color: #fff;
    background: none;
    border: 3px solid #fff;
    border-radius: 30px !important;
    cursor: pointer;
}

.ymaps-2-1-74-float-button.ymaps-2-1-74-_hidden-icon.ymaps-2-1-74-_checked, .ymaps-2-1-74-float-button.ymaps-2-1-74-_hidden-icon.ymaps-2-1-74-_checked:focus {
    background: none;
}

.ymaps-2-1-74-float-button.ymaps-2-1-74-_hidden-icon:hover, .ymaps-2-1-74-float-button.ymaps-2-1-74-_hidden-icon:focus, .ymaps-2-1-74-float-button.ymaps-2-1-74-_hidden-icon.ymaps-2-1-74-_checked:active {
    background: #fff;
    color: #64B9E7;
    border-color: #fff;
}

.ymaps-2-1-74-float-button-text {
    font-size: 20px !important;
    margin: 0 auto;
    padding: 0 !important;
}

.ymaps-2-1-74-float-button.ymaps-2-1-74-_hidden-icon {
    padding: 3px 27px 3px 27px !important;
}

@media (max-width: 1080px) {
    .ymaps-2-1-74-float-button.ymaps-2-1-74-_hidden-icon {
        background: none;
        position: absolute;
        top: 90px;
        z-index: 2;
        right: auto;
        left: 20px;
        margin: 0;
    }
}

@media (max-width: 768px) {
    .ymaps-2-1-74-float-button.ymaps-2-1-74-_hidden-icon {
        left: 0;
    }
}

@media screen and (max-width: 1023px) and (min-aspect-ratio: 15 / 9) {
    .payment-window form {
        flex-direction: row;
        align-items: baseline;
        justify-content: space-around;
    }
    .payment-window fieldset {
        margin: auto 0;
    }
    .payment-window fieldset:last-child legend {
        padding-top: 0px;
    }
}

@media screen and (max-width: 768px) and (min-aspect-ratio: 15 / 9) {
    .invoice-sent-window img {
        top: 20px;
    }
    .invoice-sent-window h1 {
        /* font-size: 24px; */
        font-size: 22px;
    }
}

@supports not (-webkit-overflow-scrolling: touch) {
    [class*="ymaps-2"][class*="-ground-pane"] {
        filter: grayscale(100%) invert(0.74) url(yellowfilter.svg#yellowfilter);
        filter: gray;
        -webkit-filter: grayscale(100%) invert(0.74) url(yellowfilter.svg#yellowfilter);
    }
}

@supports (-webkit-overflow-scrolling: touch) {
    [class*="ymaps-2"][class*="-ground-pane"] {
        filter: sepia(99%) brightness(47%) hue-rotate(326deg) saturate(420%) contrast(155%) invert(100%);
        -webkit-filter: sepia(99%) brightness(47%) hue-rotate(326deg) saturate(420%) contrast(155%) invert(100%);
        -moz-filter: sepia(99%) brightness(47%) hue-rotate(326deg) saturate(420%) contrast(155%) invert(100%);
    }
}

@supports (-moz-appearance: none) {
    [class*="ymaps-2"][class*="-ground-pane"] {
        filter: sepia(99%) opacity(55%) brightness(47%) hue-rotate(320deg) saturate(420%) contrast(155%) invert(100%);
        -webkit-filter: sepia(99%) opacity(55%) brightness(47%) hue-rotate(320deg) saturate(420%) contrast(155%) invert(100%);
        -moz-filter: sepia(99%) opacity(55%) brightness(47%) hue-rotate(320deg) saturate(420%) contrast(155%) invert(100%);
    }
}

@supports (-webkit-marquee-repetition: infinite) and (object-fit: fill) {
    [class*="ymaps-2"][class*="-ground-pane"] {
        filter: sepia(99%) brightness(47%) hue-rotate(326deg) saturate(420%) contrast(155%) opacity(43%) invert(100%);
        -webkit-filter: sepia(99%) brightness(47%) hue-rotate(326deg) saturate(420%) contrast(155%) opacity(43%) invert(100%);
        -moz-filter: sepia(99%) brightness(47%) hue-rotate(326deg) saturate(420%) contrast(155%) opacity(43%) invert(100%);
    }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    [class*="ymaps-2"][class*="-ground-pane"] {
        filter: sepia(99%) brightness(47%) hue-rotate(326deg) saturate(420%) contrast(155%) invert(100%);
        -webkit-filter: sepia(99%) brightness(47%) hue-rotate(326deg) saturate(420%) contrast(155%) invert(100%);
        -moz-filter: sepia(99%) brightness(47%) hue-rotate(326deg) saturate(420%) contrast(155%) invert(100%);
    }
}

@supports (-ms-ime-align: auto) {
    [class*="ymaps-2"][class*="-ground-pane"] {
        filter: sepia(99%) brightness(47%) hue-rotate(326deg) saturate(420%) contrast(155%) invert(100%);
        -webkit-filter: sepia(99%) brightness(47%) hue-rotate(326deg) saturate(420%) contrast(155%) invert(100%);
        -moz-filter: sepia(99%) brightness(47%) hue-rotate(326deg) saturate(420%) contrast(155%) invert(100%);
    }
}

.form-area hr {
    margin:0;
    border:none;
}

.radiocontainer {
    display: block;
    position: relative;
    padding-left: 15px!important;
    margin-top: 10px;
    margin-right: 20px;
    cursor: pointer;
    font-size: 22px;
    height: 25px;
    line-height: 25px!important;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.radiocontainer:last-of-type {
    margin-right:0px;
}

.radiocontainer input {
    position: absolute;
    opacity:0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.radiobtn {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    border: 1px solid #DEE7EC;
    border-radius: 50%;
}

.radiocontainer:hover input ~ .radiobtn {

}

.radiobtn:after {
    content: "";
    position: absolute;
    display: none;
}

.radiocontainer input:checked ~ .radiobtn:after {
    display: block;
}

.radiocontainer .radiobtn:after {
    top: 6px;
    left: 6px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #60B8E9;
}

.select2-container--default {
    width: 100%!important;
}

.select2-container--default .select2-selection--single {
    font-family: "SF Regular";
    font-size: 16px;
    letter-spacing: .5px;
    border-radius: 0px;
    height: 44px;
    border: none;
    position: relative;
    background: none;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    height: 44px;
    line-height: 44px;
    padding-left: 15px;
    background: none;
}

.select2-results__options li {
    font-family: "SF Regular";
    font-size: 14px;
    letter-spacing: .5px;
    height: 44px;
    line-height: 44px;
    padding:0px 15px;
}

.select2-results__options li:hover {
    background: #EAF3FB;
}

.select2-selection__arrow {
    top: 50%!important;
    margin-top: -13px;
}

.select2-dropdown {
    border-radius: 0px;
    border: 1px solid #ced4da;
}

.agreement-wrapper label {
    left:0px!important;
    padding-left: 30px!important;
    margin-bottom: 20px;
}

.form-area {
    background: #fff;
}

.form-area label {
    z-index:9;
}

.form-area.error {
    border: 1px solid rgb(255, 78, 80);
    margin-bottom: 50px;
}

.form-area.valid {
    /*border: 1px solid #60B8E9!important;*/
    background: transparent;
    border: 1px solid rgb(96, 184, 233);
}


.form-area.valid label#license-desc-error  {
    display: none!important;
    opacity:0;
}

#email-field.valid.error label.error {
    display: block;
    opacity:1;
}

.form-area.valid textarea {
    border: 1px solid #60B8E9!important;
}

.form-area.error textarea {
    border: 1px solid rgb(255, 78, 80)!important;
}

.form-area input {
    background: transparent!important;
    filter: grayscale(100%) brightness(110%);
}

.form-area.license-description .error {
    bottom: -22px!important;
}

.form-area span.success {
    display: none;
    color:rgb(147, 160, 81);
    position: absolute;
    bottom: -22px;
    left: 10px;
}

.form-area.valid span.success {
    display: block;
    font-size: 12px;
}

input:-webkit-autofill {
    background: none!important;
}

.form-area.error label.error {
    position: absolute;
    top:auto;
    bottom: -30px;
    color: #fff;
    background-color: #60B8E9;
    color: white;
    padding: 3px 7px;
    display: inline-block;
    z-index:999;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 4px 7px;
}

.form-area.error label.error:before {
    content: "";
    display: block;
    width: 0px;
    position: absolute;
    top: -4px;
    height: 0px;
    margin-left: 15px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #60B8E9;
    z-index:8;
}

.email-valid:after {
    content: 'Email address is valid.';
    display: block;
    color: rgb(96, 184, 233);
    background: #fff;
    font-family: "SF Regular";
    letter-spacing: .5px;
    font-size: 13px;
    position: absolute;
    top: -11px;
    left: 10px;
    z-index:999;
}

#password_confirm.valid:after {
    content: 'Passwords match.';
    display: block;
    color: rgb(96, 184, 233);
    background: #fff;
    font-family: "SF Regular";
    letter-spacing: .5px;
    font-size: 13px;
    position: absolute;
    top: -11px;
    left: 10px;
    z-index:999;
}

#password_confirm.valid.error:after {
    content: '';

}

.form-area.payment-method label {
    position: relative!important;
    padding-left: 30px!important;
}




#card_payment_form legend {
    margin-bottom: 40px;
}

#card_payment_form fieldset {
    width: 400px;
    margin: 0 auto;
}

#card_payment_form .form-area {
    border: 1px solid #DEE7EC;
    position:relative;
    float: left;
    margin-bottom: 40px;
}

input[type='number'] {
    -moz-appearance:textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

#card_payment_form .form-area.sm {
    max-width: 30%;
    margin-right: 5%;
}

#card_payment_form .form-submit {
    display: block;
    float: left;
    width: 100%;
    text-align: center;
}

#card_payment_form .form-submit .btn-pay {
    margin-top: 10px;
}
