* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    outline: none;
}

html {
    margin: 0;
    height: 100%;
}

body {
    height: 100%;
    font-size: 14px;
    font-family: 'Akzidenz-Grotesk Pro', sans-serif;
    color: #1E2C28;
    line-height: 18px;
    padding: 0;
    margin: 0;
    position: relative;
    overflow-x: hidden;
    background: #fff;
    -webkit-text-size-adjust: none;
}

header,
nav,
section,
article,
aside,
figure,
footer,
main {
    display: block;
    padding: 0;
    margin: 0;
}
.caps_css {
    text-transform: uppercase;
}
.error {
    color: #fff;
    background-color: #dc3545;
    padding: 0.5rem;
    border-radius: 0px 0px 8px 8px;
}
/*tags*/

.text_green {
    color: #37CE63;
}
.bg_green {
    background: #37CE63;
}

a {
    color: #37CE63;
    text-decoration: none;
    transition: all 0.3s;
}

a:hover {
    color: #000;
    text-decoration: none;
}

p {
    padding: 0 0 20px 0;
    margin: 0;
}

ul,
ol {
    padding: 0;
    margin: 0;
}

img {
    display: block;
    border: none;
}

/*end tags*/

/* error */

#overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.55;
    background-color: #000;
    display: none;
    transition: opacity ease 0.3s;
    z-index: 9999;
}

