* {
  text-decoration: none !important;
  outline: none !important;
}

body {
  background-color: #fff;
  line-height: 26px;
  font-weight: 400;
  font-style: normal;
  color: #212d31;
  font-size: 15px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.24s ease-in-out;
  -moz-transition: opacity 0.24s ease-in-out;
  transition: opacity 0.24s ease-in-out;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

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

.flip-horizontal {
  transform: scale(-1, 1);
}

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

ul,
ol {
  margin: 0;
  margin-top: 0px;
  padding: 0;
  list-style: none;
}

b {
  font-weight: 600;
}

h4,
.h4 {
  font-size: 1.1rem;
}

.tt-up {
  text-transform: uppercase;
}

.text-link {
  color: unset;
}

.btn.btn-sm {
  padding: 11px 17px;
  padding-left: 17px;
  font-size: 14px;
}

.btn.btn-link {
  padding-left: 0;
  background-color: transparent;
  color: #1874c1 !important;
  border: none;
  text-transform: uppercase;
}

.btn.btn-link:hover {
  padding-left: 0;
  background: none;
  color: #94cfff !important;
  border: none;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-color: transparent;
  outline: none;
}

.dropdown-menu {
  border: none;
  border-radius: 0;
}

.dropdown-menu .dropdown-item {
  font-size: 1rem;
}

.dropdown-menu.fade {
  display: block;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.22);
  border-radius: 6px;
  transition: opacity 0.1s linear;
}

.show > .dropdown-menu.fade {
  pointer-events: auto;
  opacity: 1;
}

.dropdown-menu.dropdown-menu-center {
  right: auto;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.btn-custom {
  text-transform: uppercase;
  border-style: solid;
  border-width: 2px;
  border-radius: 3px;
  padding: 9px 35px;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #000000;
  outline: none;
  box-shadow: none;
}

.form-control-custom {
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 15px;
  padding: 7px 19px;
  width: 100%;
  font-size: 0.9rem;
}

/* SLIDER STYLES */
.carousel-item {
  height: calc(100vh - 130px);
  min-height: 350px;
  background: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
  width: 100%;
}

.carousel-custom-caption {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  justify-content: flex-start;
  color: #fff;
  margin: 0;
  padding: 36px;
}

@media screen and (max-width: 768px) {
  .carousel-custom-caption {
    padding: 0;
  }
}

.carousel-custom-caption .carousel-custom-caption-right {
  display: flex;
  flex-direction: column;
  align-self: flex-end;
}

.carousel-custom-caption__title {
  text-transform: uppercase;
  font-size: 3rem;
  line-height: 1;
  font-weight: 700;
}

.carousel-custom-caption__title span.small {
  font-size: 70%;
  font-weight: 600;
}

.carousel-custom-caption__content li {
  margin-top: 0.25rem;
  font-size: 18px;
  font-weight: 500;
  list-style: disc;
  list-style-position: outside;
  list-style-position: inside;
}

.carousel-custom-caption__actions {
  margin-top: 1rem;
}

@media screen and (min-width: 768px) {
  .carousel-custom-caption__actions button {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }
}

@media screen and (max-width: 767px) {
  .carousel-custom-caption__title {
    font-size: 1.75rem;
  }

  .carousel-custom-caption__title span.small {
    font-size: 50%;
    font-weight: 600;
  }

  .carousel-custom-caption__content li {
    font-size: 16px;
  }

  .carousel-custom-caption__content br {
    display: none;
  }

  .carousel-custom-caption__actions button {
    display: block;
    margin-left: 0 !important;
    font-size: 0.9rem;
  }

  .carousel-custom-caption__actions button:not(:first-child) {
    margin-top: 1rem;
  }

  .carousel-custom-caption .carousel-custom-caption-right {
    align-self: initial;
  }
}

@media screen and (max-width: 576px) {
  .carousel-item {
    height: auto;
    padding: 55px 0;
  }

  .carousel-custom-caption__content li {
    font-size: 14px;
  }
}

.carousel-control-next,
.carousel-control-prev {
  width: 60px;
}

.carousel-control-wrapper {
  height: 40px;
  width: 40px;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  background: black;
  opacity: 0;
  transition: 0.2s;
}

.carousel:hover .carousel-control-wrapper {
  opacity: 0.5;
}

.carousel-control-next:hover .carousel-control-wrapper,
.carousel-control-prev:hover .carousel-control-wrapper {
  opacity: 1;
}

/* END OF SLIDER STYLES */
/* HEADER STYLES */
.wrapper-header {
  z-index: 999;
  width: 100%;
  background: #000;
}

@media screen and (max-width: 991px) {
  .navbar-mobile-block {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
}

.navbar-mobile-block .navbar-toggler {
  margin-left: 15px !important;
}

.wrapper-header.fixed-top {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.wrapper-header.header-without-nav {
  height: 0;
}

.wrapper-header__topbar {
  width: 100%;
  border-bottom: 1px rgba(0, 0, 0, 0.05) solid;
}

.wrapper-header__topbar__social {
  display: inline-block;
  vertical-align: top;
}

.wrapper-header__topbar__social__items {
  display: inline-block;
  vertical-align: top;
  text-align: center;
}

.wrapper-header__topbar__social__items > li {
  display: inline-block;
  vertical-align: top;
}

.wrapper-header__topbar__social__items > li > a {
  display: block;
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 5px;
  padding-bottom: 3px;
  border-left: 1px rgba(0, 0, 0, 0.05) solid;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  color: #8e8e8e;
}

.wrapper-header__topbar__contacts {
  display: inline-block;
  vertical-align: top;
  margin-top: 5px;
  font-size: 0;
}

.wrapper-header__topbar__contacts > li {
  display: inline-block;
  vertical-align: top;
  margin-right: 12px;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  line-height: 26px;
  border-right: 1px rgba(0, 0, 0, 0.05) solid;
  padding-right: 12px;
}

.wrapper-header__topbar__contacts > li > a {
  transition: 0.2s;
}

.wrapper-header__topbar__contacts > li > a:hover {
  opacity: 0.8;
  color: inherit;
}

.wrapper-header__topbar__contacts li:last-child,
.wrapper-header__topbar__contacts li:only-child {
  margin-right: 0;
}

.wrapper-header__topbar__contacts li i {
  margin-right: 10px;
}

/* NAVBAR */
.wrapper-header__main {
  transition: all 0.2s;
}

.wrapper-header__main.nav-fixed-white {
  background: #fff;
  position: fixed;
  top: 0;
  z-index: 9999;
  width: 100%;
}

.wrapper-header__main.nav-fixed-white #nav_menu ul > li > a,
.wrapper-header__main.nav-fixed-white #nav_menu ul > li > span {
  color: #fff;
}

.wrapper-header__main .navbar {
  padding: 0.5rem 0.25rem;
}

.wrapper-header__main .brand-logo {
  max-width: 250px;
}

@media screen and (max-width: 576px) {
  .wrapper-header__main .brand-logo {
    max-width: 180px;
  }
}

.wrapper-header__main .navbar-toggler {
  padding: 0.5rem 0.75rem;
}

@media screen and (min-width: 991px) {
  .wrapper-header__main .navbar {
    padding: 0.5rem 0;
  }
}

.wrapper-header__main #nav_menu ul > li:not(:last-child) {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: auto;
  height: auto;
  margin-right: 1.375rem;
}

.wrapper-header__main #nav_menu ul > li > a,
.wrapper-header__main #nav_menu ul > li > span {
  /* text-transform: uppercase; */
  line-height: 27px;
  font-weight: 500;
  letter-spacing: 0.4px;
  font-style: normal;
  color: #fff;
  font-size: 18px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.24s ease-in-out;
  -moz-transition: all 0.24s ease-in-out;
  transition: all 0.24s ease-in-out;
  position: relative;
  display: block;
  width: auto;
  height: auto;
  cursor: pointer;
  text-decoration: none;
}

