/*
 * Theme Name: Crosschem Ukraine V3
 * Theme Uri: crosschem.com.ua
 * Description: sell AdBlue big party
 * Author: -LuxFero-
 */

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  scroll-behavior: smooth;
}

body {
  font: 400 15px/1.5 'Raleway', sans-serif;
  color: #fff;
  background: #0c0f16;
}

img,
picture {
  width: 100%;
  height: auto;
}

h1 {
  font-size: 55px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 35px;
}

h4 {
  font-size: 30px;
}

h5 {
  font-size: 25px;
}

h6 {
  font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1.4;
  font-weight: 600;
}

p {
  color: #c8c8c8;
  font-weight: 300;
  line-height: 2;
}

a {
  display: inline-block;
  text-decoration: none;
}

ul {
  list-style: none;
}

.visual-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

/** btn ----------------------- */

.btn-curve {
  background: transparent;
  padding: 12px 35px;
  border: 1px solid #1e1e1e;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}

.btn-curve:focus,
.btn-curve:hover {
  outline: none;
}

.btn-curve:hover:after {
  bottom: -30px;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

.btn-curve:hover span {
  color: #fff;
}

.btn-curve:after {
  content: '';
  position: absolute;
  top: -30px;
  left: -30px;
  right: -30px;
  bottom: 130%;
  background: #1e1e1e;
  -webkit-transform: rotate(-5deg);
  -ms-transform: rotate(-5deg);
  transform: rotate(-5deg);
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}

.btn-curve span {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}

.btn-curve.btn-lit {
  border-color: #fff;
  color: #fff;
}

.btn-curve.btn-lit:hover span {
  color: #75dab4;
}

.btn-curve.btn-lit:after {
  background: #fff;
}

.sub-title {
  position: relative;
  padding-left: 20px;
}

.sub-title h6 {
  font-weight: 300;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.sub-title span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #75dab4;
  position: absolute;
  left: 7px;
  bottom: 5px;
}

.sub-title span:first-of-type {
  bottom: 12px;
}

.sub-title span:last-of-type {
  left: 0px;
}

.title-box {
  font-size: 80px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  text-shadow: 0 8px rgba(255, 255, 255, 0.05);
  margin-bottom: 30px;
}

.alter-title-box {
  color: #75dab4;
  font-weight: 300;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 14px;
}

/** preloader ------- */

.pace {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99999999999999;
  position: fixed;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  border: 0px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}

.pace .pace-progress {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  max-width: 300px;
  position: fixed;
  z-index: 99999999999999;
  display: block;
  position: absolute;
  top: 0;
  right: 100%;
  height: 100%;
  width: 100%;
  background: #75dab4;
}

.pace.pace-inactive {
  width: 100vw;
  opacity: 0;
}

.pace.pace-inactive .pace-progress {
  max-width: 100vw;
}

#preloader {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: fixed;
  z-index: 9999;
}

#preloader:after,
#preloader:before {
  content: '';
  position: fixed;
  left: 0;
  height: 50%;
  width: 100%;
  background: #252531;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

#preloader:before {
  top: 0;
}

#preloader:after {
  bottom: 0;
}

#preloader.isdone {
  visibility: hidden;
  -webkit-transition-delay: 1.5s;
  -o-transition-delay: 1.5s;
  transition-delay: 1.5s;
}

#preloader.isdone:after,
#preloader.isdone:before {
  height: 0;
  -webkit-transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
  -o-transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
  transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
  -webkit-transition-delay: 1s;
  -o-transition-delay: 1s;
  transition-delay: 1s;
}

.loading-text {
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 10px;
  position: absolute;
  top: calc(50% - 30px);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #75dab4;
  font-family: 'Teko', sans-serif;
  z-index: 9999;
}

