* {
    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%;
    color: #333;
    line-height: 24px;
    padding: 0;
    margin: 0;
    position: relative;
    overflow-x: hidden !important;
    background: url("../images/new_images/top-site-bg.jpg") no-repeat 50% 0, url("../images/new_images/site-bg.png") repeat-y 50% 522px;
    background-size: 2600px auto, 2600px auto;
    -webkit-text-size-adjust: none;
}

header, nav, section, article, aside, figure, footer, main {
    display: block;
    padding: 0;
    margin: 0;
}

/*tags*/

a {
    color: #008BD2;
    text-decoration: none;

    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;

}

a:hover {
    color: #333;
    text-decoration: none;
}

p {
    padding: 0 0 15px 0;
    margin: 0;
}

ul, ol {
    padding: 0 0 20px 30px;
    margin: 0;
}

img {
    display: block;
    border: none;
}

/*end tags*/

/*titles*/
.head_line_title{
	font-size: 28px;
    line-height: 30px;
}

h1 {
    font-size: 38px;
    line-height: 46px;
    padding: 0 0 30px;
    margin: 0;
}

h1.small {
    font-weight: 600;
    font-size: 30px;
    line-height: 34px;
}

h2 {
    font-size: 34px;
    line-height: 42px;
    padding: 0 0 30px;
    margin: 0;
}

h3 {
    font-size: 28px;
    line-height: 36px;
    padding: 0 0 30px;
    margin: 0;
}

h3.small {
    font-size: 22px;
}

h4 {
    font-size: 24px;
    line-height: 28px;
    padding: 0 0 20px;
    margin: 0;
}

h5 {
    font-size: 20px;
    line-height: 24px;
    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;
}

select,
textarea,
input[type=tel],
input[type=text],
input[type=email],
input[type=password],
input[type=number] {
    width: 100%;
    height: 38px;
    display: block;
    font-size: 16px;
    color: #333;
    line-height: 36px;
    outline: none;
    padding: 0 15px;
    margin: 0;
    position: relative;
    z-index: 10;
    background: none;

    border-radius: 0;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;

}

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: #b5bbc0;
}

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: #b5bbc0;
}

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: #b5bbc0;
}

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: #b5bbc0;
}

select {
    color: #526271;
    padding: 0 15px;
}

button {
    outline: none;
}

textarea {
    height: 100px;
    resize: vertical;
}

.form-holder {
    padding: 0 0 5px;
}

.form-control {
    background: none;
}

.checkbox-label {
    cursor: pointer;
    position: relative;
    top: 4px;
}

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;
    border: 1px solid #ced4da !important;
    background: none;

    box-shadow: none !important;
    z-index: 1;

}

/* end form elements */

/*float label*/

.has-float-label {
    display: block;
    position: relative;
}

.has-float-label label:not(.custom-control-label), .has-float-label > span {
    position: absolute;
    top: -.5em;
    left: 12px;
    cursor: text;
    font-size: 75%;
    opacity: 1;
    -webkit-transition: all .2s;
    transition: all .2s;
    z-index: 3;
    line-height: 1;
    padding: 0 1px;
    color: #000;
}

.has-float-label label:not(.custom-control-label) {
    height: 15px;
    overflow: hidden;
    z-index: 10000;
}

.has-float-label label::after, .has-float-label > span::after {
    content: " ";
    display: block;
    position: absolute;
    background: white;
    height: 5px;
    margin: -3px 0 0;
    top: 50%;
    left: -.2em;
    right: -.2em;
    z-index: -1;
}

.has-float-label .form-control:placeholder-shown:not(:focus) + *::before {
    opacity: 0;
}

.has-float-label label:not(.custom-control-label)::before {
    content: '';
    height: 3px;
    width: 99%;
    display: block;
    position: absolute;
    bottom: 0; left: 0;
    background: #fff;
}

.has-float-label > .form-control:disabled+span::after,
.has-float-label > .form-control[readonly]+span::after {
    background: #e9ecef;
}

.has-float-label .form-control::-webkit-input-placeholder {
    opacity: 1;
    -webkit-transition: all .2s;
    transition: all .2s;
}

.has-float-label .form-control::-moz-placeholder {
    opacity: 1;
    transition: all .2s;
}

.has-float-label .form-control:-ms-input-placeholder {
    opacity: 1;
    transition: all .2s;
}

.has-float-label .form-control::placeholder {
    opacity: 1;
    -webkit-transition: all .2s;
    transition: all .2s;
}

.has-float-label .form-control:placeholder-shown:not(:focus)::-webkit-input-placeholder {
    opacity: 0;
}

.has-float-label .form-control:placeholder-shown:not(:focus)::-moz-placeholder {
    opacity: 0;
}

.has-float-label .form-control:placeholder-shown:not(:focus):-ms-input-placeholder {
    opacity: 0;
}