.wrapper-header__main #nav_menu ul > li > a:hover::after,
.wrapper-header__main #nav_menu ul > li > span:hover::after,
.wrapper-header__main
#nav_menu
ul
> li
> span.accordion:not(.collapsed)::after {
  opacity: 1;
}

.wrapper-header__main #nav_menu ul > li > a::after,
.wrapper-header__main #nav_menu ul > li > span::after {
  left: -7px;
  right: 7px;
  background-color: currentColor;
  bottom: 5px;
  content: "";
  height: 1px;
  opacity: 0;
  position: absolute;
  transition: 0.25s opacity;
}

@media screen and (max-width: 991px) {
  .wrapper-header__main #nav_menu ul > li > a::after,
  .wrapper-header__main #nav_menu ul > li > span::after {
    left: 0;
  }
}

.wrapper-header__main .dropdown-menu .dropdown-item {
  text-transform: uppercase;
}

/* END OF HEADER STYLES */
/* CONTENT STYLES */
.section {
  padding: 35px 0;
}

@media screen and (max-width: 576px) {
  .section {
    padding: 10px 0;
  }
}

.section-quote {
  padding-top: 80px;
  padding-bottom: 180px;
  background-image: url(http://anpsthemes.com/transporto/wp-content/uploads/2014/11/doted-map3.jpg?id=653);
}

@media screen and (max-width: 991px) {
  .section-quote {
    padding-top: 50px;
  }
}

.section-quote__inner > .row {
  margin-right: 0;
  margin-left: 0;
}

.section-quote__form {
  display: flex;
  align-items: center;
  margin-bottom: 0px;
  margin-top: 8px;
}

.section-quote__content {
  margin-top: 8px;
}

@media screen and (min-width: 992px) {
  .section-quote__content {
    padding-left: 1.5rem !important;
  }
}

@media screen and (max-width: 991px) {
  .section-quote__content {
    margin-top: 1.1rem;
  }
}

.section-quote__content p {
  font-size: 14px;
}

.section-quote input.form-control-custom {
  padding: 22px 19px;
}

.section-quote input[type="submit"] {
  height: 46px;
  width: 100%;
  padding: 0;
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 4px;
  margin-bottom: 15px;
}

/* ADVANTAGES SECTION */
.section-advantages-first {
  margin-top: -120px;
  margin-bottom: 60px;
}

.section-advantages-first__item {
  background: transparent;
}

.section-advantages-first__item__title {
  margin-top: 1.25rem;
}

.section-advantages-first__item__title h5 {
  font-size: 1rem;
  position: relative;
}

.section-advantages-first__item__title h5 > span {
  border-bottom: 1px solid #ececec;
  padding-bottom: 20px;
  display: inline-block;
}

.section-advantages-first__item__content {
  font-size: 0.85rem;
  color: #727272;
}

/* SECTION VEHICLE PARK */
.section-vehicle-park {
  padding: 70px 0;
  background-color: #212121;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .section-vehicle-park {
    padding: 35px 0;
  }
}

/* SECTION ADVANTAGES SECOND */
.section-advantages-second {
  padding: 100px 0;
}

@media screen and (max-width: 991px) {
  .section-advantages-second__item__big {
    margin-top: 1.25rem;
  }
}

.section-advantages-second__item__title h2 {
  font-size: 1rem;
  margin: 0;
  margin-top: 0;
}

.section-advantages-second__item__title a:hover h3 {
  color: #bfbfbf;
}

.section-advantages-second__item__title h3 {
  font-size: 0.9rem;
  margin-top: 6px;
  color: #bfbfbf;
}

.section-advantages-second__item__title i {
  color: #153d5c;
  font-size: 2rem;
}

.section-advantages-second__item__title p {
  line-height: 1.75em;
  margin: 15px 0 0;
  clear: both;
  margin-top: 7px;
  font-size: 0.9rem;
}

.section-advantages-second .section-advantages-second__item:nth-child(even) {
  margin-top: 2rem;
}

@media screen and (max-width: 991px) {
  .section-advantages-second .section-advantages-second__item {
    margin-top: 1rem;
  }
}

.carousel-item .carousel-custom-caption {
  transition: 0.25s opacity;
}

.carousel-item.carousel-item-left,
.carousel-item.carousel-item-right {
  border-right: 3px solid #fff;
}

.carousel-item.carousel-item-left .carousel-custom-caption,
.carousel-item.carousel-item-right .carousel-custom-caption {
  transition: 0.1s opacity;
  opacity: 0;
}


.vehicle-slide {
  position: relative;
}

.vehicle-slide * {
  transition: all 0.2s ease-in;
}

.vehicle-slide__image {
  /* width: 100%; */
}

.vehicle-slide__info {
  position: absolute;
  bottom: 20px;
  left: 25px;
  z-index: 1;
  opacity: 0;
}

.vehicle-slide__header {
  font-family: Montserrat;
  font-weight: 500;
  color: white;
  font-size: 18px;
}

.vehicle-slide__btn {
  margin-top: 5px;
  font-family: Montserrat;
  font-weight: 500;
  padding: 0 16px;
  height: 36px;
  line-height: 36px;
}

.vehicle-slide:hover .vehicle-slide__image {
  filter: brightness(50%);
}

.vehicle-slide:hover .vehicle-slide__info {
  opacity: 1;
}

.vehicle-slide__info .btn-primary {
  margin-top: 0.5rem;
  transition: 0.3s all;
  font-size: 13px;
  text-transform: none;
  padding: 6px 16px;
}

/* FOOTER */
footer {
  background: #232323;
  color: #9bb3c7;
}

.footer-wrapper .container {
  padding-top: 30px;
  padding-bottom: 30px;
}

.footer-item {
  margin-bottom: 40px;
}

.footer-item__title {
  margin-top: 0;
  margin-bottom: 25px;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  line-height: 28px;
}

.footer-item ul > li {
  margin-bottom: 12px;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
}

.footer-menu__item {
  color: #d9e0e8;
}

.footer-item b {
  font-weight: 400;
}

.footer-item p {
  margin-bottom: 5px;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #fff;
}

footer .footer-copyright {
  color: #435b6e;
  background: #161515;
}

.footer-copyright .container {
  padding-top: 24px;
  padding-bottom: 7px;
}

.footer-copyright .footer-copyright__inner {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .footer-copyright .footer-copyright__inner {
    flex-direction: column;
    text-align: center;
    padding-bottom: 10px;
  }
}

.advantages-form-section {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("http://anpsthemes.com/transport-new-demos/1/wp-content/uploads/2016/07/busslider2.jpg");
  background-size: cover;
  background-position: center center;
  min-height: 500px;
  padding: 70px 0;
}

.advantages-form-section__content {
  display: flex;
  margin-top: 50px;
}

.advantages-form-section__title {
  font-weight: 600;
}

.advantages-form-section__content__timeline {
  display: flex;
  flex-direction: column;
}

.advantages-form-section__content__timeline
.advantages-form-section__content__timeline__item:not(:first-child)
i {
  margin: 10px 0;
}

.advantages-form-section__content__timeline
.advantages-form-section__content__timeline__item:last-child
.advantages-form-section__content__timeline__item-content {
  margin-left: 45px;
}

.advantages-form-section__content__timeline__item-content b {
  font-weight: 600;
  color: #c1e8ff;
}

.advantages-form-section__content__timeline__item {
  display: flex;
}

.advantages-form-section__content__timeline__item-images {
  display: flex;
  flex-direction: column;
  margin-left: 1.5rem;
}