.loading-text.isdone {
  top: 50%;
  opacity: 0;
  -webkit-transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

/** wrapper -------*/

.wrap {
  display: grid;
  grid-template-columns: minmax(290px, 1fr);
  padding: 0 15px;
}

.container {
  min-width: 290px;
  width: 100%;
  margin: 0 auto;
  padding: 0 50px;
}

/** navbar ------- */

.navbar {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: transparent;
  border-bottom: 2px solid transparent;
  z-index: 999;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.navbar-toggler {
  display: none;
  width: 34px;
  height: 34px;
  background: transparent;
  border: none;
}

.navbar .logo {
  display: block;
  max-width: 150px;
}

.navbar .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.navbar .navbar-collapse {
  display: inline-block;
}

.navbar .navbar-nav {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.navbar .navbar-nav .nav-link {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  padding: 15px 7px;
  margin: 10px 15px;
  text-decoration: none;
}

.navbar.nav-scroll {
  background: #11141b;
  border-color: #181b21;
  padding: 0;
  position: fixed;
  top: -80px;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transform: translateY(80px);
  -ms-transform: translateY(80px);
  transform: translateY(80px);
}

.navbar .navbar-nav .nav-link {
  padding: 5px 0;
  display: block;
  text-align: center;
}

/** slider ------- */

.header-slider {
  position: static;
}

.header-slider.fixed-slider {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
}

.parallax-slider .swiper-slide {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 100vh;
  padding-bottom: 0;
}

.parallax-slider .swiper-slide__image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-size: cover;
  background-position: center;
}

.parallax-slider .swiper-slide__caption-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgba(38, 38, 38, 0.5);
}

.parallax-slider .caption h3 {
  font-size: 55px;
}

.parallax-slider .caption p {
  opacity: 0;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  -webkit-transition-delay: .5s;
  -o-transition-delay: .5s;
  transition-delay: .5s;
}

.parallax-slider .caption .btn-curve {
  opacity: 0;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  -webkit-transition-delay: .8s;
  -o-transition-delay: .8s;
  transition-delay: .8s;
  margin-top: 20px;
}

.parallax-slider .caption .btn-curve span {
  font-size: 15px;
  font-weight: 700;
  text-transform: capitalize;
}

.parallax-slider .caption .btn-curve:hover span {
  color: #0c0f16;
}

.header-slider .swiper-button-next::after,
.header-slider .swiper-button-prev::after {
  color: #fff;
  font-size: 40px;
}

.header-slider .swiper-pagination-fraction {
  position: absolute;
  right: 10%;
  bottom: 0;
  left: auto;
  top: auto;
  width: auto;
  color: #fff;
  font-size: 40px;
  font-weight: 700;
}

.header-slider .swiper-pagination .swiper-pagination-current {
  font-size: 60px;
  position: relative;
  color: transparent;
  -webkit-text-stroke: 0.5px #fff;
}

.parallax-slider .swiper-slide-active .caption p,
.parallax-slider .swiper-slide-active .caption .btn-curve {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.parallax-slider .swiper-slide-active h3.words .char,
.about-us h3.words .char,
.services h3.words .char,
.product h1.words .char,
.dealer h3.words .char {
  -webkit-animation: fadeInUp 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  animation: fadeInUp 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  -webkit-animation-delay: calc(30ms * var(--char-index));
  animation-delay: calc(30ms * var(--char-index));
  opacity: 0;
}

/** about us ----- */

.about-us {
  position: relative;
  background: #005baa;
  z-index: 3;
  margin-top: 100vh;
  padding: 100px 0;
}

.about-us .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 30px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.about-us__img {
  display: grid;
  grid-template: 1fr 1fr / 1fr 1fr;
  grid-gap: 30px;
}

.about-us__img--item:nth-child(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.about-us__img--item > .sub-title::after {
  content: '';
  display: inline-block;
  width: 40%;
  height: 2px;
  position: absolute;
  right: 3px;
  bottom: -3px;
  background: #75dab4;
}

/** services ----- */

.services {
  position: relative;
  background: #005baa;
  z-index: 3;
}

.services .second-header {
  text-align: center;
}

.services .services-content {
  background: #11141b;
}

.services .services-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  position: relative;
  margin-top: 200px;
}

.services .item-box {
  padding: 80px 30px;
  text-align: center;
  position: relative;
  top: -140px;
}

.services .item-box > a {
  display: block;
  color: #fff;
  position: relative;
}

.services .item-box > a img {
  width: 40%;
  position: relative;
}

.services .item-box h4 {
  font-weight: 600;
  line-height: 1.4;
  font-size: 20px;
}

.services .item-box h6 {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
}

.services .item-box:first-of-type {
  background: url(assets/images/servics.jpg);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  text-align: left;
  z-index: 3;
}

.services .item-box:first-of-type {
  padding: 0;
}

.services .item-box .overlay {
  padding: 80px 30px;
  width: 100%;
  height: 100%;
  background: #1a1e25;
  opacity: .8;
}

.services .btn-curve {
  padding: 8px 15px;
}

.services .item-box:nth-of-type(2) {
  background: #181b21;
}

.services .item-box:nth-of-type(3) {
  background: #1a1e25;
}

.services .item-box:last-of-type {
  background: #20242c;
}

/** numbers ----- */

.numbers {
  position: relative;
  background: #11141b;
  z-index: 3;
  padding-bottom: 230px;
}

.numbers .numbers-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.numbers .number-item {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 30px 0;
}

.numbers .number-item:after {
  content: '';
  width: 1px;
  height: 100%;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.05;
}

.numbers .number-item:first-of-type:after {
  display: none;
}

.numbers .number-item h3 {
  font-weight: 200;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.numbers .number-item p {
  color: #fff;
  letter-spacing: 1px;
}

/** product slider ----- */

.product-slider .swiper-scrollbar-drag {
  background: #75dab4;
  cursor: pointer;
}

/** card style ----- */

.product {
  position: relative;
  background: #005baa;
  z-index: 3;
}

.product > .container {
  position: relative;
  top: -100px;
}

.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #ccc;
  padding: 0 0 7px;
}

.card .card__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.card .card__name h4 {
  font-size: 18px;
  position: relative;
  display: inline-block;
  margin: 7px 0 20px;
}

.card .card__name h4 > small {
  position: absolute;
  bottom: -15px;
  right: 0;
  font-size: 11px;
  font-weight: 200;
}

.card .card__price > .card__price--int {
  font-size: 21px;
  font-weight: 400;
}

.card .card__price .card__price--float {
  font-size: 16px;
  font-weight: 200;
}

.card .card__price .card__price-currancy {
  font-weight: 200;
}

.adblue-desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.product .alter-title-box {
  margin-top: 100px;
}

.adblue-desc ul {
  list-style: none;
  margin-bottom: 30px;
}

.adblue-desc > ul > li {
  position: relative;
  padding-left: 20px;
}

.adblue-desc > ul > li:before {
  content: '\00BB';
  display: block;
  position: absolute;
  left: 0px;
  top: 50%;
  -webkit-transform: translateY(-55%);
  -ms-transform: translateY(-55%);
  transform: translateY(-55%);
  font-size: 13px;
}

.adblue-desc > p {
  display: inline-block;
  width: 80%;
  text-align: center;
  color: white;
  line-height: 1.2;
  margin-bottom: 30px;
  -ms-flex-item-align: center;
  align-self: center;
}

.adblue-desc__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.adblue-desc__info > ul,
.adblue-desc__info > div {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.adblue-desc__info > div:first-of-type {
  text-align: center;
}

.adblue-desc__info > div:last-of-type {
  text-align: right;
}

/** dealer whille ----- */

.dealer {
  position: relative;
  background: #11141b;
  z-index: 3;
  padding: 100px 0;
  height: 750px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 50px;
}

.dealer-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-right: 50px;
}

.dealer .btn-curve {
  margin-top: 40px;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.wheel {
  position: absolute;
  left: -520px;
  top: 0px;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
}

.wheel .wheel__city--circle {
  fill: none;
  stroke: #ffffff;
  stroke-width: 4;
}

.wheel .wheel__city--item {
  font-size: 36px;
  font-weight: 400;
  fill: #c8c8c8;
  fill-opacity: .3;
  stroke: none;
  cursor: pointer;
}

.wheel .wheel__city--item.active {
  fill: #ffffff;
  fill-opacity: .9;
}

.wheel .wheel__city--item.current__city {
  fill: #75dab4;
  fill-opacity: 1;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .3s;
  -o-transition-duration: .3s;
  transition-duration: .3s;
}

.wheel .wheel__city--item.no-support {
  fill: red;
  fill-opacity: .7;
}

.dealer-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 290px;
  position: absolute;
}

#dealerName {
  font-weight: bold;
  font-size: 21px;
}

#dividerAnimate {
  height: 2px;
  background: #75dab4;
  margin: 15px 0;
}

