@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&display=swap");
body,
div,
dl,
dt,
dd,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img,
abbr {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ul li {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

legend {
  color: #000;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

* {
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

*:focus {
  outline: none;
}

body {
  font-size: 16px;
}

.title-primary {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .title-primary {
    font-size: 22px;
  }
}

.btn-primary {
  display: inline-block;
  padding: 1rem 2rem;
  color: #89323b;
  background-color: #fff;
  font-size: 16px;
  font-weight: 400;
  border-radius: 1rem;
  border: none;
  cursor: pointer;
}
.btn-primary .icon {
  display: inline-block;
  width: 25px;
}
.btn-primary .icon svg {
  fill: #89323b;
  vertical-align: bottom;
  transition: fill 300ms ease;
}
.btn-primary:hover {
  color: #89323b;
  background-color: #fff;
}
.btn-primary:hover .icon svg {
  fill: #89323b;
}
@media screen and (max-width: 768px) {
  .btn-primary {
    font-size: 18px;
    padding: 0.8rem 1.2rem;
  }
}

.btn-primary-red {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #89323b;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border-radius: 1rem;
  border: none;
  cursor: pointer;
  transition: all 300ms ease;
}
.btn-primary-red .icon {
  display: inline-block;
  width: 25px;
}
.btn-primary-red .icon svg {
  fill: #89323b;
  vertical-align: bottom;
  transition: fill 300ms ease;
}
.btn-primary-red:hover {
  color: #89323b;
  background-color: #fff;
}
.btn-primary-red:hover .icon svg {
  fill: #89323b;
}
@media screen and (max-width: 768px) {
  .btn-primary-red {
    font-size: 18px;
    padding: 0.8rem 1.2rem;
  }
}

.btn-secondary {
  display: inline-block;
  padding: 1rem 3rem;
  color: #fff;
  background-color: transparent;
  font-size: 16px;
  font-weight: 400;
  border-radius: 1rem;
  border: 1px solid #fff;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .btn-secondary {
    font-size: 18px;
  }
}

@keyframes pulse-primary {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 213, 26, 0.8);
  }
  40% {
    box-shadow: 0 0 0px 5px rgba(255, 213, 26, 0.5);
  }
  80% {
    box-shadow: 0 0 3px 10px rgba(255, 213, 26, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 213, 26, 0);
  }
}
.container {
  width: 95%;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 15px;
}
@media screen and (max-width: 768px) {
  .container {
    width: 100%;
  }
}

.overhidden {
  overflow: hidden;
}

.container-mini {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.show-xs {
  display: none !important;
}
@media screen and (max-width: 576px) {
  .show-xs {
    display: block !important;
  }
}

.show-sm {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .show-sm {
    display: block !important;
  }
}

@media screen and (max-width: 768px) {
  .hide-sm {
    display: none !important;
  }
}

@media screen and (max-width: 576px) {
  .hide-xs {
    display: none !important;
  }
}

a {
  text-decoration: none;
}

img, video {
  max-width: 100%;
  height: auto;
}

.nowrap {
  white-space: nowrap;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.text-center {
  text-align: center;
}

.text-center-md {
  text-align: initial;
}
@media screen and (max-width: 1024px) {
  .text-center-md {
    text-align: center;
  }
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.pulse {
  animation: pulse-pulse-primary 2s linear infinite;
}
@keyframes pulse-pulse-primary {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
  }
  10% {
    transform: scale(1.05);
  }
  20% {
    transform: scale(1.05);
  }
  25% {
    transform: scale(1);
  }
  40% {
    box-shadow: 0 0 0px 5px rgba(255, 255, 255, 0.5);
  }
  80% {
    box-shadow: 0 0 3px 10px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 111;
  background-color: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  transition: all 300ms ease;
}
nav .nav_inner {
  display: flex;
  align-items: center;
  padding: 15px 0;
}
nav .logo {
  width: 200px;
}
nav .menu {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  nav .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    height: 100vh;
    background-color: #89323b;
    z-index: 200;
    box-shadow: 0 0 0 555px rgba(0, 0, 0, 0);
    display: flex;
    flex-direction: column;
    transition: all 500ms ease;
    transform: translateX(-100%);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  nav .menu.active {
    transform: translateX(0%);
    opacity: 1;
    box-shadow: 0 0 0 555px rgba(0, 0, 0, 0.1);
  }
}
@media screen and (max-width: 768px) {
  nav .menu .logo {
    width: 100%;
    display: flex !important;
    align-items: center;
    padding: 0 15px;
    justify-content: center;
  }
  nav .menu .logo img {
    width: 200px;
  }
}
nav .menu ul {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  nav .menu ul {
    display: block;
    width: 100%;
  }
}
nav .menu ul li {
  margin-right: 25px;
  padding: 15px;
}
@media screen and (max-width: 768px) {
  nav .menu ul li {
    margin-right: 0;
  }
}
nav .menu ul li a {
  color: #111;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  nav .menu ul li a {
    display: flex;
    align-items: center;
    font-weight: 400;
    color: #fff;
    padding: 12px 15px;
    width: 100%;
  }
  nav .menu ul li a.active {
    background-color: #fff;
    color: #89323b;
    border-radius: 5px;
  }
  nav .menu ul li a.active .icon {
    color: #89323b;
  }
}
nav .menu ul li a .icon {
  display: none;
}
@media screen and (max-width: 768px) {
  nav .menu ul li a .icon {
    display: inline-block;
    font-size: 22px;
    color: #fff;
    margin-right: 15px;
  }
}
nav .menu .btn_contact {
  padding: 30px 15px;
  margin-top: auto;
}
nav .menu .btn_contact button {
  width: 100%;
}
nav .nav_contacts {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  nav .nav_contacts {
    margin-left: auto;
  }
}
nav .nav_contacts .tg a, nav .nav_contacts .phone a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
nav .nav_contacts .tg a img, nav .nav_contacts .phone a img {
  width: 18px;
}
nav .nav_contacts .tg {
  margin-right: 10px;
}
nav .nav_contacts .tg a {
  background-color: #229ED9;
}
nav .nav_contacts .tg a img {
  transform: translateX(-1px);
}
nav .nav_contacts .phone a {
  background-color: #28a745;
}
nav .nav_contacts .btn_contact {
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  nav .nav_contacts .btn_contact {
    display: none;
  }
}
nav .nav_contacts .btn_contact button {
  display: inline-block;
  color: #fff;
  background-color: #89323b;
  padding: 10px 30px;
  font-size: 17px;
  border: 2px solid #89323b;
  border-radius: 30px;
  cursor: pointer;
  transition: all 300ms ease;
  white-space: nowrap;
}
nav .nav_contacts .btn_contact button .icon {
  display: inline-block;
  width: 20px;
}
nav .nav_contacts .btn_contact button .icon svg {
  fill: #fff;
  vertical-align: bottom;
  transition: fill 300ms ease;
}
nav .nav_contacts .btn_contact button:hover {
  color: #89323b;
  background-color: #fff;
}
nav .nav_contacts .btn_contact button:hover .icon svg {
  fill: #89323b;
}
nav .toggle-btn {
  position: relative;
  width: 50px;
  height: 50px;
  overflow: hidden;
  z-index: 220;
  margin-left: 15px;
  background-color: #fff;
  z-index: 221;
  padding: 10px;
  border-radius: 5px;
}
@media screen and (max-width: 576px) {
  nav .toggle-btn {
    display: block;
  }
}
nav .toggle-btn .toggle-input {
  display: none;
}
nav .toggle-btn label {
  display: block;
  cursor: pointer;
}
nav .toggle-btn svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
}
@media (min-aspect-ratio: 1/1) {
  nav .toggle-btn label {
    width: 90px;
    height: 90px;
  }
}
nav .toggle-btn path {
  fill: none;
  stroke: #89323b;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  --length: 24;
  --offset: -38;
  stroke-dasharray: var(--length) var(--total-length);
  stroke-dashoffset: var(--offset);
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
nav .toggle-btn circle {
  fill: transparent;
  opacity: 0;
}
nav .toggle-btn label:hover circle {
  opacity: 1;
}
nav .toggle-btn .cross input:checked + svg path {
  stroke: #89323b;
}
nav .toggle-btn .cross input:checked + svg .line--1,
nav .toggle-btn .cross input:checked + svg .line--3 {
  --length: 22.627416998;
}
nav .toggle-btn .cross input:checked + svg .line--2 {
  --length: 0;
}
nav .toggle-btn .back input:checked + svg .line--1,
nav .toggle-btn .back input:checked + svg .line--3 {
  --length: 8.602325267;
}
nav .toggle-btn .line--1,
nav .toggle-btn .line--3 {
  --total-length: 126.64183044433594;
}
nav .toggle-btn .line--2 {
  --total-length: 70;
}
nav .toggle-btn input:checked + svg .line--1,
nav .toggle-btn input:checked + svg .line--3 {
  --offset: -94.1149185097;
}
nav .toggle-btn input:checked + svg .line--2 {
  --offset: -50;
}

header {
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  header {
    padding: 20px 0;
    height: auto !important;
  }
}
header .container {
  height: 100%;
}
header .content {
  height: 100%;
  border-radius: 30px;
  padding: 50px;
  background-color: #333;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  box-shadow: inset 0 0 0 100vh rgba(0, 0, 0, 0.05);
  position: relative;
}
@media screen and (max-width: 768px) {
  header .content {
    padding: 30px;
  }
}
header .content h1 {
  font-size: 50px;
  font-weight: bold;
  margin-top: 100px;
  margin-bottom: 15px;
  color: #89323b;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  header .content h1 {
    font-size: 25px;
    margin-top: 30px;
  }
}
header .content .header_desc {
  font-size: 18px;
  text-align: center;
}
header .content .header_form {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  background-color: rgba(41, 41, 41, 0.7);
  padding: 30px;
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  header .content .header_form {
    position: static;
    transform: translateX(0);
    width: 100%;
    margin: 0;
    margin-top: 30px !important;
  }
}
header .content .header_form form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 768px) {
  header .content .header_form form {
    display: block;
  }
}
header .content .header_form label.input {
  display: block;
  position: relative;
  height: 50px;
  width: 35%;
}
@media screen and (max-width: 768px) {
  header .content .header_form label.input {
    width: 100%;
    margin-bottom: 20px;
  }
}
header .content .header_form label.input p {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  font-size: 16px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.05);
  z-index: 10;
  padding: 0 5px;
  line-height: 1;
  transition: left 300ms ease, top 300ms ease, color 300ms ease, font-size 300ms ease;
}
header .content .header_form label.input span {
  color: #89323b;
}
header .content .header_form label.input input {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 10;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: transparent;
  border: 1px solid #89323b;
  padding-left: 20px;
  border-radius: 1rem;
  color: #fff;
  transition: border-color 300ms ease;
}
header .content .header_form label.input textarea {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 10;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid #fff;
  padding-left: 15px;
  color: #fff;
  resize: none;
}
header .content .header_form label.input textarea::-moz-placeholder {
  color: #fff;
  font-size: 14px;
}
header .content .header_form label.input textarea::placeholder {
  color: #fff;
  font-size: 14px;
}
header .content .header_form label.input:focus-within p {
  top: 0;
  left: 15px;
  color: #fff;
  font-size: 12px;
}
header .content .header_form label.input.focused p, header .content .header_form label.input.filled p {
  transition: none;
  top: 0;
  left: 15px;
  font-size: 12px;
}
header .content .header_form .btn {
  text-align: center;
}
@media screen and (max-width: 768px) {
  header .content .header_form .btn {
    width: 100%;
  }
}
header .content .header_form .btn button {
  display: inline-flex;
  align-items: center;
  background-color: #89323b;
  color: #fff;
  width: 100%;
  justify-content: center;
}
header .content .header_form .btn button .inner {
  position: relative;
}
header .content .header_form .btn button .loader {
  position: absolute;
  top: 50%;
  left: 100%;
  width: 15px;
  margin-left: 5px;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 300ms ease;
}
header .content .header_form .btn button .loader svg path,
header .content .header_form .btn button .loader svg rect {
  fill: #fff;
}