.error_top_text,
.success_top_text {
    position: fixed;
    display: block;
    top: -110px;
    right: 30px;
    z-index: 104400;
    box-shadow: 6px 6px 13px -3px #000;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.error_top_text.badge_shake,
.success_top_text.badge_shake {
    top: 30px;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.custom_close {
    right: -15px;
    position: absolute;
    top: -15px;
}

/* end error */

/*form preloader*/

.feedback_overlay {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.8;
    background-color: #000;
    transition: opacity ease 0.3s;
    z-index: 9999;
}

.lds-ripple {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.feedback_overlay_text {
    position: absolute;
    top: 60%;
    margin: 0 auto;
    width: 100%;
    text-align: center;
	font-size:20px;
}

.lds-ripple div {
    border: 4px solid #fff;
    opacity: 1;
    border-radius: 50%;
    animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.lds-ripple div:nth-child(2) {
    animation-delay: -0.5s;
}

@keyframes lds-ripple {
    0% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0;
        left: 0;
        width: 72px;
        height: 72px;
        opacity: 0;
    }
}

/*end form preloader*/

/*titles*/

h1 {
    font-family: 'Akzidenz-Grotesk Pro Ext', sans-serif;
    font-weight: bold;
    font-size: 48px;
    text-transform: uppercase;
    line-height: 58px;
    padding: 0 0 50px;
    margin: 0;
}

h2 {
    font-family: 'Akzidenz-Grotesk Pro Ext', sans-serif;
    font-weight: bold;
    font-size: 34px;
    line-height: 38px;
    text-transform: uppercase;
    padding: 0 0 20px;
    margin: 0;
}

h3 {
    font-family: 'Akzidenz-Grotesk Pro Ext', sans-serif;
    font-weight: bold;
    font-size: 24px;
    line-height: 31px;
    text-transform: uppercase;
    padding: 0 0 20px;
    margin: 0;
}

h4 {
    font-family: 'Akzidenz-Grotesk Pro Ext', sans-serif;
    font-weight: bold;
    font-size: 18px;
    line-height: 23px;
    text-transform: uppercase;
    padding: 0 0 20px;
    margin: 0;
}

h5 {
    font-family: 'Akzidenz-Grotesk Pro Ext', sans-serif;
    font-weight: bold;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
    padding: 0 0 20px;
    margin: 0;
}

/*end titles*/

/* form elements */

input:focus,
textarea:focus {
    outline: none;
    -webkit-appearance: none;
}

input[type="checkbox"] {
    -webkit-appearance: checkbox;
}

input[type="radio"] {
    -webkit-appearance: radio;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input,
select {
    vertical-align: middle;
}

.form-control,
select,
textarea,
input[type="tel"],
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"] {
    width: 100%;
    height: 60px;
    display: block;
    font-family: 'Akzidenz-Grotesk Pro', sans-serif;
    font-size: 18px;
    color: #808080;
    line-height: 58px;
    outline: none;
    padding: 0 25px;
    margin: 0;
    position: relative;
    border: none;
    background: #F3F6FB;
    border-radius: 8px;
    transition: all 0.3s;
}

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

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

input:focus,
textarea:focus,
.form-control:focus  {
    border-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none;
    background: #F3F6FB;
}

textarea::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="text"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder {
    color: #808080;
}

textarea::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="text"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="password"]::-moz-placeholder,
input[type="number"]::-moz-placeholder {
    color: #808080;
}

textarea:-moz-placeholder,
input[type="tel"]:-moz-placeholder,
input[type="text"]:-moz-placeholder,
input[type="email"]:-moz-placeholder,
input[type="password"]:-moz-placeholder,
input[type="number"]:-moz-placeholder {
    color: #808080;
}

textarea:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="text"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder {
    color: #808080;
}

select {
    color: #323743;
    padding: 0 30px;
}

select:focus,
textarea:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus {
    margin: 0;
    box-shadow: none;
}

button {
    outline: none;
}

textarea.form-control {
    height: 110px;
    line-height: 20px;
    padding: 20px 25px;
    border: none;
    resize: vertical;
    background: #F3F6FB;
}

.form-holder {
    padding: 0 0 5px;
}

.red {
    border: 1px solid red !important;
}

.back-call-section form {
    position: relative;
    z-index: 1;
}

.back-call-section form textarea {
    height: 116px;
}

select:focus,
textarea:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus {
    margin: 0;
}

.form-control:focus {
    box-shadow: none !important;
    border: 1px solid #ccc;
}

button {
    outline: none;
}

.form-group {
    background-color: #fff;
    border-radius: 25px;
}

.form-group > textarea,
.form-group > textarea + label {
    height: 200px;
}

.form-holder {
    padding: 0 0 5px;
}

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

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

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
}

.form-group > label {
    color: #040f1959;
}

/* end form elements */

/*buttons*/

.btn {
    height: 40px;
    font-family: 'Akzidenz-Grotesk Pro', sans-serif;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    cursor: pointer;
    line-height: 38px;
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    transition: all 0.3s;
}

.btn-success {
    color: #fff;
    padding: 0 30px;
    border: none;
    background: linear-gradient(270deg, #2CCD5A 0%, #6AECC2 50%, #2CCD5A 100%);
    background-size: 200% 100%;
}

.btn-success:hover {
    background-position: 100% 0;
}

.btn-outline-success {
    color: #2CCD5A;
    border-color: #2CCD5A;
}

.btn-outline-success:hover {
    border-color: #2CCD5A;
    background: #2CCD5A;
}

.btn-primary {
    padding: 0 30px;
}

/*end buttons*/

/*global class*/

.hidden {
    opacity: 0;
}

.visible {
    opacity: 1;
}

.wrapper {
    width: 100%;
    height: auto !important;
    min-height: 100%;
    margin: auto;
    position: relative;
}

.container {
    max-width: 1240px;
}

/*global class*/

/*header section*/

.header_section {
    position: relative;
    z-index: 10;
}

.header_top_line {
    padding: 10px 0
}

.logo_box a {
    display: block;
}

.logo_box a img {
    width: 100%;
    max-width: 218px;
}

.header_top_line .btn {
    padding: 0 20px;
}

.header_contact_box .btn {
    margin-left: 30px;
    white-space: nowrap;
}

.header_contact_box .btn.btn-outline-success {
    margin-left: 0;
}

.contact_box {
    width: max-content;
    padding-right: 40px;
}

.contact_box a {
    display: inline-block;
    font-family: 'Akzidenz-Grotesk Pro Ext', sans-serif;
    color: #1E2C28;
    line-height: 24px;
}

.contact_box a:hover {
    color: #37CE63;
}

.contact_box.item_1 {
    padding-left: 40px;
    background: url(../images/phone-icon.svg) no-repeat 0 50%;
    background-size: 24px auto;
}

.contact_box.item_2 {
    padding-left: 40px;
    background: url(../images/mail-icon.svg) no-repeat 0 50%;
    background-size: 24px auto;
}

.header_bottom-line .container {
    border-top: 1px solid #E5E5E5
}

.header_menu .navbar-expand-lg .navbar-nav .nav-item {
    margin-left: 35px;
}

.header_menu .navbar-expand-lg .navbar-nav .nav-item:first-child {
    margin-left: 0;
}

.header_menu .navbar-expand-lg .navbar-nav .nav-link {
    font-family: 'Akzidenz-Grotesk Pro Ext', sans-serif;
    font-size: 12px;
    color: #1E2C28;
    text-transform: uppercase;
}

.header_menu .navbar-expand-lg .navbar-nav .nav-link:hover {
    color: #37CE63;
}

.header_menu .dropdown-menu  {
    min-width: calc(100% + 20px);
    margin-top: 5px;
}

.header_menu .dropdown-menu .dropdown-item {
    font-family: 'Akzidenz-Grotesk Pro Ext', sans-serif;
    font-size: 14px;
    padding: 10px 15px;
}

.header_menu .dropdown-menu {
    left: -10px
}

.header_menu .dropdown-item.active, 
.header_menu .dropdown-item:active {
    background: #63C96A;
}

/*end header section*/

/*top banner section*/

.top_banner_section {
    background: linear-gradient(180deg, #D1D7E0 0%, #DADDE3 49.5%, #E8EDF6 99.99%);
}

.top_banner_section .slide {
    position: relative;
}

.top_banner_section .info {
    width: 100%;
    max-width: 500px;
    text-transform: uppercase;
    font-weight: bold;
    padding: 75px 0 75px 70px;
    position: relative;
    z-index: 1;
}

.top_banner_section .info h1 {
    text-transform: uppercase;
    padding-bottom: 15px;
}

.top_banner_section .info h1 span {
    display: block;
    font-size: 24px;
    line-height: 31px;
    padding-bottom: 10px;
}

.top_banner_section figure {
    position: absolute;
    bottom: 0; left: 0;
}

.top_banner_section  figure img {
    width: 100%;
}

.top_banner_section .btn {
    padding: 0 40px;
}

/*end top banner section*/

/*product section*/

.product_section {
    padding: 65px 0 70px;
    background: #F3F6FB;
}

.product_section .row {
    margin: 0 -10px;
}

.product_section .row .col-xl-2:nth-child(2) .product_box {
    animation-delay: 0.15s;
}

.product_section .row .col-xl-2:nth-child(3) .product_box {
    animation-delay: 0.3s;
}

.product_section .row .col-xl-2:nth-child(4) .product_box {
    animation-delay: 0.45s;
}

.product_section .row .col-xl-2:nth-child(5) .product_box {
    animation-delay: 0.6s;
}

.product_section .row .col-xl-2:nth-child(6) .product_box {
    animation-delay: 0.75s;
}

.product_box {
    height: 100%;
    border: none;
}

.product_box:hover {
    z-index: 1;
}

.product_box a {
    height: 100%;
    color: #1E2C28;
    display: block;
    background: #fff;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: all 0.3s;
}

.product_box a:hover {
    color: #37CE63;
    transform: scale(1.1);
}

.product_box figure {
    height: 45px;
}

.product_box figure img {
    max-width: 45px;
}

.col-xl-2:nth-child(1) .product_box figure img {
    max-width: 55px;
    height: 55px;
}

.product_box h5 {
    min-height: 40px;
    position: relative;
}

.product_box h5::after,
.advantage_box h5::after {
    content: '';
    width: 93px;
    height: 2px;
    display: block;
    position: absolute;
    bottom: 0; left: 50%;
    background: #37CE63;
    transform: translateX(-50%);
}

.product_box .card-body p {
    color: #808080;
}

/*end product section*/

/*advantages section*/

.advantages_section {
    padding: 50px 0 100px;
    margin: 50px 0;
    background: url(../images/advantages-section-bg.jpg) no-repeat 50% 0;
    background-size: cover;
}

.advantages_section .left_side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    line-height: 23px;
    padding-top: 30px;
}

.advantages_section .right_side {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.advantages_section h2 {
    font-size: 36px;
    line-height: 46px;
}

.advantages_section h2 span {
    display: inline-block;
    font-size: 26px;
    line-height: 38px;
}

.advantages_section h4 {
    font-family: 'Akzidenz-Grotesk Pro', sans-serif;
    text-transform: none;
    padding-bottom: 35px;
}

.advantages_section h4 {
    animation-delay: 0.15s;
}

.advantages_section .text {
    animation-delay: 0.3s;
}

.advantages_section .right_side .row .col-xl-6:nth-child(2) .advantage_box {
    animation-delay: 0.15s;
}

.advantages_section .right_side .row .col-xl-6:nth-child(3) .advantage_box {
    animation-delay: 0.3s;
}

.advantages_section .right_side .row .col-xl-6:nth-child(4) .advantage_box {
    animation-delay: 0.45s;
}

.advantage_box figure {
    min-width: 62px;
    margin-right: 30px;
}

.advantage_box h5 {
    padding-bottom: 20px;
    margin-bottom: 15px;
    position: relative;
}

.advantage_box h5::after {
    left: 0;
    transform: translateX(0);
}

.advantage_box p {
    color: #808080;
}

/*end advantages section*/

/*partners section*/

.partners_section {
    padding: 60px 0;
    position: relative;
    z-index: 1;
    background: rgba(194, 211, 235, 0.2);
}

.partners_section h3 {
    padding-bottom: 30px;
}

.partners_carousel .slide {
    display: flex;
    justify-content: center;
    padding: 0 15px;
}

.partners_carousel .slide img {
    width: 100%;
    max-width: 75%;
    height: 100%;
    transition: all 0.5s;
}

.partners_carousel .slide img:hover {
    transform: scale(1.1);
}

.slick-prev,
.slick-next {
    width: 21px;
    height: 40px;
    transition: all 0.3s;
}

.slick-prev {
    left: 0;
}

.slick-next {
    right: 0;
}

.slick-disabled {
    opacity: 0;
}

.slick-prev,
.slick-prev:hover,
.slick-prev:focus {
}

.slick-next,
.slick-next:hover,
.slick-next:focus {
}

.slick-prev:hover,
.slick-next:hover {
    transform: translateY(-50%) scale(1.2);
}

.slick-prev:before,
.slick-next:before {
    display: none;
}

/*end partners section*/

/* steps section */

.steps_section {
    padding: 110px 0 100px;
}

.steps_section .container {
    position: relative;
}

.steps_section .container::after {
    content: '';
    width: calc(100% + 40px);
    height: 30px;
    display: block;
    position: absolute;
    bottom: -15px; left: -20px;
    background: #37CE63;
    animation: 2s ease-in-out 0s animateLine;
}

@keyframes animateLine { 
    0% { width: 0; }; 
    99% { width: 0; }; 
    100% { width: calc(100% + 40px); }  
}

.steps_section .row {
    margin: 0 -10px;
}

.steps_section .row div:nth-child(2) .steps_box {
    animation-delay: 0.15s;
}

.steps_section .row div:nth-child(3) .steps_box {
    animation-delay: 0.3s;
}

.steps_section .row div:nth-child(4) .steps_box {
    animation-delay: 0.45s;
}

.steps_box {
    height: 100%;
    text-align: center;
    border: none;
    position: relative;
    z-index: 1;
    background: #fff;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.steps_box .number {
    width: 100%;
    font-family: 'Akzidenz-Grotesk Pro Ext', sans-serif;
    font-weight: bold;
    font-size: 40px;
    text-align: center;
    line-height: 51px;
    color: #37CE63;
    position: absolute;
    top: -27px; left: 0;
}

.steps_box p {
    color: #808080;
    padding: 0 30px 15px;
}

.steps_box p:last-child {
    padding-bottom: 0;
}

/* end steps section */


/*contacts section*/

.contacts_section {
    padding: 120px 0 80px;
    margin-bottom: 40px;
    position: relative;
    background: url(../images/form-section-bg.jpg) no-repeat 50% 0;
    background-size: cover;
}

.contacts_section .info_block {
    font-size: 18px;
    color: #fff;
    line-height: 23px;
}

.contacts_section .info_block h3 {
    text-transform: none;
}

.contacts_section input,
.contacts_section textarea {
    z-index: 1;
    background: none;
}

.contacts_section .form-group {
    background: #F3F6FB;
    border-radius: 8px;
}

.contacts_section .form-group input:focus + label,
.contacts_section .form-group textarea:focus + label,
.contacts_section .form-group .form-control:focus + label {
    z-index: 1;
}

.form-group > label {
    padding-left: 24px;
    padding-right: 24px;
}

/*end contacts section*/

/*comments section*/

.comments_section {
    padding: 80px 0 100px;
    background: #F3F6FB;
}

.comments_section .row {
    margin: 0 -10px;
}

.comments_section .row div:nth-child(2) .comment_box {
    animation-delay: 0.15s;
}

.comments_section .row div:nth-child(3) .comment_box {
    animation-delay: 0.3s;
}

.comment_box {
    height: 100%;
    padding: 50px 25px 35px;
    background: #fff url(../images/dotted-icon.svg) no-repeat right 17px top 21px;
    background-size: 25px auto;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
}

.comment_box figure {
    width: 80px;
    margin-right: 30px;
}

.comment_box figure img {
    width: 100%;
    border-radius: 50%;
}

.comment_box .link {
    font-family: 'Akzidenz-Grotesk Pro Ext', sans-serif;
    font-weight: bold;
    font-size: 10px;
    line-height: 13px;
}

/*end comments section*/

/*article section*/

.article_section {
    padding: 0 0 80px;
    font-size: 18px;
    line-height: 28px;
}

.article_section .figure_3 {
    top: auto;
    bottom: 200px;
    left: auto;
    right: 0;
}

.article_section figure {
    margin: 15px 0 25px;
}

.article_section figure img {
    width: 100%;
}

.vertical_products_menu {
    width: 100%;
    font-size: 16px;
    line-height: 24px;
    padding: 0;
    margin: 0;
    position: sticky;
    top: 20px;
    left: 0;
    border-radius: 10px;
}

.vertical_products_menu .title {
    font-size: 20px;
}

.vertical_products_menu ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.vertical_products_menu ul li {
    padding: 10px 0 0;
}

.vertical_products_menu ul li:first-child {
    padding: 0;
}

.vertical_products_menu ul li a {
    width: 100%;
    max-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
    font-weight: 500;
    font-size: 14px;
    color: #050d18;
    line-height: 18px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    background: #fff url("../images/bg.png");
    transition: all 0.3s;
    border-radius: 5px;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
}

.vertical_products_menu ul li a:hover {
    color: #bfc0c3;
}

.vertical_products_menu ul li a .image {
    display: block;
    padding-bottom: 5px;
}

.vertical_products_menu ul li a .image img {
    width: 100%;
    max-width: 50px;
    max-height: 50px;
    opacity: 1;
    transition: all 0.3s;
}

.vertical_products_menu ul li a:hover .image img {
    opacity: 0.5;
    filter: grayscale(1);
}

/*end article section*/

/*counts section*/

.counts_section {
    position: relative;
    padding: 100px 0 60px;
}

.count_box {
    height: 100%;
    position: relative;
}

.count_box figure {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 50px;
}

.count_box figure img {
    width: 50%;
    height: 50%;
}

.count_number {
    font-weight: bold;
    font-size: 32px;
    line-height: 36px;
    padding-bottom: 5px;
    animation: bounceImg 4s infinite ease-in-out;
    transition: all 0.3s;
}

.counts_section .container > .row div:nth-child(2) .count_box .count_number {
    animation-delay: 0.4s;
}

.counts_section .container > .row div:nth-child(3) .count_box .count_number {
    animation-delay: 0.8s;
}

.counts_section .container > .row div:nth-child(4) .count_box .count_number {
    animation-delay: 1.2s;
}

.count_box h5 {
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
}

/*end counts section*/

/* text section */

.text-section {
    padding: 0 0 70px 0;
}

.text-section figure {
    position: relative;
}

.text-section figure:after {
    content: "";
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: url(../images/image-bg.png) no-repeat 50%;
    background-size: 150% 150%;
}

/* end text section */

/* modal */
.modal-header {
    padding: 20px 0;
    border: none;
}

.modal-header h5 {
    font-weight: normal;
}

.modal-header .close {
    width: 20px;
    height: 20px;
    margin: 0;
    position: relative;
    padding: 0;
    transition: all 0.3s;
}

.modal-header .close:hover {
    transform: scale(1.1);
}

.modal-header .close:before,
.modal-header .close:after {
    content: "";
    width: 1px;
    height: 20px;
    display: block;
    margin-top: -10px;
    position: absolute;
    top: 50%;
    left: 50%;
    background: #050d18;
    transform: rotate(-45deg);
}

.modal-header .close:after {
    transform: rotate(45deg);
}

.modal-header .close span {
    display: none;
}

/* end modal */

/*footer section*/

.footer_spacer {
    height: 80px;
}

.footer_section {
    padding: 20px 0;
    margin-top: -80px;
    position: relative;
    z-index: 100;
    background: #F3F6FB;
}

.footer_logo,
.footer_logo img {
    width: 156px;
    display: inline-block;
}

.footer_socials a {
    width: 24px;
    height: 24px;
    display: inline-block;
    margin: 0 8px;
    border-radius: 12px;
    transition: all 0.3s;
}

.footer_socials a:first-child {
    margin-left: 0;
}

.footer_socials a:hover {
    transform: scale(1.2);
}

.footer_socials a.icon_fb {
    background: url("../images/footer-social-icon-1.svg") no-repeat 50% 50%;
    background-size: cover;
}

.footer_socials a.icon_inst {
    background: url("../images/footer-social-icon-2.svg") no-repeat 50% 50%;
    background-size: cover;
}

.copyrights {
    font-size: 12px;
}

/*end footer section*/

/*404 page*/

.page-404 {
    padding: 200px 0 100px;
    position: relative;
}

.notfound {
    width: 560px;
    display: block;
    padding-left: 160px;
    padding-top: 3px;
    margin: auto;
    position: relative;
}

.notfound .notfound-404 {
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    width: 140px;
    height: 140px;
    background-image: url("../images/emoji.png");
    background-size: cover;
}

.notfound .notfound-404:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(2.4);
    -ms-transform: scale(2.4);
    transform: scale(2.4);
    border-radius: 50%;
    background: #f0f4f9;
    z-index: -1;
}

.notfound h2 {
    font-size: 65px;
    font-weight: 700;
    padding: 10px 0 13px;
    color: #292c2f;
    text-transform: uppercase;
}

.notfound h3 {
    font-weight: 600;
    font-size: 21px;
    padding-bottom: 10px;
    margin: 0;
    text-transform: uppercase;
    color: #292c2f;
}

.notfound p {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #999fa5;
}

.notfound .button {
    font-weight: 700;
    padding: 17px 40px;
    line-height: 20px;
}

/*end 404 page*/


/* contact section */

.contacts-section {
    font-size: 16px;
    line-height: 26px;
}

.contacts-section .map-block .container {
    position: relative;
}

.contacts-section .contact-info {
    width: 300px;
    padding: 30px 20px;
    position: absolute;
    top: calc(50% + 200px);
    right: 0;
    z-index: 1;
    transform: translateY(-50%);
    background: #fff;
    border-radius: 5px;
}

.contacts-section .contact-info  p {
    padding-bottom: 10px;
}

.contacts-section .contact-info p:last-child {
    padding: 0;
}

.contacts-section .title {
    font-family: 'Akzidenz-Grotesk Pro Ext', sans-serif;
    font-weight: bold;
    font-size: 32px;
    text-transform: uppercase;
    line-height: 42px;
    padding: 0 0 10px;
}

.contacts-section .title + p {
    font-size: 18px;
    font-weight: bold;
}

.contacts-section .map {
    margin: 10px 0 50px;
}

/* end contact section */

/* calc styles */

/* enter section */

.enter_section {
    font-size: 16px;
    padding: 60px 0;
    position: relative;
    background: #F3F6FB;
}

.btn:focus {
    box-shadow: none !important;
}

.enter_section .btn {
    height: 60px;
    font-size: 18px;
    line-height: 60px;
    border-radius: 8px;
}

.enter_section .card_dark .custom-control-label::before {
    top: -3px
}

.enter_section .card_dark .custom-control-label::after {
    top: 4px;
}

.enter_section .text-white,
.enter_section .text-dark {
    color: #1E2C28 !important;
}

.enter_section h5 {
    font-family: 'Akzidenz-Grotesk Pro', sans-serif;
    font-size: 15px;
    color: #808080;
    line-height: 19px;
    padding-bottom: 30px;
}

.enter_section .custom-control .custom-control-label {
    padding-left: 15px !important;
}

.enter_section .card_dark .custom-checkbox .custom-control-label::before,
.enter_section .card_dark .custom-radio .custom-control-label::before {
    width: 24px;
    height: 24px;
    border: none;
    background: #ECEFF4;
}

.enter_section .card_dark .custom-checkbox .custom-control-label::after,
.enter_section .card_dark .custom-radio .custom-control-label::after {
    width: 12px;
    height: 8px;
    top: 5px; left: -18px;
    background: none;
}

.enter_section .card_dark .custom-control-input:checked~.custom-control-label::before {
    background: #37CE63;
}

.enter_section .card_dark .custom-checkbox .custom-control-input:checked~.custom-control-label::after {
    background: url(../images/checkbox-arrow.svg) no-repeat 50%;
}

.enter_section .card_dark .custom-radio .custom-control-input:checked~.custom-control-label::after {
    width: 12px;
    height: 12px;
    top: 3px;
    background: #fff;
    border-radius: 6px;
}

.card_dark_blured_title {
    font-family: 'Akzidenz-Grotesk Pro Ext', sans-serif;
    font-weight: bold;
    font-size: 24px;
    line-height: 31px;
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 25px;
}

.card_dark {
    padding: 60px 50px 70px;
    position: relative;
    background: #fff;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.card_dark.active {
    padding: 60px 50px 70px;
    border: none;
    position: relative;
    background: linear-gradient(270deg, #2CCD5A 0%, #6AECC2 100%);
}

.card_dark.active::after {
    display: none;
}

.title_progress {
    border-radius: 3px;
}

.title_progress.active {
    color: #fff;
    background: linear-gradient(270deg, #2CCD5A 0%, #6AECC2 100%);
}

.card_dark .form_inner {
    position: relative;
    z-index: 1;
}

.card_dark .form-check .form-check-label {
    cursor: pointer;
}

.card_dark .custom-control-label::before {
    width: 20px;
    height: 20px;
    top: 0;
}

.card_dark .custom-control-label::after {
    width: 10px;
    height: 10px;
    top: 5px;
    left: -19px;
    background: #fff;
    border-radius: 5px;
}

.card_dark .custom-checkbox .custom-control-label::after {
    border-radius: 2px;
}

.card_dark input:disabled {
    background: rgba(0, 0, 0, 0.35) !important;
}

.card_dark input:disabled + label {
    color: #e6e6e6;
}

/* end enter section */

.error_top_text {
    position: fixed;
    display: block;
    top: -110px;
    right: 30px;
    z-index: 104400;
    display: block;
    box-shadow: 6px 6px 13px -3px #000;
    transition: all 0.5s ease-in-out;
}

.error_top_text.badge_shake {
    top: 30px;
    transition: all 0.5s ease-in-out;
}

/* form elements */

.select2,
.card_dark select,
.card_dark textarea,
.card_dark input[type="tel"],
.card_dark input[type="text"],
.card_dark input[type="email"],
.card_dark input[type="password"],
.card_dark input[type="number"],
.form-control {
    width: 100%;
    height: 60px;
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    color: #333;
    outline: none;
    padding-right: 20px;
    padding-left: 20px;
    margin: 0;
    position: relative;
    z-index: 1;
    border: none;
    background: none;
}

.card_dark select:focus,
.card_dark textarea:focus,
.card_dark input[type="tel"]:focus,
.card_dark input[type="text"]:focus,
.card_dark input[type="email"]:focus,
.card_dark input[type="password"]:focus,
.card_dark input[type="number"]:focus {
    margin: 0;
    box-shadow: none;
}

.card_dark input:-webkit-autofill,
.card_dark input:-webkit-autofill:hover,
.card_dark input:-webkit-autofill:focus,
.card_dark input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
}

.card_dark .form-group input:-webkit-autofill:not(:placeholder-shown) ~ label {
    padding-top: calc(var(--input-padding-y) / 3);
    padding-bottom: calc(var(--input-padding-y) / 3);
    font-size: 12px;
    color: #aeaeae;
}

.form-group label {
    font-size: 18px;
    color: #9d9d9d;
    line-height: 34px;
}

.card_dark .form-group label {
    padding-left: 20px;
    padding-right: 20px;
}

.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:not(:placeholder-shown) ~ label,
.form-group select:not(:placeholder-shown) ~ label {
    line-height: 26px;
}

.card_dark .input-group .form-group {
    border-radius: 5px 0 0 5px;
}

.card_dark .input-group .input-group-append {
    max-width: 200px;
}

.card_dark .input-group .btn {
    font-size: 14px;
}

.card_dark .form-group {
    background: #ECEFF4;
    border-radius: 8px;
}

.select2-container--bootstrap .select2-selection--single {
    height: 60px;
    padding: 26px 0 0 !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding: 0;
}

.select2-container--bootstrap .select2-search--dropdown .select2-search__field {
    padding: 25px 33px 0 33px;
    border: none !important;
}

.select2-results__options {
    max-height: 200px;
    overflow-y: scroll;
}

.select2-results__option {
    padding: 10px 33px;
}

.select2-container--bootstrap .select2-dropdown {
    margin-top: -60px !important;
}

.select2-container--bootstrap .select2-results__option--highlighted[aria-selected] {
    background: #019edf;
}

.custom-control-label::before {
    /* border: none; */
}

.suggestions-suggestions {
    width: calc(100% - 66px);
    color: #444;
    border-radius: 5px;
}

.suggestions-suggestions div {
    padding: 5px 33px;
    white-space: normal;
    cursor: pointer;
}

.suggestions-suggestions div:first-child {
    font-size: 10px;
    cursor: default;
}

/* end form elements */

#wait_new,
#wait_kurs,
#wait_zno,
#wait {
    position: fixed;
    top: 30%;
    text-align: center;
    width: 100%;
    color: #fff;
    z-index: 9999;
    display: none;
}

#overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.55;
    z-index: 2;
    background-color: #000;
    display: none;
    transition: opacity ease 0.3s;
    z-index: 9999;
}
.main_overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background-color: #000;
    transition: opacity ease 0.3s;
    z-index: 9999;
}
.main_overlay .fa_block {
    position: fixed;
    top: 50%;
    text-align: center;
    width: 100%;
    color: #fff;
    z-index: 9999;
}