#dealerAddres {
  font-size: 13px;
  line-height: 1;
}

.dealer-data-items .dealer-phone,
.dealer-data-items .dealer-person {
  font-size: 13px;
  color: #c8c8c8;
  padding-right: 10px;
  display: inline-block;
}

.dealer-data-items .dealer-person {
  font-weight: bold;
}

#dealerAddres,
.dealer-data-items > li {
  padding: 7px 0;
}

/** footer ------ */

.footer {
  position: relative;
  z-index: 3;
  background: #11141b;
}

.footer .footer__contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.footer .footer__contact {
  background: #151921;
}

.footer .footer__contact,
.footer .footer__form {
  padding: 100px;
}

.footer .footer__contact .logo {
  display: inline-block;
  width: 150px;
  margin-bottom: 30px;
}

.footer .footer__contact li {
  list-style: none;
  padding: 5px 0;
}

.footer .footer__contact li span {
  font-weight: 500;
  margin-right: 10px;
}

.footer .footer__contact a {
  text-decoration: none;
  color: #fff;
}

.footer .footer__contact--social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 30px 0;
}

.footer .footer__contact--social a {
  display: block;
  width: 31px;
  height: 31px;
  margin-right: 10px;
}

.footer .footer__form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footer .footer__form form input,
.footer .footer__form form textarea {
  padding: 15px;
  margin: .5rem 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.01);
  border: 0;
  color: #fff;
}