.has-float-label .form-control:placeholder-shown:not(:focus)::placeholder {
    opacity: 0;
}

.has-float-label .form-control:placeholder-shown:not(:focus) + * {
    font-size: 14px;
    opacity: .6;
    top: 0.8em;
    left: 12px;
    z-index: 1;
}

.modal-body.has-float-label .form-control:placeholder-shown:not(:focus) + *,
.modal-body.has-float-label label, .has-float-label > span {
    left: 24px;
}

.input-group .has-float-label {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-bottom: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.input-group .has-float-label .form-control {
    width: 100%;
    border-radius: 0.25rem;
}

.input-group .has-float-label:not(:last-child),
.input-group .has-float-label:not(:last-child) .form-control {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    border-right: 0;
}

.input-group .has-float-label:not(:first-child),
.input-group .has-float-label:not(:first-child) .form-control {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.has-float-label label.custom-control-label::after {
    width: 1rem;
    height: 1rem;
    margin: 0;
    top: 0.15rem; right: auto; left: -1.5rem;
    z-index: inherit;
    background: no-repeat 50% / 50% 50%;
}

.modal .has-float-label .custom-control {
    padding: 9px 0 0 0;
}

.modal .has-float-label .view .custom-control {
    padding: 0 10px 0 0;
}

.kasko-calc .input-group .has-float-label:not(:first-child),
.kasko-calc .input-group .has-float-label:not(:first-child) .form-control {
    border-radius: 0.25rem 0 0 0.25rem;
}

.modal-body.has-float-label .view.form-control:placeholder-shown:not(:focus) + *,
.modal-body.has-float-label .view label,
.has-float-label .view > span {
    left: 12px;
}

.has-float-label > span.select2 {
    width: 100% !important;
    position: inherit;
    top: 0; left: 0;
}

/*end float label*/

/*buttons*/

.btn {
    cursor: pointer;

    border-radius: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;

}

.btn-lg-custom {
    height: 54px;
    font-size: 20px;
    line-height: 54px;
    padding: 0 40px;
}

.btn-sm-custom {
    height: 32px;
    font-size: 14px;
    line-height: 32px;
    padding-top: 0;
    padding-bottom: 0;
}

.btn-primary-custom {
    color: #fff;
    border: none;

    background: linear-gradient(90deg, #008BD2 0%, #0bb7ff 50%, #008BD2 100%);
    background-size: 200% auto;

}

.btn-success-custom {
    color: #fff;
    border: none;

    background: linear-gradient(90deg, #0cb52b 0%, #6BF03C 50%, #0cb52b 100%);
    background-size: 200% auto;

}

.btn-warning-custom {
    color: #fff;
    border: none;

    background: linear-gradient(90deg, #e65c00 0%, #F9D423 50%, #e65c00 100%);
    background-size: 200% auto;

}

.btn-danger-custom {
    color: #fff;
    border: none;

    background: linear-gradient(90deg, #b31217 0%, #f92e28 50%, #b31217 100%);
    background-size: 200% auto;

}

.btn-info-custom {
    color: #fff;
    border: none;

    background: linear-gradient(90deg, #757F9A 0%, #D7DDE8 50%, #757F9A 100%);
    background-size: 200% auto;

}

.btn-primary-custom:hover,
.btn-success-custom:hover,
.btn-warning-custom:hover,
.btn-danger-custom:hover,
.btn-info-custom:hover,
.btn-success-custom:hover {
    color: #fff;
    background-position: 100% 0;
}

.btn:focus {
    box-shadow: none;
}

.btn-outline-primary-custom {
    color: #008BD2;
    border: 1px solid #008BD2;
}

.btn-outline-primary-custom:hover {
    color: #fff;
    border-color: transparent;

    background: linear-gradient(90deg, #008BD2 0%, #0bb7ff 50%, #008BD2 100%);
    background-size: 200% auto;
    background-position: 100% 0;

}

.btn-outline-warning-custom {
    color: #e65c00;
    border: 1px solid #e65c00;
}

.btn-outline-warning-custom:hover {
    color: #fff;
    border-color: transparent;

    background: linear-gradient(90deg, #e65c00 0%, #F9D423 50%, #e65c00 100%);
    background-size: 200% auto;
    background-position: 100% 0;

}

form a:not([href]):not([tabindex]) {
    color: #fff;
}

/*end buttons*/

/*carousels*/

.owl-carousel {
    position: relative;
}

.owl-carousel .owl-wrapper {
    position: relative;
}

.owl-carousel .owl-wrapper-outer {
    position: relative;
    overflow: hidden;
}

.owl-carousel .owl-wrapper-outer .owl-wrapper:after,
.owl-carousel .owl-wrapper-outer .owl-wrapper:before {
    display: table;
    line-height: 0;
    content: '';
}

.owl-carousel .owl-wrapper-outer .owl-wrapper:after {
    clear: both;
}

.owl-carousel .owl-wrapper-outer .owl-wrapper .owl-item {
    text-align: center;
    float: left;
}

.owl-carousel .owl-controls {
    width: 70px;
    position: absolute;
    top: -65px; right: 0;
}

.owl-carousel .owl-controls .owl-pagination {
    text-align: center;
    padding: 15px 0 0 0;
}

.owl-carousel .owl-controls .owl-pagination .owl-page {
    width: 22px;
    height: 22px;
    display: inline-block;
    cursor: pointer;
    padding: 4px;
    margin: 0 7px;
    position: relative;
    border: 2px solid #D4E8EF;

    border-radius: 22px;

}

.owl-carousel .owl-controls .owl-pagination .owl-page span {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    background: #D4E8EF;

    border-radius: 20px;

}

.owl-carousel .owl-controls .owl-pagination .owl-page.active {
    border-color: #d73975;
}

.owl-carousel .owl-controls .owl-pagination .owl-page.active span {
    background: #d73975;
}

.owl-carousel .owl-buttons {
    width: 100%;
    height: 40px;
    position: absolute;
    top: 50%; left: 0;
    transform: translateY(-50%);
}

.owl-carousel .owl-buttons div {
    width: 30px;
    height: 30px;
    cursor: pointer;
    position: absolute;

    -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.01);
    -moz-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.01);
    -o-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.01);
    box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.03);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    border-radius: 20px;

}

.owl-carousel .owl-buttons div:hover {
    width: 40px;
    height: 40px;

    -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.05);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.05);

}

.owl-carousel .owl-buttons .owl-prev {
    left: 0;
    background: url("/images/new_images/owl_prev_btn.png") no-repeat;
    background-size: 100% auto;
}

.owl-carousel .owl-buttons div.owl-prev:hover {
    margin: -5px 0 0 -5px;
}

.owl-carousel .owl-buttons .owl-next {
    right: 0;
    background: url("/images/new_images/owl_next_btn.png") no-repeat;
    background-size: 100% auto;
}

.owl-carousel .owl-buttons div.owl-next:hover {
    margin: -5px -5px 0 0;
}

/*end carousels*/

/*global class*/

.clear {
    clear: both;
}

.wrapper {
    padding: 0 0 50px;
}

/*global class*/

/*header section*/

.header-section {
    /* padding-bottom: 60px; */
}

.top-header-line {
    padding: 20px 0;
}

.logo img {
    width: 200px;
}

.header-phone-link {
    display: inline-block;
    font-size: 20px;
    color: #333;
    line-height: 20px;
    padding: 0 0 0 30px;
    margin: 0 15px 0 0;
    background: url("../images/new_images/phone-icon.svg") no-repeat 0 0;
    
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    
}

.header-phone-link:hover {
    padding: 7px 0 0 30px;
    margin: -7px 15px 0 0;
}


.header-social.icon-1 {
    width: 26px;
    height: 16px;
    display: inline-block;
    margin: 0 15px 0 0;
    background: url("../images/new_images/social-1.svg") no-repeat;
    background-size: 100% auto;
}

.header-social.icon-2 {
    width: 18px;
    height: 16px;
    display: inline-block;
    margin: 0 15px 0 0;
    background: url("../images/new_images/social-2.svg") no-repeat;
}

.header-social.icon-1,
.header-social.icon-2,
.header-mail-link {

    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;

}

.header-social.icon-1:hover,
.header-social.icon-2:hover {
    height: 23px;
}

.header-mail-link:hover {
    height: 27px;
}

.header-social.icon-1:hover,
.header-social.icon-2:hover,
.header-mail-link:hover {
    margin-top: -7px;
}

.header-mail-link {
    width: 20px;
    height: 20px;
    display: inline-block;
    margin: 0 20px 0 0;
    background: url("../images/new_images/mail-icon.svg") no-repeat;
    background-size: 100% auto;
}

.header-registration-link {
    height: 24px;
    display: inline-block;
    font-size: 12px;
    color: #333;
    line-height: 24px;

    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;

}

.header-registration-link:hover {
    color: #008BD2;
}

/*header menu line*/

.header-menu-line {
    padding: 15px 0;

    background: linear-gradient(270deg, #008BD2 0%, #2878A2 50%, #46B4EB 89.27%, #0B9AE2 98.96%);
    -webkit-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
    -o-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);

}
.main-menu-line {
    background: linear-gradient(270deg, #008BD2 0%, #2878A2 50%, #46B4EB 89.27%, #0B9AE2 98.96%);
    -webkit-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
    -o-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);

}

.header-menu-line .navbar-nav .nav-item {
    line-height: 20px;
    padding: 0 10px;
    border-left: 1px solid rgba(255,255,255,0.7);
    position: relative;
}

.header-menu-line .navbar-nav .nav-item:first-child {
    padding-left: 0;
    border: none;
}

.header-menu-line .navbar-nav .nav-item .nav-link {
    display: inline-block;
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    padding: 0 15px 0 0;
    position: relative;

    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
    -moz-text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
    -o-text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);

}

.header-menu-line .navbar-nav .nav-item .nav-link:hover {
    color: #1a3d59;
    text-shadow: none;
}

.header-menu-line .navbar-nav .nav-item .nav-link span.special {
    display: none;
}

.header-menu-line .navbar-nav .nav-item .nav-link .ripple-container {
    display: none !important;
}

.header-menu-line .navbar-nav .nav-item .dropdown-menu {
    font-size: 14px;
    line-height: 20px;
    padding: 5px 0;
    margin: 5px 0 0 12px;
    border: none;

    border-radius: 0;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);

}

.header-menu-line .navbar-nav .nav-item .dropdown-menu:after {
    display: inline-block;
    vertical-align: .255em;
    content: "";
    border-top: 0;
    border-right: .4em solid transparent;
    border-bottom: .6em solid;
    border-left: .4em solid transparent;
    color: #fff;
    position: absolute;
    top: -7px; left: 20px;
}

.header-menu-line .navbar-nav .nav-item .dropdown-menu .dropdown-item {
    padding: 5px 20px;
}

.dropdown-toggle::before,
.dropdown-toggle::after {
    content: '';
    height: 8px;
    width: 1px;
    display: block;
    border: none;
    position: absolute;
    top: 6px; right: 8px;
    background: #fff;

    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);

}

