/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* khmer */
@font-face {
    font-family: 'Nokora';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/nokora/v33/hYkIPuwgTubzaWxgNzAOkvY.woff2) format('woff2');
    unicode-range: U+1780-17FF, U+19E0-19FF, U+200C-200D, U+25CC;
}

/* latin */
@font-face {
    font-family: 'Nokora';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/nokora/v33/hYkIPuwgTubzaWxgPDAO.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


* {
    box-sizing: border-box;
}

body {
    font-family: "Sora", sans-serif;
}


.btn-default {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #39D59C;
    border: 1px solid rgba(57, 213, 156, 1);
    height: 60px;
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    position: relative;
    z-index: 5;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(57, 213, 156, 0.4);
    -moz-animation: pulse 2s infinite;
    -webkit-animation: pulse 2s infinite;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(57, 213, 156, 1);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(57, 213, 156, 0);
    }
    100% {
        box-shadow: 0 0 0 50px rgba(57, 213, 156, 0);
    }
}


.btn-default:hover {
    background: #1FB27C;
    animation: none;
}

.btn-default:focus, .btn-default:active {
    background: #59C3CE;
    animation: none;
}

.btn-default:hover::after {
    display: none;
}

.btn-default::after {
    z-index: 1;
    display: block;
    content: "";
    position: absolute;
    left: -8px;
    right: -8px;
    top: -8px;
    bottom: -8px;
    border-radius: 13px;
    border: 1px solid #39D59C;
    display: none;
}

@keyframes pulseBorder {

}

.btn-default-blue {
    background: #3E85F6;
    box-shadow: 0 0 0 0 rgba(62, 133, 246, 0.4);
    -moz-animation: pulse2 2s infinite;
    -webkit-animation: pulse2 2s infinite;
    animation: pulse2 2s infinite;
}

.btn-default-blue:hover {
    background: #1560D9;
}

.btn-default-blue:focus, .btn-default:active {
    background: #3ECBF6;
    animation: none;
}

.btn-default-blue::after {
    border: 1px solid #3E85F6;
}

@keyframes pulse2 {
    0% {
        box-shadow: 0 0 0 0 rgba(62, 133, 246, 1);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(62, 133, 246, 0);
    }
    100% {
        box-shadow: 0 0 0 50px rgba(62, 133, 246, 0);
    }
}

.header__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0px 15px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__container .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13.333px;
    background: #0B0E38;
    width: 216px;
    height: 47px;
    text-decoration: none;
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    box-shadow: none;
    border: none;
    animation: none;
}

.header__nav {
    display: flex;
    justify-content: space-between;
}

.header__nav a {
    color: #0B0E38;
    font-family: Nokora;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-right: 1px solid #C8D8EA;
    text-decoration: none;
    padding: 36px 17px 32px;
}

.header__nav a:last-child {
    border: none;
}

.header__nav a.active {
    background: #E0EFFF;
    color: #1337BF;
}

