@charset "UTF-8";

body {
  color: #141414;
  min-width: 320px;
  background-color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  letter-spacing: 0.3px;
}

body.lock {
  overflow: hidden;
}

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

a {
  color: #292929;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: #3E12E3;
}

a:focus {
  color: #292929;
  text-decoration: none;
}

button,
button[typhonee=submit],
a,
input {
  outline: none;
}

button:hover,
button[type=submit],
a:hover,
input:hover {
  outline: none;
}

button:focus,
button[type=submit],
a:focus,
input:focus {
  outline: none;
}

.wrapper {
  overflow: visible;
  overflow-x: clip;
}

/*font-family: 'Gilroy-Regular', sans-serif;*/

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 50;
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header.active::before {
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}

.header.active .header__body {
  padding: 10px 0;
}

.header .header__body {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 22px 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header .header__body .header__logo {
  z-index: 3;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.header .header__body .header__logo img {
  max-width: 100%;
  display: block;
  width: 220px;
}

.header .header__body .header__burger {
  display: none;
}

.header .header__menu .header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 2;
  padding: 0;
  margin: 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header .header__menu .header__list li {
  list-style: none;
  margin: 0 0 0 30px;
  position: relative;
}

.header .header__menu .header__list li .header__link {
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.header .header__menu .header__list li .header__link:hover {
  color: #89ACFF;
}

.header .header__menu .header__list li .header__link:hover .arrow {
  color: #89ACFF;
}

.header .header__menu .header__list li .header__link .arrow {
  color: #F8FAFC;
  font-size: 7px;
  margin-left: 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  z-index: -1;
}

.header .header__menu .header__list li .submenu {
  position: absolute;
  top: 47px;
  left: -160px;
  padding: 0;
  margin: 0;
  padding: 24px;
  border-radius: 12px;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  background: rgba(0, 0, 0, 0.6);
  width: 384px;
  display: none;
}

.header .header__menu .header__list li .submenu li {
  border-bottom: 1px solid #94A3B8;
  margin-left: 0;
}

.header .header__menu .header__list li .submenu li a {
  color: #F8FAFC;
  font-size: 18px;
  padding: 8px 0;
  line-height: 150%;
  white-space: nowrap;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header .header__menu .header__list li .submenu li a:hover {
  color: #89ACFF;
}

.header .header__menu .mobile-social-links {
  display: none;
  padding-bottom: 43px;
  margin-top: auto;
  text-align: center;
}

.header .header__menu .mobile-social-links a {
  padding: 0 20px;
  font-size: 30px;
  color: #F1F5F9;
}

.header .buttons {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header .buttons .phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.header .buttons .phone a {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 5px;
}

.header .buttons .phone span {
  color: #fff;
  font-weight: 300;
  font-size: 11px;
}

.header .buttons .site-btn {
  margin-left: 20px;
  color: #141414;
  background-color: #fff;
  border-color: #fff;
}

.site-btn {
  border-radius: 53px;
  padding: 12px 20px;
  background-color: #3E12E3;
  color: #fff;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid #3E12E3;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.site-btn svg {
  margin-left: 16px;
}

.site-btn:hover {
  color: #3E12E3;
  background-color: transparent;
}

.section-title {
  margin-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-weight: 700;
  font-size: 88px;
  line-height: 90%;
  text-transform: uppercase;
}

.section-title p {
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  color: #80848d;
  margin-bottom: 0;
}

#finishModal .modal-content {
  border-radius: 47px;
  max-width: 465px;
  width: 100%;
  height: 388px;
}

#finishModal .modal-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#finishModal .modal-body span {
  width: 92px;
  height: 92px;
  background-color: #3E12E3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50px;
  margin-bottom: 42px;
}

#finishModal .modal-body p {
  color: #272727;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 150%;
}

.form-block {
  padding: 36px;
  width: 100%;
  -webkit-backdrop-filter: blur(10.1999998093px);
          backdrop-filter: blur(10.1999998093px);
  background: rgba(235, 235, 235, 0.2);
  border-radius: 16px;
  max-width: 503px;
}

.form-block #regForm {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.form-block #regForm .form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-block #regForm .form-group:last-child {
  margin-bottom: 0;
}

.form-block #regForm .form-group .form-check-label {
  margin-bottom: 0;
}

.form-block #regForm .form-group .form-check {
  margin-bottom: 0;
}

.form-block #regForm .form-group.form-check-block {
  color: #fff;
}

.form-block #regForm .form-group .form-check-input[type=radio] {
  border-radius: 4px;
  border-color: #ccc;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form-block #regForm .form-group .form-check-input:checked {
  background-color: transparent;
  position: relative;
}

.form-block #regForm .form-group .form-control {
  border-radius: 42px;
  padding: 18px 16px 18px 20px;
  -webkit-box-shadow: 0 2px 0 0 #b1b1b1;
          box-shadow: 0 2px 0 0 #b1b1b1;
  background: #f4f4f4;
}

.form-block #regForm .form-group .form-control.invalid {
  border-color: #FF4747;
}

.form-block #regForm .form-group .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #3E12E3;
}

.form-block #regForm .form-group .dropdown {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form-block #regForm .form-group .dropdown .dropdown-options {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  border: 1px solid #ccc;
  max-height: 200px;
  overflow-y: auto;
  display: none;
}

.form-block #regForm .form-group .dropdown.open .dropdown-options {
  display: block;
}

.form-block #regForm .form-group .dropdown-options .option {
  padding: 5px;
  cursor: pointer;
}

.form-block #regForm .form-group .dropdown-options .option.highlight {
  background-color: #3f51b5;
  color: #fff;
}

.form-block #regForm .form-group .dropdown-options .option:hover {
  background-color: #ccc;
  color: #fff;
}

.form-block #regForm .form-group .bootstrap-datetimepicker-widget table {
  width: 100%;
}

.form-block #regForm .form-group .bootstrap-datetimepicker-widget table .date-widge td {
  padding: 20px;
  width: 100%;
}

.form-block #regForm .form-group .bootstrap-datetimepicker-widget table td.active {
  background-color: #3E12E3;
  text-shadow: unset;
}

.form-block #regForm .form-group .bootstrap-datetimepicker-widget table td.active:hover {
  background-color: #3E12E3;
  text-shadow: unset;
}

.form-block #regForm .form-group .bootstrap-datetimepicker-widget table th {
  font-size: 14px;
  font-weight: 400;
  padding: 12px;
  width: 100%;
}

.form-block #regForm .form-group .bootstrap-datetimepicker-widget table td.day {
  font-size: 14px;
  font-weight: 400;
  padding: 10px;
}

.form-block #regForm .form-group .bootstrap-datetimepicker-widget .timepicker-hour table td {
  padding: 20px;
  width: 100%;
}

.form-block #regForm .form-group .bootstrap-datetimepicker-widget .timepicker-hour table th {
  font-size: 14px;
  font-weight: 400;
  padding: 12px;
  width: 100%;
}

.form-block #regForm .form-group .bootstrap-datetimepicker-widget .timepicker-minute table td {
  padding: 20px;
  width: 100%;
}

.form-block #regForm .form-group .bootstrap-datetimepicker-widget .timepicker-minute table th {
  font-size: 14px;
  font-weight: 400;
  padding: 15px;
  width: 100%;
}

.form-block #regForm .form-group .radio-error {
  color: red;
  display: none;
}

.form-block #regForm .form-group .vehicle-type-error {
  color: red;
  display: none;
}

.form-block #regForm .form-group .email-error {
  color: red;
  display: none;
}

.form-block #regForm button {
  border: none;
  width: 100%;
  color: #F8FAFC;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 600;
  text-transform: capitalize;
  font-size: 16px;
}

.form-block #regForm button:hover {
  background-color: #457DFF;
}

.form-block #regForm .tab {
  display: none;
  margin-bottom: 30px;
}

.form-block #regForm .action {
  text-align: center;
  font-size: 12px;
  color: #384860;
}

.form-block #regForm .action a {
  font-size: 14px;
  text-decoration: underline;
  color: #3e3e3e;
  font-family: "NeueMontreal-Medium", sans-serif;
}

.form-block .heading {
  text-align: center;
  margin-bottom: 20px;
  color: #fff;
}

.form-block .heading h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 5px;
}

.form-block .heading p {
  margin-bottom: 0;
  letter-spacing: 0.01em;
  font-weight: 300;
  font-size: 14px;
}

.form-block .steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 30px;
}

.form-block .steps .step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form-block .steps .step .circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #fff;
  margin: 0 20px;
}

.form-block .steps .step.active .circle,
.form-block .steps .step.finish .circle {
  background-color: #3E12E3;
  border-color: #3E12E3;
}

#contactForm .form-group {
  margin-bottom: 20px;
}

#contactForm .form-group .form-control {
  border-radius: 42px;
  padding: 18px 16px 18px 20px;
  -webkit-box-shadow: 0 2px 0 0 #b1b1b1;
          box-shadow: 0 2px 0 0 #b1b1b1;
  background: #f4f4f4;
}

#contactForm .form-group #comment {
  height: 62px;
}

#contactForm .form-check {
  margin-bottom: 0;
  padding-top: 10px;
}

#contactForm .form-check .form-check-label {
  font-weight: 500;
  font-size: 8px;
  color: #80848d;
}

#contactForm button {
  width: 100%;
}

#first-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