body {
  background-color: #EDF2F7;
}

.advantages {
  padding: 80px 0;
}
@media screen and (max-width: 1024px) {
  .advantages {
    padding: 60px 30px;
  }
}
@media screen and (max-width: 768px) {
  .advantages {
    padding: 40px 0;
  }
}
.advantages .container {
  width: 100%;
}
.advantages .row {
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .advantages .row {
    justify-content: space-between;
    padding: 0 15px;
  }
}
.advantages .item {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: calc(20.8333333333% - 30px);
  background-color: #2e3138;
  color: #fff;
  padding: 25px;
  border-radius: 30px;
  background-size: cover;
  background-position: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .advantages .item {
    width: calc(50% - 30px);
  }
}
@media screen and (max-width: 576px) {
  .advantages .item {
    margin-right: 0 !important;
    margin-left: 0 !important;
    width: calc(50% - 7.5px);
  }
}
@media screen and (max-width: 768px) {
  .advantages .item {
    margin-bottom: 15px;
  }
}
.advantages .item h2 {
  font-size: 3rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .advantages .item h2 {
    font-size: 1.5rem;
    margin: 30px 0;
  }
}
.advantages .item .icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .advantages .item .icon {
    width: 25px;
    height: 25px;
  }
}
.advantages .item .icon img {
  max-width: 100%;
  max-height: 100%;
}
.advantages .item .title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .advantages .item .title {
    font-weight: normal;
  }
}
.advantages .item .desc {
  font-size: 15px;
  line-height: 1.4;
}
@media screen and (max-width: 576px) {
  .advantages .item .desc {
    display: none;
  }
}
.advantages .item.item-big {
  width: calc(33.3333333333% - 30px);
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .advantages .item.item-big {
    width: calc(100% - 30px);
  }
}
@media screen and (max-width: 768px) {
  .advantages .item.item-big {
    width: 100%;
  }
}
.advantages .item.item-big.show-sm {
  height: 200px;
}

