/* @font-face {
  font-family: 'Myriad Pro';
  src: url('../fonts/MyriadPro-BoldIt.eot');
  src: url('MyriadPro-BoldIt.eot?#iefix') format('embedded-opentype'),
      url('../fonts/MyriadPro-BoldIt.woff2') format('woff2'),
      url('../fonts/MyriadPro-BoldIt.woff') format('woff'),
      url('../fonts/MyriadPro-BoldIt.ttf') format('truetype'),
      url('../fonts/MyriadPro-BoldIt.svg#MyriadPro-BoldIt') format('svg');
  font-weight: bold;
  font-style: italic;
}

@font-face {
  font-family: 'Myriad Pro';
  src: url('../fonts/MyriadPro-Regular.eot');
  src: url('../fonts/MyriadPro-Regular.eot?#iefix') format('embedded-opentype'),
      url('../fonts/MyriadPro-Regular.woff2') format('woff2'),
      url('../fonts/MyriadPro-Regular.woff') format('woff'),
      url('../fonts/MyriadPro-Regular.ttf') format('truetype'),
      url('../fonts/MyriadPro-Regular.svg#MyriadPro-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Myriad Pro';
  src: url('../fonts/MyriadPro-Light.eot');
  src: url('../fonts/MyriadPro-Light.eot?#iefix') format('embedded-opentype'),
      url('../fonts/MyriadPro-Light.woff2') format('woff2'),
      url('../fonts/MyriadPro-Light.woff') format('woff'),
      url('../fonts/MyriadPro-Light.ttf') format('truetype'),
      url('../fonts/MyriadPro-Light.svg#MyriadPro-Light') format('svg');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Light.eot');
  src: url('../fonts/Roboto-Light.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Roboto-Light.woff2') format('woff2'),
      url('../fonts/Roboto-Light.woff') format('woff'),
      url('../fonts/Roboto-Light.ttf') format('truetype'),
      url('../fonts/Roboto-Light.svg#Roboto-Light') format('svg');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Medium.eot');
  src: url('../fonts/Roboto-Medium.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Roboto-Medium.woff2') format('woff2'),
      url('../fonts/Roboto-Medium.woff') format('woff'),
      url('../fonts/Roboto-Medium.ttf') format('truetype'),
      url('../fonts/Roboto-Medium.svg#Roboto-Medium') format('svg');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Regular.eot');
  src: url('../fonts/Roboto-Regular.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Roboto-Regular.woff2') format('woff2'),
      url('../fonts/Roboto-Regular.woff') format('woff'),
      url('../fonts/Roboto-Regular.ttf') format('truetype'),
      url('../fonts/Roboto-Regular.svg#Roboto-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Bold.eot');
  src: url('../fonts/Roboto-Bold.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Roboto-Bold.woff2') format('woff2'),
      url('../fonts/Roboto-Bold.woff') format('woff'),
      url('../fonts/Roboto-Bold.ttf') format('truetype'),
      url('../fonts/Roboto-Bold.svg#Roboto-Bold') format('svg');
  font-weight: bold;
  font-style: normal;
} */

::-webkit-scrollbar {
  width :6px;
}
::-moz-scrollbar {
  width :6px;
}
::-o-scrollbar {
  width :6px;
}

::-webkit-scrollbar-track {
  background-color: #FFF;
}
::-moz-scrollbar-track {
  background-color: #FFF;
}
::-o-scrollbar-track {
  background-color: #FFF;
}

::-webkit-scrollbar-thumb {
  background-color: #0079c2;
  border-radius: 20px;
}
::-moz-scrollbar-thumb {
  background-color: #0079c2;
  border-radius: 20px;
}
::-o-scrollbar-thumb {
  background-color: #0079c2;
  border-radius: 20px;
}





body{
  font-family: 'Roboto';
  overflow-x: hidden;
}

.section-header{
  font-size: 40px;
  color: #0e324c;
  /*text-transform: uppercase;*/
  position: relative;
  padding: 40px 0 10px;
}
.section-header span{
  color: #0079c2;
}
.section-header:after{
  content: '';
  position: absolute;
  top: 100%;
  width: 200px;
  border-bottom: 5px solid #d5b20f;
  left: 50%;
  transform: translateX(-50%);
}
.flex-vert-center{
  display: flex;
  align-items: center;
}
.justify-center{
  justify-content: center;
}
.nicescroll-rails{
  z-index: 9!important;
}
@media(max-width: 991px){
  .section-header{
    font-size: 30px;
  }
  .section-header:after{
    width: 100px;
    border-bottom: 3px solid #d5b20f;
  }
}
@media(max-width: 767px){
  .section-header{
    font-size: 20px;
  }
}
/************************************** Header *********************************/
/*********** top links **********/
header .top-links{
  padding: 20px 0;
  background: #f3f3f3;
}
header .top-links .flex-grid{
  display: flex;
  justify-content: flex-end;
  align-items:center;
}
header .top-links .flex-grid .flex-item{
  padding: 0 20px;
  color: #0e324c;
  position: relative;
  transition: all 0.3s ease-in;
  text-decoration: none;
  font-weight: 600;
}
header .top-links .flex-grid .flex-item:hover{
  color: #0371b4;
}
header .top-links .flex-grid .flex-item:first-of-type::after,
header .top-links .flex-grid .flex-item:nth-of-type(2)::after{
  content: '';
  border-left: 1px solid #80929f;
  height: 100%;
  position: absolute;
  right: 0;
}
header .top-links .flex-grid .flex-item.soc-link:last-of-type{
  padding-right: 0;
}
header .top-links .flex-grid .flex-item.fb-ic i{
  display: block;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 1.5;
  border: 1px solid #0e324c;
  border-radius: 50%;
  transition: all 0.3s ease-in;
}
header .top-links .flex-grid .flex-item.fb-ic i:hover{
  border-color: #0371b4;
  color: #0371b4;
}
/*header .top-links .form-inline .form-control{
  padding: 5px 15px;
  border-radius: 20px;
  width: 0;
  border: 1px solid #0e324c;
  transition: all 0.3s ease-in;
  display: block;
}
header .top-links .form-inline .form-control.active{
  width: auto;
}
 input {
  border: 1px solid #ccc;
  font-size: 12px;
  height: 30px;
  padding: 4px 8px;
  position: absolute;
  width: 50%;
}
input:focus {
  outline: none;
}

button {
  text-align: center;
}
button:focus {
  outline: none;
}
button.btn-search, button.btn-reset {
  background: #0371b4;
  border: none;
  height: 30px;
  font-size: 12px;
  padding: 4px;
  position: relative;
  width: 30px;
}

header .top-links .flex-grid .flex-item.sample{
  position: relative;
  padding: 0;
}
.sample.fourteen input {
  background: none;
  border-color: #0371b4;
  border-radius: 15px;
  border-width: 0 0 1px;
  transition: all .8s ease-in-out;
  width: 30px;
}
.sample.fourteen input:focus {
  background: radial-gradient(ellipse at top left, rgba(0, 0, 0, 0) 65%, #0371b4 140%);
  border-radius: 0 15px 15px 0;
  width: 250px;
}
.sample.fourteen input:focus ~ button.btn-search {
  background: #0371b4;
  color: #fff;
  left: 222px;
  transform: rotate(720deg);
}
.sample.fourteen input:focus ~ button.btn-reset {
  left: 256px;
  transform: rotate(360deg);
}
.sample.fourteen button {
  transition: all .8s ease-in-out;
}
.sample.fourteen button.btn-search {
  background: none;
  border-radius: 50%;
  height: 30px;
  left: 0;
  width: 30px;
}
.sample.fourteen button.btn-reset {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  font-size: 10px;
  height: 20px;
  left: 2px;
  line-height: 20px;
  padding: 0;
  top: 10px;
  width: 20px;
  z-index: -1;
} */

