/*å¤šè¯­è¨€*/
.qili-divlanger {
  position: absolute;
  z-index: 10;
  left: 730px;
  top: 25px;
}

.qili-divlanger .box {
  height: 30px;
  cursor: pointer;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  padding: 0 7px;
  border-radius: 30px;
  background: white;
}

.qili-divlanger .box img {
  height: 16px;
  margin: 0;
}

.qili-divlanger .box em {
  margin: 0 10px 0 5px;
  line-height: 18px;
  font-size: 13px;
  color: #333;
  text-transform: uppercase;
}

.qili-divlanger .box i {
  width: 15px;
  line-height: 18px;
  font-size: 14px;
  text-align: center;
  color: #666;
}

.qili-divlanger .langlist {
  width: 200px;
  padding: 15px;
  position: absolute;
  right: 0;
  top: 42px;
  z-index: 200;
  background: #fff;
  transform: translate3d(0, 10px, 0);
  -webkit-transform: translate3d(0, 10px, 0);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease 0s;
  box-shadow: 0 0 10px rgba(63, 62, 62, 0.2);
}

.qili-divlanger .langlist::before {
  content: '';
  position: absolute;
  right: 37px;
  top: -8px;
  overflow: hidden;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
  border-left: 8px solid transparent;
  display: block;
}

.qili-divlanger ul {
  max-height: 160px;
  overflow-y: scroll;
  padding: 5px 10px !important;
  border: 1px solid #e5e5e5;
  display: -webkit-flex;
  display: flex !important;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.qili-divlanger ul li {
  line-height: 20px;
  padding: 5px 0;
  border-bottom: 1px solid #f5f5f5;
  width: 50%;
}

.qili-divlanger ul li:last-child {
  border: none;
}

.qili-divlanger ul li a {
  color: #333;
  font-size: 12px;
  display: block;
}

.qili-divlanger ul li a:hover {
  color: #015198;
}

.qili-divlanger ul li img {
  vertical-align: middle;
  margin-right: 7px;
}

.qili-divlanger:hover .langlist {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
}


/*===========================
<-- hendre Loader Css -->
=============================*/
.loader-wrapper {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transition: 0.8s 1s ease;
  z-index: 9999;
}

.loader {
  position: relative;
  display: block;
  z-index: 201;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  margin: -50px 0 0 -50px;
  border-radius: 50%;
  transition: all 1s 1s ease;
  border: 3px solid transparent;
  border-top-color: #9A241C;
  -webkit-animation: spin 1.5s linear infinite;
  -moz-animation: spin 1.5s linear infinite;
  -o-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

.loader:before {
  position: absolute;
  content: '';
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-left-color: #ED1C24;
  -webkit-animation: spin 2s linear infinite;
  -moz-animation: spin 2s linear infinite;
  -o-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

.loader:after {
  position: absolute;
  content: '';
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-right-color: #fff;
  -webkit-animation: spin 2.5s linear infinite;
  -moz-animation: spin 2.5s linear infinite;
  -o-animation: spin 2.5s linear infinite;
  animation: spin 2.5s linear infinite;
}

/*/
Here comes the Magic/*/

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-moz-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.loader-wrapper .loder-section {
  position: fixed;
  top: 0;
  width: 50%;
  height: 100%;
  background: #111;
  z-index: 2;
}

.loader-wrapper .loder-section.left-section {
  left: 0;
  transition: 1s 1.4s ease;
}

.loader-wrapper .loder-section.right-section {
  right: 0;
  transition: 1s 1.4s ease;
}

/*/
When page loaded/*/
.loaded .loder-section.left-section {
  left: -100%;
}

.loaded .loder-section.right-section {
  right: -100%;
}

.loaded .loader-wrapper {
  visibility: hidden;
}

.loaded .loader {
  top: -100%;
  opacity: 0;
}

@keyframes run {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-216px);
    transform: translateX(-216px);
  }
}


/*====================================
<-- Start Carcity Menu Area Css -->
======================================*/

.carcity_nav_manu {
  transition: 0.5s;
  z-index: 2;
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12.5px);
}