.advantages-form-section__content__timeline__item-images i {
  font-size: 50px;
}

.advantages-form-section__content__timeline__item-images svg {
  fill: #fff;
  transform: scale(-0.75, 0.75) rotate(-34deg);
}

.advantages-form-section__content__timeline__item-images svg.flipped {
  transform: scale(0.75, 0.75) rotate(-35deg);
  margin-left: -20px;
}

.advantages-form-section__content__timeline__item-time {
  margin-top: 10px;
  min-width: 95px;
  max-width: 100px;
  font-size: 16px;
}

.advantages-form-section__content__timeline__item-content {
  margin-top: 10px;
  font-size: 16px;
  max-width: 450px;
  margin-left: 30px;
}

.advantages-form-section__content__timeline__item-images__flipped
+ .advantages-form-section__content__timeline__item-content {
  margin-left: 50px;
}

.advantages-form-section__content__form {
  display: flex;
  flex-direction: column;
  margin-top: -1rem;
}

@media screen and (min-width: 992px) {
  .advantages-form-section__content__timeline__item {
    padding-right: 1rem;
  }

  .advantages-form-section__content__form {
    display: flex;
    flex-direction: column;
    padding-left: 1.5rem;
    margin-top: -1rem;
  }
}

@media screen and (max-width: 991px) {
  .advantages-form-section__content__form {
    margin-top: 1.5rem;
  }
}

.advantages-form-section__content__form .card {
  color: rgba(0, 0, 0, 0.8);
}

.advantages-form-section__content__form .card-title {
  font-weight: 700;
}

.advantages-form-section__content__form .card-subtitle {
  font-size: 0.9rem;
  padding: 0.75rem 0;
  font-weight: 600;
}

.advantages-form-section__content__form .card-hint {
  font-size: 0.8rem;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .advantages-form-section__content__timeline__item-images i {
    font-size: 38px;
  }

  .advantages-form-section__content__timeline__item-time,
  .advantages-form-section__content__timeline__item-content {
    font-size: 14px;
  }
}

@media screen and (max-width: 576px) {
  .advantages-form-section__title {
    font-size: 1.35rem;
    font-weight: 600;
  }

  .advantages-form-section__content {
    display: flex;
    margin-top: 10px;
  }

  .advantages-form-section__content__timeline__item-images,
  .advantages-form-section__content__timeline__item-images svg {
    display: none;
  }

  .advantages-form-section__content__timeline__item {
    flex-direction: column;
  }

  .advantages-form-section__content__timeline__item-time {
    font-size: 16px;
    font-weight: 600;
    max-width: 100%;
  }

  .advantages-form-section__content__timeline
  .advantages-form-section__content__timeline__item:last-child
  .advantages-form-section__content__timeline__item-content,
  .advantages-form-section__content__timeline__item-images__flipped
  + .advantages-form-section__content__timeline__item-content,
  .advantages-form-section__content__timeline__item-content {
    margin-left: 0;
  }

  .advantages-form-section__content__form {
    padding-left: 15px;
  }

  .advantages-form-section__content__form .card-title {
    font-size: 1.15rem;
  }

  .advantages-form-section__content__form .card-subtitle {
    font-size: 0.85rem;
    padding: 0.75rem 0;
    font-weight: 500;
  }
}

.main-carousel__inner-container {
  padding: 36px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}

.btn-link i {
  transition: opacity 0.3s, transform 0.3s;
}

.btn-link:not(.collapsed) i {
  transform: rotate(180deg);
}

/* UI Auto-complete */
.ui-autocomplete {
  font-size: 0.9rem !important;
}

.ui-autocomplete > .ui-menu-item,
.ui-autocomplete > .ui-menu-item:hover {
  padding: 6px 12px !important;
}

.ui-autocomplete > .ui-menu-item > .ui-menu-item-wrapper,
.ui-autocomplete > .ui-menu-item:hover > .ui-menu-item-wrapper,
.ui-autocomplete > .ui-menu-item:active > .ui-menu-item-wrapper,
.ui-autocomplete > .ui-menu-item:focus > .ui-menu-item-wrapper {
  border: none !important;
}


.ui-widget {
  z-index: 9999;
}

.navbar__phone {
  color: #1BAF42;
}

.navbar__phone span {
  display: block;
  font-weight: 600;
  font-size: 1rem;
}

.wrapper-header {
  border-bottom: thin rgba(0, 0, 0, 0.15) solid;
}


.flex-spacer {
  flex: 1 1 100%;
}

@media screen and (max-width: 991px) {
  .content-header__button {
    justify-content: initial !important;
  }
}

@media screen and (max-width: 991px) {
  .content-header__content__block__item {
    margin-bottom: 8px;
  }

  .content-header__content__block__item > span {
    margin-left: 0 !important;
  }
}

.content-header .description-columns {
  display: flex;
}

@media screen and (max-width: 991px) {
  .content-header .description-columns {
    flex-direction: column;
  }
}

.content-header .description-column {
  flex: 1 1 auto;
  white-space: nowrap;
  flex-wrap: nowrap;
}

.wrapper-header__main #nav_menu ul > li > a,
.wrapper-header__main #nav_menu ul > li > span {
  font-weight: 600;
}

@media screen and (min-width: 991px) and (max-width: 1919px) {
  .wrapper-header__main #nav_menu ul > li > a,
  .wrapper-header__main #nav_menu ul > li > span {
    font-size: 0.9rem;
  }

  .navbar__phone i {
    font-size: 1rem !important;
  }

  .navbar__phone .navbar__phone__contact {
    font-size: 0.9rem;
  }

  .navbar__phone .navbar__phone__contact span {
    font-size: 0.8rem;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 0;
    padding-right: 1rem;
  }

  .btn.btn-shadow:not(.btn-lg) {
    font-size: 0.9rem;
  }

  .navbar__phone .navbar__phone__contact {
    margin-left: 0.75rem;
  }

  .wrapper-header__main .navbar {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
}

.color-title {
  color: #45484a;
}

.btn-big {
  padding: 0.75rem 1.25rem;
  font-size: 1.25rem;
}

.navbar__phone__contact {
  line-height: 1.35;
}

.navbar .navbar-collapse .input-group {
  -ms-flex-wrap: unset;
  flex-wrap: unset;
  -ms-flex-align: unset;
  align-items: unset;
  width: unset;
}

@media screen and (min-width: 991px) {
  .navbar .navbar-collapse > div:first-child {
    margin-right: auto;
  }

  .navbar .navbar-collapse > ul.navbar-nav {
    margin-left: 2.5rem;
  }

  .navbar .navbar-collapse > div:last-child {
    display: flex;
    margin-left: auto;
    align-items: center;
  }

  .navbar-form,
  .navbar-order {
    margin-left: 1.5rem;
  }
}

@media screen and (max-width: 992px) {
  .navbar-order {
    margin-top: 1rem;
  }
}

.navbar .navbar-collapse {
  justify-content: flex-end;
}

.btn-shadow {
  box-sizing: border-box;
  box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.22);
  border-radius: 6px;
}

.content-header {
  color: #fff;
}

.content-header__title h1 h1.content-header__title,
h2.content-header__title {
  font-size: 2.25rem;
}

h1.content-header__title__big,
h2.content-header__title__big {
  font-size: 3rem;
}

h2.h1 {
  font-size: 2.5rem;
}

.content-header__title {
  margin-bottom: 80px;
}

@media screen and (max-width: 576px) {
  .content-header__title {
    margin-bottom: 20px;
  }
}

.content-header__title span {
  border-bottom: 1px solid #40a80e;
}

.content-header__title__block h1 {
  display: inline;
  border-bottom: 1px solid #40a80e;
}