.dropdown-toggle::after {
    right: 3px;

    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
    -o-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);

}

.header-menu-line .navbar-nav .nav-item.show .dropdown-toggle::before {

    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);

}

.header-menu-line .navbar-nav .nav-item.show .dropdown-toggle::after {

    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);

}

/*end header menu line*/

/*end header section*/

/*main carousel section*/

.main-carousel-section {
    margin: -40px 0 47px;
    border-bottom: 1px solid #F2F2F2;
}

.main-carousel-section .carousel-item {
    font-size: 16px;
    color: #000;
    line-height: 24px;
}

.main-carousel-section .carousel-item h2 {
    font-weight: 500;
    font-size: 40px;
    color: #333;
    text-transform: uppercase;
    line-height: 42px;
    padding: 0 0 23px;
}

.main-carousel-section .carousel-item figure img {
    margin: 20px 0 -1px;
}

.main-carousel-section .carousel-item .btn {
    padding-left: 70px;
    padding-right: 70px;
    margin: 13px 0 0;
}

.carousel-control-prev span,
.carousel-control-next span {
    height: 50px;
    width: 50px;
    position: absolute;
}

.carousel-control-prev span {
    right: 0;
    background: url("../images/new_images/main-carousel-left-btn.svg") no-repeat;
}

.carousel-control-next span {
    left: 0;
    background: url("../images/new_images/main-carousel-right-btn.svg") no-repeat;
}