.carcity_nav_manu:before {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  background: #ED1C24;
  height: 100%;
  width: 526px;
  z-index: -1;
}

.carcity_nav_manu .logo img {
  max-width: 170px;
  max-height: 54px;
}

/*Sticky*/
.sticky {
  left: 0;
  margin: auto;
  position: fixed !important;
  top: 0;
  width: 100%;
  -webkit-box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
  background: rgb(149,149,139) !important;
  transition: 0.5s;
  z-index: 999;
}

/* carcity Menu Css*/
nav.carcity_menu {
  text-align: center;
}

.carcity_menu ul {
  list-style: none;
  display: inline-block;
  margin-bottom: 0;
  padding: 0;
}

.carcity_menu > ul > li {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.carcity_menu > ul > li > a {
  display: block;
  margin: 30px 16px;
  -webkit-transition: 0.5s;
  color: #000;
  font-family: 'Jost';
  font-weight: 500;
  font-size: 16px;
}

nav.carcity_menu > ul > li > a i {
  font-size: 14px;
  color:#000;
}

.carcity_menu > ul > li > a:hover {
  color: #ED1C24;
}

nav.carcity_menu > ul > li > a:hover span {
  color: #ED1C24;
}

/*header right button box*/
.header-right-button-box{display:flex;align-items:center;}

.header-button2 {
  display: inline-block;
  padding-right: 12px;
  position: relative;

}

.header-button2 a i {
  font-size: 28px;
  width: 50px;
  height: 50px;
  line-height: 51px;
  text-align: center;
  background: #fff;
  color: #ED1C24;
  display: inline-block;
  border-radius: 50%;
}

.slider-button-title {
  
    position: relative;
  display: inline-block;
}

.slider-button-title h6 {
  font-size: 20px;
  font-weight: 600;
  color: #000;
}

.slider-button-title p {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin: 0;
}
.slider-button-title p a{
    font-size: 14px;
    font-weight: 500;
    color: #000;
    margin: 0;
}

/*================================
<-- Sub Menu Style Css -->
==================================*/

.carcity_menu ul .sub-menu {
  position: absolute;
  left: 0;
  top: 130%;
  width: 217px;
  text-align: left;
  background: #fff;
  margin: 0;
  padding: 0;
  z-index: 1;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  transition: 0.5s;
  visibility: hidden;
  border-top: 2px solid #ED1C24;
  opacity: 0;
}

.carcity_menu ul li:hover > .sub-menu {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  visibility: visible;
  top: 100%;
  opacity: 1;
}

.carcity_menu ul .sub-menu li {
  position: relative;
}

.carcity_menu ul .sub-menu li a {
  display: block;
  padding: 12px 20px;
  margin: 0;
  line-height: 1.3;
  letter-spacing: normal;
  font-size: 16px;
  font-family: 'Jost';
  font-weight: 400;
  text-transform: capitalize;
  -webkit-transition: 0.1s;
  visibility: inherit !important;
  color: #000 !important;
}

.carcity_menu ul .sub-menu li:hover > a,
.carcity_menu ul .sub-menu .sub-menu li:hover > a,
.carcity_menu ul .sub-menu .sub-menu .sub-menu li:hover > a,
.carcity_menu ul .sub-menu .sub-menu .sub-menu .sub-menu li:hover > a {
  background: #ED1C24;
  color: #fff !important;
}

.carcity_menu li a:hover:before {
  width: 101%;
}

.carcity_nav_manu.sticky .logo_img {
  display: none;
}

.main_sticky {
  display: none;
}

.carcity_nav_manu.sticky .main_sticky {
  display: inherit;
}

.mobile-menu.mean-container {
  overflow: hidden;
}

/*** 
====================================================================
 Carcity Search Popup Css
====================================================================
***/

.search-popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 99999;
  margin-top: -540px;
  transform: translateY(-100%);
  background-color: rgba(0, 0, 0, 0.90);
  -webkit-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
  -moz-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
  -o-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
  transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000); /* easeInOutQuint */
  -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
  -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
  -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
  transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000); /* easeInOutQuint */
}

