* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html, body {
  width: 100%;
  min-width: 320px;
  color: #000;
  background: #fff;
  font: 16px/120% "Montserrat", sans-serif;
  cursor: default;
}

html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  height: auto !important;
  min-height: 100%;
  height: 100%;
  position: relative;
}

html, body, div, applet, object, iframe, blockquote, pre, abbr, acronym, address, big, select, input, textarea,
cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, sub, sup, tt, var, dd, dl, dt, fieldset, form, label, legend, caption, h1, h2, h3, h4, h5 {
  font: 16px/120% "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  border: 0;
}

a img, :link img, :visited img {
  border: 0;
}

p {
  padding: 0px;
  margin: 0px;
}

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

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

td {
  vertical-align: top;
}

a {
  cursor: pointer;
  outline: none;
  color: #000;
  text-decoration: none;
  font: 16px/120% "Montserrat", sans-serif;
}

a:hover {
  text-decoration: none;
}

.cl:after {
  content: "";
  display: block;
  clear: both;
}

.hand {
  cursor: pointer;
}

.display_none {
  display: none;
}

input, select, textarea, button {
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: unset;
  border: unset;
}

textarea {
  outline: none;
  resize: none;
  overflow: auto;
}

ul {
  list-style: none;
}

/* site styles */
.footer, .top_block, .header, .content {
  max-width: 1450px;
  padding: 0 20px;
  margin: 0 auto;
}

body.no_scroll {
  overflow: hidden;
}

.hidden {
  display: none;
}

h1 {
  font-size: 80px;
  line-height: 130%;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 5%;
  text-align: center;
  margin-top: 50px;
}
h1 > span {
  display: block;
  text-align: center;
  font-size: 35px;
  line-height: 120%;
}

h2 {
  font-size: 30px;
  font-weight: 700;
  color: #2E3F38;
  margin-bottom: 20px;
}

p {
  font-size: 14px;
  line-height: 180%;
  font-weight: 500;
  color: #666666;
}
.btn a{
    color: #fff;
}
.btn {
  display: block;
  width: 100%;
  height: 38px;
  background: #2E3F38;
  font-size: 12px;
  font-weight: 700;
  line-height: 34px;
  border: 2px solid #fff;
  border-radius: 25px;
  text-align: center;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}
.btn:hover {
  opacity: 0.7;
}

.top_wrap {
  height: 1000px;
  background: url(../images/top_bg.jpg) center/cover no-repeat;
  padding-top: 1px;
}

header {
  position: relative;
  z-index: 5;
  padding: 18px 0;
}

.header {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.logo {
  max-width: 131px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.menu_block {
  flex: 1;
}

.h_menu > ul {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 70px;
}
.h_menu > ul > li > a {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  transition: 0.3s;
}
.h_menu > ul > li > a:hover {
  opacity: 0.7;
}

.h_mob_btns {
  display: none;
  width: calc(100% - 20px);
  justify-content: space-between;
  align-items: center;
  position: absolute;
  bottom: 22px;
  left: 10px;
}
.h_mob_btns > div {
  width: calc(50% - 12px);
}

.h_tel {
  display: inline-block;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  position: relative;
  z-index: 1;
}

.h_btn {
  flex-shrink: 0;
  max-width: 158px;
  position: relative;
  z-index: 1;
}

.burger {
  display: none;
  flex-shrink: 0;
  width: 28px;
  height: 18px;
  cursor: pointer;
  position: relative;
  margin-right: 10px;
}
.burger.opened span {
  height: 0;
}
.burger.opened span:before {
  width: 100%;
  top: 50%;
  transform: rotate(-45deg);
  background: #2E3F38;
}
.burger.opened span:after {
  width: 100%;
  top: 50%;
  transform: rotate(45deg);
  background: #2E3F38;
}
.burger:hover span:before {
  width: 100%;
}
.burger:hover span:after {
  width: 100%;
}
.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 6px;
  position: absolute;
  left: 0;
  top: 8px;
}
.burger span:before {
  display: block;
  content: "";
  width: 55%;
  height: 2px;
  background: #fff;
  border-radius: 6px;
  position: absolute;
  right: 0;
  top: -8px;
  transition: 0.3s;
}
.burger span:after {
  display: block;
  content: "";
  width: 55%;
  height: 2px;
  background: #fff;
  border-radius: 6px;
  position: absolute;
  left: 0;
  top: 8px;
  transition: 0.3s;
}

.top_block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
}

.tb_img {
  max-width: 257px;
  width: 100%;
}