.brands .swiper-wrapper {
  align-items: center;
}
.brands .item {
  padding: 30px;
}
.brands .item img {
  width: 120px;
  max-height: 120px;
}

.cars {
  margin-top: 150px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .cars {
    margin-top: 100px;
  }
}
@media screen and (max-width: 768px) {
  .cars .container {
    max-width: 100% !important;
  }
}
.cars .content {
  padding: 30px;
  background-color: #35374b;
  border-radius: 30px;
}
.cars h2 {
  font-size: 35px;
  line-height: 1.4;
}
.cars .tab_buttons_controller {
  display: none;
  align-items: center;
  justify-content: space-between;
  background-color: #35374b;
  border-radius: 15px;
  padding: 15px;
}
@media screen and (max-width: 768px) {
  .cars .tab_buttons_controller {
    display: flex;
  }
}
.cars .tab_buttons_controller h4 {
  margin-bottom: 0;
  color: #fff;
  font-size: 23px;
  font-weight: bold;
  line-height: 1;
}
.cars .tab_buttons_controller .tab_buttons_opener {
  border-radius: 5px;
  background-color: #fff;
  color: #35374b;
  width: 45px;
  height: 45px;
  border: none;
  font-size: 21px;
  cursor: pointer;
}
.cars .pos {
  position: relative;
  margin-bottom: 15px;
}
.cars .tab_buttons {
  margin: 0 auto;
  background-color: #35374b;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  overflow: hidden;
  padding: 0 25px;
  margin-bottom: 30px;
}
.cars .tab_buttons .whitespace {
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .cars .tab_buttons {
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    transition: all 300ms ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    border-bottom: 2px solid #fff;
    border-radius: 0;
  }
  .cars .tab_buttons.active_sm {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    z-index: 11;
  }
}
.cars .tab_buttons button {
  background-color: transparent;
  color: #fff;
  border: none;
  padding: 20px 15px;
  flex-grow: 1;
  position: relative;
  cursor: pointer;
}
.cars .tab_buttons button:after {
  content: "";
  width: calc(100% - 30px);
  position: absolute;
  height: 3px;
  border-radius: 3px;
  background-color: #fff;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0px;
  opacity: 0;
  transition: all 300ms ease;
}
.cars .tab_buttons button:hover::after {
  bottom: 5px;
  opacity: 0.8;
}
.cars .tab_buttons button.active::after {
  opacity: 1;
  bottom: 8px;
}
.cars .tab_content {
  padding: 30px;
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .cars .tab_content {
    padding: 0;
  }
}
.cars .tab_content .tab {
  display: none;
}
.cars .tab_content .tab.active {
  display: block;
}
.cars .tab_content .item {
  background-color: #fff;
  max-width: 350px;
  padding: 20px;
  border-radius: 20px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.cars .tab_content .item h3 {
  font-size: 25px;
  font-weight: bold;
  color: #35374b;
  margin-bottom: 15px;
}
.cars .tab_content .item .img {
  height: 175px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  margin-bottom: 15px;
}
.cars .tab_content .item .price {
  font-size: 23px;
  font-weight: bold;
  color: #89323b;
  margin-bottom: 30px;
}
.cars .tab_content .item .btn {
  text-align: center;
}
.cars .tab_content .item .btn .btn-primary {
  background-color: #89323b;
  color: #fff;
  border-color: #89323b;
  width: 100%;
  font-weight: bold;
}
.cars .swiper-wrapper {
  padding-bottom: 40px;
}
.cars .swiper-pagination-bullet-active {
  background-color: #89323b;
}
.cars .swiper-button-next,
.cars .swiper-button-prev {
  width: 60px;
  height: 60px;
  background-color: #89323b;
  color: #fff;
  border-radius: 50%;
  font-size: 30px;
}
.cars .swiper-button-next::after,
.cars .swiper-button-prev::after {
  display: none;
}
@media screen and (max-width: 768px) {
  .cars .swiper-button-next,
  .cars .swiper-button-prev {
    display: none;
  }
}

.steps {
  padding: 80px 0;
}
@media screen and (max-width: 1024px) {
  .steps {
    padding: 60px 30px;
  }
}
@media screen and (max-width: 768px) {
  .steps {
    padding: 40px 0;
  }
}
.steps .container {
  width: 100%;
}
.steps .row {
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .steps .row {
    justify-content: space-between;
    margin: 0;
  }
}
.steps .item {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: calc(25% - 30px);
  background-color: #2e3138;
  color: #fff;
  padding: 25px;
  border-radius: 30px;
  background-size: cover;
  background-position: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .steps .item {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: calc(50% - 7.5px);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
  }
}
.steps .item .icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .steps .item .icon {
    width: 30px;
    height: 30px;
    margin-bottom: 30px;
  }
}
.steps .item .icon img {
  max-width: 100%;
  max-height: 100%;
}
.steps .item .title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .steps .item .title {
    font-size: 16px;
  }
}
.steps .item .desc {
  font-size: 16px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .steps .item .desc {
    font-size: 13px;
  }
}
.steps .item.with-form {
  background-color: #89323b;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .steps .item.with-form {
    width: 100%;
  }
}
.steps .item.with-form .btn-primary {
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .steps .item.item-pre-last {
    width: 100%;
  }
}