.search-popup {
  width: 100%;
}

.search-active .search-popup {
  transform: translateY(0%);
  margin-top: 0;
}

.search-popup .close-search {
  position: absolute;
  left: 0;
  right: 0;
  margin: -200px auto 0;
  border-radius: 50%;
  text-align: center;
  background-color: #ED1C24;
  width: 70px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  border-bottom: 3px solid #ffffff;
  -webkit-transition: all 500ms ease;
  height: 70px;
  line-height: 70px;
  text-align: center;
}

.search-active .search-popup .close-search {
  visibility: visible;
  opacity: 1;
  top: 50%;
  -webkit-transition-delay: 1500ms;
  -moz-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  transition-delay: 1500ms;
}

.search-popup form {
  position: absolute;
  max-width: 700px;
  top: 50%;
  left: 15px;
  right: 15px;
  margin: -35px auto 0;
  transform: scaleX(0);
  transform-origin: center;
  background-color: #111111;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.search-active .search-popup form {
  transform: scaleX(1);
  -webkit-transition-delay: 1200ms;
  -moz-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.search-popup .form-group {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"] {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 50px;
  color: #000000;
  height: 70px;
  width: 100%;
  padding: 10px 30px;
  background-color: #ffffff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 500;
}

.search-popup .form-group input[type="submit"],
.search-popup .form-group button {
  position: absolute;
  right: 30px;
  top: 0;
  height: 70px;
  line-height: 70px;
  background: transparent;
  text-align: center;
  font-size: 24px;
  color: #ED1C24;
  padding: 0;
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  border: none;
}

.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover {
  color: #000000;
}

.search-popup .form-group button i {
  font-size: 28px;
}

.search-popup input::placeholder,
.search-popup textarea::placeholder {
  color: #000000;
}

.search-popup .close-search.style-two {
  position: absolute;
  right: 25px;
  left: auto;
  color: #ffffff;
  width: auto;
  height: auto;
  top: 25px;
  margin: 0;
  border: none;
  background: none !important;
  box-shadow: none !important;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.search-box-btn {
  display: inline-block;
  padding-left: 15px;
}

.search-box-btn i {
  display: inline-block;
  color: #000;
  line-height: 30px;
  text-align: center;
  font-size: 24px;
  cursor: pointer;
  transition: 0.5s;
}

.upp.search-box-btn i {
  color: #9E9FA1;
}

.search-box-btn.search-box-outer span i {
  font-size: 20px;
  display: inline-block;
  color: #fff;
  padding-left: 17px;
  position: relative;
  z-index: 1;
}

.upp.search-box-btn.search-box-outer span i {
  color: #9E9FA1;
}

.search-box-btn.search-box-outer span i:after {
  position: absolute;
  content: "0";
  right: -10px;
  top: -4px;
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  background: #ED1C24;
  color: #fff;
  border-radius: 50%;
  display: inline-block;
  font-family: 'Jost';
  font-size: 12px;
}

.flaticon-multiply:before {
  content: inherit;
}

button.close-search i {
  font-size: 25px;
  color: #fff;
  display: inline-block;
}

span.flaticon-multiply i {
  display: inline-block;
  color: #ED1C24;
}


/*
<!-- ============================================================== -->
<!-- Start Carcity Scrollup section Css -->
<!-- ============================================================== -->*/

.scroll-area {
  position: relative;
  z-index: 999;
}

.scroll-area .go-top {
  position: fixed;
  cursor: pointer;
  top: 0;
  right: 30px;
  color: #ffffff;
  background-image: -moz-linear-gradient(0deg, #d1651a 0%, #c1282a 100%);
  background-image: -webkit-linear-gradient(0deg, #d1651a 0%, #c1282a 100%);
  z-index: 9999;
  width: 45px;
  text-align: center;
  height: 45px;
  line-height: 42px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.9s ease-out 0s;
  -moz-transition: all 0.9s ease-out 0s;
  border-radius: 10px;
}

.scroll-area .go-top i {
  position: absolute;
  top: 50%;
  left: -4px;
  right: 0;
  margin: 0 auto;
  font-size: 15px;
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
}

.scroll-area .go-top i:last-child {
  opacity: 0;
  visibility: hidden;
  top: 60%;
}

.scroll-area .go-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: linear-gradient(to right, #00132b 0%, #00132b 100%);
  background-image: -ms-linear-gradient(0deg, #d1651a 0%, #c1282a 100%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  border-radius: 100%;
}

.scroll-area .go-top:focus,
.scroll-area .go-top:hover {
  color: #fff;
}

.scroll-area .go-top:focus::before,
.scroll-area .go-top:hover::before {
  opacity: 1;
  visibility: visible;
}

.scroll-area .go-top:focus i:first-child,
.scroll-area .go-top:hover i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}

.scroll-area .go-top:focus i:last-child,
.scroll-area .go-top:hover i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

.scroll-area .go-top.active {
  top: 95%;
  -webkit-transform: translateY(-98%);
  -moz-transform: translateY(-98%);
  opacity: 1;
  visibility: visible;
  border-radius: 0;
  right: 30px;
  border-radius: 100%;
}

.top-wrap {
  position: relative;
}

.top-wrap .go-top-button {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  top: 3px;
  z-index: 1;
  background: #ED1C24;
}

.top-wrap .go-top-button i {
  font-size: 20px;
  font-weight: 700;
  padding-left: 4px;
  color: #fff;
}

.top-wrap .go-top-button::after {
  z-index: -1;
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 45px;
  height: 45px;
  -webkit-animation: ripple 1.6s ease-out infinite;
  -moz-animation: ripple 1.6s ease-out infinite;
  opacity: 0;
  background-image: -moz-linear-gradient(0deg, #ED1C24 0%, #ED1C24 100%);
  background-image: -webkit-linear-gradient(0deg, #ED1C24 0%, #ED1C24 100%);
  border-radius: 100%;
}

.top-wrap .go-top-button:hover {
  background-color: #222;
  color: #fff;
}

@keyframes ripple {
  0,
  35% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  },
  50% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0.8;
  },
  100% {
    opacity: 0;
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    -ms-transform: scale(2);
    -o-transform: scale(2);
    transform: scale(2);
  }
}


/*===========================
<-- Responsive Css -->
=============================*/

@media(min-width: 1800px) and (max-width: 1860px) {
  .carcity_nav_manu:before {
    width: 495px;
  }
}

@media(min-width: 1501px) and (max-width: 1799px) {
  .carcity_nav_manu:before {
    display: none;
  }
}

@media(min-width: 1200px) and (max-width: 1500px) {
  a.logo_img img {
    width: 170px;
  }
  .header-button2 a i {
    font-size: 18px;
    width: 40px;
    height: 40px;
    line-height: 41px;
  }
  .slider-button-title h6 {
    font-size: 18px;
  }
  .slider-button-title p {
    font-size: 15px;
    font-weight: 400;
  }
  .carcity_nav_manu:before {
    display: none;
  }
  .carcity_menu > ul > li > a {
    margin: 30px 6px;
    font-size: 15px;
  }
}

@media(min-width: 992px) and (max-width: 1199px) {
  .carcity_nav_manu:before {
    display: none;
  }
  a.logo_img img {
    width: 90%;
  }
  a.main_sticky img {
    width: 100%;
  }
  .header-button2 a i {
    display: none;
  }
  .slider-button-title h6 {
    font-size: 17px;
    font-weight: 500;
  }
  .slider-button-title p {
    font-size: 15px;
    font-weight: 400;
  }
  .carcity_menu > ul > li > a {
    font-size: 15px;
    margin: 29px 8px;
  }
}

@media(max-width: 991px) {
  .carcity_nav_manu {
    display: none !important;
  }
  ul.nav_scroll li a span i {
    display: none;
  }
}