header .top-links input {
	outline: none;
}
header .top-links input[type=search] {
	-webkit-appearance: textfield;
	-webkit-box-sizing: content-box;
	font-family: inherit;
	font-size: 100%;
}
header .top-links input::-webkit-search-decoration,
header .top-links input::-webkit-search-cancel-button {
	display: none; 
}


header .top-links input[type=search] {
	background: url('../images/search-icon.png') no-repeat 9px center;
  border: none;
	padding: 0px 10px 0px 32px;
	width: 55px;
	background-color: none;
	-webkit-border-radius: 10em;
	-moz-border-radius: 10em;
	border-radius: 10em;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	transition: all .5s;
}
header .top-links input[type=search]:focus {
	width: 130px;
  background-color: #fff;
  border: solid 1px #ccc;
	border-color: #0079c2;
	
	-webkit-box-shadow: 0 0 5px rgba(109,207,246,.5);
	-moz-box-shadow: 0 0 5px rgba(109,207,246,.5);
	box-shadow: 0 0 5px rgba(109,207,246,.5);
}


header .top-links input:-moz-placeholder {
	color: #999;
}
header .top-links input::-webkit-input-placeholder {
	color: #999;
}

header .top-links #demo-2::after{
  content: none;
}
header .top-links #demo-2 input[type=search] {
	width: 15px;
	padding-left: 10px;
	color: transparent;
	cursor: pointer;
}

header .top-links #demo-2 input[type=search]:focus {
	width: 130px;
	padding-left: 32px;
	color: #000;
	background-color: #fff;
	cursor: auto;
}
header .top-links #demo-2 input:-moz-placeholder {
	color: transparent;
}
header .top-links #demo-2 input::-webkit-input-placeholder {
	color: transparent;
}

/********** navbar *********/
header .navbar{
  background: transparent;
  position: absolute;
  width: 100%;
  z-index: 9;
  transition: all 0.5s ease-in-out;
}
header nav .container{
  position: relative;
}
header .navbar-brand{
  position: absolute;
  background: #f3f3f3;
  top: -70px;
  left: 0;
  padding: 15px 35px;
  border-radius: 10px;
  /* transition: padding 0.5s ease-in-out; */
}
header .navbar-brand img{
  width: 150px;
}
#myHeader.sticky{
  position: fixed;
  top: 0;
  width: 100%
}
header .sticky .navbar-brand{
  top: -0.5rem;
  /* box-shadow: 0 4px 5px -2px #999; */
}
/* header .sticky .navbar-brand img{
  width: 100px;
} */
header .navbar.sticky{
  background: #f3f3f3;
  box-shadow: 0 4px 5px -2px #999;
}
header .navbar-expand-lg .navbar-nav .nav-link{
  color: #fff;
  font-size: 18px;
  position: relative;
  padding: .5rem 1rem;
}
header .sticky.navbar-expand-lg .navbar-nav .nav-link{
  color: #0e324c;
}
/* header .navbar-expand-lg .navbar-nav .nav-link:not(.dropdown-toggle):before{
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #0371b5;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
header .navbar-expand-lg .navbar-nav .nav-item.active .nav-link:before,
header .navbar-expand-lg .navbar-nav .nav-link:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
} */
header .navbar-expand-lg .navbar-nav .nav-item.active .nav-link,
header .navbar-expand-lg .navbar-nav .nav-item .nav-link:hover{
  color: #0371b5;
  font-weight: bold;
}
header .navbar .dropdown-toggle::after{
  content: none;
}
header .navbar .dropdown-menu{
  background: none;
  border: none;
  border-radius: 0;
  transition: all 0.5s ease-in;
  padding: 10px;
  width: 126%;
}
header .navbar.sticky .dropdown-menu{
  background: #f3f3f3;
}
header .navbar .dropdown-item{
  color: #fff;
  padding-left: 0;
  font-weight: normal;
  transition: all 0.3s ease-in;
}
header .navbar.sticky .dropdown-item{
  color: #0e324c;
}
header .navbar .dropdown-item:hover{
  background: none;
  color: #0471b3;
  padding-left: 5px;
}
/* .navbar-toggler:not(:disabled):not(.disabled){
  border: 1px solid #0471b3;
  color: #0471b3
} */
/* actual dropdown animation */
.dropdown .dropdown-menu {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;

  max-height: 0;
  display: block;
  overflow: hidden;
  opacity: 0;
}

.dropdown.show .dropdown-menu {
  max-height: 300px;
  opacity: 1;
}


@media(max-width: 1200px){
  header .top-links .flex-grid .flex-item{
    font-size: 12px;
  }
  header .top-links .flex-grid .flex-item.fb-ic i{
    width: 20px;
    height: 20px;
  }
  header .navbar-expand-lg .navbar-nav .nav-link{
    font-size: 13px;
  }
}
@media(max-width: 991px){
  header .container{
    max-width: 100%;
  }
  header .navbar{
    padding: 0;
    background: #f3f3f3;
    position: relative;
  }
  header .navbar-brand{
    padding: 10px;
    border-radius: 5px;
    position: static;
    margin-left: 10px;
  }
  header .navbar-collapse{
    background: #f3f3f3;
  }
  header .navbar-brand img {
    width: 50px;
  }
  header .sticky .navbar-brand{
    padding: 10px;
    box-shadow: none;
  }
  header .sticky .navbar-brand img {
    width: 50px;
  }
  header .navbar .dropdown-menu{
   padding-left: 1rem;
   padding-top: 0;
   padding-bottom: 0;
  }
  header .navbar-expand-lg .navbar-nav .nav-link{
    color: #0e324c;
  }
  header .navbar .dropdown-item{
    font-size: 12px;
    color: #0e324c;
  }
  header .navbar .navbar-toggler{
    margin-right: 10px;
  }
}
@media(max-width: 767px){
  header .top-links .flex-grid{
    flex-wrap: wrap;
  }
  header .top-links .flex-grid .flex-item{
    font-size: 10px;
    padding: 0 10px;
  }
  header .top-links .flex-grid .flex-item.fb-ic i{
    line-height: 1.8;
  }
  header .top-links #demo-2{
    width: 100%;
    text-align: right;
    margin-top: 20px;
  }
  header .top-links input[type=search]{
    padding: 5px 10px 5px 32px;
  }
}