.single {
  padding: 80px 0;
  margin-top: 50px;
}
@media screen and (max-width: 1024px) {
  .single {
    padding: 60px 30px;
  }
}
@media screen and (max-width: 768px) {
  .single {
    padding: 40px 0;
  }
}
.single .content {
  background-color: #2e3138;
  color: #fff;
  padding: 30px;
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .single .content {
    padding: 15px;
  }
}
.single .single-gallery-main {
  margin-bottom: 10px;
}
.single .single-gallery-main .swiper-slide .gallery-item {
  border-radius: 15px;
}
.single .thumbs .swiper-slide .gallery-item {
  transition: filter 300ms ease;
  height: 130px;
  filter: brightness(0.5);
  cursor: pointer;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .single .thumbs .swiper-slide .gallery-item {
    height: 73px;
  }
}
.single .swiper-slide-thumb-active .gallery-item {
  filter: brightness(1) !important;
}
.single .gallery-item {
  height: 43vh;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .single .gallery-item {
    height: 20vh;
  }
}
.single .swiper-button-next,
.single .swiper-button-prev {
  width: 60px;
  height: 60px;
  background-color: #89323b;
  color: #fff;
  border-radius: 50%;
  font-size: 30px;
}
.single .swiper-button-next::after,
.single .swiper-button-prev::after {
  display: none;
}
@media screen and (max-width: 768px) {
  .single .swiper-button-next,
  .single .swiper-button-prev {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .single .swiper-button-prev {
    left: 5px;
  }
}
@media screen and (max-width: 768px) {
  .single .swiper-button-next {
    right: 5px;
  }
}
.single .flex {
  display: flex;
  flex-wrap: wrap;
}
.single .flex .left {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .single .flex .left {
    width: 100%;
    margin-bottom: 30px;
  }
}
.single .flex .right {
  width: 50%;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .single .flex .right {
    width: 100%;
    padding: 0;
  }
}
.single .single-title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .single .single-title {
    font-size: 20px;
  }
}
.single .had_accident {
  font-weight: bold;
  margin-bottom: 20px;
}
.single .single-table {
  display: flex;
  flex-wrap: wrap;
}
.single .single-table .thead {
  width: 25%;
  margin-bottom: 15px;
  padding-right: 10px;
}
@media screen and (max-width: 768px) {
  .single .single-table .thead {
    width: 50%;
  }
}
.single .single-table .tvalue {
  width: 25%;
  font-weight: bold;
  margin-bottom: 15px;
  padding-right: 10px;
}
@media screen and (max-width: 768px) {
  .single .single-table .tvalue {
    width: 50%;
  }
}
.single .rate {
  display: flex;
  align-items: flex-end;
  margin: 15px 0;
}
.single .rate .dots {
  border-bottom: 1px dashed #555;
  flex-grow: 2;
  margin: 0 7px;
  transform: translateY(-4px);
}
.single .rate h4 {
  font-size: 18px;
}
.single .rate h3 {
  font-size: 18px;
  font-weight: bold;
  color: red;
}
.single .single-btn {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .single .single-btn {
    text-align: center;
  }
}
.single .single-btn button {
  background-color: #89323b;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}

.configuration {
  padding: 80px 0;
}
@media screen and (max-width: 1024px) {
  .configuration {
    padding: 60px 30px;
  }
}
@media screen and (max-width: 768px) {
  .configuration {
    padding: 40px 0;
  }
}
.configuration .title-primary span {
  color: red;
}
.configuration .content {
  background-color: #2e3138;
  color: #fff;
  padding: 30px;
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .configuration .content {
    padding: 15px;
  }
}
.configuration h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
}
.configuration ul {
  display: flex;
  flex-wrap: wrap;
}
.configuration ul li {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  width: 33.333%;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .configuration ul li {
    width: 50%;
    font-size: 14px;
    padding-right: 5px;
  }
}
.configuration ul li .true, .configuration ul li .false {
  width: 25px;
  height: 25px;
  background-color: #ae414c;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .configuration ul li .true, .configuration ul li .false {
    width: 15px;
    height: 15px;
  }
}
.configuration ul li .false {
  background-color: #999;
}