.carousel-control-prev span.sr-only,
.carousel-control-next span.sr-only {
    display: none;
}

/*end main carousel section*/

/*calculator info section*/

.calculator-info-section {

}

.calculator-info-section .row.m-0 {
    margin: 1px 0 0 1px !important;
}

.calculator-info-link {
    display: block;
    /* font-size: 12px; */
    color: #000;
    line-height: 18px;
    padding: 20px 10px 20px 65px;
    margin: -1px 0 0 -1px;
    border: 1px solid #e8e8e8;
    position: relative;

    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;

}
.calculator-info-link.active {
    background: #e8fafe;
}

.calculator-info-link:after {
    content: '';
    width: 8px;
    height: 15px;
    display: block;
    margin: -7px 0 0;
    position: absolute;
    top: 50%; right: 10px;
    background: url("../images/new_images/next-arrow.svg") no-repeat;

    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;

}

.calculator-info-link:before {
    content: '';
    width: 50px;
    height: 38px;
    display: block;
    position: absolute;
    top: 50%; left: 8px;

    transform: translate(0, -50%);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;

}

.calculator-info-link.item-1:before {
    background: url("../images/new_images/calculator-info-link-icon-1.svg") no-repeat;
}

.calculator-info-link.item-2:before {
    background: url("../images/new_images/calculator-info-link-icon-2.svg") no-repeat;
}

.calculator-info-link.item-3:before {
    background: url("../images/new_images/calculator-info-link-icon-3.svg") no-repeat;
}

.calculator-info-link.item-4:before {
    background: url("../images/new_images/calculator-info-link-icon-4.svg") no-repeat;
}