.header__content__left {
    background: url("../images/Clip path group.png") no-repeat, linear-gradient(180deg, #D2EDE9 0%, #A1D1ED 100%);
    display: flex;
    justify-content: flex-end;
}

.header__content__left__wrapper {
    max-width: 600px;
    padding-top: 58px;
    padding-bottom: 64px;
}

h1 {
    color: #01132E;
    font-size: 56px;
    font-style: normal;
    font-weight: 600;
    line-height: 61px; /* 108.929% */
    letter-spacing: 1.12px;
    padding-bottom: 24px;
}

.header__content {
    display: flex;
    justify-content: space-between;
}

.header__content p {
    color: #01132E;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 25.6px */
    letter-spacing: 0.32px;
    padding-bottom: 45px;
    max-width: 441px;
}

.header__content__left {
    width: 50%;
}

.header__content__image {
    width: 50%;
    background: url("../images/header-bg.png") no-repeat center center / 100%;
}

@media (max-width: 3000px) {
    .header__content__image {
        background: url(../images/header-bg.png) no-repeat 0 36% / 100%;
    }
}

@media (max-width: 2560px) {
    .header__content__image {
        background: url("../images/header-bg.png") no-repeat center center / 107%;
    }
}

@media (max-width: 1920px) {
    .header__content__image {
        background: url("../images/header-bg.png") no-repeat 0 0 / 100%;
    }
}


.header-container {
    max-width: 1368px;
    padding: 0 15px 108px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.header-top {
    display: flex;
    align-items: center;
    padding-top: 44px;
    padding-bottom: 58px;
}

.header-nav {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.93);
    backdrop-filter: blur(37px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    max-width: 635px;
    margin-left: 142px;
}

.header-nav a {
    color: #151D35;
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 24px */
    letter-spacing: -0.44px;
    text-decoration: none;
    margin: 0 20px;
}

.header-container h1 {
    color: #151D35;
    font-size: 59px;
    font-style: normal;
    font-weight: 600;
    line-height: 65px; /* 110.169% */
    letter-spacing: 1.18px;
    max-width: 603px;
}

.header-container h1 span {
    font-weight: 700;
}

.header-form {
    margin-top: 37px;
    border-radius: 20px;
    background: #FFF;
    backdrop-filter: blur(17px);
    padding: 33px 30px;
    max-width: 575px;
}

.header-form .form-group {
    display: flex;
    align-items: center;
    position: relative;
}

.header-form .form-group label.error {
    position: absolute;
    bottom: -20px;
    font-size: 12px;
    color: red;
}

.header-form button {
    width: 337px;
    margin-left: 23px;
}

.header-form input {
    border-radius: 8px;
    border: 1px solid #C4C4C4;
    background: url("../images/zip-icon.png") no-repeat 20px center, #DDEFFB;
    flex-grow: 1;
    height: 60px;
    padding: 19px 20px 19px 45px;
    max-width: 177px;
}

.header-form .form-text {
    display: flex;
    align-items: flex-start;
    padding-top: 22px;
}

.header-form .form-text img {
    flex-shrink: 0;
    margin-right: 5px;
}

.header-form .form-text p {
    color: #151D35;
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.528px;
}

.header-form .form-text p span {
    color: #3E85F6;
}

footer {
    background: #DBE4F0;
}

.footer-container {
    max-width: 1390px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

.footer-left p {
    color: var(--graphite5, #455B66);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px; /* 150% */
    padding-top: 6px;
}

.footer-nav a {
    color: var(--grey-txt, #2D2D2D);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    margin-left: 33px;
}

.footer-left .footer-social {
    display: none;
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    padding-top: 22px;
}

.footer-social a {
    text-decoration: none;
    margin-left: 36px;
}

.disclaimer {
    max-width: 1369px;
    padding: 50px 15px 30px;
    margin: 0 auto;
}

.disclaimer p {
    color: var(--grey-txt, #2D2D2D);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 200;
    line-height: 130%; /* 20.8px */
    padding-bottom: 20px;
}

.partners-logo-list {
    max-width: 1368px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.partners-logo-list-item {

}

.current-insurance-container {
    max-width: 1368px;
    margin: 0 auto;
    padding: 60px 15px 40px;
}

.current-insurance-container h2 {
    color: var(--text-grey, #292929);
    text-align: center;
    font-size: 44px;
    font-style: normal;
    font-weight: 600;
    line-height: 115%; /* 50.6px */
    padding-bottom: 10px;
}

.current-insurance-container p {
    color: var(--text-grey, #292929);
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 115%; /* 27.6px */
    padding-bottom: 15px;
}

.current-insurance-block {
    border-radius: 20px;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.90) 0%, rgba(162, 207, 251, 0.90) 106.48%);
    backdrop-filter: blur(10px);
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
}

.current-insurance-block-info {
    max-width: 642px;
}

.current-insurance-block-info h3 {
    color: var(--text-grey, #292929);
    font-family: Sora;
    font-size: 46px;
    font-style: normal;
    font-weight: 400;
    line-height: 115%; /* 52.9px */
}

.current-insurance-block-info p {
    color: var(--text-grey, #292929);
    font-size: 33px;
    font-style: normal;
    font-weight: 400;
    line-height: 115%;
    text-align: left;
}

.current-insurance-block-info p span {
    font-weight: 600;
}

.current-insurance-block-info p span .blue {
    color: #3E85F6;
}

.current-insurance-block-table {
    max-width: 516px;
    width: 100%;
}

.current-insurance-block-table > div {
    border-radius: 3px;
    background: #3AC6AD;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 27px */
}

.current-insurance-block-table > div:first-child {
    font-weight: 600;
}

.current-insurance-block-table > div:nth-of-type(2n) {
    background: transparent;
    color: var(--text-grey, #292929);
}

.best-policies-wrapper {
    padding-top: 97px;
    padding-bottom: 97px;
}

.best-policies {
    max-width: 1336px;
    margin: 0 auto;
    background: linear-gradient(0deg, rgba(63, 63, 63, 0.20) 0%, rgba(63, 63, 63, 0.20) 100%), url("../images/best-policies.png") no-repeat center center / cover;
    border-radius: 40px;
    padding: 36px 0px 0;
}

.best-policies-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 42px;
}

.best-policies-top h3 {
    color: #FFF;
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: 61px; /* 145.238% */
    letter-spacing: 0.84px;
}

.best-policies-top p {
    color: #FFF;
    font-family: Sora;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 23px; /* 127.778% */
    letter-spacing: 0.36px;
    max-width: 621px;
}

.get-started {
    margin-top: 80px;
    display: flex;
    justify-content: flex-end;
}

.get-started > div {
    border-radius: 30px 0px 0px 0px;
    background: #FFF;
    padding: 30px;
    max-width: 410px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.get-started h4 {
    color: var(--font-color, #151D35);
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 28.8px */
    letter-spacing: 0.48px;
    padding-bottom: 16px;
}

.get-started .btn-default {
    text-decoration: none;
    width: 100%;
}

.top-rated-insurance {
    padding-top: 60px;
    background: url("../images/top-rated1.png") no-repeat 0 center, url("../images/top-rated2.png") no-repeat 100% center;
}

.top-rated-insurance-container {
    max-width: 770px;
    margin: 0 auto;
    min-height: 331px;
}

.top-rated-insurance-container h2 {
    color: var(--font-color, #151D35);
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 24px */
}

.top-rated-insurance-container h2 span {
    color: var(--font-color, #2A9275);
}

.top-rated-insurance-container p {
    color: var(--font-color, #151D35);
    text-align: center;
    padding-top: 13px;
    padding-bottom: 13px;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 25.2px */
}

.top-rated-insurance-wrapper {
    max-width: 529px;
    margin: 0 auto;
    padding-bottom: 80px;
    padding-top: 50px;
}

.top-rated-insurance-wrapper .form-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-rated-insurance-wrapper .form-group .btn-default {
    width: 323px;
}

.top-rated-insurance-wrapper .form-group input {
    border-radius: 8px;
    border: 1px solid #C4C4C4;
    background: url(../images/zip-icon.png) no-repeat 20px center, #DDEFFB;
    flex-grow: 1;
    height: 60px;
    padding: 19px 20px 19px 44px;
    max-width: 177px;
}

input:not(:placeholder-shown) {
    background: url(../images/zip-icon.png) no-repeat 20px center, #fff;
    border-radius: 8px;
    border: 1px solid #C4C4C4;
}

.let-you-know {
    background: url("../images/car-img.png") no-repeat 74% 0 / 32%, linear-gradient(180deg, #D9F5FC 0%, #FFF 100%);
}

.let-you-know .container {
    max-width: 1368px;
    margin: 0 auto;
    padding: 100px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.let-you-know-info {
    max-width: 470px;
}

.let-you-know-info h2 {
    color: #151D35;
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 50.4px */
    letter-spacing: 0.84px;
    padding-bottom: 31px;
}

.let-you-know-info h2 span {
    color: #3CADC9;
}

.let-you-know-info p {
    color: #151D35;
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    letter-spacing: -0.352px;
    padding-bottom: 34px;
}

.let-you-know-info p span {
    font-weight: 600;
}

.let-you-know-info .btn-default {
    width: 323px;
    text-decoration: none;
}

.let-you-know-img {
    max-width: 602px;
}

.let-you-know-img img {
    width: 100%;
    display: block;
}

.testimonials {
    background: url("../images/waves.png") #DBEDF0;
    position: relative;
}

.testimonials-wrapper {
    max-width: 1368px;
    margin: 0 auto;
    padding: 50px 265px 0 15px;
    min-height: 427px;
}

.testimonials-wrapper h2 {
    max-width: 396px;
    color: #151D35;
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 50.4px */
    letter-spacing: 0.84px;
    padding-bottom: 50px;
}

.testimonials-wrapper h2 span {
    color: #3E85F6;
}

.testimonials-img {
    max-width: 492px;
    position: absolute;
    bottom: 0;
    top: 0;
    right: 0;
}

.testimonials-img img {
    width: 100%;
    display: block;
}

.testimonials-item p {
    color: var(--font-color, #151D35);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px; /* 143.75% */
    letter-spacing: 0.32px;
}

.testimonials-list {
    display: flex;
    justify-content: space-between;
}

.testimonials-list-item {
    width: 32%;
    position: relative;
}

.testimonials-slider {
    padding-right: 150px;
}

.testimonials-slider .owl-nav {
    position: absolute;
    top: -165px;
    right: 1.5%;
}

.testimonials-slider .owl-dots {
    position: absolute;
    top: -87px;
    right: 0;
}

.owl-theme .owl-dots .owl-dot span {
    width: 40px;
    height: 2px;
    background: #FFF;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #2A9275;
}

.testimonials .author {
    color: var(--font-color, #151D35);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 16.8px */
    letter-spacing: 0.28px;
    padding-top: 13px;
}

.testimonials-slider .owl-nav button {
    width: 56px;
    height: 35px;
    border-radius: 10px !important;
    background: #FFF;
}

.testimonials-slider .owl-nav button span {
    display: none;
}

.testimonials-slider .owl-nav button.owl-prev {
    background: url("../images/left-icon.png") no-repeat center center #fff !important;
}

.testimonials-slider .owl-nav button.owl-prev:hover {
    background: url("../images/left-icon-hover.png") no-repeat center center #fff !important;
}

.testimonials-slider .owl-nav button.owl-next {
    background: url("../images/right-icon.png") no-repeat center center #fff !important;
}

.testimonials-slider .owl-nav button.owl-next:hover {
    background: url("../images/right-icon-hover.png") no-repeat center center #fff !important;
}

.how-long-insurance {
    position: relative;
}

.how-long-insurance .animation-wrapper {
    position: absolute;
    left: 53%;
    transform: translateX(-50%) translateY(-50%);
    top: 59%;
    width: 100%;
    max-width: 1310px;
}

.how-long-insurance h2 {
    color: var(--font-color, #151D35);
    text-align: center;
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: 61px; /* 145.238% */
    letter-spacing: 0.84px;
    padding-bottom: 36px;
}

.how-long-insurance-container {
    max-width: 1368px;
    margin: 0 auto;
    padding: 50px 15px 50px 15px;
}

.how-long-insurance-list-item h4 {
    color: #1E1E1E;
    text-align: center;
    font-family: "Space Grotesk";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 28.8px */
    letter-spacing: -0.528px;
}

.how-long-insurance-list {
    display: flex;
    justify-content: space-between;
    padding-top: 25px;
    position: relative;
}

.how-long-insurance-list-mob {
    display: none;
}


@keyframes roadMove {

}

.how-long-insurance-list-item {
    width: 232px;
    height: 232px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.how-long-insurance-list-item:nth-of-type(1) {
    border-radius: 40px;
    border: 8px solid rgba(23, 218, 195, 0.18);
    background: #FFF;
    box-shadow: 0px 4px 24px 0px #B7D9EE;
    height: 184px;
}

.how-long-insurance-list-item:nth-of-type(1) h4 {
    padding-top: 10px;
}

.how-long-insurance-list-item:nth-of-type(1) .tooltip {
    right: -290px;
    top: 17px;
    width: 252px;
}

.how-long-insurance-list-item:nth-of-type(1) .tooltip::after {
    background: #D9FCF8;
    transform: translateY(-50%) rotate(45deg);
    top: 50%;
    left: -9px;
}

.how-long-insurance-list-item:nth-of-type(1) .how-long-insurance-icon {
    margin-top: -40px;
    margin-bottom: -10px;
}

.how-long-insurance-list-item:nth-of-type(2) {
    border-radius: 40px;
    border: 8px solid rgba(23, 156, 218, 0.28);
    background: #FFF;
    box-shadow: 0px 4px 24px 0px #B7D9EE;
    margin-top: 13%;
    padding-left: 2px;
    padding-right: 2px;
}

.how-long-insurance-list-item:nth-of-type(2) .how-long-insurance-icon {
    margin-top: -55px;
    margin-bottom: -10px;
}

.how-long-insurance-list-item:nth-of-type(2) .tooltip {
    bottom: -88px;
    width: 252px;
    border-radius: 20px;
    background: #D9F5FC;
}

.how-long-insurance-list-item:nth-of-type(2) .tooltip::after {
    background: #D9F5FC;
    transform: translateX(-50%) rotate(45deg);
    left: 50%;
    top: -9px;
}

.how-long-insurance-list-item:nth-of-type(2) .tooltip h5 {
    color: #178FDA;
}

.how-long-insurance-list-item:nth-of-type(3) {
    border-radius: 40px;
    border: 8px solid rgba(23, 195, 218, 0.28);
    background: #FFF;
    box-shadow: 0px 4px 24px 0px #B7D9EE;
    padding-left: 10px;
    padding-right: 10px;
}

.how-long-insurance-list-item:nth-of-type(3) .how-long-insurance-icon {
    margin-top: -40px;
    margin-bottom: -10px;
}

.how-long-insurance-list-item:nth-of-type(3) .tooltip {
    bottom: -110px;
    width: 252px;
    border-radius: 20px;
    background: #D9FCF2;
}

.how-long-insurance-list-item:nth-of-type(3) .tooltip::after {
    background: #D9FCF2;
    transform: translateX(-50%) rotate(45deg);
    left: 50%;
    top: -9px;
}

.how-long-insurance-list-item:nth-of-type(4) {
    border-radius: 40px;
    border: 8px solid rgba(125, 188, 231, 0.60);
    background: #FFF;
    box-shadow: 0px 4px 24px 0px #B7D9EE;
    height: 184px;
    margin-top: 6%;
}

.how-long-insurance-list-item:nth-of-type(4) .how-long-insurance-icon {
    margin-top: -40px;
    margin-bottom: -10px;
}

.how-long-insurance-list-item:nth-of-type(4) .tooltip {
    bottom: -110px;
    width: 252px;
    border-radius: 20px;
    background: #D9F5FC;
}

.how-long-insurance-list-item:nth-of-type(4) .tooltip::after {
    background: #D9F5FC;
    transform: translateX(-50%) rotate(45deg);
    left: 50%;
    top: -9px;
}

.how-long-insurance-list-item:nth-of-type(4) .tooltip h5 {
    color: #178FDA;
}

input::placeholder {
    color: #2D2D2D;
    font-family: Sora;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

input:focus::placeholder {
    color: transparent;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
    -moz-appearance: textfield; /* Firefox */
}

.tooltip {
    position: absolute;
    border-radius: 20px;
    background: #D9FCF8;
    padding: 16px 4px;
    display: flex;
    align-items: center;
    flex-direction: column;
    opacity: 0;
}

.tooltip::after {
    width: 18px;
    height: 18px;
    display: block;
    content: "";
    position: absolute;
}

.tooltip h5 {
    color: #2A9275;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.32px;
}

.tooltip p {
    color: #151D35;
    font-family: Sora;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    letter-spacing: 0.32px;
    text-align: center;
}

.how-long-insurance-list-item:hover .tooltip {
    opacity: 1;
}

.header-nav-mob {
    display: none;
    position: relative;
}

.hamburger-button {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: url("../images/hamburger-icon.png") no-repeat center center, rgba(255, 255, 255, 0.93);
    backdrop-filter: blur(37px);
    cursor: pointer;
}

.hamburger-button.active {
    background: url("../images/stash_burger-classic.png") no-repeat center center, rgba(255, 255, 255, 0.93);
}

.header-nav-mob-list {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.93);
    backdrop-filter: blur(37px);
    width: 393px;
    position: absolute;
    display: none;
    right: 0;
    top: 54px;
    z-index: 100;
    padding-top: 40px;
}

.header-nav-mob-list.active {
    display: block;
}

.header-nav-mob-list a {
    color: #151D35;
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 36px */
    letter-spacing: -0.66px;
    display: block;
    text-align: center;
    text-decoration: none;
    margin-bottom: 40px;
}

.header-nav-mob-list a:hover {
    color: #3E85F6;
}


/***PRIVACY TERMS***/

header.header-pt {
    background: none;
}

header.header-pt::before {
    border-radius: 0;
    width: 100% !important;

}

header.header-pt .header-nav-mob {
    display: block;
}

header.header-pt .header-container {
    padding: 20px 15px;
}

header.header-pt .header-container .header-top {
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 1024px) {
    header.header-pt::before {
        border-radius: 0;
        width: 100% !important;
        height: 109px;
    }
}

.privacy-terms .container {
    max-width: 1368px;
    margin: 0 auto;
    padding: 50px 15px;
}

.privacy-terms h2 {
    color: #151D35;
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0.84px;
    padding-bottom: 20px;
}

@media (max-width: 768px) {
    .privacy-terms h2 {
        font-size: 32px;
    }
}

.privacy-terms h5 {
    padding-bottom: 20px;
}

.privacy-terms h4 {
    font-size: 25px;
    font-weight: 600;
    padding-bottom: 20px;
}

.privacy-terms p, .privacy-terms ul li {
    font-size: 18px;
    line-height: 26px;
    padding-bottom: 20px;
}

.privacy-terms p strong, .privacy-terms ul li strong {
    font-weight: 700;
}

.privacy-terms ul {
    padding-left: 30px;
}

.privacy-terms ul i {
    font-style: italic;
}

@media (max-width: 1024px) {
    .privacy-terms h4 {
        font-size: 18px;
    }
}


@media (max-width: 1850px) {
    .testimonials-wrapper {
        padding: 50px 16% 0 15px;
    }
}

@media (max-width: 1800px) {
    .testimonials-wrapper {
        padding: 50px 20% 0 15px;
    }
}

@media (max-width: 1700px) {
    .testimonials-wrapper {
        padding: 50px 23% 0 15px;
    }
}

@media (max-width: 1650px) {
    .testimonials-wrapper {
        padding: 50px 26% 0 15px;
    }
}

@media (max-width: 1550px) {
    .testimonials-wrapper {
        padding: 50px 29% 0 15px;
    }
}

@media (max-width: 1500px) {
    .testimonials-wrapper {
        padding: 50px 33% 0 15px;
    }
}

@media (max-width: 1450px) {
    .testimonials-wrapper {
        padding: 50px 38% 0 15px;
    }
}

@media (max-width: 1460px) {
    .header__content__image {
        background: url(../images/header-bg.png) no-repeat 0 0 / 102%;
    }
}


@media (max-width: 1400px) {
    .how-long-insurance .animation-wrapper {
        position: absolute;
        max-width: 1220px;
    }
}

@media (max-width: 1368px) {

    .header__content__image {
        background: url(../images/header-bg.png) no-repeat 0 0 / 119%;
    }


    .let-you-know {
        background: url(../images/car-img.png) no-repeat 88% 0 / 43%, linear-gradient(180deg, #D9F5FC 0%, #FFF 100%);
    }

    .testimonials-wrapper {
        padding: 50px 530px 0 15px;
    }

    .testimonials-slider {
        padding-right: 0px;
    }
}

@media (max-width: 1310px) {
    .how-long-insurance .animation-wrapper {
        position: absolute;
        max-width: 1145px;
    }
}

@media (max-width: 1280px) {


    .top-rated-insurance {
        background: #EFF7FE;
    }

    .top-rated-insurance-container {
        max-width: 770px;
        margin: 0 auto;
        min-height: 240px;
    }

    .partners-logo-list-item {
        width: 17%;
    }

    .partners-logo-list-item img {
        width: 100%;
        display: block;
    }
}

@media (max-width: 1240px) {
    .how-long-insurance .animation-wrapper {
        position: absolute;
        max-width: 1060px;
    }

    .header__content__left__wrapper {
        padding-left: 15px;
        padding-right:15px;
    }

    .header__nav a {
        padding: 36px 8px 32px;
    }
}

@media (max-width: 1160px) {
    .header-form {
        max-width: 480px;
    }

    header::before {
        width: 59%;
    }

    .let-you-know {
        background: url(../images/car-img.png) no-repeat 95% 0 / 48%, linear-gradient(180deg, #D9F5FC 0%, #FFF 100%);
    }
}


@media (max-width: 1150px) {
    header::before {
        width: 100%;
        border-radius: 0;
    }
}

@media (max-width: 1140px) {
    .how-long-insurance .animation-wrapper {
        position: absolute;
        max-width: 980px;
    }

    .header__nav a {
        font-size: 14px;
    }

    h1 {
        font-size: 34px;
        line-height: 40px;
    }
}

@media (max-width: 1070px) {
    .how-long-insurance .animation-wrapper {
        position: absolute;
        max-width: 980px;
        top: 62%;
    }
}

@media (max-width: 1024px) {

    .header__content {
        flex-direction: column;
    }

    .header__content__left__wrapper {
        padding: 20px;
    }

    .header__nav {
        display: none;
    }

    .header__container .btn-default {
        display: none;
    }

    .tooltip {
        opacity: 1;
    }

    .how-long-insurance-list-desc {
        display: none;
    }

    .how-long-insurance-list-item {
        position: relative;
        width: 40%;
    }

    .how-long-insurance-list-mob {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        background: none;
    }

    .best-policies-top {
        flex-direction: column;
    }

    .best-policies-top p, .best-policies-top h3 {
        text-align: center;
    }

    .get-started {
        justify-content: center;
        margin-top: 35px;
    }

    .get-started > div {
        border-radius: 30px 30px 0 0;
    }

    .best-policies-top h3 {
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        line-height: 61px; /* 190.625% */
        letter-spacing: 0.64px;
    }

    .best-policies-top p {
        font-size: 16px;
    }

    .let-you-know-info {
        max-width: 100%;
    }

    .let-you-know-info h2, .let-you-know-info p {
        text-align: center;
    }

    .let-you-know-info .btn-default {
        margin: 0 auto;
    }

    .let-you-know .container {
        padding-top: 40px;
        padding-bottom: 470px;
    }

    .let-you-know-info h2 {
        font-size: 32px;
        font-style: normal;
        font-weight: 600;
        line-height: 120%;
    }

    .let-you-know-info p {
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
    }

    .let-you-know {
        background: url(../images/car-img.png) no-repeat 50% 94% / 48%, linear-gradient(180deg, #D9F5FC 0%, #FFF 100%);
    }

    .testimonials-wrapper {
        padding: 40px 15px 40px 15px;
        min-height: auto;
    }

    .testimonials-img {
        display: none;
    }

    .testimonials-wrapper h2 {
        font-size: 32px;
        max-width: 100%;
    }

    .testimonials-slider .owl-nav {
        position: absolute;
        top: -116px;
        right: 0;
    }

    .testimonials-slider .owl-dots {
        position: absolute;
        top: -45px;
        right: 0;
    }

    .current-insurance-container h2 {
        font-size: 32px;
        font-style: normal;
        font-weight: 600;
        line-height: 115%; /* 36.8px */
    }

    .current-insurance-container p {
        font-size: 20px;
    }

    .current-insurance-block {
        flex-direction: column;
    }

    .current-insurance-block-table {
        max-width: 100%;
    }

    .current-insurance-block-info h3 {
        font-size: 32px;
        font-style: normal;
        font-weight: 400;
        line-height: 115%; /* 36.8px */
    }

    .current-insurance-block-info p {
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: 115%; /* 27.6px */
        padding-top: 20px;
    }

    .partners-logo-list {
        flex-wrap: wrap;
    }

    .partners-logo-list-item {
        width: 30%;
    }

    .header-container h1 {
        max-width: 100%;
        text-align: center;
    }

    .header-form {

    }

    .header__content__left {
        width: 100%;
        justify-content: flex-start;
    }

    .header__content__image {
        min-height: 440px;
        width: 100%;
        background: url(../images/header-tab.png) no-repeat center 0 / 106%;
    }

    .header-container {
        max-width: 1368px;
        padding: 0 15px 251px;
        margin: 0 auto;
        position: relative;
        z-index: 10;
    }


    .header-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .header-nav {
        display: none;
    }

    .header-nav-mob {
        display: block;
    }

    .how-long-insurance-list-item:nth-of-type(1) {
        max-width: 232px;
        margin-left: 7%;
    }

    .how-long-insurance-list-item:nth-of-type(1) .tooltip {
        right: 50%;
        transform: translateX(50%);
        top: 197px;
        width: 252px;
    }

    .how-long-insurance-list-item:nth-of-type(1) .tooltip::after {
        background: #D9FCF8;
        transform: translateY(0) translateX(-50%) rotate(45deg);
        top: -9px;
        left: 50%;
    }

    .how-long-insurance-list-item:nth-of-type(2) {
        border-radius: 40px;
        border: 8px solid rgba(23, 195, 218, 0.28);
        background: #FFF;
        box-shadow: 0px 4px 24px 0px #B7D9EE;
        margin-top: 2%;
        margin-left: 6%;
        max-width: 232px;
        height: 160px;
        margin-right: 24%;
    }

    .how-long-insurance-list-item h4 {
        font-size: 18px;
    }

    .how-long-insurance-list-item:nth-of-type(2) .tooltip {
        bottom: 35px;
        right: -286px;
        width: 252px;
        border-radius: 20px;
        background: #D9F5FC;
    }

    .how-long-insurance-list-item:nth-of-type(2) .tooltip::after {
        background: #D9F5FC;
        transform: translateX(-50%) rotate(45deg);
        left: 1%;
        top: 23px;
    }

    .how-long-insurance h2 {
        font-size: 32px;
        line-height: 130%;
    }

    .how-long-insurance-container {
        padding-top: 28px;
        background: url(../images/line-tab.png) no-repeat 108px 62px / 73%;
    }


    .how-long-insurance-list-item:nth-of-type(3) {
        max-width: 232px;
        margin-left: 34%;
        margin-top: 7%;
        height: 160px;
    }

    .how-long-insurance-list-item:nth-of-type(4) {
        max-width: 232px;
        margin-left: 12%;
    }

    .partners-logo-list-item {
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .partners-logo-list-item img {
        width: auto;
    }

    .how-long-insurance-list-item .how-long-insurance-icon {
        max-width: 139px;
        margin-top: -30px !important;
    }

    .how-long-insurance-list-item .how-long-insurance-icon img {
        width: 100%;
        display: block;
    }
}

@media (max-width: 906px) {
    .how-long-insurance-list-item:nth-of-type(4) {
        max-width: 232px;
        margin-left: 6%;
    }
}

@media (max-width: 835px) {
    .how-long-insurance-list-item:nth-of-type(1) {
        max-width: 232px;
        margin-left: 0%;
    }

    .how-long-insurance-list-item:nth-of-type(3) {
        max-width: 232px;
        margin-left: 29%;
        margin-top: 7%;
        height: 160px;
    }

    .how-long-insurance-list-item:nth-of-type(4) {
        max-width: 232px;
        margin-left: 10%;
    }

    .tooltip h5, .tooltip p {
        font-size: 14px;
    }

    .tooltip {
        padding: 10px;
    }

    .how-long-insurance-list-item:nth-of-type(2) {
        border-radius: 40px;
        border: 8px solid rgba(23, 195, 218, 0.28);
        background: #FFF;
        box-shadow: 0px 4px 24px 0px #B7D9EE;
        margin-top: 2%;
        margin-left: 13%;
        max-width: 232px;
        height: 160px;
        margin-right: 3%;
    }

    .how-long-insurance-list-item:nth-of-type(2) .tooltip {
        bottom: 35px;
        right: -198px;
        width: 252px;
        border-radius: 20px;
        background: #D9F5FC;
    }

    .how-long-insurance-list-item:nth-of-type(1) .tooltip {
        width: 158px;
    }

    .how-long-insurance-list-item:nth-of-type(2) .tooltip {
        width: 158px;
    }

    .how-long-insurance-list-item:nth-of-type(3) .tooltip {
        width: 158px;
    }

    .how-long-insurance-list-item:nth-of-type(4) .tooltip {
        width: 158px;
    }


    .how-long-insurance-container {
        padding-top: 28px;
        background: url(../images/line-tab.png) no-repeat 65px 123px / 85%;
    }

}

@media (max-width: 800px) {

    .how-long-insurance-container {
        background: none;
    }

    .how-long-insurance-list-mob {
        flex-direction: column;
        padding-left: 50px;
        background: url(../images/line-mob.png) no-repeat 0px 54px;
        padding-top: 0;
    }

    .how-long-insurance-list-item {
        position: relative;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 120px 0 !important;
        height: 110px !important;
        flex-direction: row;
        align-items: center;
        padding: 10px;
        min-height: 110px !important;
    }

    .how-long-insurance-list-item .how-long-insurance-icon {
        margin: 0 !important;
    }

    .how-long-insurance-list-item:nth-of-type(1) .tooltip {
        right: 50%;
        transform: translateX(50%);
        top: 127px;
        width: 100%;
        max-width: 231px;
    }

    .how-long-insurance-list-item:nth-of-type(2) .tooltip {
        bottom: -79px;
        right: 50%;
        transform: translateX(50%);
        border-radius: 20px;
        background: #D9F5FC;
        width: 100%;
        max-width: 231px;
    }

    .how-long-insurance-list-item:nth-of-type(3) .tooltip {
        bottom: -83px;
        width: 100%;
        border-radius: 20px;
        background: #D9FCF2;
        max-width: 231px;
        right: 50%;
        transform: translateX(50%);
    }

    .how-long-insurance-list-item:nth-of-type(4) .tooltip {
        bottom: -86px;
        width: 100%;
        border-radius: 20px;
        background: #D9F5FC;
        max-width: 231px;
        right: 50%;
        transform: translateX(50%);
    }

    .how-long-insurance-list-item h4 {
        font-size: 16px;
        text-align: left;
    }

    .how-long-insurance-list-item:nth-of-type(2) .tooltip::after {
        background: #D9F5FC;
        transform: translateX(-50%) rotate(45deg);
        left: 50%;
        top: -9px;
    }

    .how-long-insurance-container {
        padding-bottom: 0
    }
}

@media (max-width: 768px) {

    .header__content__image {
        min-height: 150px;
    }

    h1 {
        font-size: 35px;
        line-height: 41px;
        text-align: center;
    }

    .header-form {
        width: 100%;
        margin: 0;
        max-width: 100%
    }

    .how-long-insurance-list-item .how-long-insurance-icon {
        max-width: 100px;
    }

    .tooltip h5 {
        font-size: 12px;
    }

    .tooltip p {
        font-size: 12px;
    }

    .how-long-insurance h2 {
        font-size: 24px;
        line-height: 130%;
    }

    .header-container h1 {
        font-size: 35px;
        line-height: 41px;
    }

    .header-form .form-text p {
        font-size: 18px;
    }

    .header-form .form-group {
        flex-direction: column;
    }

    .header-form input {
        max-width: 100%;
        width: 100%;
        margin-bottom: 15px;
    }


    .header-form button {
        margin-left: 0;
    }

    .best-policies {
        padding: 30px 16px 190px;
        background: url("../images/best-policies-mob.png") no-repeat center center / cover;
    }

    .best-policies-top h3 {
        font-size: 24px;
        line-height: 100%;
    }

    .get-started > div {
        border-radius: 30px;
    }

    .best-policies-wrapper {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .let-you-know-info h2 {
        font-size: 24px;
        line-height: 120%;
    }

    .let-you-know .container {
        padding-bottom: 350px;
    }

    .testimonials-list {
        flex-direction: column;
    }

    .testimonials-list-item {
        width: 100%;
        margin-bottom: 40px;
    }

    .testimonials-wrapper {
        padding: 40px 15px 150px 15px;
        min-height: auto;
    }

    .testimonials-wrapper h2 {
        font-size: 24px;
        text-align: center;
    }

    .testimonials-slider .owl-nav {
        position: absolute;
        top: 310px;
        right: 50%;
        transform: translateX(50%);
    }

    .testimonials-slider .owl-dots {
        position: absolute;
        top: 380px;
        right: 50%;
        transform: translate(50%);
    }

    .current-insurance-container {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .current-insurance-container h2 {
        font-size: 24px;
        line-height: 115%;
    }

    .current-insurance-block {
        padding: 40px 20px;
    }

    .current-insurance-block-info h3 {
        font-size: 22px;
    }

    .current-insurance-block-info p {
        font-size: 16px;
    }

    .top-rated-insurance {
        padding-top: 40px;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .top-rated-insurance-wrapper {
        padding-bottom: 0;
        padding-top: 0;
    }

    .top-rated-insurance-container {
        min-height: auto;
    }

    .top-rated-insurance-wrapper .form-group {
        flex-direction: column;
    }

    .top-rated-insurance-wrapper .form-group input {
        width: 100%;
        max-width: 100%;
        margin-bottom: 15px;
    }

    .partners-logo-list-item {
        width: 48%;
    }

    .disclaimer p {
        font-size: 12px;
    }

    .disclaimer {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .footer-right .footer-social {
        display: none;
    }

    .footer-left .footer-social {
        display: flex;
        justify-content: flex-start;
    }

    .footer-container {
        align-items: flex-start;
    }

    .footer-social a {
        margin-left: 0;
        margin-right: 24px;
    }

    .footer-nav {
        flex-direction: column;
        display: flex;
    }

    .footer-nav a {
        margin-bottom: 16px;
    }

    .footer-container {
        position: relative;
        padding-bottom: 50px;
    }

    .footer-left p {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 18px;
    }

    .footer-logo img {
        width: 146px;
    }
}

@media (max-width: 600px) {
    .let-you-know .container {
        padding-bottom: 280px;
    }
}

@media (max-width: 480px) {
    .partners-logo-list-item img {
        width: 100%;
    }
}

@media (max-width: 440px) {
    .header__content__image {
        background: url(../images/header-mobile.png) no-repeat 0 0  / 100%;
        height: 240px;
        min-height: auto;
    }

    .how-long-insurance-list-item {
        margin-bottom: 115px !important;
    }

    .testimonials-wrapper {
        padding: 40px 15px 60px 15px;

    }
}

@media (max-width: 400px) {
    .header-nav-mob-list {
        width: 280px;
    }

    .header-form button {
        width: 100%;
    }

    .let-you-know .container {
        padding-bottom: 230px;
    }

    header::before {
        bottom: 196px;
    }
}

.owl-item .testimonials-list {
    opacity: 0;
    -webkit-transition: opacity 1s ease-in-out;
    -moz-transition: opacity 1s ease-in-out;
    -ms-transition: opacity 1s ease-in-out;
    -o-transition: opacity 1s ease-in-out;
    transition: opacity 1s ease-in-out;
}

.owl-item.active .testimonials-list {
    opacity: 1;
}

@media (max-width: 1024px) {
    .how-long-insurance .animation-wrapper {
        display: none;
    }
}