* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: none;
}

html {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background-color: #DED4B3;
  scroll-behavior: smooth;
  overflow-x: hidden;
  padding-top: 70px;
}

header {
  position: fixed;
  top: 0;
  display: flex;
  align-items: center;
  padding: 0 15px;
  min-height: 70px;
  border-bottom: 1px solid #DED4B3;
  z-index: 2;
  width: 100vw;
}
header::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #1F1A17;
  z-index: -1;
}
header .header_logo_container {
  flex: 0 0 100px;
  max-width: 100px;
  margin-right: auto;
}
header .header_logo_container img {
  max-width: 100px;
}
header .header_navigation_toggler {
  border: 1px solid #DED4B3;
  border-radius: 5px;
  min-width: 60px;
  min-height: 50px;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .header_navigation_toggler span {
  width: 30px;
  height: 2px;
  position: relative;
  background-color: #DED4B3;
  transition: all 0.3s;
}
header .header_navigation_toggler span::before, header .header_navigation_toggler span::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  background-color: #DED4B3;
  left: 0;
  top: calc(100% + 6px);
  transition: all 0.3s;
}
header .header_navigation_toggler span::before {
  top: -8px;
}
header .header_navigation_toggler.active span {
  transform: rotate(180deg);
  background-color: transparent;
}
header .header_navigation_toggler.active span::before {
  transform: translateY(8px) rotate(-45deg);
}
header .header_navigation_toggler.active span::after {
  transform: translateY(-8px) rotate(45deg);
}
@media (min-width: 979px) {
  header .header_navigation_toggler {
    display: none;
  }
}
header .header_navigation_list {
  display: block;
  position: absolute;
  z-index: -2;
  top: 70px;
  left: 0;
  list-style-type: none;
  width: 100%;
  text-align: center;
  background-color: #1F1A17;
  padding: 15px;
  transform: translateY(-100%);
  transition: transform 0.3s ease-out;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}
header .header_navigation_list.active {
  transform: translateY(0);
}
@media (min-width: 979px) {
  header .header_navigation_list {
    display: flex;
    box-shadow: none;
    position: static;
    transform: none;
    padding-right: 0;
  }
}
header .header_navigation_item {
  margin-bottom: 10px;
}
header .header_navigation_item a {
  color: #DED4B3;
  text-decoration: none;
  font-size: 18px;
  position: relative;
  overflow: hidden;
  display: block;
}
header .header_navigation_item a::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #DED4B3;
  transition: transform 0.3s ease-out;
  transform: translateX(100%);
}
@media (min-width: 979px) {
  header .header_navigation_item a:hover::before {
    transform: translateX(0%);
  }
}
header .header_navigation_item:last-child {
  margin-bottom: 0;
}
@media (min-width: 979px) {
  header .header_navigation_item {
    margin: 0 15px;
  }
}

.main_container {
  margin: 0 auto;
  width: 100%;
  max-width: 1920px;
}

.section_block {
  display: flex;
  flex-wrap: wrap;
}
.section_block.--first {
  margin-top: -70px;
}
.section_block.--second {
  background-color: #DED4B3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.section_block.--second::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/tire.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 90%;
  opacity: 0.02;
  filter: invert(7%) sepia(38%) saturate(383%) hue-rotate(90deg) brightness(96%) contrast(90%);
}
.section_block.--third {
  background-color: #171F1A;
  min-height: unset;
  padding: 20px;
}
@media (min-width: 979px) {
  .section_block {
    min-height: 100vh;
  }
}