.calculator-info-link.item-5:before {
    background: url("../images/new_images/calculator-info-link-icon-5.svg") no-repeat;
}

.calculator-info-link.item-6:before {
    background: url("../images/new_images/calculator-info-link-icon-6.svg") no-repeat;
}

.calculator-info-link.item-7:before {
    background: url("../images/new_images/calculator-info-link-icon-7.svg") no-repeat;
}

.calculator-info-link.item-8:before {
    background: url("../images/new_images/calculator-info-link-icon-8.svg") no-repeat;
}

.calculator-info-link:hover {

    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);

}

.calculator-info-link:hover:before {

    -webkit-transform: translate(-3px, -20px) rotate(-15deg);
    transform: translate(-3px, -20px) rotate(-15deg);

}

.calculator-info-link:hover:after {


    -ms-transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);

}

/*end calculator info section*/

/*counter section*/

.counter-section {
    font-weight: 500;
    font-size: 13px;
    color: #fff;
    text-align: center;
    line-height: 24px;
    padding: 21px 0 23px;

    background: linear-gradient(270deg, #55BC68 0.01%, #23AEF5 60.42%, #008BD2 100%);
    -webkit-text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
    -moz-text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
    -o-text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);

}

.counter-section b {
    font-weight: 500;
    font-size: 26px;
}

/*end counter section*/

/*agent section*/

.agent-section {
    padding: 57px 0 60px;
}

.agent-section .card {
    color: #000;
    padding: 130px 0 0;
    border: none;
    background: none;
}

.agent-section .card img {
    width: 160px;
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
}

.agent-section .card.item-1 img {
    top: 13px;
}

.agent-section .card.item-2 img {
    top: 25px;
}

.agent-section .card.item-3 img {
    top: 15px;
}

.agent-section .card.item-4 img {
    top: 0;
}

.agent-section .card.item-5 img {
    top: 18px;
}

.agent-section .card.item-6 img {
    top: -8px;
}

.agent-section .card h5 {
    font-weight: bold;
    font-size: 18px;
    padding: 0 0 10px;
}

.agent-section .btn {
    padding-right: 30px;
    padding-left: 30px;
}

/*end agent section*/

/*partner section*/

.partner-section {
    padding: 37px 0 50px;
    margin: 0 0 60px;
    background: url("../images/new_images/partner-section-bg.jpg") no-repeat 50% 0;
    background-size: 2600px auto;
}

.partner-carousel {
    margin: 0 -25px 0 -25px;
}

.partner-section h2 {
    padding: 0 0 15px;
}

.partner-section h2+p {
    padding: 0 0 35px 2px;
}

.partner-section .slide {
    max-width: 170px;
    display: inline-block;
    background: #fff;

    -webkit-box-shadow: 0 0 3px rgba(0,0,0,0.05);
    -moz-box-shadow: 0 0 3px rgba(0,0,0,0.05);
    -o-box-shadow: 0 0 3px rgba(0,0,0,0.05);
    box-shadow: 0 0 3px rgba(0,0,0,0.05);

}

.partner-section .slide img {
    width: 100%;
}

.partner-section .owl-carousel .owl-controls {
    right: 30px;
}

/*end partner section*/

/*news section*/

.news-section h3 {
    font-weight: 500;
    font-size: 26px;
    line-height: 30px;
    padding: 0 0 40px;
}

.news-section .card,
.card-white {
    height: 100%;
    text-align: center;
    padding: 5px;
    border: none;

    border-radius: 0;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;

}

.news-section .card:hover,
.card-white:hover {

    -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
    -moz-box-shadow:0 0 12px rgba(0, 0, 0, 0.15);
    -o-box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);

}

.news-section .card a,
.card-white a {
    display: block;
}

.news-section .card a img,
.card-white a img {
    width: 100%;

    border-radius: 0;

}

.news-section .card .card-body,
.card-white .card-body {
    padding-left: 5px;
    padding-right: 5px;
}

.news-section .card .card-body .card-title,
.card-white .card-body .card-title {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    padding: 0 0 10px;
    margin: 0;
}

.news-section .card .card-body .card-title a,
.card-white .card-body .card-title a {
    display: inline;
    color: #000;
}

.news-section .card .card-body .card-text,
.card-white .card-body .card-text {
    font-size: 12px;
    line-height: 16px;
}

.news-section .card .card-body p:last-child,
.card-white .card-body p:last-child {
    padding: 0;
}

/*end news section*/

.white-block {
    padding: 20px;
    background: #fff;

    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;

}

.white-block:hover {

    -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
    -o-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);

}

.news-box h4 {
    font-size: 22px;
    line-height: 26px;
}

.news-article p:last-child {
    padding: 0;
}

.pagination {
    font-size: 15px;
    padding: 20px 0 40px;
}