.insurance_history {
  padding: 80px 0;
}
@media screen and (max-width: 1024px) {
  .insurance_history {
    padding: 60px 30px;
  }
}
@media screen and (max-width: 768px) {
  .insurance_history {
    padding: 40px 0;
  }
}
.insurance_history .content {
  background-color: #2e3138;
  color: #fff;
  padding: 30px 30px;
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .insurance_history .content {
    padding: 20px;
  }
}
.insurance_history h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .insurance_history h3 {
    font-size: 18px;
  }
}
.insurance_history h3 span {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  white-space: nowrap;
  height: 32px;
  padding: 4px 16px;
  border-radius: 30px;
  border: 1px solid #fff;
  background-color: transparent;
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .insurance_history h3 span {
    margin-left: 15px;
  }
}
.insurance_history .line {
  margin-top: 30px;
  margin-bottom: 80px;
  border-bottom: 1px solid #798383;
}
@media screen and (max-width: 768px) {
  .insurance_history .line {
    margin-top: 15px;
    margin-bottom: 30px;
  }
}
.insurance_history .left,
.insurance_history .right {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: calc(50% - 30px);
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .insurance_history .left,
  .insurance_history .right {
    width: calc(100% - 30px);
  }
}
@media screen and (max-width: 768px) {
  .insurance_history .left,
  .insurance_history .right {
    padding: 0;
  }
}
.insurance_history h4 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
}
.insurance_history ul {
  margin-bottom: 30px;
}
.insurance_history ul li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #798383;
  gap: 15px 10px;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .insurance_history ul li {
    font-size: 14px;
  }
  .insurance_history ul li p {
    margin-left: 15px;
  }
}

