:root {
  --font-family-sans-serif: "Noto Sans Georgian", -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
}
html,
body {
  background: #fff !important;

  font-family: "Noto Serif Georgian";

  font-size: 13px;
}

a,
p,
div {
  font-family: "Noto Sans Georgian";

  text-decoration: none;
}

.btn {
  font-family: "Noto Sans Georgian";
  border-radius: 50px !important;
}

.header {
  /* justify-items: center; */

  background: #fff;

  width: 100%;
}

.header-top {
  display: flex;

  justify-content: end;

  width: 100%;

  height: 45px;

  background: #1f1f1f;

  background-image: linear-gradient(179deg, #2b2b2b, #2b2b2b);
}

/* .header-top::before {

    content: '';

    width: 80px;

	height: 50px;

	transform: skew(50deg);

    background: #253241;

    margin-left: -45px;

} */

.contact-text {
  display: inline-block;

  font-size: 13px;

  color: #fff;

  line-height: 10px;

  padding-right: 20px;

  margin: 18px 20px 18px 0;

  z-index: 99;

  border-right: 1px solid rgba(255, 255, 255, 0.253);
}

.soc-icons {
  width: 28px;

  height: 28px;

  z-index: 99;

  margin-top: 8px;

  margin-right: 20px;

  cursor: pointer;
}

.facebook {
  background: url("../images/fb-bw.png");

  background-size: cover;

  width: 28px;

  height: 28px;
}

.facebook:hover {
  background: url("../images/fb.png");

  background-size: cover;

  width: 28px;

  height: 28px;

  transition-duration: 0.3s;
}

.whatsapp {
  background: url("../images/whatsapp-bw.png");

  background-size: cover;

  width: 28px;

  height: 28px;
}

.whatsapp:hover {
  background: url("../images/whatsapp.png");

  background-size: cover;

  width: 28px;

  height: 28px;

  transition-duration: 0.3s;
}

.viber {
  background: url("../images/viber-bw.png");

  background-size: cover;

  width: 28px;

  height: 28px;
}

.viber:hover {
  background: url("../images/viber.png");

  background-size: cover;

  width: 28px;

  height: 28px;

  transition-duration: 0.3s;
}

.header-bottom {
  background: #fff;
  display: flex;
  justify-content: center;
  border-bottom: 1px #e9e9e9 solid;
  box-shadow: #d4d4d48c 1px 4px 10px 0;
}

/* .logo-container {
  max-width: 190px;
} */

.logo-img {
  max-width: 171px;

  height: auto;
}

.header-menu {
  display: flex;
  justify-content: start;
}

/************ MOBILE MENU **********/

.menu-wrap {
  display: none;

  position: fixed;

  z-index: 1;
}

.menu-wrap .toggler {
  position: absolute;

  top: 0;

  left: 0;

  cursor: pointer;

  z-index: 2;

  width: 50px;

  height: 50px;

  opacity: 0;
}

.menu-wrap .hamburger {
  position: absolute;

  left: 0;

  z-index: 1;

  padding: 10px;

  width: 45px;

  height: 45px;

  background-color: rgba(25, 25, 25, 0.71);

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  border-radius: 3px;
}

/*hamburger middle line */

.menu-wrap .hamburger > div {
  position: relative;

  width: 100%;

  height: 2px;

  background-color: rgb(225, 225, 225);

  transition: transform 0.4s ease;
}

/*Hamburger top and bottom line*/

.menu-wrap .hamburger > div::before,
.menu-wrap .hamburger > div::after {
  content: "";

  position: absolute;

  top: -8px;

  width: 100%;

  height: 2px;

  background-color: inherit;
}

/*moves line down*/

.menu-wrap .hamburger > div::after {
  top: 8px;
}

/*toggler animation*/

.menu-wrap .toggler:checked + .hamburger > div {
  transform: rotate(135deg);
}

/*turns line into X */

.menu-wrap .toggler:checked + .hamburger > div::before,
.menu-wrap .toggler:checked + .hamburger > div::after {
  top: 0;

  transform: rotate(90deg);
}

/* Rotate on hover when checked*/

.menu-wrap .toggler:checked:hover + .hamburger > div {
  transform: rotate(225deg);
}

/* Show Menu */

.menu-wrap .toggler:checked ~ .menu {
  visibility: visible;
}

.menu-wrap .toggler:checked ~ .menu > div {
  transform: translateX(0);

  transition-duration: 0.6s;
}

.menu-wrap .toggler:checked ~ .menu > div > div {
  opacity: 1;

  transition: opacity 0.4s ease;
}

.menu-wrap .menu {
  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  overflow: hidden;

  display: flex;

  align-items: center;

  visibility: hidden;

  justify-content: left;
}

.menu-wrap .menu > div {
  background: rgba(19, 19, 19, 0.97);

  width: 100%;

  height: 100%;

  overflow: hidden;

  display: flex;

  align-items: baseline;

  justify-content: left;

  flex: none;

  transform: translateX(-100%);

  transition-duration: 0.6s;
}

.menu-wrap .menu > div > div {
  width: 100%;

  max-height: 100vh;

  text-align: left;

  opacity: 0;

  transition: opacity 0.4s ease;

  padding-top: 150px;
}

.menu-wrap .menu > div > div > ul > li {
  list-style: none;

  font-size: 1rem;

  padding: 1rem;
}

.menu-wrap .menu > div > div > ul > li > a {
  text-decoration: none;

  color: #ffffffd1;

  font-family: "Noto Sans Georgian";

  font-size: 1.6rem;

  font-variant: all-small-caps;
}

.menu-wrap .menu > div > div > ul > li > i {
  text-decoration: none;
  margin-right: 1rem;
  color: #ffffffd1;
}

.burger-menu-profile {
  display: inline-flex;
  padding: 2rem 0 2.5rem 2.5rem;
}
.burger-menu-profile > img {
  border-radius: 50px;
  border: 2px rgb(98 98 192) solid;
}
.burger-menu-profile > a {
  padding-left: 15px;
  text-decoration: none;
  color: #fff !important;
  font-size: 1.2rem;
}
.burger-menu-profile span {
  color: #fff;
  font-size: 1rem;
}
.burger-menu-hr {
  width: auto;
  border: 1px #cecece12 solid;
  margin: 0 2.5rem 1.5rem 2.5rem;
}

/************** END MOBILE MENU ************/

.login-btn {
  font-family: "Noto Sans Georgian";

  margin-top: 18px;

  font-size: 1.1rem !important;

  padding: 12px 15px !important;

  background: rgb(198, 0, 0) !important;

  color: #fff !important;

  border-radius: 8px !important;

  -webkit-transition: 0.5s !important;

  transition-duration: 0.5s !important;
}

.login-btn:hover {
  background: rgb(211, 46, 46) !important;
  /* background-image: radial-gradient(circle, rgb(172, 4, 4), rgb(116, 2, 2)) !important; */
  transition-duration: 0.5s !important;
}

.login {
  text-align: center;
}

.main-banner {
  background: url("../images/main-banner.jpg") no-repeat center bottom;

  width: 100%;

  height: 850px;

  background-size: cover;
}

.filter-search {
  display: flex;

  margin-top: 410px !important;

  background: #fff;

  border-radius: 50px;

  padding: 5px 10px;

  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.094),
    0 6px 20px 0 rgba(0, 0, 0, 0.098);

  border: #33333352 0.01rem solid;
}

