﻿.section_margin {
  margin: 70px 0;
}

.section_padding {
  padding: 70px 0;
}

.section_padding_2 {
  padding: 70px 0 40px;
}

.section_title {
  margin-bottom: 60px;
}

.section_title h2 {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 40px;
}

.heading {
  font-size: 40px;
  margin-bottom: 40px;
}

.defination {
  margin-bottom: 40px;
}

.common_block {
  margin-bottom: 30px;
}

.btn, .btn_2 {
  font-size: 16px;
  font-weight: 400;
  font-family: "Muli", sans-serif;
  color: #fff;
  text-transform: capitalize;
  background-color: #4c55c4;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  width: 160px;
  height: 50px;
  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;
}

.btn:hover, .btn_2:hover {
  color: #fff;
  -webkit-box-shadow: 0px 0px 14.85px 0.15px rgba(76, 85, 196, 0.5);
  box-shadow: 0px 0px 14.85px 0.15px rgba(76, 85, 196, 0.5);
}

.btn_2 {
  background: #fff;
  color: #4c55c4;
  border: 1px solid #fff;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

.btn_2:hover {
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
}

.grad_btn {
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-table;
  color: #fff;
  font-weight: 500;
  font-family: "Muli", sans-serif;
  font-size: 16px;
}

.grad_btn span,
.grad_btn i {
  position: relative;
  z-index: 3;
}

.grad_btn:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 2;
  opacity: 0;
}

.grad_btn:hover:after {
  opacity: 1;
}

.btn_pluse {
  position: absolute;
  top: 50%;
  border: none;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  z-index: 9;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn_pluse:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: 8;
  background: #fff;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.btn_pluse:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: 2;
  left: 50%;
  top: 50%;
  background: #000;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
          animation: pulse-border 1500ms ease-out infinite;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

.btn_pluse span {
  display: block;
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 0;
  border-left: 20px solid #4c55c4;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}

.btn_pluse:hover:after {
  background-color: #f2f2f2;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .heading {
    font-size: 36px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section_margin {
    margin: 60px 0;
  }
  .section_padding {
    padding: 60px 0;
  }
  .section_padding_2 {
    padding: 60px 0 30px;
  }
  .page_title .breadcrumb {
    padding-left: 0;
  }
  .section_title {
    margin-bottom: 20px;
  }
  .section_title h2 {
    font-size: 36px;
    margin-bottom: 30px;
  }
  .heading {
    font-size: 32px;
    margin-bottom: 30px;
  }
  .defination {
    margin-bottom: 25px;
  }
  .play_btn_pluse {
    width: 55px;
    height: 55px;
  }
  .play_btn_pluse span {
    border-left: 16px solid #fff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
  }
}

@media (max-width: 767px) {
  .section_margin {
    margin: 50px 0;
  }
  .section_padding {
    padding: 50px 0;
  }
  .section_padding_2 {
    padding: 20px 0 20px;
  }
  .section_title {
    margin-bottom: 20px;
  }
  .section_title h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .heading {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .defination {
    margin-bottom: 15px;
  }
  .play_btn_pluse {
    width: 45px;
    height: 45px;
  }
  .play_btn_pluse span {
    border-left: 10px solid #fff;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
  }
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  font-family:"Microsoft YaHei","微软雅黑","arial","tahoma","MicrosoftJhengHei";
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.form-group {
  margin: 0;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="password"],
textarea,
select {
  background: #fff;
  padding: 10px;
}

a:focus,
input[type="button"]:focus,
input[type="submit"]:focus,
button:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus,
.form-control:focus,
.btn:focus,
.btn_2:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
}

a:hover,
button:hover {
  text-decoration: none;
}

img {
  max-width: 180%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-style: normal;
  color: #222222;
  font-weight: 700;
  /*font-family: "Josefin Sans", sans-serif;*/
}

p {
  color: #5b5c69;
  line-height: 1.5;
}

html {
  position: relative;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  line-height: 1;
  color: #000;
  background: #fff;
  overflow-x: hidden;
  font-weight: 400; 
}

/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
			5. Header with menu
\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ */
.nav_wrapper {
  margin-right: 0px;
}

.mega_nav .navbar-nav{
  width:642px;
}
.mega_nav .navbar-nav > li.nav-item {
  padding: 0px;
  width: 20%;
  text-align: center;
}

.mega_nav .navbar-nav > li.nav-item:last-child {
  padding-right: 0;
}

.navbar .navbar-nav > li.nav-item > a {
  width: 100%;
  position: relative;
  display: inline-block;
  z-index: 1;
  color: #333333;
  line-height: 30px;
  font-size: 16px;
  padding: 15px 0px;
  font-weight: normal;
  font-family: "Muli", sans-serif;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar .navbar-nav > li.nav-item > a:after {
  position: absolute;
  width: 100%;
  background: rgb(204, 204, 204);
  height: 3px;
  bottom: 0px;
  left: 0;
  content: "";
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  transition: transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85), -webkit-transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
}

.navbar .navbar-nav > li.nav-item > a:hover {
  color: #333333;
}

.navbar .navbar-nav > li.nav-item > a:hover:after{
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  background: rgb(204, 204, 204);
}


.navbar .navbar-nav > li.nav-item-sel > a:after{
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  background: rgb(204, 204, 204);
}

.navbar .navbar-nav .nav-item.nav_right a:after {
  display: none;
}

.navbar .navbar-nav .nav-item.nav_right a:hover:after {
  display: none;
}

.dropdown_item {
  position: relative;
}

.dropdown_content {
  -webkit-box-shadow: 0px 12px 51px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 12px 51px 0px rgba(0, 0, 0, 0.3);
  background: #fff;
  width: 175px;
  padding: 20px;
  border-radius: 10px;
  overflow: visible;
  right: auto;
  left: 0;
  top: 100%;
  z-index: -1;
  opacity: 1;
  display: block;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  visibility: visible;
  position: absolute;
}

.dropdown_content.relative {
  position: relative;
  overflow: visible;
  z-index: 9;
  opacity: 1;
  visibility: visible;
}

.dropdown_content ul {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0px;
}

.dropdown_content ul li a {
  font-size: 14px;
  font-weight: 400;
  font-family: "Muli", sans-serif;
  padding: 10px;
  margin-bottom: 5px;
  display: block;
  border-bottom: 1px solid #f7f7f7;
  color: #222222;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.dropdown_content ul li a:hover {
  color: #4c55c4;
}

.header_wrap {
  position: absolute;
  width: 100%;
  z-index: 99;
  padding: 0px;
  height: 86px;line-height: 86px;
}

.header_wrap .container {
  position: relative;
  z-index: 1;
}

/*.header_wrap .container:after {
  position: absolute;
  left: -190px;
  top: -230px;
  content: "";
  z-index: -1;
  -webkit-clip-path: ellipse(50% 50% at 50% 50%);
          clip-path: ellipse(50% 50% at 50% 50%);
  background: #ededf9;
  width: 444px;
  height: 344px;
}*/

.header_wrap_2 .container:after {
  background: #4c55c4;
}

@media screen and (min-width: 768px) {
  .dropdown_item:hover .dropdown_content {
    display: block;
    visibility: visible;
    opacity: 1;
    z-index: 9;
  }
  .dropdown_content {
    overflow: hidden;
    visibility: hidden;
    z-index: -1;
    opacity: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .mega_nav .navbar-nav > li.nav-item {
    padding: 0px 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .nav_wrapper {
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .mega_nav .navbar-brand {
    margin-left: 30px;
    margin-top: 10px;
  }
  .mega_nav .navbar-brand img {
    width:36px;height: 28px;
  }
  .mega_nav .nav_wrapper {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    left: 0px;
    top: 0px;
    padding: 0% 7%;
    background: rgba(0, 6, 8, 0.9);
    position: absolute;
    width: 100%;
  }
  .mega_nav .nav_wrapper .navbar-nav {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding-bottom: 10px;
  }
  .mega_nav .nav_wrapper .navbar-nav > li {
    text-align: left;
    padding: 0px;
  }
  .mega_nav .nav_wrapper .navbar-nav > li a {
    padding: 10px 0px;
    display: inline-block;
    color: #fff;
  }
  .mega_nav .nav_wrapper .navbar-nav > li a:hover {
    color: #fff;
  }
  .mega_nav .nav_wrapper .navbar-nav > li a:after {
    height: 2px;
  }
  .mega_nav .nav_wrapper .navbar-nav > li.dropdown_item .dropdown_content {
    -webkit-box-shadow: none;
            box-shadow: none;
    background: transparent;
    padding: 0 10px;
    width: 100%;
  }
  .mega_nav .nav_wrapper .navbar-nav > li.dropdown_item .dropdown_content ul li a {
    padding: 0px 0px !important;
    color: #4c55c4;
    display: inline-block;
    border-bottom: none;
  }
  .mega_nav .nav_wrapper .navbar-nav > li.dropdown_item .dropdown_content ul li a:hover {
    color: #fff;
  }

  .header_wrap {
    margin-top: 0;
    padding: 0;
    /*background: rgba(0, 6, 8, 0.9);*/
  }

  .header_wrap > .container {
    height: 60px;
    padding: 0;
    max-width: 100vw;
  }
  .header_wrap > .container .col-md-12 {
    padding: 0;
  }
  .header_wrap > .container:after {
    left: -120px;
    top: -278px;
    width: 315px;
  }
  .header_wrap .container {
    padding: 0;
    max-width: 100vw;
    border-radius: 0;
  }
  .header_wrap .container .col-md-12 {
    padding: 0;
  }
}

/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
			6. Pre Loader Mobile menu icon
\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ */
/* hamburger */
.mega_nav .navbar-toggler {
  border: none;
  position: absolute;
  top: 18px;
  right: 30px;
}

.mega_nav .navbar-toggler .icon-bar {
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  height: 3px;
  width: 100%;
  background: #000;
  border-radius: 3px;
  position: absolute;
  left: 0;
  top: 0;
}

.mega_nav .navbar-toggler .icon-bar.icon-bar:nth-child(2) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: 10% 10%;
          transform-origin: 10% 10%;
}

.mega_nav .navbar-toggler .icon-bar:nth-child(3) {
  opacity: 0;
  top: 6px;
}

.mega_nav .navbar-toggler .icon-bar:nth-child(4) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: 10% 90%;
          transform-origin: 10% 90%;
  top: 12px;
}

.mega_nav .navbar-toggler:focus, .mega_nav .navbar-toggler:hover {
  background-color: transparent;
  outline: none;
}

.mega_nav .navbar-toggler.collapsed .icon-bar:nth-child(2),
.mega_nav .navbar-toggler.collapsed .icon-bar:nth-child(4) {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.mega_nav .navbar-toggler.collapsed .icon-bar:nth-child(3) {
  opacity: 1;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99900;
  -webkit-transition: 1s;
  transition: 1s;
}

.preloader:before, .preloader:after {
  position: absolute;
  top: 0;
  content: "";
  width: 50%;
  height: 100%;
  background: #000;
  -webkit-transition: 1s;
  transition: 1s;
}

.preloader:after {
  left: auto;
  right: 0;
}

.preloader:before {
  right: auto;
  left: 0;
}

.preloader.complete {
  opacity: 0;
  visibility: hidden;
}

.preloader.complete:after {
  right: -50%;
}

.preloader.complete:before {
  left: -50%;
}

.loader.completein {
  opacity: 0;
}

.loader {
  border-radius: 50px;
  line-height: 100px;
  text-align: center;
  width: 60px;
  height: 60px;
  position: absolute;
  z-index: 99901;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.loader:before, .loader:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(76, 85, 196, 0.4);
  border-radius: 50px;
  opacity: 0;
}

.loader:before {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-animation: pulse 2s infinite linear;
          animation: pulse 2s infinite linear;
}

.loader:after {
  -webkit-animation: pulse 2s 1s infinite linear;
          animation: pulse 2s 1s infinite linear;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.05);
            transform: scale(0.05);
    opacity: 0;
  }
  33% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 1;
  }
  66% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
    opacity: 0;
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(0.05);
            transform: scale(0.05);
    opacity: 0;
  }
  33% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 1;
  }
  66% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
    opacity: 0;
  }
}