#first-section .first-section {
  min-height: 700px;
  position: relative;f
  z-index: 1;
  padding-top: 135px;
  padding-bottom: 80px;
}

#first-section .first-section .first-section-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#first-section .first-section .first-section-wrap .content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  color: #fff;
}

#first-section .first-section .first-section-wrap .content h1 {
  font-weight: 700;
  font-size: 88px;
  line-height: 106%;
  text-transform: uppercase;
  margin-bottom: 12px;
}

#first-section .first-section .first-section-wrap .content h1 span {
  white-space: nowrap;
}

#first-section .first-section .first-section-wrap .content h1 span:nth-child(1) {
  padding-left: 125px;
}

#first-section .first-section .first-section-wrap .content h1 span:nth-child(3) {
  padding-left: 260px;
}

#first-section .first-section .first-section-wrap .content p {
  margin-left: 260px;
  width: 365px;
  font-weight: 600;
  text-transform: uppercase;
}

#first-section .first-section .first-section-wrap .content .services-link a {
  position: absolute;
  left: 0;
  bottom: -62px;
  width: 202px;
  height: 202px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #3E12E3;
  color: #fff;
}

#first-section .first-section .first-section-wrap .content .services-link a svg {
  margin-bottom: 16px;
}

#first-section .first-section .first-section-wrap .content .services-link a span {
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  max-width: 100px;
}

#partners {
  padding: 50px 0;
  border-bottom: 1px solid #80848D;
}

#partners .partners {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
}

#services {
  padding: 80px 0;
}

#services .services .section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 60px;
}

#services .services .section-title svg {
  margin-right: 12px;
}

#services .services .section-title h2 {
  font-weight: 600;
  font-size: 24px;
  text-transform: uppercase;
  color: #80848d;
  margin-bottom: 0;
}

#services .services .services-list .service {
  margin-bottom: 50px;
}

#services .services .services-list .service:last-child {
  margin-bottom: 0;
}

#services .services .services-list .service .content {
  padding-left: 100px;
  position: relative;
}

#services .services .services-list .service .content .numeric {
  position: absolute;
  top: 0;
  left: 0px;
  color: #80848d;
  font-weight: 700;
  font-size: 42px;
  text-transform: capitalize;
  line-height: 1;
}

#services .services .services-list .service .content .title {
  margin-bottom: 16px;
}

#services .services .services-list .service .content .title a {
  font-weight: 700;
  font-size: 46px;
  line-height: 106%;
  letter-spacing: -0.04em;
  text-transform: capitalize;
}

#services .services .services-list .service .content .tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 16px;
}

#services .services .services-list .service .content .tags .tag {
  border: 1px solid #80848d;
  border-radius: 53px;
  padding: 8px 20px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: #3E12E3;
  margin-right: 10px;
}

#services .services .services-list .service .content .tags .tag:last-child {
  margin-right: 0;
}

#services .services .services-list .service .content .short-desc {
  font-weight: 300;
  font-size: 16px;
  margin-bottom: 16px;
  -webkit-line-clamp: 2;
  /* Число отображаемых строк */
  display: -webkit-box;
  /* Включаем флексбоксы */
  -webkit-box-orient: vertical;
  /* Вертикальная ориентация */
  overflow: hidden;
}

#services .services .services-list .service .content .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#services .services .services-list .service .content .buttons .site-btn {
  margin-right: 24px;
}

#services .services .services-list .service .content .buttons .learn-more {
  font-weight: 600;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#services .services .services-list .service .content .buttons .learn-more span {
  margin-left: 24px;
  width: 24px;
  height: 24px;
  border-radius: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 0.5px solid #3E12E3;
}

#steps-to-book {
  padding: 80px 0;
  background-color: #ebebeb;
  margin: 0 20px;
  border-radius: 32px;
}

#steps-to-book .steps-to-book .section-title h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#steps-to-book .steps-to-book .section-title h2 span:nth-child(2) {
  padding-left: 135px;
}

#steps-to-book .steps-to-book .section-title p {
  max-width: 400px;
  margin: 0 auto;
}

#steps-to-book .steps-to-book .step-section-wrap {
  border-top: 1px solid #80848d;
}

#steps-to-book .steps-to-book .step-section-wrap .left-block {
  padding: 60px 40px 30px 0;
  position: sticky;
  top: 60px;
}

#steps-to-book .steps-to-book .step-section-wrap .left-block h2 {
  font-weight: 300;
  font-size: 24px;
  margin-bottom: 5px;
}

#steps-to-book .steps-to-book .step-section-wrap .left-block p {
  font-weight: 500;
  font-size: 14px;
  color: #80848d;
}

#steps-to-book .steps-to-book .step-section-wrap .left-block .button .site-btn {
  width: 100%;
}

#steps-to-book .steps-to-book .step-section-wrap .step-list {
  border-left: 1px solid #80848d;
  padding: 60px 0 0 40px;
}

#steps-to-book .steps-to-book .step-section-wrap .step-list .step {
  margin-bottom: 60px;
}

#steps-to-book .steps-to-book .step-section-wrap .step-list .step:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

#steps-to-book .steps-to-book .step-section-wrap .step-list .step .thumb {
  padding-right: 20px;
}

#steps-to-book .steps-to-book .step-section-wrap .step-list .step .thumb img {
  border-radius: 18px;
  width: 100%;
}

#steps-to-book .steps-to-book .step-section-wrap .step-list .step .content .title {
  font-weight: 700;
  font-size: 38px;
  line-height: 106%;
  text-transform: capitalize;
  margin-bottom: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#steps-to-book .steps-to-book .step-section-wrap .step-list .step .content .title .numeric {
  font-weight: 700;
  font-size: 22px;
  line-height: 106%;
  text-transform: uppercase;
  color: #3E12E3;
  margin-right: 12px;
}

#steps-to-book .steps-to-book .step-section-wrap .step-list .step .content .desc {
  font-weight: 300;
}

#why-choose {
  padding: 80px 0;
}

#why-choose .why-choose .section-title {
  max-width: 710px;
}

#why-choose .why-choose .section-title .ico {
  position: absolute;
  top: 48px;
  right: 187px;
}

#why-choose .why-choose .section-title .ico::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 2px;
  width: 100px;
  height: 36px;
  background-color: #fff;
  z-index: 0;
}

#why-choose .why-choose .section-title .ico img {
  position: relative;
  z-index: 1;
}

#why-choose .why-choose .section-title p {
  font-weight: 500;
}

#why-choose .why-choose .why-choose-wrap {
  border-top: 1px solid #80848d;
  padding-top: 60px;
}

#why-choose .why-choose .why-choose-wrap .why-choose-blocks .why-choose-block {
  margin-bottom: 40px;
  padding-top: 16px;
  border-top: 1px solid #3E12E3;
  max-width: 270px;
}

#why-choose .why-choose .why-choose-wrap .why-choose-blocks .why-choose-block .about-link {
  width: 187px;
  height: 187px;
  border-radius: 50%;
  border: 1px solid #3E12E3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: -1px auto 0;
}

#why-choose .why-choose .why-choose-wrap .why-choose-blocks .why-choose-block .about-link svg {
  margin-bottom: 20px;
}

#why-choose .why-choose .why-choose-wrap .why-choose-blocks .why-choose-block .about-link span {
  font-weight: 600;
  font-size: 18px;
  color: #3E12E3;
  text-align: center;
}

#why-choose .why-choose .why-choose-wrap .why-choose-blocks .why-choose-block .title {
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

#why-choose .why-choose .why-choose-wrap .why-choose-blocks .why-choose-block .desc {
  font-weight: 400;
  font-size: 14px;
  color: #80848d;
}

#raiting {
  padding: 80px 0;
}

#raiting .raiting .section-title h2 {
  margin-bottom: 0;
}

#raiting .raiting .raiting-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#raiting .raiting .raiting-wrap .raiting-block {
  max-width: 25%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  border-top: 1px solid #80848d;
  border-right: 1px solid #80848d;
}

#raiting .raiting .raiting-wrap .raiting-block:last-child {
  border-right: none;
}

#raiting .raiting .raiting-wrap .raiting-block .content .stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#raiting .raiting .raiting-wrap .raiting-block .content .stars .star {
  color: #3E12E3;
  padding: 0 3px;
}

#raiting .raiting .raiting-wrap .raiting-block .content .stars .star:first-child {
  padding-left: 0;
}

#raiting .raiting .raiting-wrap .raiting-block .content .stars .star:last-child {
  padding-right: 0;
}

#raiting .raiting .raiting-wrap .raiting-block .content span {
  font-weight: 300;
  font-size: 12px;
}

#faqs {
  padding: 80px 0;
  background-color: #ebebeb;
  margin: 0 20px;
  border-radius: 32px;
}

#faqs .faqs .section-title {
  max-width: 510px;
}

#faqs .faqs .section-title h2 {
  font-weight: 700;
  font-size: 55px;
  line-height: 106%;
  margin-bottom: 0;
}

#faqs .faqs .faqs-wrap {
  border-top: 1px solid #80848d;
}

#faqs .faqs .faqs-wrap .left-side-wrap .left-side {
  padding: 60px 0 0 0;
}

#faqs .faqs .faqs-wrap .left-side-wrap .left-side .accordion-items-list {
  padding: 0;
  margin: 0;
  list-style: none;
  font-weight: 600;
}