.content-header__content {
  display: flex;
  margin-top: 35px;
  margin-bottom: 60px;
}

@media screen and (max-width: 576px) {
  .content-header__content {
    margin-bottom: 15px;
    margin-top: 15px;
  }
}

.content-header__content__block__item {
  margin-bottom: 20px;
}

@media screen and (max-width: 576px) {
  .content-header__content__block__item {
    margin-bottom: 8px;
  }
}

.content-header__content__block__item span {
  font-size: 28px;
  font-weight: normal;
}

.content-header-fullscreen .form-control {
  border-color: #40a80e;
}

.content-header-fullscreen {
  background: #000;
  background-image: url('/static/img/smoke-bg.png');
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: right;
}


@media screen and (max-width: 576px) {
  .content-header-fullscreen {
    padding: 30px 0;
  }
}

.content-header-fullscreen__inner {
  display: flex;
  justify-content: space-between;
}

.content-header-fullscreen__inner .card {
  opacity: 0.96;
}

/* SECTION ADVANTAGES SECOND */
.section-advantages-second {
  padding: 100px 0;
}

@media screen and (max-width: 576px) {
  .section-advantages-second {
    padding: 10px 0;
  }

  .section-advantages-second .content-header__title {
    padding-bottom: 0 !important;
  }
}

@media screen and (max-width: 991px) {
  .section-advantages-second__item__big {
    margin-top: 1.25rem;
  }
}

.section-advantages-second__item__title h2 {
  font-size: 1.25rem;
  margin: 0;
  margin-top: 0;
}

.section-advantages-second__item__title a:hover h3 {
  color: #bfbfbf;
}

.section-advantages-second__item__title h3 {
  font-size: 1.25rem;
  margin-top: 6px;
  color: #bfbfbf;
}

.section-advantages-second__item__title i {
  color: #40a80e;
  font-size: 2.4rem;
}

.brand-logo img {
  max-width: 100%;
  width: 160px;
}

.section-advantages-second__item__title p {
  line-height: 1.75em;
  margin: 15px 0 0;
  clear: both;
  margin-top: 14px;
  font-size: 1.1rem;
  color: #073408;
}

@media screen and (max-width: 576px) {
  .section-advantages-second__item__title h2 {
    font-size: 1rem;
  }

  .section-advantages-second__item__title p {
    line-height: 1.5em;
    font-size: 0.95rem;
  }
}

.section-advantages-second .section-advantages-second__item:nth-child(even) {
  margin-top: 2rem;
}

@media screen and (max-width: 991px) {
  .section-advantages-second .section-advantages-second__item {
    margin-top: 1rem;
  }
}

.section-advantages-second__item__title .text-link {
  min-height: 52px;
  display: flex;
  align-items: center;
}

.milestone {
  position: relative;
  padding: 100px 0;
}

@media screen and (max-width: 576px) {
  .milestone {
    padding: 25px 0;
  }

  .milestone .timeline {
    margin-top: 1.5rem !important;
  }

  .milestone .timeline-item {
    padding-top: 30px !important;
  }
}

.milestone::after {
  content: "";
  background: url("/static/img/how-we-work.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.75;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;
}

.milestone-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
}

@media screen and (max-width: 576px) {
  .milestone-title {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
  }
}

.timeline > .timeline-item {
  padding-top: 60px;
  position: relative;
}

.timeline .timeline-item-line {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 0;
  width: 2px;
  margin-left: -1px;
  background-color: #40a80e;
}

.timeline-item-line.start::before {
  top: 0;
  background-color: #40a80e;
  position: absolute;
  display: block;
  content: " ";
  width: 10px;
  height: 10px;
  margin-left: -4px;
  border-radius: 50%;
}

.timeline .timeline-item-dot {
  display: block;
  position: absolute;
  top: 70px;
  left: 50%;
  z-index: 1;
  content: " ";
  width: 20px;
  height: 20px;
  margin-left: -10px;
  background-color: #40a80e;
  border-width: 5px;
  border-style: solid;
  border-radius: 50%;
  border-color: #40a80e;
}

.timeline .timeline-item-dot::before {
  content: " ";
  height: 44px;
  width: 44px;
  border-radius: 50%;
  border: thin solid #6ad636;
  display: inline-block;
  position: absolute;
  transform: translateX(-17px) translateY(-17px);
}

.timeline-item .row [class*="col-"] {
  padding-left: 35px;
  padding-right: 35px;
}

.timeline-item-timestamp {
  margin-bottom: 30px;
  padding-left: 10px;
  padding-right: 10px;
  text-align: right;
}

.timeline-item-timestamp .holder {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding: 7px 15px 7px 15px;
  background-color: #cacdd4;
  font-weight: 500;
  font-size: 15px;
  color: #030712;
  line-height: 28px;
}

.timeline-item-timestamp .holder::after {
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -10px;
  width: 0;
  height: 0;
  content: " ";
  border: solid transparent;
  border-top-color: transparent;
  border-top-width: medium;
  border-right-color: transparent;
  border-right-width: medium;
  border-bottom-color: transparent;
  border-bottom-width: medium;
  border-left-color: transparent;
  border-left-width: medium;
  border-color: rgba(0, 0, 0, 0);
  border-left-color: rgba(0, 0, 0, 0);
  border-left-color: #cacdd4;
  border-width: 10px;
  pointer-events: none;
}

.timeline-item-data {
  text-align: left;
}

.timeline-item-data h4 {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 26px;
  color: #171c30;
  line-height: 30px;
}

.timeline-item-data p {
  font-size: 20px;
  margin-bottom: 0;
}

.timeline-item-data p b {
  font-weight: 500;
  color: #3d8918;
}

.timeline-item.item-right .timeline-item-timestamp {
  text-align: left;
}

.timeline-item.item-right .timeline-item-timestamp .holder::before {
  position: absolute;
  top: 50%;
  right: 100%;
  margin-top: -10px;
  width: 0;
  height: 0;
  content: " ";
  border: solid transparent;
  border-top-color: transparent;
  border-top-width: medium;
  border-right-color: transparent;
  border-right-width: medium;
  border-bottom-color: transparent;
  border-bottom-width: medium;
  border-left-color: transparent;
  border-left-width: medium;
  border-color: rgba(0, 0, 0, 0);
  border-right-color: rgba(0, 0, 0, 0);
  border-right-color: #cacdd4;
  border-width: 10px;
  pointer-events: none;
}

.timeline-item.item-right .timeline-item-timestamp .holder::after {
  display: none;
}

@media screen and (max-width: 767px) {
  .content-header__content {
    flex-direction: column;
  }

  h1.content-header__title,
  h2.content-header__title,
  .content-header__title__block h1 {
    font-size: 2rem;
  }

  .content-header__content .content-header__content__block:first-child {
    padding-right: 0;
    border: none;
  }

  .content-header__content .content-header__content__block:last-child {
    padding-left: 0;
  }
}

@media screen and (max-width: 991px) {
  .content-header-fullscreen__inner {
    display: block;
  }
}

@media screen and (max-width: 576px) {
  .milestone-title {
    font-size: 23px;
  }

  .timeline-item .row [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
  }

  .content-header-fullscreen .container {
    padding-left: 0;
    padding-right: 0;
  }

  .timeline-item-timestamp {
    padding-left: 0px;
    padding-right: 0px;
    text-align: left;
  }

  .timeline-item.item-right .row .timeline-item-1 {
    order: 1;
  }

  .timeline-item.item-right .row .timeline-item-2 {
    order: 0;
  }

  .timeline-item.item-right .timeline-item-timestamp {
    text-align: right;
  }

  .timeline-item-data h4 {
    font-size: 18px;
  }

  .timeline-item-data p {
    font-size: 14px;
  }

  h1.content-header__title,
  h2.content-header__title,
  .content-header__title h1 {
    font-size: 1.375rem;
  }

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

  .content-header__content__block span {
    font-size: 18px;
  }

  .content-header__content__block i {
    font-size: 16px;
    color: green;
  }
}