.main_photo_container {
  display: none;
  flex: 0 0 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  background-image: url(../img/gallery/6.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position-y: center;
}
@media (min-width: 979px) {
  .main_photo_container {
    display: block;
  }
}
.main_photo_container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(23, 31, 26, 0.4901960784) 80%, #171F1A 100%);
  background-blend-mode: multiply;
  z-index: 1;
}
@media (min-width: 979px) {
  .main_photo_container {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.main_photo_image {
  min-height: 100%;
  max-height: 100vh;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
}

.main_info_section {
  flex: 0 0 100%;
  max-width: 100%;
  min-height: 100vh;
  background-color: #171F1A;
  position: relative;
  padding-top: 85px;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.main_info_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/tire.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 90%;
  opacity: 0.02;
  filter: invert(95%) sepia(9%) saturate(791%) hue-rotate(353deg) brightness(93%) contrast(87%);
}
@media (min-width: 979px) {
  .main_info_section {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.main_info_header {
  font-family: "Bodoni Moda", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  color: #DED4B3;
  font-size: 83px;
  position: relative;
  z-index: 1;
  text-shadow: 1px 1px 2px #1A171F;
}
@media (min-width: 979px) {
  .main_info_header {
    left: -50%;
  }
}

.main_info_subheader {
  width: -moz-max-content;
  width: max-content;
  padding: 5px 15px;
  position: relative;
  border-bottom: 1px solid #DED4B3;
  color: #DED4B3;
  margin-bottom: 20px;
  font-size: 30px;
}

.main_info_desc {
  color: #DED4B3;
  font-size: 25px;
  letter-spacing: 1.5;
}

.section_header {
  font-family: "Bodoni Moda", serif;
  color: #DED4B3;
  text-align: center;
  flex: 0 0 100%;
  font-size: 35px;
  position: relative;
  z-index: 1;
  text-shadow: 1px 1px 2px #1A171F;
}
@media (min-width: 979px) {
  .section_header {
    font-size: 50px;
  }
}

.devider_by_img {
  width: 100%;
  min-height: 100px;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  scroll-margin-top: 70px;
}
@media (min-width: 979px) {
  .devider_by_img {
    min-height: 200px;
  }
}
.devider_by_img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #171F1A;
  opacity: 0.6;
}
.devider_by_img.--first {
  background-image: url(../img/gallery/2.webp);
}
.devider_by_img.--second {
  background-image: url(../img/gallery/4.webp);
}
.devider_by_img.--third {
  background-image: url(../img/gallery/6.webp);
}
.devider_by_img.--fourth {
  background-image: url(../img/gallery/8.webp);
}

.swiper {
  width: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
}
.swiper .swiper-button-next,
.swiper .swiper-button-prev {
  color: #171F1A;
}
.swiper .swiper-pagination-bullet-active {
  background-color: #DED4B3;
}

.camp_section_container {
  width: 100%;
  padding: 15px;
  display: flex;
  overflow: auto;
}
@media (min-width: 979px) {
  .camp_section_container {
    flex-wrap: wrap;
  }
}

.vehicle_card_wrapper {
  display: flex;
  margin-bottom: 30px;
  flex-wrap: wrap;
  flex: 0 0 100%;
  max-width: 90%;
  margin-right: 15px;
}
@media (min-width: 979px) {
  .vehicle_card_wrapper {
    max-height: 500px;
    flex-wrap: nowrap;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
    margin-right: 0;
  }
}
@media (max-width: 978px) {
  .vehicle_card_wrapper {
    position: relative;
  }
  .vehicle_card_wrapper::after {
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
  }
}
.vehicle_card_wrapper .vehicle_img_container {
  flex: 0 0 100%;
  max-width: 100%;
  overflow: hidden;
}
@media (min-width: 979px) {
  .vehicle_card_wrapper .vehicle_img_container {
    max-width: 50%;
    flex: 0 0 50%;
  }
}
.vehicle_card_wrapper .vehicle_img_container img {
  top: 50%;
  position: relative;
  transform: translateY(-50%) scale(1.02);
  max-height: 100%;
}
@media (max-width: 978px) {
  .vehicle_card_wrapper .vehicle_img_container img {
    width: 100%;
  }
}
@media (min-width: 979px) {
  .vehicle_card_wrapper:nth-child(even) img {
    transform: translate(-30%, -50%) scale(1.02);
  }
}
.vehicle_card_wrapper .vehicle_info_container {
  flex: 0 0 100%;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  background-color: #171F1A;
  color: #fff;
  padding: 15px;
  min-height: 323px;
}
@media (min-width: 979px) {
  .vehicle_card_wrapper .vehicle_info_container {
    flex: 0 0 50%;
  }
}
.vehicle_card_wrapper .vehicle_info_container h3 {
  flex: 0 0 100%;
  text-align: center;
  margin-bottom: 20px;
  font-size: 25px;
}
@media (min-width: 979px) {
  .vehicle_card_wrapper .vehicle_info_container h3 {
    margin-bottom: 40px;
    font-size: 45px;
  }
}
.vehicle_card_wrapper .vehicle_info_container .vehicle_details {
  flex: 0 0 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  align-items: center;
  margin-bottom: 20px;
  font-size: 20px;
  flex-direction: column;
}
@media (min-width: 979px) {
  .vehicle_card_wrapper .vehicle_info_container .vehicle_details {
    align-items: flex-start;
  }
}
.vehicle_card_wrapper .vehicle_info_container .vehicle_details-key {
  font-size: 20px;
  color: #DED4B3;
}

.kosa_gallery {
  max-width: 1000px;
  margin: 0 auto;
}

.contact_wrapper {
  width: 100%;
  padding: 15px;
  display: flex;
  flex-wrap: wrap;
  max-width: 1500px;
  margin: 0 auto;
}
.contact_wrapper iframe {
  max-height: 553px;
}
@media (max-width: 978px) {
  .contact_wrapper iframe {
    height: 300px;
  }
}
.contact_wrapper .contact_data_container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 15px;
  margin-bottom: 15px;
}
@media (min-width: 979px) {
  .contact_wrapper .contact_data_container {
    justify-content: space-evenly;
    padding-bottom: 15px;
  }
}
.contact_wrapper .contact_data_group {
  margin-bottom: 1.5rem;
  flex: 0 0 100%;
  max-width: 100%;
  text-align: center;
}
@media (min-width: 979px) {
  .contact_wrapper .contact_data_group {
    text-align: left;
    flex: unset;
    margin-bottom: 0;
  }
}
.contact_wrapper .contact_data_group h3 {
  margin-bottom: 15px;
  color: #fff;
}
.contact_wrapper .contact_data_group .contact_item {
  font-size: 20px;
  margin-bottom: 5px;
  display: block;
  text-decoration: none;
  color: #fff;
}
.contact_wrapper .form_container,
.contact_wrapper .map_container {
  flex: 0 0 100%;
  max-width: 100%;
}
@media (min-width: 979px) {
  .contact_wrapper .form_container,
  .contact_wrapper .map_container {
    padding-top: 15px;
  }
}
.contact_wrapper .contact_data_container {
  background-color: #1F1A17;
}
.contact_wrapper .map_container {
  margin-bottom: 15px;
}
@media (min-width: 979px) {
  .contact_wrapper .form_container {
    flex: 0 0 400px;
    max-width: 400px;
  }
  .contact_wrapper .map_container {
    flex: 1;
    margin-right: 15px;
  }
}

@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.form_container .contact_form {
  max-width: 100%;
  margin: 0 auto;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  padding: 15px;
}
@media (min-width: 979px) {
  .form_container .contact_form {
    max-width: 400px;
  }
}
.form_container .contact_form h2 {
  margin-bottom: 15px;
}
.form_container .contact_form .cars_container {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: space-between;
  margin-bottom: 15px;
}
.form_container .contact_form .cars_container input[type=radio] {
  display: none;
}
.form_container .contact_form .cars_container input[type=radio]:checked + label .img_wrapper {
  border-color: #171F1A;
}
.form_container .contact_form .cars_container h3 {
  flex: 0 0 100%;
}
.form_container .contact_form .cars_container .error_message {
  display: none;
  color: #e00000;
}
.form_container .contact_form .cars_container .error_message.has-error {
  display: block;
}
.form_container .contact_form .cars_container label {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: calc(50% - 5px);
  flex: 0 0 calc(50% - 5px);
  cursor: pointer;
}
.form_container .contact_form .cars_container label .img_wrapper {
  padding: 5px;
  border: 1px solid #dadada;
}
.form_container .contact_form .cars_container label .img_wrapper.error {
  border-color: #e00000;
}
.form_container .contact_form .cars_container label img {
  max-width: 173px;
  width: 100%;
}
.form_container .contact_form .cars_container label span {
  display: block;
}
.form_container .contact_form button[type=submit] {
  max-width: 150px;
  display: flex;
  margin: 0 auto;
  padding: 15px;
  background-color: #dadada;
  color: #1A171F;
  font-size: 15px;
  cursor: pointer;
}
.form_container .contact_form button[type=submit]:hover {
  background-color: #1A171F;
  color: #dadada;
}
.form_container .contact_form button[type=submit].loading {
  position: relative;
}
.form_container .contact_form button[type=submit].loading::before {
  content: url(../img/loading.png);
  position: absolute;
  top: 50%;
  left: 50%;
  height: 32px;
  width: 32px;
  transform: translate(-50%, -50%);
  z-index: 2;
  animation: rotate 1s infinite linear;
}
.form_container .contact_form button[type=submit].loading::after {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #dadada;
  position: absolute;
}

textarea,
input[type=email],
input[type=date] {
  resize: none;
  background-color: transparent;
  border: 1px solid #dadada;
  color: #1A171F;
  outline: none;
  margin-bottom: 15px;
  font-size: 15px;
  padding: 5px;
  font-family: "Poppins", sans-serif;
}
textarea:focus, textarea:active,
input[type=email]:focus,
input[type=email]:active,
input[type=date]:focus,
input[type=date]:active {
  border-color: #171F1A;
}

label[for=contactDate] {
  margin-bottom: 5px;
}

input[type=date] {
  font-size: 20px;
}

.pricing_wrapper {
  overflow-x: auto;
  margin: 0 auto;
}

.pricing_table {
  border: 1px solid #DED4B3;
  border-bottom: 0;
  border-right: 0;
  color: #DED4B3;
  border-collapse: collapse;
  font-size: 15px;
  margin: 0 auto;
}
@media (min-width: 979px) {
  .pricing_table {
    font-size: 20px;
  }
}
.pricing_table th, .pricing_table td {
  border: 1px solid #DED4B3;
  border-top: 0;
  border-left: 0;
  padding: 5px 15px;
}

.legend {
  margin-top: 15px;
  color: #DED4B3;
}

.choose_lang_page {
  width: 100vw;
  height: 100vh;
  background-color: #1F1A17;
  display: flex;
  justify-content: center;
  align-items: center;
}
.choose_lang_page .choose_lang_wrapper {
  text-align: center;
}
.choose_lang_page .choose_lang_wrapper h1 {
  color: #fff;
  margin-bottom: 15px;
}
@media (min-width: 979px) {
  .choose_lang_page .choose_lang_wrapper h1 {
    margin-bottom: 30px;
  }
}

footer {
  min-height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  background-color: #1F1A17;
}
footer .footer_wrapper {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-direction: column;
  padding: 15px;
}
@media (min-width: 979px) {
  footer .footer_wrapper {
    flex-direction: row;
  }
}
footer .footer_item {
  color: #DED4B3;
  text-decoration: none;
  flex: 1 0 0px;
}
footer .footer_item-main {
  font-size: 20px;
}
@media (max-width: 978px) {
  footer .footer_item-main {
    order: 1;
  }
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 15px 30px;
  font-size: 25px;
  opacity: 0;
  pointer-events: none;
  color: #fff;
  transition: opacity 0.3s;
}
.modal_mail--success {
  background-color: #58b758;
  color: #004000;
}
.modal_mail--error {
  background-color: #b75858;
  color: #400000;
}
.modal.open {
  opacity: 1;
}

.choose_lang_container {
  position: relative;
  padding: 0;
  margin-right: 15px;
}
@media (min-width: 979px) {
  .choose_lang_container {
    order: 1;
    margin-left: 15px;
  }
}
.choose_lang_container .current_lang {
  width: 20px;
  height: 15px;
  cursor: pointer;
}

.lang_list {
  position: absolute;
  display: none;
  top: 100%;
  right: 0;
  min-width: 20px;
  padding: 5px;
  list-style: none;
  background-color: #fff;
}
.lang_list.open {
  display: block;
}
.lang_list .lang_item {
  min-width: 57px;
}/*# sourceMappingURL=style.css.map */