#faqs .faqs .faqs-wrap .left-side-wrap .left-side .accordion-items-list li {
  font-size: 16px;
  text-transform: capitalize;
  margin-bottom: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

#faqs .faqs .faqs-wrap .left-side-wrap .left-side .accordion-items-list li:hover {
  color: #3E12E3;
}

#faqs .faqs .faqs-wrap .left-side-wrap .left-side .accordion-items-list li.active {
  padding-left: 16px;
  border-left: 2px solid #3E12E3;
  color: #3E12E3;
}

#faqs .faqs .faqs-wrap .right-side {
  padding: 60px 0 0 40px;
  border-left: 1px solid #80848d;
}

#faqs .faqs .faqs-wrap .right-side .accordion {
  border-radius: 0;
}

#faqs .faqs .faqs-wrap .right-side .accordion .accordion-item {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid transparent;
}

#faqs .faqs .faqs-wrap .right-side .accordion .accordion-item.active {
  border-color: #80848d;
}

#faqs .faqs .faqs-wrap .right-side .accordion .accordion-item.active .accordion-item-header {
  border-bottom-color: #3E12E3;
}

#faqs .faqs .faqs-wrap .right-side .accordion .accordion-item:first-child .accordion-item-header {
  padding-top: 0;
}

#faqs .faqs .faqs-wrap .right-side .accordion .accordion-item:last-child {
  margin-bottom: 0;
}

#faqs .faqs .faqs-wrap .right-side .accordion .accordion-item:last-child .accordion-item-header {
  padding-bottom: 0;
  border-bottom: none;
}

#faqs .faqs .faqs-wrap .right-side .accordion .accordion-item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #2F2F2F;
  padding: 20px 100px 20px 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  border-bottom: 1px solid #80848d;
}

#faqs .faqs .faqs-wrap .right-side .accordion .accordion-item-header.active {
  color: #3E12E3;
}

#faqs .faqs .faqs-wrap .right-side .accordion .accordion-item-header::after {
  content: url("data:image/svg+xml;charset=utf8,<svg xmlns='http://www.w3.org/2000/svg' width='17' height='17' viewBox='0 0 17 17'><path d='M0.383057 8.70676L7.80782 16.1315L8.51492 16.8386L9.22203 16.1315L16.6466 8.70691L15.2324 7.29269L9.51465 13.0105V0.575195H7.51465V13.0099L1.79727 7.29255L0.383057 8.70676Z' fill='%23141414'/></svg>");
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 16px;
  position: absolute;
  right: 16px;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #3E12E3;
  line-height: 1;
}

#faqs .faqs .faqs-wrap .right-side .accordion .accordion-item-header.active::after {
  content: url("data:image/svg+xml;charset=utf8,<svg xmlns='http://www.w3.org/2000/svg' width='17' height='17' viewBox='0 0 17 17'><path d='M0.383057 8.70676L7.80782 16.1315L8.51492 16.8386L9.22203 16.1315L16.6466 8.70691L15.2324 7.29269L9.51465 13.0105V0.575195H7.51465V13.0099L1.79727 7.29255L0.383057 8.70676Z' fill='%23FFF'/></svg>");
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  background-color: #3E12E3;
}

#faqs .faqs .faqs-wrap .right-side .accordion .accordion-item-body {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.2s ease-out;
  transition: max-height 0.2s ease-out;
}

#faqs .faqs .faqs-wrap .right-side .accordion .accordion-item-body-content {
  padding: 20px 0;
}

#blog {
  padding: 80px 0;
}

#blog .blog .section-title h2 {
  margin-bottom: 0;
}

#blog .blog .blog-item .thumb {
  margin-bottom: 20px;
}

#blog .blog .blog-item .thumb img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}

#blog .blog .blog-item .content .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 5px;
}

#blog .blog .blog-item .content .title a {
  font-weight: 800;
  font-size: 28px;
  text-transform: uppercase;
}

#blog .blog .blog-item .content .short-desc {
  font-weight: 300;
  font-size: 16px;
  color: #80848d;
  -webkit-line-clamp: 2;
  /* Число отображаемых строк */
  display: -webkit-box;
  /* Включаем флексбоксы */
  -webkit-box-orient: vertical;
  /* Вертикальная ориентация */
  overflow: hidden;
}

#callback-section {
  padding: 80px 0 0;
  background-color: #ebebeb;
  margin: 0 20px;
  border-radius: 32px;
  border-bottom: 4px solid #3E12E3;
  border-radius: 32px;
}

#callback-section .callback-section .content .head-side {
  padding-right: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}

#callback-section .callback-section .content .head-side span {
  margin-right: 35px;
}

#callback-section .callback-section .content .head-side h5 {
  font-weight: 700;
  font-size: 16px;
}

#callback-section .callback-section .content .thumb {
  padding-left: 100px;
}

#callback-section .callback-section .section-title {
  max-width: 430px;
  margin-bottom: 40px;
}

#callback-section .callback-section .section-title h2 {
  font-weight: 700;
  font-size: 55px;
  line-height: 90%;
  margin-bottom: 0;
}

#page #about-us-page #first-section .first-section .first-section-wrap .content {
  padding-left: 80px;
}

#page #about-us-page #first-section .first-section .first-section-wrap .content p {
  margin-left: 0;
  max-width: 450px;
  width: 100%;
  margin-bottom: 0;
}

#page #about-us-page #why-choose .why-choose .why-choose-wrap .why-choose-blocks .why-choose-big-block {
  margin-bottom: 40px;
}

#page #about-us-page #why-choose .why-choose .why-choose-wrap .why-choose-blocks .why-choose-big-block .services-link {
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #3E12E3;
  margin-right: 80px;
  margin-bottom: 10px;
  margin-top: 18px;
}

#page #about-us-page #why-choose .why-choose .why-choose-wrap .why-choose-blocks .why-choose-big-block .services-link span {
  font-weight: 600;
  margin-right: 79px;
}

#page #about-us-page #why-choose .why-choose .why-choose-wrap .why-choose-blocks .why-choose-big-block .content {
  font-weight: 500;
  font-size: 24px;
  text-transform: uppercase;
}

#page #how-it-works-page #first-section .first-section .first-section-wrap {
  display: initial;
}

#page #how-it-works-page #first-section .first-section .first-section-wrap .content h1 {
  margin-bottom: 127px;
}

#page #how-it-works-page #first-section .first-section .first-section-wrap .content p {
  margin-left: 0;
  max-width: 100%;
  color: #80848d;
  font-weight: 500;
  position: relative;
  margin-bottom: 0;
}

#page #how-it-works-page #first-section .first-section .first-section-wrap .content p::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  background-color: #80848d;
}

#page #how-it-works-page #first-section .first-section .first-section-wrap .content .navigation .navigation-wrap .navigation-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

#page #how-it-works-page #first-section .first-section .first-section-wrap .content .navigation .navigation-wrap .navigation-block ul::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #80848d;
}

#page #how-it-works-page #first-section .first-section .first-section-wrap .content .navigation .navigation-wrap .navigation-block ul li {
  margin-bottom: 16px;
}

#page #how-it-works-page #first-section .first-section .first-section-wrap .content .navigation .navigation-wrap .navigation-block ul li:last-child {
  margin-bottom: 0;
}

#page #how-it-works-page #first-section .first-section .first-section-wrap .content .navigation .navigation-wrap .navigation-block ul li .numeric {
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  color: #80848d;
  margin-right: 12px;
}

#page #how-it-works-page #first-section .first-section .first-section-wrap .content .navigation .navigation-wrap .navigation-block ul li a {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-transform: capitalize;
}

#page #how-it-works-page #how-it-works-blocks .how-it-works-blocks .how-it-works-block {
  border-bottom: 1px solid #80848D;
  padding: 80px 0;
}

#page #how-it-works-page #how-it-works-blocks .how-it-works-blocks .how-it-works-block:last-child {
  margin-bottom: 0;
}

#page #how-it-works-page #how-it-works-blocks .how-it-works-blocks .how-it-works-block .left-side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#page #how-it-works-page #how-it-works-blocks .how-it-works-blocks .how-it-works-block .left-side .main-content .heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#page #how-it-works-page #how-it-works-blocks .how-it-works-blocks .how-it-works-block .left-side .main-content .heading .numeric {
  font-weight: 700;
  font-size: 32px;
  color: #80848d;
  text-transform: uppercase;
  margin-right: 57px;
}

#page #how-it-works-page #how-it-works-blocks .how-it-works-blocks .how-it-works-block .left-side .main-content .heading .title {
  margin-bottom: 40px;
}

#page #how-it-works-page #how-it-works-blocks .how-it-works-blocks .how-it-works-block .left-side .main-content .heading .title h2 {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 55px;
  line-height: 106%;
}

#page #how-it-works-page #how-it-works-blocks .how-it-works-blocks .how-it-works-block .left-side .main-content .thumb {
  border-radius: 16px;
  padding-left: 110px;
}

#page #how-it-works-page #how-it-works-blocks .how-it-works-blocks .how-it-works-block .right-side .content .text-content-wrap .text-content .description {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 60px;
}

#page #how-it-works-page #how-it-works-blocks .how-it-works-blocks .how-it-works-block .right-side .content .text-content-wrap .text-content .results {
  margin-top: auto;
}