.vehicle-slider {
  /* display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%; */
}

.tns-outer {
  padding: 0;
  width: 100%;
}

.vehicle-slider {
  background: transparent;
  padding-top: 15px;
}

@media screen and (max-width: 576px) {
  .vehicle-slider {
    padding-top: 20px;
    padding-bottom: 15px;
  }
}

.section-documents {
  background-color: #fff;
  color: #212d31;
}


.vehicle-slide__image {
  border: 1px solid #4e7a14;
}

.vehicle-slide .text {
  font-size: 18px;
  text-align: center;
}

label.big {
  font-size: 18px;
  font-weight: 500;
  color: #323232;
}

.content-header-fullscreen__inner label:not(.big) {
  font-size: 14px;
  margin-bottom: 2px;
}

.content-header-fullscreen__inner label,
label.big {
  text-transform: uppercase;
}

.content-header-fullscreen__inner h5.card-title {
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.content-header-fullscreen__inner .card {
  padding: 10px;
  border-radius: 22px;
}

.section-documents .container {
  border-bottom: 1px solid #6ccc4a;
}

@media screen and (max-width: 576px) {
  .section-documents__top h2.content-header__title {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 1300px) {
  .container.container-big {
    max-width: 1240px;
  }
}

.vehicle-slider .slick-prev::before,
.vehicle-slider .slick-next::before {
  color: #030712;
}


.section-reviews-index .nav-tabs .nav-link {
  border: none;
  color: #030712;
  margin-bottom: -1px;
}

.section-reviews-index .nav-tabs {
  margin-top: 0.25rem;
  border: none;
  font-size: 1.1rem;
}

@media screen and (max-width: 576px) {
  .section-reviews-index .nav-tabs {
    margin-top: 0.5rem;
  }
}

.section-reviews-index .nav-tabs .nav-link.active {
  background: transparent;
}

.section-reviews-index .nav-tabs .nav-link.active::after {
  content: " ";
  display: block;
  width: calc(100% + 25px);
  margin-left: -11px;
  background: #000;
  height: 6px;
  border-radius: 9px;
  margin-top: 0.45rem;
}

.tab-content-slider {
  margin-bottom: 60px;
}

.text-bold {
  font-weight: bold;
}

.tab-content-slider__item__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px 0;
}

@media screen and (max-width: 576px) {
  .tab-content-slider__item__content {
    padding: 5px 0;
  }
}

.tab-content-slider__item__ratings img {
  display: unset;
}

.tab-content-slider__item {
  padding: 25px 20px;
}

@media screen and (max-width: 576px) {
  .tab-content-slider__item {
    padding: 20px 10px;
  }
}

.tab-content-slider__item__message {
  font-size: 1.175rem;
  margin-top: 1.5rem;
  padding: 0 1rem;
}

@media screen and (max-width: 576px) {
  .tab-content-slider__item__message {
    font-size: 1rem;
  }
}

.tab-content-slider__item__title {
  font-size: 1.25rem;
  font-weight: 600;
  padding: 0 1rem;
}

.tab-content-slider__item__ratings {
  margin-top: 1.5rem;
}

.tab-content-slider__item__images {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url("/static/img/map-overlay.png"), url("/static/img/map-overlay-2.png"), url("/static/img/map-overlay-3.png");
  background-repeat: no-repeat, no-repeat;
  background-position: center -90px, center -60px, center -40px;
  background-size: contain;
}

.tab-content-slider .slick-dots li button::before {
  font-size: 1rem;
  color: #000000;
  opacity: 0.3;
}

.slick-dots li button {
  width: 30px;
  height: 30px;
}

.tab-content-slider .slick-dots {
  bottom: unset;
  margin-top: 8px;
}

.tab-content-slider .slick-dots li.slick-active button::before {
  opacity: 1;
}

.tab-content-slider__item__direction {
  color: #45484a;
  margin-top: 1rem;
  text-align: center;
  font-size: 20px;
}

.tab-content-slider .btn-outline {
  position: absolute;
  top: calc(100% + 20px);
  display: block;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  outline: none;
  left: 16px;
  background: transparent;
  z-index: 999;
}

.tab-content-slider .btn-outline.btn-right-slider {
  right: 16px;
  left: unset;
}

.tab-content-slider .btn-outline:focus {
  box-shadow: none;
}

.tab-content > .tab-pane,
.pill-content > .pill-pane {
  display: block;
  height: 0;
  /* overflow: hidden; */
}

.tab-content > .active,
.pill-content > .active {
  height: auto;
}

.section-faq {
  background: #f5ffef;
  margin-top: 60px;
  padding: 45px 0;
}

.section-faq .accordion .card,
.section-faq .accordion .card:not(:first-of-type):not(:last-of-type) {
  margin-top: 0.75rem;
  border: 1px solid #40a80e;
  color: #030712;
}

.text-highlight > span {
  color: #1BAF42;
}

.section-faq .accordion .card .btn.btn-link {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  padding-right: 0;
  color: #030712 !important;
  text-transform: initial;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  min-width: 0;
  z-index: 99;
  white-space: normal;
  text-align: left;
}

@media screen and (max-width: 576px) {
  .section-faq .accordion .card .btn.btn-link div:first-child {
    padding-right: 20px;
  }
}

.section-faq .accordion .card-header {
  border-bottom: 1px solid #40a80e;
  background: transparent;
  padding: 0.25rem 1.25rem;
}

.section-faq .accordion .card,
.section-faq .accordion .card:first-of-type,
.section-faq .accordion .card:not(:first-of-type):not(:last-of-type) {
  background: #fff;
  border-radius: 6px;
}

.section-faq .accordion .section-faq-tab-content {
  z-index: 99999;
  background: white none repeat scroll 0% 0%;
  border-top: 1px solid #40a80e;
}

.faq-form-subtitle {
  text-align: center;
  color: #45484a;
}

.faq-form-title {
  font-size: 22px;
  color: #333637;
}

.section-faq .form-control {
  border-color: #40a80e;
}

.divider.divider-green {
  background-color: #6ccc4a;
}

.section-faq h2.h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section-faq-accordion-controls {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 991px) {
  .section-faq-form {
    margin-top: 2rem;
  }
}

.section-faq-accordion-controls::before {
  content: " ";
  border: 1px solid #40a80e;
  border-top-color: #cccccc;
  border-top-style: solid;
  border-top-width: 1px;
  border-right-color: #cccccc;
  border-right-style: solid;
  border-right-width: 1px;
  border-bottom-color: #cccccc;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  width: 32px;
  height: 100%;
  position: absolute;
  transform: translateX(-12px);
  border-bottom: none;
  border-top: none;
  border-right: none;
  top: 0;
}

.section-faq-form .card {
  box-shadow: 0px -4px 16px rgba(0, 0, 0, 0.25);
  border-radius: 22px;
  border: 1px solid #25b122;
}

.section-faq .accordion .card-header {
  padding-right: 10px;
}

.section-faq h5.faq-form-title {
  margin-top: 1.25rem;
}

.text-arrow-rounded::before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  height: 27px;
  width: 50px;
  border-top: 1px solid #40a80e;
  transform: translateY(0px) translateX(8px) rotate(-45deg);
  -webkit-transform: translateY(0px) translateX(8px) rotate(-45deg);
}

.text-arrow-rounded::after {
  content: " ";
  position: absolute;
  right: 0;
  top: 0;
  height: 27px;
  width: 50px;
  border-top: 1px solid #40a80e;
  transform: translateY(0px) translateX(-4px) rotate(45deg);
  -webkit-transform: translateY(0px) translateX(-4px) rotate(45deg);
}