.footer .footer__form form button {
  border: 0;
  margin-top: .5rem;
  padding: 15px 30px;
  background: rgba(255, 255, 255, 0.02);
  color: #75dab4;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  z-index: 2;
  cursor: pointer;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.footer .footer__form h6 {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 13px;
  font-weight: 300;
  margin-bottom: 30px;
  padding: 5px 7px;
  position: relative;
}

.footer .footer__form h6:after {
  content: '';
  width: 37%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  opacity: .05;
}

.footer .footer__form > span {
  color: #999;
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 10px;
}

.footer .footer__copy {
  padding: 30px 0;
  display: block;
  text-align: center;
  font-size: 12px;
  color: #999;
  letter-spacing: 2px;
  font-weight: 200;
}

/** media query */

/** animation keyframe */

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

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

@media screen and (max-width: 812px) {
  .about-us {
    padding: 50px 0;
  }

  .about-us > .container {
    grid-template-columns: 1fr;
  }

  .about-us__img {
    display: none;
  }

  .about-us__txt > h3 {
    font-size: 24px;
  }

  .services .services-boxes,
  .numbers .numbers-boxes {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }

  .numbers .number-item:after {
    display: none;
  }

  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }

  .adblue-desc__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .info__second {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .info__action {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 30px;
  }

  .footer .footer__contact-form {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
  }

  .footer .footer__contact {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media screen and (max-width: 767px) {
  .container,
  .parallax-slider .caption,
  .dealer-text {
    padding: 0 25px;
  }

  .navbar-toggler {
    display: inline-block;
  }

  .navbar .navbar-collapse {
    position: absolute;
    left: 0;
    top: 58px;
    width: 100%;
    display: none;
  }

  .navbar .navbar-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .navbar .navbar-nav .nav-item {
    background: #fff;
  }

  .navbar .navbar-nav .nav-link {
    color: #11141b;
  }

  .alter-title-box {
    letter-spacing: 3px;
    font-size: 13px;
    text-align: center;
  }

  .title-box {
    font-size: 35px;
    text-align: center;
  }

  .services .services-boxes {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
  }

  .numbers .numbers-boxes {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
  }

  .adblue-desc h6 strong {
    font-weight: 300;
  }

  .dealer {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    grid-row-gap: 50px;
  }

  .dealer__wheel {
    min-height: 500px;
    overflow: hidden;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    position: static;
  }

  .dealer-text .btn-curve {
    -ms-flex-item-align: center;
    align-self: center;
  }

  .wheel {
    position: static;
    min-width: 650px;
  }
}

@media screen and (max-width: 414px) {
  .container,
  .parallax-slider .caption,
  .dealer-text {
    padding: 0 15px;
  }

  .footer .footer__contact,
  .footer .footer__form {
    padding: 30px 15px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .dealer {
    grid-template-columns: 1fr;
  }

  .dealer-text {
    display: none;
  }
}

.webp .services .item-box:first-of-type {
  background: url(assets/images/servics.webp);
}