.pagination li {
    padding: 0 10px 0 0;
}

.pagination li a {
    min-width: 34px;
    height: 34px;
    display: inline-block;
    line-height: 30px;
    text-align: center;
    padding: 0 10px;
    border: 1px solid #008BD2;

    border-radius: 20px;

}

.pagination li a:hover {
    color: #555;
    border-color: #555;

    -webkit-box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.2);
    -o-box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.2);
    box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.2);

}

.pagination li.active a {
    color: #555;
    border-color: #555;
    opacity: 0.2;
    cursor: default;
}

.news_date {
    font-weight: bold;
    font-size: 16px;
    line-height: 22px;
    padding: 0 0 10px;
}

.tab_links a {
    padding: 0 20px;
}

.w-100 {
    width: 100%;
}

.top-btn-line .btn {
    padding: 0 15px;
    margin: 0 0 10px;
}

/*steps section*/

.steps-section .card i {
    width: 90px;
    height: 75px;
    display: inline-block;
    margin: 0 0 15px;
}

.steps-section .card i.item-1 {
    background: url("../images/special-icon-1.svg") no-repeat 50% 50%;
    background-size: auto 100%;
}

.steps-section .card i.item-2 {
    background: url("../images/special-icon-2.svg") no-repeat 50% 50%;
    background-size: auto 100%;
}

.steps-section .card i.item-3 {
    background: url("../images/special-icon-3.svg") no-repeat 50% 50%;
    background-size: auto 100%;
}

.steps-section .card i.item-4 {
    background: url("../images/special-icon-4.svg") no-repeat 50% 50%;
    background-size: auto 120%;
}

.steps-section .card i.item-5 {
    background: url("../images/special-icon-5.svg") no-repeat 50% 50%;
}

/*end steps section*/

/*services*/

.services .card-white .card-header {
    border: none;
}

.services .card-white {
    font-size: 14px;
    line-height: 20px;
}

.services .card-white h5 {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.services .card-white p {
    color: #777;
}

.services .card-white i {
    width: 80px;
    height: 80px;
    display: inline-block;
}

.services .card-white i.item-1 {
    background: url('../images/icon-1.svg') no-repeat 50% 50%;
}

.services .card-white i.item-2 {
    background: url('../images/icon-2.svg') no-repeat 50% 50%;
}

.services .card-white i.item-3 {
    background: url('../images/icon-3.svg') no-repeat 50% 50%;
}

.services .card-white i.item-4 {
    background: url('../images/icon-4.svg') no-repeat 50% 50%;
}

.services .card-white i.item-5 {
    background: url('../images/icon-5.svg') no-repeat 50% 50%;
}

.services .card-white i.item-6 {
    background: url('../images/icon-6.svg') no-repeat 50% 50%;
}

.services .card-white i.item-7 {
    background: url('../images/icon-7.svg') no-repeat 50% 50%;
}

.services .card-white i.item-8 {
    background: url('../images/vzr.svg') no-repeat 50% 50%;
}

.services .card-white i.item-9 {
    background: url('../images/history.svg') no-repeat 50% 50%;
}

.services .card-white i.item-10 {
    background: url('../images/to.svg') no-repeat 50% 50%;
}

.socials a {
    width: 40px;
    height: 40px;
    display: inline-block;
    margin: 0 5px 0 0;
}

.socials .item-1 {
    background: url("../images/social-1-2x.png") no-repeat 50% 50%;
    background-size: 26px auto;
}

.socials .item-2 {
    background: url("../images/social-2-2x.png") no-repeat 50% 50%;
    background-size: 24px auto;
}

.socials .item-3 {
    width: 41px;
    height: 41px;
    background: url("../images/social-3-2x.png") no-repeat 50% 50%;
    background-size: 20px auto;
}

.socials .item-1:hover {
    background: url("../images/social-1-hover-2x.png") no-repeat 50% 50%;
    background-size: 100% auto;
}

.socials .item-2:hover {
    background: url("../images/social-2-hover-2x.png") no-repeat 50% 50%;
    background-size: 100% auto;
}

.socials .item-3:hover {
    background: url("../images/social-3-hover-2x.png") no-repeat 50% 50%;
    background-size: 100% auto;
}

.services .card-white .phone-number {
    font-size: 26px;
    font-weight: bold;
}

/*end services*/

.sidebar {
    font-size: 14px;
    line-height: 20px;
}

.preim_icon_1,
.preim_icon_2,
.preim_icon_3,
.statistic_icon_1,
.statistic_icon_2 {
    width: 80px;
    height: 80px;
    display: inline-block;
}

.preim_icon_1 {
    background: url("../images/preim_icon_1.svg") no-repeat;
    background-size: 100% auto;
}

.preim_icon_2 {
    background: url("../images/preim_icon_2.svg") no-repeat;
    background-size: 100% auto;
}

.preim_icon_3 {
    background: url("../images/preim_icon_3.svg") no-repeat;
    background-size: 100% auto;
}

.statistic_icon_1 {
    background: url("../images/statistics_icon_1.svg") no-repeat;
    background-size: 100% auto;
}

.statistic_icon_2 {
    background: url("../images/statistics_icon_2.svg") no-repeat;
    background-size: 100% auto;
}

.advantages-block .card-white {
    font-size: 14px;
    color: #777;
    line-height: 20px;
}

.advantages-block .card-white h4 {
    color: #333;
}

.info-table {
    font-size: 14px;
    line-height: 20px;
}

.material-icons.special {
    position: relative;
    top: 7px;
}

blockquote {
    padding-left: 20px;
    margin-bottom: 25px;
    border-left: 3px solid #E5E5E5;
}

blockquote p:last-child {
    padding: 0;
}

blockquote.white-block {
    border-left: none;
}

.breadcrumb {
    background: #fff;

    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);

}