.text-arrow-rounded {
  position: relative;
}

.section-directions label {
  font-weight: 500;
  font-size: 1.175rem;
}

.section-directions-forms {
  z-index: 999;
  position: relative;
}

@media screen and (max-width: 991px) {
  .section-directions-forms > [class^="col-lg"] {
    margin-top: 1rem;
  }
}

.section-directions-forms .form-control {
  height: calc(2.75rem + 2px);
}

@media screen and (min-width: 767px) {
  .section-directions-forms .form-group {
    margin: 0 40px;
  }
}

.section-directions-map img {
  transform: rotate(-8.5deg);
}

.section-directions-undertitle h5 {
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: -0.5px;
}

.section-directions-undertitle h6 {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: -0.5px;
}

a:hover {
  color: #1BAF42;
  text-decoration: underline;
}

.section-back-to-top {
  text-align: center;
  margin-top: 1rem;
}

.section-back-to-top button {
  transition: 0.2s;
  border-bottom: 2px solid #1BAF42;
  color: #000;
  border-radius: 0;
  white-space: unset;
  padding-left: 0;
  padding-right: 0;
}

.section-back-to-top button:hover {
  color: #1a7b00;
}

.section-back-to-top i {
  margin-left: 0.25rem;
  font-size: 12px;
  color: #40a80e;
}

@media screen and (max-width: 767px) {
  .section-reviews-index .nav-item {
    padding: 0 15px;
    align-self: center;
    width: 100%;
    text-align: center;
  }

  .section-reviews-index .nav-item:last-child {
    margin-top: 10px;
  }

  .section-reviews-index .nav-tabs .nav-link {
    opacity: 0.4;
  }

  .section-reviews-index .nav-tabs .nav-link.active {
    border: none;
    opacity: 1;
  }
}

@media screen and (max-width: 576px) {
  .section-faq h5.faq-form-title {
    padding-top: 30px;
  }
}

@media screen and (max-width: 767px) {
  .vehicle-slider__images .slick-arrow,
  .tab-content-slider .btn-outline {
    display: none !important;
  }

  .vehicle-slide__image {
    width: 100%;
  }
}

.btn-group.btn-group-toggle > .btn {
  transition: 0.2;
}

.btn-group.btn-group-toggle > .btn:not(.active) {
  opacity: 0.65;
}

.cursor-pointer {
  cursor: pointer;
}

#imagePreviewModal .modal-lg {
  max-width: 960px;
}

.breadcrumb {
  background-color: transparent;
  border-bottom: 1px solid rgba(108, 204, 74, 0.54);
  padding: 0rem;
  border-radius: 0;
}

.breadcrumb-item {
  font-size: 1.175rem;
}

.breadcrumb-item a {
  color: #45484a;
}

.breadcrumb-item.active {
  color: #26570e;
}

.color-default {
  color: #45484a;
}

.section-about {
  background: url('/static/img/doroga 6.png');
  background-repeat: no-repeat;
  background-size: cover;
}

.text-medium {
  font-weight: 500;
}

