@charset "UTF-8";
.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@keyframes stretch {
    0% {
        color: #006b25
    }
    100% {
        color: #1b242b
    }
}

@-webkit-keyframes logoRes {
    from {
        opacity: 0;
        -webkit-transform: scale(.7)
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1)
    }
}

@keyframes logoRes {
    from {
        opacity: 0;
        transform: scale(.7)
    }
    to {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes showDialog {
    0% {
        opacity: 0;
        transform: translateY(40px)
    }
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes scale {
    0% {
        transform: scale(.8)
    }
    100% {
        transform: scale(1.2)
    }
}

.scale {
    animation-name: scale;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    animation-delay: 0s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-fill-mode: none;
    animation-play-state: running
}

@-webkit-keyframes jump {
    0% {
        bottom: 0
    }
    50% {
        bottom: 10px
    }
    100% {
        bottom: 0
    }
}

@keyframes jump {
    0% {
        bottom: 0
    }
    50% {
        bottom: 10px
    }
    100% {
        bottom: 0
    }
}

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%)
    }
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(.7)
    }
    to {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes trin {
    from {
        transform: rotate3d(0, 0, 1, 0deg)
    }
    20%, 32%, 44%, 56%, 68% {
        transform: rotate3d(0, 0, 1, 0deg)
    }
    23%, 35%, 47%, 59%, 71% {
        transform: rotate3d(0, 0, 1, 15deg)
    }
    26%, 38%, 50%, 62%, 74% {
        transform: rotate3d(0, 0, 1, 0deg)
    }
    29%, 41%, 53%, 65%, 77% {
        transform: rotate3d(0, 0, 1, -15deg)
    }
    80% {
        transform: rotate3d(0, 0, 1, 0deg)
    }
}

.trin {
    animation-name: trin;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none
}

video {
    width: 100%
}

audio, canvas, iframe, img, svg, video {
    vertical-align: middle
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0
}

textarea {
    resize: vertical
}

html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
    display: block
}

audio, canvas, progress, video {
    display: inline-block;
    vertical-align: baseline
}

audio:not([controls]) {
    display: none;
    height: 0
}

[hidden], template {
    display: none
}

a {
    background-color: #fff0
}

a:active, a:hover, a:focus {
    outline: 0
}

abbr[title] {
    border-bottom: 1px dotted
}

b, strong {
    font-weight: 700
}

dfn {
    font-style: italic
}

mark {
    background: #ff0;
    color: #000
}

small {
    font-size: 80%
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub.red, sup.red {
    color: #e31e26
}

sup {
    top: -.5em
}

sub {
    bottom: -.25em
}

svg:not(:root) {
    overflow: hidden
}

hr {
    box-sizing: content-box;
    height: 0
}

pre {
    overflow: auto
}

p {
    font: 400 1.5rem/1.6 "Roboto", sans-serif
}

code, kbd, pre, samp {
    font-family: monospace, monospace;
    font-size: 1em
}

button, input, optgroup, select, textarea {
    color: inherit;
    font: inherit;
    margin: 0
}

button {
    overflow: visible
}

button, select {
    text-transform: none
}

button, html input[type=button], input[type=reset], input[type=submit] {
    -webkit-appearance: button;
    cursor: pointer
}

button[disabled], html input[disabled] {
    cursor: default
}

button::-moz-focus-inner, input::-moz-focus-inner {
    border: 0;
    padding: 0
}

input {
    line-height: normal
}

input[type=checkbox], input[type=radio] {
    padding: 0
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
    height: auto
}

input[type=search] {
    -webkit-appearance: textfield
}

input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

legend {
    border: 0;
    padding: 0
}

textarea {
    overflow: auto
}

optgroup {
    font-weight: 700
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

td, th {
    padding: 0
}

input[type=email], input[type=number], input[type=search], input[type=text], input[type=tel], input[type=url], input[type=password], textarea {
    -webkit-appearance: none;
    appearance: none
}

ul, ol {
    list-style-position: inside
}

img {
    max-width: 100%;
    height: auto;
    border: 0
}

[class^=icon_], [class*=" icon_"], .icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    fill: currentColor
}

ul li, ol li {
    list-style: none
}

.dialog_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    z-index: 1500;
    padding: 0 1rem;
    overflow-y: auto
}

.dialog {
    display: none;
    align-items: center;
    max-width: 40rem;
    margin: 4rem auto;
    min-height: calc(100% - 8rem)
}

.dialog.modal_small {
    max-width: 31rem
}

.dialog.modal_medium {
    max-width: 40rem
}

.dialog.modal_large {
    max-width: 85rem
}

.dialog.modal_xlarge {
    max-width: 65vw
}

.modal_wrap {
    width: 100%;
    padding: 2rem 3rem 2.5rem;
    border-radius: 1.5rem;
    background-color: #fff;
    border-top: .6rem solid #f86020;
    z-index: 1503;
    position: relative
}

.modal_wrap .icon_close {
    position: absolute;
    top: .5rem;
    right: .5rem;
    color: #f86020;
    cursor: pointer;
    font-size: 3rem;
    transition: color 0.3s linear
}

.modal_wrap .icon_close:focus {
    color: #dc3545
}

.modal_wrap .icon_close .icon {
    display: block
}

.modal_wrap .image_wrap {
    position: relative;
    width: 7rem;
    height: 7rem;
    line-height: 7rem;
    margin: -5.5rem auto 0;
    border-radius: 50%;
    text-align: center;
    background-color: #f86020
}

.modal_wrap .image_wrap .icon {
    height: 4rem;
    width: 4rem;
    color: #fff;
    animation: zoomIn 0.5s both;
    animation-delay: 0.2s
}

.modal_wrap .modal_text {
    text-align: center;
    margin: 2rem 0 .5rem
}

.modal_wrap .modal_text .modal_title {
    font-size: 2.4rem;
    line-height: 1.4;
    font-weight: 700;
    color: #000;
    text-transform: capitalize;
    margin: 0 auto
}

.modal_wrap .modal_text p {
    margin: .5rem auto;
    max-width: 88%
}

.modal_wrap .modal_buttons {
    font-size: 0;
    text-align: center;
    margin: 2rem auto 0;
    max-width: 35rem
}

.modal_wrap .modal_buttons .button {
    width: calc(50% - 1.4rem);
    min-width: unset;
    margin: .5rem .7rem
}

.dialog_bg {
    position: fixed;
    left: 0;
    top: 0;
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgb(33 33 33 / .55)
}

.dialog_wrapper.visible, .dialog_bg.visible {
    display: block
}

.dialog.visible {
    display: flex
}

.dialog_opened {
    overflow: hidden;
    padding-right: .8rem
}

.dialog_opened.dialog_scrollable_mobile {
    padding-right: 0
}

.dialog_opened .dialog_bg, .dialog_opened .modal_wrap {
    animation-duration: 0.3s;
    animation-fill-mode: both
}

.dialog_opened .dialog_bg {
    animation-name: fadeIn
}

.dialog_opened .modal_wrap {
    animation-name: showDialog
}

.modal_status.dialog .modal_wrap {
    color: #000;
    background-color: #fff;
    text-align: center
}

.modal_status.dialog .dialog_close.icon_close {
    display: none
}

.modal_status.dialog .modal_text {
    margin: 2rem 0
}

.modal_status.dialog .modal_text .modal_title {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.3;
    text-transform: initial;
    margin: 0 auto 1rem;
    max-width: 100%
}

.modal_status.dialog .modal_text p {
    margin: .5rem auto;
    max-width: 88%
}

.modal_success.dialog .modal_wrap {
    border-top: .6rem solid #28a745
}

.modal_success.dialog .check_wrap {
    border: .2rem solid #28a745;
    overflow: hidden;
    animation: wrap 0.3s ease-in-out forwards;
    animation-delay: 0.3s;
    transform: scale(0)
}

.modal_success.dialog .check_wrap::before, .modal_success.dialog .check_wrap::after {
    content: "";
    position: absolute;
    background-color: #fff;
    width: 0;
    height: .5rem;
    transform-origin: left;
    animation-duration: 0.3s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards
}

.modal_success.dialog .check_wrap::before {
    top: 3.2rem;
    left: 2.1rem;
    transform: rotate(45deg);
    animation-name: left;
    animation-delay: 0.8s
}

.modal_success.dialog .check_wrap::after {
    top: 4.2rem;
    left: 2.9rem;
    transform: rotate(-45deg);
    animation-name: right;
    animation-delay: 1.1s
}

@keyframes wrap {
    0% {
        background-color: #fff0;
        transform: scale(0)
    }
    100% {
        background-color: #28a745;
        transform: scale(1)
    }
}

@keyframes left {
    0% {
        width: 0
    }
    100% {
        width: 1.5rem
    }
}

@keyframes right {
    0% {
        width: 0
    }
    100% {
        width: 3rem
    }
}

.modal_danger.dialog .modal_wrap {
    border-top: .6rem solid #dc3545
}

.modal_danger.dialog .checkmark {
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    background-color: #fff0;
    box-shadow: inset 0 0 0 #dc3545;
    animation: fill 0.4s ease-in-out 0.4s forwards, scale2 0.3s ease-in-out 0.9s both
}

.modal_danger.dialog .checkmark_circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #dc3545;
    fill: none;
    animation: stroke 0.6s cubic-bezier(.65, 0, .45, 1) forwards
}

.modal_danger.dialog .checkmark_check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(.65, 0, .45, 1) 0.8s forwards
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0
    }
}

@keyframes scale2 {
    0%, 100% {
        transform: none
    }
    50% {
        transform: scale3d(1.1, 1.1, 1)
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0 0 0 5rem #dc3545
    }
}

.modal_warning.dialog {
    border-top: .6rem solid #ffb92e
}

.modal_warning.dialog .image_wrap {
    background-color: #ffb92e
}

.modal_info.dialog {
    border-top: .6rem solid #119eb5
}

.modal_info.dialog .image_wrap {
    background-color: #119eb5
}

.dialog .contact_form .modal_text {
    margin: 2rem 0
}

.dialog .contact_form textarea.input {
    min-height: 7.3rem
}

.dialog .contact_form .button {
    display: block
}

.dialog .contact_form .form_item_captcha.form_item_captcha_flex {
    margin: 2rem 0 0;
    flex-wrap: wrap
}

.dialog .contact_form .row_f [class*=col_] {
    width: calc(100% - 3.01rem)
}

.modal_video.dialog {
    padding: 1.5rem;
    border: none;
    width: 65vw;
    max-width: 100%;
    flex-shrink: 0
}

.modal_video.dialog .video_frame {
    width: 100%;
    height: 40rem;
    border-radius: 1.5rem
}

.modal_video.dialog .icon_close {
    display: none
}

.toast_notifications {
    position: fixed;
    bottom: 3rem;
    right: 2rem;
    z-index: 99999999
}

.toast_notifications .toast, .toast_notifications .column {
    display: flex;
    align-items: center
}

.toast_notifications .toast {
    width: 40rem;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 1.6rem 1.7rem;
    margin-bottom: 1rem;
    background: #fff;
    justify-content: space-between;
    animation: show_toast 0.3s ease forwards;
    box-shadow: 0 .2rem .8rem 0 rgb(99 99 99 / .2)
}

@keyframes show_toast {
    0% {
        transform: translateX(100%)
    }
    40% {
        transform: translateX(-5%)
    }
    80% {
        transform: translateX(0%)
    }
    100% {
        transform: translateX(-10px)
    }
}

.toast_notifications .toast.hide {
    animation: hide_toast 0.3s ease forwards
}

@keyframes hide_toast {
    0% {
        transform: translateX(-10px)
    }
    40% {
        transform: translateX(0%)
    }
    80% {
        transform: translateX(-5%)
    }
    100% {
        transform: translateX(calc(100% + 20px))
    }
}

.toast::before {
    position: absolute;
    content: "";
    height: .3rem;
    width: 100%;
    bottom: 0;
    left: 0;
    animation: progress 4s linear forwards
}

@keyframes progress {
    100% {
        width: 0%
    }
}

.toast.success::before {
    background-color: #43B14B
}

.toast.error::before {
    background-color: #FF3F0A
}

.toast.warning::before {
    background-color: #D8CD31
}

.toast.info::before {
    background-color: #4fc8f4
}

.toast .column svg {
    width: 2.6rem;
    height: 2.6rem;
    flex-shrink: 0
}

.toast.success .column svg, .toast.success .column span {
    color: #43B14B
}

.toast.error .column svg, .toast.error .column span {
    color: #E24D4C
}

.toast.warning .column svg, .toast.warning .column span {
    color: #D8CD31
}

.toast.info .column svg, .toast.info .column span {
    color: #4fc8f4
}

.toast .column span {
    font-size: 1.6rem;
    font-weight: 600;
    margin-left: 1.2rem;
    color: #272727;
    flex-grow: 1
}

.toast_notifications .removeTOAST {
    display: flex;
    cursor: pointer;
    flex-shrink: 0
}

.toast_notifications .removeTOAST .icon {
    width: 1.6rem;
    height: 1.6rem;
    color: #000;
    transition: 0.3s linear
}

html {
    font-size: 62.5%
}

body {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    font-family: "Roboto", sans-serif;
    font-size: 1.6rem;
    -webkit-tap-highlight-color: #fff0;
    -webkit-tap-highlight-color: #fff0;
    margin: 0;
    padding-top: 11.6rem
}

[disabled], .disabled {
    opacity: .5;
    cursor: not-allowed;
    pointer-events: none
}

.clearfix::before, .row::before, .clearfix::after, .row::after {
    content: " ";
    display: table
}

.clearfix::after, .row::after {
    clear: both
}

.clearfix, .row {
    *zoom: 1
}

a {
    text-decoration: none;
    color: inherit;
    transition: .3s
}

.table {
    display: table
}

.tableb {
    display: table;
    border-collapse: collapse;
    border-spacing: 0
}

.trow {
    display: table-row
}

.tcell {
    display: table-cell;
    vertical-align: middle
}

.tc {
    text-align: center
}

.tl {
    text-align: left
}

.tr {
    text-align: right
}

.fl {
    float: left
}

.fr {
    float: right
}

hr {
    border-top: 1px solid #dbdbdb;
    border-bottom: 0;
    border-right: 0;
    border-left: 0;
    clear: both;
    margin: 2.4rem 0
}

hr.hr {
    border-top: 1px solid #dbdbdb;
    border-bottom: 0;
    border-right: 0;
    border-left: 0;
    clear: initial;
    margin: 2rem 0
}

hr.dotted {
    border-style: dotted
}

hr.dashed {
    border-style: dashed
}

::-webkit-scrollbar {
    width: .8rem;
    height: .8rem
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / .3);
    box-shadow: inset 0 0 6px rgb(0 0 0 / .3);
    -webkit-border-radius: 1rem;
    border-radius: 1rem;
    -webkit-border-radius: 0;
    border-radius: 0
}

::-webkit-scrollbar-thumb {
    background: #f86020;
    -webkit-border-radius: 1rem;
    border-radius: 1rem;
    -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / .3);
    box-shadow: inset 0 0 6px rgb(0 0 0 / .3)
}

.slick-prev, .slick-next {
    background: none;
    border: none;
    font-size: 0;
    display: block;
    width: 4rem;
    height: 4rem;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    z-index: 5
}

.slick-prev::after, .slick-next::after {
    content: "";
    display: block;
    width: 4rem;
    height: 4rem;
    border-style: solid;
    border-width: 0 .2rem .2rem 0;
    border-color: #f86020;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.3s linear
}

.slick-prev {
    left: 1.5rem
}

.slick-prev::after {
    transform: rotate(135deg)
}

.slick-next {
    right: 1.5rem
}

.slick-next::after {
    transform: rotate(-45deg)
}

.slick-dots {
    position: absolute;
    left: 50%;
    bottom: 2rem;
    display: flex;
    transform: translate(-50%, 0);
    z-index: 30
}

.slick-dots li {
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    margin: 0 .5rem;
    background: #FEEFE9;
    border: none;
    border-radius: 50%;
    cursor: pointer
}

.slick-dots li.slick-active {
    background: #f86020
}

.slick-dots li:only-child {
    display: none
}

.slick-dots li button {
    background: #fff0;
    border: none;
    font-size: 0
}

.row {
    margin: 0 -1.5rem
}

.row:after {
    content: "";
    display: block;
    clear: both
}

.row .col_1, .row .col_10, .row .col_11, .row .col_12, .row .col_2, .row .col_3, .row .col_4, .row .col_5, .row .col_6, .row .col_7, .row .col_8, .row .col_9 {
    float: left;
    margin: 0 1.5rem
}

.row .col_1 {
    width: calc(8.3333333333% - 3.01rem)
}

.row .col_2 {
    width: calc(16.6666666667% - 3.01rem)
}

.row .col_3 {
    width: calc(25% - 3.01rem)
}

.row .col_4 {
    width: calc(33.3333333333% - 3.01rem)
}

.row .col_5 {
    width: calc(41.6666666667% - 3.01rem)
}

.row .col_6 {
    width: calc(50% - 3.01rem)
}

.row .col_7 {
    width: calc(58.3333333333% - 3.01rem)
}

.row .col_8 {
    width: calc(66.6666666667% - 3.01rem)
}

.row .col_9 {
    width: calc(75.0000000019% - 3.01rem)
}

.row .col_10 {
    width: calc(83.3333333333% - 3rem)
}

.row .col_11 {
    width: calc(91.6666666667% - 3.01rem)
}

.row .col_12 {
    width: calc(100% - 3.01rem)
}

.row_f {
    margin: 0 -1.5rem;
    display: flex;
    flex-wrap: wrap
}

.row_f .col_1, .row_f .col_2, .row_f .col_3, .row_f .col_4, .row_f .col_5, .row_f .col_6, .row_f .col_7, .row_f .col_8, .row_f .col_9, .row_f .col_10, .row_f .col_11, .row_f .col_12 {
    margin: 0 1.5rem
}

.row_f .col_1 {
    width: calc(8.3333333333% - 3.01rem)
}

.row_f .col_2 {
    width: calc(16.6666666667% - 3.01rem)
}

.row_f .col_3 {
    width: calc(25% - 3.01rem)
}

.row_f .col_4 {
    width: calc(33.3333333333% - 3.01rem)
}

.row_f .col_5 {
    width: calc(41.6666666667% - 3.01rem)
}

.row_f .col_6 {
    width: calc(50% - 3.01rem)
}

.row_f .col_7 {
    width: calc(58.3333333333% - 3.01rem)
}

.row_f .col_8 {
    width: calc(66.6666666667% - 3.01rem)
}

.row_f .col_9 {
    width: calc(75.0000000019% - 3.01rem)
}

.row_f .col_10 {
    width: calc(83.3333333333% - 3.01rem)
}

.row_f .col_11 {
    width: calc(91.6666666667% - 3.01rem)
}

.row_f .col_12 {
    width: calc(100% - 3.01rem)
}

.map_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.wrapper {
    width: 100%;
    max-width: 121.1rem;
    padding: 0 2rem;
    margin: 0 auto;
    position: relative
}

.wrapper::after {
    content: "";
    display: table;
    clear: both
}

.wrapper.wrapper_full {
    max-width: 100%
}

.wrapper.wrapper_small {
    max-width: 97rem
}

.icon {
    line-height: 0
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

table.table {
    width: 100%
}

::placeholder {
    color: #4A6572;
    transition: all 0.3s
}

.form_item {
    margin: 1rem 0 1.5rem
}

.form_item .pre_input {
    display: block;
    margin: 0 0 .8rem
}

.input {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 2.6rem;
    font-size: 1.5rem;
    padding: 0;
    border: none;
    border-bottom: .1rem solid #1B242B;
    background-color: #fff0;
    color: #1B242B;
    border-radius: 0;
    transition: box-shadow 0.2s ease-in
}

.input:focus, .input:active {
    outline-style: none
}

.input::placeholder {
    font-family: "Roboto", sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: rgb(27 36 43 / .5);
    opacity: 1;
    text-overflow: ellipsis
}

.input:focus::placeholder {
    opacity: 0
}

.input:-webkit-autofill, .input:-webkit-autofill:focus, .input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 4rem #fff inset !important;
    -webkit-text-fill-color: #000000 !important
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
    -webkit-appearance: none
}

input[type=number] {
    -moz-appearance: textfield !important
}

textarea.input {
    min-height: 12.8rem;
    padding-top: .5rem;
    resize: none
}

select.input {
    line-height: normal;
    text-overflow: "";
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none
}

select::-ms-expand {
    display: none
}

.select_after, .select_after2, .select_after3, .select_after992 {
    position: relative;
    display: block
}

.select_after::after {
    content: "";
    position: absolute;
    top: 5.9rem;
    right: 1rem;
    transform: rotate(45deg);
    width: .7rem;
    height: .7rem;
    border-style: solid;
    border-width: 0 .2rem .2rem 0;
    pointer-events: none
}

.select_after2::after {
    content: "";
    position: absolute;
    top: 2.9rem;
    right: 1rem;
    transform: rotate(45deg);
    width: .7rem;
    height: .7rem;
    border-style: solid;
    border-width: 0 .2rem .2rem 0;
    pointer-events: none
}

.select_after3::after {
    content: "";
    position: absolute;
    top: .9rem;
    right: 1rem;
    transform: rotate(45deg);
    width: .7rem;
    height: .7rem;
    border-style: solid;
    border-width: 0 .2rem .2rem 0;
    pointer-events: none
}

.select_after992::after {
    content: none;
    position: absolute;
    top: 5.8rem;
    right: 1rem;
    transform: rotate(45deg);
    width: .7rem;
    height: .7rem;
    border-style: solid;
    border-width: 0 .2rem .2rem 0;
    pointer-events: none;
    border-color: #fff
}

.select_after select {
    padding: 0 2rem 0 0;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none
}

.custom_checkbox {
    position: absolute;
    left: -999.9rem
}

.custom_checkbox + label {
    display: inline-flex;
    align-items: center;
    user-select: none;
    cursor: pointer;
    margin: 0 2rem 0 0
}

.custom_checkbox + label .checkbox_design {
    flex: 0 0 auto;
    width: 2rem;
    height: 2rem;
    border: .1rem solid #cfcfcf;
    background-color: #fff;
    border-radius: .3rem;
    position: relative;
    transform: scale(1);
    transition: all 0.2s ease
}

.custom_checkbox + label .checkbox_design svg {
    position: absolute;
    top: .4rem;
    left: .3rem;
    width: 1.2rem;
    height: 1rem;
    fill: none;
    stroke: #fff0;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1.6rem;
    stroke-dashoffset: 1.6rem;
    transition: all 0.3s ease;
    transition-delay: 0.1s;
    transform: translate3d(0, 0, 0)
}

.custom_checkbox + label .checkbox_design::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    opacity: 1;
    border-radius: 50%;
    background-color: #1b242b;
    transform: scale(0)
}

.custom_checkbox + label .checkbox_text {
    display: inline-block;
    font-size: 1.6rem;
    padding: 0 0 0 1rem;
    text-transform: uppercase
}

.custom_checkbox:checked + label .checkbox_design {
    background-color: #1b242b;
    border-color: #1b242b
}

.custom_checkbox:checked + label .checkbox_design svg {
    stroke: #fff;
    stroke-dashoffset: 0
}

.custom_checkbox:checked + label .checkbox_design::before {
    opacity: 0;
    transform: scale(3.5);
    transition: all 0.6s ease
}

.custom_radio_button {
    position: absolute;
    left: -999.9rem
}

.custom_radio_button + label {
    display: inline-flex;
    align-items: flex-start;
    user-select: none;
    cursor: pointer;
    font-size: 0;
    margin: 0 1rem 1rem 0
}

.custom_radio_button + label .radio_button_design {
    flex: 0 0 auto;
    width: 1.8rem;
    height: 1.8rem;
    border: .1rem solid #cfcfcf;
    background-color: #fff;
    border-radius: 50%;
    position: relative;
    transition: all 0.2s ease
}