#page #how-it-works-page #how-it-works-blocks .how-it-works-blocks .how-it-works-block .right-side .content .text-content-wrap .text-content .results h4 {
  font-weight: 700;
  font-size: 24px;
  line-height: 106%;
  text-transform: uppercase;
  color: #80848d;
  margin-bottom: 20px;
}

#page #how-it-works-page #how-it-works-blocks .how-it-works-blocks .how-it-works-block .right-side .content .text-content-wrap .text-content .results p {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 21px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#page #how-it-works-page #how-it-works-blocks .how-it-works-blocks .how-it-works-block .right-side .content .text-content-wrap .text-content .results p i {
  margin-right: 12px;
  color: #3E12E3;
  font-size: 22px;
}

#page #how-it-works-page #how-it-works-blocks .how-it-works-blocks .how-it-works-block .right-side .content .buttons {
  padding-left: 140px;
}

#page #how-it-works-page #how-it-works-blocks .how-it-works-blocks .how-it-works-block .right-side .content .buttons h4 {
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  color: #80848d;
  margin-bottom: 20px;
}

#page #how-it-works-page #how-it-works-blocks .how-it-works-blocks .how-it-works-block .right-side .content .buttons .site-btn {
  background: #141414;
  margin-bottom: 60px;
  font-weight: 400;
}

#page #how-it-works-page #how-it-works-blocks .how-it-works-blocks .how-it-works-block .right-side .content .buttons .site-btn:hover {
  background-color: #141414;
  color: #fff;
}

#page #how-it-works-page #how-it-works-blocks .how-it-works-blocks .how-it-works-block .right-side .content .buttons .site-btn svg {
  margin-right: 14px;
  margin-left: 0;
}

#page #how-it-works-page #how-it-works-blocks .how-it-works-blocks .how-it-works-block .right-side .content .buttons a.site-btn {
  background-color: #3E12E3;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 0px;
}

#page #faqs-page #first-section .first-section .content span:first-child {
  padding-left: 0;
}

#page #faqs-page #first-section .first-section .content span:last-child {
  padding-left: 0;
}

#page #faqs-page #first-section .first-section .content p {
  margin-left: 0;
  width: 560px;
}

#page #faqs-page #faqs {
  background-color: #fff;
}

#page #blog-page #first-section .first-section .first-section-wrap {
  display: initial;
}

#page #blog-page #first-section .first-section .first-section-wrap .content .head-content {
  margin-bottom: 127px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#page #blog-page #first-section .first-section .first-section-wrap .content .head-content p {
  width: 555px;
  margin-left: 50px;
  margin-bottom: 0;
}

#page #blog-page #first-section .first-section .first-section-wrap .content .navigation .navigation-wrap .navigation-block p {
  margin-left: 0;
  max-width: 100%;
  color: #80848d;
  font-weight: 500;
  position: relative;
  margin-bottom: 0;
}

#page #blog-page #first-section .first-section .first-section-wrap .content .navigation .navigation-wrap .navigation-block p::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  background-color: #80848d;
}

#page #blog-page #first-section .first-section .first-section-wrap .content .navigation .navigation-wrap .navigation-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

#page #blog-page #first-section .first-section .first-section-wrap .content .navigation .navigation-wrap .navigation-block ul::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #80848d;
}

#page #blog-page #first-section .first-section .first-section-wrap .content .navigation .navigation-wrap .navigation-block ul li {
  margin-bottom: 16px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-transform: capitalize;
}

#page #blog-page #first-section .first-section .first-section-wrap .content .navigation .navigation-wrap .navigation-block ul li:last-child {
  margin-bottom: 0;
}

#page #blog-page #first-section .first-section .first-section-wrap .content .navigation .navigation-wrap .navigation-block ul li .numeric {
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  color: #80848d;
  margin-right: 12px;
}

#page #blog-page #blog .blog .blog-item {
  margin-bottom: 40px;
}

#page #blog-page .blog-item-page {
  padding-top: 160px;
}

#page #blog-page .blog-item-page .contact-form-side .buttons {
  margin-bottom: 162px;
}

#page #blog-page .blog-item-page .contact-form-side .buttons a {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 6px;
}

#page #blog-page .blog-item-page .contact-form-side .buttons a:first-child {
  border: 1px solid #141414;
  margin-right: 12px;
}

#page #blog-page .blog-item-page .contact-form-side .buttons a:first-child i {
  margin-right: 10px;
}

#page #blog-page .blog-item-page .contact-form-side .buttons a:nth-child(2) {
  background-color: #3E12E3;
  color: #fff;
}

#page #blog-page .blog-item-page .contact-form-side .buttons a:nth-child(2) i {
  margin-left: 10px;
}

#page #blog-page .blog-item-page .contact-form-side .form-block {
  background-color: transparent;
}

#page #blog-page .blog-item-page .contact-form-side .form-block .steps {
  margin-bottom: 20px;
}

#page #blog-page .blog-item-page .contact-form-side .form-block .steps .step .circle {
  border-color: #80848d;
}

#page #blog-page .blog-item-page .contact-form-side .form-block .heading {
  color: #141414;
}

#page #blog-page .blog-item-page .blog-content .title {
  margin-bottom: 80px;
}

#page #blog-page .blog-item-page .blog-content .title h1 {
  font-weight: 700;
  font-size: 56px;
  line-height: 106%;
  text-transform: uppercase;
}

#page #blog-page .blog-item-page .blog-content .thumb {
  margin-bottom: 80px;
}

#page #blog-page .blog-item-page .blog-content .thumb img {
  width: 100%;
  border-radius: 10px;
}

#page #blog-page .blog-item-page .blog-content .description {
  font-weight: 400;
  padding-bottom: 40px;
  border-bottom: 1px solid #80848d;
  margin-bottom: 30px;
}

#page #blog-page .blog-item-page .blog-content .description h2,
#page #blog-page .blog-item-page .blog-content .description h3,
#page #blog-page .blog-item-page .blog-content .description h4,
#page #blog-page .blog-item-page .blog-content .description h5,
#page #blog-page .blog-item-page .blog-content .description h6 {
  margin-bottom: 30px;
  font-weight: 600;
}

#page #blog-page .blog-item-page .blog-content .description h3 {
  font-size: 24px;
}

#page #blog-page .blog-item-page .blog-content .description p {
  margin-bottom: 30px;
}

#page #blog-page .blog-item-page .blog-content .description p:last-child {
  margin-bottom: 0;
}

#page #blog-page .blog-item-page .blog-content .share-block {
  background-color: #3E12E3;
  border-radius: 10px;
  padding: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#page #blog-page .blog-item-page .blog-content .share-block span {
  font-weight: 300;
  font-size: 18px;
  color: #fff;
  letter-spacing: 1.5px;
}

#page #blog-page .blog-item-page .blog-content .share-block .share-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#page #blog-page .blog-item-page .blog-content .share-block .share-links a {
  width: 36px;
  height: 36px;
  border-radius: 50px;
  border: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  color: #fff;
  margin-left: 10px;
}

#page #blog-page .blog-item-page .blog-content .share-block .share-links a:first-child {
  margin-left: 0;
}

#page #blog-page #blog .blog .section-title h2 {
  font-size: 56px;
}

#page #contact-page #first-section {
  background-size: contain;
  background-position: right;
}

#page #contact-page #first-section .first-section {
  height: 454px;
}

#page #contact-page #first-section .first-section .content {
  color: #141414;
}

#page #contact-page #first-section .first-section .content h1 {
  text-transform: capitalize;
}

#page #contact-page #first-section .first-section .content p {
  margin-left: 0;
  width: 660px;
  font-weight: 400;
}

#page #contact-page .contact-page {
  border-top: 1px solid #80848d;
  padding-bottom: 80px;
}

#page #contact-page .contact-page #raiting {
  padding: 0 0;
}

#page #contact-page .contact-page #raiting .raiting {
  padding: 60px 0 0;
  border-right: 1px solid #80848d;
}

#page #contact-page .contact-page #raiting .raiting .section-title {
  display: none;
}

#page #contact-page .contact-page #raiting .raiting .raiting-wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#page #contact-page .contact-page #raiting .raiting .raiting-wrap .raiting-block {
  max-width: 100%;
  border-right: none;
}

#page #contact-page .contact-page #raiting .raiting .raiting-wrap .raiting-block:first-child {
  border-top: none;
}

#page #contact-page .contact-page .contact-form-section {
  padding-top: 60px;
  padding-left: 60px;
}

#page #contact-page .contact-page .contact-form-section .section-title h2 {
  font-size: 56px;
}

#page #contact-page #map {
  padding-top: 80px;
}

#page #contact-page #map .map-section .contacts-row-wrap .contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #141414;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  border-radius: 32px 0 0 32px;
  position: relative;
}

#page #contact-page #map .map-section .contacts-row-wrap .contacts::after {
  content: "";
  position: absolute;
  right: -24px;
  top: 0;
  bottom: 0;
  width: 30px;
  background-color: #141414;
  z-index: 0;
}

#page #contact-page #map .map-section .contacts-row-wrap .contacts .contacts-blocks-wrap {
  color: #fff;
  max-width: 450px;
  padding: 55px 55px 55px 15px;
}

#page #contact-page #map .map-section .contacts-row-wrap .contacts .contacts-blocks-wrap .contact-block {
  margin-bottom: 24px;
}

#page #contact-page #map .map-section .contacts-row-wrap .contacts .contacts-blocks-wrap .contact-block .title {
  font-weight: 800;
  font-size: 56px;
  line-height: 100%;
  text-transform: capitalize;
  margin-bottom: 12px;
}