.filter-margins {
  border-right: 1px #cecece solid;

  padding-right: 15px;

  margin-left: 17px;
}

.search-btn {
  flex: 0 auto !important;
  font-size: 1.4rem;
  color: rgb(165, 165, 165);
  align-items: center;
  justify-content: center;
  transition-duration: 0.3s;
}

.search-btn i {
  cursor: pointer;
}

.search-btn i:hover {
  font-size: 1.4rem;
  color: rgb(103, 103, 103);
  transition-duration: 0.3s;
}

.search-input {
  border: 2px #fff solid !important;

  width: 100%;

  height: 45px !important;

  padding-left: 20px;

  color: #5a5a5a !important;

  -webkit-transition: 0.5s !important;

  transition: 0.5s !important;
}

*:focus {
  box-shadow: none !important;
}

.filter-search input:focus,
select:focus {
  outline: none !important;

  border: 2px #e8e8e800 solid !important;

  border-radius: 50px;
}

.cars-carousel-label {
  text-align: center;
  color: #fff;
  font-size: 1.1rem;
  padding: 8px;
  margin-top: 50px;
  background: #253241;
  border-radius: 8px;
  font-weight: bold;
}

.cars-carousel {
  max-height: 450px;

  padding: 20px 0;
}

.cars-carousel img {
  width: 100%;
  /* max-width: 322px; */
  height: 197px;
  border-radius: 8px;
  /* background-size: cover; */
  object-fit: cover;
}