.custom_radio_button + label .radio_button_design::before, .custom_radio_button + label .radio_button_design::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #1b242b;
    transform: scale(0)
}

.custom_radio_button + label .radio_button_design::before {
    opacity: 1
}

.custom_radio_button + label .radio_button_text {
    display: inline-block;
    font-size: 1.6rem;
    padding: 0 0 0 1rem
}

.custom_radio_button:checked + label .radio_button_design {
    border-color: #1b242b;
    border-width: .2rem
}

.custom_radio_button:checked + label .radio_button_design::before, .custom_radio_button:checked + label .radio_button_design::after {
    transition: all 0.6s ease
}

.custom_radio_button:checked + label .radio_button_design::before {
    opacity: 0;
    transform: scale(3.5)
}

.custom_radio_button:checked + label .radio_button_design::after {
    transform: scale(.55)
}

.form_item:has(.validate_error):before {
    background-color: #e57373 !important
}

.validate_error {
    border: none !important;
    border-bottom: .1rem solid #e57373 !important;
    border-radius: 0 !important
}

@keyframes shake {
    0%, 100% {
        margin-left: 0
    }
    20%, 80% {
        margin-left: -12px
    }
    40%, 60% {
        margin-left: 12px
    }
}

.select2_basic_single.validate_error ~ .select2 {
    animation: shake 0.3s ease-in-out
}

.validate_error::placeholder {
    color: #e31e26 !important
}

.validate_error + .icon {
    color: #e57373 !important
}

textarea.validate_error {
    border: .1rem solid #e57373 !important
}

.input_file.validate_error + .input {
    border: .1rem solid #e57373 !important
}

.input_file.validate_error + .input span {
    color: #e31e26 !important
}

.validate_checkbox.validate_error {
    border: none !important
}

.validate_checkbox.validate_error .checkbox + label::before {
    border: .1rem solid #e57373 !important
}

.validate_checkbox.validate_error .custom_checkbox + label .checkbox_design {
    border: .1rem solid #e57373 !important
}

.validate_radio.validate_error {
    border: none !important
}

.validate_radio.validate_error .radio_button + label::before {
    border: .1rem solid #e57373 !important
}

.validate_radio.validate_error .custom_radio_button + label .radio_button_design {
    border: .1rem solid #e57373 !important
}

.button {
    display: inline-block;
    font: 600 1.6rem/5rem "Roboto", sans-serif;
    height: 5rem;
    min-width: 7.55em;
    padding: 0 2.5rem;
    color: #fff;
    background-color: #f86020;
    border: .1rem solid #f86020;
    border-radius: .4rem;
    text-align: center;
    white-space: nowrap;
    text-decoration: none;
    transition: 0.3s ease-out;
    cursor: pointer;
    user-select: none;
    appearance: none
}

.button.button_2 {
    padding: .55em 1em .45em;
    line-height: normal;
    height: auto
}

.button.small {
    font-size: 1.3rem;
    height: 3.5rem;
    line-height: 3.5rem
}

.button.large {
    font-size: 2rem;
    height: 5.5rem;
    line-height: 5.5rem
}

.button.light {
    color: #f86020;
    background-color: #fff;
    border-color: #fff
}

.button.dark2 {
    color: #f86020;
    background-color: #0f2d41;
    border-color: #0f2d41
}

.button.light_2 {
    color: #f86020;
    background-color: #fff;
    border-color: #f86020
}

.button.dark {
    color: #fff;
    background-color: #f86020;
    border-color: #f86020
}

.button.button_success {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745
}

.button.button_danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545
}

.button.button_warning {
    color: #000;
    background-color: #ffb92e;
    border-color: #ffb92e
}

.button.button_info {
    color: #fff;
    background-color: #119eb5;
    border-color: #119eb5
}

.button.button_disable {
    color: #000;
    background-color: #ccc;
    border-color: #ccc
}

.button.button_default {
    color: #fff;
    background-color: #607487;
    border-color: #607487
}

.button span {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    z-index: 3
}

.button svg {
    display: inline-block;
    vertical-align: middle;
    fill: #f86020;
    width: 2.5rem;
    height: 2.5rem
}

.button.btn_icon {
    position: relative;
    overflow: hidden
}

.button.btn_icon svg {
    width: 1.8rem;
    height: 1.8rem;
    fill: #fff;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -3rem);
    transition: 0.2s linear;
    margin-right: 0
}

.button.btn_icon span {
    color: #fff;
    display: block;
    transition: 0.2s linear
}

.button.button_wide {
    padding: .9rem 3rem .7rem;
    line-height: normal;
    white-space: normal;
    height: auto
}

.button.button_block {
    display: block;
    width: 100%
}

.link {
    font: 600 1.6rem "Roboto", sans-serif;
    position: relative;
    padding-right: 1.3rem;
    display: inline-block;
    color: #F96020
}

.link:after {
    content: "";
    position: absolute;
    bottom: .5rem;
    right: 0;
    transform: rotate(-45deg);
    transition: 0.3s linear;
    width: .6rem;
    height: .6rem;
    border-style: solid;
    border-width: 0 .2rem .2rem 0
}

.btn_mobile {
    display: none
}

.aside_form_wrapper {
    margin: 0 0 2rem
}

.overlay {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: rgb(0 0 0 / .3)
}

.overlay_dark {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: rgb(0 0 0 / .7)
}

section, .section {
    padding: 10rem 0
}

.pagination {
    padding: 1rem 0;
    user-select: none;
    font-size: 0
}

.pagination li {
    display: inline-block;
    vertical-align: top;
    padding: 0;
    margin: .4rem;
    list-style: none
}

.pagination li.active a {
    background-color: #1b242b;
    color: #fff;
    pointer-events: none
}

.pagination li.pagination_arrow .icon {
    position: relative;
    top: -.2rem
}

.pagination li.pagination_arrow_prev .icon {
    transform: rotate(180deg)
}

.pagination li a {
    font-size: 1.6rem;
    font-weight: 700;
    display: block;
    min-width: 3rem;
    height: 3rem;
    line-height: 3.2rem;
    padding: 0 .5rem;
    background-color: #f86020;
    color: #fff;
    text-align: center;
    transition: 0.3s linear
}

.social {
    font-size: 0;
    line-height: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem 2.75rem
}

.social .social_block {
    display: inline-block;
    line-height: 0
}

.social .social_block .icon, .social .social_block img {
    width: 2rem;
    height: 2rem;
    fill: #fff;
    transition: all 0.3s ease-in-out
}

h1, .h1 {
    font: 400 5.2rem "Roboto", sans-serif;
    color: #1b242b;
    margin: 0 0 2rem;
    text-transform: capitalize
}

h1 b, h1 strong, .h1 b, .h1 strong {
    font-weight: 800
}

h2, .h2 {
    font: 700 3.2rem "Roboto", sans-serif;
    color: #f86020;
    margin: 0 0 2rem;
    text-transform: initial
}

.title {
    font: 700 3.2rem "Roboto", sans-serif;
    color: #1b242b;
    margin: 1rem 0 2rem;
    text-transform: capitalize
}

.sub_title {
    display: inline-block;
    font: 400 1.6rem "Roboto", sans-serif;
    color: #1b242b;
    margin: 1rem 0 2rem;
    padding: 0 13rem;
    text-transform: uppercase;
    position: relative
}

.sub_title:before {
    content: "";
    position: absolute;
    top: .9rem;
    left: 0;
    width: 12rem;
    height: .1rem;
    background-color: #1b242b
}

.sub_title:after {
    content: "";
    position: absolute;
    top: .9rem;
    right: 0;
    width: 12rem;
    height: .1rem;
    background-color: #1b242b
}

h3, .h3 {
    font: 700 2.8rem/1.2 "Roboto", sans-serif;
    color: #1b242b;
    margin: 0;
    text-transform: capitalize
}

h4, .h4 {
    font: 700 2.4rem/1.2 "Roboto", sans-serif;
    color: #1b242b;
    margin: 0;
    text-transform: capitalize
}

h5, .h5 {
    font: 700 2.2rem/1.2 "Roboto", sans-serif;
    color: #1b242b;
    margin: 0;
    text-transform: capitalize
}

h6, .h6 {
    font: 700 2rem/1.2 "Roboto", sans-serif;
    color: #1b242b;
    margin: 0;
    text-transform: capitalize
}

.content h1, .content .h1 {
    font: 700 5.2rem "Roboto", sans-serif;
    color: #1b242b;
    margin: 1rem 0 2rem;
    text-transform: capitalize
}

.content h2, .content .h2, .content .title {
    font: 700 3.2rem "Roboto", sans-serif;
    color: #f86020;
    margin: 1rem 0 2rem;
    text-transform: initial
}

.content h3, .content .h3 {
    font: 400 2.8rem/1.2 "Roboto", sans-serif;
    color: rgb(27 36 43 / .5);
    margin: 1rem 0;
    text-transform: unset
}

.content h4, .content .h4 {
    font: 400 2.4rem/1.2 "Roboto", sans-serif;
    color: rgb(27 36 43 / .5);
    margin: 1rem 0;
    text-transform: unset
}

.content h5, .content .h5 {
    font: 400 2.2rem/1.2 "Roboto", sans-serif;
    color: rgb(27 36 43 / .5);
    margin: 1rem 0;
    text-transform: unset
}

.content h6, .content .h6 {
    font: 400 2rem/1.3 "Roboto", sans-serif;
    color: rgb(27 36 43 / .5);
    margin: 1rem 0 2rem;
    text-transform: unset
}

.content p {
    margin: 0 0 1.5rem;
    color: rgb(27 36 43 / .5)
}

.content ul {
    margin-bottom: 2rem
}

.content ul li {
    display: table;
    font: 400 1.6rem/1.3 "Roboto", sans-serif;
    padding: 0 0 0 2.4rem;
    margin: 0 0 1rem;
    position: relative;
    color: rgb(27 36 43 / .5)
}

.content ul li:last-child {
    margin: 0
}

.content ul li p, .content ul li span {
    margin: 0
}

.content ul li::before {
    content: "";
    display: block;
    position: absolute;
    background-color: #f86020;
    top: .3rem;
    left: 0;
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%
}

.content ol {
    margin-bottom: 2rem;
    counter-reset: li
}

.content ol li {
    display: table;
    font: 400 1.6rem/1.5 "Roboto", sans-serif;
    color: rgb(27 36 43 / .5);
    padding: 0 0 0 4.1rem;
    margin: 0 0 2rem;
    position: relative
}

.content ol li::before {
    z-index: 2;
    position: absolute;
    font: 900 2rem "Roboto", sans-serif;
    color: #fff;
    counter-increment: li;
    content: counters(li, "") " ";
    top: -.1rem;
    left: 0;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    background-color: #F96020;
    display: flex;
    justify-content: center;
    align-items: center
}

.content blockquote {
    font: 400 1.6rem/1.5 "Roboto", sans-serif;
    padding: 0 0 0 2rem;
    margin: 0 0 3rem;
    clear: both;
    position: relative
}

.content blockquote::after {
    content: "";
    display: block;
    width: 1rem;
    top: 0;
    left: 0;
    height: 100%;
    position: absolute;
    background: #1b242b
}

.content a:not(.button) {
    display: inline-block;
    color: #f86020;
    font-weight: 600;
    transition: 0.3s linear
}

.content a:not(.button):focus {
    color: #f86020
}

.content img {
    height: auto !important
}

.content ul:last-child, .content ol:last-child, .content table:last-child, .content img:last-child, .content iframe:last-child, .content p:last-child {
    margin-bottom: 0
}

.content iframe {
    width: 100%;
    height: 35rem
}

.content table ul li, .content table ol li {
    display: block
}

.content .content_table {
    width: 100%
}

.content .content_table th {
    text-align: left;
    font-weight: 700;
    color: #fff
}

.content .content_table th p {
    font-weight: 700;
    color: #fff
}

.content .content_table tr:nth-child(odd) {
    background-color: #f7f7f7
}

.content .content_table tr:first-child {
    background-color: #1b242b
}

.content .content_table th, .content .content_table td {
    padding: 1rem
}

p {
    font: 400 1.6rem/1.5 "Roboto", sans-serif;
    color: #1b242b;
    margin: 1rem 0
}

[data-modals] {
    cursor: pointer
}

.no_scroll {
    overflow: hidden
}

.hide_desktop {
    display: none !important
}

.map {
    padding: 0
}

.map #map, .map iframe {
    height: 40rem;
    width: 100%;
    max-width: 100%
}

.marker_info {
    text-align: center
}

.marker_info p {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.2;
    margin: .2rem 0
}

.marker_info .map_address {
    max-width: 23rem;
    margin: 0 auto
}

.marker_info p a {
    color: #1b242b
}

.img {
    display: block;
    width: 100%;
    max-width: 100%;
    position: relative;
    background-size: cover !important;
    background-position: center !important
}

.page main {
    float: right;
    width: 70%
}

.page aside {
    width: 25%;
    float: left
}

.page.right_sidebar main {
    float: left;
    width: 70%
}

.page.right_sidebar aside {
    width: 25%;
    float: right
}

.inner_banner {
    position: relative;
    z-index: 2;
    background: linear-gradient(to right, #1b242b, #0f2d41);
    background-image: url(/imagephp/width=1920&mas=1:1&image=/pictures/sliders/sliders_1_image1_yXwJjuywnd.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 50%;
    padding: 6rem 0 14rem
}

.inner_banner h1 span {
    display: block;
    font-weight: 400;
    font-size: 70%
}

.register_body .inner_banner, .login_body .inner_banner, .contact_body .inner_banner {
    background-image: none;
    background: linear-gradient(to right, #1b242b, #0f2d41)
}

.inner_banner .inner_banner_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 24rem;
    padding: 3rem 0
}

.inner_banner h1, .inner_banner .h1, .inner_banner h2, .inner_banner .h2, .inner_banner h3, .inner_banner .h3, .inner_banner h4, .inner_banner .h4, .inner_banner h5, .inner_banner .h5, .inner_banner h6, .inner_banner .h6 {
    color: #fff;
    text-align: center
}

.inner_banner p {
    color: rgb(255 255 255 / .5);
    text-align: center
}

.short_inner_banner .inner_banner {
    padding: 6rem 0 8rem
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0;
    z-index: 999;
    transition: 0.2s;
    background: linear-gradient(to right, #1b242b, #0f2d41)
}

.header .header_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.8rem 0
}

.header .header_top_row {
    padding: 1rem 0 .9rem;
    background: linear-gradient(to right, #F96020, #EFA740)
}

.header .cart_link {
    font-weight: 600;
    color: #fff;
    position: relative;
    display: inline-block;
    padding-left: 2rem;
    transition: 0.3s
}

.header .cart_link svg {
    position: absolute;
    top: .3rem;
    left: 0;
    width: 1.5rem;
    height: 1.5rem;
    fill: #F96020
}

.header .header_contacts {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem
}

.header .header_contacts a {
    font: 800 1.6rem "Manrope", sans-serif;
    color: #fff;
    padding-left: 2.4rem;
    position: relative;
    transition: 0.3s
}

.header .header_contacts a svg {
    position: absolute;
    top: .4rem;
    left: 0;
    width: 1.6rem;
    height: 1.6rem
}

.header .header_logo {
    display: inline-block;
    position: relative
}

.header .header_logo img {
    width: 8.8rem
}

.header .phone_block {
    display: flex
}

.header .phone_block .phone {
    font-size: 3.2rem;
    line-height: 1;
    font-weight: 600;
    color: #000;
    transition: 0.3s linear
}

.header .phone_block .phone .icon {
    width: 3.2rem;
    height: 3.2rem;
    color: #1b242b;
    transition: 0.3s linear
}

.header.fixed {
    position: fixed;
    animation: slide-down 0.7s;
    box-shadow: 0 0 1.5rem 0 rgb(0 0 0 / .2)
}

.header.fixed .header_logo img {
    width: 6.8rem
}

.header.fixed .top_menu {
    display: none
}

.header.fixed .navigation {
    margin: 0
}

.navigation .header_nav {
    display: flex;
    justify-content: flex-end;
    align-items: center
}

.navigation .header_nav > li > a:not(.button) {
    font: 600 1.6rem "Roboto", sans-serif;
    color: #fff;
    text-transform: capitalize;
    display: block;
    white-space: nowrap;
    padding: 0 1.9rem;
    position: relative;
    transition: 0.3s linear
}

.navigation .header_nav > li.active > a:not(.button) {
    font-weight: 700;
    color: #f86020
}

.navigation .header_nav > li.dr_down {
    position: relative
}

.navigation .header_nav > li.dr_down a {
    position: relative;
    font: 600 1.6rem "Manrope", sans-serif
}

.navigation .header_nav > li.dr_down > a:after {
    content: "";
    position: absolute;
    top: 40%;
    right: .5rem;
    transform: translate(0, -40%) rotate(45deg);
    transition: 0.3s linear;
    width: .9rem;
    height: .9rem;
    border-style: solid;
    border-width: 0 .2rem .2rem 0
}

.navigation .header_nav > li.dr_down .sub_dr_down a:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: .3rem;
    height: 0;
    background-color: #F96020;
    transition: 0.3s linear
}

.navigation .header_nav > li.header_btn {
    padding: 0 0 0 1rem
}

.navigation .header_nav > li.mobile_social {
    display: none
}

.navigation .header_nav .sub_menu {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 2rem;
    margin: .6rem 0 0;
    z-index: 3;
    min-width: 25rem;
    background-color: #1b242b;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 .3rem rgb(0 0 0 / .1);
    transform: translate3d(0, 1rem, 0)
}

.navigation .header_nav .sub_menu::before {
    content: "";
    position: absolute;
    left: 1rem;
    bottom: 100%;
    display: block;
    border-bottom: .6rem solid #1b242b;
    border-left: .6rem solid #fff0;
    border-right: .6rem solid #fff0
}

.navigation .header_nav .sub_menu::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    display: block;
    width: 100%;
    height: 1rem
}

.navigation .header_nav .sub_menu > li {
    border-bottom: .1rem solid rgb(255 255 255 / .1)
}

.navigation .header_nav .sub_menu > li > a:not(.button) {
    font-size: 1.4rem;
    color: #fff;
    display: block;
    padding: .9rem 1.5rem .7rem;
    white-space: pre-wrap;
    text-align: left;
    text-transform: uppercase;
    transition: 0.3s linear
}

.navigation .header_nav > li.dr_down:focus .sub_menu {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0)
}

.mobile_header_nav, .logo_sidebar {
    display: none
}

.navigation_btn {
    display: none;
    width: 4.4rem;
    height: 4.4rem;
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    overflow: visible;
    background-color: #1B242B;
    border-radius: .5rem;
    cursor: pointer;
    transition-property: opacity;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    z-index: 600
}

.navigation_btn .hamburger_box {
    display: block;
    width: 2.4rem;
    height: .35rem;
    border-radius: 0;
    background-color: #F96020;
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translate(0, -50%);
    transition-property: transform;
    transition-duration: 0.075s;
    transition-timing-function: cubic-bezier(.55, .055, .675, .19)
}

.navigation_btn .hamburger_box::before, .navigation_btn .hamburger_box::after {
    content: "";
    display: block;
    width: 2.4rem;
    height: .35rem;
    border-radius: 0;
    background-color: #F96020;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease
}

.navigation_btn .hamburger_box::before {
    top: -1rem;
    transition: top 0.075s 0.12s ease, opacity 0.075s ease
}

.navigation_btn .hamburger_box::after {
    bottom: -1rem;
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(.55, .055, .675, .19)
}

.navigation_btn.is_open .hamburger_box {
    transform: translate(0, -50%) rotate(45deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    background-color: #f86020
}

.navigation_btn.is_open .hamburger_box::before, .navigation_btn.is_open .hamburger_box::after {
    background-color: #f86020
}

.navigation_btn.is_open .hamburger_box::before {
    top: 0;
    opacity: 0;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease
}

.navigation_btn.is_open .hamburger_box::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(.215, .61, .355, 1)
}

.navigation_btn p {
    display: block;
    font-size: 1.4rem;
    font-weight: 400;
    color: #1b242b;
    margin: 0;
    position: absolute;
    bottom: -2.5rem;
    left: 50%;
    transform: translate(-50%, 0)
}

.mobile_phone {
    position: fixed;
    left: 0;
    right: 0;
    bottom: env(safe-area-inset-bottom);
    display: none;
    padding: .5rem 0;
    font: 700 3rem "Roboto", sans-serif;
    background-color: #1b242b;
    color: #fff;
    text-align: center;
    user-select: none;
    z-index: 300
}

.mobile_phone svg {
    width: 2.4rem;
    height: 2.4rem
}

@media not all and (min-resolution: 0.001dpcm) {
    @supports (-webkit-appearance:none) {
        .mobile_phone {
            bottom: 0
        }
    }
}

.home_bar_space {
    position: fixed;
    left: 0;
    bottom: 0;
    display: none;
    width: 100%;
    height: env(safe-area-inset-bottom);
    background-color: #1b242b;
    z-index: 299
}

.dark_overlay.nav_opened::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100vh;
    background-color: #000;
    opacity: .8;
    z-index: 2
}

.main_top {
    position: relative;
    padding: 0;
    z-index: 2;
    overflow: hidden;
    background: linear-gradient(to right, #1b242b, #0f2d41)
}

.main_top .banner {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    max-width: 100%;
    position: relative;
    height: 59.7rem;
    z-index: 2
}

.main_top .main_content {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100%;
    display: block;
    z-index: 4;
    transform: translate(-50%, 0%)
}

.main_top .main_content .text {
    max-width: 64rem;
    width: 100%;
    position: relative;
    z-index: 5
}

.main_top .main_content .text p {
    color: #fff
}

.main_top .main_content .text h1, .main_top .main_content .text .h1, .main_top .main_content .text h2, .main_top .main_content .text .h2, .main_top .main_content .text h3, .main_top .main_content .text .h3 {
    color: #fff;
    text-transform: capitalize
}

.main_top .main_content .text table {
    margin-top: 2.2rem
}

.main_top .main_content .text td:first-child {
    padding: 0 1.5rem 0 0
}

.main_top .main_content .text td:last-child {
    padding: 0 0 0 1.5rem
}

.main_top .top_slider.hidden_slider {
    opacity: 0;
    overflow: hidden;
    max-height: 59.7rem
}

.main_top .top_slider .slick-dots {
    bottom: 7rem
}

.main_top .main_content_row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start
}

.main_top .main_phone_block {
    display: block;
    max-width: 33.1rem;
    width: 100%;
    margin: .8rem;
    position: relative;
    aspect-ratio: 331/503;
    z-index: 1
}

.main_top .main_phone_block .main_phone {
    position: absolute;
    top: 37%;
    left: 67%;
    transform: translate(-50%, -50%);
    max-width: unset;
    width: 145.5%;
    aspect-ratio: 331/461;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
    z-index: -1
}

.main_top .main_phone_block .main_phone.main_phone2 {
    top: 47.2%;
    left: 50%;
    max-width: unset;
    width: 100%;
    aspect-ratio: 366/414
}

.main_top .main_phone_block .car_with_key {
    position: absolute;
    top: 20%;
    left: -8%;
    transform: translate(-50%, -20%)
}

.main_top .main_phone_block .banner_waves_left {
    position: absolute;
    top: 70%;
    left: 9%;
    transform: translate(-50%, -70%);
    filter: invert(43%) sepia(15%) saturate(180%) hue-rotate(173deg) brightness(130%) contrast(75%)
}

.main_top .main_phone_block .banner_waves_right {
    position: absolute;
    top: 70%;
    right: -27%;
    transform: translate(27%, -70%);
    filter: invert(43%) sepia(15%) saturate(180%) hue-rotate(173deg) brightness(130%) contrast(75%)
}