.inside_check {
  padding: 80px 0;
}
@media screen and (max-width: 1024px) {
  .inside_check {
    padding: 60px 30px;
  }
}
@media screen and (max-width: 768px) {
  .inside_check {
    padding: 40px 0;
  }
}
.inside_check .content {
  background-color: #2e3138;
  color: #fff;
  padding: 30px 50px;
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .inside_check .content {
    padding: 20px;
  }
}
.inside_check h3 {
  font-size: 34px;
  font-weight: bold;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .inside_check h3 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 20px;
  }
}
.inside_check ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #798383;
  padding: 30px 0;
}
.inside_check ul li h5 {
  font-size: 23px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .inside_check ul li h5 {
    font-size: 16px;
    font-weight: 500;
  }
}
.inside_check ul li p {
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 18px 4px;
  border-radius: 30px;
  border: 1px solid #fff;
  color: #fff;
  font-style: normal;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .inside_check ul li p {
    margin-left: 15px;
    font-size: 16px;
    padding: 5px 10px;
    height: auto;
  }
}
.inside_check ul li p.avg {
  color: #ff8a00;
  border-color: #ff8a00;
}
.inside_check ul li p.good {
  color: #329c00;
  border-color: #329c00;
}

.separated_blocks .half {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: calc(47.9166666667% - 30px);
}
@media screen and (max-width: 768px) {
  .separated_blocks .half {
    width: calc(100% - 30px);
  }
}

.full_cost {
  background-color: #2e3138;
  color: #fff;
  padding: 30px 30px;
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .full_cost {
    margin-bottom: 30px;
  }
}
.full_cost h3 {
  font-size: 34px;
  font-weight: bold;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .full_cost h3 {
    text-align: center;
    font-size: 22px;
  }
}
.full_cost p {
  margin-bottom: 15px;
}

.expenses {
  background-color: #2e3138;
  color: #fff;
  padding: 30px 30px;
  border-radius: 30px;
}
.expenses ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #798383;
  gap: 15px 10px;
  padding: 20px 0;
}
.expenses ul li:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
.expenses ul li:first-of-type {
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  .expenses ul li h4 {
    font-size: 15px;
  }
  .expenses ul li h4 b {
    font-weight: 400;
    font-size: 14px;
  }
}
.expenses .btn-primary {
  background-color: #ae414c;
  color: #fff;
  border-color: #ae414c;
}
.expenses .price {
  font-weight: bold;
  color: red;
  white-space: nowrap;
}

.contacts {
  padding: 80px 0;
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .contacts {
    padding: 60px 30px;
  }
}
@media screen and (max-width: 768px) {
  .contacts {
    padding: 40px 0;
  }
}
.contacts .title-primary {
  text-align: left;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .contacts .title-primary {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .contacts .container {
    padding: 0;
  }
}
.contacts .content {
  border-radius: 12px;
  background-color: #fff;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .contacts .content {
    background-color: transparent;
    padding: 0px;
  }
}
.contacts .content .row {
  align-items: center;
}
.contacts .content .left,
.contacts .content .right {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: calc(50% - 30px);
}
@media screen and (max-width: 768px) {
  .contacts .content .left,
  .contacts .content .right {
    width: calc(100% - 30px);
  }
}
.contacts .content .left iframe {
  width: 100%;
  height: 50vh;
}
@media screen and (max-width: 768px) {
  .contacts .content .left iframe {
    height: 20vh;
  }
}
@media screen and (max-width: 768px) {
  .contacts .content .right {
    padding: 15px;
  }
}
@media screen and (max-width: 768px) {
  .contacts .content .right .to-hide {
    display: none;
  }
}
.contacts .content .right h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 28.13px;
  text-align: left;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .contacts .content .right h3 {
    text-align: center;
  }
}
.contacts .content .right h4 {
  font-size: 24px;
  font-weight: bold;
  margin-top: 30px;
}
.contacts .content .right .points li {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .contacts .content .right .points li {
    font-size: 18px;
  }
}
.contacts .content .right .points .icon {
  display: inline-block;
  margin-right: 10px;
}
.contacts .content .right .points .icon img {
  width: 25px;
  vertical-align: bottom;
  transform: translateY(5px);
}
.contacts .content .right .contacts_socials {
  margin-top: 30px;
}
.contacts .content .right .contacts_socials a {
  display: inline-block;
  margin-right: 30px;
}