#overlay_error {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.55;
    z-index: 2;
    background-color: #000;
    display: none;
    transition: opacity ease 0.3s;
    z-index: 9999;
}

/* form result */

.form_results .result_img {
    max-width: 300px;
}

.form_results .result_img img {
    max-width: 100%;
    border-radius: 5px;
}

.result_row {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgb(0 0 0 / 10%)
}

.form_results .btn {
    height: 50px;
    font-size: 16px;
    color: #fff;
    border: none;
    line-height: 38px;
    background: linear-gradient(270deg, #2CCD5A 0%, #6AECC2 50%, #2CCD5A 100%);
    background-size: 200% 100%;
    animation: btnShake 7s infinite ease-in-out;
    animation-delay: 3s;
    transition: all 0.3s;
}

.form_results .btn:hover {
    color: #fff;
    background-position: 100% 0;
}

.form_results .btn:after {
    content: "";
    width: 200px;
    height: 200px;
    display: block;
    position: absolute;
    bottom: -100px;
    left: -200px;
    background: rgba(255, 255, 255, 0.6);
    animation: btnShine 7s infinite ease-in-out;
    animation-delay: 3s;
    border-radius: 50%;
}

@keyframes btnShine {
    0% {
        transform: scale(0, 0);
    }
    15% {
        transform: scale(5, 5);
        opacity: 0;
    }
    100% {
        transform: scale(5, 5);
        opacity: 0;
    }
}

@keyframes btnShaker {
    0% {
        transform: translateX(0) scale(1);
    }
    5% {
        transform: translateX(0) scale(1);
    }
    6% {
        transform: translateX(0) scale(1.005);
    }
    7% {
        transform: translateX(0) scale(1.01);
    }
    8% {
        transform: translateX(0) scale(1.02);
    }
    9% {
        transform: translateX(0) scale(1.01);
    }
    10% {
        transform: translateX(0) scale(1.005);
    }
    11% {
        transform: translateX(0) scale(1);
    }
    100% {
        transform: translateX(0) scale(1);
    }
}

.sub_title,
.place_for_shtraf_no,
.place_for_shtraf_yes {
    font-size: 12px;
    color: #aeaeae;
}

.error_text {
    color: #e51515;
    font-size: 12px;
    line-height: 16px;
    padding: 0px;
}

.tariff {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
	line-height: 28px;
}

.result_title {
    font-weight: bold;
    font-size: 16px;
    color: #444;
    line-height: 24px;
}

/*preloader*/

@keyframes Scale {
    0% {
        transform: scale(1);
    }
    50%,
    75% {
        transform: scale(2.5);
    }
    78%,
    100% {
        opacity: 0;
    }
}

.preloader {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 11px;
}

.preloader_block .sub_title {
    width: 100%;
    font-size: 14px;
    color: #aeaeae;
    text-align: center;
    padding-top: 0;
    position: relative;
    top: 0;
}

.preloader_circle {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin: 0 11px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.preloader_circle:before {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 50%;
    opacity: 0.5;
    animation: Scale 2s infinite cubic-bezier(0, 0, 0.49, 1.02);
}

.preloader_circle:after {
    content: "";
    width: 15px;
    height: 15px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    box-shadow: inset -1px -1px 2px rgba(166, 166, 166, 0.5);
}

.preloader_circle {
    background-color: #ddd;
}

.preloader_circle:before {
    background-color: #afafaf;
    animation-delay: 200ms;
}

.preloader_circle-1:before {
    animation-delay: 200ms;
}

.preloader_circle-2:before {
    animation-delay: 400ms;
}

.preloader_circle-3:before {
    animation-delay: 600ms;
}

.preloader_circle-4:before {
    animation-delay: 800ms;
}

.preloader_circle-5:before {
    animation-delay: 1000ms;
}

/*end preloader*/

/*colors of insurance*/

.bg-alfa {
    background: #e51515;
    color: #fff;
}
.border-alfa {
    border: 1px solid #e51515;
}
.text-alfa {
    color: #e51515;
}

.bg-osk {
    background: #003f72;
    color: #fff;
}
.border-osk {
    border: 1px solid #003f72;
}
.text-osk {
    color: #003f72;
}

.bg-ingos {
    background: #0a3697;
    color: #fff;
}
.border-ingos {
    border: 1px solid #0a3697;
}
.text-ingos {
    color: #0a3697;
}

.bg-maks {
    background: #004a87;
    color: #fff;
}
.border-maks {
    border: 1px solid #004a87;
}
.text-maks {
    color: #004a87;
}

.bg-renis {
    background: #6e0f6d;
    color: #fff;
}
.border-renis {
    border: 1px solid #6e0f6d;
}
.text-renis {
    color: #6e0f6d;
}

.bg-rgs {
    background: #990211;
    color: #fff;
}
.border-rgs {
    border: 1px solid #990211;
}
.text-rgs {
    color: #990211;
}

.bg-astro {
    background: #c7263c;
    color: #fff;
}
.border-astro {
    border: 1px solid #c7263c;
}
.text-astro {
    color: #c7263c;
}

.bg-tinkoff {
    background: #dfc900;
    color: #fff;
}
.border-tinkoff {
    border: 1px solid #dfc900;
}
.text-tinkoff {
    color: #dfc900;
}

.bg-soglasie {
    background: #ef801c;
    color: #fff;
}
.border-soglasie {
    border: 1px solid #ef801c;
}
.text-soglasie {
    color: #ef801c;
}

.bg-sv {
    background: #b42041;
    color: #fff;
}
.border-sv {
    border: 1px solid #b42041;
}
.text-sv {
    color: #b42041;
}

.bg-vsk {
    background: #006fba;
    color: #fff;
}
.border-vsk {
    border: 1px solid #006fba;
}
.text-vsk {
    color: #006fba;
}

.bg-reso {
    background: #086431;
    color: #fff;
}
.border-reso {
    border: 1px solid #086431;
}
.text-reso {
    color: #086431;
}

.bg-mafin {
    background: #ff014f;
    color: #fff;
}
.border-mafin {
    border: 1px solid #ff014f;
}
.text-mafin {
    color: #ff014f;
}

.bg-kapital {
    background: #b7001e;
    color: #fff;
}
.border-kapital {
    border: 1px solid #b7001e;
}
.text-kapital {
    color: #b7001e;
}

.bg-arsenal {
    background: #737576;
    color: #fff;
}
.border-arsenal {
    border: 1px solid #737576;
}
.text-arsenal {
    color: #737576;
}

.bg-gaide {
    background: #374f8f;
    color: #fff;
}
.border-gaide {
    border: 1px solid #374f8f;
}
.text-gaide {
    color: #374f8f;
}

.bg-sogaz {
    background: #232b6a;
    color: #fff;
}
.border-sogaz {
    border: 1px solid #232b6a;
}
.text-sogaz {
    color: #232b6a;
}

.bg-nasko {
    background: #858796;
    color: #fff;
}
.border-nasko {
    border: 1px solid #858796;
}
.text-nasko {
    color: #858796;
}

/*end colors of insurance*/

/* end form result */

/* old calcs */

.main-section #vzr_form {
    overflow: visible;
}

.main-section .kbm_form_block,
.main-section .vzr_main_block,
.main-section .dkp_form_block {
    border: none;
    padding: 40px 50px 30px 50px;
    position: relative;
    background: #fff;
    box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
    border-radius: 8px;
}

.main-section .dkp_form_block {
    margin: 0;
}

.main-section .dkp_inner_box {
    padding: 0;
}

.main-section .kbm_progresbar {
    padding: 0;
    box-shadow: none;
}

.main-section .kbm_form_block {
    overflow: unset;
    border-radius: 0;
}

.main-section .dkp_progresbar {
    padding: 0;
    margin: 0 0 20px;
    border: none;
    overflow: visible;
    box-shadow: none;
}

.main-section .kbm_progresbar .kbm_form_row,
.main-section .dkp_progresbar .dkp_form_row {
    flex-wrap: nowrap;
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
}

.main-section .kbm_progresbar .kbm_step,
.main-section .dkp_progresbar .dkp_step {
    width: 33%;
    max-width: 33%;
    font-weight: bold;
    font-size: 15px;
    line-height: 19px;
    text-align: center;
    text-transform: uppercase;
    padding: 18px 15px;
    color: #1E2C28;
    position: relative;
    border: none;
    border-radius: 0;
    background: #fff;
}

.main-section .dkp_progresbar .dkp_step {
    width: 25%;
    max-width: 25%;
}

.main-section .kbm_button_line .kbm_button,
.main-section .kbm_progresbar .kbm_step.active,
.main-section .dkp_progresbar .dkp_step.active {
    color: #fff;
    border: none;
    position: relative;
    background: linear-gradient(270deg, #2CCD5A 0%, #6AECC2 100%);
}

.main-section .kbm_form_block .kbm_title::after, 
.main-section .kbm_button_line .kbm_button::after,
.main-section .kbm_progresbar .kbm_step.active::after {
     display: none;
 }

 .main-section .vzr_result .vzr_main_block {
     padding: 30px 20px;
 }

 .main-section .main_inner_box.special {
     padding: 0;
 }

 .main-section .vzr_form_fieldset {
     box-shadow: none;
 }

 .main-section .kbm_form_block .kbm_title,
 .main-section .vzr_main_block .vzr_main_title {
    font-family: 'Akzidenz-Grotesk Pro Ext', sans-serif;
    font-weight: bold;
    color: #1E2C28;
    font-size: 24px;
    line-height: 31px;
    text-transform: uppercase;
    text-align: center;
    padding: 0 0 15px;
    background: none;
 }

 .main-section .vzr_main_block .vzr_main_title {
     padding-bottom: 30px;
 }

 .main-section .vzr_form_block .vzr_title,
 .main-section .vzr_result .vzr_main_block .vzr_main_title,
 .main-section .vzr_form_fieldset .vzr_form_fieldset_title,
 .main-section .dkp_form_block .dkp_title {
    font-family: 'Akzidenz-Grotesk Pro Ext', sans-serif;
    font-weight: bold;
    color: #1E2C28;
    font-size: 15px;
    line-height: 19px;
    text-align: left;
    text-transform: uppercase;
    padding: 0 0 15px;
    position: relative;
    top: 0; left: 0;
    background: none;
    box-shadow: none;
 }

 .main-section .vzr_result .vzr_form_fieldset {
     border: none !important;
     margin: 10px 0;
 }

 .main-section .vzr_result .vzr_form_fieldset_title {
     display: none;
 }

 .main-section .vzr_result .vzr_info_field img {
    margin-bottom: 0;
 }

 .main-section .vzr_form_fieldset {
     padding: 0;
     border: none;
 }

 .main-section .vzr_form_fieldset.zst_field .vzr_form_fieldset_title {
     font-family: 'Akzidenz-Grotesk Pro', sans-serif;
     font-weight: normal;
     font-size: 16px;
     text-transform: none;
 }

 .main-section .vzr_list {
     border: none;
     box-shadow: none;
 }

 .main-section .vzr_list li {
     padding: 15px 0 0;
     border: none;
 }

 .main-section .vzr_form_block {
     padding: 0;
     border: none;
     box-shadow: none;
 }

 .main-section .form_inner_box {
     padding: 0;
 }

 .main-section .main_inner_box {
    padding: 0;
}

 .main-section .kbm_animation_label .kbm_input_box .kbm_input,
 .main-section .animation_label .vzr_input_box .vzr_input,
 .main-section .dkp_animation_label .dkp_input_box .dkp_input {
    width: 100%;
    height: 60px;
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    color: #333;
    outline: none;
    padding: 15px 23px 0;
    margin: 0;
    position: relative;
    z-index: 1;
    border: none;
    background: none;
    box-shadow: none;
 }

 .main-section .vzr_input_addon {
     height: 60px;
     line-height: 60px;
     border: none;
     font-size: 18px !important;
    color: #9d9d9d;
 }

 .main-section .kbm_has_float_label label, 
 .main-section .kbm_has_float_label > span,
 .main-section .dkp_has_float_label label, 
 .main-section .dkp_has_float_label > span {
    font-size: 18px !important;
    color: #9d9d9d;
    line-height: 34px;
    border: 1px solid transparent;
    transition: all 0.1s ease-in-out;
    left: 20px;
    overflow: hidden;
    white-space: nowrap;
    z-index: unset;
 }
 
 .main-section .kbm_animation_label .kbm_input_box,
 .main-section .animation_label .vzr_input_box,
 .main-section .dkp_animation_label .dkp_input_box {
    background: #ECEFF4;
    border-radius: 8px;
 }

 .main-section .vzr_has_float_label label::after, 
 .main-section .vzr_has_float_label > span::after,
 .main-section .dkp_has_float_label label::after, 
 .main-section .dkp_has_float_label > span::after {
     display: none;
 }

 .main-section .kbm_has_float_label .kbm_input:placeholder-shown:not(:focus) + *,
 .main-section .dkp_has_float_label .dkp_input:placeholder-shown:not(:focus) + * {
    top: 50%;
    transform: translateY(-50%);
}

.main-section .kbm_animation_label .kbm_input_box .kbm_input:focus ~ span, 
.main-section .kbm_animation_label .kbm_input_box textarea:focus ~ span, 
.main-section .kbm_animation_label .kbm_input_box select:focus ~ span,
.main-section .kbm_has_float_label .kbm_input:not(:placeholder-shown) ~ span,
.main-section .kbm_has_float_label textarea:not(:placeholder-shown) ~ span,
.main-section .kbm_has_float_label select:not(:placeholder-shown) ~ span,
.main-section .dkp_animation_label .dkp_input_box .dkp_input:focus ~ span, 
.main-section .dkp_animation_label .dkp_input_box textarea:focus ~ span, 
.main-section .dkp_animation_label .dkp_input_box select:focus ~ span,
.main-section .dkp_has_float_label .dkp_input:not(:placeholder-shown) ~ span,
.main-section .dkp_has_float_label textarea:not(:placeholder-shown) ~ span,
.main-section .dkp_has_float_label select:not(:placeholder-shown) ~ span {
    font-size: 12px !important;
    color: #aeaeae;
}

.main-section .kbm_has_float_label label, 
.main-section .kbm_has_float_label > span,
.main-section .dkp_has_float_label label, 
.main-section .dkp_has_float_label > span {
    top: -2px;
}

.main-section .vzr_has_float_label label, 
.main-section .vzr_has_float_label > span {
    top: 10px;
    left: 25px;
}

.h_field {
    display: none;
}

.main-section .kbm_button_line .kbm_button, 
.main-section .kbm_button_line .kbm_button_green,
.main-section .kbm_button_line .kbm_button_red,
.main-section .vzr_button,
.main-section .vzr_button_green,
.main-section .vzr_button_red,
.main-section .vzr_button_yellow, 
.main-section .vzr_btn_simple,
.main-section .dkp_button_line a.dkp_button_green {
    height: 48px;
    font-family: 'Akzidenz-Grotesk Pro', sans-serif;
    font-weight: bold;
    font-size: 16px;
    color: #fff;
    line-height: 48px;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    cursor: pointer;
    padding: 0 50px;
    margin: 0;
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 8px;
    transition: all 0.3s;
}

.main-section .kbm_button_line .kbm_button_red,
.main-section .vzr_button_line .vzr_button_green,
.main-section .dkp_button_line a.dkp_button_green {
    width: 100%;
    background: linear-gradient(270deg, #2CCD5A 0%, #6AECC2 50%, #2CCD5A 100%);
    background-size: 200% 100%;
}

.main-section .kbm_button_line .kbm_button_red:hover,
.main-section .vzr_button_line .vzr_button_green:hover,
.main-section .dkp_button_line a.dkp_button_green:hover {
        background-position: 100% 0;
        box-shadow: none;
}

.main-section .vzr_button,
.main-section .vzr_button_yellow {
    background: #007bff;
}

.main-section .vzr_button:hover,
.main-section .vzr_button_yellow:hover {
    background: #0062cc;
}

.main-section .vzr_button_line {
    display: flex;
}

.main-section .vzr_button_line .vzr_button_green,
.main-section .dkp_button_line a.dkp_button_green {
    width: auto;
}

.main-section .vzr_button_red {
    background: #C7C7C7;
}

.main-section .vzr_button_red:hover {
    background: #868686;
}

.main-section .vzr_main_row {
    margin: 0 -9px;
}

.main-section .vzr_main_box_3 {
    max-width: 25%;
    flex: 0 0 25%;
    padding: 0 8px;
}

.main-section .vzr_main_box_9 {
    max-width: 75%;
    flex: 0 0 75%;
    padding: 0 8px;
}

.main-section .vzr_form_fieldset.zst_field .vzr_btn_simple {
    min-width: 60px;
    height: 60px;
    text-align: center;
    padding: 0;
    z-index: 1;
    border-radius: 0 8px 8px 0;
}

.main-section .vzr_form_fieldset.zst_field .vzr_btn_simple::after {
    line-height: 60px;
}

.main-section .vzr_form_fieldset.zst_field {
    padding: 10px 30px 0;
    box-shadow: 0 4px 4px rgb(0 0 0 / 7%);
}

.main-section .vzr_form_block {
    margin: 0;
}

.datepicker.datepicker-dropdown.dropdown-menu {
    padding: 15px;
    border: none;
    box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
}

.datepicker.datepicker-dropdown.dropdown-menu>div {
    display: block;
}

.datepicker.datepicker-dropdown.dropdown-menu table tr td, 
.datepicker.datepicker-dropdown.dropdown-menu table tr th {
    font-family: 'Akzidenz-Grotesk Pro', sans-serif;
}

.datepicker.datepicker-dropdown.dropdown-menu table tr td.active:active, 
.datepicker.datepicker-dropdown.dropdown-menu table tr td.active.highlighted:active,
.datepicker.datepicker-dropdown.dropdown-menu table tr td.active.active, 
.datepicker.datepicker-dropdown.dropdown-menu table tr td.active.highlighted.active, 
.open>.datepicker.datepicker-dropdown.dropdown-menu table tr td.active, 
.open>.datepicker.datepicker-dropdown.dropdown-menu table tr td.active.highlighted {
    text-shadow: none;
    background: linear-gradient(270deg, #2CCD5A 0%, #6AECC2 100%);
}

.card_dark.driver_card {
    border: none;
    box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
    border-radius: 8px;
}

.close_driver {
    width: 30px;
    height: 30px;
    position: absolute;
    top: -15px; right: -15px;
    background: #fff;
    border-radius: 15px;
    transition: all 0.3s;
}

.close_driver:hover {
    transform: scale(1.3);
}

.close_driver::before,
.close_driver::after {
    content: '';
    width: 2px;
    height: 15px;
    display: block;
    position: absolute;
    top: 50%; left: 50%;
    background: #333;
    transform: translate(-50%, -50%) rotate(45deg);
}

.close_driver::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.footer_docs_list {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
}

.footer_docs_list li {
    padding: 0 10px;
}

.footer_docs_list li a {
    width: max-content;
}

.footer_section .copyrights {
    color: #808080;
    line-height: 120%;
}

.footer_section .copyrights .phone {
    color: #808080;
    text-decoration: underline;
}

.footer_section .copyrights .phone:hover {
    color: #37CE63;
    text-decoration: none;
}

/* end old calcs */

@-moz-document url-prefix() {
    .card_dark {
        overflow: hidden;
    }
    .title_progress.card_dark::after {
        opacity: 0;
    }
    .card_dark::after {
        opacity: 0.85;
        background: url(../images/terminal/form_bg.png);
    }
    .card_dark .lead,
    .card_dark .card-img-top {
        position: relative;
        z-index: 1;
    }
}

@media screen and (max-width: 767px) {
    .enter_section .bg img {
        object-position: left;
    }
}

@media screen and (max-width: 640px) {
    .card_dark {
        padding: 40px 30px 50px;
    }

    .card_dark_blured_title {
        font-size: 30px;
        line-height: 40px;
        padding-bottom: 30px;
    }

    .btn {
        font-size: 14px;
    }
}



/* end calc styles */

.modal .form-group {
    background: #F3F6FB;
    border-radius: 8px;
}

.modal .form-group input,
.modal .form-group textarea {
    background: none;
    z-index: 1;
}




/*responsive style*/

/*tablet */

@media (max-width: 1279px) {

    .container,
    .container-lg, 
    .container-md, 
    .container-sm,
    .container-xl {
        max-width: 1140px;
    }

    .contact_box {
        padding-right: 20px;
    }

}

@media screen and (max-width: 1199px) {
    .container, 
    .container-lg, 
    .container-md, 
    .container-sm {
        max-width: 960px;
    }

    .header_contact_box .btn,
    .header_contact_box .btn.btn-outline-success {
        margin-left: 25px;
    }

    .top_banner_section .info {
        padding: 35px 0 55px;
    }

    .advantages_section {
        background: url(../images/advantages-section-bg.jpg) no-repeat calc(50% + 120px) 0;
        background-size: cover;
    }

    .advantages_section h2 {
        line-height: 32px;
        padding-bottom: 30px !important;
    }

    .advantages_section h4 br {
        display: none;
    }

    .advantage_box {
        padding: 0 !important;
    }

    .advantage_box h5 br {
        display: none;
    }

    .location_section .map_block .contact_info {
        right: calc(50% - 465px);
    }

    .contacts-section .map-block .contact-info {
        right: 0;
    }

    .contact_left_box {
        flex-direction: column;
    }

}

/*end tablet*/

/*tablet small*/

@media screen and (max-width: 991px) {
    .container, 
    .container-md, 
    .container-sm {
        max-width: 720px;
    }

    .header_contact_box .btn,
    .header_contact_box .btn.btn-outline-success {
        margin-right: 20px;
    }

    .contact_left_box {
        flex-direction: row;
    }

    .contact_box.item_1,
    .contact_box.item_2 {
        height: 24px;
        padding: 0;
        margin: 0 10px;
        background: none;
    }

    .contact_box.item_1 a,
    .contact_box.item_2 a {
        width: 24px;
        height: 24px;
        display: block;
        background: url(../images/phone-icon.svg) no-repeat 0 50%;
        background-size: 24px auto;
    }

    .contact_box.item_2 a {
        background: url(../images/mail-icon.svg) no-repeat 0 50%;
        background-size: 24px auto;
    }

    .contact_box.item_1 a:last-child {
        display: none;
    }

    .header_bottom-line .container {
        border: none;
        position: relative;
    }

    .header_contact_box .btn {
        margin: 0 30px 0 0;
    }

    .header_menu {
        width: 100%;
    }

    .header_menu .navbar {
        width: 100%;
        padding: 0;
    }

    .header_menu .navbar .dropdown-menu .dropdown-item {
        font-size: 14px;
        padding: 5px 30px;
    }

    .header_section .navbar-toggler {
        padding: 0;
    }

    .header_section .navbar-toggler:focus {
        outline: none;
    }

    .header_section .navbar-toggler span {
        height: 22px;
        position: relative;
        border-bottom: 3px solid #37CE63;
        border-top: 3px solid #37CE63;
    }

    .header_section .navbar-toggler span:after {
        content: "";
        width: 70%;
        height: 3px;
        display: block;
        position: absolute;
        top: 50%;
        right: 0;
        background: #37CE63;
        transform: translateY(-50%);
    }

    .header_section .navbar-collapse {
        width: auto;
        padding: 0;
        position: absolute;
        top: 100%;
        right: 15px;
        overflow: hidden;
        background: #fff;
        box-shadow: 0px 0px 16px rgb(0 0 0 / 10%);
        border-radius: 0 0 8px 8px;
    }

    .header_menu .navbar .nav-item:first-child .nav-link {
        padding-top: 10px;
        border-radius: 0;
    }

    .header_menu .navbar .nav-link {
        width: 100%;
        line-height: 30px;
        text-align: left;
        padding: 0 30px;
    }

    .header_menu .navbar .navbar-nav {
        padding: 10px 0;
    }

    .header_menu .navbar .navbar-nav .nav-item {
        padding: 5px 0;
    }

    .header_menu .navbar .nav-item:first-child .nav-link {
        padding-top: 0;
    }

    .header_menu .navbar .nav-link.active:before {
        display: none;
    }

    .header_menu .navbar .dropdown-menu {
        position: relative;
        top: 5px;
        margin: 0;
        border-radius: 0;
    }

    .top_banner_section .btn {
            margin-top: 10px !important;
    }

    .header_menu .navbar-expand-lg .navbar-nav .nav-item {
        margin: 0;
    }

    .contact_box a {
        width: 25px;
        height: 25px;
        padding: 0;
    }

    .contact_box a span {
        display: none;
    }

    .advantages_section {
        padding: 80px 0;
        margin: 0;
        background: none;
    }

    .advantages_section .left_side {
        color: #1E2C28;
        padding-top: 0 !important;
    }

    .advantage_box {
        padding-top: 30px !important;
    }

    .advantage_box .media-body {
        padding-top: 0 !important;
    }

    .contacts_section .row {
        align-items: flex-start !important;
        flex-direction: column-reverse;
    }

    .contacts_section .info_block {
        max-width: 500px;
        color: #1E2C28;
        padding-bottom: 30px;
    }

    .contacts_section .form_block {
        max-width: 500px;
    }

    .main-section .vzr_main_box_3,
    .main-section .vzr_main_box_9 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }

    .footer_docs_list {
        flex-direction: column;
    }

    .footer_docs_list li {
        margin: 0 0 5px;
    }
}

/*end tablet small*/

/*mobile*/

@media screen and (max-width: 767px) {
    .animated {
        /*CSS transitions*/
        -o-transition-property: none !important;
        -moz-transition-property: none !important;
        -ms-transition-property: none !important;
        -webkit-transition-property: none !important;
        transition-property: none !important;
        /*CSS transforms*/
        -o-transform: none !important;
        -moz-transform: none !important;
        -ms-transform: none !important;
        -webkit-transform: none !important;
        transform: none !important;
        /*CSS animations*/
        -webkit-animation: none !important;
        -moz-animation: none !important;
        -o-animation: none !important;
        -ms-animation: none !important;
        animation: none !important;
    }

    .contacts-section .contact-info {
        width: auto;
        padding: 0 0 25px;
        position: relative;
        top: 0; right: 0;
        transform: translateY(0);
    }

    .container, 
    .container-sm {
        max-width: 540px;
    }

    .logo_box {
        display: flex;
        justify-content: center;
    }

    .contact_left_box {
        width: 20%;
    }

    .header_contact_box .btn, 
    .header_contact_box .btn.btn-outline-success {
        margin: 0 20px 0 0;
    }

    .contact_box.item_1,
     .contact_box.item_2 {
        margin: 0 10px;
    }

    .header_contact_box .btn.btn-success {
        display: none;
    }

    .header_contact_box {
        padding: 15px;
        justify-content: center !important;
    }

    .product_box .card-body p {
        font-size: 16px;
        line-height: 21px;
    }

    .product_box .card-body p:last-child {
        padding-bottom: 0;
    }

    .top_banner_section figure img {
        display: none;
    }

    .top_banner_section {
        text-align: center;
    }

    .top_banner_section .info {
        max-width: none;
    }

    .top_banner_section .info h1 span {
        display: block;
        font-size: 20px;
    }

    .comment_box {
        padding: 50px 20px 35px;
    }

    .comment_box figure {
        margin-right: 20px;
    }

    .footer_section {
        text-align: center;
    }

    .footer_logo {
        margin-bottom: 15px;
    }

    .footer_socials {
        padding-bottom: 15px;
    }

    .copyrights {
        justify-content: center !important;
    }

    .main-section .kbm_progresbar .kbm_form_row {
        margin: 0;
        flex-direction: column;
    }

    .main-section .kbm_progresbar .kbm_step {
        width: 100%;
        max-width: 100%;
        margin: 0 0 15px;
    }

}

@media screen and (max-width: 575px) {

    .comment_box {
        text-align: center;
    }

    .comment_box .avatar_box {
        margin: 0 auto 20px;
    }

    .comments_section form .form-row {
        display: block;
    }
    
}

@media screen and (max-width: 459px) {
    .contact_left_box {
        width: 30%;
    }

    .contact_box.item_1, .contact_box.item_2 {
        margin: 0 5px;
    }

    .contact_box {
        padding-right: 15px;
    }

    .header_contact_box .btn {
        margin-right: 15px;
    }
}

/*end mobile*/

/*end responsive style*/