#page #contact-page #map .map-section .contacts-row-wrap .contacts .contacts-blocks-wrap .contact-block .desc {
  font-weight: 400;
  font-size: 14px;
  color: #80848d;
}

#page #contact-page #map .map-section .contacts-row-wrap .contacts .contacts-blocks-wrap .contact-block:nth-child(2) p:first-child {
  margin-bottom: 0;
}

#page #contact-page #map .map-section .contacts-row-wrap .contacts .contacts-blocks-wrap .contact-block:nth-child(2) p a {
  color: #80848d;
}

#page #contact-page #map .map-section .contacts-row-wrap .contacts .contacts-blocks-wrap .contact-block .social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#page #contact-page #map .map-section .contacts-row-wrap .contacts .contacts-blocks-wrap .contact-block .social-links a {
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #3E12E3;
  margin-right: 12px;
}

#page #contact-page #map .map-section .contacts-row-wrap .contacts .contacts-blocks-wrap .contact-block .social-links a:last-child {
  margin-right: 0;
}

#page #contact-page #map .map-section .map {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

#page #contact-page #map .map-section .map iframe {
  width: 100%;
  height: 100%;
  border-radius: 0 32px 32px 0;
}

#page #contact-page #map .map-section .map iframe:focus {
  border: none;
}

#page #quote-page .form-block {
  margin: 0 auto;
}

#page #service-page .services-header .first-section-wrap .content p {
  margin-left: 0;
  width: 600px;
}

#page #service-page.car-transport-service #partners {
  border-bottom: none;
}

#page #service-page.car-transport-service .services-steps-to-book .section-title h2 {
  font-size: 56px;
}

#page #service-page.car-transport-service .services-steps-to-book .section-title p {
  max-width: 430px;
}

#page #service-page.car-transport-service #pre-why-choose {
  padding-top: 80px;
}

#page #service-page.car-transport-service #pre-why-choose .pre-why-choose .section-title h2 {
  font-size: 56px;
}

#page #service-page.car-transport-service #pre-why-choose .pre-why-choose .section-title p {
  font-weight: 500;
  max-width: 770px;
}

#page #service-page.car-transport-service #why-choose {
  padding-top: 0;
}

#page #service-page.car-transport-service #why-choose .why-choose .section-title {
  display: none;
}

#page #service-page.car-transport-service #why-choose .why-choose .why-choose-wrap {
  padding-top: 0;
  border-top: none;
}

#page #service-page.open-transport-car-shipping #steps-to-book-wrap #steps-to-book:nth-child(1) {
  background-color: #fff;
}

#page #service-page.open-transport-car-shipping #steps-to-book-wrap #steps-to-book:nth-child(1) .steps-to-book .section-title h2 {
  font-size: 56px;
  margin-bottom: 0;
}

#page #service-page.open-transport-car-shipping #steps-to-book-wrap #steps-to-book:nth-child(1) .steps-to-book .step-section-wrap .step-list .step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}

#page #service-page.open-transport-car-shipping #steps-to-book-wrap #steps-to-book:nth-child(1) .steps-to-book .step-section-wrap .step-list .step .ico {
  width: 28px;
  height: 28px;
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  color: #fff;
  background-color: #3E12E3;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 20px;
  margin-top: 10px;
}

#page #service-page.open-transport-car-shipping #steps-to-book-wrap #steps-to-book:nth-child(1) .steps-to-book .step-section-wrap .step-list .step .ico.red {
  background-color: #ff3529;
}

#page #service-page.open-transport-car-shipping #steps-to-book-wrap #steps-to-book:nth-child(1) .steps-to-book .step-section-wrap .step-list .step .content .title {
  font-size: 24px;
}

#page #service-page.open-transport-car-shipping #steps-to-book-wrap #steps-to-book:nth-child(2) .steps-to-book .section-title h2 {
  font-size: 56px;
}

#page #service-page.open-transport-car-shipping #steps-to-book-wrap #steps-to-book:nth-child(2) .steps-to-book .step-section-wrap .left-block .section-title {
  display: none;
}

#page #service-page.open-transport-car-shipping #steps-to-book-wrap #steps-to-book:nth-child(3) {
  background-color: #fff;
}

#page #service-page.open-transport-car-shipping #why-choose {
  padding-bottom: 0;
}

#page #service-page.open-transport-car-shipping #why-choose .why-choose .why-choose-wrap {
  padding: 0;
  border-top: 0;
}

#page #service-page.motorcycle-shipping #partners {
  border-bottom: none;
}

#page #service-page.motorcycle-shipping #motorcycle-shipping-block {
  padding-top: 80px;
  border-radius: 32px;
  background: #f0f0f0;
  margin: 0 20px;
}

#page #service-page.motorcycle-shipping #motorcycle-shipping-block .motorcycle-shipping-block .section-title h2 {
  font-size: 56px;
  margin-bottom: 0;
}

#page #service-page.motorcycle-shipping #motorcycle-shipping-block .motorcycle-shipping-block .motorcycle-shipping-block-wrap {
  border-top: 1px solid #80848d;
}

#page #service-page.motorcycle-shipping #motorcycle-shipping-block .motorcycle-shipping-block .motorcycle-shipping-block-wrap .left-side {
  padding-top: 60px;
  padding-right: 40px;
  font-weight: 500;
  font-size: 20px;
  text-transform: uppercase;
  color: #80848d;
}

#page #service-page.motorcycle-shipping #motorcycle-shipping-block .motorcycle-shipping-block .motorcycle-shipping-block-wrap .right-side {
  padding-top: 60px;
  border-left: 1px solid #80848d;
}

#page #service-page.motorcycle-shipping #motorcycle-shipping-block .motorcycle-shipping-block .motorcycle-shipping-block-wrap .right-side .ms-blocks .ms-block {
  margin-bottom: 80px;
  padding-left: 20px;
}

#page #service-page.motorcycle-shipping #motorcycle-shipping-block .motorcycle-shipping-block .motorcycle-shipping-block-wrap .right-side .ms-blocks .ms-block .title {
  font-weight: 700;
  font-size: 52px;
  line-height: 106%;
  text-transform: uppercase;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #3E12E3;
}

#page #service-page.motorcycle-shipping #motorcycle-shipping-block .motorcycle-shipping-block .motorcycle-shipping-block-wrap .right-side .ms-blocks .ms-block .desc {
  font-weight: 400;
  font-size: 14px;
}

#page #service-page.enclosed-car-shipping #partners {
  border-bottom: none;
}

#page #service-page.enclosed-car-shipping #steps-to-book-wrap #steps-to-book:nth-child(1) {
  background-color: #fff;
}

#page #service-page.enclosed-car-shipping #steps-to-book-wrap #steps-to-book:nth-child(1) .section-title h2 {
  font-size: 56px;
}

#page #service-page.enclosed-car-shipping #steps-to-book-wrap #steps-to-book:nth-child(1) .step-section-wrap .step-list .step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#page #service-page.enclosed-car-shipping #steps-to-book-wrap #steps-to-book:nth-child(1) .step-section-wrap .step-list .step .ico {
  width: 28px;
  height: 28px;
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  color: #fff;
  background-color: #3E12E3;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 20px;
  margin-top: 10px;
}

#page #service-page.enclosed-car-shipping #steps-to-book-wrap #steps-to-book:nth-child(1) .step-section-wrap .step-list .step .ico.red {
  background-color: #ff3529;
}

#page #service-page.enclosed-car-shipping #steps-to-book-wrap #steps-to-book:nth-child(1) .step-section-wrap .step-list .step .content .title {
  font-size: 24px;
}

#page #service-page.enclosed-car-shipping #steps-to-book-wrap #steps-to-book:nth-child(2) .steps-to-book .section-title h2 {
  font-size: 56px;
}

#page #service-page.enclosed-car-shipping #steps-to-book-wrap #steps-to-book:nth-child(2) #faqs {
  padding-top: 0;
  margin: 0 0;
}

#page #service-page.enclosed-car-shipping #steps-to-book-wrap #steps-to-book:nth-child(2) #faqs .faqs .faqs-wrap {
  border-top: none;
}

#page #service-page.enclosed-car-shipping #steps-to-book-wrap #steps-to-book:nth-child(2) #faqs .faqs .faqs-wrap .accordion .accordion-item .accordion-item-header {
  font-size: 32px;
}

#page #service-page.enclosed-car-shipping #steps-to-book-wrap #steps-to-book:nth-child(2) #faqs .faqs .faqs-wrap .accordion .accordion-item .accordion-item-body .accordion-item-body-content .enclosed-faqs-blocks .enclosed-faqs-block .title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

#page #service-page.enclosed-car-shipping #steps-to-book-wrap #steps-to-book:nth-child(2) #faqs .faqs .faqs-wrap .accordion .accordion-item .accordion-item-body .accordion-item-body-content .enclosed-faqs-blocks .enclosed-faqs-block .desc {
  font-weight: 300;
}

#page #service-page.enclosed-car-shipping #steps-to-book-wrap #steps-to-book:nth-child(2) #faqs .faqs .faqs-wrap .accordion .accordion-item:last-child .accordion-item-header {
  padding-bottom: 20px;
  border-bottom: 1px solid #80848d;
}