.inner_banner_form_wrap {
    z-index: 5;
    position: relative;
    margin-top: -8.6rem
}

.inner_banner_form_wrap.inner_banner_form_wrap_exist .show_form {
    margin: 0 0 0 1rem !important;
    height: 3rem;
    line-height: 3rem
}

.inner_banner_form_wrap.inner_banner_form_wrap_exist .form_inner_container {
    padding: 1rem 0
}

.inner_banner_form_wrap.inner_banner_form_wrap_exist p {
    display: flex;
    justify-content: center;
    align-items: center
}

.inner_banner_form_wrap.inner_banner_form_wrap_exist {
    margin: -5rem 0 0 0
}

.inner_banner_form_wrap.inner_banner_form_wrap_exist .form_inner_title_ext {
    padding: 0
}

.inner_banner_form_wrap.inner_banner_form_wrap_exist .wrapper {
    background-color: #F96020;
    max-width: 100%
}

.inner_banner_form_wrap .wrapper {
    background-color: #F96020;
    max-width: 113.9rem
}

.form_inner_container {
    display: flex;
    align-items: center;
    padding: 2rem 0 2.5rem
}

.form_inner_container .pre_input {
    margin: 0 0 3rem
}

.form_inner_title {
    padding: 2rem 2.7rem 1.5rem 2rem;
    max-width: 16.2rem;
    width: 100%;
    position: relative
}

.form_inner_container_extra .form_inner_form {
    display: none
}

.form_inner_container_extra .form_inner_title {
    display: none
}

.form_inner_container_extra .form_inner_title_ext {
    display: block
}

.form_inner_container:not(.form_inner_container_extra) .form_inner_title_ext {
    display: none
}

.form_inner_title_ext {
    padding: 2rem 2.7rem 1.5rem 2rem;
    width: 100%;
    position: relative
}

.form_inner_title:before {
    content: "";
    top: 0;
    right: 0;
    position: absolute;
    width: .1rem;
    height: 100%;
    background: linear-gradient(to top, #fff0, #FEEFE9)
}

.form_inner_form {
    flex-grow: 1;
    padding-left: 4rem
}

.form_inner_form .form_wrap {
    display: flex;
    gap: 3.2rem;
    align-items: center
}

.form_inner_form .modal_title {
    display: none
}

.form_inner_form .form_item {
    max-width: 16.5rem;
    width: 100%;
    margin: 0
}

.form_inner_form .form_item.form_item_captcha {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.form_inner_form .form_item.form_item_button_next {
    max-width: 6.9rem;
    width: 100%;
    padding-left: .8rem
}

.form_inner_form .form_item.form_item_button_next .button {
    margin: 0
}

.form_inner_form .custom_checkbox + label .checkbox_text {
    color: #fff
}

.form_inner_form .pre_input {
    color: #fff
}

.form_inner_form .button {
    margin-top: .5rem;
    min-width: unset;
    height: 6.1rem;
    line-height: 6.1rem;
    padding: 0 1.8rem
}

.form_inner_form .button span {
    display: none
}

.form_inner_form .input {
    font-size: 1.5rem;
    padding: 0 1rem 0 0;
    border-bottom: .1rem solid #fff;
    color: #fff
}

.form_inner_form select.input:focus {
    background-color: #F96020;
    padding: 0 .5rem
}

.form_inner_form .select_after::after {
    border-color: #fff
}

.form_inner_form .select2-container {
    max-width: 100% !important;
    width: 100% !important
}

.form_inner_form .select_after1 .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #fff;
    line-height: 26px
}

.form_inner_form .select_after1 .select2-container .select2-selection--single {
    height: 26px
}

.form_inner_form .select_after1 .select2-container--default .select2-selection--single {
    background-color: #F96020;
    border: none;
    border-bottom: 1px solid #fff;
    border-radius: 0
}

.form_inner_form .select_after1 .select2-container--default .select2-selection--single .select2-selection__arrow b {
    transform: rotate(45deg);
    width: .7rem;
    height: .7rem;
    border-style: solid;
    border-width: 0 .2rem .2rem 0;
    border-color: #fff
}

.form_inner_form .select_after1 .select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0
}

.form_inner_form .select_after1 .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #fff
}

.select2-container--default .select2-results__option--disabled {
    color: #fff
}

.select2-dropdown {
    background-color: #F96020
}

.select2-dropdown ::-webkit-scrollbar-thumb {
    background: #0f2d41
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #fff;
    background-color: #F96020;
    color: #fff
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #0f2d41;
    color: #fff
}

.select2-container--default .select2-results__option--selected {
    background-color: #fff;
    color: #0f2d41
}

.select2-results__option--selectable {
    color: #fff
}

.link_arrow {
    font: 600 1.6rem/1.35 "Roboto", sans-serif;
    position: relative;
    padding-right: 2.2rem;
    display: inline-block;
    color: #fff
}

.link_arrow:after {
    content: "";
    position: absolute;
    bottom: .7rem;
    right: 1rem;
    background-image: url("data:image/svg+xml,%3Csvg width='13' height='11' viewBox='0 0 13 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.58438 9.86706L12 5.52217L7.58438 1.17729C7.5445 1.12602 7.49383 1.08374 7.43581 1.05332C7.37779 1.02289 7.31377 1.00502 7.24808 1.00091C7.18239 0.99681 7.11656 1.00657 7.05506 1.02954C6.99356 1.0525 6.93782 1.08813 6.89161 1.13402C6.84539 1.1799 6.80979 1.23497 6.78722 1.2955C6.76464 1.35602 6.75561 1.42059 6.76074 1.48483C6.76586 1.54907 6.78503 1.61148 6.81695 1.66783C6.84886 1.72419 6.89277 1.77318 6.9457 1.81148L10.2494 5.07239L1.45948 5.07239C1.33762 5.07239 1.22075 5.11978 1.13458 5.20413C1.04841 5.28848 1 5.40288 1 5.52217C1 5.64146 1.04841 5.75587 1.13458 5.84022C1.22075 5.92457 1.33762 5.97195 1.45948 5.97195L10.2494 5.97196L6.9457 9.23287C6.85978 9.31757 6.81176 9.4322 6.81219 9.55156C6.81262 9.67091 6.86147 9.78521 6.94799 9.86931C7.03452 9.95341 7.15162 10.0004 7.27355 10C7.39548 9.99958 7.51225 9.95176 7.59816 9.86706L7.58438 9.86706Z' fill='white' stroke='white' stroke-width='0.7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    transition: 0.3s linear;
    width: 1.1rem;
    height: .9rem
}

.shield_blocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 6rem 2.9rem;
    margin-top: 4.2rem
}

.shield_block {
    position: relative;
    display: flex;
    flex-direction: column;
    width: calc(25% - 2.175rem);
    background-color: #1B242B;
    padding: 7.3rem 3.4rem 3.5rem 2.9rem;
    border-radius: 1rem;
    margin-top: 3.1rem
}

.shield_block h1, .shield_block h2, .shield_block h3, .shield_block h4, .shield_block h5, .shield_block h6, .shield_block .h1, .shield_block .h2, .shield_block .h3, .shield_block .h4, .shield_block .h5, .shield_block .h6, .shield_block p {
    color: #fff;
    text-align: center
}

.shield_block .buttons {
    padding: 1.6rem 0 0;
    display: flex;
    justify-content: center
}

.shield_block .button {
    height: 3.5rem;
    line-height: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    padding: 0;
    min-width: unset;
    width: 3.5rem
}

.shield_block .button svg {
    width: 1.1rem;
    height: .9rem;
    fill: #fff;
    stroke: #fff;
    transition: 0.3s
}

.shield_sec .shield_body {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center
}

.shield_image {
    position: absolute;
    top: -3.1rem;
    left: 50%;
    transform: translate(-50%, 0);
    width: 6.2rem;
    height: 6.2rem;
    border-radius: 50%;
    background-color: #FEEFE9;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .1rem
}

.buttons {
    margin-top: auto
}

.video_block {
    display: inline-block;
    position: relative;
    overflow: hidden;
    background-color: #fff
}

.video_block .video_bg {
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: block;
    width: 100%;
    height: 100% !important;
    -o-object-fit: cover;
    object-fit: cover
}

.video_block .play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: block;
    width: 7.4rem;
    height: auto;
    cursor: pointer
}

.video_block .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: block;
    cursor: pointer;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
    background: #1a1a1a;
    opacity: 0%
}

.video_block .video_iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: none
}

.video_block.video_play .play, .video_block.video_play .overlay {
    display: none
}

.video_block.video_play .video_iframe {
    display: block
}

.bg_gradient1 {
    background: linear-gradient(to right, #46515A, #452538)
}

.bg_gradient1 p {
    color: rgb(255 255 255 / .6)
}

.bg_gradient1 .sub_title {
    color: #fff
}

.bg_gradient1 .sub_title:before {
    background-color: #fff
}

.bg_gradient1 .sub_title:after {
    background-color: #fff
}

.benefits_sec {
    padding: 5rem 0 0;
    overflow: hidden
}

.bg_gradient1 p:has(.button) {
    margin-bottom: 6rem
}

.benefits_sec .video_block {
    width: 71.4%;
    aspect-ratio: 836 / 470;
    margin-right: -11.14%;
    right: -1.1%;
    bottom: 0;
    float: right;
    margin-left: 6.85rem
}

.benefits_sec .content ul li {
    padding-left: 3.9rem;
    color: rgb(255 255 255 / .6);
    margin: 0 0 2rem
}

.benefits_sec .content ul li::before {
    color: #fff0;
    border-style: unset;
    border-width: 0;
    transform: unset;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 3rem;
    height: 2.6rem;
    background-color: unset;
    background-image: url("data:image/svg+xml,%3Csvg width='30' height='27' viewBox='0 0 30 27' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.5342 1.01C7.83755 1.57392 5.50472 2.86622 3.60088 4.85116C1.17893 7.37591 0 10.317 0 13.8341C0 17.3512 1.17893 20.2923 3.60088 22.817C5.614 24.9159 8.19279 26.2763 11.0104 26.7265C12.5127 26.9665 15.3522 26.8271 16.6905 26.4477C20.6178 25.3342 23.9367 22.3771 25.4046 18.6835C26.1498 16.8083 26.2674 16.1316 26.26 13.7648C26.2537 11.7644 26.216 11.4262 25.8736 10.3009C25.6648 9.6151 25.2519 8.57732 24.956 7.99484L24.4179 6.93572L25.0444 6.14513C25.7607 5.24161 26.6346 4.34599 27.7438 3.37888L28.5134 2.70799L27.7438 3.24351C26.1579 4.34724 24.9676 5.33818 23.3571 6.89582C19.7497 10.3848 17.1104 13.9667 14.2159 19.3018C13.4348 20.7416 13.0526 21.0503 12.4265 20.7476C12.1082 20.5936 11.9076 20.2704 11.4458 19.1685C10.2135 16.2271 9.05398 14.4295 7.27271 12.6993C5.88236 11.3487 5.76959 11.0231 6.66687 10.9499C8.00894 10.8405 10.2665 11.9365 11.7706 13.4277L12.6884 14.3375L14.0137 12.8042C14.7426 11.9608 16.3207 10.3044 17.5204 9.12323C21.459 5.24577 25.2332 2.67945 29.073 1.26799C30.1002 0.890426 30.2163 0.821426 29.7027 0.893752C27.9401 1.14204 25.4253 2.01674 23.1023 3.18961L21.7487 3.8731L20.8636 3.22175C19.7974 2.43712 18.1175 1.63128 16.6905 1.21991C15.3475 0.832649 11.9379 0.716401 10.5342 1.01Z' fill='%23F96020'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain
}

.advanced_security_sec {
    padding: 6rem 0 0;
    background: linear-gradient(to right, #F96020, #C64E01)
}

.advanced_security_sec .sub_title {
    color: #fff
}

.advanced_security_sec .sub_title:before {
    background-color: #fff
}

.advanced_security_sec .sub_title:after {
    background-color: #fff
}

.advanced_security_row {
    display: flex;
    gap: 6.5rem;
    align-items: flex-end
}

.advanced_security_sec .wrapper {
    max-width: 101.5rem
}

.advanced_security_sec .advanced_security_item {
    position: relative;
    border-bottom: .1rem solid rgb(254 239 233 / .2)
}

.advanced_security_sec .advanced_security_item.active .button_rounded:after {
    transform: translate(-50%, -50%) rotate(0deg)
}

.advanced_security_sec .advanced_security_question {
    position: relative;
    padding: 2rem 4rem 2rem 0;
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1.2;
    cursor: pointer;
    transition: all 0.3s;
    user-select: none;
    color: #fff
}

.advanced_security_sec .button_rounded {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 3.3rem;
    height: 3.3rem;
    border-radius: 50%;
    transform: translate(0, -50%);
    background-color: #fff
}

.advanced_security_sec .button_rounded:before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #C64E01;
    width: 1.4rem;
    height: .2rem
}

.advanced_security_sec .button_rounded:after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    background-color: #C64E01;
    width: 1.4rem;
    height: .2rem
}

.advanced_security_sec .advanced_security_content {
    display: none;
    padding: 1.5rem 4rem 1.5rem 0
}

.advanced_security_sec .advanced_security_content p {
    color: #fff
}

.advanced_security_wrap_bottom {
    margin: 2.4rem 0;
    position: relative;
    z-index: 6
}

.advanced_security_img {
    max-width: 26.8rem;
    width: 100%;
    aspect-ratio: 268 / 432;
    position: relative
}

.advanced_security_img img {
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: block;
    max-width: 172.72%;
    width: 172.72%;
    -o-object-fit: cover;
    object-fit: cover
}

.advanced_security_wrap {
    flex-grow: 1;
    margin-bottom: 6rem
}

.why_why_choose_blocks {
    position: relative;
    padding: 0 0 26.8rem;
    margin-top: 7.5rem
}

.why_why_choose_image {
    position: relative;
    display: inline-block;
    top: 1.4rem;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 2;
    background-color: #fff
}

.why_why_choose_block {
    position: absolute;
    border-radius: 1rem;
    padding: 2.3rem 3rem 2.2rem;
    box-shadow: 0 0 1.2rem #FEEFE9;
    text-align: center
}

.why_why_choose_block h6, .why_why_choose_block .h6 {
    margin-bottom: 1.5rem;
    color: #1B242B
}

.why_why_choose_block p {
    color: rgb(27 36 43 / .5)
}

.why_why_choose_block:before, .why_why_choose_block:after {
    content: "";
    position: absolute
}

.why_why_choose_block:before {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    background-color: #F96020
}

.why_why_choose_block:after {
    width: 10.5rem;
    height: .1rem;
    background: linear-gradient(to right, #F96020, #ffffff)
}

.why_why_choose_block:nth-child(2) {
    top: -1.4rem;
    left: 0;
    width: 34.15%
}

.why_why_choose_block:nth-child(2):before {
    top: 47%;
    right: -.6rem;
    transform: translate(0, -47%)
}

.why_why_choose_block:nth-child(2):after {
    top: 47%;
    right: -10.5rem;
    transform: translate(0, -47%)
}

.why_why_choose_block:nth-child(3) {
    top: -1.4rem;
    right: 0;
    width: 34.15%
}

.why_why_choose_block:nth-child(3):before {
    top: 47%;
    left: -.6rem;
    transform: translate(0, -47%)
}

.why_why_choose_block:nth-child(3):after {
    top: 47%;
    left: -10.5rem;
    transform: translate(0, -47%) rotate(180deg)
}

.why_why_choose_block:nth-child(4) {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 41.79%;
    padding: 2.3rem 1.5rem 2.2rem
}

.why_why_choose_block:nth-child(4):before {
    top: -.6rem;
    left: 50%;
    transform: translate(-50%, 0)
}

.why_why_choose_block:nth-child(4):after {
    top: -4.2rem;
    left: 50%;
    width: 9.2rem;
    transform: translate(-50%, 0) rotate(270deg)
}

.card_blocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 1.9rem;
    margin-top: 2rem
}

.card_block {
    width: calc(33.3333333333% - 1.2666666667rem);
    position: relative;
    margin-top: 2.05rem;
    background-color: #1B242B;
    border-radius: 1rem;
    padding: 3.2rem 2.4rem;
    text-align: center
}

.card_block p {
    color: #fff
}

.card_image {
    position: absolute;
    top: -2.05rem;
    left: 50%;
    transform: translate(-50%, 0);
    width: 4.1rem;
    height: 4.1rem;
    border-radius: 50%;
    background-color: #FEEFE9;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .1rem
}

.car_renting_sec {
    overflow: hidden
}

.car_renting_sec .video_block {
    width: 55.6%;
    margin-right: -10%;
    right: -2rem;
    bottom: 0;
    float: right;
    margin-left: 4.87%
}

.benefits_sec.shares_car_access_sec .video_block {
    width: 55.77%;
    aspect-ratio: 653 / 365;

    margin-right: -7.14%;
    right: -5.2rem;
    bottom: 0;
    float: right
}
.benefits_sec.shares_car_access_sec .video_block video{
    aspect-ratio: 653 / 365;
}

.car_access_3_cta {
    padding: 6rem 0;
    overflow: hidden;
    background: linear-gradient(to right, #F96020, #C64E01)
}

.car_access_3_cta h1, .car_access_3_cta h2, .car_access_3_cta h3, .car_access_3_cta h4, .car_access_3_cta h5, .car_access_3_cta h6, .car_access_3_cta p, .car_access_3_cta ol li, .car_access_3_cta ul li {
    color: #fff
}

.car_access_3_cta .sub_title {
    color: #fff
}

.car_access_3_cta .sub_title:after {
    background-color: #fff
}

.car_access_3_cta .sub_title:before {
    background-color: #fff
}

.car_access_3_row {
    display: flex;
    gap: 1rem;
    align-items: flex-start
}

.car_access_3_image {
    max-width: 28.6rem;
    width: 100%;
    aspect-ratio: 286/620;
    position: relative;
    float: left;
    margin: 0 9rem 0 0
}
.car_access_3_image video{border-radius: 3rem;border: 7px solid #333;}

.car_access_3_image.video_block {
    background-color: #fff0;
    overflow: unset
}

.car_access_3_image.video_block .video_iframe {
    width: calc(100% - 3rem);
    height: calc(100% - 12rem);
    border-radius: 4rem;
    margin: auto
}

.car_access_3_image .main_video_image {
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: block;
    max-width: 172.72%;
    width: 172.72%;
    -o-object-fit: cover;
    object-fit: cover
}

.car_access_3_image .play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: block;
    width: 7.4rem;
    height: auto;
    cursor: pointer
}

.car_access_3_text.content {
    flex-grow: 1
}

.car_access_3_text.content ol li {
    padding: 0 0 2rem 4.1rem
}

.car_access_3_text.content ol li b, .car_access_3_text.content ol li strong {
    font: 700 2.4rem "Roboto", sans-serif;
    display: block;
    margin-bottom: 2rem
}

.car_access_3_text.content ol li::before {
    color: #F96020;
    background-color: #fff
}

.car_access_3_text.content ol li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 92%;
    height: .1rem;
    background-color: rgb(254 239 233 / .2)
}

.car_access_3_bottom {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1.6rem
}

.car_access_3_bottom p {
    margin: 0
}

.rental_business_sec {
    padding: 10rem 0 5rem
}

.rental_business_sec .sub_title {
    color: #1b242b
}

.rental_business_sec .shield_blocks {
    gap: 6rem 3.8rem;
    margin: 4rem 0 10rem
}

.rental_business_sec .shield_block {
    width: calc(33.3333333333% - 2.5333333333rem);
    padding: 7rem 4rem 4rem
}

.premium_features_sec {
    overflow: hidden;
    padding: 5rem 0 4rem
}

.premium_features_blocks {
    margin-top: 4rem;
    display: flex;
    flex-wrap: wrap
}

.premium_features_block {
    width: 74.48%;
    border-radius: 1rem;
    box-shadow: 0 0 1.2rem #FEEFE9;
    margin-bottom: 6rem;
    padding: 6rem 6.2rem 6rem
}

.premium_features_block h6, .premium_features_block .h6 {
    color: #1B242B
}

.premium_features_block.premium_features_block_left {
    margin-left: auto
}

.faqs .wrapper {
    max-width: 87.8rem
}

.faqs .faqs_wrap {
    margin-top: 3rem
}

.faqs .faqs_item {
    position: relative;
    border-bottom: .1rem solid #1B242B
}

.faqs .faqs_item:last-child {
    border-bottom: none
}

.faqs .faqs_item.active .button_rounded:after {
    transform: translate(-50%, -50%) rotate(0deg)
}

.faqs .faqs_question {
    position: relative;
    padding: 2rem 9.6rem 2rem 0;
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1.2;
    cursor: pointer;
    transition: all 0.3s;
    user-select: none;
    color: #1B242B
}

.faqs .button_rounded {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 3.3rem;
    height: 3.3rem;
    border-radius: 50%;
    transform: translate(0, -50%);
    background-color: #1B242B
}

.faqs .button_rounded:before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    width: 1.4rem;
    height: .2rem
}

.faqs .button_rounded:after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    background-color: #fff;
    width: 1.4rem;
    height: .2rem
}

.faqs .faqs_content {
    display: none;
    padding: 0 9.6rem 2rem 0
}

.faqs_bottom {
    margin-top: 2rem
}

.optional_features {
    position: relative;
    z-index: 2;
    padding: 6rem 0;
    overflow: hidden
}

.optional_features ul li {
    font: 400 2rem/1.3 "Manrope", sans-serif;
    color: #fff;
    letter-spacing: .02rem
}

.optional_features ul li b, .optional_features ul li strong {
    font-weight: 700
}

.optional_features ul li::before {
    top: .5rem
}

.optional_features table {
    margin-top: 4rem;
    max-width: 76%;
    width: 100%
}

.optional_features td {
    max-width: 50%;
    width: 100%;
    padding-right: 5.7rem;
    padding-bottom: 3.4rem
}

.optional_features td p {
    padding-left: 2.4rem
}

.optional_features tr:last-child td {
    padding-bottom: 0
}

.optional_features_background {
    position: absolute;
    bottom: -9rem;
    right: -11rem;
    z-index: -1;
    max-width: 48.8%;
    width: 100%;
    aspect-ratio: 591/521
}

.innovative_tech_sec {
    padding: 6rem 0 0;
    background: linear-gradient(to right, #F96020, #C64E01);
    overflow: hidden
}

.innovative_tech_sec h1, .innovative_tech_sec h2, .innovative_tech_sec h3 h4, .innovative_tech_sec h5, .innovative_tech_sec h6, .innovative_tech_sec p, .innovative_tech_sec ol li, .innovative_tech_sec ul li, .innovative_tech_sec div {
    color: #fff
}

.innovative_tech_sec .sub_title:after {
    background-color: #fff
}

.innovative_tech_sec .sub_title:before {
    background-color: #fff
}

.innovative_tech_row {
    position: relative;
    margin: 3rem 0 5rem
}

.innovative_tech_image {
    position: relative;
    display: inline-block;
    top: 1.4rem;
    left: 50%;
    width: 27.4rem;
    aspect-ratio: 1/1;
    transform: translate(-50%, 0)
}

.innovative_tech_image img {
    position: absolute;
    top: 6rem;
    left: 50%;
    transform: translate(-50%, 0)
}

.innovative_tech_image_inner1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(to right, #FEEFE9, #F7CC97, #FEEFE9);
    padding: .2rem
}

.innovative_tech_image_inner3 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 82.1%;
    height: 82.1%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(to right, #EFA740, #F96020, #EFA740);
    padding: .2rem
}

.innovative_tech_image_inner2 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 91.2%;
    height: 91.2%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(to right, #EFA740, #F96020, #EFA740);
    padding: .2rem
}

.innovative_tech_image_inner_inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #e05711
}