.scrolltop {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  position: fixed;
  bottom: -50px;
  right: 30px;
  opacity: 0;
  z-index: 9999;
  background: #666;
  cursor: pointer;
  text-align: center;
  -webkit-box-shadow: 0px 12px 15px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 12px 15px 0px rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.scrolltop.is_scroll {
  opacity: 1;
  bottom: 50px;
}

.scrolltop i {
  margin-top: 7px;
  line-height: 1.5;
  display: inline-block;
  font-size: 18px;
  color: #fff;
}

.scrolltop:hover {
  bottom: 55px;
}

@media (max-width: 767px) {
  .loader {
    width: 30px;
    height: 30px;
  }
  .scrolltop {
    width: 30px;
    height: 40px;
  }
  .scrolltop.is_scroll {
    bottom: 40px;
  }
  .scrolltop i {
    margin-top: 8px;
    font-size: 14px;
  }
  .scrolltop:hover {
    bottom: 45px;
  }
}

/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
			7. Hero area section
\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ */
.hero_area {
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero_area h1 {
  font-size: 48px;
  margin-bottom: 40px;
}

.hero_area .video_wrapper {
  position: relative;
  width: 100%;
  height: 470px;
  right: -100px;
}

.hero_area .video_wrapper .hero_img {
  position: absolute;
}

.hero_area .video_wrapper .hero_img.hero_img.hero_img1 {
  z-index: 1;
  left: 0;
  top: 0;
  border-radius: 100% 45%;
  width: auto;
  height: 100%;
}

.hero_area .video_wrapper .hero_img.hero_img.hero_img2 {
  z-index: -2;
  left: 0;
  top: 0;
}

.hero_area .video_wrapper .hero_img.hero_img.hero_img3 {
  z-index: -3;
  right: 0;
  bottom: 0;
}

.hero_area_2 {
  padding: 160px 0 70px;
  position: relative;
  z-index: 1;
  height: 430px;
  margin-bottom: 130px;
  background: #f3f4fc;
}

.hero_area_2 .container {
  position: relative;
}

.hero_area_2 .page_title h1 {
  font-size: 48px;
  display: inline-block;
}

.hero_area_2 .page_title .breadcrumb {
  background: none;
}

.hero_area_2 .page_title .breadcrumb .breadcrumb-item a {
  color: #4c55c4;
}

.hero_area_2 .page_title .breadcrumb .breadcrumb-item:first-child:before {
  content: "";
}

.hero_area_2 .page_title .breadcrumb .breadcrumb-item:before {
  font-family: "themify";
  content: "\e622";
  font-weight: 700;
  color: #000;
}

.hero_area_2 .video_wrapper {
  position: absolute;
  right: 15px;
  top: 50px;
  width: 300px;
  height: 300px;
  z-index: -1;
}

.hero_area_2 .video_wrapper .video_img {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 250px;
  width: 250px;
  overflow: hidden;
  border-radius: 5px;
}

.hero_area_2 .video_wrapper .video_img .btn_pluse {
  -webkit-transform: translate(-50%, -50%) scale(0.75);
          transform: translate(-50%, -50%) scale(0.75);
}

.hero_area_2 .video_wrapper .video_img:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(76, 85, 196, 0.7);
}

.hero_area_2 .video_wrapper:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0px;
  background-image: url(https://www.centralasiatrucking.com/templates/main/assets/img/dots.png);
  height: 200px;
  width: 220px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .hero_area h1 {
    font-size: 40px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero_area {
    padding: 140px 0 60px;
  }
  .hero_area h1 {
    font-size: 36px;
    margin-bottom: 30px;
  }
  .hero_area .video_wrapper {
    height: 400px;
    right: 0;
  }
  .hero_area .video_wrapper .hero_img {
    width: 45%;
  }
  .hero_area .video_wrapper .hero_img.hero_img.hero_img1 {
    width: auto;
  }
  .hero_area_2 {
    margin-bottom: 100px;
  }
  .hero_area_2 .page_title {
    margin-top: 50px;
    margin-left: 50px;
  }
  .hero_area_2 .page_title h1 {
    font-size: 36px;
  }
  .hero_area_2 .video_wrapper {
    right: 0;
    top: -45px;
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 767px) {
  .hero_area {
    padding: 140px 0 50px;
  }
  .hero_area h1 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .hero_area .video_wrapper {
    margin-top: 30px;
    height: 320px;
    right: 0;
  }
  .hero_area .video_wrapper .hero_img {
    width: 45%;
  }
  .hero_area .video_wrapper .hero_img.hero_img.hero_img1 {
    width: auto;
    left: 15%;
  }
  .hero_area_2 {
    height: 500px;
    margin-bottom: 110px;
  }
  .hero_area_2 .page_title h1 {
    font-size: 28px;
  }
  .hero_area_2 .video_wrapper {
    right: calc(50% - 150px);
    top: 120px;
    height: 280px;
    width: 280px;
  }
  .hero_area_2 .video_wrapper .video_img {
    right: 15px;
    height: 230px;
    width: 230px;
  }
}

/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
			8. Footer
\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ */
.simple_clean{
    position: relative;
    top: 0px;
    bottom: 0px;
    background-color: transparent;
    background-image: url(https://www.centralasiatrucking.com/templates/main/assets/img/foot-bg.jpg);
    background-position: 50% 80px;
    background-repeat: no-repeat;
    background-size: 100%;
}


.footer_top .f_widget_1 {
  margin-right: 40px;
}

.footer_top .f_widget_1 h4 {
  margin-bottom: 25px;
}

.footer_top .f_widget_1 p {
  line-height: 1.5;
  margin-bottom: 25px;
}

.footer_top .f_widget_1 .social_link li {
  margin-right: 10px;
  display: inline-block;
}

.footer_top .f_widget_1 .social_link li a {
  font-size: 0;
}

.footer_top .f_widget_1 .social_link li i {
  font-size: 16px;
  display: inline-block;
  padding: 18px;
  border-radius: 4px;
  background: none;
  border: 1px solid #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #fff;
  -webkit-box-shadow: 0px 0px 25px 0px rgba(252, 128, 42, 0.12);
          box-shadow: 0px 0px 25px 0px rgba(252, 128, 42, 0.12);
}

.footer_top .f_widget_1 .social_link li i.ti-facebook {
  background: #3b5998;
}

.footer_top .f_widget_1 .social_link li i.ti-facebook:hover {
  color: #3b5998;
  background: #fff;
}

.footer_top .f_widget_1 .social_link li i.ti-vimeo-alt {
  background: #1ab7ea;
}

.footer_top .f_widget_1 .social_link li i.ti-vimeo-alt:hover {
  color: #1ab7ea;
  background: #fff;
}

.footer_top .f_widget_1 .social_link li i.ti-twitter-alt {
  background: #1da1f2;
}

.footer_top .f_widget_1 .social_link li i.ti-twitter-alt:hover {
  color: #1da1f2;
  background: #fff;
}

.footer_top .f_widget_1 .social_link li i.ti-pinterest {
  background: #bd081c;
}

.footer_top .f_widget_1 .social_link li i.ti-pinterest:hover {
  color: #bd081c;
  background: #fff;
}

.footer_top .f_widget_4,
.footer_top .f_widget_3,
.footer_top .f_widget_2 {
  text-align: left;
}

.footer_top .f_widget_4 h4,
.footer_top .f_widget_3 h4,
.footer_top .f_widget_2 h4 {
  margin-bottom: 25px;
}

.footer_top .f_widget_4 ul li,
.footer_top .f_widget_3 ul li,
.footer_top .f_widget_2 ul li {
  display: block;
  margin-bottom: 20px;
}

.footer_top .f_widget_4 ul li:last-child,
.footer_top .f_widget_3 ul li:last-child,
.footer_top .f_widget_2 ul li:last-child {
  margin-bottom: 0;
}

.footer_top .f_widget_4 ul li a,
.footer_top .f_widget_3 ul li a,
.footer_top .f_widget_2 ul li a {
  display: inline-block;
  color: #5b5c69;
  font-size: 16px;
  font-weight: 400;
  font-family: "Muli", sans-serif;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.footer_top .f_widget_4 ul li a:hover,
.footer_top .f_widget_3 ul li a:hover,
.footer_top .f_widget_2 ul li a:hover {
  margin-left: 5px;
  opacity: 0.5;
}

.footer_bottom {
  background-color: rgba(76, 85, 196, 0.05);
  height: 50px;
  position: relative;
  margin-top: 120px;
}

.footer_bottom .copy_right_text p {
  font-size: 16px;
  color: #222222;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .simple_clean {
    padding-top: 60px;
  }
  .footer_top .f_widget_1 {
    margin: 0;
  }
  .footer_top .f_widget_1 h4 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .footer_top .f_widget_1 p {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .footer_top .f_widget_1 .social_link {
    margin-top: 15px;
    margin-bottom: 0px;
  }
  .footer_top .f_widget_1 .social_link li {
    margin-right: 5px;
  }
  .footer_top .f_widget_1 .social_link li i {
    padding: 15px;
    font-size: 14px;
  }
  .footer_top .f_widget_4 h4,
  .footer_top .f_widget_3 h4,
  .footer_top .f_widget_2 h4 {
    margin-bottom: 20px;
    font-size: 20px;
    text-align: left;
  }
  .footer_top .f_widget_4 ul li,
  .footer_top .f_widget_3 ul li,
  .footer_top .f_widget_2 ul li {
    margin-bottom: 20px;
  }
  .footer_top .f_widget_4 ul li a,
  .footer_top .f_widget_3 ul li a,
  .footer_top .f_widget_2 ul li a {
    font-size: 14px;
  }
  .footer_bottom {
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .simple_clean {
    padding-top: 50px;
  }
  .footer_top .f_widget_1 {
    margin: 0;
    text-align: center;
    margin-bottom: 35px;
  }
  .footer_top .f_widget_1 h4 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .footer_top .f_widget_1 p {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .footer_top .f_widget_1 .social_link {
    margin-top: 15px;
    margin-bottom: 0px;
  }
  .footer_top .f_widget_1 .social_link li {
    margin-right: 5px;
  }
  .footer_top .f_widget_1 .social_link li i {
    padding: 15px;
    font-size: 14px;
  }
  .footer_top .f_widget_4,
  .footer_top .f_widget_3,
  .footer_top .f_widget_2 {
    margin-bottom: 35px;
    text-align: center;
  }
  .footer_top .f_widget_4 h4,
  .footer_top .f_widget_3 h4,
  .footer_top .f_widget_2 h4 {
    margin-bottom: 15px;
    font-size: 20px;
  }
  .footer_top .f_widget_4 ul li,
  .footer_top .f_widget_3 ul li,
  .footer_top .f_widget_2 ul li {
    margin-bottom: 15px;
  }
  .footer_top .f_widget_4 ul li a,
  .footer_top .f_widget_3 ul li a,
  .footer_top .f_widget_2 ul li a {
    font-size: 14px;
  }
  .footer_bottom {
    margin-top: 0px;
  }
  .footer_bottom .copy_right_text p {
    font-size: 12px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .footer_bottom .copy_right_text p {
    font-size: 14px;
  }
}

/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
			9. Client
\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ */
.client_area {
  height: auto;
}

.client_area .client_img {
  height: 110px;
  width: 100%;
  background: #fff;
}

.client_area .client_img a {
  font-size: 0;
  text-align: center;
  -webkit-filter: opacity(0.5) grayscale(1);
          filter: opacity(0.5) grayscale(1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.client_area .client_img a img {
  width: 70%;
}

.client_area .client_img a:hover {
  -webkit-filter: opacity(1) grayscale(0);
          filter: opacity(1) grayscale(0);
}

/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
			10. Service
\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ */
.single_service_item {
  margin: 60px 0 30px;
  position: relative;
  border-radius: 100% 45%;
  height: 360px;
  text-align: center;
  padding: 95px 45px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  top: 0;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 19.8px 0.2px rgba(76, 85, 196, 0.08);
  box-shadow: 0px 0px 19.8px 0.2px rgba(76, 85, 196, 0.08);
}

.single_service_item:hover {
  background: #4c55c4;
}

.single_service_item .service_icon {
  position: absolute;
  top: -58px;
  z-index: 5;
  right: calc(50% - 58px);
  width: 116px;
  background-color: #f3f4fc;
  height: 116px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
}

.single_service_item .service_icon i {
  font-size: 36px;
  color: #4c55c4;
}

.single_service_item:hover h5 {
  color: #fff;
}

.single_service_item:hover p {
  color: #fff;
}

.single_service_item h5 {
  margin-bottom: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.single_service_item p {
  line-height: 1.75;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-bottom: 30px;
}

.single_service_item .boxed_btn {
  display: inline-block;
  background-color: #f3f4fc;
  font-size: 16px;
  color: #5b5c69;
  border-radius: 50%;
  font-weight: 700;
  padding: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.single_service_item .boxed_btn:hover {
  background: #fff;
  color: #4c55c4;
}

/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
			11. Call to action
\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ */
.call_to_action_area .ct_wrapper {
  padding: 70px 0;
  position: relative;
  z-index: 1;
}

.call_to_action_area .ct_wrapper:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  opacity: 0.2;
}

.call_to_action_area .ct_action .heading {
  color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .call_to_action_area .ct_wrapper {
    padding: 50px 0;
  }
}

@media (max-width: 767px) {
  .call_to_action_area .ct_wrapper {
    padding: 30px 0;
    text-align: center;
  }
  .call_to_action_area .btn_2 {
    margin: 0 auto;
  }
}

/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
			12. Team 
\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ */
.team_member {
  border: 1px solid #eaeaea;
  -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  height: 290px;
  padding: 40px;
  margin-bottom: 30px;
  border-radius: 20% 15%;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.team_member:hover {
  -webkit-box-shadow: 0px 0px 45px 0px rgba(76, 85, 196, 0.15);
  box-shadow: 0px 0px 45px 0px rgba(76, 85, 196, 0.15);
}

.team_member img {
  height: 120px;
  width: auto;
  max-width: 200%;
  border-radius: 50%;
  margin-bottom: 30px;
}

.team_member h5 {
  margin-bottom: 10px;
}

.team_member .designation {
  font-size: 14px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team_area .common_block {
    margin-bottom: 30px;
  }
}

/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
			13. Testimonial 
\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ */
.testimonial_area i {
  font-size: 45px;
  margin-bottom: 20px;
}

.testimonial_area p {
  font-size: 17px;
  line-height: 1.5;
  margin-top: 20px;
}

.testimonial_area h5 {
  margin: 20px 0 10px;
}

.testimonial_area .designation {
  font-size: 14px;
  margin: 0;
}

.testimonial_area .swiper-pagination {
  text-align: right;
}

.testimonial_area .swiper-pagination .swiper-pagination-bullet {
  margin: 0 2px;
  padding: 6px;
  background: #4c55c4;
}

/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
			14. blog 
\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ */
.blog_area {
  background: #fff;
}

.single_blog_item {
  background: #fff;
  margin-bottom: 30px;
  position: relative;
  top: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-shadow: 0px 0px 49px 0px rgba(76, 85, 196, 0.1);
  box-shadow: 0px 0px 49px 0px rgba(76, 85, 196, 0.1);
}

.single_blog_item:hover {
  -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  top: -10px;
}

.single_blog_item .blog_content {
  padding: 25px 20px;
}

.single_blog_item .blog_content h2 {
  font-size: 22px;
  margin-bottom: 15px;
}

.single_blog_item .blog_content h2 a,
.single_blog_item .blog_content h2 a:hover {
  color: #222222;
}

.single_blog_item .blog_content p {
  font-size: 16px;
  line-height: 1.5;
}

.single_blog_item .blog_content .meta_date {
  display: inline-block;
  font-size: 14px;
  margin-bottom: 20px;
  color: #4c55c4;
}

.single_blog_item .blog_img {
  height: 190px;
  overflow: hidden;
}

.single_blog_item .blog_img img {
  height: auto;
  width: 100%;
  max-width: 100%;
}

.single_blog_item_2 {
  margin-bottom: 60px;
}

.single_blog_item_2 .blog_img {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 5px;
}

.single_blog_item_2 .blog_img img {
  height: auto;
  width: 100%;
  max-width: 100%;
}

.single_blog_item_2 .blog_img .boxed_btn {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #f3f4fc;
  font-size: 16px;
  color: #5b5c69;
  border-radius: 50%;
  font-weight: 700;
  padding: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.single_blog_item_2 .blog_img .boxed_btn:hover {
  background: #fff;
  color: #4c55c4;
}

.single_blog_item_2 .blog_img:after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  left: 0;
  top: 0;
  opacity: 0;
  visibility: visible;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: rgba(76, 85, 196, 0.7);
}

.single_blog_item_2 .blog_meta_list {
  margin-bottom: 15px;
}

.single_blog_item_2 .blog_meta_list a {
  color: #4c55c4;
  font-weight: 500;
  position: relative;
  margin-right: 15px;
}

.single_blog_item_2 .blog_meta_list a:last-of-type:after {
  content: "";
}

.single_blog_item_2 .blog_meta_list a:after {
  position: absolute;
  content: "/";
  font-weight: 500;
  color: #4c55c4;
  right: -10px;
}

.single_blog_item_2 h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

.single_blog_item_2:hover .blog_img:after {
  opacity: 1;
  visibility: visible;
}

.single_blog_item_2:hover .blog_img .boxed_btn {
  opacity: 1;
  visibility: visible;
}

.side_bar {
  margin-left: 40px;
}

.side_bar .search_box {
  margin-bottom: 40px;
}

.side_bar .search_box .input-group {
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #eeeffb;
  -webkit-box-shadow: 0px 0px 13.86px 0.14px rgba(76, 85, 196, 0.12);
  box-shadow: 0px 0px 13.86px 0.14px rgba(76, 85, 196, 0.12);
  height: 60px;
}

.side_bar .search_box .input-group input {
  border: none;
  color: #5b5c69;
  background: none;
  height: 100%;
}

.side_bar .search_box .input-group .input-group-btn .boxed_btn {
  color: #fff;
  height: 100%;
  width: 60px;
  background: #4c55c4;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.side_bar .search_box .input-group .input-group-btn .boxed_btn:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.side_bar .search_box .input-group .input-group-btn .boxed_btn:hover {
  background: rgba(76, 85, 196, 0.7);
}

.side_bar h3 {
  font-size: 30px;
  margin-bottom: 30px;
}

.side_bar .categories {
  border-radius: 5px;
  background: #f3f4fc;
  margin-bottom: 70px;
  padding: 45px 30px;
}

.side_bar .categories p {
  margin-bottom: 25px;
}

.side_bar .categories p:last-of-type {
  margin-bottom: 0;
}

.side_bar .categories p a {
  font-size: 18px;
  color: #5b5c69;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.side_bar .categories p a:hover {
  color: #4c55c4;
}

.side_bar .categories p span {
  color: #5b5c69;
}

.side_bar .post_list {
  margin-bottom: 70px;
}

.side_bar .post_list .post {
  margin-bottom: 25px;
}

.side_bar .post_list .post:last-of-type {
  margin-bottom: 0;
}

.side_bar .post_list .post .post_img {
  margin-right: 20px;
  height: 75px;
  border-radius: 3px;
  width: 75px;
  overflow: hidden;
  position: relative;
}

.side_bar .post_list .post .post_img img {
  height: 100%;
  position: absolute;
}

.side_bar .post_list .post p {
  width: 70%;
  font-weight: 500;
  font-family: "Muli", sans-serif;
}

.side_bar .post_list .post p span {
  display: block;
  color: #4c55c4;
  margin-top: 5px;
}

.side_bar .post_list .post p a {
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #3a3b58;
}

.side_bar .post_list .post p a:hover {
  color: #4c55c4;
}

.side_bar .tags {
  margin-bottom: 70px;
}

.side_bar .tags a {
  padding: 15px 20px;
  display: inline-block;
  border-radius: 3px;
  margin: 0 10px 10px 0;
  background: #f3f4fc;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #5b5c69;
}

.side_bar .tags a:hover {
  color: #fff;
  background: #4c55c4;
}

.blog_details_area .blog_img {
  position: relative;
  overflow: hidden;
  display: block;
  height: 400px;
  border-radius: 5px;
  margin-bottom: 70px;
}

.blog_details_area .blog_img img {
  height: 100%;
}

.blog_details_area .blog_content_2 {
  margin-bottom: 30px;
}

.blog_details_area .blog_meta_list {
  margin-bottom: 35px;
}

.blog_details_area .blog_meta_list a {
  padding: 10px;
  font-weight: 500;
  color: #4c55c4;
  font-size: 14px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.blog_details_area .blog_meta_list a:hover {
  color: #5b5c69;
}

.blog_details_area .comment_form {
  margin-top: 70px;
}

.blog_details_area .comment_form .b_heading {
  margin-bottom: 40px;
}

.blog_details_area .comment_form form input[type="text"],
.blog_details_area .comment_form form input[type="email"],
.blog_details_area .comment_form form textarea {
  background: #fff;
  font-size: 18px;
  color: #5b5c69;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-weight: 400;
  font-family: "Muli", sans-serif;
  border: 1px solid rgba(76, 85, 196, 0.3);
  height: 60px;
  padding: 20px;
  margin-bottom: 30px;
}

.blog_details_area .comment_form form input[type="text"]:focus,
.blog_details_area .comment_form form input[type="email"]:focus,
.blog_details_area .comment_form form textarea:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.blog_details_area .comment_form form textarea {
  height: auto;
  margin-bottom: 0;
}

.blog_details_area .comment_form form button {
  margin-top: 45px;
}

.blog_details_area .tag_pagination {
  background: #f3f4fc;
  padding: 10px 20px;
  border-radius: 5px;
}

.blog_details_area .tag_pagination .tags a {
  margin: 0 2px;
  color: #5b5c69;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.blog_details_area .tag_pagination .tags a:hover {
  color: #4c55c4;
}

.blog_details_area .tag_pagination .tags h5 {
  display: inline-block;
}

.blog_details_area .tag_pagination .navigation li {
  padding: 17px;
  background: rgba(76, 85, 196, 0.2);
  color: #4c55c4;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-left: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.blog_details_area .tag_pagination .navigation li i {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.blog_details_area .tag_pagination .navigation li:hover {
  background: #4c55c4;
}

.blog_details_area .tag_pagination .navigation li:hover i {
  color: #fff;
}

.navigation_2 li {
  display: inline-block;
}

.navigation_2 li a {
  padding: 10px;
  background: rgba(76, 85, 196, 0.2);
  color: #222222;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navigation_2 li a:hover {
  background: #4c55c4;
  color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .side_bar {
    margin-left: 0px;
  }
  .side_bar .search_box {
    margin-bottom: 35px;
  }
  .side_bar .search_box .input-group {
    height: 45px;
  }
  .side_bar .search_box .input-group .input-group-btn .boxed_btn {
    width: 45px;
  }
  .side_bar h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .side_bar .categories {
    margin-bottom: 40px;
    padding: 20px 12px;
  }
  .side_bar .categories p {
    margin-bottom: 15px;
  }
  .side_bar .categories p a {
    font-size: 16px;
  }
  .side_bar .post_list {
    margin-bottom: 35px;
  }
  .side_bar .post_list .post {
    margin-bottom: 15px;
  }
  .side_bar .post_list .post .post_img {
    margin-right: 10px;
    height: 70px;
    width: 70px;
  }
  .side_bar .post_list .post p a,
  .side_bar .post_list .post p span {
    font-size: 14px;
  }
  .side_bar .tags {
    margin-bottom: 35px;
  }
  .side_bar .tags a {
    padding: 10px 15px;
    font-size: 14px;
  }
  .blog_details_area .blog_img {
    height: 260px;
    margin-bottom: 25px;
  }
  .blog_details_area .blog_meta_list {
    margin-bottom: 25px;
  }
  .blog_details_area .comment_form {
    margin-top: 25px;
  }
  .blog_details_area .comment_form .b_heading {
    margin-bottom: 10px;
  }
  .blog_details_area .comment_form form input[type="text"],
  .blog_details_area .comment_form form input[type="email"],
  .blog_details_area .comment_form form textarea {
    font-size: 16px;
    height: 45px;
    padding: 15px;
    margin-bottom: 20px;
  }
  .blog_details_area .comment_form form textarea {
    height: auto;
  }
  .blog_details_area .comment_form form button {
    margin-top: 25px;
  }
  .blog_details_area .tag_pagination {
    padding: 10px;
  }
  .blog_details_area .tag_pagination .navigation li {
    padding: 10px;
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 767px) {
  .side_bar {
    margin-top: 30px;
    margin-left: 0px;
  }
  .side_bar .search_box {
    margin-bottom: 35px;
  }
  .side_bar .search_box .input-group {
    height: 45px;
  }
  .side_bar .search_box .input-group .input-group-btn .boxed_btn {
    width: 45px;
  }
  .side_bar h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .side_bar .categories {
    margin-bottom: 40px;
    padding: 20px 12px;
  }
  .side_bar .categories p {
    margin-bottom: 15px;
  }
  .side_bar .categories p a {
    font-size: 16px;
  }
  .side_bar .post_list {
    margin-bottom: 35px;
  }
  .side_bar .post_list .post {
    margin-bottom: 15px;
  }
  .side_bar .post_list .post .post_img {
    margin-right: 10px;
    height: 70px;
    width: 70px;
  }
  .side_bar .post_list .post p a,
  .side_bar .post_list .post p span {
    font-size: 14px;
  }
  .side_bar .tags {
    margin-bottom: 35px;
  }
  .side_bar .tags a {
    padding: 10px 15px;
    font-size: 14px;
  }
  .blog_details_area .blog_img {
    height: 220px;
    margin-bottom: 25px;
  }
  .blog_details_area .blog_meta_list {
    margin-bottom: 25px;
  }
  .blog_details_area .comment_form {
    margin-top: 25px;
  }
  .blog_details_area .comment_form .b_heading {
    margin-bottom: 10px;
  }
  .blog_details_area .comment_form form input[type="text"],
  .blog_details_area .comment_form form input[type="email"],
  .blog_details_area .comment_form form textarea {
    font-size: 16px;
    height: 45px;
    padding: 15px;
    margin-bottom: 20px;
  }
  .blog_details_area .comment_form form textarea {
    height: auto;
  }
  .blog_details_area .comment_form form button {
    margin-top: 25px;
  }
  .blog_details_area .tag_pagination {
    padding: 10px;
  }
  .blog_details_area .tag_pagination .navigation li {
    padding: 10px;
    width: 35px;
    height: 35px;
  }
  .single_blog_item_2 {
    margin-bottom: 40px;
  }
}

/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
			15. portfolio 
\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ */
.project_area .btn, .project_area .btn_2 {
  margin-top: 20px;
}

.single_portfolio {
  position: relative;
  z-index: 1;
}

.single_portfolio:hover .boxed_btn {
  bottom: calc(50% + 20px);
  right: calc(50% - 30px);
}

.single_portfolio:hover .details p,
.single_portfolio:hover .details h4 {
  text-align: center;
}

.single_portfolio:hover .details h4 {
  text-align: center;
  color: #4c55c4;
}

.single_portfolio:hover .portfolio_img:after {
  opacity: 1;
  visibility: visible;
}

.single_portfolio .portfolio_img {
  overflow: hidden;
  height: 300px;
  border-radius: 5px;
  position: relative;
  z-index: 1;
}

.single_portfolio .portfolio_img:after {
  opacity: 0;
  visibility: hidden;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: rgba(76, 85, 196, 0.7);
}

.single_portfolio .details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.single_portfolio .details p {
  margin-top: 35px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.single_portfolio .details h4 {
  margin-top: 25px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.single_portfolio .boxed_btn {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  right: 5px;
  display: inline-block;
  background-color: #f3f4fc;
  font-size: 16px;
  color: #5b5c69;
  border-radius: 50%;
  font-weight: 700;
  padding: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.single_portfolio .boxed_btn:hover {
  background: #fff;
  color: #4c55c4;
}

.project_details_area .project_details .defination:last-of-type {
  margin: 0;
}

.project_info {
  background: #f3f4fc;
  padding-bottom: 30px;
  border-radius: 5px;
  overflow: hidden;
}

.project_info h3 {
  padding: 30px;
  background: rgba(76, 85, 196, 0.2);
}

.project_info .single_info {
  padding: 25px 0 0 30px;
}

.project_info .single_info h4 {
  font-size: 22px;
  margin-bottom: 5px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .project_info h3 {
    padding: 20px;
  }
  .project_info .single_info {
    padding: 20px 0 0 20px;
  }
  .project_info .single_info h4 {
    margin: 0;
  }
}

@media (max-width: 767px) {
  .single_portfolio {
    position: relative;
    z-index: 1;
  }
  .single_portfolio:hover .boxed_btn {
    bottom: calc(50% + 20px);
    right: calc(50% - 30px);
  }
  .single_portfolio:hover .details p,
  .single_portfolio:hover .details h4 {
    text-align: center;
  }
  .single_portfolio:hover .details h4 {
    text-align: center;
    color: #4c55c4;
  }
  .single_portfolio:hover .portfolio_img:after {
    opacity: 1;
    visibility: visible;
  }
  .single_portfolio .portfolio_img {
    height: 250px;
  }
  .single_portfolio .details p {
    margin-top: 25px;
  }
  .single_portfolio .details h4 {
    margin-top: 10px;
  }
  .single_portfolio .boxed_btn {
    bottom: 5px;
    right: 5px;
  }
  .project_info {
    margin-top: 30px;
  }
  .project_info h3 {
    padding: 15px;
  }
}

/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
			16. contact 
\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ */
.contact_area .contact_info {
  padding: 70px;
  background: #4c55c4;
  position: relative;
  z-index: 9;
  top: -80px;
  border-radius: 5px;
}

.contact_area .contact_info .single_info {
  margin-bottom: 30px;
}

.contact_area .contact_info .single_info h5 {
  margin-bottom: 20px;
  color: #fff;
}

.contact_area .contact_info .single_info p {
  margin-bottom: 5px;
  color: #fff;
}

.contact_area .contact_info:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  border-radius: 5px;
  background-image: url("https://www.centralasiatrucking.com/templates/main/assets/img/world_dot_map.png");
  background-size: cover;
  opacity: 0.2;
}

.contact_area .contact_form {
  background: #f3f4fc;
  padding: 70px;
  position: relative;
  border-radius: 0 5px 5px 0;
  z-index: 1;
}

.contact_area .contact_form:after {
  position: absolute;
  z-index: -1;
  left: -100px;
  height: 100%;
  width: 100px;
  top: 0;
  content: "";
  background: #f3f4fc;
  border-radius: 5px 0 0 5px;
}

.contact_area .contact_form .form-control {
  border: 1px solid #dbdff9;
  border-radius: 5px;
  background-color: #fff;
  height: 60px;
  margin-bottom: 30px;
}

.contact_area .contact_form textarea.form-control {
  min-height: 170px;
  padding: 10px;
}

.map {
  height: 450px;
  width: 100%;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .contact_area .contact_info {
    padding: 50px;
  }
  .contact_area .contact_form {
    padding: 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact_area .contact_info {
    padding: 15px;
  }
  .contact_area .contact_form {
    padding: 40px;
  }
  .contact_area .contact_form .form-control {
    height: 45px;
  }
  .contact_area .contact_form textarea.form-control {
    min-height: 140px;
  }
}

@media (max-width: 767px) {
  .contact_area .contact_info {
    padding: 30px;
    top: 0px;
    margin-bottom: 30px;
  }
  .contact_area .contact_info .single_info {
    margin-bottom: 20px;
  }
  .contact_area .contact_info .single_info h5 {
    margin-bottom: 10px;
  }
  .contact_area .contact_info .single_info:last-of-type {
    margin-bottom: 0;
  }
  .contact_area .contact_form {
    padding: 30px;
    border-radius: 5px;
  }
  .contact_area .contact_form:after {
    height: 0;
  }
  .contact_area .contact_form .form-control {
    height: 40px;
    margin-bottom: 20px;
  }
  .contact_area .contact_form textarea.form-control {
    min-height: 120px;
  }
}

/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
			17. contact 
\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ */
.img_wrapper {
  height: 570px;
  left: -50px;
  margin-bottom: 30px;
  position: relative;
  border-radius: 100% 45%;
  overflow: hidden;
}

.img_wrapper .img_inner_wrap {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: auto;
}

.img_wrapper_2 {
  position: relative;
  z-index: 1;
  height: 500px;
}

.img_wrapper_2:after, .img_wrapper_2:before {
  position: absolute;
  content: "";
  height: 250px;
  width: 250px;
  background-image: url("https://www.centralasiatrucking.com/templates/main/assets/img/dots.png");
  z-index: -2;
}

.img_wrapper_2:after {
  left: -50px;
  top: -50px;
}

.img_wrapper_2:before {
  right: -50px;
  bottom: -50px;
}

.img_wrapper_2 .img_inner_wrap {
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
}

.img_wrapper_2 .img_inner_wrap img {
  max-width: 100%;
}

.img_wrapper_4 {
  position: relative;
  height: 250px;
  border-radius: 5px;
  margin-bottom: 60px;
  z-index: 1;
  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;
}

.img_wrapper_4:after, .img_wrapper_4:before {
  position: absolute;
  content: "";
  height: 175px;
  width: 175px;
  border-radius: 3px;
  background: rgba(76, 85, 196, 0.2);
  z-index: -2;
}

.img_wrapper_4:after {
  left: -30px;
  top: -30px;
}

.img_wrapper_4:before {
  right: 45px;
  bottom: -30px;
}

.img_wrapper_4 .img_inner_wrap {
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.img_inner_wrap {
  background: rgba(76, 85, 196, 0.7);
}

.video_wrapper_2 {
  position: relative;
  height: 470px;
  z-index: 1;
  padding: 50px;
  padding-left: 70px;
  margin-bottom: 30px;
  padding-right: 0;
}

.video_wrapper_2 .video_thumb {
  text-align: center;
  border: 8px solid #f3f4fc;
  overflow: hidden;
  border-radius: 5px;
  height: 100%;
  width: 100%;
}

.video_wrapper_2 .video_inner_wrap {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 280px;
  width: 280px;
  overflow: hidden;
  border-radius: 5px;
}

.video_wrapper_2 .video_inner_wrap .btn_pluse {
  -webkit-transform: translate(-50%, -50%) scale(0.75);
          transform: translate(-50%, -50%) scale(0.75);
}

.video_wrapper_2 .video_inner_wrap:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(76, 85, 196, 0.7);
}

.video_wrapper_2:before {
  position: absolute;
  content: "";
  bottom: 0px;
  right: -50px;
  background-image: url(https://www.centralasiatrucking.com/templates/main/assets/img/dots.png);
  height: 210px;
  width: 210px;
  z-index: -1;
}

.video_wrapper_3 {
  position: relative;
  height: 250px;
  width: 100%;
  z-index: 1;
  padding: 50px;
  margin-bottom: 30px;
  padding-left: 70px;
  padding-right: 0;
}

.video_wrapper_3:hover .video_inner_wrap:after,
.video_wrapper_3:hover .video_inner_wrap .btn_pluse {
  opacity: 1;
  visibility: visible;
}

.video_wrapper_3 .video_thumb {
  text-align: center;
  border: 8px solid #797575;
  overflow: hidden;
  border-radius: 5px;
  height: 100%;
  width: 100%;
}

.video_wrapper_3 .video_inner_wrap {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 250px;
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
}

.video_wrapper_3 .video_inner_wrap .btn_pluse {
  -webkit-transform: translate(-50%, -50%) scale(0.75);
          transform: translate(-50%, -50%) scale(0.75);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.video_wrapper_3 .video_inner_wrap:after {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(76, 85, 196, 0.7);
}

.common_block_2 {
  margin-right: 40px;
}

.common_block_3 h2 {
  margin-right: 55%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .img_wrapper {
    height: 400px;
    left: -20px;
  }
  .img_wrapper_2 {
    height: 350px;
  }
  .common_block_2 {
    margin-right: 0px;
  }
  .common_block_3 h2 {
    margin-right: 35%;
  }
}

@media (max-width: 767px) {
  .img_wrapper {
    height: 320px;
    left: 0px;
  }
  .img_wrapper_2 {
    height: 250px;
    width: 90%;
    margin: 0 auto;
  }
  .img_wrapper_2:after, .img_wrapper_2:before {
    height: 190px;
    width: 190px;
  }
  .img_wrapper_2:after {
    left: -25px;
    top: -25px;
  }
  .img_wrapper_2:before {
    bottom: -25px;
    right: -25px;
  }
  .common_block_2 {
    margin-right: 0px;
  }
  .common_block_3 h2 {
    margin-right: 20%;
  }
  .video_wrapper_2 {
    height: 350px;
  }
  .video_wrapper_2 .video_inner_wrap {
    height: 200px;
    width: 200px;
  }
}
/*# sourceMappingURL=style.css.map */

/*hgl新增开始*/
@media (min-width: 1200px){
  .container {
      max-width: 1200px;
  }
  /*scrollbar*/
::-webkit-scrollbar{width:8px;height: 6px;}
::-webkit-scrollbar-track-piece{margin-right:10px; background-color:#EEE; -webkit-border-radius:8px;}
::-webkit-scrollbar-thumb:vertical{height:8px; background-color:#DDD; -webkit-border-radius:8px;}
::-webkit-scrollbar-thumb:horizontal{ width:6px; background-color:#EEE; -webkit-border-radius:8px;}
}

.navbar-brand img{width:83px; height: auto;}
.nav_wrapper{position: relative;width: 100%;}
.login-text{ display: block;width: 268px; position: absolute; top:16px;left: 0px; line-height: 40px; text-align: center; }
.login-text .title1{
  display: inline-block;font-family: Tahoma;font-size: 30px; height: 36px;line-height: 36px; color: #000000;
    font-weight: bold;text-decoration: none;font-style: normal;vertical-align: top;
}
.login-text .title2{
  display: inline-block;font-family: Tahoma;text-align: center;
    font-size: 14px;color: #000000;font-weight: normal;
    text-decoration: none;font-style: normal;vertical-align: top;
}
.navbar-nav{float: right;}
.w-language-group{overflow: hidden;zoom:1; position: absolute;right: 28px;top:-5px;}
.w-language-group .w-language-item {
    margin: 0 5px;
    padding: 0;
    display: inline-block;
    float: left;
    line-height: 1.6;
    list-style: none;
}
.w-language-group .w-language-item .w-language-link {
    padding: 0;
    margin: 0;
    display: inline-block;
    font-family: Tahoma;
    font-size: 12px;
    color: #666;
    font-weight: normal;
    text-decoration: none;
    height:18px;
    line-height: 18px;
}


.col-md-12{padding: 0px;}
.header_wrap .container {
    padding:0px; 
}
.header_wrap .container .row{
    margin: 0px; 
}
.section2{ display: block; position: relative; }
.section-second{display: block;position: relative; background: #fff; overflow: hidden;height: 600px;}
.section-second video{top: 180px;}

.sec_about{height: 406px;background-color: rgb(238, 238, 238);position: relative;}
.sec_about .kuang1{width: 317px;height: 404px; position: absolute;top: 10px; left: 0px; z-index: 0;border: 3px solid #ccc;}
.sec_about .kuang2{width: 464px;height: 305px;background: #fff; position: absolute;top:60px;left: 50px;}
.sec_about .kuang2 img{width: 262px; height: auto; margin-top: 65px; margin-left: 96px;}
.sec_about .kuang3{width: 144px; height: 50px; position: absolute;top: 350px; left: 110px;}
.sec_about .kuang2 .floor-img {
    transition: all .4s linear;
    width: 295px; 
}
.sec_about .kuang2 .floor-img:hover {
  transform: scale(1.2);
}
.about_content{width:507px; height: 368px; position: absolute;right: 0px;top:-43px;}
.about_content h2{font-size: 28px; font-weight: normal; text-align: center; height: 100px; line-height: 100px;}
.about_content p{font-size: 16px; text-align: left;line-height: 30px; color:#666; text-align:justify;}

.about_content_en p{font-size:14px;line-height:21px; text-align:justify;}
.about_content_en{
    width: 567px;
    margin-top: -50px;
}
.w-button-text{display: block;width: 135px;height: 37px;line-height: 37px; position: relative; float:right; bottom:0px; 
  background: url(https://www.centralasiatrucking.com/templates/main/assets/img/w-button.png);right: -30px;
}
.w-button-text:hover{
  background: url(https://www.centralasiatrucking.com/templates/main/assets/img/w-button1.png);
}

.w-button-text-en{display: block;width: 135px;height: 37px;line-height: 37px; position: absolute;  
  background: url(https://www.centralasiatrucking.com/templates/main/assets/img/learn-more.png);right: 0px;
}
.w-button-text-en:hover{
  background: url(https://www.centralasiatrucking.com/templates/main/assets/img/learn-more1.png);
}
.car_show{height: 500px;}
.car_show_content{position: absolute; top:80px;width:424px;height: 122px;}
.car_show_content h2{font-size: 28px; font-weight: normal; text-align: left;height: 80px; line-height: 80px;}
.car_show_content p{font-size: 16px; text-align: left; line-height: 30px; color:#666;}
.car_show_content .car_more{
  display: block;width: 135px;height: 38px;line-height: 38px;font-size: 14px;color:#fff;font-weight: 400;
  border-radius: 3px;
  background-color: rgb(67, 67, 67);
  background-image: none;text-align: center; margin-top: 30px;
}
.car_show_content .car_more:hover{
  opacity: 0.6;
}
.car_show_content_en p{font-size:14px; text-align:justify; line-height:23px;}
.car_show_content_en .car_more{ margin-top:70px;}

.car_list{overflow: hidden;zoom:1; width: 720px; position: absolute;right: 0px;top: 0px;}
.car_list .car_item{float: left; margin-bottom: 22px; width: 340px; margin-left: 20px; text-align: center; 
  height: 207px;overflow: hidden;box-sizing: border-box;
}
.car_list .car_item img{width: 340px; height: auto;transition: all .4s linear;}
.car_list .car_item img:hover{
    width: 360px;
    transform: scale(1.2);
}
.zixun{height: 325px;width: 100%;}

.zixun .new-pic{
  width: 599px;height: 348px;position: absolute;top:64px;left: 0px;
      box-sizing: border-box;
    overflow: hidden;
}

.zixun h2{text-align: center;font-size: 28px; font-weight: normal;height: 1.5rem;}

.new-list{position: absolute;top:100px;}

.new-list .new-list-item{
      padding: 0;
    margin: 0;
    padding-bottom: 20px;
    margin-bottom: 20px;
    position: relative;
    min-height: 150px;
    border-bottom-color: #ddd;
    border-bottom-width: 1px;
    border-bottom-style: dotted;
}

.new-list h3{
    padding: 0;
    margin: 0;
    width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.new-list h3 a{
      line-height: 24px;
    display: block;
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    color: #333333;
    text-decoration: none;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}
.new-list h3 a:hover{
  font-weight: 800;
}
.new-list p{
  padding: 0;
    margin: 0;
    margin-top: 5px;
    line-height: 31px;
    font-size: 16px;
    font-style: normal;
    font-weight: normal;
    color: #666666;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-all;
    overflow: hidden;
    text-overflow: ellipsis;
}


.new-list .date{
  padding: 0;
    margin: 0;
    display: inline-block;
    font-family: Tahoma;
    font-size: 12px;
    font-style: normal;
    font-weight: normal;
    color: #BBB;
    text-decoration: none;
}

.new-list .w-list-bottom {
    padding: 0;
    margin: 0;
    margin-top: 5px;
    height: 20px;
    line-height: 20px;
    overflow: hidden;zoom:1;
}
.new-list .w-list-bottom .nums {
    float: right;
    font-family: Tahoma;
    font-size: 12px;
    color: #BBB;
    background:url(https://www.centralasiatrucking.com/templates/main/assets/img/nums.png) no-repeat 0 7px;
    padding-left: 16px;
}
.zixun-more{ height: 60px;line-height: 60px; text-align: center; position: absolute;top:480px;width: 100%;}
.zixun-more a{
    display: block;
    width: 329px;
    height: 38px;
    line-height: 38px;
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    border-radius: 3px;
    background-color: rgb(67, 67, 67);
    background-image: none;
    text-align: center;
    margin: 0 auto;
}
.zixun-more a:hover{
    opacity: 0.6;
}
.xuanze{height: 335px;}
.xuanze-item1,.xuanze-item2,.xuanze-item3,.xuanze-item4 {text-align: center;}
.xuanze-item1 span{display: block;cursor: pointer;
  width: 39px;height: 40px; background: url(https://www.centralasiatrucking.com/templates/main/assets/img/ico1.png);margin: 0 auto; margin-bottom: 40px;margin-top:30px;
}
.xuanze-item2 span{display: block;cursor: pointer;
  width: 39px;height: 40px; background: url(https://www.centralasiatrucking.com/templates/main/assets/img/ico2.png);margin: 0 auto; margin-bottom: 40px;margin-top:30px;
}
.xuanze-item3 span{display: block;cursor: pointer;
  width: 39px;height: 40px; background: url(https://www.centralasiatrucking.com/templates/main/assets/img/ico3.png);margin: 0 auto; margin-bottom: 40px;margin-top:30px;
}
.xuanze-item4 span{display: block;cursor: pointer;
  width: 39px;height: 40px; background: url(https://www.centralasiatrucking.com/templates/main/assets/img/ico4.png);margin: 0 auto; margin-bottom: 40px;margin-top:30px;
}
.xuanze h3{font-size: 36px;
font-family: "Microsoft YaHei","微软雅黑","arial","tahoma","MicrosoftJhengHei";font-weight: normal;
}
.xuanze h3,.xuanze p{height: 40px; line-height: 40px;text-align:center;}

.footer_content{
    background-color: transparent;
    height: 546px;
}
.footer_bottom{height: 126px;background-color: rgb(51, 51, 51); padding-top: 35px;}
.footer-bottom-list{overflow: hidden;zoom:1;width: 100%;width: 600px;margin:0 auto;}
.footer-bottom-list li{float: left;width: 20%; text-align: center;position: relative;height: 20px;line-height: 20px;}
.footer-bottom-list li a{
  color: #cccccc;font-size: 14px;text-decoration: none;
}

.footer-content,.footer-content a{color:#ccc; font-size: 14px;text-align: center; line-height: 12px;margin-top: 26px;}
.footer-content a:hover{text-decoration:underline;}
.footer-content div{display:inline-block;}
.w-nav-item-line {
    padding: 0;
    margin: 0;
    display: block;
    position: absolute;
    height: 24px;
    width: 0;
    top: 4px;
    left:-1px;
    border-left-width: 1px;
    border-left-style: solid;
    border-left-color: #999999;
}
.footer-bottom-list li.curre a{color:#fff;}

.mob-pic{display: none;}
.about-pic{display: none;}

.simple_clean .container{padding:0px;}
.simple_clean .footer_content {
  margin-top: 200px;
   padding-top: 146px;
   margin-left: 0px;
   width: 1200px;
}
.logo-title{
  overflow: hidden;zoom:1;width:522px;height: 66px; line-height: 30px; margin-top: 40px;margin-left: 6px;
      border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgba(221,221,221,1);
}
.logo-title .logo img{width:66px; height:auto; float: left;}
.logo-title .title{float: left; margin-left: 12px;}
.logo-title .title span{
  display: block;
}
.logo-title .title .company-info-text{
    color: #666;
    font-size: 18px;
    font-family: 'Noto Sans CJK';
    font-weight: 400;
    height: 28px;
}
.logo-title .title .company-info-text-en{
  font-size: 12px;color: #666666;font-family: Source Han Sans,Geneva,sans-serif;
  height: 14px;
}

.tel-qq-more{overflow: hidden;zoom:1; margin-top:20px; position: relative;z-index:100;}
/*.tel-qq-more div{float: left;}*/
.tel-qq-more .tel1,.tel-qq-more .erweima-list,.tel-qq-more .yunying{display: block; float: left;}
.tel-qq-more .tel1{
    width: 475px;
}
.tel-qq-more .tel1 a{color: #666;}
.tel-qq-more .tel1 li{width: 100%;display: block; height: 50px;line-height: 30px;color: #666; font-size:14px;overflow: hidden;zoom:1;}
.tel-qq-more .tel1 li span{display: block; margin-left: 16px;padding-left: 30px;}
.tel-qq-more .tel1 li .mob{ background: url(https://www.centralasiatrucking.com/templates/main/assets/img/1-tel.png) no-repeat 0 5px;}
.tel-qq-more .tel1 li .qq{ background: url(https://www.centralasiatrucking.com/templates/main/assets/img/2-qq.png) no-repeat 0 5px;}
.tel-qq-more .tel1 li .mail{ background: url(https://www.centralasiatrucking.com/templates/main/assets/img/3-mail.png) no-repeat 0 5px;}
.tel-qq-more .tel1 li .zhanghu{ background: url(https://www.centralasiatrucking.com/templates/main/assets/img/4-user.png) no-repeat 0 5px;float: left;}
.tel-qq-more .tel1 li .zhanghu1{float: left;}
.tel-qq-more .tel1 li .address{ background: url(https://www.centralasiatrucking.com/templates/main/assets/img/5-address.png) no-repeat 0 5px;}
.tel-qq-more .tel1 li .address{ background: url(https://www.centralasiatrucking.com/templates/main/assets/img/5-address.png) no-repeat 0 5px; float: left;width:95px;}
.tel-qq-more .tel1 li .address1{ float: left;width: 340px; height: auto;  padding-left: 0px; margin-left: 0px;}

.tel-qq-more .tel1 li.zhanghu_en{ background: url(https://www.centralasiatrucking.com/templates/main/assets/img/4-user.png) no-repeat 15px 5px;float: left;}

.tel-qq-more .tel1 li .whats-app{ background: url(https://www.centralasiatrucking.com/templates/main/assets/img/whats-app.png) no-repeat 0 5px;}

.yunying{width:720px;}
.yunying h4{font-size: 16px; font-weight: normal;overflow: hidden;zoom:1;}
.yunying .yunying-list{width: 50%;float: left; margin-top: 10px;}
.yunying-list li{height: 45px;line-height: 45px; font-size: 14px; color: #666666; overflow: hidden;zoom:1;}
.yunying-list li span{display: block;float: left;}
.yunying-list li span a{color: #666;}
.yunying-list li .yy-tit{width: 100px;}
.yunying-list li .yy-mail{width:260px; background: url(https://www.centralasiatrucking.com/templates/main/assets/img/6-mail1.png) no-repeat 0 12px; padding-left: 26px;}

 .yunying-list-en{width: 42%; position:absolute; top:240px; right:0px;z-index:1000;}
  .yunying-list-en li{ height:40px; line-height:40px;}
 .yunying-list-en li .yy-tit{width: 32%; font-size:14px;}
 .yunying-list-en li .yy-mail{width: 65%;margin-left:3%;background: url(https://www.centralasiatrucking.com/templates/main/assets/img/6-mail1.png) no-repeat 0 10px;}
  .yunying-list-en .yunying-list-en-line{ 
    height:20px;
    margin-bottom:20px;
    width:73%;                                      
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgba(221,221,221,1);
  }

.simple_clean .web-footer h3{
  font-size: 28px;font-weight: normal;
}

.erweima-list{position: absolute; left: 220px; overflow: hidden;zoom:1; width: 240px;}
.erweima-list-en{ left:280px;width:300px;}
.erweima-list ul li{ display: block;float:left; width: 100px;color: #666666; margin-left: 12px; text-align: center; font-size: 14px;}
.erweima-list ul li img{width: 98px; height: 98px; margin-bottom: 10px;}

.erweima-list ul li span{display:block;width:100%;font-size:12px;}

.footer-bottom-mob{display: none;}

/*联系我们*/
.footer-bottom-contact{background: none;}
.footer-bottom-contact .footer_content_contact{margin-top: 0px; padding-top: 100px; margin-bottom:100px;}
.footer-bottom-contact .footer_bottom{margin-top: 0px;}
.tel-qq-more .tel1 .tel1-address{height: 90px;}

.sec-news-list{padding-bottom: 40px;}
.sec-news-list .container h2{font-size: 28px; font-weight: normal; width:100%; text-align: center;height: 220px;line-height: 220px;}
.sec-news-list .col-lg-4,.sec-news-list .col-md-4,.sec-news-list .col-xs-12{padding-left: 0px; padding-right: 0px;}
.w-al-pic{
  width: 380px;
    min-width: 100px;
    height: 240px;
    line-height: 240px;
    padding: 0;
    vertical-align: top;
    clear: both;
    overflow: hidden;
}
.w-al-pic img{
  width:380px; height: auto;
  transition: transform .3s ease;
}
a:hover .w-al-pic img{
  transform: scale(1.1);
}
.w-al-text {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 380px;
    height: 34px;
    line-height: 34px;
    padding: 0 8px;
    background-color: rgba(0,0,0,0.6);
    background-image: none;
    background-repeat: repeat;
    background-position: 0 0;
    background: -moz-linear-gradient(top, none, none);
    background: -o-linear-gradient(top, none, none);
    background: linear-gradient(top, none, none);
    background: -webkit-gradient(linear, left top, left bottom, from(none), to(none));
    box-sizing: border-box;
    transition: all .4s linear;
}
.w-al-title {
    margin: 0;
    padding: 0;
    font-size: 16px;
    color: #fff;
    text-align: center;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    font-family: 'Noto Sans CJK';
    line-height: 34px;
    white-space: nowrap;
    text-overflow: ellipsis;
    -webkit-text-overflow: ellipsis;
    -moz-text-overflow: ellipsis;
    overflow: hidden;
}
.w-al-desc {
    margin: 0;
    max-height: 44px;
    font-size: 12px;
    color: #fff;
    text-align: left;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    font-family: 'Noto Sans CJK';
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news{padding-left: 0px; padding-right: 0px;}
.news-list a{
  height: 34px;padding-top: 0px;
}
.news-list a:hover .w-al-text{height: 100%; padding-top: 80px;}

.news-page-list{margin-top: 48px;}
.news-page-list-item{overflow: hidden;zoom:1; margin-top: 23px; box-sizing:border-box; 
    border-bottom-color: #ddd;
    border-bottom-width: 1px;
    border-bottom-style: dotted;
    height: 145px;
}
.news-page-list-item ul li{ float: left; }
.news-page-list-item .new-page-pic{
    width: 200px;height: 120px;overflow: hidden;
}

.news-page-list-item .new-page-pic img{width:200px; height:auto;}

.news-page-list-item .new-page-text{width:calc(100% - 215px); margin-left: 15px;}

.news-page-list-item .new-page-text .w-list-date{
    display: inline-block;
    font-family: Tahoma;
    font-size: 12px;
    color: #BBB;
}

.news-page-list-item .new-page-text .w-list-nums{
   float: right;
    font-family: Tahoma;
    font-size: 12px;
    color: #BBB;
    background:url(https://www.centralasiatrucking.com/templates/main/assets/img/nums.png) no-repeat 0 3px;
    padding-left: 16px;
}

.news-page-list-item .w-list-title {
    padding: 0;
    margin: 0;
    width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.new-page-text h4 a {
    line-height: 24px;
    display: block;
    font-size: 16px;
    color: #333333;
    text-decoration: none;
    font-weight: normal;
}
.new-page-text h4 a:hover{font-weight: 800;text-decoration: underline;}
.pages-list{margin-top: 40px;text-align: center;}


.news-page-list-item .w-list-desc ,.news-page-list-item .w-list-desc a{
    padding: 0;
    margin: 0;
    margin-top: 5px;
    line-height: 31px;
    font-family: 'Noto Sans CJK';
    font-size: 14px;
    font-style: normal;
    font-weight: normal;
    color: #666666;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-all;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-mob{display: none;}

.sec-car-list{padding-bottom: 40px;}
.sec-car-list .container h2{font-size: 28px; font-weight: normal; width:100%; text-align: center;height: 120px;line-height: 220px;}
.sec-car-list .container p{width: 753px;font-size: 16px;line-height: 28px;color: #666666; margin: 0 auto;margin-top:30px;margin-bottom:20px;}
.car-list{padding-left: 0px; padding-right: 0px;}
.car-item{width: 380px; height: 275px; background-color: rgb(245, 246, 248);text-align: center;
    box-shadow: 0px 2px 1px rgba(204, 204, 204, 0.36);
    transition: box-shadow .3s, border .3s, background-color .3s, color .3s, transform .3s;margin-bottom: 30px;
}
.car-item-pic{
  height: 217px;overflow: hidden;
}
.car-item img{ width: 100%;height: 100%;min-height:186px; transition: all,.4s;margin-top: 0px;min-width: 378px;}
.car-item img:hover{
    transform: scale(1.4); 
}

.car-item span{height: 60px;line-height: 60px;
    display: inline-block;
    font-size: 16px;
    color: #333333;
    font-weight: bold;
    text-decoration: none;
    font-style: normal;
    vertical-align: top;
    *vertical-align: middle;
    width: 100%;
}

.car-item a:hover span{}

.sec-car-iru{
    height: 280px;
    background-color: transparent;
    background-image: url(https://www.centralasiatrucking.com/templates/main/assets/img/car-iru.jpg);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.iru-text{width: 180px;height: 80px; margin-top: 120px; font-size: 16px;font-family:Source Han Sans;color: #ffffff;
    line-height: 32px;
}
.iru1{background: url(https://www.centralasiatrucking.com/templates/main/assets/img/iru1.png) no-repeat 0 0; background-size: 36px 36px; padding-left: 46px;}
.iru2{background: url(https://www.centralasiatrucking.com/templates/main/assets/img/iru2.png) no-repeat 0 0; background-size: 32px 32px; padding-left: 46px;}
.iru3{background: url(https://www.centralasiatrucking.com/templates/main/assets/img/iru3.png) no-repeat 0 0; background-size: 36px 36px; padding-left: 46px;}
.iru-text span{display: block;}

.sec-car-iru .col-lg-3{max-width: 22%;}

.sec-car-iru .col-lg-3:nth-child(5){
    position:absolute;right:10px; 
}

.sec-car-iru .col-lg-3 .iru5{max-width: 100%;}
.sec-car-hezuo{padding-top: 70px;padding-bottom: 30px;}
.sec-car-hezuo .container{padding-left: 0px; padding-right: 0px;}
.hezuo-video .vjs-tech{width: 559px; height: 330px;}
.hezuo-list{overflow: hidden;zoom:1; margin-left: 50px; margin-top: 30px;}
.sec-car-hezuo h3{width: 90%;color: #666666; text-align: center; height: 120px;line-height: 120px; font-size: 28px;}
.sec-car-hezuo .hezuo-list span{display: block;float: left;}
.sec-car-hezuo .hezuo-list span img{
    width: 237px;}
.vjs-tech-mob{display: none;}
.sec-about{margin-top: 20px; padding-bottom: 70px;}
.sec-about .container{padding-left: 0px; padding-right: 0px;}
.sec-about h2{height: 120px ;line-height: 120px; font-size: 28px;font-weight: normal; text-align: center;}
.about-left1 h5{font-size: 16px;height: 50px;line-height: 50px; font-weight: normal;}
.about-left1 p{line-height: 28px; margin-bottom: 10px; padding-right: 0px; text-align:justify;}
.about-right{ margin-top:40px; text-align: right;}
.about-right .about-video{width: 571px; height: 355px;}

.sec-about-center{
  height: 328px;
  background-color: transparent;
  background-image: url(https://www.centralasiatrucking.com/templates/main/assets/img/about-center-bg.jpg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.sec-about-center .container{padding-left: 0px; padding-right: 0px;}
.about-text{width: 180px;height: 180px; height: 180px; font-size: 16px;font-family:Source Han Sans;color: #ffffff;
    line-height: 32px; text-align: center; margin:80px auto; padding-top: 80px;
}
.about-text span{display: block;}
.about-text .text1{font-size: 36px;}
.about-text .text2{font-size: 16px; margin-top:6px;}
.about1{background: url(https://www.centralasiatrucking.com/templates/main/assets/img/about1.png) no-repeat top center; background-size: 39px 34px;}
.about2{background: url(https://www.centralasiatrucking.com/templates/main/assets/img/about2.png) no-repeat top center; background-size: 37px 36px;}
.about3{background: url(https://www.centralasiatrucking.com/templates/main/assets/img/about3.png) no-repeat top center; background-size: 39px 38px;}
.about4{background: url(https://www.centralasiatrucking.com/templates/main/assets/img/about4.png) no-repeat top center; background-size: 35px 40px;}

.sec-about-youshi{ height: 530px;background-color: #EEE;}
.sec-about-youshi .container{padding-right: 0px; padding-left: 0px;}
.sec-about-youshi h2{font-size: 28px; height: 120px; line-height: 120px; text-align: center;font-weight: normal;}
.youshi-list{overflow: hidden;zoom:1;}
.youshi-list ul li{width: 20%; float: left; height: 340px;border: #ddd 1px solid; border-right:0px;line-height: 42px; padding-top: 90px;}
.youshi-list ul li:nth-child(5){border-right: #ddd 1px solid;}
.youshi-list ul li p{height:50px;  margin-bottom:0px;}
.youshi-list ul li:nth-child(1) p{line-height:20px;}
.youshi-list .youshi1{ background:url(https://www.centralasiatrucking.com/templates/main/assets/img/youshi11.png) 0px 0px no-repeat;background-size: 138px 82px; }
.youshi-list-en .youshi1{ background:url(https://www.centralasiatrucking.com/templates/main/assets/img/youshi1-en.png) 0px 0px no-repeat;background-size: 138px 82px; }

.youshi1 p{display: block;font-size: 16px; margin-left: 6px;}

.youshi2{ background:url(https://www.centralasiatrucking.com/templates/main/assets/img/youshi2-en.png) center 35px no-repeat;background-size: 148px 35px; }
.youshi2 p{color: #2b7c76; font-weight: 500; font-family: "aria"; font-size: 18px; display: block; width: 100%;text-align: center;}
.youshi2 p:nth-child(1){font-size: 20px;}
.youshi2 p:nth-child(3){font-weight: 600;font-size: 22px;}

.youshi3{ background:url(https://www.centralasiatrucking.com/templates/main/assets/img/youshi3.png) center 25px no-repeat;background-size: 45px 43px; }
.youshi3 p{font-weight: 500; font-family: "aria"; font-size: 18px; display: block; width: 100%;text-align: center;}
.youshi3 p:nth-child(1){font-size: 20px;}
.youshi3 p:nth-child(3){font-weight: 600;font-size: 30px;}

.youshi4{ background:url(https://www.centralasiatrucking.com/templates/main/assets/img/youshi4.png) center 32px no-repeat;background-size: 66px 36px; }
.youshi4 p{font-weight: 500; font-family: "aria"; font-size: 18px; display: block; width: 100%;text-align: center;}
.youshi4 p:nth-child(1){font-size: 20px;}
.youshi4 p:nth-child(3){font-weight: 600;font-size: 30px;}

.youshi5{ background:url(https://www.centralasiatrucking.com/templates/main/assets/img/youshi5.png) center 32px no-repeat;background-size: 42px 42px; }
.youshi5 p{font-weight: 500; font-family: "aria"; font-size: 18px; display: block; width: 100%;text-align: center;}
.youshi5 p:nth-child(1){font-size: 20px;}
.youshi5 p:nth-child(3){font-weight: 600;font-size: 30px;}

.sec-news-details{ padding-top: 80px; padding-bottom: 60px; background-color: rgb(245, 247, 250);}
.sec-news-details .container{padding-left: 0px; padding-right: 0px;}
.sec-news-details h2.w-title{
    color: #404040;
    font-size: 28px;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    text-align: center;
    line-height: 60px;
    word-wrap: break-word;
    word-break: normal;
}
.sec-news-details .w-createtime{ display: block;width: 100%; height: 80px; line-height: 60px; text-align: center;color: #666666;
    font-size: 14px; }

.details-list{overflow: hidden;zoom:1; padding: 10px;}
.details-list .details-left{
  width: 890px; float: left;min-height: 600px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.details-left .h3{
  width: 92%; margin:0 auto; text-align: left;font-size: 18px; height: 72px; line-height: 92px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(221,221,221,1);
}

.details-right{
  width: 265px; float: right;box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);background: #fff;min-height: 420px;
}
.details-right ul{
  width: 85%; margin:0 auto;
}
.details-right ul li{
   margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
    height: 50px;
    line-height: 50px;
    border-bottom-width: 1px;
    border-bottom-style: dotted;
    border-bottom-color: #CCC;
    text-align: left;
    background: url(https://www.centralasiatrucking.com/templates/main/assets/img/dian.png) 0 22px no-repeat; padding-left: 13px;
}
.details-right ul li a{
  padding: 0;
    margin-left: 0;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #333333;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    height: 50px;
    line-height: 50px;
    outline: none;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}
.details-right ul li a:hover{text-decoration: underline;}

.details-right .h4{
  width: 85%; margin:0 auto; text-align: left;font-size: 18px; height: 72px; line-height: 92px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(221,221,221,1);
}

.w-detail{
    padding: 0;
    padding-top: 20px;
    margin: 0;
    height: auto;
    font-family: 'Microsoft YaHei';
    color: #404040;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    text-align: left;
    line-height: 24px;
    word-wrap: break-word;
    word-break: normal;
    width: 92%;
    margin:0 auto;
 }

.w-detail img {
    max-width: 100% !important;
    height: auto !important;
}

.w-prev {margin-top: 50px; margin-bottom: 10px; position: relative; width: 90%; background:url(https://www.centralasiatrucking.com/templates/main/assets/img/prev.png) 0 5px no-repeat; padding-left: 16px;}
.w-next {margin-bottom: 40px; width: 90%;position: relative; background:url(https://www.centralasiatrucking.com/templates/main/assets/img/next.png) 0 5px no-repeat; padding-left: 16px;}
.w-prev span,.w-next span{display: block; position: absolute;left: 20px;top: 0px;
font-size: 14px;
    color: #666;
}

.w-prev a:hover,.w-next a:hover{text-decoration: underline;}
.w-prev a {
    padding: 0;
    margin: 0;
    width: 100%;
    height: auto;
    display: block;
    font-family: 'Noto Sans CJK';
    font-size: 14px;
    color: #666;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    text-align: left;
    line-height: 24px;
    word-wrap: break-word;
    word-break: normal;
    outline: none;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}

.w-next a {
    padding: 0;
    margin: 0;
    width: 100%;
    height: auto;
    display: block;
    font-family: 'Noto Sans CJK';
    font-size: 14px;
    color: #666;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    text-align: left;
    line-height: 24px;
    word-wrap: break-word;
    word-break: normal;
    outline: none;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}

.w-prev a,.w-next a{display: block; margin-left: 60px;}

.sec-service-details{padding-top: 30px; padding-bottom: 50px; padding-left: 20px;}
.sec-service-details .container{padding-left: 0px; padding-right: 10px;}
.sec-service-details .service-location{height: 40px;line-height: 50px;width: 100%; padding-left: 0px;z-index:22;}
.service-location span{display: block;float: left;  margin-right: 10px; background: url(https://www.centralasiatrucking.com/templates/main/assets/img/next.png) 0 19px no-repeat; padding-left: 20px;}
.service-location span:nth-child(1){background: none;}
.service-location span a{font-size: 14px;color: #666;}
.service-location span a:hover{text-decoration: underline;}

.service-details{position: relative;}
.service-details .title{
  color: #404040;font-size: 22px;line-height: 50px; height: 80px; text-align: center;
}
.service-details .intro{ line-height: 36px; height: 80px;color: #999999; font-size: 14px;}
.service-details .canshu{width: 100%;height: 160px;margin-left:-18px;}
.service-details .canshu td,.service-details .canshu th{padding: 5px 10px;}

.prev-next{width: 100%;bottom:20px;overflow: hidden;zoom:1; line-height: 60px; height: 60px;}
.prev-next a{color:#666; font-size: 14px;}
.service-prev{float: left;color:#666;font-size: 14px;}
.service-next{float: right;color:#666;font-size: 14px;}
.nav_tem_28_33{display: none;}

.IRU-TIR{ padding-top: 70px;  padding-bottom: 60px;}
.IRU-TIR .container{padding-left: 0px; padding-right: 0px;}
.IRU-TIR-title{ overflow: hidden; overflow: hidden; width: 350px; margin: 0 auto;border-left: #f3f3f3 1px solid;}

.IRU-TIR-title ul li{ width: 50%; display: block; float: left; cursor: pointer; height: 36px;line-height: 36px; text-align: center;font-size: 16px;color: #333; border-right: #f3f3f3 1px solid;}
.IRU-TIR-title ul li.current{background-color: rgb(44, 62, 80); color:#fff;}
.IRU,.TIR{ display: none; }
.IRU-TIR-content{margin-top: 70px;}
.IRU-TIR-content .col-lg-6{padding-left: 0px; padding-right: 0px;}
.IRU-TIR-content .IRU-TIR-show{display: block;}
.IRU .IRU-video{width: 605px; height: 355px;}
.IRU .IRU-video video{width: 100%;height: 100%;}

.IRU-child-content .child-content-item{float: right;
  color: #666666;line-height: 25px;display: none; width: 89%; margin: 0 auto; margin-top: 20px;font-size: 14px;
}

.IRU-child-content .child-content-item img{width: 302px;}

.IRU-child-content .item-show{display: block;}
.IRU-child-title{overflow: hidden; zoom: 1;float: right;width: 90%; margin: 0 auto; margin-top: 10px;border-right: #f3f3f3 1px solid;}
.IRU-child-title ul li{height: 34px; cursor: pointer; line-height: 34px;color: #777777; float: left; text-align: center; font-size: 14px; font-weight: bold; counter-increment: ; 
  width: 33%; text-align: center;border-left: #f3f3f3 1px solid;}
.IRU-child-title ul li.iru-current{color: #2c3e50;}

.iru-history{overflow: hidden; zoom: 1; float: right;width: 100%; margin-top: -6px;}
.iru-history ul{display: block; float: left;}
.iru-history .history-left{width: 120px;}
.iru-history .history-right{width: 68%; margin-top: 10px;}
.history-right li{text-align: left; margin-left: 20px; display: none;}
.history-right li strong{font-size: 24px; font-weight: bold;}
.history-right li img{width: 247px; height: 167px; margin: 0 auto; margin-bottom: 16px; line-height: 28px; display: block;}
.history-right .history-show{display: block;}

.history-left li{ border-bottom: #eee 1px solid;font-weight: bold; cursor: pointer; height:33px;line-height: 30px; text-align: center; }

.history-left .curre{
  margin: 0;
    padding: 0;
    list-style: none;
    z-index: 3;
    width: 120px;
    background: url(https://www.centralasiatrucking.com/templates/main/assets/img/history-left-show.png) no-repeat;
    height: 33px;
    color: #fff;
}

.IRU-right{ float: right; width: 85%; line-height: 50px; margin-top: 30px;}
.IRU-right h4{font-size: 22px; font-weight: normal; margin-bottom: 30px;}
.IRU-right p{height: 60px;line-height: 60px;color: #333333;font-size: 16px;}
.quanqiu-text{width: 180px; position: absolute;top:170px; right: 0px;}

.service-details-left{padding-top: 12px;}
.service-details-left .swiper-container{height: 426px;width: 566px; z-index: 10;}
.single_testionial{ height:398px; overflow:hidden;}
.single_testionial img{
    min-width:568px;
    max-height:398px;
    min-height:398px;
    height:auto;
}
.swiper-pagination-service .swiper-pagination-bullet{
  width: 42px; height: 4px;
  border-top: 1px rgba(100,100,100,1) solid;
  transition: all 300ms linear;
  cursor: pointer;
  border-radius: 0;
  background: none;
}

.swiper-pagination-service .swiper-pagination-bullet-active{
  width: 42px; height: 4px;
  border-top: none;
  background-color: rgba(90,90,90,1);
  transition: all 300ms linear;
}

.mob-yunying{display: none;}


.logo-title .title_en{ margin-left:80px; margin-top:3px; line-height:25px;color:#666;}
.logo-title .title_en .company-info-text{font-size:18px;}
.logo-title .title_en .company-info-text-en{display:block;font-size:12px;}
.logo-title .title_en .company-info-text-en-mob{display:none;}

 .pagination{padding:40px 0;text-align:center; display:block;}
 .pagination a{display:inline-block;padding:0 12px;height:32px;line-height:32px;font-size:12px;text-align:center;color:#666;border:1px solid #ccc;margin:0 3px;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;}
 .pagination a.on,.pagination a:hover,.pagination a.disabled:hover{background-color:#eee;color:#666;}

 .sec-about-en .about-left1 h5{height:50px; line-height:50px;font-weight:600;}
 .sec-about-en .about-left1 p{ line-height:21px;font-size:14px;}
 .sec-about-en .car-list{margin-top:20px;}
 .IRU-child-content .item-show-en{width:95%;}
 .item-show-en p{text-align:justify;}
 .IRU-child-title-en{width:95%;}
 .IRU-video-en{margin-top:50px;}
 .IRU-right-en p{line-height:36px; margin-bottom:30px;}

 .sec-car-list-en .container p{width:930px; font-size:14px; text-align:justify; margin-top:30px; margin-bottom:36px;}
 .sec-car-list-en .container h2{height:100px; line-height:160px;}
 .col-lg-3-en .iru-text{width:90%;}
 .sec-car-iru .col-lg-3-en{padding-left:0px; padding-right:0px;}
 .sec-car-iru .col-lg-3-en:nth-child(5){width:156px; position:absolute; right:200px;}
 .sec-car-iru .col-lg-3-en .iru5{max-width:100%;}

 .sec-news-list-en .container p{ text-align:justify;width:960px; margin:0 auto; margin-bottom:30px;}
 .sec-news-list-en .container h2{ height:180px;line-height:220px;}

 .news-web-list-mob{display:none;}
 .news-web-list{display:block;}
 .IRU-child-content .child-content-item p{line-height:26px;}
 p{text-align:justify;}
 #smv_tem_4_58{display:none;}

@media (max-width: 767px) {
.header_wrap .w-language-group{top: -10px;right: 80px;display:none;}
.mega_nav .navbar-brand img {
    width: 48px;
    height: auto;
    margin-top: 0px;
    margin-left: 0px;
    position: absolute;top: 18px;left: 18px;
  }
  .login-text{width: 148px; font-size: 18px;}
  .login-text .title1{font-size: 18px;font-weight: normal;line-height: 18px;height: 18px;}
  .login-text .title2{font-size: 10px;font-weight: normal;line-height: 12px;height: 18px;}
  .mega_nav .nav_wrapper{position: absolute;top: 8px; left: 70px;}
  .login-text{line-height: 24px;}
  .mega_nav .navbar-toggler{top:22px;right:12px;}
  .section2 .section-second{display: none;}
  .mob-pic{display: block;
    margin-top: 80px;
    width: 100%;height: 188px;
    background-image: url(https://www.centralasiatrucking.com/templates/main/assets/img/mob-pic.jpg);
    background-position: 50% 50%;
    background-size: cover;
    background-color: rgb(255, 255, 255);
    opacity: 1;
  }

    .sec-car-iru .col-lg-3:nth-child(4) {
        position:absolute;left:0px;bottom:50px;
    }
    .sec-car-iru .col-lg-3:nth-child(5) {
        position:absolute;right:26px;top:80px;width:100%;
    }

  .mob-contact{
    background-image: url(https://www.centralasiatrucking.com/templates/main/assets/img/mob-contact.jpg);
  }
  .mob-news{
    background-image: url(https://www.centralasiatrucking.com/templates/main/assets/img/mob-news.jpg);
  }
  .mob-car{
    background-image: url(https://www.centralasiatrucking.com/templates/main/assets/img/mob-car.jpg);
  }


  .col-md-6{width: 50%;}
  .xuanze{height: 180px; padding-top: 20px;}
  .item1-content{margin-left: 50px;}
  .xuanze-item{margin-bottom: 20px;}
  .xuanze-item span{position: absolute;left:30px; top:-14px;height: 23px;width: 20px; background-size: 20px 23px;}

  .xuanze-item h3{font-size: 16px; color:#333;font-family: Source Han Sans; height: 26px;line-height: 26px; text-align: left;}
  .xuanze-item p{font-size: 14px;color: #666666;height: 26px;line-height: 26px;text-align: left;}

  .sec-about .about-right{position: absolute;top:20px;}
  .sec-about-en .about-right{top:0px;}

  .about-left{display: none;}
  .about_content{width: 92%;margin:0 auto; position: relative;}
  .about_content h2{ font-size: 18px; font-weight: normal;height: 40px;line-height: 40px; }
  .about_content p{text-align: justify; font-size: 14px; line-height: 22px;}
  /*.w-button-text{display: none;}*/
  .w-button-text{ position: relative; bottom:25px;float:right;right:0px; background: url(https://www.centralasiatrucking.com/templates/main/assets/img/mob-about-more.png) right 10px no-repeat;}
  .w-button-text:hover{background: none;}
  .w-button-text-en{ position: relative;float:right; background: url(https://www.centralasiatrucking.com/templates/main/assets/img/learn-more.png) right 10px no-repeat;bottom: 10px;right:-23px;}
  .w-button-text-en:hover{background: none;}
  .about-pic{display: block;width: 100%;height: 186px;text-align: center;}
  .about-pic img{width:100%;}
  .sec_about{height: calc(100% - 166px);padding-bottom: 66px;}

  .car_show_content{position: absolute; top: 0px;left:0px;width: 100%;}
  .car_show_content h2{height:60px; line-height: 60px; text-align: center; font-size: 18px; font-weight: normal;color: #333333;}
  .car_show_content p{width: 90%;line-height: 24px;color: #666666; font-size: 14px;text-align: justify;margin:0 auto;}
  .car_list{position: absolute;top:180px;}
  .call_to_action_area .ct_wrapper{padding-top: 10px;}
  .car_show_content .car_more{ position: absolute;top:405px;left: 36%;width:100px; height: 36px;line-height: 36px;}
  .section_margin{margin:0px;}
  .car_list{width: 100%; padding-top: 0px;box-sizing:border-box; padding-left: 5px; padding-right:15px;}
  .car_list .car_item{width:50%;margin:0px; height: 105px; text-align: center;box-sizing:border-box; padding-left: 10px;margin-bottom: 10px;}
  .car_list .car_item img{height: 100%; width: 100%;}
  .zixun{ margin-top: 20px; }
  .zixun h2{ font-size: 18px; line-height: 20px;height: 20px; }
  .zixun .new-pic{position: relative;width: 84%;margin:0 auto;top:26px;height: 197px;overflow: hidden;}
  .zixun .new-pic img{width: 100%;height: auto;}
  .new-list{width: 85%; margin:0 auto; position: relative;top:50px;}
  .new-list .new-list-item{border-bottom: #EEE 1px solid; min-height: auto;}
  .new-list h3 a{font-size: 16px;}
  .new-list p{color: #999;line-height: 22px; font-size: 14px;}
  .new-list .date{font-size: 14px;color: #BBB;}
  .new-list .w-list-bottom .nums{font-size: 14px;}
  .zixun-more{position: absolute;top:50px;}
  .zixun-more a{display: block; width: 100px;height: 36px; line-height: 36px;}

   .footer-bottom-mob{display: block;
    line-height: 22px; width: 100%;
    box-sizing: border-box;text-align: center;color:#eeeeee;
    background-color: rgb(51, 51, 51);font-size: 16px;position: absolute;bottom:-40px;
    margin-top: 30px;padding-top:12px; padding-bottom:12px;
  }
  .footer_bottom{display: none;}
  .footer-bottom-web{margin-top: 270px; padding-top: 30px;}
  .simple_clean .footer_content{padding-top: 0px;}
  .simple_clean .footer_content{width: 92%;margin:0 auto;}
  .simple_clean .footer_content h3{text-align: center;font-size: 18px;}
  .logo-title{ width: 100%;margin-left:0px; position: relative;margin-top: 20px;height: 48px;}
  .logo-title .logo{width: 50px;}
  .logo-title .logo img{width: 48px;height: auto;}
  .logo-title .title{position: absolute; top:5px; left: 53px;}
  .logo-title .title .company-info-text{font-size: 16px;display: none;}

  .logo-title .title_en{top:0px;line-height:20px;}
  .logo-title .title_en .company-info-text{font-size: 16px;display: none;}
  .logo-title .title_en .company-info-text-en{display:block;}

  .logo-title .title .company-info-text-en{display: none;font-size: 16px;}
  .logo-title .title .company-info-text{display:block;}

  .tel-qq-more .tel1 li{height: 38px;}
  .erweima-list{ position:relative; margin-bottom:60px; overflow:hidden;zoom:1;}
  .tel-qq-more .tel1{width: 100%;}
  .tel-qq-more .tel1 li{width: 100%;}
  .tel-qq-more .tel1 li .zhanghu{width: 50%;}
  .tel-qq-more .tel1 li .zhanghu1{width: 50%;}
  .tel-qq-more .tel1 li span{margin-left: 0px;}
  .tel-qq-more .tel1 .tel1-address{height:auto;}
  .tel-qq-more .tel1 li .address1{width:calc(100% - 95px);word-break: break-all;line-height: 28px;}
  .erweima-list{left: 0px;width:100%;top:15px;}
  .erweima-list ul li img{width: 83px;height: 83px; display:block;}
  .erweima-list ul li{width: 90px; font-size: 12px;}
  .erweima-list ul li:nth-child(1){float:right;margin-right:50px;}
  .erweima-list ul li:nth-child(2){float:left; margin-left:50px;}

  .yunying{margin-top: 140px;}
  .yunying h4{font-size: 14px;}
  .simple_clean{background-size: cover;}
  .simple_clean .footer_content{height: 100%;}

  .footer-bottom-contact .footer_content_contact{padding-top: 0px;}
  .footer-bottom-contact{margin-top: 0px;padding-top: 30px;}
  .news{padding-left: 15px; padding-right: 15px;}
  .news-page-list-item .new-page-pic{width: 100px; height: 75px;}
  .news-page-list-item .new-page-text{width: calc(100% - 115px);}
  .news-page-list-item .new-page-text h4{font-size: 12px;color: #333333;height: 18px; overflow: hidden;}
  .new-page-text h4 a{font-size: 12px;}
  .news-page-list-item .new-page-text p{font-size: 12px; line-height: 18px;}
  .news-page-list-item .new-page-text .w-list-date,.news-page-list-item .new-page-text .w-list-nums{font-size: 14px; margin-top: 6px;}
  .news-page-list-item{height: 90px;margin-top:12px;}
  .sec-news-list .container h2{height: 80px;line-height: 80px;font-size: 16px;}
  .news-page-list{margin-top: 28px;}
  .pages-list{margin-top:15px;margin-bottom: 15px;}
  .navigation_2 li a{padding:5px; width: 35px;height: 35px;font-size: 14px;}
  .news-web{display: none;}
  .news-mob{display: block;overflow: hidden;zoom:1; margin: 0 auto; width:92%;}
  .news-mob ul li{width:48%;display: block;float: left; }
  .news-mob ul li:nth-child(2){float: right;}
  .news-mob .news-mob-pic{
    padding: 0;
    margin: 0;
    margin-bottom: 5px;
    width: 100%;
    height: 100px;
    float: left;
    overflow: hidden;
    text-align: center;
  }
  .news-mob .news-mob-pic img{ height: 100px;width:auto;}
  .news-mob .news-mob-text {
    padding: 0;
    margin: 0;
    display: block;
    width: 100%;
    height: 21px;
    line-height: 21px;
    font-size: 14px;
    color: #333333;
    text-align: left;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
   }
   .news-mob .news-mob-date{
    padding: 0;
    margin: 0;
    height: 19px;
    line-height: 19px;
    font-size: 14px;
    color: #BBB;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .sec-car-list .container h2{line-height: 70px;height: 60px;font-size: 18px;}
  .sec-car-list .container p{margin-top: 0px; width: 100%;text-align: justify; font-size: 14px;line-height: 26px; margin-bottom: 20px;}
  .sec-car-list .container .car-item{width: 90%; margin:0 auto; margin-bottom: 20px; height: 240px;}
  .sec-car-list .container .car-item a{display: block;padding-top: 18px;}
  .sec-car-list .container .car-item .car-item-pic{padding-top:0px;overflow: hidden;height: 160px;}
  .sec-car-list .container .car-item .car-item-pic img{width: 90%;margin-top: -20px;}
  .sec-car-list{padding-bottom: 30px;}
  .car-item span{font-size: 18px;font-weight: normal;}

  .sec-car-iru .col-lg-3{max-width: 40%; height: 60px; margin-top: 20px;}
  .sec-car-iru .col-lg-3-en{max-width: 46%; height: 60px; margin-top: 20px;}
.iru-text{margin-top: 10px; margin-left: 20px;} .iru-text span{font-size:
16px;} .sec-car-iru{position: relative;} 


.video-web{display: none;} 
.video-mob{display:  block;}                        
 .vjs-tech-mob{
     display:block; width: 100%;
 } 
.sec-car-hezuo{padding-top: 20px;padding-bottom: 20px;}

.sec-car-hezuo h3{font-size: 18px; height: 50px;line-height: 80px;}

.sec-car-hezuo .hezuo-list{margin-top: 10px;} 

.sec-car-hezuo .hezuo-list span img{width: 145px;} 

.mob-about{background-image: url(https://www.centralasiatrucking.com/templates/main/assets/img/mob-about.png);}

.sec-about{margin-top:5px;} 

.sec-about h2{
    height: 40px; line-height:40px;font-size: 18px;font-weight: normal;
} 
.sec-about h5:nth-child(1){display:none;} 

.sec-about h5{width: 92%;margin:0 auto; height: 60px; line-height:60px;}

.sec-about p{
    font-size: 14px;color: #666666;line-height: 23px; width:92%;margin:0 auto; text-align: justify;
} 
.about-right .about-video{width: 100%;height: 100%;}

.sec-about-center{
    margin-top: 205px;height: 180px;
} 

.sec-about-center-en{
    margin-top: 185px;
}

.sec-about-center .container{padding-right: 0px; padding-left:0px;} 

.sec-about-center .col-xs6{width: 50%;height: 80px;padding-left:0px;padding-right:0px;
}
.about-text{
    line-height: 16px;padding-top: 0px; width: 100%;height: 80px;
margin-top: 26px;
} 
.about-text .text1{font-size: 18px;} 

.about-text span{text-align: left;margin-left: 60px;  font-family: Arial} 

.about-text .text2{font-size: 14px; margin-top: 12px;} 

.about1{background-position: 30px 18px; background-size: 23px 20px;} 

.about2{background-position: 30px 18px;
background-size: 21px 20px;} 

.about3{background-position: 30px 18px;
background-size: 21px 20px;} 

.about4{background-position: 30px 18px;
background-size: 18px 20px;} 

.sec-about-youshi{background: #fff;}

.sec-about-youshi h2{font-size: 18px;height: 70px;line-height: 70px;} 

.youshi-list ul{display: none; }
.youshi-list{background: url(https://www.centralasiatrucking.com/templates/main/assets/img/youshi-mob1.jpg); height: 180px; background-size: 100% 100%;}
.youshi-list-en{background: url(https://www.centralasiatrucking.com/templates/main/assets/img/youshi-mob-en1.jpg);background-size: 100% 100%; height:180px;}
.sec-about-youshi{height: 270px;}
.mob-news-show{background: url(https://www.centralasiatrucking.com/templates/main/assets/img/mob-news-show.jpg)}
.sec-news-details{background: #fff; padding-top: 12px;}
.sec-news-details h2.w-title{
    padding: 0;
      margin: 0 auto;
      width: 92%;
      color: #444444;
      font-size: 18px;
      text-align: center;
      line-height: 26px;
      word-wrap: break-word;
      word-break: normal;
      font-weight: normal;
      font-style: normal;
      text-decoration: none;
  }
  .sec-news-details .w-createtime{
    height: 30px;line-height: 50px;
    font-family: Tahoma,arial;
    color: #666666;
    font-size: 14px;
  }
  .details-right{display: none;}
  .details-left .h3{display: none;}
  .details-list .details-left{box-shadow: 0 0px 0px #ccc; width: 100%;}
  .w-detail{text-align: justify;font-size: 16px;}
  .w-detail p,.w-detail span {font-size: 16px;}
  .w-next{margin-bottom: 0px;}
  .mob-news_show{background: url(https://www.centralasiatrucking.com/templates/main/assets/img/mob-news-show.jpg)}

  .erweima-list{width: 100%;}

  .nav_tem_28_33{display: block; position: absolute; top: 24px; right: 10px; z-index: 20;}
  .header_wrap .container{z-index: 10;}
  .mw-nav-open span{display: block;width: 35px; height: 24px; background: url(https://www.centralasiatrucking.com/templates/main/assets/img/mob-nav.png) no-repeat;}
  .tem_28_33_nav {
    margin: 0;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    width: 0px;
    z-index: 100000;
    height: 100%;
    overflow: hidden;
   }

   .tem_28_33_nav .mw-nav-close {
    margin: 0;
    padding: 14px;
    float: right;
    height: 100%;
    z-index: 20;
    background-color: #F0F2F4;
   }

   .mw-nav-close-inner{z-index: 30; display: block; width: 24px; height: 24px;background: url(https://www.centralasiatrucking.com/templates/main/assets/img/mob-nav-close.png)no-repeat; 
    margin-top: 0px; margin-left: 0px;
  }
   .tem_28_33_nav .mw-nav-inner {
    z-index: 10;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
    background-color: #171f25;
    background-image: none;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background: -webkit-linear-gradient(none, none);
    background: -moz-linear-gradient(none, none);
    background: -ms-linear-gradient(none, none);
    background: linear-gradient(none, none);
    background-size: auto;
   }
   .tem_28_33_nav .mw-nav-item {
    margin: 0;
    padding: 0;
    list-style: none;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgba(255,255,255,.1);
    height: 54px;line-height: 28px;
   }
   .current{
    color: #ffffff;
    background-color: #0f161b;
    background-image: none;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-bottom-color: rgba(255,255,255,.1);
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: rgba(255,255,255,.1);
   }
   .tem_28_33_nav .mw-nav-item a{
    font-size: 16px;
    margin: 0;
    padding: 14px;
    display: block;
    text-decoration: none;
    font-size: 16px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
   }
    .w-link-txt{font-size: 18px;}

  .IRU-TIR{padding-top: 0px; margin-top: 0px;}
  .IRU-TIR-title{width: 100%;}
  .IRU-TIR-content{margin-top: 12px;}
  .IRU .IRU-video{width: 85%; margin: 0 auto; height: 205px;}

  .IRU-child-title{float: none; margin-top: 25px;}
  .IRU-child-title ul li{font-size: 16px; font-weight: normal;}

  .IRU-child-content .child-content-item{float: none; width: 82%; text-align: justify;}
  .IRU-child-content .child-content-item .quanqiu-text{display: block; width: 100%; position:inherit;}
  .iru-history .history-left{width: 100%; overflow: hidden;zoom: 1;padding-left: 12px;}
  .history-left li{float: left;width: 10.7%; font-weight: normal; height: 40px;line-height: 40px;border-right: #eee 1px solid; border-bottom: 0px; }
  .iru-history .history-right{width: 100%;}
  .history-left .curre{ 
    background: none;
    width: 11%;
    text-align: center;
    height: 40px;
    line-height: 40px;
    background-color: rgb(44, 62, 80);
    border-right: 0px;
   }
  .IRU-child-content .child-content-item:nth-child(3){width: 100%;}
  .IRU-right{float: none; margin: 0 auto; margin-top: 30px;}
  .IRU-right p{line-height: 30px;color: #333333;font-size: 16px;}
  .IRU-right h4{margin-bottom: 10px;}
  .history-right li{width: 80%; margin: 0 auto;}
  .history-right li img{width: 100%;}

  .service-details-left{position: absolute; top: 75px; height: 260px; width: 100%; left: 0px; padding: 0px;z-index:11;}
  .service-details-left .swiper-container{height: 240px;width: 100%;}
  .service-details-left .swiper-container img{height: 210px;width: 100%;}

  .tel-qq-more .yunying{display: none;}
  .mob-yunying{display: block;position: relative; margin-top: 400px; bottom: 0px; height: 240px;}
  .mob-yunying h4{font-size: 14px;font-weight: normal; margin-bottom: 10px;}
  .mob-yunying .swiper-container{height: 166px;}
  .mob-yunying .yunying-list1 li{height: 45px;line-height: 45px; font-size: 14px; color: #666666; overflow: hidden;zoom:1;}
  .mob-yunying .yunying-list1 li span{display: block;float: left;}
  .mob-yunying .yunying-list1 li span a{color: #666;}
  .mob-yunying .yunying-list1 li .yy-tit{width: 28%;}
  .mob-yunying .yunying-list1 li .yy-mail{widht: 80%; background: url(https://www.centralasiatrucking.com/templates/main/assets/img/6-mail1.png) no-repeat 0 12px; padding-left: 26px;}

  .mob-yunying .swiper-pagination-yunying{bottom: 0px; height: 28px; line-height: 28px;}
  .mob-yunying .swiper-pagination-bullet{border-radius: 0;background: #000;width: 12px; height: 12px;opacity: .5;}
  .mob-yunying .swiper-pagination-bullet-active{background-color: #262633;opacity: 1;}

  .logo-title .title_en{ margin-left:80px; margin-top:3px; line-height:25px;color:#666;}
  .logo-title .title_en .company-info-text{display:none;}
  .logo-title .title_en .company-info-text-en{display:none;}
  .logo-title .title_en .company-info-text-en-mob{display:block;font-size:16px;line-height:18px; margin-left:0px;}
  .logo-title .title_en{margin-left:60px; margin-top:0px;}
  .tel-qq-more .tel1 .zhanghu_en{line-height:20px; margin-bottom:8px;}
  .tel-qq-more .tel1 .zhanghu_en .zhanghu{width: 100%;}
  .tel-qq-more .tel1 .zhanghu_en .zhanghu1{width: 100%;}
  .yunying-list-en{display:none;}
  .erweima-list-en{margin-bottom:0px;}
    .sec_about_en{height: calc(100% - 96px); padding-bottom:0px;}
   .about_content_en{margin-bottom:0px; height:100%;position:relative; padding-bottom:10px;}
   .about-pic-en{ margin-top:40px;}

  .about_content_en p{font-size:14px;line-height:19px; text-align:justify;}
  .car_show_en{height:600px;}
  .car_show_en .car_show_content_en p{line-height:22px;}
  .car_show_en .car_list_en{top:270px;}
  .car_show_en .car_show_content .car_more_en{top:450px;}
  .mob-yunying-en .yunying-list1 li{ line-height:30px; height:60px;}
  .mob-yunying-en .yunying-list1 li .yy-tit{ width:100%;}
  .mob-yunying-en .yunying-list1 li .yy-mail{ width:100%;background-position:30px 6px; padding-left:60px;}
  .mob-yunying-en{height:290px;}
  .mob-yunying-en .swiper-container{height:226px;}
  .sec-car-list-en .container p{height:100%;}
  .col-lg-3-en .iru-text span{font-size:14px;}
  .sec-car-iru .col-lg-3-en:nth-child(4){max-width:90%; }
  .sec-car-iru .col-lg-3-en:nth-child(5){width:156px; position:absolute; right:35px; bottom:120px;}
  .sec-car-iru .col-lg-3-en .iru5{top:0px; right:0px;width:60%; line-height:22px;}
  .sec-car-iru .col-lg-3-en .iru-text{line-height:22px;}
  .sec-car-iru .col-lg-3-en .iru4{top:20px; width:100%;}  

 .sec-news-list-en .container p{ text-align:justify;width:96%; margin:0 auto; margin-bottom:0px;}
 .sec-news-list-en .container h2{ height:60px;line-height:70px;}

 .news-web-list-mob{display:block;}
 .news-web-list{display:none;}
 .simple_clean{background-position:50% 50%;}

 .single_testionial{ height:210px; overflow:hidden;}
 .single_testionial img{
     min-height:210px;
     min-width:368px;
     width:100%;height:100%;
 }
 .car-item img{min-width:90%;}

 .sec-service-details-en .intro{
     line-height: 26px;
 }

 .sec-service-details-en .service-location{
     margin-top:12px;
 }
.service-details .title{height:60px;line-height:50px;}
.prev-next{line-height:36px;}
.prev-next span{display:block;width:100%;}
.prev-next .service-next{float:left;}
.tel-qq-more .tel1 li.zhanghu_en{ background: url(https://www.centralasiatrucking.com/templates/main/assets/img/4-user.png) no-repeat 0 5px;float: left;}

.tem_4_58 .m-language {
    margin: 0;
    padding: 0;
    cursor: pointer;
    /* width: 100%; */
    height: auto;
    background-color: #f6f6f6;
    background-image: none;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background: -webkit-linear-gradient(none, none);
    background: -moz-linear-gradient(none, none);
    background: -ms-linear-gradient(none, none);
    background: linear-gradient(none, none);
    border: 1px solid #e6e9ed;
    border-radius: 0;
}

.tem_4_58 .m-language:hover {
    background-color: #fff;
    background-image: none;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background: -webkit-linear-gradient(none, none);
    background: -moz-linear-gradient(none, none);
    background: -ms-linear-gradient(none, none);
    background: linear-gradient(none, none);
    border: 1px solid #e6e9ed;
}

.tem_4_58 .m-language .m-language-inner {
    margin: 0;
    padding: 0;
    position: relative;
    height: 34px;
    line-height: 34px;
    text-align:left;
    background:url(https://www.centralasiatrucking.com/templates/main/assets/img/language-ico.png) 70px 15px no-repeat;
}

.tem_4_58 .m-language:hover .m-language-inner .m-language-val-link {
    color: #666;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
}
.tem_4_58 .m-language .m-language-inner .m-language-val-link {
    margin: 0;
    padding: 0 12px;
    display: block;
    overflow: hidden;
    font-family: Tahoma;
    font-size: 12px;
    color: #666;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    text-align: left;
    white-space: nowrap;
    text-overflow: ellipsis;
}
    #smv_tem_4_58 {display:block;
        position: absolute;right: 50px;top: 18px;z-index:111;height:28px;line-height:28px;
    }

    .m-language-txt{ font-size:14px; color:#000; text-align:center;}

    .tem_4_58 .m-language-dropdown .m-language-dropdown-item .m-language-link {
        margin: 0;
        padding: 0 12px;
        display: block;
        list-style: none;
        height: 28px;
        line-height: 28px;
        font-family: Tahoma;
        font-size: 12px;
        color: #666;
        font-weight: 400;
        font-style: normal;
        text-decoration: none;
        text-align: left;
    }
    .news-page-list-item .new-page-pic img {
    width:100px;
    }
    .footer-bottom-mob a{color:#eee;}
    .footer-bottom-mob a:hover{text-decoration:underline;}
    .footer-bottom-mo div:nth-child(2){display:block;}

    .about_content{height:100%; margin-top:20px;}
    .sec-about .about-right{margin-top:0px;}
	.mob-service_show{background:none;}
}