#page #service-page.door-to-door-auto-transport-service #steps-to-book-wrap #steps-to-book:nth-child(1) {
  background-color: #fff;
}

#page #service-page.door-to-door-auto-transport-service #steps-to-book-wrap #steps-to-book:nth-child(1) .steps-to-book .section-title h2 {
  font-size: 56px;
  margin-bottom: 0;
}

#page #service-page.door-to-door-auto-transport-service #steps-to-book-wrap #steps-to-book:nth-child(1) .steps-to-book .step-section-wrap .step-list .step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}

#page #service-page.door-to-door-auto-transport-service #steps-to-book-wrap #steps-to-book:nth-child(1) .steps-to-book .step-section-wrap .step-list .step .ico {
  width: 28px;
  height: 28px;
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  color: #fff;
  background-color: #3E12E3;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 20px;
  margin-top: 10px;
}

#page #service-page.door-to-door-auto-transport-service #steps-to-book-wrap #steps-to-book:nth-child(1) .steps-to-book .step-section-wrap .step-list .step .ico.red {
  background-color: #ff3529;
}

#page #service-page.door-to-door-auto-transport-service #steps-to-book-wrap #steps-to-book:nth-child(1) .steps-to-book .step-section-wrap .step-list .step .content .title {
  font-size: 24px;
  margin-bottom: 8px;
}

#page #service-page.door-to-door-auto-transport-service #steps-to-book-wrap #steps-to-book:nth-child(2) .steps-to-book .section-title h2 {
  font-size: 56px;
}

#page #service-page.door-to-door-auto-transport-service #steps-to-book-wrap #steps-to-book:nth-child(2) .steps-to-book .section-title p {
  max-width: 100%;
}

#page #service-page.door-to-door-auto-transport-service #steps-to-book-wrap #steps-to-book:nth-child(2) .steps-to-book .step-section-wrap .left-block .section-title {
  display: none;
}

#page #service-page.door-to-door-auto-transport-service #steps-to-book-wrap #steps-to-book:nth-child(2) .steps-to-book .step-section-wrap .left-block .thumb img {
  border-radius: 16px;
}

#page #service-page.door-to-door-auto-transport-service #steps-to-book-wrap #steps-to-book:nth-child(3) {
  background-color: #fff;
}

#page #service-page.door-to-door-auto-transport-service #why-choose {
  padding-bottom: 0;
  padding-top: 60px;
}

#page #service-page.door-to-door-auto-transport-service #why-choose .why-choose .why-choose-wrap {
  padding: 0;
  border-top: 0;
}

#page #service-page.expedited-car-shipping .expedited-shipping-block #steps-to-book .steps-to-book .section-title h2 {
  font-size: 56px;
}

#page #service-page.heavy-equipment-shipment #why-choose .why-choose .section-title .ico {
  top: initial;
  bottom: 0;
}

#page #service-page.heavy-equipment-shipment #why-choose .why-choose .why-choose-wrap .why-choose-blocks .why-choose-block {
  max-width: 100%;
}

#page #service-page.heavy-equipment-shipment #why-choose .why-choose .why-choose-wrap .why-choose-blocks .why-choose-block:last-child {
  margin-bottom: 0;
}

#page #service-page.heavy-equipment-shipment #steps-to-book .steps-to-book .section-title .section-title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#page #service-page.heavy-equipment-shipment #steps-to-book .steps-to-book .section-title .section-title-wrap h2 {
  font-size: 56px;
}

#page #service-page.heavy-equipment-shipment #steps-to-book .steps-to-book .section-title .section-title-wrap p {
  max-width: 435px;
}

#page #service-page.boat-shipping #steps-to-book-wrap #steps-to-book:first-child {
  background-color: #fff;
}

#page #service-page.boat-shipping #steps-to-book-wrap #steps-to-book:first-child .steps-to-book .section-title h2 {
  font-size: 56px;
}

#page #service-page.boat-shipping #steps-to-book-wrap #steps-to-book:first-child .steps-to-book .section-title p {
  max-width: 100%;
}

#page #terms-page #first-section .first-section {
    min-height: initial;
}

#page #terms-page #first-section .first-section h1 {
    margin-bottom: 0;
}

#page #terms-page #terms {
    padding: 80px 0;
}

#page #terms-page #terms .terms h4 {
    font-weight: bold;
}

#footer .footer .top-footer {
  padding: 80px 0;
}

#footer .footer .top-footer .top-footer-wrap .footer-links-wrap .footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

#footer .footer .top-footer .top-footer-wrap .footer-links-wrap .footer-links li {
  margin-bottom: 12px;
}

#footer .footer .top-footer .top-footer-wrap .footer-links-wrap .footer-links li a {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
}

#footer .footer .top-footer .top-footer-wrap .footer-links-wrap:nth-child(3) {
  padding-left: 75px;
}

#footer .footer .top-footer .top-footer-wrap .social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}

#footer .footer .top-footer .top-footer-wrap .social-links a {
  width: 32px;
  height: 32px;
  border: 1px solid #3E12E3;
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 12px;
}

#footer .footer .top-footer .top-footer-wrap .social-links a:last-child {
  margin-right: 0;
}

#footer .footer .top-footer .top-footer-wrap .content {
  font-size: 14px;
  font-weight: 400;
}

#footer .footer .top-footer .top-footer-wrap .content .footer-contacts p {
  margin-bottom: 0;
}

#footer .footer .bottom-footer {
  padding-bottom: 80px;
}

#footer .footer .bottom-footer .middle-side {
  text-align: center;
}

#footer .footer .bottom-footer .right-side {
  text-align: right;
}

#footer .footer .bottom-footer .right-side .bottom-footer-links span {
  margin: 0 12px;
}

@media (max-width: 1400px) {
  #page #how-it-works-page #how-it-works-blocks .how-it-works-blocks .how-it-works-block .right-side .content .buttons {
    padding-left: 40px;
  }
}

@media (max-width: 1399px) {
  #first-section .first-section .first-section-wrap .content h1 {
    font-size: 70px;
  }
}

@media (max-width: 1200px) {
  #faqs .faqs .faqs-wrap .right-side .accordion .accordion-item-header {
    font-size: 32px;
  }

  #page #blog-page #first-section .first-section .first-section-wrap .content .head-content p {
    margin-left: 0;
    width: 100%;
  }

  #page #service-page.motorcycle-shipping #motorcycle-shipping-block .motorcycle-shipping-block .motorcycle-shipping-block-wrap .right-side .ms-blocks .ms-block .title {
    font-size: 25px;
  }
}

@media (max-width: 1024px) {
  #first-section .first-section .first-section-wrap .content h1 span:nth-child(1) {
    padding-left: 0;
  }

  #first-section .first-section .first-section-wrap .content h1 span:nth-child(3) {
    padding-left: 0;
  }

  #first-section .first-section .first-section-wrap .content p {
    margin-left: 0;
  }

  #first-section .first-section .first-section-wrap .content .services-link {
    display: none;
  }

  #partners .partners {
    display: -webkit-box;
  }

  #partners .partners .partner {
    width: 66px;
    margin-right: 10px;
  }
}