.carousel-card {
  max-width: 280px !important;

  background: #fff;

  width: 100%;

  padding: 10px !important;

  margin: 15px;

  border-radius: 10px;

  box-shadow: #d4d4d4 1px 2px 10px 2px;
}

.carousel-card h5 {
  padding: 12px 5px 0 5px;

  font-size: 16px;

  color: #5a5a5a;

  font-weight: bold;
}

.carousel-card a {
  display: flex;
  justify-content: center;
  text-decoration: none;
  color: rgb(242, 61, 61, 0.88) !important;
  font-variant: all-small-caps;
  font-size: 1.5rem;
}

.carousel-card a:hover {
  color: rgb(215, 59, 59) !important;
}

.car-info {
  font-size: 14px;
  color: #202224;
  display: flex;
  padding-top: 5px;
  border-top: 1px #dfdfdfb7 solid;
}

.see-more {
  padding: 8px;
  width: 100%;
  text-align: center;
  font-size: 1.1rem;
}

.see-more-arrow {
  margin-left: 0.3rem;
  vertical-align: middle;
  transition-duration: 0.5s;
}
.see-more a:hover > div {
  transform: translateX(5px);
}

.car-info img {
  width: 20px;

  height: 20px;

  margin-right: 10px;
}

.slick-prev,
.slick-next {
  background: #b8b8b849 !important;

  width: 25px !important;

  height: 80px !important;

  border-radius: 5px;
}

.slick-prev:hover,
.slick-next:hover {
  background: #b8b8b8 !important;
}

.slick-prev {
  left: -25px !important;
}

.slick-next {
  right: -25px !important;
}

/* .slick-prev:before, .slick-next:before {

    font-family: 'icomoon' !important;

    content: "\e90c" !important;

    font-size: 15px !important;

    line-height: 1 !important;

    opacity: 1 !important;

    -webkit-transition: 0.3s !important;

    transition: 0.3s !important;

    position: relative !important;

    color: #ffffff !important;

} */

/* shipping (1) 2 */

.shipping {
  padding: 150px 0;

  text-align: center;
}

.shipping-steps {
  width: 120px;
  height: auto;
}

.shipping-lines {
  max-width: 100%;

  height: 2px;

  border-radius: 2px;

  margin-top: 75px;

  background: #c7c7c7;
}

.shipping img {
  opacity: 0.4;
}

.shipping img:hover {
  opacity: 0.9;
}

/* SINGLE-PAGE SLIDER */

/* Hide the images by default */

.car-view-card-title {
  margin: 100px 0 30px 0;
  color: #202224 !important;
  font-weight: 700;
}
.car-view-card {
  border: 1px solid #c9c9c9b0;
  border-radius: 0.85rem;
  background-color: #fff;
  background-clip: border-box;
  margin-bottom: 50px;
  box-shadow: #d4d4d4 1px 2px 10px 2px;
}
.single-car-img {
  width: 100%;
  /* min-height: 500px; */
  max-height: 675px;
  border-radius: 10px;
  object-fit: cover;
}
.single-car-thumb {
  width: 100%;
  max-height: 80px;
  border-radius: 3px;
  object-fit: cover;
  margin-bottom: 5px;
}

.slider-modal-img {
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}

/* The Modal (background) */
.slider-modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(19, 19, 19);
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.1s;
  animation-name: zoom;
  animation-duration: 0.1s;
}

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
  }
}

@keyframes zoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
/* Modal Content */
.slider-modal-content {
  position: relative;
  margin: auto;
  padding: 0;
  width: 90%;
  height: 100%;
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.1s;
  animation-name: zoom;
  animation-duration: 0.1s;
}