.innovative_tech_line {
    content: "";
    position: absolute;
    background: linear-gradient(to right, #F96020, #ffffff)
}

.innovative_tech_line:after {
    content: "";
    position: absolute;
    top: -.6rem;
    right: -.6rem;
    width: 1.2rem;
    height: 1.2rem;
    background-color: #fff;
    border-radius: 50%
}

.innovative_tech_line1 {
    top: 31%;
    left: -9.5rem;
    width: 10.5rem;
    height: .1rem
}

.innovative_tech_line2 {
    top: 47%;
    left: -11rem;
    width: 13.6rem;
    height: .1rem
}

.innovative_tech_line3 {
    top: 63.5%;
    left: -11rem;
    width: 11.5rem;
    height: .1rem
}

.innovative_tech_line4 {
    top: 31%;
    right: -9rem;
    width: 12.9rem;
    height: .1rem;
    transform: rotate(180deg)
}

.innovative_tech_line5 {
    top: 47%;
    right: -9.5rem;
    width: 9.5rem;
    height: .1rem;
    transform: rotate(180deg)
}

.innovative_tech_line6 {
    top: 63.5%;
    right: -11rem;
    width: 13.1rem;
    height: .1rem;
    transform: rotate(180deg)
}

.innovative_tech_text {
    position: absolute;
    font: 400 2rem/1.4 "Manrope", sans-serif;
    max-width: 23.5rem;
    width: 100%;
    display: inline-block
}

.innovative_tech_text:nth-child(1) {
    text-align: end;
    top: 31%;
    left: 8%;
    transform: translate(0, -10%)
}

.innovative_tech_text:nth-child(2) {
    text-align: end;
    top: 47%;
    left: 8%;
    transform: translate(0, -10%)
}

.innovative_tech_text:nth-child(3) {
    text-align: end;
    top: 63.5%;
    left: 8%;
    transform: translate(0, -10%)
}

.innovative_tech_text:nth-child(4) {
    top: 31%;
    right: 8%;
    transform: translate(0, -10%)
}

.innovative_tech_text:nth-child(5) {
    top: 47%;
    right: 8%;
    transform: translate(0, -10%)
}

.innovative_tech_text:nth-child(6) {
    top: 63.5%;
    right: 8%;
    transform: translate(0, -10%)
}

.solutions_sec {
    padding: 7rem 0 4rem
}

.solutions_blocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 6rem;
    margin-top: 4rem
}

.solution_img {
    margin: 0;
    transition: 0.3s linear
}

.solutions_block {
    width: calc(33.3333333333% - 4rem);
    background-color: #1B242B;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
    padding: 3rem 4.2rem 1.2rem;
    border-radius: 1rem;
    overflow: hidden;
    transition: 0.3s linear;
    overflow: hidden
}

.solutions_block p, .solutions_block a {
    color: #fff
}

.solutions_block::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2.5rem;
    z-index: -1;
    transition: 0.3s linear
}

.solution_text {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: none;
    transform: translate(-50%, 0);
    text-align: center;
    transition: 0.3s linear;
    opacity: 1
}

.solution_bottom {
    margin: 4rem auto
}

.solutions_block.solutions_block_orange:after {
    background-color: #F06900
}

.solutions_block.solutions_block_blue:after {
    background-color: #0CC1E0
}

.solutions_block.solutions_block_green:after {
    background-color: #01BF65
}

.solutions_block.solutions_block_yellow:after {
    background-color: #FFDD5B
}

.solutions_block.solutions_block_red:after {
    background-color: #FF3430
}

.solutions_block.solutions_block_pink:after {
    background-color: #FF307B
}

.solutions_block.solutions_block_purple:after {
    background-color: #8C52FE
}

.solutions_block.solutions_block_bark:after {
    background-color: #2E2E2E
}

.solutions_block.solutions_block_bark_blue:after {
    background-color: #055A77
}

.solutions_block.solutions_block_1:after {
    background-color: #F06900
}

.solutions_block.solutions_block_2:after {
    background-color: #0CC1E0
}

.solutions_block.solutions_block_3:after {
    background-color: #01BF65
}

.solutions_block.solutions_block_4:after {
    background-color: #FFDD5B
}

.solutions_block.solutions_block_5:after {
    background-color: #FF3430
}

.solutions_block.solutions_block_6:after {
    background-color: #FF307B
}

.solutions_block.solutions_block_7:after {
    background-color: #8C52FE
}

.solutions_block.solutions_block_8:after {
    background-color: #2E2E2E
}

.solutions_block.solutions_block_9:after {
    background-color: #055A77
}

.solutions_block.solutions_block_10:after {
    background-color: #FFCE1B
}

.solutions_block.solutions_block_11:after {
    background-color: #32CD32
}

.solutions_block.solutions_block_12:after {
    background-color: cyan
}

.solution_center {
    display: flex;
    justify-content: center;
    gap: 1.3rem;
    align-items: center;
    margin: 7.8rem 0 1.5rem;
    transition: 0.3s linear
}

.solution_center hr {
    width: 1.8rem;
    border-top: 1px solid #F96020;
    margin: auto 0;
    transition: 0.3s linear
}

.solution_name, .solution_price {
    font-weight: 700;
    transition: 0.3s linear
}

.solution_button {
    font: 600 1.6rem "Roboto", sans-serif;
    text-transform: uppercase;
    position: absolute;
    bottom: -4rem;
    left: 50%;
    transform: translate(-50%, 0);
    transition: 0.3s linear;
    padding-right: 3.5rem;
    display: inline-block;
    max-width: 11rem;
    width: 100%
}

.solution_button::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    display: inline-block;
    width: 2.7rem;
    height: 2.7rem;
    background-image: url("data:image/svg+xml,%3Csvg width='27' height='27' viewBox='0 0 27 27' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='13.5' cy='13.5' r='13.5' fill='%23F96020'/%3E%3Cpath d='M13.7989 16.1202L16.5859 13.5133L13.7989 10.9064C13.7738 10.8756 13.7418 10.8502 13.7052 10.832C13.6685 10.8137 13.6281 10.803 13.5867 10.8005C13.5452 10.7981 13.5037 10.8039 13.4648 10.8177C13.426 10.8315 13.3908 10.8529 13.3617 10.8804C13.3325 10.9079 13.31 10.941 13.2958 10.9773C13.2815 11.0136 13.2758 11.0523 13.2791 11.0909C13.2823 11.1294 13.2944 11.1669 13.3146 11.2007C13.3347 11.2345 13.3624 11.2639 13.3958 11.2869L15.481 13.2434L9.93309 13.2434C9.85617 13.2434 9.78241 13.2719 9.72802 13.3225C9.67363 13.3731 9.64308 13.4417 9.64308 13.5133C9.64308 13.5849 9.67363 13.6535 9.72802 13.7041C9.78241 13.7547 9.85617 13.7832 9.93309 13.7832L15.481 13.7832L13.3958 15.7397C13.3416 15.7905 13.3113 15.8593 13.3116 15.9309C13.3118 16.0025 13.3427 16.0711 13.3973 16.1216C13.4519 16.172 13.5258 16.2002 13.6028 16.2C13.6797 16.1997 13.7534 16.171 13.8076 16.1202L13.7989 16.1202Z' fill='white' stroke='white' stroke-width='0.7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: .8rem
}

.solution_button::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: calc(100% - 3.5rem);
    height: .1rem;
    background-color: #fff
}

.item_total_cart {
    position: absolute;
    display: none;
    top: -1.2rem;
    right: -2.2rem;
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    text-align: center;
    font-size: 1.2rem;
    color: #fff;
    background: #F96020;
    border-radius: 50%
}

.item_total_cart.active {
    display: block
}

.contact_form_not_find {
    max-width: 60rem;
    margin: 2rem auto 0
}

.contact_form_not_find .form_item_captcha_flex {
    margin-top: 0 !important
}

.contact_form_not_find .input {
    margin-bottom: 2rem
}

.contact_form_not_find .custom_checkbox + label .checkbox_text {
    font-size: 1.4rem
}

.how_it_works {
    padding: 4rem 0 8rem
}

.how_it_works_blocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 3.2rem;
    margin: 4rem 0 0
}

.how_it_works_block {
    width: calc(25% - 2.4rem);
    display: flex;
    flex-direction: column;
    text-align: center
}

.how_it_works_image {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    border: .2rem solid #FEEFE9;
    border-radius: 1rem;
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center
}

.how_it_works_image img {
    object-fit: cover;
    width: 100%
}

.how_it_works_number {
    position: absolute;
    top: -4.15rem;
    left: -4.15rem;
    width: 8.3rem;
    height: 8.3rem;
    border-radius: 50%;
    background-color: #FEEFE9
}

.how_it_works_number_inner {
    position: absolute;
    top: 4.5rem;
    left: 5rem;
    font: 800 2rem/1.3 "Manrope", sans-serif;
    color: #F96020
}

.how_it_works_text {
    font: 400 2rem/1.5 "Manrope", sans-serif;
    margin: 2rem 0 0;
    padding: 0 1rem
}

.how_it_works_text b, .how_it_works_text strong {
    font-weight: 600
}

.counters {
    margin-top: 6rem;
    display: grid;
    grid-template-columns:repeat(4, auto);
    gap: 4.6rem 7.6rem;
    max-width: 115.6rem;
    margin-inline: auto
}

.counters .counter_item p {
    font: 700 2rem/1.5 "Manrope", sans-serif;
    color: #fff;
    text-align: center;
    margin: 0
}

.counters .counter_item p.number {
    font: 700 4.8rem "Roboto", sans-serif;
    color: #fff;
    margin: 0 0 1.8rem;
    text-transform: uppercase;
    position: relative
}

.review_sec {
    padding: 10rem 0 9rem
}

.review_inner_wrapper {
    max-width: 89.6rem;
    padding: 0 4.2rem;
    margin: 0 auto
}

.review_slider {
    margin: 0 -1.8rem
}

.review_slider.hidden_slider {
    opacity: 0;
    overflow: hidden;
    max-height: 52.3rem
}

.review_slider .slick-track {
    display: flex !important
}

.review_slid {
    margin: 7.6rem 1.8rem 1rem 1.8rem;
    padding: 6rem 3rem 4rem;
    box-shadow: 0 0 1.2rem #FEEFE9;
    border-radius: 1rem;
    display: flex !important;
    flex-direction: column;
    height: auto !important;
    position: relative
}

.review_slid:after {
    content: "";
    position: absolute;
    top: -7.6rem;
    left: 50%;
    transform: translate(-50%, 0);
    display: block;
    width: 10.5rem;
    height: 9.3rem;
    background-image: url("data:image/svg+xml,%3Csvg width='105' height='93' viewBox='0 0 105 93' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 57.8415C0 40.7033 2.40942 28.3537 7.22826 20.7927C12.0471 12.9797 20.7971 6.04878 33.4783 0L47.9348 21.5488C38.5507 26.8415 33.0978 31.252 31.5761 34.7805C30.308 38.0569 29.6739 41.0813 29.6739 43.8537H47.5543V93H0V57.8415ZM57.0652 57.8415C57.0652 40.7033 59.3478 28.3537 63.913 20.7927C68.7319 12.9797 77.6087 6.04878 90.5435 0L105 21.5488C95.6159 26.8415 90.163 31.252 88.6413 34.7805C87.1196 38.0569 86.3587 41.0813 86.3587 43.8537H104.62V93H57.0652V57.8415Z' fill='%23FEEFE9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain
}

.reviews_desc {
    margin-bottom: 2rem
}

.reviews_desc p {
    text-align: center;
    color: rgb(27 36 43 / .5)
}

.reviews_desc p:last-child {
    margin: 0
}

.reviews_card_bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .9rem
}

.reviews_card_bottom .reviews_img {
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 50%
}

.reviews_name {
    font: 400 2rem/1.5 "Manrope", sans-serif
}

.reviews_stars {
    margin-top: .4rem;
    display: flex;
    justify-content: center;
    align-items: center
}

.reviews_stars svg {
    fill: #EFA740;
    width: 1.9rem;
    height: 1.9rem
}

.reviews_slider_arrows .slick-arrow {
    cursor: pointer;
    top: 60%
}

.reviews_slider_arrows .slick-prev::after, .reviews_slider_arrows .slick-next::after {
    content: none
}

.reviews_slider_arrows svg {
    width: 4.2rem;
    height: 3.9rem;
    fill: #F96020;
    stroke: #F96020;
    transition: 0.3s
}

.review_sec2 .wrapper {
    max-width: 117.8rem
}

.review_slider2 {
    margin: 2rem -1.8rem 0
}

.review_slider2.hidden_slider {
    opacity: 0;
    overflow: hidden;
    max-height: 36.8rem
}

.review_slider2 .slick-track {
    display: flex !important
}

.review_slid2 {
    margin: 7.6rem 1.8rem 1rem 1.8rem;
    padding: 6rem 3rem 4rem;
    box-shadow: 0 0 1.2rem #FEEFE9;
    border-radius: 1rem;
    display: flex !important;
    flex-direction: column;
    height: auto !important;
    position: relative
}

.review_slid2:after {
    content: "";
    position: absolute;
    top: -7.6rem;
    left: 50%;
    transform: translate(-50%, 0);
    display: block;
    width: 10.5rem;
    height: 9.3rem;
    background-image: url("data:image/svg+xml,%3Csvg width='105' height='93' viewBox='0 0 105 93' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 57.8415C0 40.7033 2.40942 28.3537 7.22826 20.7927C12.0471 12.9797 20.7971 6.04878 33.4783 0L47.9348 21.5488C38.5507 26.8415 33.0978 31.252 31.5761 34.7805C30.308 38.0569 29.6739 41.0813 29.6739 43.8537H47.5543V93H0V57.8415ZM57.0652 57.8415C57.0652 40.7033 59.3478 28.3537 63.913 20.7927C68.7319 12.9797 77.6087 6.04878 90.5435 0L105 21.5488C95.6159 26.8415 90.163 31.252 88.6413 34.7805C87.1196 38.0569 86.3587 41.0813 86.3587 43.8537H104.62V93H57.0652V57.8415Z' fill='%23FEEFE9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain
}

.reviews_desc2 {
    margin-bottom: auto
}

.reviews_card_center2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0
}

.reviews_img {
    width: 1.9rem;
    height: 1.9rem
}

.reviews_stars2 {
    display: flex;
    align-items: center;
    justify-content: center
}

.reviews_stars2 svg {
    width: 1.9rem;
    height: 1.9rem;
    margin: 0;
    color: #EFA740
}

.reviews_name2 {
    text-align: center;
    color: #1B242B;
    font: 700 2rem/1.45 "Manrope", sans-serif;
    margin: .2rem
}

.reviews_place2 {
    text-align: center;
    color: rgb(27 36 43 / .5);
    font: 400 2rem/1.35 "Roboto", sans-serif;
    margin: 0
}

.cta1 {
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: 5rem 0
}

.cta1 h2, .cta1 h2 {
    margin: 0 0 4.6rem
}

.cta1 p {
    color: rgb(255 255 255 / .5);
    margin: 0
}

.cta1 h6, .cta1 .h6 {
    color: #fff;
    margin: 0 0 2rem
}

.cta1 .wrapper {
    max-width: 93.1rem;
    z-index: 5
}

.cta1 .cta1_bg {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: #fff
}

.cta1 .cta1_bg_main {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 20.35% 100%);
    content: "";
    background: linear-gradient(to right, #1b242b, #0f2d41);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.cta1 .cta1_bg_triangle {
    position: absolute;
    left: 24.51%;
    top: -.1rem;
    width: 19.79%;
    height: 50%;
    background-color: #fff;
    clip-path: polygon(100% 0, 0 0, 50% 100%)
}

.cta1 .cta1_bg_triangle_inner {
    clip-path: polygon(48.791% 98.908%, .705% 4.689%, .705% 4.689%, .473% 4.108%, .343% 3.498%, .31% 2.878%, .365% 2.272%, .501% 1.701%, .713% 1.185%, .993% .747%, 1.334% .407%, 1.73% .188%, 2.173% .11%, 98.013% .11%, 98.013% .11%, 98.455% .188%, 98.85% .407%, 99.191% .745%, 99.471% 1.182%, 99.683% 1.697%, 99.82% 2.267%, 99.876% 2.872%, 99.843% 3.49%, 99.715% 4.101%, 99.485% 4.682%, 51.731% 98.9%, 51.731% 98.9%, 51.488% 99.296%, 51.211% 99.604%, 50.909% 99.825%, 50.59% 99.958%, 50.262% 100.002%, 49.934% 99.959%, 49.615% 99.828%, 49.312% 99.609%, 49.034% 99.303%, 48.791% 98.908%);
    position: absolute;
    left: 50%;
    top: 0;
    width: 74.82%;
    height: 74.82%;
    background: linear-gradient(to top, #F96020, #EFA740);
    transform: translate(-50%, 0)
}

.cta1 .cta1_cut_out {
    clip-path: polygon(73.9% 0, 100% 62.11%, 85.84% 100%, 0 100%, 0 0);
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30.3%;
    height: 64.2%;
    background-color: #fff
}

.cta1 .cta1_cut_line {
    clip-path: polygon(87.17% 0, 100% 0, 12.83% 100%, 0% 100%);
    position: absolute;
    left: 23.1%;
    bottom: 0;
    width: 21.14%;
    height: 100%;
    background-color: #fff
}

.cta1 .cta1_line1 {
    clip-path: polygon(0 0, 20% 0, 100% 100%, 80% 100%);
    position: absolute;
    right: -10%;
    bottom: 0;
    width: 47%;
    height: 97%;
    background: linear-gradient(to top, #F96020, #EFA740)
}

.cta1 .cta1_line2 {
    clip-path: polygon(0 0, 20% 0, 100% 100%, 80% 100%);
    position: absolute;
    right: 4%;
    bottom: 0;
    width: 47%;
    height: 97%;
    background: linear-gradient(to top, #F96020, #EFA740)
}

.cta1 .cta1_line3 {
    clip-path: polygon(0 0, 20% 0, 100% 100%, 80% 100%);
    position: absolute;
    right: 19%;
    bottom: 0;
    width: 47%;
    height: 97%;
    background: linear-gradient(to top, #F96020, #EFA740)
}

.cta1_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem
}

.cta1_image {
    max-width: 36.6rem;
    width: 100%;
    margin-bottom: -10rem
}

.cta1_image img {
    max-width: 100%;
    width: 72%;
    margin-left: 14%;
    object-fit: cover
}

.cta2_image img {
    width: 100%;
    margin-left: 0
}

.text_h6_initial h6, .text_h6_initial .h6 {
    text-transform: initial;
    font-weight: 600
}

.cta1_text {
    max-width: 48rem;
    width: 100%
}

.ct1_payment {
    margin: 2.3rem 0 0;
    display: flex;
    align-items: center;
    gap: 2.4rem
}

.content .ct1_payment {
    justify-content: center
}

.payment_img {
    display: block;
    max-width: 19.4rem;
    width: 100%
}

.payment_img img {
    max-width: 100%;
    width: 100%;
    object-fit: cover
}

.cta2 {
    background: linear-gradient(to right, #F96020, #EFA740);
    padding: 2rem 0 2.4rem
}

.cta2 .wrapper {
    max-width: 91.1rem
}

.cta2 h2, .cta2 .h2 {
    color: #fff;
    margin: 0 0 .2rem;
    text-transform: unset
}

.cta2 p {
    color: rgb(255 255 255 / .7);
    margin: 0
}

.cta2 .phone_number {
    font-size: 4.8rem;
    font-weight: 700;
    color: #fff;
    transition: 0.3s
}

.cta2_row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem 6rem
}

.cta2_text {
    max-width: 44.1rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    text-align: end
}

.cta3 {
    background: linear-gradient(to right, #F96020, #EFA740);
    padding: 4rem 0
}

.cta3 .wrapper {
    max-width: 82.2rem
}

.cta3 .button {
    max-width: 22.9rem;
    width: 100%
}

.cta3 h2, .cta3 .h2 {
    color: #fff;
    text-transform: unset
}

.cta3 p {
    color: rgb(255 255 255 / .7);
    margin: 0
}

.cta3_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem
}

.cta3_text {
    max-width: 42.4rem;
    width: 100%
}

.cta4 {
    padding: 4rem 0
}

.cta4 .wrapper {
    max-width: 90.5rem
}

.cta4 .button {
    max-width: 22.9rem;
    width: 100%
}

.cta4 h2, .cta4 .h2 {
    color: #fff;
    text-transform: unset
}

.cta4 p {
    color: rgb(255 255 255 / .7);
    margin: 0
}

.cta4_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem
}

.cta4_text {
    max-width: 56.8rem;
    width: 100%
}

.cta5 {
    padding: 4rem 0
}

.cta5 .wrapper {
    max-width: 88rem
}

.cta5_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem 4rem
}

.cta5_text {
    max-width: 57.2%;
    width: 100%
}

.cta5_text p {
    color: rgb(255 255 255 / .7)
}

.cta5_text h2, .cta5_text .h2 {
    color: #fff
}

.cta5_button {
    max-width: 22.9rem;
    width: 100%
}

.cta5_button .button {
    max-width: 100%;
    width: 100%
}

.single_product_section {
    padding: 8rem 0
}

.single_product_wrapper {
    display: flex
}

.single_product_wrapper .single_product {
    display: flex;
    flex-wrap: wrap
}

.single_product_wrapper .img_block {
    width: 51.93%
}

.single_product_wrapper .desc_block {
    width: 48.07%;
    padding-left: 6.9rem
}

.single_product_wrapper .desc_block h2, .single_product_wrapper .desc_block h2 {
    margin: 0 0 1.7rem
}

.single_product_wrapper .desc_block .product_sub_name {
    margin: 0 0 1rem;
    text-transform: uppercase;
    color: #1B242B
}

.single_product_wrapper .desc_block .product_desc_top {
    display: flex;
    margin: 0 0 2rem
}

.single_product_wrapper .desc_block .price_row {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem
}

.single_product_wrapper .desc_block p {
    color: rgb(27 36 43 / .5)
}

.number_reviews {
    margin: 0
}

.single_product_wrapper .desc_block .availability {
    margin: 2rem 0
}

.single_product_wrapper .desc_block .prices_block {
    font-size: 0;
    margin: 0
}

.single_product_wrapper .desc_block .prices_block .price {
    display: inline-block;
    vertical-align: middle;
    font-size: 6.2rem
}

.single_product_wrapper .desc_block .prices_block .currency {
    display: inline-block;
    vertical-align: middle;
    font-size: 3.2rem
}

.single_product_wrapper .desc_block .prices_block .product_stars {
    display: inline-block;
    vertical-align: middle;
    max-width: 9.5rem;
    margin: 0 1rem 0 0
}

.single_product_wrapper .desc_block .prices_block .product_stars svg {
    fill: #EFA740;
    width: 1.9rem;
    height: 1.9rem
}

.single_product_wrapper .desc_block .buttons_wrap {
    display: flex;
    margin: 2rem 0 0
}

.single_product_wrapper .desc_block .buttons_wrap .value_buttons_wrap {
    margin: 0 3.8rem 0 0;
    border-radius: .4rem;
    flex-shrink: 0;
    border: .1rem solid #F96020
}

.mobile_product_desc {
    width: 100%
}

.buttons_wrap .button {
    max-width: 100%;
    width: 100%
}

.value_buttons_wrap .value_button {
    display: inline-block;
    vertical-align: top;
    width: 5rem;
    height: 4.8rem;
    line-height: 5rem;
    transition: all 0.3s;
    font-size: 2rem;
    text-align: center;
    color: #F96020;
    background: #FEEFE9;
    user-select: none;
    cursor: pointer;
    border-radius: .4rem
}

.value_buttons_wrap .input {
    text-align: center;
    display: inline-block;
    vertical-align: top;
    border: none;
    margin: 0;
    width: 8.4rem;
    height: 4.8rem;
    font-size: 2rem;
    font-weight: 600;
    color: #F96020;
    padding: 0 .5rem;
    border-radius: 0
}

.product_slider {
    width: calc(100% - 12.2rem);
    order: 1
}

.product_slider.hidden_slider {
    opacity: 0;
    overflow: hidden;
    max-height: 554rem
}

.product_slider .slider_item {
    display: block;
    overflow: hidden;
    aspect-ratio: 485/640;
    position: relative;
    background-color: #FEEFE9;
    border-radius: 1rem
}

.product_slider .slider_item img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 90%;
    height: 90%;
    object-fit: cover
}