@media (max-width: 991px) {
  .header::before {
    -webkit-box-shadow: none;
            box-shadow: none;
    background: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
  }

  .header .header__body {
    padding: 16px 0;
  }

  .header .header__body .header__logo img {
    width: 119px;
  }

  .header .header__body .header__burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    width: 32px;
    height: 32px;
    z-index: 3;
    border-radius: 4px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }

  .header .header__body .header__burger span {
    position: absolute;
  }

  .header .header__body .header__burger::before,
  .header .header__body .header__burger::after {
    content: "";
    background-color: #F8FAFC;
    position: absolute;
    width: 20px;
    height: 2px;
    margin: 0 auto;
    left: 0;
    right: 0;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }

  .header .header__body .header__burger::before {
    top: 11px;
  }

  .header .header__body .header__burger::after {
    bottom: 11px;
  }

  .header .header__body .header__menu {
    position: fixed;
    top: -100%;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #121A26;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    overflow: auto;
    padding: 80px 0 0px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .header .header__body .header__menu.active {
    top: 0;
    height: 100%;
  }

  .header .header__body .header__menu .header__list {
    display: block;
  }

  .header .header__body .header__menu .header__list li {
    margin: 0 10px;
    border-bottom: 1px solid #4F627D;
  }

  .header .header__body .header__menu .header__list li .header__link {
    color: #F8FAFC;
    font-size: 24px;
    padding: 16px 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .header .header__body .header__menu .header__list li .submenu {
    position: initial;
    background-color: transparent;
    padding: 0 0 16px;
  }

  .header .header__body .header__menu .header__list li .submenu li {
    border-bottom: none;
    margin-bottom: 5px;
  }

  .header .header__body .header__menu .header__list li .submenu li a {
    padding: 0 0;
    font-size: 18px;
  }

  .header .header__body .header__menu .mobile-social-links {
    display: block;
  }

  .header .header__body .buttons {
    display: none;
  }

  .section-title h2 {
    font-size: 50px;
  }

  .form-block {
    max-width: 100%;
    padding: 20px 15px;
  }

  .form-block #regForm .form-group .form-control {
    font-size: 14px;
  }

  .form-block .heading {
    margin-bottom: 14px;
  }

  .form-block .heading h2 {
    font-size: 18px;
  }

  .form-block .heading p {
    font-size: 12px;
  }

  .form-block .steps {
    margin-bottom: 16px;
  }

  #partners {
    padding: 30px 0;
  }

  #services {
    padding: 60px 0;
  }

  #services .services .services-list .service .content {
    padding-left: 60px;
  }

  #services .services .services-list .service .content .numeric {
    font-size: 26px;
  }

  #services .services .services-list .service .content .title a {
    font-size: 34px;
  }

  #steps-to-book {
    padding: 60px 0;
  }

  #steps-to-book .steps-to-book .step-section-wrap .left-block {
    padding: 60px 0 30px 0;
  }

  #steps-to-book .steps-to-book .step-section-wrap .step-list {
    padding: 60px 0 0 20px;
  }

  #steps-to-book .steps-to-book .step-section-wrap .step-list .step .content .title {
    font-size: 24px;
  }

  #why-choose {
    padding: 60px 0;
  }

  #why-choose .why-choose .section-title .ico {
    left: 217px;
    top: 24px;
    width: 75px;
  }

  #why-choose .why-choose .section-title .ico::before {
    width: 60px;
    height: 20px;
  }

  #why-choose .why-choose .why-choose-wrap .why-choose-blocks .why-choose-block-about-link {
    display: none;
  }

  #raiting {
    padding: 60px 0;
  }

  #raiting .raiting .raiting-wrap {
    border-bottom: 1px solid #80848d;
  }

  #raiting .raiting .raiting-wrap .raiting-block {
    max-width: 50%;
  }

  #raiting .raiting .raiting-wrap .raiting-block:last-child {
    border-right: 1px solid #80848d;
  }

  #faqs {
    padding: 60px 0;
  }

  #blog {
    padding: 60px 0;
  }

  #blog .blog .blog-item .content .title a {
    font-size: 24px;
  }

  #callback-section {
    padding: 60px 0;
  }

  #callback-section .callback-section .content .head-side {
    padding-right: 0;
  }

  #callback-section .callback-section .section-title h2 {
    font-size: 38px;
  }

  #page #about-us-page #why-choose .why-choose .why-choose-wrap .why-choose-blocks .why-choose-big-block .content {
    font-size: 16px;
  }

  #page #how-it-works-page #how-it-works-blocks .how-it-works-blocks .how-it-works-block .left-side .main-content .heading .numeric {
    margin-right: 20px;
  }

  #page #how-it-works-page #how-it-works-blocks .how-it-works-blocks .how-it-works-block .left-side .main-content .heading .title {
    margin-bottom: 16px;
  }

  #page #how-it-works-page #how-it-works-blocks .how-it-works-blocks .how-it-works-block .left-side .main-content .heading .title h2 {
    font-size: 32px;
  }

  #page #how-it-works-page #how-it-works-blocks .how-it-works-blocks .how-it-works-block .left-side .main-content .thumb {
    padding-left: 75px;
  }

  #page #faqs-page #first-section .first-section .content p {
    max-width: 100%;
  }

  #page #blog-page .blog-item-page .contact-form-side .buttons {
    margin-bottom: 30px;
  }

  #page #blog-page .blog-item-page .contact-form-side .form-block {
    display: none;
  }

  #page #service-page .services-header .first-section-wrap .content p {
    width: 100%;
  }

  #page #service-page.car-transport-service .services-steps-to-book .section-title h2 {
    font-size: 50px;
  }

  #page #service-page.car-transport-service #pre-why-choose .pre-why-choose .section-title h2 {
    font-size: 50px;
  }

  #page #service-page.open-transport-car-shipping #steps-to-book-wrap #steps-to-book:nth-child(1) .steps-to-book .section-title h2 {
    font-size: 50px;
  }

  #page #service-page.open-transport-car-shipping #steps-to-book-wrap #steps-to-book:nth-child(2) .steps-to-book .section-title h2 {
    font-size: 50px;
  }

  #page #service-page.motorcycle-shipping #motorcycle-shipping-block .motorcycle-shipping-block .section-title h2 {
    font-size: 50px;
  }

  #page #service-page.enclosed-car-shipping #steps-to-book-wrap #steps-to-book:nth-child(1) .section-title h2 {
    font-size: 50px;
  }

  #page #service-page.enclosed-car-shipping #steps-to-book-wrap #steps-to-book:nth-child(2) .steps-to-book .section-title h2 {
    font-size: 50px;
  }

  #page #service-page.enclosed-car-shipping #steps-to-book-wrap #steps-to-book:nth-child(2) #faqs .faqs .faqs-wrap .accordion .accordion-item .accordion-item-header {
    font-size: 24px;
  }

  #page #service-page.door-to-door-auto-transport-service #steps-to-book-wrap #steps-to-book:nth-child(1) .steps-to-book .section-title h2 {
    font-size: 50px;
  }

  #page #service-page.door-to-door-auto-transport-service #steps-to-book-wrap #steps-to-book:nth-child(2) .steps-to-book .section-title h2 {
    font-size: 50px;
  }

  #page #service-page.expedited-car-shipping .expedited-shipping-block #steps-to-book .steps-to-book .section-title h2 {
    font-size: 50px;
  }

  #page #service-page.heavy-equipment-shipment #steps-to-book .steps-to-book .section-title .section-title-wrap h2 {
    font-size: 50px;
  }

  #page #service-page.boat-shipping #steps-to-book-wrap #steps-to-book:first-child .steps-to-book .section-title h2 {
    font-size: 50px;
  }

  #footer .footer .bottom-footer {
    padding-bottom: 60px;
  }
}