.tb_info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  height: 54px;
  border-radius: 25px;
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12.5px);
  padding: 5px 40px;
}
.tb_info > div {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tb_info > div > span {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
.tb_info > div > img {
  width: 26px;
}

.tb_btns {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
}
.tb_btns > div {
  max-width: 158px;
}

.about {
  transform: skewY(-5deg);
  background: #fff;
  margin: -100px 0;
}
.about .content {
  background: #FFFFFF;
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.05);
  transform: translateY(-100px);
  padding-right: 0;
}

.a_blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.ab_left {
  padding: 90px 30px 90px 90px;
  transform: skewY(5deg);
}
.ab_left p {
  max-width: 454px;
}

.ab_right {
  max-width: 720px;
}

.ab_right_img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vehicle_gallery {
  transform: skewY(-5deg);
  background: #E8F4EF;
  margin-top: 140px;
  padding: 100px 0 80px;
}

.vg_items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}

.vg_item {
  display: flex;
  flex-direction: column;
}
.vg_item:nth-child(n+4) {
  display: none;
}
.vg_item > img {
  display: block;
  width: 100%;
}

.vgi_head {
  font-size: 20px;
  font-weight: 700;
  color: #2E3F38;
  margin-top: 50px;
  transform: skewY(5deg);
}

.vgi_text {
  font-size: 14px;
  line-height: 180%;
  font-weight: 500;
  color: #666666;
  margin-top: 10px;
  transform: skewY(5deg);
}

.vgi_btn {
  max-width: 158px;
  margin: 80px auto 0;
  transform: skewY(5deg);
}

.contacts {
  transform: skewY(-5deg);
  background: #fff;
  margin-top: 75px;
  padding: 90px 0 150px;
  position: relative;
  z-index: 1;
}
.contacts .content {
  background: #FFFFFF;
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.05);
  height: 480px;
}

.ct_block {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 70px 45px 0 75px;
}

.ct_img {
  position: absolute;
  right: 0;
  top: 0;
  transform: skewY(5deg);
}

.ct_left {
  max-width: 322px;
  width: 100%;
  transform: skewY(5deg);
}

.ctl_items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.ctl_item {
  position: relative;
  z-index: 1;
  padding-left: 60px;
}

.ctl_img {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FBFBFB;
  border-radius: 4px;
  position: absolute;
  left: 0;
  top: 0;
}
.ctl_img > img {
  width: 20px;
}

.ctl_head {
  font-size: 14px;
  line-height: 160%;
  color: #666666;
  font-weight: 500;
}

.ctl_text, .ctl_text a {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #2E3F38;
}

.ctlb_head {
  font-size: 14px;
  color: #2E3F38;
  font-weight: 700;
  margin-top: 30px;
}

.socials {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}
.socials > a {
  width: 22px;
  height: 22px;
  transition: 0.3s;
}
.socials > a > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.socials > a:hover {
  opacity: 0.7;
}

.ct_right {
  max-width: 450px;
  width: 100%;
  transform: skewY(5deg);
}
.ct_right:before {
  display: block;
  content: "";
  width: 538px;
  height: 494px;
  background: url(../images/ct_img.png) center/cover no-repeat;
  position: absolute;
  z-index: -1;
  left: -505px;
  top: -35px;
}