.product_slider_nav {
    width: 8.8rem;
    order: 0;
    margin: -1rem 3.3rem -1rem 0
}

.product_slider_nav.hidden_slider {
    opacity: 0;
    overflow: hidden;
    max-height: 10rem
}

.product_slider_nav .slider_item {
    position: relative;
    cursor: pointer;
    width: 8.7rem;
    padding: 1.1rem;
    height: 8.7rem;
    overflow: hidden;
    transition: 0.3s linear;
    margin: 1rem 0;
    border-radius: 1rem;
    display: block;
    background-color: #FEEFE9;
    border: .1rem solid #FEEFE9
}

.product_slider_nav .slider_item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;";
    margin: 0;
    border: none
}

.product_accordion_item {
    position: relative;
    border-bottom: .1rem solid rgb(27 36 43 / .1)
}

.product_accordion_item.active .button_rounded:after {
    transform: translate(-50%, -50%) rotate(0deg)
}

.product_accordion_name {
    position: relative;
    padding: 2rem 4.2rem 2rem 0;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s;
    user-select: none;
    color: #1B242B
}

.header .header_contacts .button_login {
    background: #fff;
    height: 3.2rem;
    line-height: 3rem !important;
    padding: 0 2rem !important;
    color: #000 !important;
    border-radius: .4rem
}

.header .header_contacts .button_login svg {
    position: relative !important;
    top: -.2rem
}

.button_rounded {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    transform: translate(0, -50%);
    background-color: #1B242B
}

.button_rounded:before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    width: .9rem;
    height: .2rem
}

.button_rounded:after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    background-color: #fff;
    width: .9rem;
    height: .2rem
}

.product_accordion_content {
    display: none;
    padding: 0 0 2rem
}

.product_accordion_content .reviews_stars {
    margin: 0
}

.product_accordion_review_top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: .4rem 2rem;
    align-items: center
}

.product_accordion_review_bottom {
    margin: .5rem 0 0;
    padding-left: 2.8rem
}

.product_accordion_review {
    margin: 1rem 0
}

.product_accordion_review:last-child {
    margin-bottom: 0
}

.review_form {
    margin: 3rem 0 0
}

.review_form h3 {
    color: #f86020
}

.dashboard_sec {
    padding: 0 0 8rem;
    background: linear-gradient(to right, #1b242b, #0f2d41)
}

.dashboard_row {
    display: flex;
    align-items: stretch
}

.dashboard_main {
    width: calc(100% - 32.7rem + 1rem);
    margin-left: -1rem;
    position: relative;
    z-index: 1
}

.dashboard_close_block, .dashboard_aside_open_block {
    display: none
}

.dashboard_aside {
    width: 32.7rem;
    border-radius: 1rem;
    background: linear-gradient(to right, #46515A, #452538);
    position: relative;
    z-index: 2
}

.dashboard_aside ul li {
    position: relative;
    cursor: pointer
}

.dashboard_aside ul li a {
    padding: 2rem 2rem 2rem 7.4rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2.3rem
}

.dashboard_aside ul li .dashboard_aside_image {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    padding: .1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FEEFE9
}

.dashboard_aside ul li .dashboard_aside_image svg {
    width: 1.8rem;
    height: 1.8rem;
    fill: #F96020
}

.dashboard_aside ul li .dashboard_aside_text {
    color: #fff;
    font-size: 2rem;
    font-weight: 600
}

.dashboard_aside ul li.active {
    background-color: #FEEFE9;
    border-radius: .4rem
}

.dashboard_aside ul li.active:after {
    content: "";
    position: absolute;
    top: 0;
    right: -3rem;
    width: 3.1rem;
    height: 100%;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background-color: #FEEFE9
}

.dashboard_aside ul li.active .dashboard_aside_image {
    background-color: #1B242B
}

.dashboard_aside ul li.active .dashboard_aside_image svg {
    fill: #fff
}

.dashboard_aside ul li.active .dashboard_aside_text {
    color: #1B242B;
    position: relative;
    padding-right: 1.6rem
}

.dashboard_aside ul li.active .dashboard_aside_text:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%) rotate(-45deg);
    transition: 0.3s linear;
    width: .8rem;
    height: .8rem;
    border-style: solid;
    border-width: 0 .2rem .2rem 0
}

.dashboard_products {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem
}

.dashboard_product label span {
    font-size: 1.4rem;
    color: #878787
}

.dashboard_product {
    width: 100%;
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
    background-color: #fff;
    padding: 6rem 4.6rem 5rem
}

.dashboard_products:not(:last-child) {
    margin-bottom: 1rem
}

.dashboard_product h2, .dashboard_product .h2 {
    text-align: center
}

.dashboard_product ul li {
    margin-bottom: 1rem
}

.dashboard_product ul li:last-child {
    margin: 0
}

.product_body {
    display: flex;
    align-items: flex-start
}

.product_body td {
    padding-bottom: 2.3rem;
    vertical-align: top
}

.product_body td:first-child {
    padding-right: 1.6rem;
    color: rgb(27 36 43 / .5)
}

.product_status {
    padding-right: 1.4rem;
    margin-right: 4.8rem;
    position: relative;
    display: inline-block
}

.product_status:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: .9rem;
    height: .9rem;
    border-radius: 50%;
    transform: translate(0, -50%);
    background-color: #FF3430
}

.product_status.active:before {
    background-color: #73F90D
}

.product_image {
    max-width: 28%;
    width: 100%;
    padding-right: 4.6rem;
    display: flex;
    justify-content: flex-end
}

.product_image img {
    object-fit: contain
}

.product_content {
    margin: 1.4rem 0 0
}

.dashboard_aside_bottom {
    padding: 0 3.3rem;
    margin: 2rem 0
}

.dashboard_aside_bottom .button {
    max-width: 100%;
    width: 100%
}

.blog {
    padding: 8rem 0
}

.blog .blog_wrap {
    display: flex;
    flex-wrap: wrap
}

.blog main {
    width: 70%;
    padding: 0 6rem 0 0
}

.blog aside {
    width: 30%
}

.blog .blog_article {
    border-bottom: .1rem solid #f86020;
    padding: 0 0 3.5rem;
    margin: 0 0 3rem
}

.blog .blog_article .title_wrap h2 a {
    transition: 0.3s
}

.blog .blog_article .title_wrap p {
    margin: 1rem 0
}

.blog .blog_article .title_wrap p a {
    transition: 0.3s linear
}

.blog .blog_article .img_wrap {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 66%;
    overflow: hidden
}

.blog .blog_article .img_wrap img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: "object-fit: cover;";
    transition: 0.3s linear
}

.blog .blog_article .short_desc p {
    font-size: 1.6rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden
}

.blog.blog_post .blog_article {
    padding: 0;
    margin: 0;
    border-bottom: none
}

.blog.blog_post .blog_article .content p, .blog.blog_post .blog_article .content ul li, .blog.blog_post .blog_article .content h2, .blog.blog_post .blog_article .content h3, .blog.blog_post .blog_article .content h4 {
    color: #000
}

.blog .sharethis-inline-share-buttons {
    margin: 0 0 1.5rem;
    z-index: 2 !important
}

.blog_sidebar {
    padding: .4rem 0 0 4rem;
    position: relative
}

.blog_sidebar::after {
    content: "";
    display: block;
    position: absolute;
    top: .6rem;
    left: 0;
    height: calc(100% - 0.6rem);
    width: .1rem;
    background: linear-gradient(to bottom, #1b242b, #0f2d41);
    z-index: -1
}

.blog_sidebar .aside_mobile_btn {
    display: none
}

.blog_sidebar .aside_form_wrapper {
    margin: 0 0 3rem;
    background: linear-gradient(to right, #1b242b, #0f2d41);
    padding: 1.5rem 1.5rem 1.5rem;
    border-radius: 1rem
}

.blog_sidebar .aside_form_wrapper .sub_title, .blog_sidebar .aside_form_wrapper .modal_title {
    color: #fff;
    text-align: center
}

.blog_sidebar .contact_form .pre_input {
    color: #fff
}

.blog_sidebar .contact_form .input {
    border-bottom: .1rem solid #cdcdcd
}

.blog_sidebar .contact_form .form_item_captcha_flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem
}

.blog_sidebar .contact_form .image_wrap {
    display: none
}

.blog_sidebar .contact_form .input, .blog_sidebar .contact_form .input::placeholder, .blog_sidebar .contact_form .pre_input {
    color: #fff
}

.blog_sidebar .contact_form textarea.input {
    min-height: 5rem
}

.blog_sidebar .contact_form .custom_checkbox + label .checkbox_text {
    color: #fff
}

.blog_sidebar .blog_search {
    position: relative;
    margin-bottom: 2rem
}

.blog_sidebar .blog_search .input {
    background-color: #fff0;
    border: .1rem solid #cdcdcd;
    color: #000;
    padding: 0 1rem 0 3.2rem;
    border-radius: .3rem;
    height: 3rem;
    font-size: 1.4rem
}

.blog_sidebar .blog_search .input::placeholder {
    font-size: 1.4rem;
    color: #626262
}

.blog_sidebar .blog_search button {
    position: absolute;
    top: .8rem;
    left: 1.2rem;
    background-color: #fff0;
    border: none;
    cursor: pointer
}

.blog_sidebar .blog_search button svg {
    display: block;
    width: 1.3rem;
    height: 1.3rem;
    color: #8c8c8c
}

.blog_sidebar .aside_title {
    margin: 0 0 1.5rem
}

.blog_sidebar .aside_block {
    margin-bottom: 3rem
}

.blog_sidebar .aside_block:last-child {
    margin-bottom: 0
}

.blog_sidebar .aside_block a {
    transition: 0.3s linear
}

.blog_sidebar .aside_block li {
    padding: .7rem 0;
    border-bottom: .1rem solid #1b242b
}

.blog_sidebar .aside_block li:first-child {
    padding: 0 0 .7rem
}

.blog_sidebar .aside_block li.active a {
    color: #f86020;
    pointer-events: none
}

.blog_sidebar .aside_block li a {
    display: inline-block;
    font-size: 1.6rem;
    color: rgb(27 36 43 / .5)
}

.blog_sidebar .recent li {
    color: #1b242b;
    border-bottom: .1rem solid #1b242b;
    line-height: 1.2;
    padding: 1rem 0 .7rem
}

.blog_sidebar .recent li:first-child {
    padding: 0 0 1rem
}

.blog_sidebar .recent li a {
    display: inline-block;
    color: #1b242b;
    border-bottom: none;
    line-height: 1.3;
    padding: 0;
    margin: 0 0 1rem
}

.blog_sidebar .recent li a strong {
    font-weight: 600
}

.blog_sidebar .recent li span {
    display: block;
    font-size: 1.4rem;
    color: rgb(27 36 43 / .5)
}

.empty_heading {
    font-size: 4rem;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 1rem 0 2rem;
    color: #1b242b
}

body.page_404 {
    display: flex;
    flex-direction: column;
    height: 100vh
}

body.page_404 footer {
    flex-shrink: 0
}

.block_404 {
    flex: 1 0 auto;
    display: flex;
    align-items: center;
    justify-content: center
}

.block_404_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.block_404_content h1, .block_404_content .h1 {
    font-size: 9rem;
    text-align: center
}

.block_404_content h1 span, .block_404_content .h1 span {
    color: #f86020;
    display: block;
    font-size: 20rem;
    line-height: 1
}

body.body_cart {
    display: flex;
    flex-direction: column;
    min-height: 100vh
}

.emptyCart {
    text-align: center
}

.emptyCart .img_cart {
    margin: 0 0 2.5rem;
    text-align: center
}

.emptyCart .img_cart img {
    width: 21rem;
    height: 21rem;
    object-fit: contain
}

.cart {
    flex: 1;
    padding: 6rem 0
}

.cart .cart_wrap {
    align-items: flex-start
}

.cart .value_buttons_wrap {
    border: .1rem solid #F96020;
    border-radius: .4rem;
    display: flex
}

.cart .cart_header p {
    margin: 0
}

.cart .cart_block .value_buttons_wrap .input {
    height: 3.8rem
}

.cart .cart_block .value_buttons_wrap .value_button {
    height: 3.8rem;
    line-height: 4rem
}

.cart .cart_block {
    padding: 0 1rem;
    display: inline-block;
    vertical-align: middle
}

.cart .cart_header {
    font-size: 0;
    padding: 1rem 0;
    text-align: center;
    background: #f1f1f1
}

.cart .cart_header h4 {
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    color: rgb(27 36 43 / .5)
}

.cart .cart_product_name {
    width: 45%;
    text-align: left
}

.cart .cart_unit_price {
    width: 15%
}

.cart .cart_qty {
    width: 20%
}

.cart .cart_subtotal {
    width: 15%
}

.cart .cart_remove {
    width: 5%
}

.cart .cart_item {
    font-size: 0;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center
}

.cart .cart_item:not(:last-child) {
    border-bottom: .1rem solid #EFA740
}

.cart .cart_item p {
    font-size: 1.6rem;
    line-height: 1.2;
    margin: 0
}

.cart .cart_item_desc {
    width: 45%;
    font-size: 0;
    text-align: left
}

.cart .cart_item_desc .img_wrap {
    margin: 0 1.5rem 0 0
}

.cart .cart_item_desc .img_wrap img {
    width: 8rem;
    height: 8rem;
    object-fit: contain;
    font-family: "object-fit: contain;";
    transition: 0.3s linear
}

.cart .cart_item_desc .img_wrap.no_hover {
    width: 10rem;
    text-align: center
}

.cart .cart_item_desc .img_wrap img.no_hover {
    width: 4rem;
    height: 4rem;
    object-fit: contain;
    font-family: "object-fit: contain;"
}

.cart .cart_item_desc .cart_item_heading {
    width: calc(100% - 11.5rem)
}

.cart .cart_item_desc .cart_item_heading a {
    transition: 0.3s linear
}

.cart .cart_item_price {
    width: 15%
}

.cart .cart_item_qty .value_buttons_wrap .input {
    width: 5rem
}

.cart .cart_item_subtotal {
    width: 15%
}

.cart .product_remove {
    width: 5%
}

.cart .product_remove .icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #1b242b;
    cursor: pointer;
    transition: 0.3s
}

.cart_totals_wrap {
    background: linear-gradient(to right, #1b242b, #0f2d41);
    padding: 1.2rem 1.5rem 1.5rem;
    border-radius: 1.5rem
}

.cart_totals_wrap.cart_totals_checkout_wrap {
    background: #fff0;
    border-radius: 0
}

.cart_totals_wrap.cart_totals_checkout_wrap p {
    color: #000;
    margin: 0
}

.cart_totals_wrap table {
    width: 100%
}

.cart_totals_wrap.cart_totals_checkout_wrap tr.total {
    background-color: #eee
}

.cart_totals_wrap.cart_totals_checkout_wrap td {
    padding: 1rem
}

.cart_table thead th {
    background: #f1f1f1;
    font-size: 1.8rem
}

.cart_table th, .cart_table td {
    padding: .5rem 1rem;
    text-align: left
}

.cart_table tr:not(:last-child) {
    border-bottom: .1rem solid #f86020
}

.subscription_text {
    font-size: 1.4rem !important;
    color: #7f7f7f !important;
    margin: 1rem 0 0 1rem !important
}

.subscription_item {
    background: #F99F1B;
    background: linear-gradient(90deg, #f99f1b 0%, #f16225 100%);
    padding: 2rem 3rem;
    display: flex;
    flex-direction: column;
    border-radius: 1rem;
    color: #fff
}

.subscription_item p, .subscription_item h4 {
    color: #fff
}

.subscription_item h4 {
    display: flex;
    justify-content: space-between
}

.subscription_item h4 a svg {
    font-size: 2rem
}

.subscriptions_list {
    margin-top: 4rem
}

.order_table {
    width: 100%
}

.order_table th {
    text-align: left
}

.choose_plan_row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 6rem;
    margin: 4.1rem 0 6rem;
    position: relative
}

.choose_plan_item .annual_price p {
    font: 800 4.6rem "Roboto", sans-serif
}

.choose_plan_item {
    cursor: pointer;
    padding: 3rem 0 2rem;
    width: calc(100% / 4 - 8rem * 2 / 3);
    display: flex;
    flex-direction: column;
    position: relative;
    background: #f9f9f9;
    text-align: center;
    transition: 0.3s;
    border-radius: 1rem
}

.choose_plan_item ul li {
    text-align: center;
    margin: .5rem 0;
    color: #676666
}

.choose_plan_item.active {
    transition: 0.3s;
    box-shadow: -1px 0 11px 0 rgb(0 0 0 / .3);
    -webkit-box-shadow: -1px 0 11px 0 rgb(0 0 0 / .3);
    -moz-box-shadow: -1px 0 11px 0 rgb(0 0 0 / .3)
}

.choose_plan_item.active .activeSubscription {
    display: block !important;
    font-size: 3rem;
    position: absolute;
    right: 1.5rem;
    top: 0;
    font-weight: 700;
    color: #f86020
}

.choose_plan_item_body {
    padding: 0 2.5rem 3rem
}

.choose_plan_name {
    padding: 0 .5rem;
    white-space: nowrap;
    margin-bottom: 2rem;
    color: #f86020
}

.cart_totals_wrap h4 {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    margin: 1rem 0 1.5rem
}

.cart_totals_wrap p {
    font-size: 1.4rem;
    line-height: 1.2;
    color: #fff
}

.cart_totals_wrap hr {
    margin: 1rem 0;
    width: 100%
}

.cart_totals_wrap .total_col.total_col_price p {
    color: #f86020
}

.cart_totals_wrap .total_col p {
    font-size: 1.6rem;
    font-weight: 700
}

.cart_totals_wrap .button {
    margin: .5rem 0 0;
    text-transform: uppercase
}

.sticky_block {
    position: sticky;
    top: 12rem
}

.checkout .checkout_order_item:not(:last-child) {
    border-bottom: .1rem solid #f86020
}

.checkout .checkout_wrap {
    align-items: flex-start
}

.checkout .checkout_header {
    font-size: 0;
    position: relative;
    text-align: justify;
    padding: 1rem 0 1rem
}

.checkout .checkout_header.checkout_header_first {
    padding: 0 0 2rem
}

.checkout .checkout_header.checkout_header_order {
    padding: .2rem 0 1.8rem
}

.checkout .checkout_header::after {
    content: "";
    display: inline-block;
    width: 100%
}

.checkout .checkout_title {
    display: inline-block;
    vertical-align: middle;
    width: 55%
}

.checkout .checkout_title span {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    background-color: #f86020;
    padding: 0 .8rem;
    margin: 0 1rem 0 0;
    display: inline-block;
    vertical-align: middle
}

.checkout .checkout_title h2 {
    display: inline-block;
    vertical-align: middle;
    font-size: 2.4rem;
    line-height: 1;
    font-weight: 700;
    margin: 0;
    color: #1b242b;
    text-align: left
}

section.checkout {
    padding: 6rem 0
}

.checkout label span {
    font-size: 1.4rem;
    color: #878787
}

.checkout .input {
    margin: 0 0 1rem 0
}

.checkout .checkbox {
    position: absolute;
    left: -999.9rem
}

.checkout .checkbox + label {
    display: inline-block;
    font-size: 1.6rem;
    user-select: none;
    cursor: pointer;
    position: relative;
    padding: 0 0 0 3rem;
    margin: 0
}

.checkout .checkbox + label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background-color: #fff;
    border-radius: .3rem;
    border: .1rem solid #1b242b;
    border-image: initial;
    transition: 0.3s
}

.checkout .checkbox:not(:checked) + label::after {
    opacity: 0;
    transform: scale(0)
}

.checkout .checkbox + label::after {
    content: "✔︎";
    position: absolute;
    top: -.05rem;
    left: .45rem;
    font-size: 1.4rem;
    color: #fff;
    transition: 0.2s
}

.checkout .checkbox:checked + label::before {
    background-color: #1b242b;
    border-color: #1b242b
}

.cart_totals_wrap .button {
    height: 4rem;
    line-height: 4rem
}

.billing_row.hidden {
    display: none
}

.about_section table {
    margin: 1.5rem 0
}

.about_section th, .about_section td {
    padding: .5rem 1rem
}

.about_section th {
    background-color: #0f2d41;
    color: #fff
}

.checkout .checkout_checkbox {
    display: inline-block;
    vertical-align: middle;
    text-align: right;
    width: 45%
}

.checkout .checkout_checkbox input[type=checkbox] + label {
    margin: 0
}

.checkout .checkout_row {
    margin-top: 0;
    margin-bottom: .7rem;
    position: relative
}

.checkout .checkout_row:last-child::after {
    display: none
}

.checkout .order_wrap {
    margin: 0 0 2rem
}

.checkout .checkout_order_item {
    padding: 1rem 0 0;
    font-size: 0
}

.checkout .checkout_order_item .img_wrap {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    width: 8rem;
    margin: 0 1rem 0 0
}

.checkout .checkout_order_item .img_wrap img {
    width: 8rem;
    height: 8rem;
    object-fit: contain;
    font-family: "object-fit: contain;";
    -webkit-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    -moz-transition: 0.3s linear;
    transition: 0.3s linear
}

.checkout .checkout_order_item .img_wrap .qty {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 1.4rem;
    font-weight: 500;
    height: 2rem;
    line-height: 1.9rem;
    border-radius: 2rem;
    text-align: center;
    white-space: nowrap;
    padding: 0 .6rem;
    background-color: #1b242b;
    color: #fff;
    z-index: 3
}

.checkout .checkout_order_item .img_wrap.no_hover {
    width: 8rem;
    text-align: center
}

.checkout .checkout_order_item .img_wrap img.no_hover {
    width: 3rem;
    height: 3rem
}

.checkout .checkout_order_item .checkout_order_desc {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 9rem)
}

.checkout .checkout_order_item .checkout_order_desc p {
    font-size: 1.6rem;
    line-height: 1.3;
    margin: 0
}

.checkout .checkout_order_item .checkout_order_name {
    display: inline-block;
    vertical-align: middle;
    width: 70%;
    margin: 0 1rem 0 0
}

.checkout .checkout_order_item .checkout_order_price {
    display: inline-block;
    vertical-align: middle;
    text-align: right;
    width: calc(30% - 1rem)
}

.checkout .checkout_order_item .checkout_order_price p {
    color: #f86020
}

.checkout .cart_totals_wrap {
    width: 70%;
    float: right;
    padding: 0
}

.checkout .cart_totals_wrap.cart_totals_wrap_checkout {
    width: 100%;
    padding: 1.2rem 1.5rem 1.5rem
}

.checkout .cart_totals_wrap .total_col p {
    font-size: 1.4rem
}

.checkout .cart_totals_wrap p {
    font-size: 1.4rem
}

.dashboard_product .checkout_row {
    margin-top: 1rem;
    margin-bottom: 2rem
}

.password_row {
    display: grid;
    align-items: center;
    gap: 0 3rem;
    grid-template-columns:1fr 1fr auto
}

.password_row_f {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-right: auto;
    margin-left: auto;
    max-width: 50%;
    width: 100%
}

.password_f_item {
    max-width: 100%;
    width: 100%
}

.dashboard_product .form_item {
    position: relative
}

.contact_us_section {
    background-position: right bottom;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 5rem 0 8rem;
    position: relative;
    z-index: 2
}