.text-page p {
    padding: 0 0 25px;
}

.text-page .img-responsive {
    max-width: 100%;
    margin: 0 0 20px;
}

.text-page h3 {
    padding: 0 0 20px;
}

.breadcrumb-item+.breadcrumb-item,
.breadcrumb-item:first-child {
    padding-left: 0;
    padding-right: .5rem;
}








/*footer section*/

.wrapper_footer {
    padding: 50px 0;
    background: #24282C;
}

.wrapper_footer .logo {
    padding: 0 0 25px;
}

.wrapper_footer .logo img {
    width: 182px;
}

.wrapper_footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.wrapper_footer ul li {
    padding: 0 0 9px;
}

.wrapper_footer ul li a {
    font-size: 14px;
    color: #fff;

    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;

}

.wrapper_footer ul li a:hover {
    color: #008BD2;
}

.wrapper_footer .top_footer .col-xl-4 {
    padding-top: 67px;
}

.wrapper_footer .top_footer .wrapper_map {
    height: 230px;
}

.wrapper_footer .top_footer .wrapper_map iframe {
    width: 100%;
}

.wrapper_footer .bottom_footer {
    font-size: 14px;
    color: #fff;
    text-align: center;
    line-height: 22px;
    padding: 25px 0 0;
}

.wrapper_footer .bottom_footer .col-xl-12:last-child a {
    display: inline-block;
    font-size: 10px;
    color: #008BD2;
    margin: 0 10px;
    
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    
}

.wrapper_footer .bottom_footer a:hover {
    color: #fff;
}

.h_field,
.feedback_hidden {
    display: none;
}

.carousel-control-prev span,
.carousel-control-next span {
    right: auto; left: 50%;
    transform: translateX(-50%);
}

/*end footer section*/














/*adaptive styles*/

@media screen and (max-width: 1380px) {

    .carousel-control-prev span,
    .carousel-control-next span {
        right: auto; left: 20px;
        transform: translateX(0);
    }

    .carousel-control-next span {
        left: auto; right: 20px;
    }

}

@media screen and (max-width: 1199px) {

    .header-menu-line .navbar-nav .nav-item .nav-link {
        font-size: 13px;
    }

    .header-menu-line .navbar-nav .nav-item .nav-link span {
        display: none;
    }

    .header-menu-line .navbar-nav .nav-item .nav-link span.special {
        display: block;
    }

    .carousel-control-prev span {
        right: auto; left: 10px;
    }

    .carousel-control-next span {
        left: auto; right: 10px;
    }

}

