:root {
    /* --header-height: 95px; */
    --white: #FFFFFF;
    --black: #121B2B;
    --color-primary: #F50505;
    --color-hover: #D30202;
    --color-focus: #AE0606;
    --color-disabled: #E4E4E4;
    --yellow: #FCBF02;
    --gray: #F9F9F9;
    --font-primary: "Poppins", sans-serif;
    --font-second: "Hind Vadodara", sans-serif;
    --width-container: 1170px;
    --trans: all .2s ease;
    --header-top-height: 63px;
    --header-main-height: 110px;
}

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--black);
}

.container {
    width: var(--width-container);
    margin-left: auto;
    margin-right: auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

img {
    height: auto;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

details>summary {
    list-style: none;
}

details>summary::marker,
details>summary::-webkit-details-marker {
    display: none;
}

input[type=number] {
    -webkit-appearance: none;
    -moz-appearance: textfield;
}

.title {
    font-size: 42px;
    font-weight: 600;
    line-height: 140%;
    text-align: center;
    font-family: var(--font-second);
}

.title span {
    color: var(--color-primary);
}

.subtitle {
    color: var(--color-primary);
    text-align: center;
    font-family: var(--font-second);
    font-size: 15px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.block-padding {
    padding: 100px 0;
    overflow: hidden;
}

.btn {
    display: inline-block;
    outline: none;
    text-decoration: none;
    padding: 14.5px 41px 13.5px;
    background: var(--color-primary);
    border-radius: 2px;
    color: var(--white);
    border: 2px solid transparent;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-second);
    line-height: 150%;
    letter-spacing: 0.64px;
    text-transform: capitalize;
    cursor: pointer;
    -webkit-transition: var(--trans);
    -o-transition: var(--trans);
    transition: var(--trans);
    text-align: center;
}

.btn:hover,
.btn-white:hover {
    background: var(--color-hover);
    border: 2px solid var(--color-hover);
    color: var(--white);
}

.btn:focus,
.btn-white:focus {
    background: var(--color-focus);
    border: 2px solid var(--color-focus);
    color: var(--white);
}

.btn-transparent-red {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-transparent-white {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--black);
}

/* Header */
.header {
    background-color: var(--white);
    margin-top: var(--header-top-height);
    height: var(--header-main-height);
    position: relative;
}

.header-btn {
    padding-left: 24px;
    padding-right: 24px;
}

.header-wrapper {}

.header-main {
    height: var(--header-main-height);
    /* padding: 15px 0; */
    background-color: var(--white);
}

.header-main.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 98;
}

.header-main-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top {
    height: var(--header-top-height);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    padding: 15px 0;
    z-index: 99;
    border-bottom: 1px solid #E4E4E4;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.header-top.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.header-top-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.link-with-svg {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-second);
    color: var(--black);
    transition: var(--trans);
    text-transform: none !important;
}

.link-with-svg:hover {
    color: var(--color-hover);
}

.link-with-svg svg {
    margin-right: 8px;
}

.header-top__link {
    margin-right: 40px;
}

.header-top-right {
    display: flex;
    align-items: center;
}

.header-top__title {
    font-family: var(--font-second);
    font-size: 20px;
    font-weight: 600;
    line-height: 150%;
}

.header-top-social__item {
    margin-left: 16px;
}

.header-top-social {
    display: flex;
}

.social-item {
    line-height: 0;
    display: block;
    text-decoration: none;
    transition: var(--trans);
}

.social-item:hover {
    opacity: 0.8;
}

.header-mobile {
    display: none;
}

.logo {
    line-height: 0;
}

.logo a {
    display: block;
    line-height: 0;
    text-decoration: none;
}

.logo img {
    max-width: 80px;
}

.header-menu {
    display: flex;
}

.header-menu li {
    list-style: none;
    position: relative;
}

.header-menu>li>a {
    transition: var(--trans);
}

.header-menu>li>a {
    display: block;
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    text-transform: uppercase;
    color: var(--black);
    font-family: var(--font-second);
    text-decoration: none;
    border-bottom: 5px solid transparent;
    padding: 40.5px 16px;
}

.header-menu .menu-item-has-children>a {
    padding-right: 34px;
    position: relative;
}

.menu-item-has-children>a::before {
    content: '';
    background-image: url('data:image/svg+xml,<svg viewBox="0 0 10 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.75 0.75L4.75 4.75L8.75 0.75" stroke="%23121B2B" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    width: 10px;
    height: 6px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50px;
    right: 16px;
    transition: var(--trans);
}

.header-menu .menu-item-has-children:hover>a::before {
    background-image: url('data:image/svg+xml,<svg viewBox="0 0 10 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.75 0.75L4.75 4.75L8.75 0.75" stroke="%23F50505" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    transform: rotate(-180deg);
}

.header-menu>li>a:hover,
.header-menu>li:hover>a {
    color: var(--color-hover);
    border-bottom: 5px solid var(--color-hover);
}

.header-menu .sub-menu {
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0px;
    width: 170px;
    padding: 24px;
    border-radius: 2px;
    box-shadow: 0 0 30px 0 rgba(39, 39, 39, 0.08);
    background: #fff;
    transition: var(--trans);
}

.header-menu li:hover>.sub-menu {
    visibility: visible;
}

.sub-menu li a {
    display: block;
    text-decoration: none;
    color: var(--black);
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    font-family: var(--font-second);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.sub-menu li a:hover {
    color: var(--color-hover);
}

.header-menu li:hover>.sub-menu li a:hover {
    transition: var(--trans);
}

.sub-menu li:last-child a {
    margin-bottom: 0;
}


#form_loader {
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff85;
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center
}

#form_loader.active {
    visibility: visible
}

#gear {
    width: 200px
}

#gear img {
    width: 100%;
    height: auto;
    animation: rotateGear 2.5s infinite linear
}