.contact_us_section:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #1b242b, #0f2d41);
    z-index: -1;
    mix-blend-mode: lighten
}

.contact_us_section address {
    text-align: center;
    margin: 5rem 0 0
}

.contact_us_section address p:not([class]), .contact_us_section address a:not(.button) {
    display: inline-block;
    position: relative;
    font-style: initial;
    line-height: 1.2;
    font-size: 1.6rem;
    color: #fff;
    margin: .5rem 2.5rem;
    text-shadow: -.1rem 0 1.3rem #242424;
    transition: 0.3s linear;
    color: rgb(255 255 255 / .5)
}

.contact_us_section address a:not(.button) {
    color: #fff
}

.contact_us_section address h5, .contact_us_section address .h5 {
    color: #fff;
    margin: 2rem 2.5rem 1rem;
    text-shadow: -.1rem 0 1.3rem #242424;
    text-align: left
}

.contact_us_section address h2, .contact_us_section address .h2 {
    margin: 0 2.5rem 1rem;
    text-shadow: -.1rem 0 1.3rem #242424
}

.contact_us_section .contact_hovers {
    color: #f86020;
    margin: .5rem 2.5rem;
    text-align: center
}

.contact_us__bottom_row .social {
    margin: 2rem 0
}

.contact_us_row .address_block {
    max-width: calc(100% - 54.2rem);
    width: 100%
}

.contact_us__bottom_row {
    max-width: 100%;
    width: 100%;
    margin: 4rem 0 0
}

.contact_us__bottom_row p {
    color: #fff
}

.contact_us_section address p svg, .contact_us_section address a:not(.button) svg {
    position: relative;
    color: #f86020;
    left: 0;
    top: -.1rem;
    display: inline-block
}

.contact_us_section form {
    margin: 2rem 0 0
}

.contact_us_section form .modal_title {
    display: none
}

.contact_us_section form .input {
    padding: 0 1.1rem;
    border-radius: .5rem;
    border: none
}

.contact_us_section form select.input {
    color: rgb(27 36 43 / .5)
}

.form_item, .contact_us_section form .form_item {
    position: relative
}

.contact_us_section form .form_item:has(.input):before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: .1rem;
    background-color: #1b242b
}

.contact_us_section form textarea.input {
    min-height: 12.6rem;
    border: none;
    padding: 1.1rem 0 0 1.1rem
}

.contact_us_section form .input:focus, .contact_us_section form .input:active {
    box-shadow: 0 0 .4rem rgb(0 0 0 / .04)
}

@supports not (selector(:has(*))) {
    .contact_us_section form .input {
        border-bottom: .1rem solid #1b242b
    }
}

.contact_us_section form textarea.input:focus, .contact_us_section form textarea.input:active {
    box-shadow: 0 0 .4rem rgb(0 0 0 / .04)
}

.contact_us_row {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap
}

.form_item_flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap
}

.contact_us_form {
    max-width: 54.2rem;
    width: 100%;
    background-color: #fff;
    border-radius: 1rem;
    padding: 6rem 8.7rem
}

.captcha_wrap.captcha_wrap_flex {
    display: flex;
    justify-content: space-between;
    margin: 2.6rem 0 1.4rem
}

.link_underline {
    color: #f86020;
    text-transform: uppercase;
    text-decoration: underline;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s
}

.show_password {
    display: block;
    width: 2.2rem;
    height: 1.5rem;
    position: absolute;
    bottom: .25rem;
    right: 1.2rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%)
}

.show_password svg {
    position: static;
    width: 2.2rem;
    height: 1.5rem;
    fill: #F96020
}

.show_password.showing svg {
    fill: #1B242B
}

.form_item_button100 .button {
    max-width: 100%;
    width: 100%;
    margin: 2rem 0 0
}

.login_bottom {
    text-align: center;
    margin: 4rem 0 0
}

.login_bottom p {
    margin: 0
}

.form_item_captcha.form_item_captcha_flex {
    margin: 4rem 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center
}

footer {
    padding: 6rem 0 0;
    background: linear-gradient(to right, #1b242b, #0f2d41);
    position: relative;
    z-index: 3;
    overflow: hidden
}

footer .footer_title {
    font: 300 1.6rem "Roboto", sans-serif;
    color: rgb(255 255 255 / .5);
    margin: 0 0 3.2rem;
    text-transform: uppercase
}

footer .footer_row {
    display: grid;
    grid-template-columns:18rem 17.5rem 13.5rem 13.8rem 15.8rem;
    justify-content: space-between;
    gap: 4rem 1rem
}

footer p {
    display: block;
    color: #fff;
    font: 600 1.6rem/1.5 "Roboto", sans-serif;
    margin: 1rem 0
}

footer a {
    display: inline-block;
    font: 600 1.6rem/1.5 "Roboto", sans-serif;
    color: #fff;
    transition: 0.3s linear
}

footer br {
    display: none
}

footer ul li a {
    margin: 0 0 .9rem
}

footer ul li:last-child a {
    margin: 0
}

footer .footer_col_navigate ul {
    display: grid;
    grid-template-columns:1fr 1fr 1fr;
    gap: 0 3.3rem
}

footer .footer_location {
    margin-bottom: 1.7rem
}

.footer_bottom_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: .1rem solid rgb(255 255 255 / .4);
    padding: 3.4rem 0
}

.footer_bottom {
    margin: 6rem 0 0;
    position: relative;
    z-index: 3
}

.footer_bottom p, .footer_bottom a {
    font: 600 1.6rem/1.4 "Roboto", sans-serif
}

.footer_bottom p {
    margin: 0;
    color: rgb(255 255 255 / .4);
    font-weight: 300
}

.footer_bottom .footer_bottom_orange {
    color: #F96020;
    font-weight: 600
}

.footer_bottom a {
    transition: 0.3s linear;
    color: #fff
}

.rating {
    display: block;
    width: 15rem;
    margin: 0 auto
}

.rating.validate_radio.validate_error input[type='radio'] + label::before {
    border: none !important;
    color: #F96020
}

.rating.validate_radio.validate_error input[type='radio']:checked ~ label::before {
    color: #f1cd06
}

.rating input[type='radio'] + label {
    float: right;
    position: relative;
    width: 3rem;
    height: 3rem;
    cursor: pointer;
    padding-left: 0;
    display: inline-block;
    margin-right: 0;
    margin-bottom: 0;
    -webkit-border-radius: unset;
    -moz-border-radius: unset;
    border-radius: unset
}

.rating input[type='radio'] + label:not(:first-of-type) {
    padding-right: .2rem
}

.rating input[type='radio'] + label::before {
    content: "\2605";
    font-size: 2.7rem;
    color: #ccc;
    line-height: 1;
    position: static;
    left: unset;
    top: unset;
    right: unset;
    width: 2rem;
    height: 2rem;
    border: none;
    background: #fff;
    -webkit-border-radius: unset;
    -moz-border-radius: unset;
    border-radius: unset;
    -webkit-transition: none;
    -o-transition: none;
    -moz-transition: none;
    transition: none
}

.rating input[type='radio'] + label::after {
    display: none !important
}

.rating input {
    display: none
}

.rating input[type='radio']:checked ~ label::before, .rating:not(:checked) > label:hover::before, .rating:not(:checked) > label:hover ~ label::before {
    color: #f1cd06;
    background-color: #fff0;
    border: none
}

.flex_buttons.flex_cart {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0 0
}

.flex_buttons.flex_cart .button {
    max-width: calc(50% - 1rem);
    width: 100%;
    text-transform: unset
}

.subscription_div {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0 0
}

.subscription_div a svg {
    width: 2.2rem;
    height: 2.2rem;
    margin: 0 0 1rem
}

.subscription_div .select2-container--default .select2-selection--single .select2-selection__arrow b {
    transform: rotate(45deg);
    width: .7rem;
    height: .7rem;
    border-style: solid;
    border-width: 0 .2rem .2rem 0;
    border-color: #F96020
}

.subscription_div .select2-container .select2-selection--single {
    height: 3.2rem
}

.subscription_div .select2-container--default .select2-selection--single {
    border: 1px solid #1b242b;
    border-radius: 0
}

.subscription_div .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #1b242b;
    font-size: 1.6rem;
    line-height: 3.2rem
}

.subscription_div .controls_wrap, .subscription_div .select2-container {
    max-width: 100% !important;
    width: 100% !important
}

.subscription_item.active {
    margin: -1rem 0 2rem
}

.checkout_success_row {
    margin-bottom: 2rem
}

.checkout_success_row td {
    padding: .3rem 0
}

.faqs_category_sec {
    padding: 4rem 0 0
}

.faqs_category {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem
}

.faqs_category a.active {
    pointer-events: none
}

.order_table thead th {
    color: #fff;
    padding: .5rem;
    background: #102c3f
}

.order_table td {
    padding: .5rem
}

.order_table tbody tr:nth-child(even) {
    background: #f1f1f1
}

.vehicles_stolen_sec .wrapper {
    max-width: 117.9rem
}

.vehicles_stolen_sec h6, .vehicles_stolen_sec .h6 {
    margin: 2rem 0
}

.vehicles_stolen_sec img[style*=float] {
    border-radius: 1rem
}

.everyday_protection_sec {
    padding: 5rem 0 6rem
}

.everyday_protection_sec .wrapper {
    max-width: 101.5rem
}

.everyday_protection_sec .sub_title {
    margin-bottom: .5rem
}

.table_checkmarks tbody td {
    text-align: center;
    color: rgba(255, 255, 255, 06);
    padding: 2rem;
    border-left: .1rem solid rgb(254 239 233 / .2);
    border-right: .1rem solid rgb(254 239 233 / .2)
}

.table_checkmarks thead th {
    color: #fff;
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    padding: 2rem;
    border-left: .1rem solid rgb(254 239 233 / .2);
    border-right: .1rem solid rgb(254 239 233 / .2);
    border-bottom: .1rem solid rgb(254 239 233 / .2)
}

.table_checkmarks tbody > tr:nth-child(2n+2) td {
    position: relative;
    background-color: #fff0
}

.table_checkmarks tbody > tr:nth-child(2n+2) td::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #192630;
    mix-blend-mode: color-dodge;
    pointer-events: none
}

.table_checkmarks {
    max-width: 100%;
    width: 100%;
    position: relative;
    border-radius: 1rem;
    border: .1rem solid rgb(254 239 233 / .2);
    overflow: hidden;
    margin: 2rem 0 4rem
}

.table_checkmarks img {
    position: relative
}

.table_checkmarks:before {
    content: "";
    position: absolute;
    width: calc(100% - .2rem);
    height: calc(100% - .2rem);
    left: .1rem;
    top: .1rem;
    border-radius: 1rem;
    border: .1rem solid rgb(254 239 233 / .2);
    pointer-events: none
}

.table_checkmarks tr {
    max-width: 100%;
    width: 100%
}

.table_checkmarks tr > td:nth-child(1) {
    max-width: 34%;
    width: 100%
}

.table_checkmarks tr > td:nth-child(2) {
    max-width: 32%;
    width: 100%
}

.table_checkmarks tr > td:nth-child(3) {
    max-width: 34%;
    width: 100%
}

.table_buttons {
    margin: 4rem auto 0
}

.table_buttons tr {
    display: flex;
    align-items: center;
    justify-content: flex-start
}

.table_buttons tr > td {
    padding: 0 1.5rem
}

.table_buttons tr > td:first-child {
    padding-left: 0
}

.table_buttons tr > td:last-child {
    padding-right: 0
}

.install_minute_sec .wrapper {
    max-width: 101.5rem
}

.install_minute_row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 5rem;
    margin: 2rem 0 4rem
}

.install_minute_block {
    width: calc(100% / 3 - 5rem * 2 / 3);
    display: flex;
    flex-direction: column;
    text-align: center
}

.install_minute_image {
    position: relative;
    width: 100%;
    aspect-ratio: 290 / 263;
    border: .2rem solid #FEEFE9;
    border-radius: 1rem;
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center
}

.install_minute_image img {
    object-fit: cover;
    max-width: 100%;
    width: 100%
}

.install_minute_number {
    position: absolute;
    top: -4.15rem;
    left: -4.15rem;
    width: 8.3rem;
    height: 8.3rem;
    border-radius: 50%;
    background-color: #FEEFE9
}

.install_minute_number_inner {
    position: absolute;
    top: 4.5rem;
    left: 5rem;
    font: 800 2rem / 1.3 "Manrope", sans-serif;
    color: #F96020
}

.install_minute_block .install_minute_text {
    font: 400 2rem / 1.5 "Manrope", sans-serif;
    margin: 2rem 0 0;
    padding: 0 .75rem;
    color: #1B242B
}

.start_driving_protected_sec {
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat
}

.start_driving_protected_sec .wrapper {
    max-width: 96.8rem
}

.start_driving_protected_row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 3.8rem;
    margin: 4rem 0
}

.start_driving_protected_item {
    background-color: #1B242B;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    padding: 6rem;
    max-width: calc(50% - 1.9rem);
    width: 100%
}

.start_driving_protected_item_top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 0 0 2rem
}

.start_driving_protected_item_title {
    font: 700 3.2rem/1 "Roboto", sans-serif;
    color: #f86020;
    margin: 0;
    text-transform: capitalize
}

.start_driving_protected_item_desc {
    margin: 2rem 0 4rem;
    text-align: center
}

.start_driving_protected_item_desc p {
    color: rgb(255 255 255 / .6)
}

.start_driving_protected_item_price {
    font: 700 6.2rem/1 "Roboto", sans-serif;
    letter-spacing: -.248rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto
}

.start_driving_protected_item_price small {
    font-size: 51.6%
}

@media only screen and (min-width: 993px) {
    .navigation .header_nav > li.dr_down:hover .sub_menu {
        opacity: 1;
        visibility: visible;
        transform: translate3d(0, 0, 0)
    }

    .solutions_block:hover {
        border-top-right-radius: 0;
        border-top-left-radius: 0;
        transition: 0.3s linear
    }

    .solutions_block:hover:after {
        transition: 0.3s linear;
        height: 100%
    }

    .solutions_block:hover .solution_text {
        top: -15rem;
        transition: 0.3s linear;
        left: 50%;
        opacity: 0;
        transform: translate(-50%, 0);
        width: calc(100% - 8.4rem);
        position: absolute
    }

    .solutions_block:hover .solution_center {
        margin: 0;
        transition: 0.3s linear
    }

    .solutions_block:hover .solution_img {
        margin-top: 1.5rem;
        margin-bottom: 7.8rem;
        transition: 0.3s linear
    }

    .solutions_block:hover .solution_price {
        display: none;
        transition: 0.3s linear
    }

    .solutions_block:hover .solution_center hr {
        display: none;
        transition: 0.3s linear
    }

    .solutions_block:hover .solution_button {
        bottom: 3.3rem;
        transition: 0.3s linear
    }
}

@media (-ms-high-contrast: none),(-ms-high-contrast: active),(-moz-touch-enabled: 0),(hover: hover) {
    .header .phone_block .phone:hover {
        color: #1b242b
    }

    .navigation .header_nav > li > a:not(.button):hover {
        color: #EFA740
    }

    .navigation .header_nav .sub_menu > li > a:not(.button):hover {
        color: #f86020
    }

    .navigation .header_nav > li.dr_down .sub_dr_down a:hover:after {
        height: 100%;
        transition: 0.3s linear
    }

    footer a:hover {
        color: #f86020
    }

    .footer_bottom a:hover {
        color: #f86020
    }

    .footer_bottom .footer_logo:hover #left-bot, .footer_logo:hover #left-small, .footer_logo:focus #left-bot, .footer_logo:focus #left-small {
        transform: translate(-.3rem, .3rem)
    }

    .footer_bottom .footer_logo:hover #right-top, .footer_logo:hover #right-small, .footer_logo:hover #small, .footer_logo:focus #right-top, .footer_logo:focus #right-small, .footer_logo:focus #small {
        transform: translate(.3rem, -.3rem)
    }

    .footer_bottom .footer_logo:hover #left-top, .footer_logo:focus #left-top {
        transform: translate(-.3rem, -.3rem)
    }

    .footer_bottom .footer_logo:hover #right-bot_1_, .footer_logo:hover #big, .footer_logo:focus #right-bot_1_, .footer_logo:focus #big {
        transform: translate(.3rem, .3rem)
    }

    .product_slider_nav .slider_item:hover {
        border-color: #1b242b
    }

    .button:hover {
        color: #1b242b;
        background-color: #fff;
        border-color: #1b242b
    }

    .button:hover svg {
        fill: #fff
    }

    .button.light:hover {
        color: #fff;
        background-color: #1b242b;
        border-color: #1b242b
    }

    .button.light_2:hover {
        color: #fff;
        background-color: #f86020;
        border-color: #fff
    }

    .button.dark:hover {
        color: #f86020;
        background-color: #fff;
        border-color: #fff
    }

    .button.dark2:hover {
        color: #0f2d41;
        background-color: #f86020;
        border-color: #f86020
    }

    .button.button_success:hover {
        color: #fff;
        background-color: #24993f;
        border-color: #24993f
    }

    .button.button_danger:hover {
        color: #fff;
        background-color: #c82333;
        border-color: #c82333
    }

    .button.button_warning:hover {
        color: #000;
        background-color: #fdae11;
        border-color: #fdae11
    }

    .button.button_info:hover {
        color: #fff;
        background-color: #0890a7;
        border-color: #0890a7
    }

    .button.button_disable:hover {
        color: #000;
        background-color: #c3bfbf;
        border-color: #c3bfbf
    }

    .button.button_default:hover {
        color: #fff;
        background-color: #50606e;
        border-color: #50606e
    }

    .button.btn_icon:hover svg {
        transform: translate(-50%, .9rem)
    }

    .button.btn_icon:hover span {
        transform: translateY(3rem)
    }

    .slick-prev:hover::after, .slick-next:hover::after {
        border-color: #ffbf66
    }

    .dialog .icon_close:hover {
        color: #dc3545
    }

    .input:-webkit-autofill:hover {
        -webkit-box-shadow: 0 0 0 4rem #fff inset !important;
        -webkit-text-fill-color: #000000 !important
    }

    .custom_checkbox + label:hover .checkbox_design {
        border-color: #1b242b
    }

    .custom_radio_button + label:hover .radio_button_design {
        border-color: #1b242b
    }

    .pagination li a:hover {
        background-color: #1b242b;
        color: #fff
    }

    .social .social_block:hover .icon, .social .social_block:hover img {
        padding: .2rem;
        fill: #f86020
    }

    .content a:not(.button):hover {
        color: #EFA740
    }

    .contact_us_section address a:not(.button):hover {
        color: #f86020
    }

    .toast_notifications .removeTOAST .icon:hover {
        color: #FF3F0A
    }

    .dashboard_close:hover {
        background-color: #1b242b;
        transition: 0.3s
    }

    .dashboard_close:hover svg {
        fill: #fff;
        transition: 0.3s
    }

    .aside_block li a:hover {
        transition: 0.3s;
        color: #f86020
    }

    .aside_tags li a:hover {
        transition: 0.3s;
        background-color: #1b242b;
        color: #fff
    }

    .blog .blog_article .title_wrap p a:hover {
        color: #f86020;
        transition: 0.3s
    }

    .blog .blog_article .title_wrap h2 a:hover {
        color: #1b242b;
        transition: 0.3s
    }

    .blog .blog_article .img_wrap:hover img {
        transform: translate(-50%, -50%) scale(1.1);
        transition: 0.3s linear
    }

    .link_underline:hover {
        color: #EFA740;
        transition: 0.3s
    }

    .cart_link:hover {
        color: #f86020;
        transition: 0.3s
    }

    .shield_block .button:hover svg {
        fill: #f86020;
        stroke: #f86020;
        transition: 0.3s
    }

    .cta2 .phone_number:hover {
        color: #1b242b;
        transition: 0.3s
    }

    .cart .cart_item_desc .img_wrap img:not(.no_hover):hover {
        transform: scale(1.1)
    }

    .cart .product_remove .icon:hover {
        color: #F44336
    }

    .reviews_slider_arrows .slick-arrow:hover svg {
        fill: #0f2d41;
        stroke: #0f2d41;
        transition: 0.3s
    }

    .header .header_contacts a:hover {
        color: #0f2d41;
        transition: 0.3s
    }

    .link:hover, .content a.link:not(.button):hover {
        color: #F44336
    }

    .main_top .main_content .text .link:hover, .bg_gradient1 .content a.link:not(.button):hover {
        color: #fff
    }
}

@media only screen and (max-width: 1400px) {
    .benefits_sec .video_block {
        right: 0;
        margin-right: -4rem
    }

    .car_renting_sec .video_block {
        aspect-ratio: 651/377;
        padding-top: 0;
        margin-right: -9.6%;
        bottom: 0
    }

    .benefits_sec.shares_car_access_sec .video_block {
        right: 4.4rem
    }
}

@media only screen and (max-width: 1300px) {
    h1, .h1 {
        font-size: 4rem
    }

    .content h1, .content .h1 {
        font-size: 4rem
    }

    h2, .h2 {
        font-size: 3.4rem
    }

    .content h2, .content .h2 {
        font-size: 3.4rem
    }

    .title, .content .title {
        font-size: 3.4rem
    }

    .content img[style*="float: right"] {
        margin: 1rem 0 1rem 4.5rem !important
    }

    .content img[style*="float: left"] {
        margin: 1rem 4.5rem 1.5rem 0 !important
    }

    .premium_features_block.content img[style*=float][style*=right] {
        margin: 0 -48.74% 1.5rem 3.3rem !important
    }

    .premium_features_block.content img[style*=float][style*=left] {
        margin: 0 3.3rem 1.5rem -48.74% !important
    }

    .benefits_sec .video_block {
        width: 59.64%;
        right: -1.1%
    }

    .optional_features_background {
        right: -5rem;
        max-width: 48.8%
    }

    .cta2_text {
        max-width: 47.1rem
    }

    .cta2 .phone_number {
        font-size: 4.4rem
    }
}

@media only screen and (max-width: 1200px) {
    .row_f .col_lg_1 {
        width: calc(8.3333333333% - 3.01rem)
    }

    .row_f .col_lg_2 {
        width: calc(16.6666666667% - 3.01rem)
    }

    .row_f .col_lg_3 {
        width: calc(25% - 3.01rem)
    }

    .row_f .col_lg_4 {
        width: calc(33.3333333333% - 3.01rem)
    }

    .row_f .col_lg_5 {
        width: calc(41.6666666667% - 3.01rem)
    }

    .row_f .col_lg_6 {
        width: calc(50% - 3.01rem)
    }

    .row_f .col_lg_7 {
        width: calc(58.3333333333% - 3.01rem)
    }

    .row_f .col_lg_8 {
        width: calc(66.6666666667% - 3.01rem)
    }

    .row_f .col_lg_9 {
        width: calc(75.0000000019% - 3.01rem)
    }

    .row_f .col_lg_10 {
        width: calc(83.3333333333% - 3.01rem)
    }

    .row_f .col_lg_11 {
        width: calc(91.6666666667% - 3.01rem)
    }

    .row_f .col_lg_12 {
        width: calc(100% - 3.01rem)
    }

    .main_phone {
        left: 67%
    }

    .benefits_sec .video_block {
        width: 55%
    }

    .card_block {
        padding: 2.6rem 1.2rem 1.4rem
    }

    .benefits_sec.shares_car_access_sec .video_block {
        right: 0;
        width: 50%;
        margin-right: -2.14%;
        padding-top: 0
    }

    .innovative_tech_text:nth-child(1), .innovative_tech_text:nth-child(2), .innovative_tech_text:nth-child(3) {
        left: 0
    }

    .innovative_tech_text:nth-child(4), .innovative_tech_text:nth-child(5), .innovative_tech_text:nth-child(6) {
        right: 0
    }

    .contact_us_form {
        max-width: 50%;
        padding: 4rem 4.7rem
    }

    .contact_us_row .address_block {
        max-width: 50%
    }

    .how_it_works_text {
        font-size: 1.8rem
    }

    .product_status {
        margin-right: 3.5rem
    }

    .blog_sidebar {
        padding: .4rem 0 0 2.5rem
    }

    .cart .value_buttons_wrap .value_button {
        width: 3.5rem;
        height: 3.5rem;
        line-height: 3.5rem
    }

    .cart .cart_item_qty .value_buttons_wrap .input {
        width: 4.4rem;
        height: 3.5rem
    }

    .cart_totals_wrap .button {
        min-width: unset
    }

    .contact_us_section address {
        margin: 4rem 0 0
    }
}

