/* base styles
================================================== */
* {
    margin: 0;
    padding: 0;
    outline: 0;
}

body,
html {
    height: 100%;
}

body {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #383838;
}

:focus {
    outline: 0
}

ul li, p {
    font-size: 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    border: none;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset;
}

.space {padding: 70px 0;}

.b-radius {
    border-radius: 24px;
}

/*fonts*/




/* typography
================================================== */
h1, h2, h3, h4, h5, h6 {font-family: 'Manrope', sans-serif; color: #1A1818; font-weight: 700;}

h1 {font-size: 26px; line-height: 32px;}
h2 {font-size: 22px; line-height: 28px;}
h3 {font-size: 18px; line-height: 28px;}
h4 {font-size: 34px; line-height: 42px;}
h5 {font-size: 30px; line-height: 38px;}
h6 {font-size: 18px; line-height: 28px;}

strong {font-weight: 700;}

a {
    color: #383838;
    text-decoration: none;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

a:hover,
a:active,
a:focus {
    color: #EF7A13;
    outline: 0;
    text-decoration: none;
}

p {
    color: #1A1818;
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.7;
}

.btn {
    border-radius: 10px;
    border: none;
    font-weight: 700;
    font-size: 20px;
    display: inline-block;
    text-align: center;
    padding: 12px 60px 16px 60px;
}

.btn.big {
    padding: 12px 40px 16px 40px;
}

.btn img {
    margin-left: 10px;
    width: auto !important;
}

.btn-primary {
    background: #EF7A13;
    color: #fff;
}

.btn-primary:hover {
    background: #EF5713;
    color: #fff;

}

.btn-outline-primary {
    background: #fff;
    color: #EF7A13;
    border: 1px solid #EF7A13;
}

.btn-outline-primary:hover {
    background: #EF5713;
    color: #fff;
    border-color: #EF5713;
}

.btn-outline-primary2 {
    background: #fff;
    color: #EF5713;
    border: 1px solid #EF5713;
}

.btn-outline-primary2:hover {
    background: #fff;
    color: #EF7A13;
}

.heading {
    margin: 0 0 50px 0;
    font-size: 40px;
    line-height: 46px;
    color: #1A1818;
    font-weight: bold;
    font-family: 'Manrope', sans-serif;
}

.move-arrow,
.move-arrow img {
    -webkit-transition: transform 0.3s ease-out;
    -moz-transition: transform 0.3s ease-out;
    -ms-transition: transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
}

.move-arrow:hover img {
    -webkit-transform: translateX(4px);
    -moz-transform: translateX(4px);
    -ms-transform: translateX(4px);
    -o-transform: translateX(4px);
    transform: translateX(4px);
}

.hover {

}

select {
    -webkit-appearance: none;
    appearance: none;
    position: relative;
    background: url("../images/select-arrow.svg") no-repeat right;
    background-position-x: 93%;
    background-size: 12px;
}

.link-item {
    position: relative;
    display: block;
}

.link-item img {
    width: 100%;
}

.link-item::before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    content: '+';
    color: #fff;
    width: 0;
    height: 0;
    background: rgba(239,87,19,.52);
    border-radius: 30px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all .4s;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0;
    font-weight: 500;
}
.link-item:hover::before {
    width: 100%;
    height: 100%;
    opacity: 1;
    font-size: 80px;
}

header {
    padding: 12px 0;
}

header .container-fluid {
    max-width: 1475px;
}

header nav ul li {
    display: inline-block;
    position: relative;
}

header .top {
    text-align: right;
    margin-bottom: 20px;
}

header .top ul li {
    margin-left: 20px;
}

header nav ul li.insurance-item a {
    font-weight: 800;
}

header nav ul li.insurance-item a img {
    margin: 2px 0 0 4px;
}

header .top ul li a {
    font-size: 17px;
    font-weight: 500;
}

header .top ul li.dropdown .dropdown-toggle {
    border: none;
    background: transparent;
    font-size: 17px;
    font-weight: 500;
    color: #383838;
}

header .top ul li.dropdown .dropdown-toggle:hover {
    color: #EF5713;
}

header nav ul.upper-nav {
    text-align: center;
}

header nav ul.upper-nav li {
    margin-right: 40px;
}

header nav ul.upper-nav li:last-of-type {
    margin-right: 10px;
}

header nav ul.upper-nav li a {
    text-transform: uppercase;
    font-weight: 600;
    color: #1A1818;
    font-size: 20px;
    position: relative;
    padding-bottom: 12px;
    transition: all .3s;
}

header nav ul.upper-nav li a:after {
    content: "";
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: #EF5713;
    position: absolute;
    transition: all .3s;
    z-index: 20;

}

header nav ul.upper-nav li a:hover {
    color: #EF5713;
}

header nav ul.upper-nav li a:hover:after {
    width: 100%;
}

.search-and-phone {

}

.search-and-phone li {
    margin-left: 20px;
}

.search-and-phone li a {

}

.search-and-phone li a.phone {
    border: 1px solid #AFAFAF;
    color: #EF5713;
    font-weight: bold;
    display: block;
    padding: 11px 17px;
    border-radius: 10px;
    font-size: 20px;

}

.search-and-phone li a.phone img {
    margin-top: -3px;
    margin-right: 5px;
}

.search-and-phone li a img {

}

.logo img {
    height: 90px;
}

header .logo img {
    margin-top: 10px;
    margin-right: 15px;
}

.intro {
    background: url("../images/intro-bgr.jpg") center no-repeat;
    background-size: cover;
    min-height: 600px;
    padding: 45px 0;
}

.application-form {
    width: 500px;
    height: 600px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 20px 50px 45px 50px;
}

.application-form:after {
    content: "";
    position: absolute;
    background: url("../images/form-shape.png") center no-repeat;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.application-form .heading {
    position: relative;
    z-index: 1;
    font-size: 32px;
    line-height: 28px;
    margin-bottom: 35px;
    font-weight: 800;
}

.application-form form {
    position: relative;
    z-index: 1;

}

.application-form .form-group {
    margin-bottom: 1rem;
}

.application-form .btn {
    display: block;
    width: 100%;
}

header nav ul li .mega-menu {
    position: absolute;
    left: 0;
    min-width: 1200px;
    background: #fff;
    padding: 60px 30px;
    z-index: 10;
    border-radius: 16px;
    margin-top: 6px;
    display: none;
    box-shadow: 0 8px 8px rgba(0, 0, 0, .2);
}

header nav ul li .mega-menu.open {
    display: block;
}

header nav ul li .mega-menu a {
    text-transform: none;
    display: block;
    font-size: 17px;
    line-height: 21px;
    text-align: left;
    padding-right: 18px;
    margin-bottom: 15px;
}

header nav ul li .mega-menu a:after {
    display: none;
}

header nav ul li .mega-menu a img {
    display: block;
    margin: 0 0 12px 0;
}

header nav ul li .mega-menu a img.hover-img {
    display: none;
}

a img.hover-img {
     display: none;
}

a:hover img.show-img {
    display: none;
}

a:hover img.hover-img {
    display: inline-block;
}

header nav ul li .mega-menu a:hover img.hover-img {
    display: block;
}

header nav ul li .mega-menu a span {
    display: block;
}


/*how-to-insurance*/

.position-relative {
    position: relative;
}

.how-to-insurance {

}

.how-to-insurance .heading {
    text-align: center;
}

.how-to-insurance .user-image-abs {
    position: absolute;
    bottom: 0;
    right: 0;

}

.steps li {
    font-weight: 600;
    max-width: 347px;
    position: relative;
    padding-left: 75px;
    padding-bottom: 95px;
}

.steps li:before {
    content: "";
    background: url("../images/up-arrow.svg") center no-repeat;
    background-size: 100%;
    width: 15px;
    position: absolute;
    bottom: 0;
    height: calc(100% - 5.5rem);
    left: 1.4025rem;
    top: 4.575rem;
}

.steps li:last-of-type:before {
    display: none;
}

.big-phone {
    max-width: 425px;
    margin-right: 40px;
}

span.step {
    display: inline-block;
    width: 54px;
    height: 54px;
    background: #EF5713;
    border-radius: 100%;
    color: #fff;
    text-align: center;
    line-height: 54px;
    position: absolute;
    top: 0;
    left: 0;
}

.slider {
    padding-bottom: 140px;
}

.splide {
    padding-bottom: 40px;
}

.product-slider {
    background: #FEF2EC;
}

.slider .container {
    margin-right: 0;
    max-width: 1600px;
    padding-right: 0;
}

.product-slider-block img {
    width: 100%;
}

.splide__slide {
    margin: 20px 15px;
}

.splide__arrow {
    background: #fff;
    border: 1px solid #7E7E7E;
    width: 50px;
    height: 50px;
    bottom: 0;
    top: auto;
    margin-bottom: -85px;
    opacity: 1;
}

.splide__arrow:hover {
    border-color: #EF5713;
    opacity: 1;
}

.splide__arrow--next {
    right: auto;
    left: 0;
    margin-left: 76px;

}

.splide__arrow--next:after {
    content: "";
    background: url("../images/arrow-right.svg") center no-repeat;
    background-size: 100%;
    width: 14px;
    height: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -6px;
    margin-left: -7px;
}

.splide__arrow--next:hover:after {
    content: "";
    background: url("../images/arrow-right-orange.svg") center no-repeat;
    background-size: 100%;
}

.splide__arrow--prev:after {
    content: "";
    background: url("../images/arrow-left.svg") center no-repeat;
    background-size: 100%;
    width: 14px;
    height: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -6px;
    margin-left: -7px;
}

.splide__arrow--prev:hover:after {
    content: "";
    background: url("../images/arrow-left-orange.svg") center no-repeat;
    background-size: 100%;
}

.splide__arrow svg {
    display: none;
}

.product-slider-block h5 {
    margin: 20px 0;
}

.promotions .heading {
    text-align: center;
}

.promotions .see-all {
    text-align: center;
    display: table;
    margin: 45px auto 0 auto;

}

.promotions h4 {
    color: #fff;
}

.info-block-abs {
    position: absolute;
    bottom: 0;
    padding: 30px 30px;
    max-width: 700px;
    left: 0;
    z-index: 3;
}

.link-item.promo-block .btn {
    position: absolute;
    z-index: 10;
    left: 50%;
    top: 50%;
    margin-left: -137px;
    margin-top: -30px;
    display: none;
}

.link-item.promo-block img {
    max-height: 558px;
}

.link-item.promo-block:hover .btn {
    display: block;
}

.review-slider {
    background: #F9F9F9;
}

.slider .heading {
    margin-bottom: 30px;
}

.review-slider-block {
    background: #fff;
    box-shadow: 0 3px 8px rgba(0, 0, 0, .08);
    padding: 35px 30px 30px 30px;
    border-radius: 24px;
}

.review-slider-block p {
    min-height: 120px;
}

.review-slider-block .username {
    color: #1A1818;
    font-weight: 700;

}
.review-slider-block .username img {
    vertical-align: middle;
    margin-right: 12px;
    width: 58px;
    height: 58px;
}

.find-us {
    background: url("../images/offices-bgr.jpg") no-repeat;
    background-size: cover;
}

.find-us .heading {
    color: #fff;
    text-align: center;

}

.find-us h5 {
    color: #fff;
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 4px;

}

.find-us h5 a {
    color: #fff;
}

.find-us span {
    color: #fff;
    font-weight: 500;
    font-size: 17px;
    display: block;
}

.find-us .btn {
    display: table;
    margin: 45px auto 0 auto;
}

.find-us .our-info img {
    height: 36px;
    margin-top: 5px;
}

.newsletter .newsletter-form {
    padding: 70px 0;
}