@media screen and (max-width: 991px) {

    h1 {
        font-size: 34px;
        line-height: 40px;
    }

    h2 {
        font-size: 30px;
        line-height: 40px;
    }

    h3 {
        font-size: 26px;
        line-height: 34px;
    }

    h4 {
        font-size: 22px;
        line-height: 28px;
    }



    .top-btn-line .btn {
        padding: 0 10px;
    }

    .header-section .btn {
        padding: 0 15px;
    }

    .header-social.icon-1,
    .header-social.icon-2 {
        margin-right: 10px;
    }

    .header-mail-link {
        margin-right: 20px;
    }

    .header-phone-link {
        font-size: 16px;
    }

    .header-menu-line .navbar-nav {
        margin-top: 20px;
        padding-top: 10px;
        border-top: 1px solid rgba(255,255,255,0.3);
    }

    .header-menu-line .navbar-nav .nav-item .nav-link span {
        display: block;
    }

    .header-menu-line .navbar-nav .nav-item .nav-link span.special {
        display: none;
    }

    .header-menu-line {
        padding: 15px 0;
    }

    .header-menu-line .navbar-dark .navbar-toggler {
        color: #fff;
        border-color: #fff;

        box-shadow: none !important;

    }

    .header-menu-line .navbar-toggler {
        font-size: 1rem;
        color: #fff;
        padding: 5px 8px;
    }

    .header-menu-line .navbar-nav .nav-item {
        text-align: center;
        padding: 10px 0;
        border: none;
    }

    .header-menu-line .navbar-nav .nav-item .nav-link {
        font-size: 18px;
    }

    .header-menu-line .navbar-nav .nav-item .dropdown-menu {
        text-align: center;
        margin: 15px 0 0;
        position: relative;
    }

    .header-menu-line .navbar-nav .nav-item .dropdown-menu:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .header-menu-line .navbar-nav .nav-item .dropdown-menu .dropdown-item {
        font-size: 16px;
        padding: 10px 20px;
    }

    .statistics .row div span {
        display: none;
    }

    .news-section .card .card-body .card-text {
        font-size: 14px;
        line-height: 20px;
    }

    .header-menu-line .d-sm-flex {
        display: flex;
    }

    .header-menu-line .d-sm-flex .header-mail-link {
        margin-right: 0;
        background: url("../images/new_images/mail-icon-white.svg") no-repeat 50%;
    }

    .header-menu-line .d-sm-flex .header-phone-link {
        color: #fff;
        background: url("../images/new_images/phone-icon-white.svg") no-repeat 0 0;
    }

    .header-social.icon-1 {
        background: url("../images/new_images/social-1-white.svg") no-repeat;
    }

    .header-social.icon-2 {
        background: url("../images/new_images/social-2-white.svg") no-repeat;
    }

    .top-header-line .col-xl-8.col-lg-8.col-md-9.col-sm-8 {
        justify-content: flex-end;
    }

    .calculator-info-link {
        font-size: 15px;
    }

    .main-carousel-section .carousel-item {
        text-align: center;
        padding-left: 50px;
        padding-right: 50px;
    }

    .advantages-block .card-white {
        font-size: 16px;
        line-height: 26px;
    }

    .sravni-widget-block {
        padding: 20px;
        margin: 0 0 20px;
        background-color: #e7e7e7;
    }

}

@media screen and (max-width: 767px) {

    .counter-section {
        padding: 21px 0 8px;
    }

    .statistics .row div span {
        display: inline;
    }

    .statistics .row div {
        padding-bottom: 10px;
    }

    .statistics .row div:last-child {
        padding-bottom: 0;
    }

    h2 {
        font-size: 34px;
        line-height: 36px;
    }

    .partner-section h2+p {
        padding: 0 0 20px 2px;
    }

    .partner-section .owl-carousel .owl-controls {
        top: 100px; right: 50%;
        margin: 0 -40px 0 0;
    }

    .d-sm-none {
        display: none;
    }

    .logo img {
        width: 100%;
        max-width: 200px;
    }

    .calculator-info-link {
        font-size: 16px;
        text-align: left;
        padding-left: 70px;
    }

    .tab_links {
        text-align: left !important;
    }

    .tab_links a {
        margin: 10px 5px 0 0;
    }

    .article img {
        margin-bottom: 20px;
    }

    .logo img {
        margin: 0 auto;
    }

}

@media screen and (max-width: 575px) {

    .wrapper_footer .top_footer .col-xl-3,
    .wrapper_footer .top_footer .col-xl-4 {
        text-align: center;
        padding-top: 0;
    }

    .wrapper_footer .top_footer .col-xl-4 {
        padding-bottom: 20px;
    }

    .wrapper_footer .logo img {
        margin: auto;
    }

    .header-menu-line .d-sm-flex .header-phone-link {
        font-size: 13px;
        margin-right: 10px;
    }

    .top-header-line .col-xl-8.col-lg-8.col-md-9.col-sm-8 {
        justify-content: center;
    }

    .main-carousel-section .carousel-item h2 {
        font-size: 32px;
        line-height: 36px;
    }

    .main-carousel-section .carousel-item .pl-5 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .agent-section,
    .calculator-info-section {
        text-align: center;
    }

    .partner-carousel {
        margin: 0;
    }

    .partner-section {
        padding: 37px 0 60px;
    }

    .main-carousel-section .carousel-item .btn {
        padding: 0 30px;
    }

    .news-box img {
        display: none;
    }

    .news-icon {
        margin-bottom: 20px;
    }

    .hidden-xs {
        display: none;
    }

    .col-xs-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-xs-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

}

@media screen and (max-width: 459px) {

    .pagination {
        display: block;
        text-align: left;
    }

    .pagination li {
        display: inline-block;
        padding: 0 10px 10px 0;
    }

    .partner-section {
        text-align: center;
    }

    .tab_links a {
        display: block;
        margin: 10px 0 0 !important;
    }

}

@media screen and (max-width: 350px) {

    .col-xs-6 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

}

/*end adaptive styles*/