@media only screen and (max-width: 1100px) {
    .shield_block {
        width: calc(33.3333333333% - 1.9333333333rem)
    }

    .benefits_sec {
        padding: 4rem 0 0;
        overflow: hidden
    }

    .choose_plan_row {
        gap: 2rem
    }

    .choose_plan_item {
        width: calc(100% / 3 - 2rem * 2 / 3)
    }
}

@media only screen and (max-width: 992px) {
    .logo_sidebar {
        display: block
    }

    .header .navigation_btn {
        display: block
    }

    .cart_block {
        display: none
    }

    .navigation {
        position: fixed;
        top: 0;
        right: -36rem;
        z-index: 100;
        width: 36rem;
        height: 100vh;
        margin: 0;
        overflow: hidden;
        background: linear-gradient(to right, #1b242b, #0f2d41);
        transition: right 0.3s ease-in
    }

    .navigation.nav_opened {
        right: 0;
        transition: right 0.3s ease-out
    }

    .navigation .header_nav {
        display: block;
        margin: 9rem 0 0;
        padding: 0 1.5rem;
        height: calc(100vh - 16rem);
        overflow-y: auto
    }

    .navigation .header_nav > li {
        display: block;
        width: 100%
    }

    .navigation .header_nav > li > a:not(.button) {
        display: inline-block;
        font-size: 2rem;
        font-weight: 400;
        color: #fff;
        text-align: center;
        text-transform: uppercase;
        padding: .9rem 0;
        width: 100%;
        margin: 0 auto
    }

    .navigation .header_nav > li > a:not(.button)::after {
        display: none
    }

    .navigation .header_nav > li.mobile_header_nav {
        display: flex;
        justify-content: center
    }

    .navigation .header_nav > li.mobile_header_nav a {
        display: inline-block;
        width: auto;
        padding-left: 2rem
    }

    .navigation .header_nav > li.mobile_header_nav a svg {
        top: 50%;
        transform: translate(0, -50%)
    }

    .navigation .header_nav > li.dr_down > a:not(.button)::after {
        content: "";
        position: relative;
        right: -1.3rem;
        display: inline-block
    }

    .navigation .header_nav > li.dr_down .sub_menu {
        display: none;
        position: relative;
        top: 100%;
        left: 0;
        width: 100%;
        height: auto;
        margin: 1rem 0;
        background-color: #fff0;
        min-width: unset;
        box-shadow: unset;
        transform: unset;
        transition: unset
    }

    .navigation .header_nav > li.dr_down .sub_menu::after, .navigation .header_nav > li.dr_down .sub_menu::before {
        display: none
    }

    .navigation .header_nav > li.dr_down .sub_menu > li {
        border-bottom: none
    }

    .navigation .header_nav > li.dr_down .sub_menu > li > a:not(.button) {
        font-size: 1.7rem;
        line-height: 1.4;
        border-bottom: none;
        padding: .8rem 0;
        margin: 0 auto;
        max-width: 80%;
        text-align: center
    }

    .navigation .header_nav > li.dr_down.visible_sub > a:not(.button)::after {
        transform: rotate(225deg)
    }

    .navigation .header_nav > li.dr_down.visible_sub .sub_menu {
        display: block;
        opacity: 1;
        visibility: visible
    }

    .navigation .header_nav > li.header_btn {
        padding: 1rem 3rem
    }

    .navigation .header_nav > li.header_btn .button {
        display: block;
        width: 100%
    }

    .navigation .header_nav > li.mobile_social {
        display: flex;
        justify-content: center
    }

    .navigation .header_nav > li.mobile_social .social {
        text-align: center;
        margin: 1rem 0
    }

    .navigation .header_nav > li.mobile_social .social a {
        display: inline-block;
        vertical-align: middle;
        width: auto
    }

    .mobile_phone, .home_bar_space {
        display: block
    }

    .hide_desktop {
        display: block !important
    }

    .hide_tablet {
        display: none !important
    }

    .page aside, .page main {
        display: block;
        width: 100%;
        float: none;
        margin: 1rem 0;
        padding: 0
    }

    .map iframe, .map #map {
        height: 30rem
    }

    .row.tablet .col_3, .row.tablet .col_4 {
        width: calc(50% - 3rem)
    }

    .header .top_header {
        display: none
    }

    footer {
        padding-bottom: 5.1rem;
        padding-top: 4rem
    }

    .row_f .col_md_1 {
        width: calc(8.3333333333% - 3.01rem)
    }

    .row_f .col_md_2 {
        width: calc(16.6666666667% - 3.01rem)
    }

    .row_f .col_md_3 {
        width: calc(25% - 3.01rem)
    }

    .row_f .col_md_4 {
        width: calc(33.3333333333% - 3.01rem)
    }

    .row_f .col_md_5 {
        width: calc(41.6666666667% - 3.01rem)
    }

    .row_f .col_md_6 {
        width: calc(50% - 3.01rem)
    }

    .row_f .col_md_7 {
        width: calc(58.3333333333% - 3.01rem)
    }

    .row_f .col_md_8 {
        width: calc(66.6666666667% - 3.01rem)
    }

    .row_f .col_md_9 {
        width: calc(75.0000000019% - 3.01rem)
    }

    .row_f .col_md_10 {
        width: calc(83.3333333333% - 3.01rem)
    }

    .row_f .col_md_11 {
        width: calc(91.6666666667% - 3.01rem)
    }

    .row_f .col_md_12 {
        width: calc(100% - 3.01rem)
    }

    h1, .h1 {
        font-size: 4.6rem
    }

    .content h1, .content .h1 {
        font-size: 3rem
    }

    h2, .h2 {
        font-size: 2.7rem
    }

    .content h2, .content .h2 {
        font-size: 2.7rem
    }

    .title, .content .title {
        font-size: 2.7rem
    }

    h3, .h3 {
        font-size: 2.4rem
    }

    .content h3, .content .h3 {
        font-size: 2.4rem
    }

    h4, .h4 {
        font-size: 2.2rem
    }

    .content h4, .content .h4 {
        font-size: 2.2rem
    }

    h5, .h5 {
        font-size: 2rem
    }

    .content h5, .content .h5 {
        font-size: 2rem
    }

    h6, .h6 {
        font-size: 1.9rem
    }

    .content h6, .content .h6 {
        font-size: 1.9rem
    }

    .content img[style*="float: right"] {
        margin: 1rem 0 1rem 2.5rem !important
    }

    .content img[style*="float: left"] {
        margin: 1rem 2.5rem 1.5rem 0 !important
    }

    .modal_video.dialog .icon_close {
        display: none
    }

    .contact_us_section address p:not([class]), .contact_us_section address a:not(.button) {
        font-size: 1.4rem
    }

    .form_inner_container {
        flex-wrap: wrap
    }

    section {
        padding: 4rem 0
    }

    .form_inner_title {
        padding: 2rem 0;
        max-width: 100%;
        margin: 0 0 2rem;
        text-align: center
    }

    .form_inner_title:before {
        top: unset;
        bottom: 0;
        width: 100%;
        height: .1rem;
        background: linear-gradient(to left, #fff0, #FEEFE9)
    }

    .link_arrow:after {
        right: 0
    }

    .form_inner_form {
        max-width: 100%;
        width: 100%;
        padding-left: 0
    }

    .why_why_choose_blocks {
        padding: 0 0 29.8rem
    }

    .cta1_image {
        max-width: 50%;
        width: 100%;
        margin-bottom: -13rem
    }

    .cta1 h2, .cta1 h2 {
        margin: 0 0 2rem
    }

    .cta2 .phone_number {
        font-size: 3.8rem
    }

    .cta2_text {
        max-width: 41.1rem
    }

    .footer_bottom_row {
        flex-wrap: wrap;
        gap: 2rem
    }

    .footer_bottom_social {
        width: 100%;
        display: flex;
        justify-content: center
    }

    .footer_col_navigate {
        grid-column: 1/-1;
        grid-row: 1
    }

    footer .footer_row {
        grid-template-columns:20rem 20rem 20rem
    }

    .footer_col_hours {
        grid-row: 2;
        grid-column: 2
    }

    .footer_col1 {
        grid-row: 2;
        grid-column: 1
    }

    .car_access_3_text.content ol li b, .car_access_3_text.content ol li strong {
        font-size: 2rem
    }

    .payment_img {
        max-width: 16.7rem
    }

    .car_renting_sec .video_block {
        right: unset;
        left: 50%;
        margin: 3rem 0 0;
        padding-top: 0;
        transform: translate(-50%, 0);
        max-width: 65.1rem;
        width: 100%;
        aspect-ratio: 651/377;
        float: unset
    }

    .car_access_3_row {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center
    }

    .car_access_3_text.content {
        flex-grow: 1;
        width: 100%
    }

    .benefits_sec.shares_car_access_sec .video_block {
        right: unset;
        left: 50%;
        max-width: 65.3rem;
        width: 100%;
        padding-top: 0;
        aspect-ratio: 653 / 365;
        transform: translate(-50%, 0);
        margin: 0 0 2rem;
        bottom: 0;
        float: unset
    }

    .benefits_sec {
        padding: 4rem 0 5rem
    }

    .car_renting_sec td {
        width: 100vw
    }

    .rental_business_sec {
        padding: 4rem 0 2rem
    }

    .premium_features_sec {
        padding: 2rem 0 0
    }

    .premium_features_blocks {
        margin-top: 2rem
    }

    .innovative_tech_row {
        margin-top: 0
    }

    .innovative_tech_image {
        width: 25%
    }

    .innovative_tech_image img {
        max-width: 60%;
        width: 100%
    }

    .innovative_tech_line1 {
        left: -5.6rem;
        width: 6.5rem
    }

    .innovative_tech_line2 {
        left: -5.6rem;
        width: 7.6rem
    }

    .innovative_tech_line3 {
        left: -5rem;
        width: 6.5rem
    }

    .innovative_tech_line4 {
        right: -5.9rem;
        width: 8.9rem
    }

    .innovative_tech_line5 {
        right: -6.5rem;
        width: 6.5rem
    }

    .innovative_tech_line6 {
        right: -6rem;
        width: 7.5rem
    }

    .faqs .faqs_question {
        font-size: 2.2rem
    }

    .inner_banner {
        padding: 2rem 0 10.6rem
    }

    .short_inner_banner .inner_banner {
        padding: 2rem 0 2rem
    }

    .solutions_block.hover {
        border-top-right-radius: 0;
        border-top-left-radius: 0;
        transition: 0.3s linear
    }

    .solutions_block.hover:after {
        transition: 0.3s linear;
        height: 100%
    }

    .solutions_block.hover .solution_text {
        top: -15rem;
        transition: 0.3s linear;
        opacity: 0;
        left: 50%;
        transform: translate(-50%, 0);
        width: calc(100% - 8.4rem);
        position: absolute
    }

    .solutions_block.hover .solution_center {
        margin: 0;
        transition: 0.3s linear
    }

    .solutions_block.hover .solution_img {
        margin-top: 1.5rem;
        margin-bottom: 7.8rem;
        transition: 0.3s linear
    }

    .solutions_block.hover .solution_price {
        display: none;
        transition: 0.3s linear
    }

    .solutions_block.hover .solution_center hr {
        display: none;
        transition: 0.3s linear
    }

    .solutions_block.hover .solution_button {
        bottom: 3.3rem;
        transition: 0.3s linear
    }

    .solutions_blocks {
        gap: 4rem
    }

    .solutions_block {
        width: calc(50% - 2rem)
    }

    .how_it_works_block {
        width: calc(33.3333333333% - 2.1333333333rem)
    }

    .counters {
        grid-template-columns:repeat(2, 1fr)
    }

    .counters .counter_item p {
        font-size: 1.8rem
    }

    .value_buttons_wrap .input {
        width: 4.4rem;
        font-size: 1.8rem
    }

    .value_buttons_wrap .value_button {
        width: 3.5rem
    }

    .product_slider_nav {
        margin: -1rem 2.2rem -1rem 0
    }

    .product_slider {
        width: calc(100% - 11.1rem)
    }

    .single_product_wrapper .img_block {
        width: 48%
    }

    .single_product_wrapper .desc_block {
        padding-left: 4.4rem;
        width: 52%
    }

    .single_product_wrapper .desc_block .prices_block .price {
        font-size: 4.2rem
    }

    .single_product_wrapper .desc_block .prices_block .currency {
        font-size: 2.2rem
    }

    .single_product_wrapper .desc_block .buttons_wrap {
        margin: 2rem 0 1.5rem
    }

    .dashboard_aside {
        position: fixed;
        top: 0;
        left: -36rem;
        width: 36rem;
        height: 100vh;
        margin: 0;
        overflow: hidden;
        z-index: 999;
        transition: right 0.3s ease-in
    }

    .dashboard_aside.open {
        left: 0;
        overflow: visible;
        transition: right 0.3s ease-out
    }

    .dashboard_main {
        width: calc(100% + 2rem);
        margin-left: -2rem
    }

    .dashboard_aside_open_block {
        display: flex;
        justify-content: center;
        margin: 0 0 2rem
    }

    .dashboard_close_block {
        display: flex;
        justify-content: end;
        margin: 1.5rem 1.5rem 1.5rem 0;
        cursor: pointer
    }

    .dashboard_close {
        width: 4.5rem;
        height: 4.5rem;
        background-color: #f86020;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.3s
    }

    .dashboard_close svg {
        width: 1.8rem;
        height: 1.8rem;
        fill: #1b242b;
        transition: 0.3s
    }

    .blog main {
        width: 65%;
        padding: 0 2.5rem 0 0
    }

    .blog aside {
        width: 35%;
        padding: .4rem 0 0 1.5rem
    }

    .blog_sidebar .aside_block li a, .blog_sidebar .aside_authors li a span {
        font-size: 1.4rem
    }

    .blog .blog_article .short_desc p {
        font-size: 1.4rem;
        -webkit-line-clamp: 3
    }

    .blog .blog_article .title_wrap p {
        font-size: 1.4rem
    }

    .blog_sidebar .sub_title, .blog_sidebar .aside_title {
        font-size: 1.8rem
    }

    .blog_sidebar .aside_archive {
        max-height: 26.5rem
    }

    .empty_heading {
        font-size: 3rem
    }

    .why_choose_sec {
        padding: 4rem 0
    }

    .review_sec {
        padding: 4rem 0 3rem
    }

    .checkout .checkout_title h2 {
        font-size: 1.8rem
    }

    .checkout .checkout_title span {
        font-size: 1.9rem
    }

    .checkout .checkout_row label span {
        font-size: 1.4rem
    }

    .password_row {
        grid-template-columns:1fr 1fr
    }

    .password_item_button {
        grid-column: 1 / -1
    }

    .checkout .checkout_checkbox input[type=checkbox] + label {
        font-size: 1.4rem
    }

    .checkout .checkout_order_item .checkout_order_desc p {
        font-size: 1.4rem
    }

    .cart .cart_item_desc .img_wrap.no_hover, .checkout .checkout_order_item .img_wrap {
        width: 6rem
    }

    .checkout .checkout_order_item .img_wrap img {
        width: 6rem;
        height: 6rem
    }

    .checkout .checkout_order_item .img_wrap img.no_hover {
        width: 4rem;
        height: 4rem
    }

    .checkout .checkout_order_item .img_wrap.no_hover {
        width: 6rem
    }

    .checkout .checkout_order_item .checkout_order_desc {
        width: calc(100% - 7rem)
    }

    .checkout .input {
        height: 3rem
    }

    .checkout textarea.input {
        min-height: 7.5rem
    }

    .cart_wrap {
        justify-content: end;
        align-items: center;
        gap: 2rem
    }

    .cart .cart_header h4, .cart .cart_totals_wrap h4 {
        font-size: 1.3rem
    }

    .cart .cart_item_desc .img_wrap {
        margin: 0 1rem 0 0
    }

    .cart .cart_item_desc .img_wrap img {
        width: 5rem;
        height: 5rem
    }

    .cart .cart_item_desc .cart_item_heading {
        width: calc(100% - 8rem)
    }

    .cart .cart_item p {
        font-size: 1.2rem
    }

    .cart_totals_wrap p, .cart_totals_wrap .total_col p {
        font-size: 1.2rem;
        margin: .2rem 0
    }

    .cart_wrap.row_f .cart_totals_wrap {
        width: 25rem;
        margin: 2rem 1.5rem 1.5rem auto
    }

    .cart_totals_wrap .button {
        font-size: 1.4rem
    }

    .benefits_sec .video_block {
        width: 100%;
        bottom: 0;
        margin: 0 0 2rem;
        right: 0;
        float: unset
    }

    .bg_gradient1 p:has(.button) {
        margin-bottom: 3rem
    }

    .checkout .cart_totals_wrap {
        width: 80%
    }

    .select_after992::after {
        content: ""
    }

    .table_checkmarks thead th {
        font-size: 2.2rem
    }

    .install_minute_block .install_minute_text {
        font-size: 1.8rem
    }

    .reviews_slider_arrows2 {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 4rem;
        margin: 2rem 0 0
    }

    .reviews_slider_arrows2 .slick-arrow {
        position: static;
        transform: none
    }

    .start_driving_protected_item_desc {
        margin: 1.5rem 0 3rem
    }

    .start_driving_protected_item {
        padding: 4rem
    }

    .start_driving_protected_item_price {
        font-size: 5.2rem;
        gap: .3rem
    }
}

@media only screen and (max-width: 840px) {
    .shield_blocks {
        gap: 2rem 2.9rem
    }

    .shield_block {
        width: calc(50% - 1.45rem)
    }

    .why_why_choose_block:nth-child(2), .why_why_choose_block:nth-child(3), .why_why_choose_block:nth-child(4) {
        position: relative;
        max-width: 100%;
        width: 100%;
        top: unset;
        left: unset;
        right: unset;
        transform: none;
        margin: 4.2rem 0 0;
        z-index: 2
    }

    .why_why_choose_block:nth-child(2):before, .why_why_choose_block:nth-child(3):before, .why_why_choose_block:nth-child(4):before {
        top: 0;
        left: 50%;
        right: unset;
        bottom: unset;
        transform: translate(-50%, -50%);
        z-index: 2
    }

    .why_why_choose_block:nth-child(2):after, .why_why_choose_block:nth-child(3):after, .why_why_choose_block:nth-child(4):after {
        top: -4.2rem;
        left: 50%;
        right: unset;
        bottom: unset;
        transform: translate(-50%, 0) rotate(0deg);
        z-index: 1;
        width: .1rem;
        height: 4.2rem;
        display: block
    }

    .why_why_choose_block:nth-child(2):after {
        background: linear-gradient(to top, #F96020, #ffffff)
    }

    .why_why_choose_block:nth-child(3):after, .why_why_choose_block:nth-child(4):after {
        background: linear-gradient(to top, #F96020, #F96020)
    }

    .why_why_choose_blocks {
        padding: 0;
        margin-top: 0
    }

    .why_why_choose_image {
        top: 0
    }
}

@media only screen and (max-width: 767px) {
    .hide_mobile {
        display: none !important
    }

    .row.tablet .col_3, .row.tablet .col_4 {
        width: calc(100% - 3rem)
    }

    .row.mobile .col_1, .row.mobile .col_2, .row.mobile .col_3, .row.mobile .col_4, .row.mobile .col_5, .row.mobile .col_6, .row.mobile .col_7, .row.mobile .col_8, .row.mobile .col_9, .row.mobile .col_10, .row.mobile .col_11, .row.mobile .col_12 {
        width: calc(100% - 3rem)
    }

    .row_f .col_sm_1 {
        width: calc(8.3333333333% - 3.01rem)
    }

    .row_f .col_sm_2 {
        width: calc(16.6666666667% - 3.01rem)
    }

    .row_f .col_sm_3 {
        width: calc(25% - 3.01rem)
    }

    .row_f .col_sm_4 {
        width: calc(33.3333333333% - 3.01rem)
    }

    .row_f .col_sm_5 {
        width: calc(41.6666666667% - 3.01rem)
    }

    .row_f .col_sm_6 {
        width: calc(50% - 3.01rem)
    }

    .row_f .col_sm_7 {
        width: calc(58.3333333333% - 3.01rem)
    }

    .row_f .col_sm_8 {
        width: calc(66.6666666667% - 3.01rem)
    }

    .row_f .col_sm_9 {
        width: calc(75.0000000019% - 3.01rem)
    }

    .row_f .col_sm_10 {
        width: calc(83.3333333333% - 3.01rem)
    }

    .row_f .col_sm_11 {
        width: calc(91.6666666667% - 3.01rem)
    }

    .row_f .col_sm_12 {
        width: calc(100% - 3.01rem)
    }

    h1, .h1 {
        font-size: 4.6rem
    }

    .content h1, .content .h1 {
        font-size: 4.6rem
    }

    h2, .h2 {
        font-size: 2.2rem
    }

    .content h2, .content .h2 {
        font-size: 2.2rem
    }

    .title, .content .title {
        font-size: 2.2rem
    }

    h3, .h3 {
        font-size: 2.1rem
    }

    .content h3, .content .h3 {
        font-size: 2.1rem
    }

    h4, .h4 {
        font-size: 2rem
    }

    .content h4, .content .h4 {
        font-size: 2rem
    }

    h5, .h5 {
        font-size: 1.9rem
    }

    .content h5, .content .h5 {
        font-size: 1.9rem
    }

    h6, .h6 {
        font-size: 1.8rem
    }

    .content h6, .content .h6 {
        font-size: 1.8rem
    }

    .modal_video.dialog {
        width: 90vw
    }

    .main_top .main_content {
        position: relative;
        padding: 2.5rem 0 0
    }

    .main_top .main_content_row {
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 3rem
    }

    .main_top .main_content .text {
        max-width: 100%
    }

    .main_top .main_phone_block {
        display: block;
        max-width: 24.1rem;
        width: 100%;
        margin: .8rem;
        position: relative;
        aspect-ratio: 331/503;
        z-index: 1
    }

    .main_top .main_phone_block .banner_waves_right {
        display: none
    }

    .main_top .main_phone_block .banner_waves_left {
        max-width: 6.45rem;
        width: 100%;
        top: 10%;
        transform: translate(-50%, -10%)
    }

    .main_top .main_phone_block .car_with_key {
        top: 10%;
        left: -83%;
        transform: translate(50%, -10%)
    }

    .main_top .banner {
        background-position: -30vw -4rem;
        position: relative;
        height: 32.5rem;
        margin-top: -30rem
    }

    .top_slider.hidden_slider {
        max-height: 70.4rem
    }

    .form_inner_form .button {
        height: 5rem;
        line-height: 5rem;
        padding: 0 1.1rem
    }

    .form_inner_form .form_item.form_item_button_next {
        max-width: 5.8rem;
        width: 100%;
        padding-left: .8rem
    }

    .shield_slider_arrows {
        display: flex;
        justify-content: space-between;
        gap: 3.3rem;
        align-items: center
    }

    .shield_block {
        margin: 3.1rem 0 2rem
    }

    .shield_slider_arrows .slick-prev::after, .shield_slider_arrows .slick-next::after {
        content: none
    }

    .shield_slider_arrows .slick-arrow {
        width: 1.7rem;
        height: 1.7rem;
        position: static;
        transform: none
    }

    .shield_slider_arrows .slick-arrow svg {
        width: 1.7rem;
        height: 1.7rem;
        fill: #F96020;
        stroke: #F96020
    }

    .shield_slider_arrows .slick-dots {
        position: static;
        display: flex;
        transform: none
    }

    .shield_slider_arrows .slick-dots li {
        display: block;
        max-width: 100%;
        width: 100%;
        height: .6rem;
        margin: 0;
        border-radius: 0
    }

    #shield_slider_dots {
        max-width: 100%;
        width: 100%
    }

    .shield_slider {
        margin: 0 -2rem
    }

    .shield_slider .slick-slide {
        margin: 0 2rem
    }

    .sub_title {
        padding: 0 4.2rem
    }

    .sub_title:before {
        width: 4rem
    }

    .sub_title:after {
        width: 4rem
    }

    .advanced_security_sec .advanced_security_question {
        font-size: 2rem
    }

    .advanced_security_sec {
        padding: 6rem 0 0
    }

    .cta1_row {
        display: flex;
        flex-direction: column-reverse;
        gap: 0
    }

    .cta1_image {
        max-width: 75%;
        width: 100%;
        margin-bottom: -7rem
    }

    .cta2_image {
        margin-bottom: -5rem
    }

    .cta1_text {
        max-width: 100%;
        text-align: center
    }

    .ct1_payment {
        justify-content: center;
        gap: 2rem;
        margin: 2rem 0 1rem
    }

    .cta1 .cta1_bg_main {
        clip-path: unset
    }

    .cta1 .cta1_cut_line {
        display: none
    }

    .cta1 .cta1_bg_triangle {
        display: none
    }

    .cta1 .cta1_cut_out {
        clip-path: polygon(0 calc(100% - 2.3rem), 100% 0, 100% 100%, 0% 100%);
        width: 100%;
        height: 50%;
        background-color: #fff
    }

    .cta1 .cta1_line1 {
        clip-path: polygon(3.4rem 0, 100% 0, calc(100% - 3.4rem) 100%, 0% 100%);
        position: absolute;
        left: -3rem;
        right: unset;
        bottom: 0;
        width: 120%;
        height: 1.7rem;
        background: linear-gradient(to right, #F96020, #EFA740)
    }

    .cta1 .cta1_line2 {
        clip-path: polygon(3.4rem 0, 100% 0, calc(100% - 3.4rem) 100%, 0% 100%);
        position: absolute;
        right: unset;
        left: 10%;
        bottom: 3.2rem;
        width: 100%;
        height: 1.7rem;
        background: linear-gradient(to right, #F96020, #EFA740)
    }

    .cta1 .cta1_line3 {
        clip-path: polygon(3.4rem 0, 100% 0, calc(100% - 3.4rem) 100%, 0% 100%);
        position: absolute;
        right: unset;
        left: 23%;
        bottom: 6.4rem;
        width: 100%;
        height: 1.7rem;
        background: linear-gradient(to right, #F96020, #EFA740)
    }

    .cta1_black_trapezoid {
        content: "";
        position: absolute;
        right: 0;
        bottom: 2.5rem;
        width: 100%;
        height: 12rem;
        background: linear-gradient(to right, #1b242b, #0f2d41);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 68% 100%, 57% 46%, 0% 46%);
        z-index: 2
    }

    .cta1_orange_triangular {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        width: 48%;
        height: calc(100% - 12rem - 3rem);
        background: linear-gradient(to right, #F96020, #EFA740);
        clip-path: polygon(100% 6%, 0 100%, 100% 100%)
    }

    .cta2_row {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center
    }

    .cta2_text {
        max-width: 100%;
        text-align: center
    }

    .footer_bottom_row {
        flex-direction: column;
        justify-content: center
    }

    footer .footer_row {
        grid-template-columns:1fr 1fr;
        gap: 4rem 8rem
    }

    .footer_bottom p {
        text-align: center
    }

    .premium_features_block {
        width: 85%;
        padding: 4rem 4.2rem 4rem
    }

    .premium_features_block.content img[style*=float][style*=right] {
        max-width: 70% !important;
        width: 100% !important;
        margin: 0 -30% 1.5rem 3.3rem !important
    }

    .premium_features_block.content img[style*=float][style*=left] {
        max-width: 70% !important;
        width: 100% !important;
        margin: 0 3.3rem 1.5rem -30% !important
    }

    .optional_features table {
        max-width: 80%
    }

    .optional_features table tr {
        display: flex;
        max-width: 100%;
        width: 100%;
        flex-wrap: wrap;
        flex-direction: column
    }

    .optional_features td {
        max-width: 100%
    }

    .optional_features td {
        padding-right: 0
    }

    .optional_features tr:last-child td:first-child {
        padding-bottom: 3.4rem
    }

    .optional_features {
        padding: 4rem 0 16rem
    }

    .optional_features_background {
        bottom: -18rem
    }

    .innovative_tech_text:nth-child(2), .innovative_tech_text:nth-child(3), .innovative_tech_text:nth-child(1), .innovative_tech_text:nth-child(4), .innovative_tech_text:nth-child(5), .innovative_tech_text:nth-child(6) {
        position: static;
        transform: none;
        text-align: center;
        display: block;
        font-size: 1.8rem
    }

    .innovative_tech_row {
        margin-top: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 1rem
    }

    .innovative_tech_line {
        content: none;
        width: 0;
        height: 0;
        display: none
    }

    .innovative_tech_line:after {
        content: none
    }

    .innovative_tech_image {
        width: 50%;
        transform: none;
        left: 0
    }

    .faqs .faqs_question {
        font-size: 2rem
    }

    .cta3_row {
        flex-wrap: wrap;
        justify-content: center
    }

    .cta3_text {
        max-width: 100%
    }

    .contact_us_row {
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center
    }

    .contact_us_form {
        max-width: 85%;
        margin-top: 4rem;
        order: 2
    }

    .contact_us_row .address_block {
        max-width: 100%;
        order: 3
    }

    .contact_us__bottom_row {
        margin: 2rem 0 0;
        order: 1
    }

    .contact_us_section address {
        display: flex;
        flex-direction: column;
        margin: 0
    }

    .contact_us_section {
        background-size: auto 53rem;
        background-position: 70% top
    }

    .contact_us_section address h5, .contact_us_section address .h5 {
        margin: 1rem 0
    }

    .contact_us_section .contact_hovers {
        margin: 1rem 0
    }

    .contact_us_row:not(:has(.address_block)) .contact_us_form {
        margin-top: 19.5rem
    }

    .solutions_block {
        width: 100%
    }

    .how_it_works_blocks {
        margin: 2rem 0 0
    }

    .how_it_works_block {
        width: calc(50% - 1.6rem)
    }

    .how_it_works_text {
        font-size: 1.6rem
    }

    .single_product_section {
        padding: 4rem 0
    }

    .single_product_wrapper {
        flex-wrap: wrap
    }

    .single_product_wrapper .img_block {
        margin: 0 0 3rem;
        width: 100%
    }

    .single_product_wrapper .desc_block {
        max-width: 100%;
        width: 100%;
        order: 2;
        padding-left: 0
    }

    .product_accordion_name {
        font-size: 1.8rem
    }

    .cta4_row {
        flex-wrap: wrap;
        justify-content: center
    }

    .cta4_text {
        max-width: 100%
    }

    .solutions_sec {
        padding: 3rem 0 2rem
    }

    .solution_bottom {
        margin: 4rem auto 0
    }

    .blog {
        padding: 4rem 0
    }

    .blog main {
        width: 100%;
        padding: 0
    }

    .blog aside {
        width: 100%;
        padding: 0;
        margin: 1.5rem 0 0
    }

    .blog.blog_post .blog_article {
        border-bottom: .1rem solid #1b242b;
        padding: 0 0 2rem;
        margin: 0 0 2rem
    }

    .blog_sidebar::after {
        display: none
    }

    .blog_sidebar .aside_authors li a {
        padding: .7rem 0 .7rem .2rem
    }

    .cart .cart_header {
        display: none
    }

    .cart .cart_header h4, .cart .cart_totals_wrap h4 {
        font-size: 1.5rem
    }

    .cart .cart_block {
        vertical-align: top
    }

    .cart .cart_item_desc {
        width: 100%;
        text-align: left;
        padding: 0 3rem 0 0
    }

    .cart .cart_item_desc .cart_item_heading p {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden
    }

    .cart .cart_item_price {
        display: none
    }

    .cart .cart_item_qty {
        margin-left: 6rem;
        width: 9.5rem;
        margin-top: -1rem;
        text-align: left
    }

    .cart .cart_item_qty .value_buttons_wrap .input {
        width: 4.2rem
    }

    .cart .cart_item_subtotal {
        width: calc(100% - 15.5rem);
        margin-top: -1rem;
        text-align: right;
        vertical-align: bottom
    }

    .cart .product_remove {
        position: absolute;
        top: 1rem;
        right: 0
    }

    .cart .cart_item p {
        font-size: 1.4rem
    }

    .cart_totals_wrap p {
        font-size: 1.4rem
    }

    .cart_totals_wrap .total_col p {
        font-size: 1.5rem
    }

    .cart .cart_item:nth-child(2) {
        border-top: .1rem solid #EFA740
    }

    .checkout .cart_totals_wrap {
        max-width: 35rem;
        width: 100%
    }

    .car_access_3_image {
        float: unset;
        margin: 2rem auto 2rem;
        display: block
    }

    .cart .cart_item {
        display: block;
        padding: 1rem 0
    }

    .cart .cart_block .value_buttons_wrap .value_button {
        height: 3.5rem;
        line-height: 3.5rem
    }

    .choose_plan_item {
        width: 100%
    }

    .choose_plan_item .annual_price p {
        font-size: 4rem
    }

    .choose_plan_row {
        margin: 2rem 0
    }

    .table_checkmarks thead th {
        font-size: 2rem
    }

    .table_checkmarks tr > td:nth-child(1) {
        max-width: 50%
    }

    .table_checkmarks tr > td:nth-child(2) {
        max-width: 25%
    }

    .table_checkmarks tr > tr:nth-child(3) {
        max-width: 25%
    }

    .table_checkmarks {
        margin: 1.5rem 0 2.5rem
    }

    .everyday_protection_sec {
        padding: 3rem 0 4rem
    }

    .install_minute_row {
        gap: 3rem
    }

    .install_minute_block .install_minute_text {
        font-size: 1.6rem;
        margin: 1rem 0 0
    }

    .install_minute_block {
        width: calc(50% - 1.5rem)
    }

    .install_minute_row {
        margin: 0 0 2rem
    }

    .review_slider2 {
        margin: 0 -1.8rem 0
    }

    .cta5_row {
        flex-direction: column
    }

    .cta5_text {
        max-width: 100%;
        text-align: center
    }

    .start_driving_protected_item_desc {
        margin: 1.5rem 0 2rem
    }

    .start_driving_protected_item {
        padding: 3rem;
        max-width: calc(50% - 1.5rem)
    }

    .start_driving_protected_row {
        margin: 3rem 0;
        gap: 3rem
    }

    .start_driving_protected_item_top {
        gap: 1rem;
        margin: 0 0 1.5rem;
        flex-direction: column
    }

    .start_driving_protected_item_price {
        font-size: 4.4rem
    }

    .start_driving_protected_item_title {
        font-size: 2.8rem
    }

    .password_row_f {
        max-width: 75%
    }

    .about_section table {
        max-width: 100% !important;
        width: 100% !important
    }
}

@media only screen and (max-width: 640px) {
    .row_f .col_xs_1 {
        width: calc(8.3333333333% - 3.01rem)
    }

    .row_f .col_xs_2 {
        width: calc(16.6666666667% - 3.01rem)
    }

    .row_f .col_xs_3 {
        width: calc(25% - 3.01rem)
    }

    .row_f .col_xs_4 {
        width: calc(33.3333333333% - 3.01rem)
    }

    .row_f .col_xs_5 {
        width: calc(41.6666666667% - 3.01rem)
    }

    .row_f .col_xs_6 {
        width: calc(50% - 3.01rem)
    }

    .row_f .col_xs_7 {
        width: calc(58.3333333333% - 3.01rem)
    }

    .row_f .col_xs_8 {
        width: calc(66.6666666667% - 3.01rem)
    }

    .row_f .col_xs_9 {
        width: calc(75.0000000019% - 3.01rem)
    }

    .row_f .col_xs_10 {
        width: calc(83.3333333333% - 3.01rem)
    }

    .row_f .col_xs_11 {
        width: calc(91.6666666667% - 3.01rem)
    }

    .row_f .col_xs_12 {
        width: calc(100% - 3.01rem)
    }

    .content img[style*=float] {
        float: none !important;
        display: block;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto 2rem !important
    }

    .content img[style*=float][style*=right] {
        margin: 0 auto 2rem !important;
        text-align: center
    }

    .content img[style*=float][style*=left] {
        margin: 0 auto 2rem !important;
        text-align: center
    }

    .content p[style*=float] {
        float: none !important;
        display: block;
        width: 100% !important;
        max-width: 100% !important;
        margin: 1rem auto !important
    }

    .content p[style*=float][style*=right] {
        margin: 1rem auto !important;
        text-align: center
    }

    .content p[style*=float][style*=left] {
        margin: 1rem auto !important;
        text-align: center
    }

    .premium_features_block.content img[style*=float][style*=right], .premium_features_block.content img[style*=float][style*=left] {
        float: none !important;
        display: block;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto 2rem !important
    }

    .main_top .banner {
        background-position: -35rem -4rem
    }

    .advanced_security_row {
        gap: 2rem 6.5rem;
        align-items: center;
        flex-direction: column-reverse
    }

    .advanced_security_img {
        max-width: 21rem
    }

    .rental_business_sec .shield_blocks {
        gap: 4rem 3.8rem
    }

    .rental_business_sec .shield_block {
        width: calc(50% - 1.9rem);
        margin-bottom: 0
    }

    .premium_features_block {
        width: 100%;
        padding: 3rem 3.2rem 3rem;
        margin: 0 0 4rem
    }

    .checkout .cart_totals_wrap.cart_totals_wrap_checkout {
        width: 100%;
        max-width: 30rem
    }

    .faqs_category {
        justify-content: flex-start
    }

    .faqs_category a {
        font-size: 1.4rem;
        height: 3.5rem;
        line-height: 3.5rem;
        padding: 0 1.5rem
    }

    .inner_banner .content h1, .inner_banner .content .h1 {
        font-size: 2.6rem
    }

    .advanced_security_wrap {
        margin-bottom: 0;
        max-width: 100%;
        width: 100%
    }

    .start_driving_protected_row {
        flex-direction: column;
        justify-content: center;
        align-items: center
    }

    .start_driving_protected_item {
        max-width: 40rem
    }

    .start_driving_protected_item_desc {
        margin: 1rem 0
    }

    .header .header_contacts {
        gap: 2rem
    }

    .password_row {
        grid-template-columns:1fr
    }

    .password_item_button {
        grid-column: unset
    }
}

@media only screen and (max-width: 550px) {
    body {
        padding-top: 7.4rem
    }

    .header_top_row {
        display: none
    }

    .contact_us_section address p:not([class]), .contact_us_section address a:not(.button) {
        display: block;
        width: 100%;
        margin: 0 0 2rem
    }

    .contact_us_section address a.address_text {
        max-width: 30rem;
        margin: 0 auto
    }

    .toast_notifications {
        width: 95%
    }

    .toast_notifications .toast {
        width: 100%;
        font-size: 1rem;
        margin-left: 2rem
    }

    .main_content .text table {
        width: 100%
    }

    .main_content .text tr {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column
    }

    .main_top .main_content .text td:first-child {
        padding: 0 0 2rem 0
    }

    .main_top .main_content .text {
        text-align: center
    }

    .main_top .main_content .text br {
        display: none
    }

    .form_inner_form .form_wrap {
        flex-wrap: wrap;
        gap: 2rem
    }

    .form_inner_form .form_item {
        max-width: 100%
    }

    .form_inner_form .form_item.form_item_button_next {
        max-width: 100%;
        padding: 1rem 0 0;
        text-align: center
    }

    .form_inner_form .button span {
        display: block
    }

    .form_inner_form .button svg {
        display: none
    }

    .form_inner_form .form_item.form_item_button_next .button, .form_inner_form .form_item .button {
        margin: 0 auto;
        max-width: 21.8rem;
        width: 100%
    }

    .form_inner_container .pre_input {
        margin: 0 0 1.5rem
    }

    .benefits_sec {
        padding: 4rem 0 3.2rem
    }

    .benefits_sec .video_block {
        display: none;
        position: static
    }

    .content p:has(.sub_title) {
        margin: 0
    }

    .cta2 {
        display: none
    }

    .cta1_orange_triangular {
        width: 44%
    }

    footer .footer_row {
        grid-template-columns:1fr
    }

    .footer_col_navigate, .footer_col_hours {
        grid-column: unset;
        grid-row: unset
    }

    .footer_col {
        text-align: center
    }

    footer .footer_title {
        margin: 0 0 2rem
    }

    footer .footer_col_navigate ul {
        gap: 0 2.8rem
    }

    .contacts_table {
        display: inline-block
    }

    .footer_col_legal ul {
        column-count: 2
    }

    .footer_bottom {
        margin: 4rem 0 0
    }

    .footer_bottom_row {
        padding: 4rem 0
    }

    .card_block {
        width: calc(50% - 0.95rem)
    }

    .car_access_3_bottom {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center
    }

    .car_access_3_bottom p {
        width: 100%
    }

    .optional_features table {
        max-width: 95%
    }

    .faqs .faqs_question {
        font-size: 1.8rem
    }

    .contact_us_form {
        max-width: 100%;
        padding: 2rem 2.7rem
    }

    .contact_us_section address p:not([class]), .contact_us_section address a:not(.button) {
        margin: 0 0 1rem
    }

    .contact_us_row:not(:has(.address_block)) .contact_us_form {
        margin-top: 19rem
    }

    .how_it_works_blocks {
        justify-content: center
    }

    .how_it_works_block {
        max-width: 30rem;
        width: 100%
    }

    .counters {
        margin-top: 4rem;
        gap: 4rem 3.2rem
    }

    .counters .counter_item p.number {
        font-size: 3.8rem;
        margin: 0 0 1rem
    }

    .counters .counter_item p {
        font-size: 1.6rem
    }

    .reviews_name {
        font-size: 1.8rem
    }

    .review_inner_wrapper {
        padding: 0
    }

    .reviews_slider_arrows .slick-arrow {
        position: static;
        transform: none
    }

    .reviews_slider_arrows {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 4rem;
        margin: 2rem 0 0
    }

    .single_product_wrapper .desc_block .buttons_wrap .value_buttons_wrap {
        margin: 0 2.5rem 0 0
    }

    .product_body {
        flex-direction: column;
        justify-content: center;
        align-items: center
    }

    .product_image {
        max-width: 35rem;
        padding: 0 0 2rem;
        justify-content: center
    }

    .product_status {
        margin: 0 3.5rem 2rem 0
    }

    .blog .blog_article .row_f [class*=col_] {
        width: calc(100% - 3.01rem)
    }

    .blog .blog_article .img_wrap {
        margin: 0 0 2rem
    }

    .blog .blog_article .short_desc p {
        display: block;
        overflow: unset
    }

    .block_404_content h1, .block_404_content .h1 {
        font-size: 5.5rem
    }

    .block_404_content h1 span, .block_404_content .h1 span {
        font-size: 15rem
    }

    .select_after992::after {
        top: 3.8rem
    }

    .footer_col1 {
        grid-row: unset;
        grid-column: unset
    }

    .table_checkmarks thead th {
        font-size: 1.5rem;
        padding: 1rem
    }

    .table_checkmarks tbody td {
        padding: 1rem
    }

    .table_buttons tr > td {
        padding: 0 .75rem
    }

    .reviews_place2, .reviews_name2 {
        font-size: 1.8rem
    }

    .reviews_card_center2 {
        margin: 1rem 0
    }

    .start_driving_protected_item_price {
        font-size: 3.8rem
    }

    .start_driving_protected_item_title {
        font-size: 2.6rem
    }

    .table_checkmarks tr > td {
        font-size: 1.5rem
    }

    .review_slid2:after {
        top: -3.6rem;
        width: 7.5rem;
        height: 7.3rem
    }

    .review_slid2 {
        margin: 4.6rem 1.8rem 1rem 1.8rem
    }

    .password_row_f {
        max-width: 90%
    }


}

@media only screen and (max-width: 500px) {
    .main_top .main_content .text .h1 {
        font-size: 3rem !important
    }

    .main_top .banner {
        background-position: -12rem;
        margin: -41.5rem 0 4.5rem 0
    }

    .main_top .main_phone_block .main_phone {
        width: 120%;
        top: 25%
    }

    .main_top .main_phone_block .car_with_key {
        top: 3%;
        max-width: 4.3rem;
        width: 100%;
        left: -40%
    }

    .main_top .main_phone_block .main_phone.main_phone2 {
        top: 27.2%
    }

    .main_top .main_phone_block {
        margin: 4rem -1rem 0 0
    }

    .main_top .main_phone_block .banner_waves_left {
        top: -7%;
        transform: translate(-50%, 0)
    }

    .rental_business_sec .shield_block {
        width: 100%
    }

    .captcha_wrap.captcha_wrap_flex {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
        margin: 1.5rem 0 .5rem
    }

    .contact_us_section {
        background-size: auto 59rem
    }
}

@media only screen and (max-width: 450px) {
    .contact_us_section form .row_f [class*=col_] {
        width: calc(100% - 3.01rem)
    }

    .contact_us_section form textarea.input {
        min-height: 10rem;
        margin: 0
    }

    .contact_us_section form .button {
        margin: 1rem 0 0
    }

    .innovative_tech_image {
        width: 75%
    }

    .login_bottom {
        margin: 1.5rem 0 0
    }

    .single_product_wrapper .review_form .button {
        display: block;
        margin: 0 auto
    }

    .blog_sidebar .aside_form_wrapper {
        display: none
    }

    .blog_sidebar .aside_mobile_btn {
        display: block;
        max-width: 16rem;
        margin: 0 auto 3rem
    }

    .dialog .contact_form .form_item_captcha.form_item_captcha_flex {
        flex-direction: column;
        gap: 2rem
    }

    .flex_buttons.flex_cart .button {
        max-width: 100%
    }

    .install_minute_block {
        width: 100%
    }

    .start_driving_protected_item_title {
        font-size: 2.4rem
    }

    .table_buttons tr {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        justify-content: center
    }

    .table_buttons tr > td {
        padding: 0
    }

    .password_row_f {
        max-width: 100%
    }
}

@media only screen and (max-width: 400px) {
    .dialog .modal_buttons .button {
        width: 100%;
        margin: 0 0 1.5rem
    }

    .dialog .modal_buttons .button:last-child {
        margin: 0
    }

    .cta1_orange_triangular {
        width: 40%
    }

    .card_block {
        width: 100%
    }

    .contact_us_section {
        background-size: auto 63rem
    }

    .sub_title {
        padding: 0 2.2rem
    }

    .sub_title:before {
        width: 2rem
    }

    .sub_title:after {
        width: 2rem
    }
}

@media only screen and (max-width: 380px) {
    .navigation {
        right: -30rem;
        width: 30rem
    }

    .dashboard_aside {
        right: -30rem;
        width: 30rem
    }

    .checkout .checkout_title {
        display: block;
        width: 100%
    }

    .checkout .checkout_checkbox {
        margin: 1.4rem 0 0;
        width: 100%;
        text-align: left
    }

    .checkout .checkout_order_item .checkout_order_desc p {
        font-size: 1.2rem
    }
}

@media (orientation: landscape) and (max-height: 450px) {
    .mobile_phone, .home_bar_space {
        display: none
    }

    footer {
        padding-bottom: 0
    }
}