.form {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  padding: 46px 33px;
  background: linear-gradient(136.26deg, #2E3F38 0%, #0F2019 100%);
  border-radius: 15px;
  position: relative;
}

.f_head {
  font-size: 14px;
  line-height: 160%;
  font-weight: 500;
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
}
.f_head > span {
  display: block;
  font-size: 20px;
  line-height: 120%;
  text-align: center;
  font-weight: 700;
  margin-bottom: 7px;
}

.f_input {
  display: block;
  width: 100%;
  height: 50px;
  background: #41524B;
  margin-bottom: 20px;
  padding: 0 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
.f_input::placeholder {
  color: #fff;
}

.f_submit {
  height: 58px;
  line-height: 54px;
  margin-top: 10px;
}

.map {
  width: 100%;
  max-width: 1960px;
  height: 670px;
  margin-top: -195px;
}

footer {
  background: #1D2C26;
}

.footer {
  height: 65px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.footer .socials {
  margin-top: 0;
}

.copy {
  flex: 1;
  font-size: 11px;
  color: #fff;
  font-weight: 500;
  text-align: center;
}

.f_btn {
  max-width: 181px;
  min-width: 138px;
  border-radius: 1px;
  margin-right: 20px;
  line-height: 36px;
  border: 1px solid #56615C;
  background: unset;
}

@media only screen and (max-height: 550px) {
  .h_menu > ul {
    gap: 20px !important;
  }
} /*h_550*/
@media only screen and (max-width: 1380px) {
  .ct_block {
    padding: 40px 0 0 0;
  }
  .ct_right:before {
    left: -30dvw;
  }
} /*1380*/
@media only screen and (max-width: 1280px) {
  .content, .header, .top_block, .footer {
    padding: 0 10px;
  }
  .header {
    gap: 20px;
  }
  .logo {
    max-width: 115px;
  }
  .h_menu > ul {
    gap: 25px;
  }
} /*1280*/
@media only screen and (max-width: 1024px) {
  .top_wrap {
    height: unset;
    padding-bottom: 300px;
  }
  header {
    padding: 10px 0;
  }
  header.opened {
    background: #fff;
  }
  header.opened .h_tel {
    color: #2E3F38;
  }
  .header {
    height: 30px;
  }
  h1 {
    font-size: 50px;
  }
  h1 > span {
    font-size: 25px;
  }
  h2 {
    font-size: 24px;
  }
  .burger {
    display: block;
  }
  .menu_block {
    display: flex;
    align-items: center;
    width: 100%;
    height: calc(100dvh - 50px);
    padding: 30px 15px 90px;
    background: #fff;
    overflow: auto;
    position: absolute;
    top: -120dvh;
    right: 0;
    transition: 0.3s;
  }
  .menu_block.opened {
    top: 50px;
  }
  .h_menu {
    width: 100%;
  }
  .h_menu > ul {
    flex-direction: column;
    gap: 60px;
  }
  .h_menu > ul > li > a {
    color: #000;
  }
  .h_mob_btns {
    display: flex;
  }
  .h_tel_block {
    flex: 1;
    min-width: 140px;
    text-align: right;
  }
  .ab_left {
    padding: 45px 20px 30px;
  }
  .vehicle_gallery {
    margin-top: 70px;
    padding: 70px 0;
  }
  .contacts {
    padding: 0 0 100px;
  }
  .ct_right:before {
    display: none;
  }
} /*1024*/
@media only screen and (max-width: 768px) {
  h1 {
    font-size: 25px;
  }
  h2 {
    font-size: 18px;
  }
  p {
    font-size: 14px;
  }
  .top_wrap {
    padding-bottom: 270px;
  }
  .top_block {
    margin-top: 80px;
  }
  .tb_img {
    max-width: 172px;
  }
  .tb_btns {
    margin-top: 40px;
    gap: 24px;
  }
  .tb_btns > div {
    max-width: calc(50% - 12px);
  }
  .tb_info {
    padding: 5px 15px;
    width: 100%;
    gap: 30px;
  }
  .form {
    padding: 30px 16px;
  }
  .f_head > span {
    font-size: 16px;
  }
  .about {
    transform: skewY(0);
  }
  .about .content {
    margin: 0 10px;
    padding-left: 0;
  }
  .a_blocks {
    grid-template-columns: repeat(1, 1fr);
  }
  .ab_left {
    transform: skewY(0);
    padding-left: 30px;
  }
  .ab_left p {
    max-width: 100%;
  }
  .ab_right {
    max-width: 100%;
  }
  .vehicle_gallery {
    transform: skewY(0);
  }
  .vg_items {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px 20px;
  }
  .vgi_head {
    font-size: 16px;
    margin-top: 20px;
    transform: skewY(0);
  }
  .vgi_text {
    transform: skewY(0);
  }
  .vgi_btn {
    margin-top: 24px;
    transform: skewY(0deg);
  }
  .contacts {
    margin-top: 70px;
    transform: skewY(0deg);
    padding-bottom: 0;
  }
  .contacts .content {
    margin: 0 10px;
    height: unset;
  }
  .ct_block {
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
    gap: 65px;
  }
  .ct_left {
    transform: skewY(0);
    max-width: 100%;
    padding: 0 20px;
  }
  .ct_right {
    max-width: 100%;
    transform: skewY(0);
  }
  .map {
    margin-top: 70px;
    height: 480px;
  }
} /*768*/
@media only screen and (max-width: 600px) {
  .footer {
    height: unset;
    padding-top: 10px;
    padding-bottom: 50px;
  }
  .copy {
    align-items: center;
    width: 100%;
    height: 40px;
    line-height: 40px;
    background: #131D19;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .f_btn {
    margin-right: 0;
  }
} /*600*/
@media only screen and (max-width: 520px) {
  .header {
    gap: 15px;
  }
  .logo {
    max-width: 100px;
  }
  .h_tel_block {
    min-width: 92px;
  }
  .h_tel {
    font-size: 11px;
  }
  .h_btn {
    max-width: 80px;
    height: 26px;
    line-height: 22px;
    font-size: 9px;
  }
  .tb_info {
    height: unset;
    padding: 10px;
  }
  .tb_info > div {
    flex-direction: column;
    gap: 10px;
  }
  .vg_items {
    grid-template-columns: repeat(1, 1fr);
  }
} /*520*/
@media only screen and (max-width: 420px) {
  h1 {
    font-size: 22px;
  }
  h1 > span {
    font-size: 22px;
  }
} /*480*/
@media only screen and (max-width: 380px) {
  .ab_left {
    padding-left: 15px;
    padding-right: 15px;
  }
  .tb_info > div > span {
    font-size: 12px;
  }
  .f_btn {
    font-size: 10px;
  }
} /*380*/

/*# sourceMappingURL=style.css.map */