@media (max-width: 991px) and (max-width: 767px) {
  #raiting .raiting .raiting-wrap {
    border-bottom: none;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
  }

  .section-title h2 {
    font-size: 38px;
  }

  .section-title p {
    font-size: 16px;
  }

  .form-block {
    border-radius: 12px 12px 12px 12px;
  }

  .form-block #regForm .form-group {
    margin-bottom: 10px;
  }

  #first-section .first-section {
    height: initial;
    padding-top: 100px;
    padding-bottom: 50px;
  }

  #first-section .first-section .first-section-wrap .content {
    margin-bottom: 40px;
  }

  #first-section .first-section .first-section-wrap .content h1 {
    font-size: 36px;
  }

  #first-section .first-section .first-section-wrap .content p {
    margin-bottom: 0;
  }

  #services .services .services-list .service .thumb {
    display: none;
  }

  #services .services .services-list .service .content {
    padding-left: 0;
  }

  #services .services .services-list .service .content .numeric {
    display: none;
  }

  #services .services .services-list .service .content .tags .tag {
    font-size: 10px;
    padding: 6px 9px;
  }

  #steps-to-book .steps-to-book .section-title h2 {
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
        -ms-flex-direction: initial;
            flex-direction: initial;
  }

  #steps-to-book .steps-to-book .section-title h2 span:nth-child(2) {
    padding-left: 10px;
  }

  #steps-to-book .steps-to-book .section-title p {
    max-width: 100%;
  }

  #steps-to-book .steps-to-book .step-section-wrap .left-block {
    display: none;
  }

  #steps-to-book .steps-to-book .step-section-wrap .step-list {
    border-left: none;
    padding: 30px 0 0 0;
  }

  #steps-to-book .steps-to-book .step-section-wrap .step-list .step {
    border-bottom: 1px solid #80848D;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }

  #steps-to-book .steps-to-book .step-section-wrap .step-list .step .thumb {
    padding-right: 0;
    margin-bottom: 20px;
  }

  #why-choose .why-choose .why-choose-wrap {
    padding-top: 0;
    border-top: none;
  }

  #why-choose .why-choose .why-choose-wrap .thumb {
    display: none;
  }

  #raiting .raiting .raiting-wrap .raiting-block {
    max-width: 100%;
    border-right: none;
  }

  #raiting .raiting .raiting-wrap .raiting-block:last-child {
    border-right: none;
  }

  #faqs .faqs .faqs-wrap .left-side-wrap {
    display: none;
  }

  #faqs .faqs .faqs-wrap .right-side {
    border-left: none;
    padding-left: 0;
  }

  #faqs .faqs .faqs-wrap .right-side .accordion .accordion-item-header {
    font-size: 24px;
  }

  #blog .blog .blog-item {
    border-bottom: 1px solid #80848d;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  #callback-section .callback-section .left-side {
    display: none;
  }

  #page #about-us-page #first-section .first-section .first-section-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  #page #about-us-page #first-section .first-section .first-section-wrap .content {
    padding-left: 0;
  }

  #page #about-us-page #why-choose .why-choose .section-title {
    margin-bottom: 0;
  }

  #page #about-us-page #why-choose .why-choose .why-choose-wrap {
    padding-top: 0;
    border-top: none;
  }

  #page #about-us-page #why-choose .why-choose .why-choose-wrap .why-choose-blocks .why-choose-big-block .services-link {
    display: none;
  }

  #page #how-it-works-page #first-section .first-section .first-section-wrap .content h1 {
    font-size: 56px;
  }

  #page #how-it-works-page #first-section .first-section .first-section-wrap .content .navigation .navigation-wrap:nth-child(2),
  #page #how-it-works-page #first-section .first-section .first-section-wrap .content .navigation .navigation-wrap:nth-child(3) {
    display: none;
  }

  #page #how-it-works-page #first-section .first-section .first-section-wrap .content .navigation .navigation-wrap .navigation-block p {
    color: #fff;
  }

  #page #how-it-works-page #how-it-works-blocks .how-it-works-blocks .how-it-works-block .left-side .main-content .thumb {
    padding-left: 0;
    margin-bottom: 24px;
  }

  #page #how-it-works-page #how-it-works-blocks .how-it-works-blocks .how-it-works-block .right-side .content .text-content-wrap .text-content .description {
    margin-bottom: 24px;
  }

  #page #how-it-works-page #how-it-works-blocks .how-it-works-blocks .how-it-works-block .right-side .content .text-content-wrap .text-content .results {
    margin-bottom: 24px;
  }

  #page #how-it-works-page #how-it-works-blocks .how-it-works-blocks .how-it-works-block .right-side .content .buttons {
    padding-left: 0px;
  }

  #page #how-it-works-page #how-it-works-blocks .how-it-works-blocks .how-it-works-block .right-side .content .buttons .site-btn {
    margin-bottom: 20px;
  }

  #page #blog-page #first-section .first-section .first-section-wrap .content .head-content {
    margin-bottom: 0;
  }

  #page #blog-page #first-section .first-section .first-section-wrap .content .head-content h1 {
    margin-bottom: 160px;
  }

  #page #blog-page #first-section .first-section .first-section-wrap .content .navigation .navigation-wrap {
    display: none;
  }

  #page #blog-page #first-section .first-section .first-section-wrap .content .navigation .navigation-wrap .navigation-block p {
    color: #fff;
  }

  #page #blog-page .blog-item-page .blog-content .title {
    margin-bottom: 30px;
  }

  #page #blog-page .blog-item-page .blog-content .title h1 {
    font-size: 36px;
  }

  #page #blog-page .blog-item-page .blog-content .share-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  #page #blog-page .blog-item-page .blog-content .share-block span {
    margin-bottom: 14px;
  }

  #page #blog-page #blog .blog .section-title {
    margin-bottom: 30px;
  }

  #page #blog-page #blog .blog .section-title h2 {
    font-size: 32px;
    text-align: center;
  }

  #page #contact-page .contact-page .contact-form-section {
    padding-left: 0;
  }

  #page #contact-page #map .map-section .contacts-row-wrap .contacts {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 32px 32px 0 0;
  }

  #page #contact-page #map .map-section .contacts-row-wrap .contacts::after {
    display: none;
  }

  #page #contact-page #map .map-section .contacts-row-wrap .contacts .contacts-blocks-wrap {
    max-width: 100%;
    padding: 55px 15px;
    text-align: center;
  }

  #page #contact-page #map .map-section .contacts-row-wrap .contacts .contacts-blocks-wrap .contact-block .social-links {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  #page #contact-page #map .map-section .map {
    height: 350px;
  }

  #page #contact-page #map .map-section .map iframe {
    border-radius: 0 0 32px 32px;
  }

  #page #service-page .services-header .first-section-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  #page #service-page.car-transport-service .services-steps-to-book .section-title h2 {
    font-size: 36px;
  }

  #page #service-page.car-transport-service .services-steps-to-book .section-title p {
    max-width: 100%;
  }

  #page #service-page.car-transport-service #pre-why-choose .pre-why-choose .section-title h2 {
    font-size: 36px;
  }

  #page #service-page.open-transport-car-shipping #steps-to-book-wrap #steps-to-book:nth-child(1) .steps-to-book .section-title {
    margin-bottom: 30px;
  }

  #page #service-page.open-transport-car-shipping #steps-to-book-wrap #steps-to-book:nth-child(1) .steps-to-book .section-title h2 {
    font-size: 36px;
  }

  #page #service-page.open-transport-car-shipping #steps-to-book-wrap #steps-to-book:nth-child(1) .steps-to-book .step-section-wrap {
    border-top: none;
  }

  #page #service-page.open-transport-car-shipping #steps-to-book-wrap #steps-to-book:nth-child(1) .steps-to-book .step-section-wrap .step-list .step {
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid #80848d;
    margin-bottom: 0;
  }

  #page #service-page.open-transport-car-shipping #steps-to-book-wrap #steps-to-book:nth-child(2) .steps-to-book .section-title h2 {
    font-size: 36px;
  }

  #page #service-page.open-transport-car-shipping #steps-to-book-wrap #steps-to-book:nth-child(2) .steps-to-book .step-section-wrap {
    border-top: none;
  }

  #page #service-page.open-transport-car-shipping #why-choose {
    padding-top: 0;
  }

  #page #service-page.open-transport-car-shipping #why-choose .why-choose .why-choose-wrap .why-choose-blocks .why-choose-block-wrap:last-child {
    display: none;
  }

  #page #service-page.open-transport-car-shipping #why-choose .why-choose .why-choose-wrap .why-choose-blocks .why-choose-block {
    max-width: 100%;
  }

  #page #service-page.motorcycle-shipping #motorcycle-shipping-block .motorcycle-shipping-block .section-title {
    margin-bottom: 16px;
  }

  #page #service-page.motorcycle-shipping #motorcycle-shipping-block .motorcycle-shipping-block .section-title h2 {
    font-size: 36px;
  }

  #page #service-page.motorcycle-shipping #motorcycle-shipping-block .motorcycle-shipping-block .motorcycle-shipping-block-wrap {
    border-top: none;
  }

  #page #service-page.motorcycle-shipping #motorcycle-shipping-block .motorcycle-shipping-block .motorcycle-shipping-block-wrap .left-side {
    padding-right: 0;
    padding-top: 0;
  }

  #page #service-page.motorcycle-shipping #motorcycle-shipping-block .motorcycle-shipping-block .motorcycle-shipping-block-wrap .right-side {
    border-left: none;
  }

  #page #service-page.motorcycle-shipping #motorcycle-shipping-block .motorcycle-shipping-block .motorcycle-shipping-block-wrap .right-side .ms-blocks .ms-block {
    margin-bottom: 20px;
  }

  #page #service-page.motorcycle-shipping #motorcycle-shipping-block .motorcycle-shipping-block .motorcycle-shipping-block-wrap .right-side .ms-blocks .ms-block .title {
    font-size: 20px;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }

  #page #service-page.enclosed-car-shipping #steps-to-book-wrap #steps-to-book:nth-child(1) .section-title h2 {
    font-size: 36px;
  }

  #page #service-page.enclosed-car-shipping #steps-to-book-wrap #steps-to-book:nth-child(2) .steps-to-book .section-title h2 {
    font-size: 36px;
  }

  #page #service-page.door-to-door-auto-transport-service #steps-to-book-wrap #steps-to-book:nth-child(1) .steps-to-book .section-title {
    margin-bottom: 30px;
  }

  #page #service-page.door-to-door-auto-transport-service #steps-to-book-wrap #steps-to-book:nth-child(1) .steps-to-book .section-title h2 {
    font-size: 36px;
  }

  #page #service-page.door-to-door-auto-transport-service #steps-to-book-wrap #steps-to-book:nth-child(1) .steps-to-book .step-section-wrap {
    border-top: none;
  }

  #page #service-page.door-to-door-auto-transport-service #steps-to-book-wrap #steps-to-book:nth-child(1) .steps-to-book .step-section-wrap .step-list {
    padding-top: 0;
  }

  #page #service-page.door-to-door-auto-transport-service #steps-to-book-wrap #steps-to-book:nth-child(1) .steps-to-book .step-section-wrap .step-list .step {
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid #80848d;
    margin-bottom: 0;
  }

  #page #service-page.door-to-door-auto-transport-service #steps-to-book-wrap #steps-to-book:nth-child(2) .steps-to-book .section-title h2 {
    font-size: 36px;
  }

  #page #service-page.door-to-door-auto-transport-service #steps-to-book-wrap #steps-to-book:nth-child(2) .steps-to-book .step-section-wrap {
    border-top: none;
  }

  #page #service-page.door-to-door-auto-transport-service #why-choose {
    padding-top: 0;
  }

  #page #service-page.expedited-car-shipping .expedited-shipping-block #steps-to-book .steps-to-book .section-title h2 {
    font-size: 36px;
  }

  #page #service-page.heavy-equipment-shipment #steps-to-book .steps-to-book .section-title .section-title-wrap h2 {
    font-size: 36px;
  }

  #page #service-page.boat-shipping #steps-to-book-wrap #steps-to-book:first-child .steps-to-book .section-title {
    margin-bottom: 30px;
  }

  #page #service-page.boat-shipping #steps-to-book-wrap #steps-to-book:first-child .steps-to-book .section-title h2 {
    font-size: 36px;
  }

  #page #service-page.boat-shipping #steps-to-book-wrap #steps-to-book:first-child .steps-to-book .step-section-wrap .step .content .title {
    margin-bottom: 0;
  }

  #footer .footer .top-footer .top-footer-wrap .footer-links-wrap:nth-child(1) .footer-links {
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #80848d;
  }

  #footer .footer .top-footer .top-footer-wrap .footer-links-wrap:nth-child(3) {
    padding-left: 10px;
    margin-bottom: 30px;
  }

  #footer .footer .bottom-footer .left-side {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-bottom: 25px;
  }

  #footer .footer .bottom-footer .middle-side {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 25px;
    text-align: left;
  }

  #footer .footer .bottom-footer .right-side {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    text-align: left;
    margin-bottom: 25px;
  }
}

@media (max-width: 576px) {
  #contactForm .form-check {
    margin-bottom: 20px;
  }
}