.section-about__items {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.section-about__items__item {
  display: flex;
  align-items: flex-start;
}

.section-about__items-container {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.section-about__items .section-about__items__item:first-child {
  margin-top: 1.5rem;
}

.section-about__items__item i {
  font-size: 1.15rem;
  padding: 10px;
  color: #40a70f;
  border: 1px solid #40a70f;
  border-radius: 50%;
}

.section-about__items__item > div {
  font-size: 1.05rem;
  color: #45484a;
  margin-left: 1rem;
}

.section-about__items-container .btn.btn-shadow {
  font-size: 1.1rem;
}

.green {
  color: #3fab0c;
}

.grey {
  color: #585e62;
}

.section-about-form__title {
  font-weight: 400;
  font-size: 1.5875rem;
}

.section-about-form__headtitle {
  font-weight: 500;
  background: transparent;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  padding-left: 1rem;
}
.section-about ul{
    list-style: disc;
    padding-left: 1.3em;
    padding-bottom: 1.3em;
}

.section-requisites-form {
  font-size: 1.1rem;
}

@media screen and (max-width: 991px) {
  .section-about__items .section-about__items__item {
    margin-top: 2rem;
  }
}

@media screen and (max-width: 576px) {
  .section-about-form .mx-3,
  .section-requisites-form .mx-3 {
    margin-left: 0.1rem !important;
    margin-right: 0.1rem !important;
  }

  h2 {
    font-size: 1.5rem;
  }

  .breadcrumb-item {
    font-size: 0.9rem;
  }

  .section-about__items__item i {
    font-size: 1.05rem;
    padding: 5px;
  }
}

.section-contacts-inner {
  font-size: 1.25rem;
  height: 100%;
}

.return-back-button a {
  color: #919390;
}

.return-back-button a i {
  font-size: 1.1rem;
  margin-top: 0.1rem;
  color: #65bf45;
}

.section-billing ul {
  list-style: disc;
  list-style-position: inside;
}

.section-billing ul li {
  font-size: 1.0875rem;
}

.section-billing h6 {
  font-size: 1.2rem;
}

.section-billing p {
  margin-top: 1rem;
  font-size: 1.1rem;
}

.text-link {
  transition: 0.2s;
}

.text-link:hover {
  color: unset;
  opacity: 0.5;
}

.small-1 {
  font-weight: 400;
  font-size: 94%;
}

.text-body {
  font-size: 1.1rem;
}

/* ORDER SUCCESS SECTION */
.section-order-success .order-success__message {
  min-height: 250px;
}

@media screen and (max-width: 767px) {
  .wrapper-header__main .navbar {
    padding: 0.5rem 15px !important;
  }

  .content-header {
    margin-top: 0px;
  }

  .content-header__content {
    text-align: left;
  }
}

@media screen and (max-width: 576px) {
  .wrapper-header__main .brand-logo {
    max-width: 120px;
  }

  .navbar .brand-logo.navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
  }

  .navbar .text-link {
    display: flex;
    align-items: center;
  }

  .navbar .text-link i {
    font-size: 54px;
  }
}
.navbar .text-link i{
color:#18993a;
}
.text-arrow-rounded-collapsable {
  cursor: pointer;
}

.text-arrow-rounded-collapsable,
.text-arrow-rounded-collapsable::before,
.text-arrow-rounded-collapsable::after {
  transition: 0.2s;
}

.text-arrow-rounded-collapsable::before,
.text-arrow-rounded-collapsable::after {
  height: 0;
  width: 0;
}

.text-arrow-rounded-collapsable.card-title {
  margin-bottom: 0 !important;
}

.text-arrow-rounded-collapsable.collapsed span {
  border-color: transparent;
}

@media screen and (max-width: 991px) {
  .navbar .navbar-nav {
    margin-right: 0 !important;
  }

  .wrapper-header__main #nav_menu ul > li:not(:last-child) {
    margin-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .text-arrow-rounded-collapsable {
    font-size: 1.25rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
}

@media screen and (max-width: 576px) {
  .text-arrow-rounded-collapsable {
    font-size: 1rem !important;
  }
}

@media screen and (min-width: 992px) {
  .section-calc {
    padding-right: 48px;
    padding-left: 48px;
  }
}

.section-calc .container .content-header__title {
  margin-top: 80px;
  margin-bottom: 0;
}

.section-calc {
  background: url('/static/img/road-bg.png');
}

@media screen and (max-width: 576px) {
  .section-calc .container .content-header__title {
    margin-top: 10px;
    padding-bottom: 18px !important;
  }
}

.section-calc input.form-control-custom {
  border-color: #B4B0B0;
}

.section-calc .transport-calc-form {
  display: flex;
  flex-direction: column;
}

.section-calc .transport-calc-form-input {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #B4B0B0;
  border-radius: 0;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.95);
}

.section-calc .transport-calc-form-input__content {
  display: flex;
  flex-direction: row;
  padding: 1rem 0;
}

.section-calc .transport-calc-form-input__calculated-content {
  display: none;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  padding: 1.25rem;
}

.section-calc .transport-calc-form-input__calculated-content__checkbox {
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-calc .transport-calc-form-input__calculated-content__result {
  font-weight: 500;
}

.section-calc .transport-calc-form-input__calculated-content__button {
  font-weight: 500;
}

.section-calc .transport-calc-form-input__calculated-content__button {
  text-decoration: underline;
  color: #1BAF42;
}

.section-calc .transport-calc-form-input.calculated .transport-calc-form-input__content {
  display: none !important;
}

.section-calc .transport-calc-form-input.calculated .transport-calc-form-input__calculated-content {
  display: flex !important;
}

.section-calc .transport-desc-input {
  display: flex;
  flex-direction: column;
}

.section-calc .transport-desc-input .transport-calc-form-input__content {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .section-calc .transport-desc-input .transport-calc-form-input__content {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

.section-calc .transport-desc-input__hint {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: #6D6868;
}

@media screen and (max-width: 576px) {
  .section-calc .transport-desc-input__form .form-group.form-row > .col-12 {
    margin-bottom: 10px;
  }
  .section-calc .transport-desc-input__hint {
    padding:7px;
  }
  .transport-desc-input_form__buttons button{
    width: 90%;
    margin: 0 auto !important;
    display: block;
    margin-bottom: 11px !important;
  }

  .section-calc .transport-desc-input__form .form-group.form-row > .col-12 div.small {
    margin-top: -5px;
  }

  .section-calc .transport-desc-input__form__buttons > button:last-of-type {
    margin-left: 0 !important;
    margin-top: 10px;
  }
}

.section-calc .transport-shipping-info-input {
  display: flex;
  flex-direction: column;
}

.section-calc .transport-shipping-info-input .transport-calc-form-input__content {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .section-calc .transport-shipping-info-input .transport-calc-form-input__content {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

@media screen and (max-width: 576px) {
  .section-calc .transport-shipping-info-input__form .col-12 {
    margin-top: 15px;
  }
}

.section-calc .transport-cost-input {
  display: flex;
  flex-direction: column;
}

.section-calc .transport-cost-input .transport-calc-form-input__content {
  display: flex;
  flex-direction: column;
}

.section-calc .transport-cost-input .transport-cost-input-msg {
  position: relative;
}

.section-calc .transport-cost-input .transport-cost-input-msg__title {
  font-weight: bold;
  color: #1BAF42;
  font-size: 1rem;
}

.section-calc .transport-cost-input .transport-cost-input-msg__content {
  border-color: #B4B0B0;
  border-style: solid;
  border-width: 1px;
  padding: 0.5rem 0.75rem;
  border-radius: 5px;
}

.section-calc .transport-calc-form-input-title {
  align-items: center;
  display: flex;
  flex-direction: row;
  padding: 0.5rem 1.25rem;
  cursor: pointer;
}

.section-calc .transport-calc-form-input-title:not(.collapsed) {
  border-bottom: 1px solid #B4B0B0;
}

@media screen and (min-width: 991px) {
  .section-calc .transport-calc-form-input-title i.fa {
    font-size: 1rem;
  }
}

.section-calc .transport-calc-form-input-title__step {
  font-size: 1rem;
  color: #1BAF42;
  font-weight: 600;
  flex: 0 0 auto;
}

@media screen and (max-width: 576px) {
  .section-calc .transport-calc-form-input-title__step {
    text-align: center;
    font-size: 14px;
  }
}

.section-calc .transport-calc-form-input-title__desc {
  font-size: 1rem;
  font-weight: 600;
  flex: 1 1 100%;
  margin-left: 0.5rem;
}

@media screen and (max-width: 576px) {
  .section-calc .transport-calc-form-input-title__desc {
    text-align: center;
    font-size: 16px;
  }
}


@media screen and (max-width: 576px) {
  .section-calc .transport-kind-input-item {
    margin-top: 15px;
  }
}

.transport-kind-input-item:not(:last-child) {
  border-right: 1px solid #B4B0B0;

}


@media sreen and (max-width: 1099px) {
  .transport-kind-input-item__inner {
    margin-top: 0.5rem;
  }
}

.section-calc .transport-kind-input-item__image {
  width: auto;
  height: 90px;
  overflow: hidden;
  padding: 8px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

@media screen and (max-width: 576px) {
  .section-calc .transport-kind-input-item__image {
    height: 54px;
  }
}

.section-calc .transport-kind-input-item__image:hover {
  background: #f1f1f1;
}

.section-calc .transport-kind-input-item__image img {
  width: 200px;
  height: auto;
}

@media screen and (max-width: 576px) {
  .section-calc .transport-kind-input-item__image img {
    width: 160px;
  }
}

.section-calc .transport-kind-input-item__name {
  text-align: center;
  margin-top: 1rem;
  font-weight: 600;
}

.btn-shadow.btn-lg {
  letter-spacing: 0.025rem;
}

@media screen and (min-width: 992px) {
  .btn-shadow.btn-lg {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media screen and (max-width: 576px) {
  .footer-wrapper > .container > .row {
    margin-top: 0.5rem;
  }
}

@media screen and (max-width: 576px) {
  .footer-wrapper .footer-item {
    text-align: center;
  }
}

@media screen and (max-width: 576px) {
  .btn-lg {
    font-size: 1rem;
  }
}

.btn-outline-success {
  border-radius: 20px;
  border-color: #0E9030;
  border-width: 2px;
  color: #fff;
}

.navbar-nav.navbar-order button {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  letter-spacing: 0.0125rem;
}

.content-header__text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 5rem 0;
}

.content-header * {
  font-family: "Montserrat", sans-serif;
}

.content-header__text__header {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.25;
}

.content-header__text__action {
  margin-top: 4rem;
  text-align: center;
}

.navbar-light .navbar-toggler-icon {
    background-image: url('/static/img/burger-menu.png') !important;
    width: 50px;
    height: 50px;
}

.content-header__text__action button,
.content-header__text__action a {
  font-size: 1.2rem;
  font-weight: 600;
  background: #18993a;
  box-shadow: -6px 4px 70px rgba(27, 175, 66, 0.51);
  border-radius: 20px;
  padding: 0.5rem 2rem;
  text-transform: uppercase;
}

.transport-cost-input .transport-calc-form-input__content {
  padding: 1rem 1.5rem;
}

header.wrapper-header {
  font-family: "Open Sans", sans-serif;
}

h1 {
  font-weight: bold;
  font-size: 1.675rem;
}

.transport-desc-input_form__buttons button {
  padding: 0.375rem 1.675rem;
  font-weight: 500;
}

.btn-success {
  background: #1BAF42;
  border-color: #1BAF42;
}

.btn-outline-primary {
  border-color: #263360;
  color: #263360;
}

.btn-outline-primary:hover {
  background: #263360;
  border-color: #263360;
}

.section-characteristics {
  padding-top: 3rem;
  padding-bottom: 2.25rem;
}

.section-characteristics__item {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.section-characteristics__item__image {
  height: 72px;
}

.section-characteristics__item__title {
  margin-top: 1rem;
  text-align: center;
  color: #1BAF42;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.4;
  letter-spacing: 0.4px;
}

.section-company {
  background: #000;
  background-image: url('/static/img/7 983.png');
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: left;
  padding: 3rem 0;
  color: #fff;
}

.section-company .section-company__heading {
  font-size: 1.75rem;
  font-weight: 600;
  text-align: center;
}

.section-company .section-company__highlight > span {
  color: #1BAF42;
}

.section-company .section-company__subheading {
  font-size: 1.15rem;
  font-weight: 500;
  margin-top: 1.25rem;
}

.section-company .section-company__second {
  display: block;
  flex-direction: column;
  justify-content: space-between;
}

.section-company .section-company__headline {
  font-size: 1.6rem;
  font-weight: 600;
}

.section-company .section-company__block {
  display: flex;
  align-items: center;
  margin-top: 1rem !important;
}

.section-company .section-company__block__text {
  font-size: 1.15rem;
  margin-left: 1rem;
  font-weight: 500;
}

.section-company .section-company__block__image {
  width: 60px;
  min-width: 60px;
}

.section-company__action {
  width: 100%;
  text-align: center;
  margin-top: 2.5rem;
}

.section-company__action button,
.section-company__action a {
  background: #1BAF42;
  box-shadow: -6px 4px 70px rgba(27, 175, 66, 0.51);
  border-radius: 20px;
  padding: 0.75rem 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-size: 1.25rem;
  font-weight: 600;
}

.section-reviews-index {
  background: url('/static/img/119f60712f7e7f68788df5d34b991763 5.png');
  background-repeat: no-repeat;
  background-size: cover;
  padding: 2rem 1rem;
  padding-bottom: 4rem;
}

.section-reviews-index__inner {
  background: rgba(255, 255, 255, 0.65);
  padding: 1.5rem 0;
  border-radius: 4px;
}

h3 {
  font-size: 1.5rem;
}

.tab-content-slider__item__fixed img {
  max-height: 400px;
}

.section-howworks {
  background: #000;
  background-image: url('/static/img/7 4.png');
  background-repeat: no-repeat;
  background-size: cover;
}

.section-howworks__inner {
  background: url('/static/img/voz2 2.png');
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: left;
  padding: 2.5rem 0;
  padding-top: 4rem;
  color: #fff;
}

.section-howworks__inner .section-howworks__line:not(:first-child) {
  margin-top: 1rem;
}

.section-howworks h3 {
  margin-left: 1.4rem;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.section-howworks__line {
  display: flex;
  align-items: flex-start;
}

.section-howworks__line__num {
  color: #1BAF42;
  font-weight: bold;
  font-size: 1.1rem;
}

.section-howworks__line__text {
  font-weight: 500;
  font-size: 1.05rem;
  margin-left: 1rem;
  letter-spacing: 0.3px;
}

.section-howworks__inner > .container {
  position: relative;
}

.section-howworks__inner .section-howworks__clients {
  position: absolute;
  width: 160px;
  right: 0;
  top: -100px;
  background: #1BAF42;
  padding: 1.375rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
}

.section-about__block {
  background: rgba(255, 255, 255, 0.6);
  display: flex;
  flex-direction: column;
  padding: 2rem 3rem;
}

.section-about__block__item {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 0.9rem;
}

.section-about__block__item:not(:first-child) {
  margin-top: 1.25rem;
}

.section-about__block__item__text {
  margin-left: 1.375rem;
}

.section-about__blockparent {
  border-right: 2px solid #cfcfcf;
}

.section-about__metrics__num {
  font-size: 2.25rem;
  font-weight: bold;
  color: #1BAF42;
}

.section-about__metric {
  margin-top: 2.25rem;
}

.section-about__metrics {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-about__metrics__text {
  margin-top: 0.5rem;
  text-align: center;
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  .section-about__metrics:not(:first-child) {
    margin-top: 1.25rem;
  }
}

.section-about__reasons {
  background: #000;
  background-image: url('/static/img/7 984.png');
  background-position: left;
  background-repeat: no-repeat;
  color: #fff;
}

.section-about__reasons__block {
  display: flex;
  align-items: flex-start;
}

.section-about__reasons__block:not(:first-child) {
  margin-top: 1.275rem;
}

.section-about__reasons__block__item {
  display: flex;
  flex-direction: row;
  flex: 0 0 50%;
  font-weight: 500;
}

.section-about__reasons__block__item__num {
  font-weight: bold;
  font-size: 1.1rem;
  color: #1BAF42;
}

.section-about__reasons__block__item__text {
  margin-left: 1.25rem;
}

.section-about__reasons__blocks {
  margin-top: 1.875rem;
}

@media screen and (max-width: 991px) {
  .section-about__reasons__headline {
    margin-top: 1.5rem;
  }
}

.section-about__worktime__block {
  font-weight: 600;
  background: rgba(255, 255, 255, 0.6);
  padding: 1rem 1.5rem;
}

.section-about__worktime__block h5 {
  text-align: center;
  font-weight: bold;
}

.section-about__worktime {
  margin-top: 1.25rem;
}

.section-about__worktime > div {
  font-size: 1.1rem;
  margin-top: 0.375rem;
}

.section-about__worktime__second > div {
  margin-top: 0.75rem;
}

.section-about__worktime > div > span {
  color: #1BAF42;
}

.section-about__worktime__block {
  height: 100%;
}

.section-directions-index {
  background-image: url('/static/img/119f60712f7e7f68788df5d34b991763 7.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.without-background {
  background-image: none;
}

.bg-white {
  background: #fff;
}

.section-directions-index {
  background-image: url('/static/img/doroga 6.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.section-directions-index__inner {
  padding: 1.5rem 2rem;
  background: #fff;
  overflow:scroll;
}

.section-directions-index__inner table td a {
  color: #1BAF42;
}

.section-directions-index__inner table tbody {
  border-bottom: 2px solid #dee2e6;
}

.container.container-large {
  max-width: 1280px;
}
.section-about ol {
  list-style: decimal;
  padding-bottom:1.3em;
  list-style-position: inside;
}
.section-direction__info{
  text-align:center;
}
.section-direction__info .btn.btn-shadow{
    font-size: 1.2rem;
}
.section-faq-accordion__item__header__inner{
    cursor:pointer;
    display: flex;
    justify-content: space-between;
    border: 1px solid #1BAF42;
    border-radius: 10px;
    padding: 11px;
    background:#212d31;
    color:#fff;
}
.section-faq-accordion__item{
    border: 1px solid #1BAF42;
    border-top:0px;
    border-radius: 10px;    
    margin-bottom: 21px;  
    margin-top: 21px;
}
.send_question_form input,
.send_question_form textarea{
    width: 100%;
    max-width: 500px;
    padding:7px;
    border: 1px solid #1BAF42;
}
.send_question_form{
  margin: 0 auto;
}

.send_question_form .send_question{ 
    border-radius: 20px;
    border-color: #0E9030;
    border-width: 2px;
    color: #fff;
    background:#212d31;
    padding: 7px 11px 7px 11px;
}
.send_question_form .send_question:hover{ 
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}
.section-direction{
  padding:0;
}
#cookie_notification {
  display: none;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  position: fixed;
  bottom: 15px;
  left: 50%;
  width: 900px;
  max-width: 90%;
  transform: translateX(-50%);
  padding: 25px;
  background-color: white;
  border-radius: 4px;
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
  z-index: 10000000;
}
#cookie_notification .btn {
    background-color: #18993a;
    color: #ffffff;
}
#cookie_notification.show {
  display: flex;
}
#cookie_notification p {
  margin: 0;
  font-size: 0.8rem;
  text-align: left;
}
@media (min-width: 576px) {
  #cookie_notification.show {
    display: flex;
  }
}
@media (max-width: 575px) {
  #cookie_notification {
    flex-direction: column;
  }
}
@media (max-width: 400px) {
  #cookie_notification.show .btn {
    width: 100%;
  }
}