@keyframes rotateGear {
    from {
        -webkit-transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(359deg)
    }
}

.thank-wrapper {
    text-align: center;
    padding: 40px 0px 120px;
    background-color: var(--gray);
}

.thank-title {
    color: var(--black);
    font-size: 42px;
    font-weight: 600;
    line-height: 130%;
    font-family: var(--font-second);
}

.thank-text {
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    margin: 16px auto 40px;
}

.thank-img {
    line-height: 0;
    margin-bottom: 48px;
}

.thank-img img {
    max-width: 475px;
    height: auto;
}


.page-wrapper {
    padding: 100px 0px;
}

.title-404 {
    text-align: center;
}

.page-content {
    font-weight: 300;
    font-size: 18px;
    line-height: 32px;
    color: var(--black);
    word-wrap: break-word;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
    margin: 20px 0 10px;
}

.page-content p {
    margin-bottom: 10px;
}

.page-content img {
    max-width: 100%;
    height: auto;
}



/* Head */
.head {
    padding: 160px 0 153px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: var(--white);
}

.head-content {
    max-width: 800px;
}

.head-title {
    font-size: 62px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    text-transform: uppercase;
    font-family: var(--font-second);
}

.head-subtitle {
    font-size: 18px;
    font-weight: 600;
    line-height: 150%;
    margin-top: 8px;
}

.head-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 72px 0;
}

.head-bottom__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 50px;
}

.head-bottom__item:last-child {
    margin-right: 0;
}

.head-bottom__item p {
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    margin-left: 8px;
}



/* Feedback */
.feedback {
    background-image: url(../images/map-dotted-background.png);
    background-position: center;
    padding: 80px 0;
    overflow: hidden;
}

.feedback-slider {
    margin-top: 48px;
    margin-left: -8px;
    margin-right: -8px;
}

.feedback-item {
    padding: 24px;
    border-radius: 24px;
    border-radius: 8px;
    background: var(--white);
    margin: 0 8px;
    border: 1px solid #E9E9E9;
}

.rating-stars {
    --percent: calc(var(--rating) / 5 * 100%);
    font-size: 20px;
}