/**************************************** Main ******************************************/
/*********** Hero ***********/
.hero-intro{
  position: relative;
}
.hero-intro .txt{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-intro .txt h2{
  color: #fff;
  text-align: center;
  font-size: 50px;
  line-height: 1.3;
}
.hero-intro .txt h2 span{
  color: #e8c72b;
    font-size: 75px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.hero-intro .owl-theme .owl-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  left: 0;
  display: flex;
  justify-content: space-between;
  padding: 0px 20px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;  
  margin-top: 0;
}
.hero-intro:hover .owl-theme .owl-nav{
  opacity: 1;
}
.hero-intro .owl-theme .owl-nav [class*=owl-]{
  background: none;
  transition: all 0.3s ease-in-out;
  padding: 5px 10px;
  background: #fff;
}
.hero-intro .owl-theme .owl-nav [class*=owl-]:hover{
  background: #fff;
}

.slide__item {
  position: relative;
}

.owl-item.active .slide-caption__up{
  animation: 1s .2s fadeInUp both;
}

.owl-item.active .slide-caption__right{
  animation: 1s .2s fadeInRight both;
}

.owl-item.active .slide-caption__down{
  animation: 1s .2s fadeInDown both;
}

.owl-item.active .slide-caption__left{
  animation: 1s .2s fadeInLeft both;
}

@media(max-width: 1200px){
  .hero-intro .txt h2{
    font-size: 30px;
  }
  .hero-intro .txt h2 span{
    font-size: 100px;
  }
}
@media(max-width: 991px){
  .hero-intro .txt h2{
    font-size: 20px;
    line-height: 1.2;
  }
  .hero-intro .txt h2 span{
    font-size: 50px;
  }
  .hero-intro .owl-theme .owl-nav [class*=owl-]{
    padding: 2px 5px;
  }
  .hero-intro .owl-theme .owl-nav [class*=owl-] img{
    height: 15px;
  }
}

/************** About **************/
.about .about-txt{
  background: url('../images/about-bg.jpg');
  background-size: cover;
}
.about .blue-strip {
    background: #0e324c;
    padding: 30px 0;
}
.about .about-txt .blue-strip p {
    color: #fff;
}
.about .about-txt .txt {
    padding: 10px 0;
}
.about .about-txt p{
  color: #727272;
  font-size: 18px;
  margin-top: 20px;
  text-align: justify;
}
.about .about-nums{
  padding: 100px 0;
  background: url('../images/about-nums.jpg');
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
  margin-top: 20px;
}
.about .about-nums p{
  margin-bottom: 10px;
  text-align: center;
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
}
.about .about-nums p.number{
  font-size: 70px;
  margin-bottom: 5px;
}
@media(max-width: 991px){
  .about .about-txt p{
    font-size: 16px;
  }
  .about .about-nums p{
    font-size: 18px;
  }
  .about .about-nums p.number{
    font-size: 25px;
  }
}
@media(max-width: 767px){
  .about .about-txt p{
    font-size: 15px;
  }
  .about .about-txt .txt{
    padding: 20px 0;
  }
  .about .about-nums{
    padding: 50px 0;
  }
  .about .about-nums .num{
    margin: 20px 0;
  }
  .about .about-nums p{
    font-size: 15px;
  }
  .about .about-nums p.number{
    font-size: 22px;
  }
}

/************** business units **************/

.bus-units .units-icons{
  background: url('../images/bus-units-bg.png') no-repeat right center;
  overflow: hidden;
}
.bus-units .units-icons .one-unit{
  margin: 20px auto;
  position: relative;
  overflow: hidden;
  width: 80%;
  padding: 20px 0;
}
.bus-units .units-icons .one-unit .full-link{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.bus-units .units-icons .unit-txt{
  margin-top: 20px;
  font-size: 18px;
  color: #727272;
  transition: color 0.3s;
}
.bus-units .units-icons .unit-txt p{
  margin-bottom: 0;
}

.bus-units .units-icons .one-unit:before {
  box-sizing: border-box;
  transform: translateX(100%);
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 99.5%;
  height: 2px;
  border-bottom: 2px solid transparent;
  border-left: 2px solid transparent;
}
.bus-units .units-icons .one-unit:after {
  box-sizing: border-box;
  transform: translateX(-100%);
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 99.5%;
  height: 2px;
  border-top: 2px solid transparent;
  border-right: 2px solid transparent;
}
.bus-units .units-icons .one-unit:hover {
  color: inherit;
  text-decoration: none;
}
.bus-units .units-icons .one-unit:hover .unit-txt{
  color: #4a98da;
}
.bus-units .units-icons .one-unit:hover:before {
  transition: 0.2s transform linear, 0.2s height linear 0.2s;
  transform: translateX(0);
  height: 100%;
  border-color: #4a98da;
}
.bus-units .units-icons .one-unit:hover:after {
  transition: 0.2s transform linear 0.4s, 0.3s height linear 0.6s;
  transform: translateX(0);
  height: 100%;
  border-color: #4a98da;
}
@media(max-width: 767px){
  .bus-units .units-icons .unit-txt{
    font-size: 15px;
  }
}

.bus-units .units-map{
  background: #0e324c;
  padding: 50px 0;
}
.bus-units .units-map .map-txt{
  color: #fff;
}

.bus-units .units-map .map-txt h3{
  font-size: 40px;
}
.bus-units .units-map .map-txt h3 span{
  color: #0079c2;
}
.bus-units .units-map .map-txt p{
  font-weight: 100;
  line-height: 2;
  font-size: 18px;
}
/* .bus-units .units-map .map-txt .find-link{
  background: #fff;
  border-radius: 0;
  width: 200px;
  margin-top: 30px;
  color: #0e324c;
} */

.bus-units .units-map .map-txt .myButt {
  outline: none;
  border: none;
  padding: 5px 0;
  display: block;
  margin: 40px 0;
  cursor: pointer;
  font-size: 20px;
  background-color: #fff;
  position: relative;
  border: 2px solid #fff;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  width: 250px;
}

.bus-units .units-map .map-txt .one {
  border-color: #fff;
  overflow: hidden;
  color: #0e324c;
}
.bus-units .units-map .map-txt .one .insider {
  background-color: #fff;
  width: 100%;
  height: 20px;
  position: absolute;
  left: -135px;
  transform: rotateZ(45deg);
  -webkit-transform: rotateZ(45deg);
  -moz-transform: rotateZ(45deg);
  -o-transform: rotateZ(45deg);
  -ms-transform: rotateZ(45deg);
}
.bus-units .units-map .map-txt .one:hover {
  background-color: #0e324c;
  border-color: #fff;
  color: #fff;
}
.bus-units .units-map .map-txt .one:hover .insider {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  left: 135px;
}
.bus-units .units-map .full-map{
  position: relative;
}
.bus-units .units-map .full-map .map-point{
  position: absolute;
  z-index: 3;
  overflow: hidden;
  cursor: pointer;
}
.bus-units .units-map .full-map .map-point img{
  width: 40px;
  transition: opacity 0.3s ease-in;
  opacity: 0.5;
}
.bus-units .units-map .full-map .map-point:hover img{
  opacity: 1;
}
.bus-units .units-map .full-map .map-point::before{
  content: '';
  width: 0; 
  height: 0; 
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #39576c ;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -30%;
}
.bus-units .units-map .full-map .map-point .point-details{
  position: absolute;
  width: 200px;
  background: #39576c;
  color: #fff;
  padding: 20px;
  bottom: 0px;
  right: 130%;
  cursor: default;
  display: none;
}
.bus-units .units-map .full-map .map-point .point-details p{
  font-weight: 100;
  margin-bottom: 3px;
  font-size: 13px;
}
.bus-units .units-map .full-map .map-point .point-details p.name{
  font-weight: normal;
  font-size: 15px;
}
.bus-units .units-map .full-map .map-point .point-details .directions-link{
  border: 1px solid #fff;
  border-radius: 0;
  color: #fff;
  font-size: 13px;
  margin-top: 15px;
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.bus-units .units-map .full-map .map-point .point-details .directions-link:hover{
  color: #39576c;
  background: #fff;
}
@media(max-width: 991px){
  .bus-units .units-map .map-txt h3{
    font-size: 25px;
  }
  .bus-units .units-map .map-txt p{
    font-size: 15px;
  }
  .bus-units .units-map .map-txt .myButt{
    font-size: 15px;
    width: 150px;
  }
  .bus-units .units-map .full-map .map-point .point-details{
    right: auto;
    left: 50%;
    bottom: 150%;
    transform: translateX(-50%);
  }
  .bus-units .units-map .full-map .map-point::before{
    border-top: 10px solid #39576c;
    border-bottom: none;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    top: -50%;
    transform: translateX(-50%);
    left: 50%;
  }
}
@media(max-width: 767px){
  .bus-units .units-map .map-txt h3{
    font-size: 18px;
  }
  .bus-units .units-map .map-txt p{
    font-size: 13px;
  }
  .bus-units .units-map .map-txt .myButt{
    font-size: 13px;
    width: 100px;
  }
  .bus-units .units-map .full-map .map-point img{
    width: 20px;
  }
  /* .bus-units .units-map .full-map .map-point::before{
    left: -50%;
  } */
  .bus-units .units-map .full-map .map-point .point-details{
    width: 150px;
    padding: 10px;
  }
  .bus-units .units-map .full-map .map-point .point-details p{
    font-size: 10px;
  }
  .bus-units .units-map .full-map .map-point .point-details p.name{
    font-size: 12px;
  }
  .bus-units .units-map .full-map .map-point .point-details .directions-link{
    font-size: 11px;
    padding: 3px;
    font-weight: 100;
    margin-top: 5px;
  }
}

/************** news and events **************/
.news .news-carousel{
  padding: 50px 0 0;
  margin-bottom: 50px;
}
.news .news-carousel .item-txt h3{
  color: #000;
  width: 70%;
  font-weight: bold;
  margin-bottom: 15px;
}
.news .news-carousel .item-txt p{
  color: #727272;
}
.news .news-carousel.owl-theme .owl-nav{
  position: absolute;
  bottom: 0;
  left: 35%;
}
.news .news-carousel.owl-theme .owl-nav [class*=owl-]{
  background: none;
  border: 1px solid #0e324c;
  border-radius: 0;
  width: 50px;
  height: 50px;
  text-align: center;
  padding-top: 12.5px;
  transition: background 0.3s ease-in-out;
}
.news .news-carousel.owl-theme .owl-nav [class*=owl-]:hover{
  background: #0e324c;
}
.news .news-carousel.owl-theme .owl-nav [class*=owl-] img{
  height: 25px;
}
@media(max-width: 991px){
  .news .news-carousel.owl-theme .owl-nav{
    position: static;
  }
  .news .news-carousel .item-txt h3{
    font-size: 18px;
  }
  .news .news-carousel .item-txt p{
    font-size: 13px;
  }
  .news .news-carousel.owl-theme .owl-nav [class*=owl-] img{
    height: 15px;
  }
  .news .news-carousel.owl-theme .owl-nav [class*=owl-]{
    width: 40px;
    height: 40px;
    padding-top: 8px;
  }
}

/************** contact us **************/
.contact{
  background: #f8f8f8;
  padding: 50px 0;
}
.contact .section-header {
    margin: 0 -15px;
}
.contact .section-header::after{
    content: none;
}
.contact p.top{
  color: #727272;
  font-size: 20px;
  margin: 0 -15px;
}

.contact form{
  margin-top: 25px;
}
.contact #ContentPlaceHolder1_RegularExpressionValidator6{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
}
.contact .form-group {
    position: relative;
    width: 45%;
    margin: 20px 0;
}
.contact .full-group{
  width: 100%;
  margin-top: 20px;
} 
.contact .full-group .textarea{
  font: 15px/24px;
  color: #333;
  width: 100%;
  box-sizing: border-box;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
  border: 0;
  padding: 10px;
  border: 1px solid #a1a1a1;
  background-color: transparent;
  height: 100px;
}
.contact .form-group :focus {
  outline: none;
}
.contact .form-group .input-effect{
  font: 15px/24px;
  color: #333;
  width: 100%;
  box-sizing: border-box;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
  border: 0;
  padding: 4px 0;
  border-bottom: 1px solid #a1a1a1;
  background-color: transparent;
}

.contact .form-group .input-effect.sel-inp{
  padding: 4px 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: '';
  background: url('../images/select-arrow.png') no-repeat 98% center;
}

.contact .form-group .input-effect ~ .focus-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #0079c2;
  transition: 0.4s;
}
.contact .form-group .input-effect:focus ~ .focus-border,
.contact .form-group .has-content.input-effect ~ .focus-border {
  width: 100%;
  transition: 0.4s;
}
.contact .form-group .input-effect ~ label {
  position: absolute;
  left: 0;
  width: 100%;
  top: 5px;
  color: #555;
  transition: 0.3s;
  z-index: 0;
  letter-spacing: 0.5px;
  font-size: 18px;
}
.contact .form-group .input-effect:focus ~ label,
.contact .form-group .has-content.input-effect ~ label {
  top: -16px;
  font-size: 12px;
  color: #0079c2;
  transition: 0.3s;
}
.contact .form-group .input-effect::-webkit-input-placeholder{
  opacity: 0;
  transition: opacity .2s ease-out;
}

.contact .form-group .input-effect::-moz-placeholder{
  opacity: 0;
  transition: opacity .2s ease-out;
}
.contact .form-group .input-effect:not(:placeholder-shown) ~ label{
  opacity: 0;
  bottom: 15px;
}
.contact .form-group .input-effect:focus::-webkit-input-placeholder{
  opacity: 1;
  transition-delay: .2s;
}
.contact .form-group .input-effect:focus::-moz-placeholder{
  opacity: 1;
  transition-delay: .2s;
}
.contact .form-group .input-effect:focus:not(:placeholder-shown) ~ label{
  opacity: 1;
}
.contact .submit-btn{
  background: #4a98da;
  border-radius: 0;
  display: inline-block;
  color: #fff;
  width: 200px;
  position: relative;
  padding: .5rem 1rem;
  font-size: 18px;
}

.contact .submit-btn {
	-webkit-transition: all 700ms cubic-bezier(0.390, 0.500, 0.150, 1.360);
	-moz-transition: all 700ms cubic-bezier(0.390, 0.500, 0.150, 1.360);
	-ms-transition: all 700ms cubic-bezier(0.390, 0.500, 0.150, 1.360);
	-o-transition: all 700ms cubic-bezier(0.390, 0.500, 0.150, 1.360);
	transition: all 700ms cubic-bezier(0.390, 0.500, 0.150, 1.360);
	display: block;
	text-decoration: none;
}

.contact .submit-btn {
	color: #fff;
	box-shadow: #4a98da 0 0px 0px 2px inset;
}

.contact .contact-details a:hover{
    text-decoration: none;
}

.contact .contact-details .section-header{
    margin: 0 0 20px;
}
.contact .contact-details .social-links .section-header{
    margin-bottom: 0px;
    padding-bottom: 0;
}
.contact .contact-details .social-links .hotline{
    color: #727272;
    font-size: 55px;
    font-weight: bold;
}
.contact .contact-details .social-links img {
    width: 25px;
    margin: 0 2px;
}
.contact .submit-btn:hover {
	color: #4a98da;
	box-shadow: #fff 0 0px 0px 40px inset;
}
.contact .contact-details .one-info p{
    max-width: 70%;
    display: flex;
    align-items: center;
}
.contact .contact-details .one-info a{
    color: #727272;
    display: inline-block;
    margin-left: 10px;
}
.contact .contact-details .one-info img{
    max-height: 40px;
}
@media(max-width: 991px){
  .contact p.top{
    font-size: 15px;
  }
  .contact .form-group .input-effect ~ label {
    font-size: 13px;
  }
  .contact .form-group .input-effect:focus ~ label,
  .contact .form-group .has-content.input-effect ~ label {
    font-size: 11px;
  }
  .contact .form-group .input-effect{
    font-size: 15px;
  }
}
@media(max-width: 767px){
  .contact .form-group,
  .contact .full-group{
    width: 95%;
  }
  .contact .contact-details .one-info p{
      max-width: 100%;
  }
  .contact .contact-details .one-info a{
      font-size: 14px;
  }
  .contact .row{
    margin: 0;
    justify-content: center !important;
  }
  .contact p.top{
    margin-top: 10px;
  }
  .contact .section-header,
  .contact p.top{
      margin-left: 0;
      margin-right: 0;
  }
  .contact form{
    margin-top: 15px;
  }
  .contact .submit-btn{
    width: 95%;
    margin: auto;
  }
}

/**************************************** Footer ******************************************/
footer{
  background: #2e2e2e;
}
footer .row{
  justify-content: center;
}
footer .top-footer{
  padding: 20px 0;
}
footer p{
  color: #ebebeb;
  margin-bottom: 0;
}
footer .top-footer a{
  color: #ebebeb;
  font-weight: 100;
  display: block;
  text-decoration: none;
  padding-left: 20px;
  transition: all 0.3s ease-in-out;
}
footer a:hover{
  text-decoration: none;
  color: #0079c2;
}
footer .logo img{
  width: 200px;
}
footer .top-footer .col{
  border-right: 1px solid #363636;
  padding: 0 1%;
  flex-grow: 0;
  width: auto;
  -webkit-box-flex: 0;
  flex-basis: auto;
}
footer .top-footer .col:first-of-type{
  border-left: 1px solid #363636;
}
footer .top-footer .links:first-of-type{
  margin-bottom: 20px;
  min-height: 100px;
}
footer .bot-footer{
  background: #272727;
  padding: 3px 0;
}
footer .bot-footer a{
  color: #fff;
}
@media(max-width: 1200px){
  footer p,
  footer a{
    font-size: 13px;
  }
}
@media(max-width: 991px){
  footer .top-footer .col{
    flex-grow: 1;
    flex-basis: 50%;
    border: none;
  }
  footer .top-footer .logo{
    display: flex;
    align-items: center;
  }
}
@media(max-width: 767px){
  footer .top-footer .col{
    flex-basis: 100%;
    padding: 0 10%;
  }
  footer .top-footer .logo{
    display: block;
    margin-bottom: 20px;
  }
  footer .top-footer .logo a{
    padding-left: 0;
  }
  footer .top-footer .logo img{
    width: 120px;
  }
  footer .top-footer .links:first-of-type{
    min-height: 0;
  }
}

/**************************************************** Inner Pages *****************************************************/
.intro {
  position: relative;
}
.intro .brd-crmp{
  position: absolute;
  bottom: 20%;
  width: 100%;
  z-index: 2;
}
.breadcrumb{
  background: none;
  padding-left: 5%;
}
.breadcrumb a,
.breadcrumb-item.active,
.breadcrumb-item+.breadcrumb-item::before{
  color: #fff;
  font-size: 25px;
}
.breadcrumb a{
  transition: all 0.35s ease-in-out;
  text-decoration: none;
}

.breadcrumb a:hover{
  color: #0079c2;
}
@media(max-width: 767px){
  .breadcrumb a, .breadcrumb-item.active, .breadcrumb-item+.breadcrumb-item::before{
    font-size: 17px;
  }
}
@media(max-width: 500px){
  .intro .brd-crmp{
    bottom: 5%;
  }
  .breadcrumb a, .breadcrumb-item.active, .breadcrumb-item+.breadcrumb-item::before{
    font-size: 10px;
  }
  .breadcrumb{
    display: block;
    margin-bottom: 0;
  }
  .breadcrumb li{
    display: inline-block;
  }
}

/*************************************** Units Page **************************************/
.about-unit .unit-logo{
  padding-top: 5em;
  padding-bottom: 1.5em;
}
.about-unit .unit-logo img{
  width: 100px;
}
.about-unit .about-txt{
  margin-top: 30px;
}
.about-unit .about-txt p{
  color: #727272;
  font-size: 17px;
  text-align: justify;
}
.about-unit .about-links{
  padding-bottom: 10px;
}
.about-unit .about-links .one-box{
  background: #f3f3f3;
  margin: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  position: relative;
}
.about-unit .alkan-boxes.about-links .one-box{
  padding: 10px 10px;
}

.about-unit .about-links .one-box a{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.about-unit .about-links .one-box p{
  margin-bottom: 0;
  color: #444444;
  transition: all 0.35s ease-in-out;
}
.about-unit .alkan-boxes.about-links .one-box p{
  font-size: 13px;
}
.about-unit .about-links .one-box img{
  width: 40px;
  margin-right: 20px;
}
.about-unit .about-links .one-box:hover p{
  color: #0079c2;
}

@media(max-width: 1200px){
  .about-unit .about-links .one-box p{
    font-size: 13px;
  }
}
@media(max-width: 991px){
  .about-unit .about-links .one-box p{
    font-size: 15px;
  }
  .about-unit .about-links .one-box{
    margin: 10px 0;
  }
}

@media(max-width: 767px){
  .about-unit .about-links .one-box p{
    font-size: 13px;
  }
  .about-unit .about-links .one-box{
    margin: 10px;
  }
}


.unit-products{
  padding-top: 50px;
  padding-bottom: 50px;
}
.unit-products h2.section-header{
  margin-bottom: 50px;
}
.unit-products .product-line .line-header{
  /* border-bottom: 2px solid #ebebeb; */
  margin-bottom: 20px;
}
.unit-products .product-line h3{
  color: #0079c2;
  font-weight: bold;
}
.unit-products .products .one-product p{
  color: #0e324c;
  font-weight: bold;
  font-size: 17px;
}
.unit-products .products .one-product img{
  width: 500px;
}
@media(max-width: 767px){
  .about-unit .about-txt p{
    font-size: 13px;
  }
  .unit-products .product-line h3{
    font-size: 17px;
  }
  .unit-products .products .one-product p{
    font-size: 14px;
  }

}
/*************************************** Vis-Mis Page **************************************/
.vis-mis{

}
.vis-mis p{
  color: #727272;
  font-size: 20px;
  line-height: 1.5;
  text-align: justify;
}
.vis-mis h3{
  font-size: 30px;
  font-weight: bold;
  padding-top: 10px;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.vis-mis h3::after{
  content: '';
  width: 150px;
  height: 4px;
  background: #d5b20f;
  position: absolute;
  bottom: 0;
}
.vis-mis .vis h3{
  color: #0e324c;
}
.vis-mis .mis h3{
  color: #4896da;
}
.vis-mis .vis h3::after{
  left: 0;
}
.vis-mis .mis h3::after{
  right: 0;
}
@media(max-width: 1200px){
  .vis-mis p{
    font-size: 17px;
  }
}
@media(max-width: 767px){
  .vis-mis p{
    font-size: 15px;
  }
  .vis-mis h3{
    font-size: 20px;
  }
}

.philo{
  background: #f8f8f8;
  /* padding: 50px 0;  */
}
.philo p{
  margin-top: 30px;
}
.philo .one-philo img{
  height: 80px;
  display: block;
  margin: 20px auto;
}
.philo .one-philo p{
  color: #0e324c;
  font-weight: bold;
  margin-top: 0;
}
@media(max-width: 767px){
  .philo{
    padding-top: 0px;
  }
  .philo p{
    font-size: 15px;
  }
}

/************************************* Cummins ************************************/
.about-unit .unit-logo.lg-logo img{
  /* width: 300px; */
}
.about-unit .social-links{
  margin-bottom: 20px;
}
.about-unit .social-links a{
  width: 40px;
  height: 40px;
  display: inline-block;
  border: 1px solid #0e324c;
  color: #0e324c;
  border-radius: 50%;
  font-size: 22px;
  text-align: center;
  line-height: 2;
  margin: 0 5px;
  transition: all 0.3s ease-in-out;
}
.about-unit .social-links a:hover{
  color: #0079c2;
  border-color: #0079c2;
}
.cummins-awards{
  position: relative;
}
.unit-partners.cummins-awards{
  margin-bottom: 0;
}
.cummins-awards .one-partner .item img{
  width: auto;
  display: inline-block;
  margin-bottom: 20px;
}
.cummins-awards .one-partner .owl-item{
  justify-content: center;
}
.cummins-awards.unit-partners .partner-slider .owl-partner p{
  width: auto;
}
.cummins-awards.unit-partners .partner-slider .owl-partner p::before{
  content: '____';
  font-size: 20px;
  font-weight: bold;
  position: relative;
  top: -8px;
  right: 10px;
}
.cummins-awards.unit-partners .partner-slider .owl-partner p::after{
  content: '____';
  font-size: 20px;
  font-weight: bold;
  position: relative;
  top: -8px;
  left: 10px;
}
.unit-branches{
  margin-bottom: 20px;
}
.unit-branches p{
  color: #727272;
  font-size: 18px;
}
.unit-branches .card-header{
  background: none;
  border: none;
}
.unit-branches .card-header h2{
  cursor: pointer;
  border-bottom: 1px solid #ebebeb;
  color: #0079c2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.unit-branches .card-header h2 i{
  font-size: 20px;
  transition: all 0.35s ease-in-out;
}
.unit-branches .card-header h2[aria-expanded="false"] i{
  transform: rotate(180deg);
}
.unit-branches .card{
  border: none;
}
.unit-branches .card p{
  color: #444444;
}

@media(max-width: 767px){
  .unit-branches .card-header h2{
    font-size: 18px;
    padding-bottom: 5px;
  }
  .unit-branches p{
    font-size: 13px;
  }
  .unit-branches .card-header h2 i{
    font-size: 15px;
  }
  .about-unit .social-links a{
    width: 30px;
    height: 30px;
    font-size: 18px;
    line-height: 1;
    padding-top: 5px;
  }
  .about-unit .unit-logo.lg-logo img{
    width: 150px;
  }
  .cummins-awards .one-partner .item img{
    width: 70px;
  }
  .cummins-awards.unit-partners .partner-slider .owl-partner p::before{
    content: '__';
    font-size: 10px;
    right: 5px;
    top: -5px;
  }
  .cummins-awards.unit-partners .partner-slider .owl-partner p::after{
    content: '__';
    font-size: 10px;
    left: 5px;
    top: -5px;
  }
  .cummins-awards.unit-partners .partner-slider .owl-partner p{
    font-size: 9px;
  }
}
.unit-partners .one-partner{
  padding-top: 100px;
}
.unit-partners .partner-head img{
  max-height: 100px;
  max-width: 200px;
}
.unit-partners .partner-head{
  border-bottom: 2px solid #ebebeb;
  padding-bottom: 10px;
}
.unit-partners .partner-txt{
  margin-top: 20px;
}
.unit-partners .partner-txt p{
  font-size: 18px;
  color: #444;
}
.unit-partners .partner-slider{
  position: relative;
}
.unit-partners .partner-slider .owl-partner{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
}
.unit-partners .partner-slider .owl-partner .owl-stage,
.unit-partners .partner-slider .owl-partner .owl-stage-outer{
  height: 100%;
}
.unit-partners .partner-slider .owl-partner .owl-item{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.unit-partners .partner-slider .owl-partner .owl-item .item{
  width: 100%;
  text-align: center;
}
.unit-partners .partner-slider .owl-partner h4{
  font-size: 35px;
  text-transform: uppercase;
}
.unit-partners .partner-slider .owl-partner p{
  font-size: 18px;
  width: 70%;
  margin: 20px auto;
}
.unit-partners .partner-slider .next-but,
.unit-partners .partner-slider .prev-but{
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 0;
  height: 100%;
  z-index: 4;
  background: #22435b;
  display: flex;
  align-items: center;
  border: none;
  width: 75px;
  justify-content: center;
  outline: none;
  cursor: pointer;
}
.unit-partners .partner-slider .next-but{
  left: auto;
  right: 0;
}
.owl-partner .owl-nav [class*=owl-]{
  height: 100%;
  margin: 0;
  border-radius: 0;
}

@media(max-width: 1200px){
  .unit-partners .partner-slider .owl-partner h4{
    font-size: 30px;
  }
  .unit-partners .partner-slider .owl-partner p{
    font-size: 15px;
  }
}
@media(max-width: 991px){
  .unit-partners .partner-slider .owl-partner h4{
    font-size: 25px;
  }
  .unit-partners .partner-slider .owl-partner p{
    font-size: 14px;
    width: 90%;
  }
  .unit-partners .partner-slider .next-but,
  .unit-partners .partner-slider .prev-but{
    width: 40px;
  }
}
@media(max-width: 767px){
  .unit-partners .partner-slider .owl-partner{
    position: relative;
    padding: 15px 0;
    background: #0e324c;
  }
  .unit-partners .partner-slider .owl-partner h4{
    font-size: 18px;
  }
  .unit-partners .partner-slider .owl-partner p{
    font-size: 12px;
    width: 70%;
  }
  
  .unit-partners .partner-head img{
    max-width: 100px;
  }
  .unit-partners .partner-txt p{
    font-size: 14px;
  }
}



.about-unit .about-links .one-box .link{
  max-width: 70%;
  word-break: break-word;
}

.tcm-sec.bp-sec .img-bp img{
  height: 300px;
}
.tcm-sec .row .col-lg-4{
  justify-content: center;
}
.box-style.one-box-style{
  width: 260px;
  max-width: 260px;
}
.breadcrumb .breadcrumb-item{
  color: #fff;
  font-size: 20px;
}
.turboAuthorized.marine{
  padding: 50px 0 70px;
}

.mouse-wrapper {
  position: absolute;
  bottom: 10%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 99;
  cursor: pointer;
}

.mouse-icon {
  height: 35px;
  width: 22px;
  border-radius: 12px;
  border: 2px solid #fff;
  position: relative;
}

.mouse-icon:after {
  content: '';
  height: 5px;
  width: 3px;
  display: block;
  margin: 5px auto;
  border: 2px solid #fff;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  -webkit-animation: mouse-wheel 0.6s linear infinite;
  -moz-animation: mouse-wheel 0.6s linear infinite;
}

.mouse-arrow {
  display: block;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  margin: 2px 0 3px 6px;
  width: 8px;
  height: 8px;
  -webkit-animation: mouse-scroll 1s infinite;
  -moz-animation: mouse-scroll 1s infinite;
  -webkit-animation-delay: 100ms;
  -moz-animation-delay: 100ms;
  -webkit-animation-direction: alternate;
}

.mouse-arrow:after,
.mouse-arrow:before {
  position: absolute;
  content: '';
  display: block;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  width: 8px;
  height: 8px;
  -webkit-animation: mouse-scroll 1s infinite;
  -moz-animation: mouse-scroll 1s infinite;
}

.mouse-arrow:after {
  margin: 7px 0 3px 7px;
  -webkit-animation-delay: 200ms;
  -moz-animation-delay: 200ms;
  -webkit-animation-direction: alternate;
}

.mouse-arrow:before {
  margin: 14px 0 3px 14px;
  -webkit-animation-delay: 300ms;
  -moz-animation-delay: 300ms;
  -webkit-animation-direction: alternate;
}

@-webkit-keyframes mouse-wheel {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(6px);
    -ms-transform: translateY(6px);
    transform: translateY(6px);
  }
}

@-webkit-keyframes mouse-scroll {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

.locate-page h2{
  font-size: 40px;
  color: #0e324c;
}

.locate-page .sub-head{
  color: #727272;
  font-weight: lighter;
  margin: 10px 0 20px;
}
.locate-page .form select{
  width: 100%;
  padding: 10px;
  color: #828282;
}
.locate-page .form input[type="submit"]{
  background: #0079c2;
  color: #fff;
  border: none;
  padding: 10px;
  width: 200px;
  cursor: pointer;
  transition: all 0.35s ease-in-out;
}
.locate-page .form input[type="submit"]:hover{
  background: #0e324c;
}
@media(max-width: 767px){
  .locate-page h2{
    font-size: 25px;
  }
  .locate-page .sub-head{
    font-size: 20px;
  }
  .locate-page .form select{
    margin: 10px 0;
    font-size: 15px;
  }
  .locate-page .form input[type="submit"]{
    width: 100%;
    margin: 10px 0;
  }
}

.locate-page .locations{
  margin-top: 30px;
}

.locate-page .locations .one-location{
  padding: 20px;
  border: 1px solid #b7b7b7;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
  flex-wrap: wrap;
}
.locate-page .locations .one-location p{
  margin-bottom: 10px;
}
.locate-page .locations .one-location .title span{
  color: #0079c2;
  font-size: 18px;
  display: inline-block;
}
.locate-page .locations .one-location .title img{
  display: inline-block;
  margin: 0 12px;
  width: 25px;
}
.locate-page .locations .one-location .address p span,
.locate-page .locations .one-location .phone p span{
  color: #d5b20f;
  font-weight: bold;
  display: inline-block;
  margin-right: 10px;
}
.locate-page .locations .one-location .address p,
.locate-page .locations .one-location .phone p{
  color: #5e5e5e;
}
.locate-page .locations .one-location .phone p{
  margin-bottom: 0;
}
.locate-page .locations .one-location .location-link a{
  color: #0079c2;
  font-size: 17px;
  text-decoration: none;
  font-weight: bold;
}
.locate-page .locations .one-location .location-link a img{
  width: 20px;
  position: relative;
  left: 0;
  transition: all 0.3s ease-in-out;
}
.locate-page .locations .one-location .location-link a:hover img{
  left: 5px;
}
@media(max-width: 767px){
  .locate-page .locations .one-location{
    flex-direction: column;
    align-items: flex-start;
  }
  .locate-page .locations .one-location p{
    font-size: 13px;
  }
  .locate-page .locations .one-location .location-link{
    margin-top: 20px;
  }
  .locate-page .locations .one-location .location-link a{
    font-size: 13px;
  }
}

.yamaha-intro .owl-theme .owl-nav{
  position: absolute;
  top: 50%;
  left: 2.5%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  width: 95%;
}
.yamaha-intro .owl-theme .owl-nav [class*=owl-]{
  background: none;
}
.yamaha-intro .owl-theme .owl-nav [class*=owl-]:hover{
  background: none;
}

.yamaha-intro .owl-theme .owl-nav [class*=owl-] i{
  font-size: 40px;
}

.our-trucks .truck-inner .one-truck{
  box-shadow: 0 0 15px #eee;
  padding: 20px 15px 5px;
}
.our-trucks .truck-inner .one-truck .truck-details {
  padding-top: 10px;
  border-top: 1px solid #b7b7b7;
}
.our-trucks .truck-inner .one-truck .truck-details img{
  width: auto;
  max-width: 20px;
  max-height: 20px;
  display: inline-block;
}
.our-trucks .truck-inner .one-truck .truck-details span{
  display: inline-block;
  font-size: 12px;
}
.our-trucks .truck-inner .one-truck .img{
  height: 150px;
}
.our-trucks .truck-inner .one-truck .img img{
  max-height: 120px;
  width: auto;
  margin: 0 auto;
  display: block;
}
.our-trucks .truck-inner .one-truck p{
  color: #0e324c;
  font-size: 25px;
}

@media(max-width: 1200px){
  .our-trucks .truck-inner .one-truck .truck-details img{
    max-width: 12px;
    max-height: 12px;
  }
  .our-trucks .truck-inner .one-truck .truck-details span{
    font-size: 10px;
  }
}

@media(max-width: 767px){
  .our-trucks .truck-inner .one-truck p{
    font-size: 20px;
  }
}

.hyundai-range .range-par{
  background: #fcfcfc;
  padding: 50px 0;
}
.hyundai-range .range-par:nth-of-type(odd){
  background: #f6f6f6;
}
.hyundai-range .one-range img{
  max-height: 100px;
}
.hyundai-range .one-range p{
  font-size: 22px;
  margin-top: 30px;
  color: #727272;
  margin-bottom: 0;
}

.hyundai-trucks .trucks-tabs .tabs{
  display: flex;
  color: #727272;
  justify-content: center;
  margin: 30px auto;
}
.hyundai-trucks .trucks-tabs .one-tab{
  border-bottom: 1px solid #727272;
  flex-basis: 25%;
  padding: 15px 0;
  transition: all 0.35s ease-in-out;
  cursor: pointer;
}
.hyundai-trucks .trucks-tabs .one-tab.active{
  background: #0079c2;
  color: #fff;
}

@media(max-width: 767px){
  .hyundai-trucks .trucks-tabs .one-tab{
    font-size: 12px;
  }
}
@media(max-width: 575px){
  .hyundai-trucks .trucks-tabs .one-tab{
    width: 50%;
    flex-basis: auto;
  }
  .hyundai-trucks .trucks-tabs .tabs{
    flex-wrap: wrap;
  }
}

.hyundai-trucks .trucks-tabs .tabs-content{
  padding-bottom: 50px;
}
.hyundai-trucks .trucks-tabs .tabs-content .one-content{
  display: none;
margin-top:20px;
}.hyundai-trucks .trucks-tabs .tabs-content .one-content#light{
  display: block;
}
.hyundai-trucks .trucks-tabs .tabs-content .one-truck{
  position: relative;
  margin: 10px 0;
}
.hyundai-trucks .trucks-tabs .tabs-content .one-truck .truck-dets{
  position: absolute;
  bottom: 5%;
  left: 5%;
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}
.hyundai-trucks .trucks-tabs .tabs-content .one-truck .truck-dets span{
  font-size: 35px;
  font-weight: bold;
}
.hyundai-trucks .trucks-tabs .tabs-content .one-truck .truck-dets .right-num span{
  font-size: 20px;
}
.hyundai-trucks .trucks-tabs .tabs-content .one-truck .truck-dets .right-num img{
  height: 30px;
}

@media(max-width: 767px){
  .hyundai-trucks .trucks-tabs .tabs-content .one-truck .truck-dets span{
    font-size: 25px;
  }
  .hyundai-trucks .trucks-tabs .tabs-content .one-truck .truck-dets .right-num span{
    font-size: 15px;
  }
}

/* ---------------- Construction Machinery page --------------------------------- */

section.construction-n {
  padding: 30px;
}

/* ---------------- Komatsu page --------------------------------- */ 
section.Komatsu-n {
 
}
section.Komatsu-n.caar-unit .unit-logo img {
    width: 292px;
} 

/* ---------------- Bomag page --------------------------------- */ 

section.Bomag{

}

section.Bomag.caar-unit .unit-logo img {
  width: 250px;
}

section.Bomag.dowin.caar-unit .unit-logo img {
  width: 200px;
}

@media only screen and (max-width: 768px) {
  section.Bomag.caar-unit .unit-logo img,
  section.Bomag.dowin.caar-unit .unit-logo img{
    width: 150px;
  }

  section.Komatsu-n.caar-unit .unit-logo img {
    width: 163px;
  } 

  section.Bomag.dowin.caar-unit .unit-logo img {
  width: 124px;
 }
}
/* -------------------------------------------- */
.turboAuthorized.cummins-timeline{
  background-image: url('../images/cummins-rewards-bg.jpg');
  padding: 70px 0 200px;
}
.turboAuthorized.cummins-timeline h1.title-span{
  margin-bottom: 200px;
}
.turboAuthorized.cummins-timeline .timeline li .data{
  position: absolute;
  top: 150%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  display: flex;
  flex-direction: column;
}
.turboAuthorized.cummins-timeline .timeline li:nth-of-type(even) .data{
  top: auto;
  bottom: 150%;
}
.turboAuthorized.cummins-timeline .timeline li .data .sep{
  width: 30px;
  height: 4px;
  background: #f2bb13;
  margin: 10px auto;
}
.turboAuthorized.cummins-timeline .timeline li .data p{
  margin-bottom: 0;
}
.turboAuthorized.cummins-timeline .timeline li .data .year{
  font-size: 25px;
  font-weight: bold;
}
.turboAuthorized.cummins-timeline .timeline li .data .text{
  font-size: 15px;
}
.turboAuthorized.cummins-timeline .timeline li:nth-of-type(even) .data .year{
  order: 3;
}
.turboAuthorized.cummins-timeline .timeline li:nth-of-type(even) .data .sep{
  order: 2;
}
.turboAuthorized.cummins-timeline .timeline li:nth-of-type(even) .data .text{
  order: 1;
}

@media(max-width: 991px){
  .turboAuthorized.cummins-timeline{
    margin-bottom: 50px;
  }
  .turboAuthorized.cummins-timeline h1.title-span{
    margin-bottom: 50px;
  }
  .turboAuthorized.cummins-timeline .timeline{
    display: flex;
    height: 900px;
    align-items: center;
    justify-content: space-around;
    width: 1px;
    background: #f2bb13;
    padding: 0;
    flex-direction: column;
    margin: 0 auto
  }
  .turboAuthorized.cummins-timeline .timeline li .data{
    top: auto;
    left: 90px;
    bottom: 0;
    width: 120px;
  }
  .turboAuthorized.cummins-timeline .timeline li:nth-of-type(even) .data{
    left: -90px;
    bottom: 0;
  }
  .turboAuthorized.cummins-timeline .timeline li .data .year{
    order: 3;
  }
  .turboAuthorized.cummins-timeline .timeline li .data .sep{
    order: 2;
  }
  .turboAuthorized.cummins-timeline .timeline li .data .text{
    order: 1;
  }
  .turboAuthorized.cummins-timeline .timeline li .data .year{
    font-size: 18px;
  }
  .turboAuthorized.cummins-timeline .timeline li .data .text{
    font-size: 13px;
  }
}

.new-careers label{
  color: #7c7c7c;
}

.new-careers .blue-strip{
  background: #d9ebf6;
  padding: 10px;
  margin-bottom: 10px;
}

.new-careers .blue-strip p{
  margin-bottom: 0;
  font-weight: bold;
}

.new-careers .form-area .send{
  background: #0079c2;
  border: none;
  color: #fff;
  padding: 12px 60px;
  cursor: pointer;
}
.new-careers .form-area .table-inputs{
  position: relative;
}
.new-careers .form-area .table-inputs table{
  width: 100%;
  border: 1px solid #ced4da;
}
.new-careers .form-area .table-inputs th{
  background: #f1f3f5;
  color: #7c7c7c;
  border: 1px solid #ced4da;
  border-top: 0;
  border-bottom: 0;
  font-weight: normal;
  padding: 15px 0;
}
.new-careers .form-area .table-inputs td{
  border: 1px solid #ced4da;
  border-top: 0;
  border-bottom: 0;
}
.new-careers .form-area .table-inputs .added-row td{
  border-top: 1px solid #ced4da;
  border-bottom: 1px solid #ced4da;
} 
.new-careers .form-area .table-inputs td input{
  width: 100%;
  border: none;
  padding-left: 10px;
}
.new-careers .form-area .table-inputs .add-row{
  position: absolute;
    right: -40px;
    bottom: 5px;
    width: 35px;
    cursor: pointer;
}
.new-careers .form-area .table-inputs .edu-table td.degree,
.new-careers .form-area .table-inputs .edu-table td.date{
  width: 50%;
}

.new-careers .form-area .prev-exp-table td.from,
.new-careers .form-area .prev-exp-table td.to{
  width: 20%;
}

.new-careers .form-area .prev-exp-table td.employer{
  width: 25%;
}

.new-careers .form-area .prev-exp-table td.position{
  width: 35%;
}

@media(max-width: 991px){
  .new-careers.job-details ul li{
    font-size: 13px;
  }
  .new-careers.jobs-unit h3{
    font-size: 18px;
  }
  .new-careers label{
    font-size: 13px;
  }
  .new-careers table{
    font-size: 13px;
  }
  .new-careers .form-area .table-inputs .add-row{
    position: static;
    margin-top: 10px;
  }
}

.cummins-imgs .one-img{
  position: relative;
  margin-top: 20px;
}

.cummins-imgs .one-img .img-title{
  position: absolute;
  bottom: 5%;
  left: 7%;
  color: #fff;
  font-weight: bold;
}

.owl-carousel .owl-item img{
  max-height: 450px ;
}

@media(max-width: 767px){
  .en-solutions .one-app .energy-content-img{
    width: 100%;
  }
}


.bp-slider .owl-carousel .owl-item img{
  width: auto;
  margin: 0 auto;
}

.bp-about .section-header.header-alkan:after{
 width: 125px;
}