.about {
  padding: 80px 0;
  margin-top: 50px;
}
@media screen and (max-width: 1024px) {
  .about {
    padding: 60px 30px;
  }
}
@media screen and (max-width: 768px) {
  .about {
    padding: 40px 0;
  }
}
.about .content {
  background-color: #2e3138;
  color: #fff;
  padding: 30px;
  border-radius: 30px;
}
.about .content p {
  margin-bottom: 15px;
  line-height: 1.5;
  font-size: 16px;
  padding-right: 100px;
}
@media screen and (max-width: 768px) {
  .about .content p {
    padding-right: 50px;
  }
}
@media screen and (max-width: 576px) {
  .about .content p {
    padding-right: 0px;
    font-size: 14px;
  }
}
.about .content h1, .about .content h2, .about .content h3, .about .content h4, .about .content h5, .about .content h6 {
  line-height: 1.4;
  margin-bottom: 15px;
  font-weight: 600;
}
.about .content h1 {
  font-size: 45px;
}
@media screen and (max-width: 1024px) {
  .about .content h1 {
    font-size: 38px;
  }
}
@media screen and (max-width: 768px) {
  .about .content h1 {
    font-size: 35px;
  }
}
@media screen and (max-width: 768px) {
  .about .content h1 {
    font-size: 30px;
  }
}
.about .content h2 {
  font-size: 36px;
}
@media screen and (max-width: 768px) {
  .about .content h2 {
    font-size: 30px;
  }
}
.about .content h3 {
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  .about .content h3 {
    font-size: 27px;
  }
}
@media screen and (max-width: 576px) {
  .about .content h3 {
    font-size: 23px;
  }
}
.about .content h4 {
  font-size: 25px;
}
@media screen and (max-width: 768px) {
  .about .content h4 {
    font-size: 23px;
  }
}
@media screen and (max-width: 576px) {
  .about .content h4 {
    font-size: 20px;
  }
}
.about .content ul {
  padding-left: 30px;
  margin-bottom: 15px;
}
.about .content ul li {
  position: relative;
  font-size: 15px;
  font-weight: bold;
}
.about .content ul li:not(:last-of-type) {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .about .content {
    padding: 15px;
  }
}
.about .swiper {
  margin-top: 30px;
}
.about .item {
  text-align: center;
}
.about .item .img {
  width: 200px;
  height: 200px;
  background-size: cover;
  background-position: bottom center;
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .about .item .img {
    width: 150px;
    height: 150px;
  }
}
.about .item .name {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}
.about .item .position {
  font-size: 15px;
}