.rating-stars:before {
    content: '★★★★★';
    background: -o-linear-gradient(left, var(--yellow) var(--percent), #C6C3D2 var(--percent));
    background: -webkit-gradient(linear, left top, right top, from(var(--yellow)), to(#C6C3D2));
    background: linear-gradient(90deg, var(--yellow) var(--percent), #C6C3D2 var(--percent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0
}

.feedback-item__name {
    font-size: 16px;
    font-weight: 600;
    line-height: 130%;
    margin-top: 8px;
    color: var(--black);
}

.feedback-item__text {
    margin: 8px 0 16px;
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
}

.feedback-item__img {
    line-height: 0;
}

.feedback-item__img img {
    max-width: 60px;
}

.slick-arrow {
    font-size: 0;
    border: 0;
    background: #727272;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    position: absolute;
    top: calc(50% - 20px);
    z-index: 2;
    cursor: pointer;
}

.slick-next {
    right: -48px;
}

.slick-prev {
    left: -48px;
}

.slick-arrow::before {
    content: '';
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M21 15L16 20.5L21 26" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
}

.slick-next::before {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}



/* Services block - START */
.services {
    overflow: hidden;
    background-color: var(--gray);
}

.services .title {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.lib-circle-container {
    width: 1170px;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--font-primary);
}

.lib-circle-block .title {
    max-width: 560px;
}

.center-block-btn {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-block-btn .btn {
    min-width: 211px;
}

.center-block-btn .call-btn,
.ready-content-buttons .call-btn {
    margin-right: 24px;
    padding-right: 22px;
    padding-left: 22px;
}

.lib-circle-wrapper {
    width: 520px;
    height: 520px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    margin-top: 48px;
    margin-bottom: 70px;
    text-align: center;
    border: 2px solid var(--black);
    border-radius: 50%;
}

.lib-circle-img {
    line-height: 0;
}

.lib-circle-img img {
    border-radius: 50%;
    width: 100%;
    height: auto;
}

.lib-circle__item {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
}

.lib-circle__item:nth-child(1),
.lib-circle__item:nth-child(3),
.lib-circle__item:nth-child(5),
.lib-circle__item:nth-child(7) {
    text-align: right;
}

.lib-circle__item:nth-child(2),
.lib-circle__item:nth-child(4),
.lib-circle__item:nth-child(6),
.lib-circle__item:nth-child(8) {
    text-align: left;
}

.lib-circle__item-icon {
    width: 96px;
    height: 96px;
    background-color: var(--gray);
    line-height: 0;
}

.lib-circle__item-content {
    max-height: 111px;
}

.icon-square .lib-circle__item-icon {
    width: 96px;
    height: 96px;
}

.icon-square .lib-circle__item-content {
    max-height: 96px;
}

.lib-circle__item-icon img {
    max-width: 100%;
    height: auto;
}

/* icon-circle, icon-square */
.icon-circle .lib-circle__item-icon,
.icon-circle.border .lib-circle__item-icon {
    border-radius: 50%;
}

.icon-square .lib-circle__item-icon,
.icon-square.border .lib-circle__item-icon {
    border-radius: 6px;
}

.icon-circle.border .lib-circle__item-icon,
.icon-square.border .lib-circle__item-icon {
    border: 2px solid var(--black);
}

.lib-circle__item .lib-circle__item-title {
    margin-bottom: 4px;
    transition: var(--trans);
}

.lib-circle__item:hover .lib-circle__item-title {
    color: var(--color-primary);
}


.lib-circle__item-content {
    width: 280px;
}

.lib-circle__item-title {
    color: var(--black);
    font-family: var(--font-second);
    font-size: 19px;
    font-weight: 600;
    line-height: 115%;
}

.lib-circle__item-text {
    color: var(--black);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.lib-circle__item:nth-child(1) .lib-circle__item-icon,
.lib-circle__item:nth-child(3) .lib-circle__item-icon,
.lib-circle__item:nth-child(5) .lib-circle__item-icon,
.lib-circle__item:nth-child(7) .lib-circle__item-icon {
    margin-left: 23px;
}

.lib-circle__item:nth-child(2) .lib-circle__item-icon,
.lib-circle__item:nth-child(4) .lib-circle__item-icon,
.lib-circle__item:nth-child(6) .lib-circle__item-icon,
.lib-circle__item:nth-child(8) .lib-circle__item-icon {
    margin-right: 23px;
}


/* items-5 */
.lib-circle-wrapper.items-5 {
    margin-top: 204px;
}

.items-5 .lib-circle__item-icon {
    width: 96px;
    height: 96px;
}

.items-5 .lib-circle__item-content {
    max-height: 96px;
}

.items-5 .lib-circle__item:nth-child(2),
.items-5 .lib-circle__item:nth-child(4) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.items-5 .lib-circle__item:nth-child(1) {
    left: -360px;
}

.items-5 .lib-circle__item:nth-child(3) {
    left: -283px;
}

.items-5 .lib-circle__item:nth-child(2) {
    right: -360px;
}

.items-5 .lib-circle__item:nth-child(4) {
    right: -283px;
}

.items-5 .lib-circle__item:nth-child(1),
.items-5 .lib-circle__item:nth-child(2) {
    top: 143px;
}

.items-5 .lib-circle__item:nth-child(3),
.items-5 .lib-circle__item:nth-child(4) {
    bottom: 10px;
}

.items-5 .lib-circle__item:nth-child(5) {
    top: -165px;
    left: calc(50% - 143px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
}

.items-5 .lib-circle__item:nth-child(5) .lib-circle__item-content {
    margin-bottom: 24px;
}

.items-5 .lib-circle__item:nth-child(5) .lib-circle__item-icon {
    margin-left: 0;
}


/* items-6 */
.items-6 .lib-circle__item:nth-child(2),
.items-6 .lib-circle__item:nth-child(4),
.items-6 .lib-circle__item:nth-child(6) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.items-6 .lib-circle__item:nth-child(1),
.items-6 .lib-circle__item:nth-child(5) {
    left: -316px;
}

.items-6 .lib-circle__item:nth-child(2),
.items-6 .lib-circle__item:nth-child(6) {
    right: -316px;
}

.items-6 .lib-circle__item:nth-child(1),
.items-6 .lib-circle__item:nth-child(2) {
    top: 38px;
}

.items-6 .lib-circle__item:nth-child(5),
.items-6 .lib-circle__item:nth-child(6) {
    bottom: 38px;
}

.items-6 .lib-circle__item:nth-child(3) {
    left: -360px;
}

.items-6 .lib-circle__item:nth-child(4) {
    right: -360px;
}

.items-6 .lib-circle__item:nth-child(3),
.items-6 .lib-circle__item:nth-child(4) {
    top: 206px;
}


/* items-7 */
.lib-circle-wrapper.items-7 {
    margin-top: 200px;
}

.items-7 .lib-circle__item:nth-child(2),
.items-7 .lib-circle__item:nth-child(4),
.items-7 .lib-circle__item:nth-child(6) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.items-7 .lib-circle__item:nth-child(1),
.items-7 .lib-circle__item:nth-child(5) {
    left: -300px;
}

.items-7 .lib-circle__item:nth-child(2),
.items-7 .lib-circle__item:nth-child(6) {
    right: -300px;
}

.items-7 .lib-circle__item:nth-child(1),
.items-7 .lib-circle__item:nth-child(2) {
    top: 38px;
}

.items-7 .lib-circle__item:nth-child(5),
.items-7 .lib-circle__item:nth-child(6) {
    bottom: 38px;
}

.items-7 .lib-circle__item:nth-child(3) {
    left: -360px;
}

.items-7 .lib-circle__item:nth-child(4) {
    right: -360px;
}

.items-7 .lib-circle__item:nth-child(3),
.items-7 .lib-circle__item:nth-child(4) {
    top: 206px;
}

.items-7 .lib-circle__item:nth-child(7) {
    top: -180px;
    left: calc(50% - 143px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
}

.items-7 .lib-circle__item:nth-child(7) .lib-circle__item-content {
    margin-bottom: 22px;
}

.items-7 .lib-circle__item:nth-child(7) .lib-circle__item-icon {
    margin-left: 0;
}


/* items-8 */

.lib-circle-wrapper.items-8 {
    margin-top: 55px;
}

.items-8 .lib-circle__item:nth-child(2),
.items-8 .lib-circle__item:nth-child(4),
.items-8 .lib-circle__item:nth-child(6),
.items-8 .lib-circle__item:nth-child(8) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.items-8 .lib-circle__item:nth-child(1),
.items-8 .lib-circle__item:nth-child(7) {
    left: -255px;
}

.items-8 .lib-circle__item:nth-child(2),
.items-8 .lib-circle__item:nth-child(8) {
    right: -255px;
}

.items-8 .lib-circle__item:nth-child(1),
.items-8 .lib-circle__item:nth-child(2) {
    top: -20px;
}

.items-8 .lib-circle__item:nth-child(3),
.items-8 .lib-circle__item:nth-child(5) {
    left: -355px;
}

.items-8 .lib-circle__item:nth-child(4),
.items-8 .lib-circle__item:nth-child(6) {
    right: -355px;
}

.items-8 .lib-circle__item:nth-child(3),
.items-8 .lib-circle__item:nth-child(4) {
    top: 130px;
}

.items-8 .lib-circle__item:nth-child(5),
.items-8 .lib-circle__item:nth-child(6) {
    bottom: 130px;
}

.items-8 .lib-circle__item:nth-child(7),
.items-8 .lib-circle__item:nth-child(8) {
    bottom: -20px;
}



/* How */
.how-subtitle {
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 120%;
    margin-top: 8px;
}

.how-wrapper {
    margin: 64px 0px;
}

.how-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 80px;
}

.how-item:last-child {
    margin-bottom: 0;
}

.how-item__img {
    line-height: 0;
}

.how-item__wrapp {
    position: relative;
}

.how-item__content {
    width: 533px;
    position: relative;
}

.how-item__content h3 {
    font-size: 30px;
    font-weight: 600;
    line-height: 44px;
    text-transform: capitalize;
    margin-bottom: 24px;
    font-family: var(--font-second);
}

.how-item__content p,
.how-item__content {
    font-size: 15px;
    font-weight: 400;
    line-height: 150%;
}

.how-number {
    color: #FFDDDD;
    font-size: 120px;
    font-weight: 600;
    line-height: 100%;
    position: absolute;
    top: -75px;
    left: 2px;
    font-family: var(--font-second);
}

.how-item:nth-child(2) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.how-item__img img {
    max-width: 416px;
    height: auto;
}



/* Cost */
.cost {
    background-color: var(--gray);
}

.cost-wrapper {
    margin-top: 40px;
}

.cost-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
}

.cost-tab {
    padding-bottom: 12px;
    padding-left: 24px;
    padding-right: 24px;
    text-align: center;
    border-bottom: 3px solid #727272;
    position: relative;
    cursor: pointer;
    margin-bottom: 40px;
    color: #727272;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-family: var(--font-second);
}

.cost-tab h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 115%;
    text-transform: none;
}

.cost-tab.active {
    color: var(--black);
    border-bottom: 3px solid var(--color-primary);

}

.tab_item {
    display: none;
}

.tab_item:first-child {
    display: block;
}

.cost-table {
    width: 100%;
    text-align: left;
    border-spacing: 0;
}

.mobile-table {
    display: none;
}

.transit-table {
    width: 770px;
    margin-left: auto;
    margin-right: auto;
}

.cost-table tr:nth-child(odd) {
    background: #E7EDF7;
}

.cost-table tr:nth-child(even) {
    background: var(--white);
}

.cost-table tr:first-child th:first-child {
    border-top-left-radius: 8px;
}

.cost-table tr:first-child th:last-child {
    border-top-right-radius: 8px;
}

.cost-table tr:last-child td:first-child {
    border-bottom-left-radius: 8px;
}

.cost-table tr:last-child td:last-child {
    border-bottom-right-radius: 8px;
}

.cost-table tr th,
.cost-table tr td {
    border: none;
}

.cost-table tr th {
    padding: 20px 28px;
    font-weight: 600;
    font-size: 16px;
    line-height: 115%;
    text-transform: uppercase;
    font-family: var(--font-second);
}

.transit-table tr th {
    text-align: center;
}

.cost-table tr td {
    padding: 20px 28px;
    font-size: 15px;
    font-weight: 400;
    line-height: 150%;
}

.table-center {
    text-align: center;
}

.cost-under-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    margin-top: 24px;
}


/* Recent */
.recent-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 50px;
}

.recent-wrapper .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.recent-wrapper .slick-track:before,
.recent-wrapper .slick-track:after {
    display: none;
}

.recent-item {
    width: calc(33.33% - 16px);
    text-decoration: none;
    -webkit-transition: var(--trans);
    -o-transition: var(--trans);
    transition: var(--trans);
    border-radius: 8px;
    background: var(--white);
    border: 2px solid #F3F6FC;
    overflow: hidden;
}

.recent-item:hover {
    border: 2px solid var(--color-primary);
}

.recent-item:focus {
    text-decoration: none;
}

.recent-content {
    padding: 32px 24px;
}

.recent-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 133%;
    text-transform: uppercase;
    color: var(--black);
    font-family: var(--font-second);
}

.recent-img {
    width: 100%;
    height: 240px;
    line-height: 0;
    border-radius: 8px 8px 0px 0px;
    overflow: hidden;
    position: relative;
}

.recent-img img {
    position: absolute;
    bottom: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: auto;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 8px 8px 0px 0px;
}

.recent-locations {
    margin: 18px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.recent-locations__content {
    height: 86px;
    margin-left: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.recent-locations__content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    color: var(--black);
}

.recent-price {
    font-weight: 600;
    font-size: 20px;
    line-height: 115%;
    color: var(--black);
}

.recent-locations__img {
    line-height: 0;
}

/* FAQ */
.faq {
    background-color: var(--gray);
}

.questions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 40px;
}

.questions-details,
.questions-details summary {
    background-image: none;
    -webkit-appearance: none;
    display: block;
}

.questions-details summary::-webkit-details-marker {
    display: none;
}

.questions-details {
    margin-bottom: 8px;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(39, 39, 39, 0.06);
    box-shadow: 0px 0px 30px 0px rgba(39, 39, 39, 0.06);
    border-radius: 8px;
    position: relative;
}

.questions-details:last-child {
    margin-bottom: 0;
}

.questions-details summary {
    padding: 24px 24px 24px 32px;
    cursor: pointer;
}

details[open]>summary {
    padding: 24px 24px 16px 32px;
}

.questions-details summary h3 {
    font-size: 20px;
    font-weight: 600;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    line-height: 115%;
    color: var(--black);
}

.questions-details::before {
    content: '';
    background: var(--color-primary);
    border-radius: 8px 0px 0px 8px;
    width: 8px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.summary-arrow {
    margin-left: 20px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    pointer-events: none;
}

.summary-arrow img {
    min-width: 18px;
}

details[open] .summary-arrow img {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.questions-details p {
    padding: 0px 50px 24px 32px;
    font-size: 15px;
    font-weight: 400;
    line-height: 150%;
}


/* Ready */
.ready {
    background-color: var(--color-primary);
    position: relative;
    color: var(--white);
}

.ready-content {
    max-width: 650px;
    padding: 114px 0;
}

.ready-content .title {
    text-align: left;
}

.ready-text {
    margin: 16px 0 40px;
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
}

.ready-image {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: calc(50% - 260px);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.ready-content-block {
    max-width: 700px;
}

.ready-content-buttons {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.ready-content-buttons .btn-white {
    color: var(--color-primary);
}

.ready-content-buttons .btn-white:hover,
.ready-content-buttons .btn-white:focus {
    color: var(--white);
}

.footer {
    background-color: #121B2B;
    color: var(--white);
    padding: 54px 0 12px;
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
}

.footer-left {
    display: flex;
}

.footer-item {
    margin-right: 150px;
}

.footer-item:last-child {
    margin-right: 0;
}

.footer-item__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 150%;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.footer-menu li {
    list-style-type: none;
    margin-bottom: 26px;
}

.footer-menu li a {
    text-decoration: none;
    color: var(--white);
    font-size: 15px;
    font-weight: 400;
    line-height: 150%;
    transition: var(--trans);
    text-transform: capitalize;
}

.footer-menu li a:hover {
    color: var(--color-hover);
}

.footer-menu li:last-child {
    margin-bottom: 0;
}

.footer-right {
    display: flex;
    flex-direction: column;
}

.footer-right .btn:nth-child(2) {
    margin-top: 24px;
}

.footer-copyright {
    margin-top: 64px;
    text-align: center;
}

.footer-copyright p {
    color: var(--white);
    font-size: 13px;
    font-weight: 400;
    line-height: 150%;
    margin-top: 8px;
}

.footer-copyright a {
    color: var(--white);
    transition: var(--trans);
}

.footer-copyright a:hover {
    color: var(--color-hover);
}

.footer-follow {
    margin-top: 20px;
    display: flex;
    align-items: center;
}

.footer-follow__title {
    color: var(--white);
    font-family: var(--font-second);
    font-size: 15px;
    font-weight: 600;
    line-height: 150%;
}

.footer-follow-social {
    display: flex;
}

.footer-follow-social__item {
    margin-left: 16px;
}





/* Popup */
.popup {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 30%);
    display: flex;
    justify-content: center;
    overflow-y: scroll;
    transition: var(--trans);
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 20px 0;
}

.popup::-webkit-scrollbar {
    display: none;
}

.popup.active {
    visibility: visible !important;
    opacity: 1;
}

.popup-wrapper {
    margin-top: auto;
    margin-bottom: auto;
    background: #fff;
    box-shadow: 0px 0px 18px 0px rgba(54, 54, 54, 0.09);
    border-radius: 8px;
    position: relative;
}

.popup-close {
    position: absolute;
    top: 22px;
    right: 22px;
    padding: 5px;
    cursor: pointer;
}

.popup-close__icon {
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.16113 19L18.8388 1.32233" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M1.16113 1L18.8388 18.6777" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.popup.active .popup-close__icon {
    transition: all 0.3s ease;
}

.popup-close:hover .popup-close__icon {
    transform: rotate(-90deg);
}

.error-hint {
    display: inline-block;
    color: var(--red);
    font-size: 12px;
    font-weight: 550;
    line-height: 150%;
    margin-top: 2px;
    border: none !important;
}

.response-output {
    display: none;
    margin-bottom: 16px;
    padding: 15px;
    margin-top: 12px;
}

.response-output.failed {
    display: block;
    border: 1px solid red;
}

.response-output.sent {
    display: block;
    border: 1px solid #46b450;
}

.popup-call .popup-wrapper {
    width: 612px;
    padding: 0;
    margin-top: auto;
    margin-bottom: auto;
}

.popup-call-content {
    padding: 32px 32px 40px;
}

.popup-call__image {
    width: 100%;
    height: 211px;
    text-align: center;
    line-height: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.popup-call__title {
    font-weight: 600;
    font-size: 32px;
    line-height: 120%;
    color: var(--black);
    font-family: var(--font-second);
}

.popup-call__title span {
    color: var(--color-primary);
}

.popup-call__text {
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: var(--black);
    margin-top: 10px;
}

.popup-call__list {
    margin: 24px 0 32px;
    padding: 24px 40px;
    border-top: 1px solid #E4E4E4;
    border-bottom: 1px solid #E4E4E4;
}

.popup-call__list li {
    display: flex;
    align-items: flex-end;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
}

.popup-call__list li:last-child {
    margin-bottom: 0;
}

.popup-call__list li strong {
    color: #727272;
    font-size: 24px;
    line-height: 100%;
    font-weight: 500;
    width: 19px;
    margin-right: 17px;
}

.popup-call__list-block li strong {
    color: var(--black);
}

.popup-call__list li svg {
    margin-right: 12px;
    min-width: 24px;
}

.maybe-later {
    font-size: 16px;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    margin-top: 8px;
    display: inline-block;
    padding: 16px;
    line-height: 150%;
    letter-spacing: 0.64px;
    text-transform: capitalize;
    cursor: pointer;
}

.popup-call-thank .popup-wrapper {
    width: 506px;
}

.popup-call-thank .popup-call__image {
    height: 171px;
}

.popup-call-thank .popup-call__text {
    text-align: left;
    font-family: var(--font-second);
}

.popup-call-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.popup-call-thank__text {
    font-size: 14px;
    line-height: 150%;
    margin-bottom: 40px;
}

.popup-call__separator {
    width: 100%;
    border-bottom: 1px solid #E4E4E4;
    margin: 24px 0;
}

.popup-call-button {
    text-align: center;
}

.fill-form {
    display: none;
}