/* The Close Button */
.close-modal {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
  z-index: 99;
}

.close-modal:hover,
.close-modal:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

.mySlides {
  display: none;
}

.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;

  position: absolute;

  top: 45%;

  width: auto;

  padding: 16px;

  color: white;

  font-weight: bold;

  font-size: 20px;

  border-radius: 0 3px 3px 0;

  user-select: none;

  -webkit-user-select: none;

  text-decoration: none;

  background-color: rgba(0, 0, 0, 0.1);
}

/* Position the "next button" to the right */

.next {
  right: 12px;

  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);

  text-decoration: none;

  color: #fff;
}

/* Next & previous buttons */
.img-modal-prev,
.img-modal-next {
  cursor: pointer;

  position: absolute;

  top: 50%;

  width: auto;

  padding: 16px;

  color: white;

  font-weight: bold;

  font-size: 20px;

  border-radius: 0 3px 3px 0;

  user-select: none;

  -webkit-user-select: none;

  text-decoration: none;

  background-color: rgba(0, 0, 0, 0.1);
}

/* Position the "next button" to the right */

.img-modal-next {
  right: 0;

  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */

.img-modal-prev:hover,
.img-modal-next:hover {
  background-color: rgba(0, 0, 0, 0.8);

  text-decoration: none;

  color: #fff;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

img {
  margin-bottom: -4px;
}

.caption-container {
  text-align: center;
  background-color: black;
  padding: 2px 16px;
  color: white;
}

.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

img.hover-shadow {
  transition: 3.3s;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.footer {
  background-image: linear-gradient(175deg, #2b2b2b, #2b2b2b);

  width: 100%;

  height: 100%;

  color: #c7c7c7;
}

.footer-inner {
  padding: 15px 0;
}

.calculator span,
.calculator button {
  font-size: 14px !important;

  margin: 8px 0 !important;
}

.calc-select {
  border: 2px #e8e8e8 solid !important;

  border-radius: 50px !important;

  font-size: 14px !important;
}

/* RESPONSIVE */

@media screen and (max-width: 1900px) {
  .main-banner {
    height: 550px;
    background-size: cover;
  }

  .filter-search {
    margin-top: 250px !important;
  }
}

@media screen and (max-width: 992px) {
  .header-menu {
    display: none;
  }
  .header-bottom {
    padding: 0;
  }

  .login {
    display: none;
  }

  .menu-wrap {
    display: block;
  }

  .logo-img {
    max-width: 131px;
    margin-top: 0;
  }

  .next {
    right: 371px;
  }

  .prev,
  .next {
    top: 350px;
  }
  .menu-wrap .menu > div > div > ul > li {
    list-style: none;

    font-size: 1.2rem;

    padding: 1rem;
  }
  .main-banner {
    height: 500px;
    background-size: cover;
  }

  .filter-search {
    width: 95%;
    margin-top: 220px !important;
  }
  .login-btn {
    width: calc(100% - 65px);
    margin-top: 20px;
    margin-left: 2.5rem;
  }
}

@media screen and (max-width: 500px) {
  .soc-icons {
    margin-top: 12px;
  }
  .facebook {
    width: 21px;
    height: 21px;
  }
  .facebook:hover {
    width: 21px;
    height: 21px;
  }
  .whatsapp {
    width: 21px;
    height: 21px;
  }
  .whatsapp:hover {
    width: 21px;
    height: 21px;
  }
  .viber {
    width: 21px;
    height: 21px;
  }
  .viber:hover {
    width: 21px;
    height: 21px;
  }
  .contact-text {
    padding-right: 7px;
    margin-right: 8px;
  }
  .slick-prev {
    display: none !important;
  }
  .slick-next {
    display: none !important;
  }
  .shipping-steps {
    width: 50px;
  }
  .shipping-lines {
    margin-top: 30px;
  }
  .next {
    right: 12px;
  }
  .prev,
  .next {
    top: 350px;
  }
  .carousel-card {
    max-width: 404px !important;
  }
  .cars-carousel-label {
    width: 95%;
  }
}