.category {
  padding: 80px 0;
}
@media screen and (max-width: 1024px) {
  .category {
    padding: 60px 30px;
  }
}
@media screen and (max-width: 768px) {
  .category {
    padding: 40px 0;
  }
}
.category .content {
  background-color: #2e3138;
  color: #fff;
  padding: 30px;
  border-radius: 30px;
}
.category .item {
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 15px;
  background-color: #222222;
  border: 2px solid #444;
}
@media screen and (max-width: 768px) {
  .category .item {
    display: block;
  }
}
.category .item:not(:last-of-type) {
  margin-bottom: 40px;
}
.category .item .img {
  width: 22%;
  background-size: cover;
  background-position: center center;
  height: 200px;
  border-radius: 15px;
}
@media screen and (max-width: 768px) {
  .category .item .img {
    width: 100%;
  }
}
.category .item .basic {
  width: 20%;
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  .category .item .basic {
    width: 100%;
    padding: 15px 15px;
  }
}
.category .item .basic .title {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 15px;
}
.category .item .basic .flex {
  display: flex;
  align-items: center;
  margin: 15px 0;
}
.category .item .basic .odometer,
.category .item .basic .date {
  color: #8e8e89;
  font-size: 12px;
}
.category .item .basic .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #8e8e89;
  margin: 0 10px;
}
.category .item .basic .accident {
  font-size: 12px;
  font-weight: 500;
}
.category .item .basic .accident .green {
  color: green;
}
.category .item .basic .accident .red {
  color: red;
}
.category .item .details {
  width: 30%;
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #8e8e89;
}
@media screen and (max-width: 768px) {
  .category .item .details {
    width: 100%;
    padding: 15px 15px;
  }
}
.category .item .details .details_col {
  width: 33.333%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.category .item .details .details_col span {
  display: block;
  margin: 7px 0;
}
.category .item .rate {
  margin-left: auto;
  padding-right: 100px;
}
@media screen and (max-width: 768px) {
  .category .item .rate {
    width: 100%;
    padding: 15px 15px;
  }
}
.category .item .rate .price {
  font-size: 22px;
  font-weight: bold;
  color: #ae414c;
  margin-bottom: 5px;
}
.category .item .rate p {
  font-size: 12px;
  margin-bottom: 15px;
}

footer {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  footer {
    background-color: #2e3138;
  }
}
footer .content {
  background-color: #2e3138;
  padding: 30px;
  border-radius: 30px 30px 0 0;
}
@media screen and (max-width: 768px) {
  footer .content {
    padding: 0;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
footer .footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  footer .footer-top {
    display: block;
  }
}
footer .footer-top .footer-logo {
  width: 250px;
}
@media screen and (max-width: 768px) {
  footer .footer-top .footer-logo {
    margin: 0 auto;
    margin-bottom: 15px;
  }
}
footer .footer-top .footer-menu ul {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  footer .footer-top .footer-menu ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}
footer .footer-top .footer-menu ul li {
  margin-left: 15px;
}
footer .footer-top .footer-menu ul li a {
  color: #fff;
  font-size: 14px;
  opacity: 0.5;
  transition: opacity 300ms ease;
}
footer .footer-top .footer-menu ul li a:hover {
  opacity: 0.3;
}
footer .footer-row {
  margin-bottom: 30px;
}
footer .footer-row .col {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: calc(22.2222222222% - 30px);
}
@media screen and (max-width: 768px) {
  footer .footer-row .col {
    width: calc(50% - 30px);
  }
}
footer .footer-row .col-big {
  width: calc(33.3333333333% - 30px);
  padding-right: 100px;
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  footer .footer-row .col-big {
    width: calc(100% - 30px);
  }
}
@media screen and (max-width: 768px) {
  footer .footer-row .col-big {
    padding-right: 0;
    padding-top: 0;
    margin-bottom: 30px;
  }
}
footer .footer-phone {
  margin-bottom: 30px;
}
footer .footer-phone a {
  font-size: 2rem;
  color: #fff;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 15px;
}
footer .footer-phone h4 {
  font-size: 23px;
  font-weight: bold;
  color: #fff;
}
footer .footer-phone h4 .icon {
  display: inline-block;
  width: 22px;
  margin-right: 5px;
}
footer .footer-phone h4 .icon img {
  vertical-align: middle;
}
footer .footer-desc {
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
  opacity: 0.5;
  margin-bottom: 30px;
}
footer .footer-btn a {
  display: inline-block;
  color: #fff;
  background-color: #89323b;
  padding: 10px 30px;
  font-size: 17px;
  border: 2px solid #89323b;
  border-radius: 30px;
  cursor: pointer;
  transition: all 300ms ease;
  white-space: nowrap;
}
footer .footer-btn a .icon {
  display: inline-block;
  width: 20px;
}
footer .footer-btn a .icon svg {
  fill: #fff;
  vertical-align: bottom;
  transition: fill 300ms ease;
}
footer .footer-btn a:hover {
  color: #89323b;
  background-color: #fff;
}
footer .footer-btn a:hover .icon svg {
  fill: #89323b;
}
footer .footer-cars h4 {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 30px;
}
footer .footer-cars ul li {
  margin-bottom: 15px;
}
footer .footer-cars ul li a {
  font-size: 14px;
  color: #fff;
  opacity: 0.5;
}
footer .copy {
  text-align: center;
  color: #fff;
  margin-top: 50px;
}

.modal-order {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(20, 20, 20, 0.168627451);
  z-index: 111;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 10vh 0;
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease;
  perspective: 1000px;
}
@media screen and (max-width: 768px) {
  .modal-order {
    align-items: center;
    padding: 0;
  }
}
.modal-order.active {
  opacity: 1;
  visibility: visible;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.modal-order.active .content {
  transform: translateY(0px) scale(1);
}
.modal-order .title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 30px;
  text-align: center;
}
.modal-order .content {
  width: 550px;
  max-width: calc(100% - 30px);
  padding: 50px;
  background-color: #fff;
  border-radius: 3rem;
  position: relative;
  transform: translateY(60px) scale(1.1);
  transition: transform 300ms ease;
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .modal-order .content {
    padding: 30px 15px;
    padding-top: 60px;
    border-radius: 1rem;
  }
}
.modal-order .content .close_btn {
  position: absolute;
  top: 20px;
  right: 40px;
}
@media screen and (max-width: 768px) {
  .modal-order .content .close_btn {
    right: 20px;
  }
}
.modal-order .content .close_btn button {
  border: none;
  background-color: #ae414c;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  width: 40px;
  height: 40px;
  padding: 10px;
  cursor: pointer;
}
.modal-order .content .close_btn button img {
  width: 20px;
}
.modal-order .content label.input {
  display: block;
  position: relative;
  height: 50px;
  margin-bottom: 30px;
}
.modal-order .content label.input p {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  font-size: 16px;
  color: #1a1a1a;
  font-weight: 500;
  background-color: #fff;
  z-index: 10;
  padding: 0 5px;
  line-height: 1;
  transition: left 300ms ease, top 300ms ease, color 300ms ease, font-size 300ms ease;
}
.modal-order .content label.input span {
  color: #ae414c;
}
.modal-order .content label.input input {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 10;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: transparent;
  border: 1px solid #ae414c;
  padding-left: 20px;
  border-radius: 1rem;
  color: #141414;
  font-weight: 500;
  transition: border-color 300ms ease;
}
.modal-order .content label.input textarea {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 10;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid #ae414c;
  padding-left: 15px;
  color: #141414;
  resize: none;
}
.modal-order .content label.input textarea::-moz-placeholder {
  color: #ae414c;
  font-size: 14px;
}
.modal-order .content label.input textarea::placeholder {
  color: #ae414c;
  font-size: 14px;
}
.modal-order .content label.input:focus-within p {
  top: 0;
  left: 15px;
  color: #141414;
  font-size: 12px;
}
.modal-order .content label.input.focused p, .modal-order .content label.input.filled p {
  transition: none;
  top: 0;
  left: 15px;
  font-size: 12px;
}
.modal-order .content .btn {
  text-align: center;
}
.modal-order .content .btn button {
  display: inline-flex;
  align-items: center;
  background: #ae414c;
  color: #fff;
  font-weight: bold;
}
.modal-order .content .btn button .inner {
  position: relative;
}
.modal-order .content .btn button .loader {
  position: absolute;
  top: 50%;
  left: 100%;
  width: 15px;
  margin-left: 5px;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 300ms ease;
}
.modal-order .content .btn button .loader svg path,
.modal-order .content .btn button .loader svg rect {
  fill: #fff;
}/*# sourceMappingURL=style.css.map */