/**
* Template Name: OnePage
* Updated: Jan 29 2024 with Bootstrap v5.3.2
* Template URL: https://bootstrapmade.com/onepage-multipurpose-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Montserrat", sans-serif;
  color: #444444;
  -webkit-overflow-scrolling: touch;

}
input {
  transform: scale(1);
}

a {
  color: #2487ce;
  text-decoration: none;
}

a:hover {
  color: #469fdf;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Antonio", sans-serif;
}

p{
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  color: #143156;
  line-height: 27px;
}
::-webkit-scrollbar {
  display: none;
}
::-webkit-scrollbar-button {
  display: none;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 135px;
  z-index: 996;
  background: #143156;
  width: 40px;
  height: 40px;
  transition: all 0.4s;
  border: 1px solid #404955;
}

.back-to-top i {
  font-size: 20px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6fbf4b;
  border: 1px solid #eee;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  /*max-width: 1320px;*/
  max-width: 88%;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #123157;
  display: flex;
  align-items: center;
  justify-content: center;
}
#preloader img{
  animation: 3s linear infinite;
  width: 35%;
}



@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  z-index: 997;
  padding: 23px 0px 23px 0px;
  position: fixed;
  width: 100%;
  margin-top: 30px;
  transform: translateY(0); /* Start with header in view */
    opacity: 1;
    transition: transform 0.4s ease, opacity 0.4s ease; /* Smooth transition */
}
.header.hidden {
  transform: translateY(-100%); /* Slide header out of view */
  opacity: 0; /* Fade out */
}
#header.header-scrolled {
  background-color: rgba(20, 49, 86, 0.98);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  margin-top: 0;
}
#header.hidden.header-scrolled {
  -webkit-transform: translateY(-200%);
  -moz-transform: translateY(-200%);
  -ms-transform: translateY(-200%);
  -o-transform: translateY(-200%);
  transform: translateY(-200%);
}


#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.5px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #16507b;
}

#header .logo img {
  max-height: 45px;
}
.mobile-logo{
  display: none;
}

@media (max-width: 992px) {
  #header .logo {
    font-size: 28px;
  }
  .navbar-mobile ul{
    right: 0;
    bottom: 0;
    left: 0;
    top: 83px;
    background-color: rgba(20, 49, 86, 0.95);
  }
  .navbar-mobile{
    background: none;
  }
  .navbar li {
    text-align: center;
    padding-bottom: 14px;
    border-bottom: 1px solid #0e2849;
    padding-top: 16px;
  }
  .navbar a{
    display: inline;
    padding: 10px 3px;
    color: #fff;
    font-size: 21px;
  }
  .bi-list::before {
    position: absolute;
    top: -19px;
    right: -19px;
  }

}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.menu-footer{
  display: none;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
  padding: 10px 27px 0px 27px;
}
.navbar li:last-child{
  padding-right: 0px;
}

.navbar a,
.navbar a:focus {
  font-family: "Antonio", sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  font-size: 22px;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
  font-weight: 200;
  text-transform: uppercase;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #6fbf4b;
}
.navbar li a.active:after {
  content: '';
  position: absolute;
  background-color: #6fbf4b;
  width: 100%;
  height: 3px;
  bottom: 0;
  left: 0px;
  right: 0px;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #2487ce;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #3194db;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #2487ce;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }

}

/**
* Mobile Navigation 
*/
.navbar-toggler {
  border: none;
  padding: 0;
  outline: none;
  display: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler .hamburger-toggle {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  z-index: 11;
  float: right;
  border: 1px solid #fff;
  border-radius: 50px;
}
.navbar-toggler .hamburger-toggle .hamburger {
  position: absolute;
  transform: translate(-50%, -50%) rotate(0deg);
  left: 50%;
  top: 50%;
  width: 50%;
  height: 50%;
  pointer-events: none;
  border-bottom: none;
}
.navbar-toggler .hamburger-toggle .hamburger span {
  width: 100%;
  height: 2px;
  position: absolute;
  background: #143156;
  border-radius: 0px;
  z-index: 1;
  transition: transform 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), all 0.2s ease-in-out;
  left: 0px;
}
.navbar-toggler .hamburger-toggle .hamburger span:first-child {
  top: 10%;
  transform-origin: 50% 50%;
  transform: translate(0% -50%) !important;
  width: 87%;
}
.navbar-toggler .hamburger-toggle .hamburger span:nth-child(2) {
  top: 50%;
  transform: translate(0, -50%);
}
.navbar-toggler .hamburger-toggle .hamburger span:last-child {
  left: 0px;
  top: auto;
  bottom: 10%;
  transform-origin: 50% 50%;
  width: 70%;
}
.navbar-toggler .hamburger-toggle .hamburger.active span {
  position: absolute;
  margin: 0;
}
.navbar-toggler .hamburger-toggle .hamburger.active span:first-child {
  top: 45%;
  transform: rotate(45deg);
  width: 100%;
}
.navbar-toggler .hamburger-toggle .hamburger.active span:nth-child(2) {
  left: 50%;
  width: 0px;
}
.navbar-toggler .hamburger-toggle .hamburger.active span:last-child {
  top: 45%;
  transform: rotate(-45deg);
  width: 100%;;
}
.navbar-toggler .hamburger-toggle .hamburger:after{
  display: none;
}











.mobile-nav-toggle {
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  /*position: fixed;*/
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(10, 38, 58, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 25px;
  right: 15px;
  font-size: 26px;
  border: 2px solid #fff;
  border-radius: 50px;
  padding: 3px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #124265;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #6fbf4b;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #2487ce;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#homepage {
  width: 100%;
  height: 100vh;
  padding-bottom: 0px;
  position: relative;
  background: url("../img/main-banner.webp") top center;
  background-size: cover;
  position: relative;
}
#hero-sub {
  width: 100%;
  height: 100vh;
  padding-bottom: 0px;
  position: relative;
  background: url("../img/privacy-policy-banner.webp") top center;
  background-size: 100% 100%;
  position: relative;
}
#hero-sub:before,
#hero-sub-2:before,
#hero-error-403:before,
#hero-error-404:before {
  content: '';
  box-shadow: inset 0 0 250px rgba(0, 0, 0, 0.47);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #143156;
  opacity: 0.6;
}
.banner-sub-cont,
.error-cont {
  z-index: 3;
}
.banner-sub-cont {
  z-index: 3;
  position: absolute;
  bottom: 50px;
  width: 100%;
  left: 0;
  right: 0;
}
#hero-sub-2 {
  width: 100%;
  height: 100vh;
  padding-bottom: 0px;
  position: relative;
  background: url("../img/terms-of-use-banner.webp") top center;
  background-size: 100% 100%;
  position: relative;
}
#hero-error-404 {
  width: 100%;
  height: 100vh;
  padding-bottom: 0px;
  position: relative;
  background: url("../img/404-error-bg.webp") top center;
  background-size: cover;
  position: relative;
  padding-top: 0px;
}
#hero-error-403 {
  width: 100%;
  height: 100vh;
  padding-bottom: 0px;
  position: relative;
  background: url("../img/403-error-bg.webp") top center;
  background-size: cover;
  position: relative;
  padding-top: 0px;
}
#hero-error-404 h1,
#hero-error-403 h1 {
  font-size: 100px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
}
#hero-error-404 p,
#hero-error-403 p {
  color: #fff;
    font-size: 15px;
    line-height: 28px;
}
#hero-error-404 p a,
#hero-error-403 p a{
  position: relative;
  color: #6fbf4b;
}
#hero-error-404 p a:after,
#hero-error-403 p a:after {
  content: "";
  border-bottom: 1px solid #6fbf4b;
  transition: width .4s ease-in-out;
  position: absolute;
  bottom: 1px;
  left: 0;
  right: 0;
  width: 100%;
  text-decoration: none;
}
#hero-error-404 p a:hover, 
#hero-error-404 p a:focus,
#hero-error-403 p a:hover, 
#hero-error-403 p a:focus {
  color: #fff;
}
#hero-error-404 p a:hover::after,
#hero-error-403 p a:hover::after {
  border-color: #fff;
  width: 0;
}

#hero-error-404 p span,
#hero-error-403 p span{
  font-weight: bold;
}


#homepage .container {
  padding-top: 80px;
}

#homepage h1,
#homepage h2,
#hero-sub h1,
#hero-sub-2 h1 {
  margin: 0;
  font-size: 40px;
  font-weight: normal;
  line-height: 65px;
  color: #6fbf4b;
  text-transform: uppercase;
  font-family: "Antonio", sans-serif;
  margin-bottom: 30px;
}
#hero-sub h1,
#homepage h2,
#hero-sub p,
#hero-sub-2 p,
#hero-sub-2 h1 {
  text-align: center;
  color: #fff;
}
#homepage h1 span,
#hero-sub h1 span,
#hero-sub-2 h1 span{
  font-weight: bold;
  color: #fff;
}
#homepage h1 sup,
#homepage h2 sup {
  top: -.3em;
}
#homepage p,
#hero-sub p,
#hero-sub-2 p{
  font-size: 15px;
  line-height: 27px;
  color: #fff;
  width: 100%;
  max-width: 976px;
  margin-bottom: 30px;
}
#hero-sub p,
#hero-sub-2 p{
  margin: 0px auto;
}

#hero-sub-2 h1 sub {
  bottom: -0.12em;
}


/* Common button styles */
.button-new {
	float: left;
	min-width: 150px;
	max-width: 250px;
	display: block;
	padding: 12px 30px;
	border: none;
	background: none;
	color: inherit;
	vertical-align: middle;
	position: relative;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
    border-radius: 50px;
    font-size: 20px;
    color: #143156;
	border-color: #143156;
  font-family: "Antonio", sans-serif;
  text-align: center;
  text-transform: uppercase;
  border: 1px solid;
}
.button-new:focus {
	outline: none;
}
.button-new > span {
	vertical-align: middle;
}
.button--tamaya-new {
	overflow: hidden;
	color: #408721;
	min-width: 180px;
}
.button--tamaya-new.button--inverted {
	color: #143156;
	border-color: #143156;
}
.button--tamaya-new::before,
.button--tamaya-new::after {
	content: attr(data-text);
	position: absolute;
	width: 100%;
	height: 50%;
	left: 0;
	background: linear-gradient(to right, #408721, #9afb6f, #448328, #33cc33, #41b30f, #48b417);
    background-size: 258% 100%;
	color: #000;
	overflow: hidden;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
	transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.flip-box-back .button--tamaya-new::before, .flip-box-back .button--tamaya-new::after {
  background: #fff;
}
.button--tamaya-new.button--inverted::before,
.button--tamaya-new.button--inverted::after {
	background: #fff;
	color: #143156;
}
.button--tamaya-new::before {
	top: 0;
	padding-top: 12px;
}
.button--tamaya-new::after {
	bottom: 0;
	line-height: 0;
}
.button--tamaya-new > span {
	display: block;
	-webkit-transform: scale3d(0.2, 0.2, 1);
	transform: scale3d(0.2, 0.2, 1);
	opacity: 0;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
	-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
	transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.button--tamaya-new:hover::before {
	-webkit-transform: translate3d(0, -100%, 0);
	transform: translate3d(0, -100%, 0);
}
.button--tamaya-new:hover::after {
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
}
.button--tamaya-new:hover > span {
	opacity: 1;
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
}
.button-new:hover {
    border: 1px solid;
    color: #fff;
}




.testimonials{
  display: none;
}

.testimonials .button-new {
	float: left;
	min-width: 150px;
	max-width: 180px;
	display: block;
	padding: 12px 30px;
	border: none;
	background: none;
	color: inherit;
	vertical-align: middle;
	position: relative;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
    border-radius: 50px;
    font-size: 20px;
    color: #143156;
	border-color: #143156;
  font-family: "Antonio", sans-serif;
  text-align: center;
  text-transform: uppercase;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0px auto;
  margin-top: 30px;
}
.testimonials .button-new:focus {
	outline: none;
}
.testimonials .button-new > span {
	vertical-align: middle;
}
.testimonials .button--tamaya-new {
	overflow: hidden;
	color: #7986cb;
	min-width: 180px;
}
.testimonials .button--tamaya-new.button--inverted {
	color: #143156;
	border-color: #143156;
}
.testimonials .button--tamaya-new::before,
.testimonials .button--tamaya-new::after {
	content: attr(data-text);
	position: absolute;
	width: 100%;
	height: 50%;
	left: 0;
	background: #143156;
    background-size: 258% 100%;
	color: #fff;
	overflow: hidden;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
	transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.testimonials .button--tamaya-new.button--inverted::before,
.testimonials .button--tamaya-new.button--inverted::after {
	background: #fff;
	color: #143156;
}
.testimonials .button--tamaya-new::before {
	top: 0;
	padding-top: 12px;
}
.testimonials .button--tamaya-new::after {
	bottom: 0;
	line-height: 0;
}
.testimonials .button--tamaya-new > span {
	display: block;
	-webkit-transform: scale3d(0.2, 0.2, 1);
	transform: scale3d(0.2, 0.2, 1);
	opacity: 0;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
	-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
	transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.testimonials .button--tamaya-new:hover::before {
	-webkit-transform: translate3d(0, -100%, 0);
	transform: translate3d(0, -100%, 0);
}
.testimonials .button--tamaya-new:hover::after {
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
}
.testimonials .button--tamaya-new:hover > span {
	opacity: 1;
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
}
.testimonials .button-new:hover {
    border: 1px solid;
    color: #143156;
}



/* Tamaya */
#homepage .button,
.fancy .button {
  float: left;
  padding: 15px 75px;
	margin: 10px 0;	
	font-size: 25px;
	font-weight:500;
  color: #123157;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  background: none;
  font-family: "Antonio", sans-serif;
  vertical-align: middle;
  position: relative;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  border-radius: 50px;
  text-align: center;
}


.btncontact .button {
  float: left;
  padding: 15px 75px;
	margin: 10px 0;	
	font-size: 25px;
	font-weight:500;
  color: #123157;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  background-color: #143156;
  background-size: 258% 100%;
  font-family: "Antonio", sans-serif;
  vertical-align: middle;
  position: relative;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  border-radius: 50px;
  text-align: center;
}

.menu-getin .button {
  float: left;
  padding: 10px 56px;
	margin: 10px 0;	
	font-size: 18px;
	font-weight:500;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  background: none;
  font-family: "Antonio", sans-serif;
  vertical-align: middle;
  position: relative;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  border-radius: 50px;
  text-align: center;
}
.btncontact .button{
  font-size: 20px;
    padding: 11px 40px;
}
#homepage .button,
.fancy .button,
.btncontact .button,
.menu-getin .button {
  color: #fff;
  border: 1px solid #408721;
}
.btncontact .button{
  border: none;
}
#homepage .button{
  border: 1px solid #408721;
  font-size: 20px;
}
.fancy .button {
  margin: 0px;
  font-size: 20px;
  padding: 12px 54px;
}
.product-tab.fancy .button {
  margin: 0px;
  font-size: 20px;
  padding: 11px 34px;
}
.product-tab .slick-slide:before{
  display: none;
}
#homepage .button:hover,
.fancy .button:hover,
.menu-getin .button:hover,
.modal-form-btn .button:hover{
  border: 1px solid #fff;
}
.btncontact .button:hover {
  border: 1px solid #143156;
}
.button--tamaya,
.intracity-bus,
.intracity-coach,
.more,
.btncontact .button {
	overflow: hidden;
	color: #7986cb;
	min-width: 180px;
}
.button--tamaya.button--inverted,
.intracity-bus.button--inverted,
.intracity-coach.button--inverted,
.more.button--inverted,
.btncontact .button {
	color: #37474f;
	border-color: #37474f;
}
.btncontact .button {
  border-color: transparent;
  color: #fff;
}
.btncontact .button:hover {
  border: none;
  color: #fff;
}
.button--tamaya::before,
.button--tamaya::after {
	content: attr(data-text);
	position: absolute;
	width: 100%;
	height: 50%;
	left: 0;
	background: linear-gradient(to right, #408721, #9afb6f, #448328, #33cc33, #41b30f, #48b417);
  background-size: 258% 100%;
	color: #123157;
	overflow: hidden;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
	transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.dowload-popup .button--tamaya::before,
.dowload-popup .button--tamaya::after {
  position: absolute;
	width: 100%;
	height: 50%;
	left: 0;
	background: linear-gradient(to right, #143156, #214e87, #143156, #143156, #143156, #143156);
  background-size: 258% 100%;
	color: #fff;
	overflow: hidden;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
	transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.menu-getin .button--tamaya::before,
.menu-getin .button--tamaya::after {
	content: 'GET IN TOUCH';
	position: absolute;
	width: 100%;
	height: 50%;
	left: 0;
	background: linear-gradient(to right, #143156, #214e87, #143156, #143156, #143156, #143156);
  background-size: 258% 100%;
	color: #fff;
	overflow: hidden;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
	transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.intracity-bus::before,
.intracity-bus::after,
.intracity-coach::before,
.intracity-coach::after {
	content: '';
	position: absolute;
	width: 100%;
  height: 50%;
	left: 0;
	background: linear-gradient(to right, #fff, #fff, #fff, #33cc33, #41b30f, #48b417);
  background-size: 258% 100%;
	color: #123157;
	overflow: hidden;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
	transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.active.intracity-bus::before,
.active.intracity-bus::after,
.active.intracity-coach::before,
.active.intracity-coach::after{
	content: '';
	background: linear-gradient(to right, #408721, #9afb6f, #448328, #33cc33, #41b30f, #48b417);
  background-size: 258% 100%;
	color: #123157;
}
.more:before,
.more:after,
.less:before,
.less:after {
    font-weight: 500;
    color: #6fbf4b;
    text-decoration: none;
    text-transform: uppercase;
    background: linear-gradient(to right, #143156, #214e87, #143156, #143156, #143156, #143156);
    background-size: 258% 100%;
    transition: all 0.4s ease;
    font-family: "Antonio", sans-serif;
    cursor: pointer;
}

.more::before,
.more:after{
  content: 'Load More';
}

.less::before,
.less:after{
  content: 'Load Less';
}

.intracity-bus::before,
.intracity-bus:after,
.active.intracity-bus::before,
.active.intracity-bus::after{
  content: attr(data-text);
}
.intracity-coach::before,
.intracity-coach:after,
.active.intracity-coach::before,
.active.intracity-coach::after{
  content: attr(data-text);
}

.section-bus .intracity-bus::before,
.section-bus .intracity-bus:after,
.section-bus .active.intracity-bus::before,
.section-bus .active.intracity-bus::after{
  content: attr(data-text);
}
.section-coach .intracity-coach::before,
.section-coach .intracity-coach:after,
.section-coach .active.intracity-coach::before,
.section-coach .active.intracity-coach::after{
  content: attr(data-text);
}

.button--tamaya.button--inverted::before,
.button--tamaya.button--inverted::after {
	background: #fff;
	color: #37474f;
}
.button--tamaya::before,
.intracity-bus::before,
.intracity-coach:before,
.more:before,
.btncontact .button:before {
	top: 0;
	padding-top: 11px;
}
.button--tamaya::after,
.intracity-bus::after,
.intracity-coach:after,
.more:after,
.btncontact .button:after {
	bottom: 0;
	line-height: 0;
}
.button--tamaya > span,
.intracity-bus > span,
.intracity-coach > span,
.more > span,
.btncontact .button > sapn {
	display: block;
	-webkit-transform: scale3d(0.2, 0.2, 1);
	transform: scale3d(0.2, 0.2, 1);
	opacity: 0;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
	-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
	transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.button--tamaya:hover::before,
.intracity-bus:hover::before,
.intracity-coach:hover::before,
.more:hover::before,
.btncontact .button:hover::before {
	-webkit-transform: translate3d(0, -100%, 0);
	transform: translate3d(0, -100%, 0);
}
.button--tamaya:hover::after,
.intracity-bus:hover::after,
.intracity-coach:hover:after,
.more:hover:after,
.btncontact .button:hover:after {
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
}
.button--tamaya:hover > span,
.intracity-bus:hover > span,
.intracity-coach:hover > span,
.more:hover:hover > span,
.btncontact .button:hover > span {
	opacity: 1;
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
}
.load-more {
  display: flex;
  align-items: center;
  justify-content: center;
}
.more,
.less{
  cursor: pointer;
}

.btncontact .button:hover::before,
.btncontact .button:hover:after{
  -webkit-transform: none;
    transform: none;
}
.btncontact .button:hover > span{
  opacity: 1;
}






#homepage .gradient-btn {
  display: inline-block;
  padding: 17px 75px;
	margin: 10px 0;	
	font-size: 25px;
	font-weight:500;
  color: #123157;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 30px;
  background: linear-gradient(to right, #408721, #9afb6f, #448328, #33cc33, #41b30f, #48b417);
  background-size: 258% 100%;
  transition: all 0.4s ease;
  font-family: "Antonio", sans-serif;
  border-radius: 50px;
  -webkit-box-shadow: 2px 4px 15px -3px rgba(0,0,0,0.75);
-moz-box-shadow: 2px 4px 15px -3px rgba(0,0,0,0.75);
box-shadow: 2px 4px 15px -3px rgba(0,0,0,0.75);
}

#homepage .gradient-btn:hover {
  animation: gradientAnimate 3s ease infinite;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}

@keyframes gradientAnimate {
  0% {
      background-position: 0% 50%;
  }
  50% {
      background-position: 100% 50%;
  }
  100% {
      background-position: 0% 50%;
  }
}



#homepage .icon-boxes {
  margin-top: 100px;
}

#homepage .icon-box {
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(18, 66, 101, 0.08);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

#homepage .icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#homepage .icon-box .title a {
  color: #124265;
  transition: 0.3s;
}

#homepage .icon-box .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

#homepage .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 36px;
  line-height: 1;
  color: #2487ce;
}

#homepage .icon-box:hover {
  transform: scale(1.08);
}

#homepage .icon-box:hover .title a {
  color: #2487ce;
}

@media (min-width: 1024px) {
  #homepage {
  }
}

@media (max-height: 800px) {
  #homepage {
    height: 100vh;
  }
}

@media (max-width: 992px) {
  #header{
    margin-top: 0px;
    padding: 15px 0px 15px 0px;
  }
  .navbar-mobile .mobile-nav-toggle{
    top: 47px;
    right: 35px;
  }

  #homepage .container {
    padding-bottom: 0px;
    /*opacity: 1 !important;
    transform: translate(0) scale(1) !important;*/
}
.banner-cont {
  position: absolute;
  bottom: 70px;
  left: 0px;
  right: 0px;
}
  #homepage h1 {
    font-size: 28px;
    line-height: 36px;
    text-align: center;
  }
  #homepage .button{
    float: none;
    padding: 11px 17px;
    font-size: 20px;
    margin: 0px auto;
    display: table;
  }
  #homepage p{
    font-size: 18px;
    line-height: 28px;
    text-align: center;
  }

  #homepage h2 {
font-size: 30px;
line-height: 40px;
color: #6fbf4b;
  }
  #homepage h2 sub {
    bottom: -0.15em;
}
  #homepage h2 span {
    color: #fff;
}
  .navbar-mobile ul{
    right: 0;
    bottom: 0;
    left: 0;
    top: 130px;
    background-color: transparent;
    position: fixed;
  }
  .navbar-mobile{
    background: none;
  }
  .navbar li {
    text-align: center;
    padding-bottom: 14px;
    border-bottom: none;
    padding-top: 16px;
  }
  .navbar a{
    display: inline;
    padding: 10px 3px;
    color: #fff;
    font-size: 21px;
  }
  .bi-list::before {
    position: absolute;
    top: -18px;
    right: -19px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
.mobile-img,
.ipad-img{
  display: none;
}
.slick-slide .mobile-img,
.slick-slide .ipad-img{
  display: none;
}
section {
  padding: 70px 0;
  overflow: hidden;
}
section#leadership {
  padding-bottom: 60px;
}

.section-bg {
  background-color: #f8fbfe;
}

.section-title {
  padding-bottom: 25px;
}
.title-top{
  position: relative;
  padding-bottom: 13px;
}
.title-top:before{
  content: '';
  position: absolute;
  background-image: url(../img/heading-top-shape-1.webp);
  background-repeat: no-repeat;
  width: 98px;
  height: 47px;
  transform: scale(0.8);
  left: -7px;
}
.organisational .title-top:before,
.our-products .title-top:before,
.faq .title-top:before{
  background-image: url(../img/heading-top-shape-2.webp);
  width: 98px;
  height: 47px;
  margin: 0px auto;
  left: 0;
  right: 0;
  transform: scale(0.8);
}
.our-edge .title-top:before{
  background-image: url(../img/heading-top-shape-3.webp);
  width: 98px;
  height: 47px;
  margin: 0px auto;
  left: 0;
  right: 0;
  transform: scale(0.8);
}
.our-legacy .title-top:before,
.testimonials .title-top:before,
.our-products .title-top:before,
.gallery .title-top:before,
.contact .title-top:before{
  margin: 0px auto;
  left: 0;
  right: 0;
}

.section-title h2 {
  font-family: "Antonio", sans-serif;
  font-size: 30px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0px;
  padding-bottom: 0;
  color: #143156;
  line-height: 40px;
}
.organisational .section-title h2,
.our-products .section-title h2,
.faq .section-title h2 {
  color: #fff;
}
.section-title h2 span{
  font-weight: 200;
}
.section-title h2 sup {
  top: -.3em;
}
.section-title h2 sub,
#homepage h1 sub {
  bottom: -0.13em;
}

.section-title .title-top p {
  margin-bottom: 0;
  font-size: 18px;
  color: #6fbf4b;
  padding-top: 48px;
  text-transform: uppercase;
  font-family: "Antonio", sans-serif;
}
.section-title .title-top p span {
  text-transform: lowercase;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}
.about{
  position: relative;
  padding-top: 0;
  padding-bottom: 0px;
}
.about-left{
  display: block;
}
.about-left-mobile{
  display: none;
}
.about .content{
  padding: 70px 0px 70px 0px;
}
.about .content img{
  -webkit-box-shadow: 2px 4px 15px -3px rgba(0,0,0,0.75);
-moz-box-shadow: 2px 4px 15px -3px rgba(0,0,0,0.75);
box-shadow: 2px 4px 15px -3px rgba(0,0,0,0.75);
width: 90%;  
}
.about:before{
  content: '';
  position: absolute;
  background-color: #6fbf4b;
  /*background-image: url(../img/about-green-bg.jpg);*/
  width: 23%;
  height: 100%;
  left: 0;
}
.about .container:after{
  content: '';
  position: absolute;
  background-image: url(../img/about-left-shape.webp);
  width: 70px;
  height: 219px;
  left: -85px;
  top: 65px;
  transform: scale(0.7);
}
.about p {
  text-align: justify;
}
.about p:last-child {
  margin-bottom: 0;
}
.about p span {
  font-weight: bold;
}
.about-right {
  padding-left: 0px;
}
.owl-carousel,
.owl-carousel-desktop {
	max-width: 1320px;
	margin: 0 auto;
	padding: 30px 0 0px 0px;
}
.owl-carousel .item,
.owl-carousel-desktop .item {
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel-desktop .owl-nav button.owl-prev,
.owl-carousel-desktop .owl-nav button.owl-next {
	z-index: 1;
    width: 50px;
    height: 50px;
    background-color: #6fbf4b;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.owl-nav button span,
.owl-nav button span {
	font-size: 46px;
    height: 100%;
    display: flex;
    width: 100%;
    color: #143156;
    align-items: center;
    justify-content: center;
    top: -5px;
    position: relative;
}
.owl-carousel .owl-nav button.owl-prev.disabled,
.owl-carousel .owl-nav button.owl-next.disabled,
.owl-carousel-desktop .owl-nav button.owl-prev.disabled,
.owl-carousel-desktop .owl-nav button.owl-next.disabled {
  background-color: #fff;
  opacity: 1;
}
.owl-carousel .owl-nav button.owl-prev.disabled span,
.owl-carousel .owl-nav button.owl-next.disabled span,
.owl-carousel-desktop .owl-nav button.owl-prev.disabled span,
.owl-carousel-desktop .owl-nav button.owl-next.disabled span {
  color: #8998aa;
}
.owl-theme .owl-nav [class*='owl-']:hover,
.owl-theme-desktop .owl-nav [class*='owl-']:hover {
  background: #6fbf4b;
  color: #143156;
  text-decoration: none;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel-desktop .owl-nav button.owl-prev {
	left: 0;
}
.owl-carousel .owl-nav button.owl-next,
.owl-carousel-desktop .owl-nav button.owl-next {
	right: 0;
}
.owl-carousel .owl-nav,
.owl-carousel-desktop .owl-nav {
	position: absolute;
    width: 100%;
    bottom: 0;
}
.btn-wrap {
	text-align: center;
	width: 100%;
}
button {
	background-color: #ddd;
	border: none;
	padding: 10px 20px;
	border-radius: 5px;
	margin: 10px;
	font-size: 18px;
	font-weight: 600;
	transition: all 0.5s;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.owl-theme .owl-nav .disabled,
button.disabled {
	opacity: 0.6;
}




/*--------------------------------------------------------------
# Organisational
--------------------------------------------------------------*/
.organisational{
  background-image: url(../img/vision-mission-bg.webp);
  background-repeat: no-repeat;
  padding-top: 70px;
  padding-bottom: 70px;
  background-size: cover;
}

.org-purpose .slick-list {
	max-width: 700px;
	margin: 0 auto;
	padding: 30px 0;
}
.org-purpose .slick-list .slick-slide {
	font-size: 30px;
	text-align: center;
	padding: 0px;
  margin: 0px;
	line-height: 2;
}

.org-purpose .slick-arrow {
  z-index: 1;
  width: 50px;
  height: 50px;
  background-color: #6fbf4b;
  border-radius: 50%;
  position: absolute;
  top: 89%;
  transform: translatey(-50%);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.org-purpose .slick-prev:before{
  position: relative;
  left: 37px;
}
 
.org-purpose .slick-next:before{
  position: relative;
  left: 22px;
}

.org-purpose .slick-arrow:before {
	font-size: 30px;
  color: #132f53;
}
.org-purpose .slick-slide:before{
  display: none;
}
.org-purpose .slick-next {
	right: 0;
}
.org-purpose .slick-prev {
	left: 0;
}

.org-purpose .btn-wrap {
	text-align: center;
	width: 100%;
}
.org-purpose button {
	background-color: #ddd;
	border: none;
	padding: 10px 20px;
	border-radius: 5px;
	margin: 10px;
	font-size: 18px;
	font-weight: 600;
	transition: all 0.5s;
}
.org-purpose button.slick-disabled {
	opacity: 0.6;
}
.org-purpose .slick-next:hover, .org-purpose .slick-next:focus{
  background: #6fbf4b;
}



.org-image img {
  width: 100%;
}
.our-type {
  border: 1px solid #6fbf4b;
  margin-top: 70px;
}
.vission-inner {
  padding: 75px 40px 45px 48px;
}
.vission-inner.first-box {
  border-bottom: 1px solid #6fbf4b;
}
.vission-left{
  border-right: 1px solid #6fbf4b;
  padding-right: 0px;
}
.vission-inner h2{
  font-size: 35px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 30px;
  color: #fff;
}
.vission-inner h2 span{
  color: #6fbf4b;
}
.vission-inner p{
  color: #fff;
}
.vission-inner p span{
  color: #6fbf4b;
  font-weight: bold;
}
.vission-inne-right p{
  margin-bottom: 35px;
}
.vission-inne-right p::first-letter{
  font-weight: bold;
}
.vission-inne-right p:last-child {
  margin-bottom: 0;
}
.vission-inner p span.text-bold {
  color: #fff;
}


/*--------------------------------------------------------------
# Our Legacy
--------------------------------------------------------------*/
.our-legacy{
  position: relative;
}
.our-legacy:after{
  content: '';
  position: absolute;
  background-image: url(../img/our-legacy-bg.webp);
  background-repeat: repeat-x;
  background-position: bottom;
  width: 100%;
  height: 310px;
  bottom: 0px;
  z-index: -1;
  display: none;
}

.box-container {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 35px 15px;
  width: 100%;
}
.our-legacy .owl-item {
  padding-left: 10px;
  padding-right: 10px;
}
.our-legacy .owl-carousel .owl-nav button.owl-next {
  background-color: #143156;
}
.our-legacy .owl-carousel .owl-nav button.owl-prev {
  background-color: #143156;
}
.our-legacy .owl-carousel .owl-nav button.owl-next.disabled,
.our-legacy .owl-carousel .owl-nav button.owl-prev.disabled {
  background-color: #143156;
}
.our-legacy .owl-nav button span, .owl-nav button span{
  color: #6fbf4b;

}

@media screen and (min-width:1380px) {
  .box-container {
    flex-direction: row
  }
}

.box-item {
  position: relative;
  -webkit-backface-visibility: hidden;
  margin-bottom: 0px;
  max-width: 100%;
}
.box-item h3.box-text-bottom {
  display: none;
}

.flip-box {
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}

.flip-box-front,
.flip-box-back {
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  min-height: 540px;
  -ms-transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
  transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
  -webkit-transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-box-front {
  -ms-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  border-radius: 0px;
}


.flip-box-front p {
  position: absolute;
  bottom: 30px;
  text-align: center;
  width: 100%;
  color: #fff;
  text-transform: uppercase;
  font-size: 30px;
  font-family: "Antonio", sans-serif;
}
.flip-box .inner img {
  width: 75%;
  margin: 0px auto;
}

.flip-box-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  
  -ms-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  border-radius: 0px;
}


.flip-box .inner {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 30px;
  outline: 1px solid transparent;
  -webkit-perspective: inherit;
  perspective: inherit;
  z-index: 2;
  
  /*transform: translateY(-50%) translateZ(60px) scale(.94);
  -webkit-transform: translateY(-50%) translateZ(60px) scale(.94);
  -ms-transform: translateY(-50%) translateZ(60px) scale(.94);*/
  top: 50%;
    display: flex;
    flex-direction: column;
    transform: translateY(-50%) translateZ(60px) scale(.94);
    -webkit-transform: translateY(-50%) translateZ(60px) scale(.94);
    -ms-transform: translateY(-50%) translateZ(60px) scale(.94);
}
.flip-box-back:after {
  content: '';
  box-shadow: inset 0 0 250px rgba(0, 0, 0, 0.60);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #143156;
  opacity: 0.6;
}

.flip-box-back .inner.color-white {
  top: 3%;
  transform: none;
  height: 100%;
}
.flip-box .inner a {
  display: block;
  margin: 0px auto;
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  min-width: 180px;
  width: 180px;
}

.flip-box-header {
  font-size: 18px;
  margin-bottom: 30px;
  color: #fff;
}

.flip-box p {
  font-size: 20px;
  line-height: 1.5em;
}
.flip-box .flip-box-back p {
  color: #fff;
  font-size: 15px;
  line-height: 25px;
  text-align: justify;
  font-weight: normal;
}

.flip-box-img {
  margin-top: 25px;
}

.flip-box-button {
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 2px;
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  margin-top: 25px;
  padding: 15px 20px;
  text-transform: uppercase;
}





/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

.testi-heading-para {
  margin-bottom: 50px;
}
.testi-heading-para p {
  text-align: center;
}
.testi-heading-para p sup {
  top: -.3em;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials-slider {
  padding-left: 10px;
  padding-right: 10px;
}
.testimonials .testimonial-item {
  box-sizing: content-box;
  text-align: center;
  min-height: 430px;
  border-radius: 20px;
  padding: 40px 0px;
  -webkit-box-shadow: 2px 0px 15px -2px rgba(0, 0, 0, 0.20);
    -moz-box-shadow: 2px 0px 15px -2px rgba(0, 0, 0, 0.20);
    box-shadow: 2px 0px 15px -2px rgba(0, 0, 0, 0.20);
    margin-top: 10px;
    width: 100%;
    max-width: 500px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 250px;
  margin: 0 auto;
  margin-bottom: 25px;
}

.testimonials .testimonial-item h3 {
  font-size: 35px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #6fbf4b;
  line-height: 32.5px;
  font-family: "Montserrat", sans-serif;
}

.testimonials .testimonial-item h4 {
  font-size: 22px;
  font-family: "Montserrat", sans-serif;
  color: #143156;
  margin: 0;
  font-weight: normal;
}
.testimonial-item a {
  font-family: "Antonio", sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  background-color: #143156;
  color: #fff;
  padding: 11px 51px;
  border-radius: 50px;
  display: inline-block;
  margin-top: 40px;
}




.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #c9e3f5;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 15px 15px;
  padding: 20px;
  background: #f3f9fd;
  position: relative;
  margin-bottom: 35px;
  border-radius: 6px;
}

.testimonials .testimonial-item p::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 20px solid #f3f9fd;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px);
}

.testimonials .swiper-pagination {
  margin-top: 70px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 18px;
  height: 18px;
  background-color: #d5d5d5;
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #6fbf4b;
}

.popup {
  display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    overflow: hidden;
    transition: visibility 0.64s, opacity 0.64s ease-in-out;
}

.popup-inner {
  position: relative;
  bottom: -100vw;
  right: -100vh;
  display: flex;
  align-items: center;
  max-width: 600px;
  max-height: 388px;
  width: 1000%;
  height: 80%;
  background-color: #fff;
  transform: rotate(32deg);
  transition: bottom 0.64s, right 0.64s, transform 0.64s ease-in-out;
}

.popup__photo {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: 40%;
  height: 100%;
  overflow: hidden;
}

.popup__photo img {
  width: auto;
  height: 100%;
}

.popup__text {
  display: flex;
  flex-direction: column;
  /*justify-content: center;*/
  width: 100%;
  height: 100%;
  padding: 4rem;
}

.popup__text h3 {
  font-size: 20;
  font-weight: 600;
  margin-bottom: 2rem;
  text-transform: uppercase;
  color: #143156;
}

.popup__text p {
  font-size: 15px;
  color: #143156;
  line-height: 1.5;
  margin-bottom: 0px;
  text-align: justify;
}

.popup.show {
  visibility: visible;
  opacity: 1;
}

.popup.show .popup-inner {
  bottom: 0;
  right: 0;
  transform: rotate(0);
}

.popup__close {
  position: absolute;
  right: -1rem;
  top: -1rem;
  width: 3rem;
  height: 3rem;
  font-size: 18px;
  font-weight: 400;
  border-radius: 100%;
  background-color: #143156;
  z-index: 4;
  color: #fff;
  line-height: 3rem;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
}
.popup__close:hover{
  background-color: #6fbf4b;
  color: #143156;
}


/*--------------------------------------------------------------
# our-products
--------------------------------------------------------------*/
.our-products{
  background-image: url(../img/our-products-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
}

.nav .nav-item button.active {
  background-color: transparent;
}
.nav .nav-item button.active::after {
  content: "";
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -1px;
  border-radius: 5px 5px 0 0;
}
.product-tab #pills-tab {
  justify-content: space-around;
  width: 100%;
  max-width: 500px;
  margin: 0px auto;
}
.product-tab .owl-carousel .owl-stage{
  max-width: 500px;
  width: 100%;
}

.product-tab .nav .nav-item button {
  font-size: 26px;
    color: #123157;
    text-transform: uppercase;
    width: 313px;
    background-color: #fff;
    border-radius: 50px;
    height: 70px;
    font-family: "Antonio", sans-serif;
    -webkit-box-shadow: 2px 4px 15px -3px rgba(0,0,0,0.75);
-moz-box-shadow: 2px 4px 15px -3px rgba(0,0,0,0.75);
box-shadow: 2px 4px 15px -3px rgba(0,0,0,0.75);
}
.nav .nav-item button.active {
  background: linear-gradient(to right, #408721, #9afb6f, #448328, #33cc33, #41b30f, #48b417);
  background-size: 258% 100%;
  transition: all 0.4s ease;
  color: #123157;
}

.our-products .slick-slider {
  margin-bottom: 0px;
  padding-bottom: 0px;
  width: 100%;
}

.tab-content {
  text-align: center;
  padding-top: 70px;
}
.tab-content h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
}
.tab-content p {
  color: #fff;
  padding-top: 20px;
}
.tab-content img {
  width: 100%;
  margin-top: 80px;
}
.accordion h3 {
  font-family: "Antonio", sans-serif;
  text-align: center;
  margin-bottom: 40px;
}
.accordion h3 span {
  color: #6fbf4b;
}
.faq.accordion {
  margin-top: -100px;
}
.faq.accordion .faq-list {
  padding: 0 0px;
  margin-top: 45px;
  display: flex;
    flex-direction: row;
}
.faq.accordion .faq-list ul{
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 0;
}
.faq.accordion .faq-list li {
  background-color: transparent;
  border: 1px solid #6fbf4b;
  text-align: left;
  padding: 0px;
  border-radius: 0px;
}
.faq.accordion .faq-list a {
  color: #fff;
  font-family: "Antonio", sans-serif;
  font-size: 21px;
  font-weight: 500;
  padding: 23px 20px 28px 20px;
  text-transform: uppercase;
}
.faq.accordion .faq-list a.collapsed {
  color: #fff;
}
.faq.accordion .faq-list a.collapsed:hover {
  color: #fff;
}
.accordion .faq-cont table,
.accordion-item table {
  width: 100%;
  color: #fff;
  line-height: 45px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
}
.accordion-body table {
  text-align: left;
}
.accordion .faq-cont table td:first-child,
.accordion-item table td:first-child {
  font-weight: 500;
}
.accordion .faq-cont table td:last-child,
.accordion-item table td:last-child {
  text-align-last: right;
}
.faq.accordion .faq-list i {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #6fbf4b;
  width: 51px;
  height: 51px;
  text-align: right;
  vertical-align: middle;
  border-radius: 50px;
  top: 12px;
  right: 17px;
  color: #143156;
}
.accordion .faq-cont {
  padding: 18px 20px 18px 20px;
  position: relative;
}
.accordion .faq-cont:before {
  content: '';
  position: absolute;
  border-top: 1px solid #6fbf4b;
  display: block;
  width: 100%;
  height: 1px;
  left: 0;
  right: 0;
  top: 0px;
}








/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/

.gallery .testi-heading-para {
  margin-bottom: 20px;
}

.cl img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  width: 100%;
}
.slide p.caption {
  position: absolute;
  bottom: 0;
  text-align: center;
  width: 100%;
  background-color: rgba(19, 47, 83, 0.7);
  margin-bottom: 0;
  padding: 20px;
  color: #fff;
}
.slide p.caption sup {
  top: -.2em;
}
.gallery .slick-slider {
  margin-bottom: 0;
}

.slick-center { 
  //transform: scale(1.08) 
}

.slick-slide{
  margin: 20px 20px;
}

.child { 
  width:100%; 
}

.slide:not(.slick-active) { 
  cursor: pointer; 
}

.pagination {
  text-align: center; 
  color: $white;
  font-family: $raleway;
  font-size: 1.2rem;
}

.slick-slide[aria-hidden="true"]:not(.slick-cloned) ~ .slick-cloned[aria-hidden="true"] { /* Fix when transitioning from last slide to the clone version of the first slide */ }

.container .slick-slide[aria-hidden="true"]:not(.slick-cloned) ~ .slick-cloned[aria-hidden="true"] { /* The default look of the slide */ }

.slick-slide .twentytwenty-container img {
    position: relative;
 }

 .slick-active .twentytwenty-container img {
    position: absolute;
}
    
.slide:not(.slick-active) {
    .twentytwenty-container {
      height: auto!important;
      .twentytwenty-after {
        display: none!important;
      }
    }
}

.slick-slide:not(.slick-center) .twentytwenty-handle {
    left: 100%;
}
.slick-slide{
  position: relative;
  margin: 0px 20px;
}
.slick-slide:before {
  content: '';
  background-color: rgba(19, 47, 83, 0.9);
  width: 100%;
  position: absolute;
  height: 100%;
}
.slick-slide.slick-current:before{
  display: none;

}
.slick-next {
  right: 90px;
}
.slick-prev {
  left: 80px;
  z-index: 1;
}
.slick-prev, .slick-next{
  background-color: #6fbf4b;
  width: 65px;
  height: 65px;
  border-radius: 50px;
  top: 45%;
}
.gallery .slick-prev, .gallery .slick-next{
  text-indent: -9999px;
}
.slick-slider button.slick-disabled {
  background-color: #e9e9e9;
}
.slick-prev:hover, 
.slick-prev:focus, 
.slick-next:hover, 
.slick-next:focus{
  background: #6fbf4b;
}
.slick-prev:before, .slick-next:before{
  font-family: "FontAwesome"; 
  font-weight: normal;
  font-size: 42px;
  color: #132f53;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;  
}
.slick-next:before{
  content: "\f105";
}
.gallery .slick-next:before{
  content: '';
  background-image: url(../img/arrow-right-gallery.png);
  background-repeat: no-repeat;
  width: 15px;
  height: 27px;
  margin: 0px auto;
  top: 1px;
    transform: scale(0.8);
}
.gallery .slick-prev:before{
  content: '';
  background-image: url(../img/arrow-left-gallery.png);
  background-repeat: no-repeat;
  width: 15px;
  height: 27px;
  margin: 0px auto;
  top: 1px;
  transform: scale(0.8);
}
.slick-prev:before {
  content: "\f104";
}
.slick-dots{
  bottom: 50px;
}
section.gallery {
  padding-bottom: 120px;
}
.gallery .slick-dots {
  bottom: -50px;
  margin-bottom: 0px;
}
.gallery .slick-dots li button:before {
  font-size: 15px;
  color: #143156;
  opacity: 1;
}
.gallery .slick-dots li button{
  margin: 0px;
}
.slick-dots li button:before{
  font-size: 12px;
  color: #fff;
  opacity: 1;
}
.slick-dots li.slick-active button:before{
  opacity: 1;
  color: #6fbf4b;
}

/*--------------------------------------------------------------
# Our Edge
--------------------------------------------------------------*/
.our-edge{
  background-image: url(../img/why-choose-mc2-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
.our-edge .section-title .title-top p {
  color: #fff;
}
.our-edge-card {
  background-color: #fff;
  padding: 30px 30px;
  border-radius: 0px;
  margin-bottom: 50px;
  transition: all 0.5s ease-in-out;
  -webkit-box-shadow: 2px 4px 15px -3px rgba(0,0,0,0.75);
-moz-box-shadow: 2px 4px 15px -3px rgba(0,0,0,0.75);
box-shadow: 2px 4px 15px -3px rgba(0,0,0,0.75);
}
.our-edge-card:hover {
  background-color: #143156;
}
.our-edge-card span{
  position: relative;
}
.our-edge-card span:before,
.contact-more span:before{
  content: '';
  background-image: url(../img/sprite-icon.png);
  background-repeat: no-repeat;
  position: absolute;
  display: block;
}
.our-edge-card span:before{
  transform: scale(0.8);
}
.local-supply:before{
  background-position: -43px -45px;
  width: 103px;
  height: 104px;
}
.our-edge-card:hover .local-supply:before{
  background-position: -43px -180px;
}
.monocoque-chassis:before{
  background-position: -202px -45px;
  width: 89px;
  height: 104px;
}
.our-edge-card:hover .monocoque-chassis:before{
  background-position: -202px -179px;
}
.ability-to-provide:before{
  background-position: -352px -44px;
  width: 105px;
  height: 104px;
}
.our-edge-card:hover .ability-to-provide:before{
  background-position: -352px -179px;
}
.first-category-elect:before{
  background-position: -516px -45px;
  width: 105px;
  height: 104px;
}
.our-edge-card:hover .first-category-elect:before{
  background-position: -516px -179px;
}
.first-category:before{
  background-position: -673px -45px;
  width: 105px;
  height: 88px;
}
.our-edge-card:hover .first-category:before{
  background-position: -673px -179px;
}
.best-class:before{
  background-position: -823px -44px;
  width: 105px;
  height: 88px;
}
.our-edge-card:hover .best-class:before{
  background-position: -823px -179px;
}
.only-sustainable:before{
  background-position: -965px -46px;
  width: 106px;
  height: 104px;
}
.our-edge-card:hover .only-sustainable:before{
  background-position: -965px -178px;
}
.our-edge-card h3{
  font-size: 25px;
  line-height: 43px;
  color: #143156;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  margin-top: 120px;
}
.our-edge-card:hover h3 {
  color: #6fbf4b;
}
.our-edge-card p{
  font-size: 15px;
  line-height: 32.5px;
  color: #143156;
  text-align: justify;
  margin-bottom: 0px;
}
.our-edge-card:hover p {
  color: #fff;
}
.comic-content .box:nth-child(n+4) {
  display: none;
}




/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}
.contact{
  position: relative;
}
.contact::after{
  content: '';
  position: absolute;
  background-image: url(../img/contact-bg.webp);
  background-repeat: no-repeat;
  width: 790px;
  height: 717px;
  right: 0;
  background-position: top;
  bottom: -30px;
  z-index: -1;
}
.input-box, .check-box {
  position: relative;
}
.check-box label,
.check-box label a {
  color: #143156;
}
.check-box label a{
  position: relative;
}
.field-label {
  position: absolute;
  transition: all 0.3s ease;
}
form input, form textarea, form select, form input:focus, form textarea:focus, form select:focus, form select:focus-visible, .select2-container--default .select2-selection--single .select2-selection__rendered, .select2-container--default .select2-selection--single, .field-label, [name="preferred"]::placeholder, .select2-container--default .select2-selection--single .select2-selection__placeholder, .field-label-check, .allFiledsRequired, .check-box .field-label, .field-label-check {
  font-size: 15px;
}

form input, form textarea, form input:focus, form textarea:focus {
  background: transparent;
  border: 1px solid #153257;
  display: block;
  width: 100%;
  position: relative;
  outline: none;
  color: #143156;
  resize: none;
  font-size: 15px;
  min-height: 35px;
  padding: 24px 15px;
  font-family: "Montserrat", sans-serif;
}
label.error {
  color: #6fbf4b;
    font-size: 14px;
    line-height: normal;
    position: absolute;
    bottom: -22px;
    width: 100%;
    clear: both;
    left: 0;
}
.modal-body label.error {
  color: #fff;
}
.contact #successmsg{
  color: #6fbf4b;
  max-width: 100%;
}

/* Select2 Container */
.select2.select2-container { width: 100% !important; }
.select2-container .select2-selection--single { height: 58px; }
.select2-container--default .select2-selection--single { background-color: #ffffff; border: 1px solid #153257; border-radius: 0; background: transparent; min-height: 76px;}
.select2-container .select2-selection__clear { display: none; }
.select2-container .select2-selection--single .select2-selection__rendered { padding-left: 20px; padding-right: 50px; font-weight: 400; font-size: 15px; }
.select2-container--default .select2-selection--single .select2-selection__rendered { color: 143156; min-height: 35px; padding: 24px 15px; /*line-height: 58px;*/}
.select2-container--default .select2-selection--single .select2-selection__arrow { height: 56px; top: 0; right: 8px; width: 22px; }
.select2-container--default .select2-selection--single .select2-selection__arrow b { transition: all 0.4s ease-in-out; background: url("../img/dropdown-form-arrow.webp") no-repeat center; background-size: 25px auto; border: 0 none; height: 17px; width: 32px; left: -20px; margin-left: 0; }
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b { border-color: transparent; border-width: 0; transform: rotate(180deg); }
.select2-container.select2-container--open { z-index: 1058; }
.select2-dropdown, .select2-container--default .select2-search--dropdown .select2-search__field { border-color: #bdbaba; }
.select2-results__option { padding: 12px 20px; font-size: 15px; color: #ffffff; background-color: #143156; }
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable { color: #143054; background-color: #6fbf4b; }
.select2-search--dropdown.select2-search--hide { display: none; }
.select2-container--default .select2-results__option--selected { background-color: #ffffff; color: var(--bs-secondary); }
.select2-container--open .select2-dropdown--below { border-radius: 0; border: 0 none; }
.select2-container--default .select2-selection--single .select2-selection__placeholder{color: #143156;}


.input-box, .check-box {
  margin-bottom: 40px;
  padding-bottom: 0px;
}
form input[type="checkbox"] {
  position: relative;
  margin: 0;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  border: 0 none;
}
form input[type="checkbox"] {
  width: auto;
  display: inline-block;
  padding: 0px;
  position: absolute;
}
form input[type="checkbox"]::before {
  content: "";
  background-color: transparent;
  border: 1px solid #143054;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 12px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
  left: 0px;
  top: 3px;
}
form input[type="checkbox"]:checked::after {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 10px;
  width: 8px;
  height: 15px;
  border: solid #6fbf4b;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.check-box p {
  padding-left: 37px;
  padding-top: 3px;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  outline: 0;
  box-shadow: none;
  background: #5c6664;
  background-image: none;
  flex: 1;
  padding: 0 .5em;
  color: #fff;
  cursor: pointer;
  font-size: 1em;
  font-family: 'Open Sans', sans-serif;
}


::-ms-input-placeholder { /* Edge 12-18 */
  color: #143156;
}

::placeholder {
  color: #143156;
}
.flexCenter {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.btnClass {
  filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.2));
    background-color: #6fbf4b;
    border-radius: 30px;
    font-size: 19px;
    text-transform: uppercase;
    color: #143156;
    padding: 14px 50px;
    transition: all 0.6s;
    border: none;
    font-family: "Antonio", sans-serif;
}
.allFiledsRequired {
  color: #143156;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  margin-top: 0px;
}
.select option {
  background-color: #153257;
  padding: 10px 20px;
  display: block;
}
.select option:hover{
  background-color: #6fbf4b;
  color: #153257;
}
.contact .btncontact .button {
  float: left;
  padding: 11px 40px;
  margin: 10px 0;
  font-size: 20px;
  font-weight: 500;
  color: #143156;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  background-color: #6fbf4b;
  background-size: 258% 100%;
  font-family: "Antonio", sans-serif;
  vertical-align: middle;
  position: relative;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  border-radius: 50px;
  text-align: center;
}



.select {
  cursor: pointer;
  display: inline-block;
  position: relative;
  font-size: 15px;
  color: #fff;
  width: 100%;
  height: 40px;
}
/*form select {
  display: none;
}*/

.custom-select {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  color: #143156;
  padding: 8px 15px;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  border: 1px solid #153257;
    min-height: 75px;
    padding: 24px 15px;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
}
/*.custom-select:hover {
  background-color: #b83729;
}
*/
.custom-select:active, .custom-select.active {
  background-color: #fff;
  color: #143156;
}

.custom-select:focus{
 outline: 2px;
}
.select-options {
  max-height: 240px;
  overflow-y: auto;
  display: none;
  position: absolute;
    top: 71px;
    right: 0;
    left: 0;
    z-index: 999;
    margin: 0;
    padding: 0;
    list-style: none;
    background-color: #143156;
    border-radius: 0px 0px 5px 5px;
}
.select-options li {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  margin: 0;
  padding: 12px 0;
 /* text-indent: 15px;
 */
 /* border-top: 1px solid #AED581;
 */
  -moz-transition: all 0.15s ease-in;
  -o-transition: all 0.15s ease-in;
  -webkit-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;
  padding-left: 15px;
}
.select-options li:first-child {
  display: none;
}
.select-options li:hover {
  color: #143054;
  background: #6fbf4b;
}
.select-options li[rel="hide"] {
  display: none;
}
::-webkit-scrollbar {
  width: 10px;
  background-color: #F5F5F5;
  border-radius: 0 0 5px 0;
}
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color:#9E9E9E;
}
.google-map iframe {
  filter: grayscale(1);
  height: 400px;
}
.google-map iframe:hover {
  filter: grayscale(0);
}



/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq{
  background-image: url(../img/faqs-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
.product-tab .faq {
  background-image: none;
}
.faq .testi-heading-para p{
  color: #fff;
}
.accordion button.accordion-button {
  background-color: transparent;
  color: #ffffff;
  font-family: "Antonio", sans-serif;
  font-size: 21px;
  box-shadow: none;
  padding: 1px 30px 1px 10px;
    text-transform: uppercase;
    font-weight: 500;
    
}

.accordion button.accordion-button sup {
  top: -.1em;
  padding-right: 7px;
}
.accordion-item {
  background-color: transparent;
  border: 1px solid #6fbf4b; 
  border-radius: 0px !important;
  margin-bottom: 15px; 
}
.accordion-item:not(:first-of-type) {
  border-top: 1px solid #6fbf4b;
}
.accordion-button::after {
  flex-shrink: 0;
  width: 51px;
  height: 51px;
  margin-left: auto;
  content: "";
  background-image: url(../img/plus.webp);
  background-repeat: no-repeat;
  background-size: auto;
  transition: transform .2s ease-in-out;
}
.accordion-button:not(.collapsed)::after{
  content: "";
  background-image: url(../img/minus.webp);
  background-repeat: no-repeat;
}
.accordion-button::after, .accordion-button:not(.collapsed)::after {
  transform: scale(0.8);
}
.accordion-body {
  border-top: 1px solid #6fbf4b;
  padding: 30px 30px 20px 30px;
}
.accordion-body p {
  color: #fff;
  text-align: justify;
}
.accordion-body p a {
  color: #6fbf4b;
}


.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #87c1ea;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #2487ce;
}

.faq .faq-list a.collapsed .icon-show {
  /*display: inline-block;*/
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

section.google-map {
  padding: 0px;
  margin-bottom: -7px;
}

.footer-contact {
  background-color: #6fbf4b;
}
.footer-contact .container,
#footer .container {
  max-width: 97%;
}
body.error-page #footer .container,
body.error-page .container{
  max-width: 1140px;
  padding-right: 10px;
  padding-left: 10px;
  width: 96%;
}
.contact-heading {
  position: relative;
}
.contact-heading:after {
  content: '';
  position: absolute;
  border-right: 1px solid #119833;
  right: 4px;
    height: 130px;
    top: -22px;
}
.contact-heading h2 {
  font-size: 30px;
    color: #143156;
    font-weight: 700;
    text-transform: uppercase;
}
.contact-heading h2 span {
  font-weight: 300;
}
.contact-more {
  display: flex;
  align-items: center;
  position: relative;
  height: 89px;
}
.contact-more.email {
  justify-content: flex-end;
}
.contact-more.phone {
  justify-content: center;
}
.contact-more span:before{
  width: 89px;
  height: 89px;  
  top: 0;
  transform: scale(0.7);
}
.contact-address:before{
  background-position: -43px -453px;
}
.contact-phone:before{
  background-position: -165px -453px;
}
.contact-email:before{
  background-position: -291px -453px;
}
.contact-more p {
  font-weight: 500;
  padding-left: 88px;
  font-size: 15px;
  line-height: 24px;
  padding-top: 13px;
}
.contact-more p a{
  color: #143156;
  text-decoration: none;
  position: relative;
  display: inline-block;
}
.contact-more p a[href]:after {
  border-bottom: 1px solid #143156;
  -webkit-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 0;
}
.contact-more p a[href]:hover:after{
  width: 100%;
}
.contact-more p span {
  font-weight: 700;
}
.contact-more p span::before{
  display: none;
}

.footer-ma-tooltip {
  text-align: right;
}

.footer-ma-tooltip a {
  display: inline-block;
}
.footer-ma-tooltip img {
  width: 50px;
}
.footer-wrap{
  position: relative;
  overflow: hidden;
}

.footer-hover-content > a {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}
.footer-hover-content a {
  color: #ffffff !important;
  padding-bottom: 0;
}
.footer-hover-content:hover > .walking-ants-container .walking-ant:nth-child(1),
.logo-to-hover:hover
  + .footer-hover-content
  > .walking-ants-container
  .walking-ant:nth-child(1) {
  animation: walkingAntOne 60s infinite forwards linear;
}
.footer-hover-content:hover > .walking-ants-container .walking-ant:nth-child(2),
.logo-to-hover:hover
  + .footer-hover-content
  > .walking-ants-container
  .walking-ant:nth-child(2) {
  animation: walkingAntTwo 60s 20s infinite forwards linear;
}
.footer-hover-content:hover > .walking-ants-container .walking-ant:nth-child(3),
.logo-to-hover:hover
  + .footer-hover-content
  > .walking-ants-container
  .walking-ant:nth-child(3) {
  animation: walkingAntThree 60s 21.5s infinite forwards linear;
}
.footer-hover-content:hover > .walking-ants-container .walking-ant:nth-child(4),
.logo-to-hover:hover
  + .footer-hover-content
  > .walking-ants-container
  .walking-ant:nth-child(4) {
  animation: walkingAntFour 60s 40s infinite forwards linear;
}
.footer-hover-content:hover > .walking-ants-container .walking-ant:nth-child(5),
.logo-to-hover:hover
  + .footer-hover-content
  > .walking-ants-container
  .walking-ant:nth-child(5) {
  animation: walkingAntFive 60s 48s infinite forwards linear;
}
.footer-hover-content > a {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.modal-form-btn {
  display: inline-block;
  position: relative;
  margin-top: 25px;
}
.accordion .modal-form-btn a,
.tab-pane .accordion .modal-form-btn a {
  font-family: "Antonio", sans-serif;
  font-size: 22px;
  line-height: 35px;
  text-transform: uppercase;
  background-color: #143156;
  color: #fff;
  padding: 11px 51px;
  border-radius: 50px;
  display: inline-block;
  margin-top: 40px;
}
.faq.accordion .modal-form-btn .button,
.tab-pane .accordion .modal-form-btn .button {
	float: left;
	min-width: 150px;
	max-width: 180px;
	display: block;
	margin: 0;
	padding: 10px 10px 10px 10px;
	/*border: none;*/
	background: none;
	color: inherit;
	vertical-align: middle;
	position: relative;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
  border-radius: 50px;
}
.accordion .modal-form-btn .button:focus {
	outline: none;
}
.accordion .modal-form-btn .button > span {
	vertical-align: middle;
}
.faq.accordion .modal-form-btn .button--border-thick,
.tab-pane .accordion .modal-form-btn .button--border-thick {
	/*border: 2px solid;*/
}
.faq.accordion .modal-form-btn .button--tamaya,
.tab-pane .accordion .modal-form-btn .button--tamaya {
  overflow: hidden;
  color: #fff;
  min-width: 280px;
  font-size: 18px;
}
.accordion .modal-form-btn .button--tamaya.button--inverted {
	color: #37474f;
	border-color: #37474f;
}
.accordion .modal-form-btn .button--tamaya::before,
.accordion .modal-form-btn .button--tamaya::after {
	content: attr(data-text);
	position: absolute;
	width: 100%;
	height: 50%;
	left: 0;
	background: linear-gradient(to right, #408721, #9afb6f, #448328, #33cc33, #41b30f, #48b417);
  background-size: 258% 100%;
	color: #143156;
	overflow: hidden;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
	transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.accordion .modal-form-btn .button--tamaya.button--inverted::before,
.accordion .modal-form-btn .button--tamaya.button--inverted::after {
	background: #fff;
	color: #37474f;
}
.accordion .modal-form-btn .button--tamaya::before {
	top: 0;
	padding-top: 10px;
}
.accordion .modal-form-btn .button--tamaya::after {
	bottom: 0;
	line-height: 0;
}
.accordion .modal-form-btn .button--tamaya > span {
	display: block;
	-webkit-transform: scale3d(0.2, 0.2, 1);
	transform: scale3d(0.2, 0.2, 1);
	opacity: 0;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
	-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
	transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.accordion .modal-form-btn .button--tamaya:hover::before {
	-webkit-transform: translate3d(0, -100%, 0);
	transform: translate3d(0, -100%, 0);
}
.accordion .modal-form-btn .button--tamaya:hover::after {
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
}
.accordion .modal-form-btn .button--tamaya:hover > span {
	opacity: 1;
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
}

@keyframes walkingAntOne {
  0% {
    right: -30px;
  }
  100% {
    right: 100%;
  }
}
@keyframes walkingAntTwo {
  0% {
    right: -30px;
  }
  100% {
    right: 100%;
  }
}
@keyframes walkingAntThree {
  0% {
    right: -30px;
  }
  100% {
    right: 100%;
  }
}
@keyframes walkingAntFour {
  0% {
    right: -30px;
  }
  100% {
    right: 100%;
  }
}
@keyframes walkingAntFive {
  0% {
    right: -30px;
  }
  100% {
    right: 100%;
  }
}

.logo-to-hover {
  position: relative;
  background: transparent;
  z-index: 1; /*display: flex;*/
  align-items: center;
  justify-content: flex-end;
  padding-right: 0rem;
}
.logo-to-hover:hover {
  background: transparent;
}
.logo-to-hover:hover + .footer-hover-content,
.footer-hover-content:hover {
  transform: translateX(0);
  background-color: #143156;
}

.logo-to-hover:hover
  + .footer-hover-content
  > .walking-ants-container
  .walking-ant:nth-child(1) {
  animation: walkingAntOne 60s infinite forwards linear;
}
.footer-hover-content:hover > .walking-ants-container .walking-ant:nth-child(2),
.logo-to-hover:hover
  + .footer-hover-content
  > .walking-ants-container
  .walking-ant:nth-child(2) {
  animation: walkingAntTwo 60s 20s infinite forwards linear;
}
.footer-hover-content:hover > .walking-ants-container .walking-ant:nth-child(3),
.logo-to-hover:hover
  + .footer-hover-content
  > .walking-ants-container
  .walking-ant:nth-child(3) {
  animation: walkingAntThree 60s 21.5s infinite forwards linear;
}
.footer-hover-content:hover > .walking-ants-container .walking-ant:nth-child(4),
.logo-to-hover:hover
  + .footer-hover-content
  > .walking-ants-container
  .walking-ant:nth-child(4) {
  animation: walkingAntFour 60s 40s infinite forwards linear;
}
.footer-hover-content:hover > .walking-ants-container .walking-ant:nth-child(5),
.logo-to-hover:hover
  + .footer-hover-content
  > .walking-ants-container
  .walking-ant:nth-child(5) {
  animation: walkingAntFive 60s 48s infinite forwards linear;
}

.walking-ant svg path {
  fill: #ffffff;
}

.footer-hover-content {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 2rem;
  cursor: default;
  text-align: center;
  background: #143156;
  transform: translateX(100%);
  transition: transform linear 1s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border-bottom: 1px solid #fff;
}

.footer-hover-content a {
  color: #ffffff !important;
  padding-bottom: 0;
}
.footer-hover-content > a {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}
.walking-ant {
  display: inline-block;
  width: 30px;
  height: 30px;
  transform: rotateY(180deg);
  right: -30px;
  position: absolute;
  bottom: -5px;
}


/*-------------------------------------------------------------
maodal popup
-------------------------------------------------------------*/
.modal-open {
  overflow: hidden;
}
.dowload-popup .modal-header {
  border-bottom: none;
  text-align: center;
}
.dowload-popup .modal-header h2 {
  color: #143156;
  text-align: center;
  font-size: 25px;
  width: 100%;
  padding-top: 15px;
  text-transform: uppercase;
}
.dowload-popup .modal-content {
  border-radius: 0;
  border: none;
  background-image: url(../img/popup-form-bg.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding-bottom: 20px;
  background-color: transparent;
  padding: 0px 20px;
  /*background: radial-gradient(circle, rgba(85,180,42,1) 0%, rgba(111,191,75,1) 100%);*/
  box-shadow: -20px 0px 92px 0px rgb(0 0 0 / 46%);
}
.dowload-popup form input {
  padding: 13px 15px;
  border: 1px solid #143156;
}
.dowload-popup form input::-ms-input-placeholder { /* Edge 12-18 */
  color: #143156;
}

.dowload-popup form input::placeholder {
  color: #143156;
}
.dowload-popup form input[type="checkbox"]{
  padding: 0px;
  border: none;
  position: absolute;
}
.dowload-popup form input[type="checkbox"]:checked::after{
  border: solid #143156;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.dowload-popup form input[type="checkbox"]::before{
  border: 1px solid #143156;
}
.dowload-popup .check-box label,
.dowload-popup .check-box label a{
  color: #143156;
}
.dowload-popup .check-box label a{
  position: relative;
}
.dowload-popup .allFiledsRequired{
  color: #143156;
}
.dowload-popup .modal-header {
  border-bottom: none;
  text-align: center;
  display: inline-block;
  padding-top: 40px;
}
.successmsg {
  color: #fff;
  text-align: center;
  width: 100%;
  max-width: 340px;
}
.modal-header .btn-close {
  border: 1px solid #143156;
  border-radius: 50px;
  font-size: 14px;
  padding: 10px;
  color: #fff;
  background-image: none;
  opacity: 1;
  right: 44px;
  position: absolute;
  top: 24px;
}
.dowload-popup .check-box label p {
  position: relative;
  padding-left: 37px;
  font-size: 15px;
  line-height: 22px;
}
.dowload-popup .modal-header p {
  width: 100%;
  text-align: center;
  margin-bottom: 0;
}
.modal-header .btn-close span {
  font-size: 35px;
  font-weight: normal;
  color: #fff;
  opacity: 1;
}
.dowload-popup .check-box {
  margin-bottom: 0;
  padding-bottom: 0px;
  margin-top: 0px;
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #444444;
  font-size: 14px;
  background: #f8fbfe;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}
.error-page #footer {
  position: fixed;
  width: 100%;
  bottom: 0;
  z-index: 3;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 26px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 300;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #777777;
}

#footer .footer-top h4 {
  font-size: 15px;
  font-weight: bold;
  color: #124265;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #2487ce;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #2487ce;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 15px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 5px;
  text-align: left;
  border: 1px solid #cde5f6;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: -1px;
  right: -2px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 15px;
  padding: 0 20px 2px 20px;
  background: #2487ce;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 5px 5px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #3194db;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #444444;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #2487ce;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 5px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #3194db;
  color: #fff;
  text-decoration: none;
}
.landscape-message {
  display: none;
}

@media screen and (max-width: 991px) and (orientation: landscape) {
  .landscape-message {
    display: block;
    width: 100%;
    height: 100vh;
    background: #143156;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 2;
  }

  body section,
  body header,
  body footer,
  body #loader-wrapper {
    display: none !important;
  }

  .landscape-message p {
    font-size: 20px;
    color: #fff;
    text-align: center;
    width: 80%;
  }
}

.copyright,
.copyright a {
  color: #143156;
  font-size: 15px;
  text-decoration: none;
  position: relative;
}
.copyright a[href]:after {
  border-bottom: 1px solid #6fbf4b;
  -webkit-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 0;
}
.copyright a[href]:hover:after{
  width: 100%;
}
.copyright a:hover,
.copyright a.active{
  color: #6fbf4b;
}
.copyright br{
  display: none;
}
.privacycont {
  padding: 62px 0 64px;
}
.privacycont h2 {
  text-align: center;
  font-weight: 600;
  font-size: 40px;
  margin-bottom: 35px;
  color: #143156;
}
.privacycont h3 {
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 15px;
  color: #143156;
}
.privacycont p {
  text-align: justify;
  line-height: 25px;
  margin-bottom: 25px;
}
.privacycont p span {
  font-weight: 600;
}
.privacycont p a{
  color: #143156;
  text-decoration: none;
  position: relative;
  display: inline-block;
}
.privacycont p a[href]:after, 
.privacycont ul li a[href]:after,
.dowload-popup .check-box label a[href]:after,
.check-box label a[href]:after {
  border-bottom: 1px solid #143156;
  -webkit-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
}
.privacycont p a[href]:hover:after,
.privacycont ul li a[href]:hover:after,
.dowload-popup .check-box label a[href]:hover:after,
.check-box label a[href]:hover:after{
  width: 0;
  border-bottom: 1px solid #6fbf4b;
}
.privacycont ul {
  padding-left: 0;
}
.privacycont li ul {
  padding-top: 15px;
}
.privacycont ul li {
  background-image: url(../img/green-dot.png);
  background-repeat: no-repeat;
  background-size: 6px auto;
  background-position: 0px 9px;
  list-style-type: none;
  padding-left: 20px;
  line-height: 1.5;
  color: #143156;
  font-size: 15px;
  text-align: justify;
  margin-bottom: 10px;
}
.privacycont ul li ul li{
  background-image: url(../img/green-circle.png);
  background-repeat: no-repeat;
}
.privacycont ul li ul li ul li{
  background-image: url(../img/green-arrow.png);
  background-repeat: no-repeat;
  padding-top: 4px;
}
.privacycont ul li a{
  display: inline-block;
}
.privacycont ul li a[href]{
  position: relative;
}
.section-up {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 55px;
} 
.privacycont ul li a,
.privacycont p a {
  color: #143156;
}
.privacycont ul li a:hover,
.privacycont p a:hover {
  color: #6fbf4b;
}
.desktop{
  display: block;
}
.owl-carousel.owl-loaded.mobile{
  display: none;
}
.mobile,
.swiper-button-next,
.swiper-button-prev{
  display: none;
}
.org-purpose{
  display: none;
}


.our-legacy .cardContainer {
  position: relative;
  width: 300px;
  height: 400px;
  min-width: 300px;
  min-height: 400px;
  margin: 4px;
  perspective: 1000px;
}

.our-legacy .card.active {
  transform: translateZ(0px) rotateY(180deg) !important;
}
.our-legacy .card.active:after {
  display: none;
}


.our-legacy .card {
  display: inline-block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  -moz-backface-visibility: hidden;
  transform-style: preserve-3d;
  transform: translateZ(-100px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.our-legacy .card:after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  box-shadow: 0 14px 50px -4px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1.4);
}

.our-legacy .card .side {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background-color: white;
}
.our-legacy .card .front {
  z-index: 2;
}
.our-legacy .card .back {
  transform: rotateY(180deg);
}
.our-legacy .card .info {
  padding: 16px;
}

.our-legacy .front .img {
  background-color: #dadce2;
  background-position: center;
  background-size: cover;
  border-radius: 5px 5px 0 0;
  width: 100%;
  height: 250px;
}
.prakash-roadlines .side.front {
  background-image: url('../img/mobile/prakassh-raodlines.webp');
}
.our-legacy .front .img1 {
  background-image: url(http://i.imgur.com/1aE1nMA.jpg);
}
.our-legacy .front .img2 {
  background-image: url(http://i.imgur.com/2p9VXAn.jpg);
}
.our-legacy .front .img3 {
  background-image: url(http://i.imgur.com/I5ABT2v.jpg);
}

.our-legacy .back {
  position: relative;
}
.our-legacy .back h2 {
  margin-top: 6px;
  margin-bottom: 18px;
}









@media (max-width: 320px) {
  .flip-box-back.kannapa .inner.color-white p {
    height: 100%;
    max-height: 300px;
    overflow-x: auto;
    overflow-y: scroll;
    padding-right: 10px;
}
}

body.back-fix {
  overflow: hidden;
}

@media screen and (-webkit-min-device-pixel-ratio:0) { 
  select:focus,
  textarea:focus,
  input:focus {
    font-size: 16px;
  }
}
@media screen and (-webkit-min-device-pixel-ratio:0) { 
  select,
  textarea,
  input {
    font-size: 16px;
  }
}

#header.hidden-menu {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
}
#header.testup123 {
  transform: translateY(-100%);
}

@media only screen and (min-device-width: 390px) and (max-device-width: 390px) 
  and (min-device-height: 844px) and (max-device-height: 844px) 
  and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) {
.navbar-mobile{
  position: relative;
  margin-right: 15px;
}
.navbar-toggler .hamburger-toggle{
  margin-right: 12px;
}

}




@media (min-width: 1024px) and (max-width: 2500px) {
.flip-box:hover .flip-box-front {
  -ms-transform: rotateY(-180deg);
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.flip-box:hover .flip-box-back {
  -ms-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

}




@media (max-width:767px) {

  .popup__text p{
    max-height: 300px;
    overflow-y: auto;
    overflow-x: auto;
    padding-right: 20px;
  }
  #hero-sub,
  #hero-sub-2,
  #homepage {
    background-image: none;
    overflow: hidden;
    min-height: calc(100vh - 54px) !important;
    max-height: calc(100vh - 54px) !important;
    display: flex;
    flex-direction: column;
    padding: 0px;

}
.hero-container {
  flex-direction: column;
  flex: 1;
  display: flex;
    justify-content: flex-end;
    overflow: hidden;
}
.hero-main {
  min-height: auto;
  max-height: none;
  height: auto;
  flex: 1;
}
.hero-main .hero-mobile-img {
  min-height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
}
#hero-sub .container {
  max-width: 100%;
}

.copyright a[href]:after{
  width: 100%;
}
.copyright a[href]:hover:after {
  width: 0;
}
a.footer-cmp:after{
  display: none;
}
.about .content img{
  width: 100%;
}
.accordion-body{
  padding: 15px 9px 15px 9px;
}
.section-up{
  margin-top: 25px;
}
.header .container {
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}
.contact-more.email p,
.copyright {
  line-height: 30px;
}
.about .col-lg-7.pt-lg-0,
.organisational .container,
.our-legacy .container,
.testimonials .container,
.our-products .container,
.our-edge .container,
.contact .container,
.faq .container {
  padding-left: 0;
  padding-right: 0;
}
.faq.accordion .faq-list ul{
  padding-left: 7px;
  padding-right: 7px;
}
.navbar li:last-child {
  padding-right: 25px;
}

#homepage .button:hover, 
.fancy .button:hover, 
.menu-getin .button:hover, 
.modal-form-btn .button:hover{
  border: none;
}
.button--tamaya:hover::before, 
.intracity-bus:hover::before, 
.intracity-coach:hover::before, 
.more:hover::before, 
.btncontact .button:hover::before,
.button--tamaya:hover::after, 
.intracity-bus:hover::after, 
.intracity-coach:hover:after, 
.more:hover:after, 
.btncontact .button:hover:after,
.testimonial-item .button--tamaya:hover::before,
.testimonial-item .button--tamaya:hover::after,
.accordion .modal-form-btn .button--tamaya:hover::before,
.accordion .modal-form-btn .button--tamaya:hover::after,
.button--tamaya:hover > span, 
.intracity-bus:hover > span, 
.intracity-coach:hover > span, 
.more:hover:hover > span, 
.btncontact .button:hover > span,
.accordion .modal-form-btn .button--tamaya:hover > span {
  -webkit-transform: none;
  transform: none;
}
.button--tamaya:hover > span, 
.intracity-bus:hover > span, 
.intracity-coach:hover > span, 
.more:hover:hover > span, 
.btncontact .button:hover > span,
.testimonial-item .button--tamaya:hover > span,
.accordion .modal-form-btn .button--tamaya:hover > span{
  opacity: 0;
}




.mobile-img{
  display: block;
}

.desktop-img,
.ipad-img{
  display: none;
}
.slide .desktop-img,
.slide .ipad-img{
  display: none;
}
.slide .mobile-img{
  display: block;
}

.org-purpose{
  display: none;
}

.prakash-roadlines{
  background-image: url(../img/mobile/prakassh-raodlines.webp) !important;
}
.sm-kannapa{
  background-image: url(../img/mobile/sm-kannapa-automobiles.webp) !important;
}
.stellar{
  background-image: url(../img/mobile/stellar-sp.webp) !important;
}
.contact::after{
  background-image: url(../img/mobile/contact-bg.webp);
  width: 400px;
  height: 500px;
}
.organisational{
  background-image: url(../img/mobile/vision-mission-bg.webp);
}
.our-edge{
  background-image: url(../img/mobile/why-choose-mc2-bg.webp);
}
.faq{
  background-image: url(../img/mobile/faqs-bg.webp);
}
.slide p.caption{
  padding: 5px 15px;
  line-height: 20px;
  font-size: 13px;
  bottom: -50px;
  background-color: rgba(19, 47, 83, 1);
}
.gallery .slick-list {
  overflow: visible;
}

  #homepage picture {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
}
.modal-form-btn{
  margin-top: 10px;
    margin-bottom: 25px;
}
.modal-form-btn.lastbtn {
  margin-bottom: 5px;
}
.faq.accordion .modal-form-btn .button--tamaya, 
.tab-pane .accordion .modal-form-btn .button--tamaya{
  min-width: 260px;
  font-size: 15px;
}
.modal-header .btn-close{
  right: 20px;
}
.box-item h3.box-text-bottom {
  display: block;
}

.organisational .owl-carousel.owl-drag .owl-item{
  height: 370px;
}
.organisational .owl-theme .owl-dots{
  display: none;
}
.organisational .owl-carousel .owl-nav {
  bottom: 25px;
}
.organisational .owl-carousel{
  padding-bottom: 0px;
}
h2.down-text {
  color: #fff;
  text-align: center;
  margin-top: 57px;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
}
.navbar-toggler{
  display: block;
  margin: 0;
  margin-right: 0px;
}
.addbg .mobile-logo {
  display: block;
}
#header.addbg .logo img {
  width: 70%;
}
.addbg .desktop-logo {
  display: none;
}
.owl-carousel .owl-nav{
  bottom: 40px;
}
.owl-theme .owl-dots {
  position: relative;
  top: 10px;
}

.owl-carousel.owl-loaded.mobile,
.swiper-button-next,
.swiper-button-prev {
  display: block;
}
.swiper-button-prev{
  left: 0px;
}
.swiper-button-next{
  right: 2px;
}
.swiper-button-next, .swiper-button-prev{
  box-shadow: 2px 0px 3px 1px rgba(0, 0, 0, 0.40) !important;
}
.testimonials-slider {
  padding-bottom: 6px;
  padding-left: 2px;
  padding-right: 2px;
}
section#leadership {
  padding-bottom: 46px;
}
.arrow-control{
  position: relative;
  bottom: 22px;
}
.swiper-button-next, .swiper-button-prev {
  width: 50px;
  height: 50px;
  background-color: #143156;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-box-shadow: 2px 0px 10px 1px rgba(0, 0, 0, 0.50);
  -moz-box-shadow: 2px 0px 10px 1px rgba(0, 0, 0, 0.50);
  box-shadow: 2px 0px 10px 1px rgba(0, 0, 0, 0.50);
}
.swiper-button-next.swiper-button-disabled, 
.swiper-button-prev.swiper-button-disabled {
  opacity: .55;
  cursor: auto;
  pointer-events: none;
  background-color: #fff;
  box-shadow: none !important;
}
.testimonials .swiper-button-prev.swiper-button-disabled,
.gallery .slick-slider button.slick-disabled {
  background-color: #143156;
  opacity: 0.7;
}
.testimonials .swiper-button-prev.swiper-button-disabled::before,
.testimonials .swiper-button-prev.swiper-button-disabled::after,
.gallery .slick-slider button.slick-disabled::before,
.gallery .slick-slider button.slick-disabled::after {
  opacity: 1;
}
.swiper-button-next.swiper-button-disabled:after, 
.swiper-button-prev.swiper-button-disabled:after {
  color: #8998aa;
}
.swiper-button-next:after, 
.swiper-button-prev:after{
  font-size: 19px;
  height: 100%;
  display: flex;
  width: 100%;
  color: #6fbf4b;
  align-items: center;
  justify-content: center;
  top: 1px;
  position: relative;
}
.our-products .slick-slider {
  margin-bottom: 0;
  padding-bottom: 10px;
  margin-top: 30px;
}
.tab-content p{
  display: none;
}
.our-products .slick-prev, .our-products .slick-next {
  background-color: #6fbf4b;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  top: 83%;
  bottom: 10px;
  z-index: 10;
  -webkit-box-shadow: 2px 0px 7px 0px rgba(0, 0, 0, 0.30);
  -moz-box-shadow: 2px 0px 7px 0px rgba(0, 0, 0, 0.30);
  box-shadow: 2px 0px 7px 0px rgba(0, 0, 0, 0.30);
}
.our-products .slick-prev:before, .our-products .slick-next:before{
  color: #143156;

}
.our-products .slick-prev, .our-products .slick-next{
  top: 14px;
}
.our-products .slick-prev {
  left: 0;
}
.our-products .slick-next {
  right: 0;
}
.our-products .slick-slide{
  display: flex;
  justify-content: center;
  align-items: center;
}
.gallery .slick-slider{
  padding-bottom: 110px;
}
.slick-prev{
  left: 17px;
}
.slick-next {
  right: 17px;
}
.slick-prev:before, .slick-next:before{
  color: #6fbf4b;
  font-size: 35px;
}
.slick-prev:hover, .slick-prev:focus, 
.slick-next:hover, .slick-next:focus {
  background: #143156;
}
.load-more{
  display: none;
}
.our-edge-card{
  padding: 25px 25px;
  border-radius: 0px;
  margin-bottom: 0px;
  box-shadow: none;
  height: 483px;
  pointer-events: none;
}
.our-edge .owl-carousel .owl-stage-outer {
  margin-bottom: 0;
}
.our-edge-card span:before{
  position: relative;
  margin: 0px auto;
}
.our-edge .owl-carousel {
  padding-top: 10px;
}
.our-edge .owl-theme .owl-dots{
  margin-top: 50px
}
.our-edge .owl-dots button{
  margin: 0px;
}
.our-edge .owl-carousel .owl-nav{
  bottom: 10px;
}
.our-edge .owl-theme .owl-dots .owl-dot span{
  width: 15px;
  height: 15px;
  margin: 5px 5px;
}
.our-edge .owl-carousel.owl-loaded.mobile{
  padding-bottom: 0px;
}
.our-edge .owl-carousel .owl-nav button.owl-prev, 
.our-edge .owl-carousel .owl-nav button.owl-next{
  background-color: #143156;
}
.our-edge .owl-carousel .owl-nav button.owl-prev.disabled,
.our-edge .owl-carousel .owl-nav button.owl-next.disabled {
  background-color: #fff;
  color: #143156; 
}
.our-edge .owl-theme .owl-dots .owl-dot.active span, 
.our-edge .owl-theme .owl-dots .owl-dot:hover span {
  background: #143156;
}
.our-edge .owl-theme .owl-dots .owl-dot span{
  background: #599e3a;
}
.flip-box-front, .flip-box-back{
  min-height: 450px;
}


.contact .testi-heading-para {
  margin-bottom: 20px;
}
.check-box{
  margin-bottom: 0px
}
form input{
  padding: 12px 15px;
  font-size: 15px;
  min-height: 50px;
  height: 50px;
}
.check-box p {
  padding-top: 0;
  line-height: 23px;
}
label.error{
  font-size: 12px;
}
form textarea{
  min-height: 142px;
}
.select2-container--default .select2-selection--single{
  min-height: 50px;
}
.select2-container .select2-selection--single {
  height: 50px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered{
  padding: 10px 15px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow{
  height: 49px;
  right: 0px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b{
  margin-top: -8px;
  transform: scale(0.8);
}
.modal-body{
  padding-left: 5px;
    padding-right: 5px;
}
.faq .testi-heading-para{
  display: none;
}
.faq .accordion button.accordion-button {
  font-size: 15px;
  padding: 10px 10px 9px 15px;
  margin: 0;
}
.faq .accordion-button::after{
  transform: scale(0.8);
  margin-left: 40px;
}
.faq .accordion-body {
  padding: 20px 20px 10px 18px;
}
.menu-footer {
  display: none;
}
.addbg .menu-footer {
  display: block;
  position: fixed;
  bottom: 106px;
  width: 100%;
  left: 0;
  right: 0;
}
.menu-getin {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 1px;
  padding-bottom: 0px;
  margin-bottom: 3px;
}
.menu-getin:before{
  content: '';
  position: absolute;
  background-image: url(../img/shadow-line.png);
  background-repeat: no-repeat;
  width: 420px;
  height: 1px;
  top: 0px;
}
.menu-getin:after{
  content: '';
  position: absolute;
  background-image: url(../img/shadow-line.png);
  background-repeat: no-repeat;
  width: 420px;
  height: 1px;
  bottom: 0px;
}
.menu-copy {
  width: 100%;
  clear: both;
  text-align: center;
}
.menu-copy img {
  width: 13%;
}
.menu-copy p {
    font-size: 12px;
    margin-bottom: 0px;
}
.menu-copy p a{
  color: #143156;
  text-decoration: none;
}
.about .section-title h2{
  width: 100%;
  max-width: 310px;
  margin: 0px auto;
}
.organisational .section-title h2 {
  width: 100%;
  max-width: 280px;
  margin: 0px auto;
}
.section-title h2 {
  width: 100%;
  max-width: 210px;
  margin: 0px auto;
}
.our-legacy .owl-carousel{
  padding-top: 10px;
}
.gallery .slick-prev, .gallery .slick-next {
  background-color: #143156;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  top: 90%;
  z-index: 2;
}
.gallery .slick-prev:before, .gallery .slick-next:before {
  color: #6fbf4b;
  font-size: 35px;
}
.gallery .slick-next:before{
  background-image: url(../img/arrow-right-gallery-green.png);
}
.gallery .slick-prev:before{
  background-image: url(../img/arrow-left-gallery-green.png);
}

.flip-box .flip-box-front .inner{
  display: flex;
  justify-content: center;
}
.flip-box .inner{
  transform:none;
  -webkit-transform:none;
  top: 158px;
}
.flip-box .flip-box-front .inner.stellar-logo {
  top: 132px;
}
.our-legacy .owl-item {
  padding-left: 0;
  padding-right: 0;
  height: 540px;
}
.mobile {
  display: block;
}
section {
  padding: 50px 0;
}
section.gallery {
  padding-bottom: 60px;
}
.organisational {
  padding: 50px 0 30px 0;
}
.organisational .owl-nav button span {
  color: #143156;
}
.owl-carousel .owl-stage-outer{
  margin-bottom: 30px;
}
.our-legacy .owl-carousel .owl-stage-outer {
  margin-bottom: 0;
}
.our-legacy .owl-carousel .owl-nav{
  bottom: 40px;
}
h3.box-text-bottom {
  position: absolute;
  width: 100%;
  color: #143156;
  margin-top: 45px;
  text-align: center;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
}
.our-legacy .owl-theme .owl-dots{
  top: 45px;
  display: none;
}
.our-legacy .owl-theme .owl-dots .owl-dot span,
.organisational .owl-theme .owl-dots .owl-dot span{
  width: 15px;
  height: 15px;
}
.our-legacy .owl-theme .owl-dots .owl-dot.active span{
  background: #143156;
}
.organisational .owl-theme .owl-dots .owl-dot.active span{
  background: #6fbf4b;
}
.testi-heading-para {
  margin-bottom: 20px;
}
.our-legacy .owl-carousel {
  margin-bottom: 0px;
  padding-bottom: 10px;
}
.our-legacy:after{
  height: 400px;
}
.testi-heading-para p {
  text-align: justify;
}

#preloader img{
  width: 100%;
}
#homepage{
  background-image: none;
  /*background-image: url(../img/mobile/main-banner.jpg);*/
  background-repeat: no-repeat;
  align-items: flex-end !important;
}
#hero-error-404{
  background-image: url(../img/404-error-banner-mobile.jpg);
  background-repeat: no-repeat;
}
#hero-error-403{
  background-image: url(../img/403-error-banner-mobile.jpg);
  background-repeat: no-repeat;
}

.contact-heading:after {
    border-right: none;
    right: 0;
    height: 130px;
    top: initial;
    width: 100%;
    background-color: #119833;
    height: 1px;
    bottom: -24px;
    right: 0;
}


p {
  font-size: 15px;
  line-height: 26.5px;
}
.navbar-mobile .mobile-nav-toggle {
  top: 27px;
  right: 25px;
}

#header{
  margin-top: 0px;
}
#header .logo img{
  width: 80%;
}
.header.addbg {
  background-image: url(../img/mobile-menu-bg.jpg);
  height: 100vh;
}
.navbar-mobile ul{
  right: 0;
  bottom: 0;
  left: 0;
  top: 85px;
  padding-top: 0px;
  background-color: transparent;
  height: 57vh;
  position: fixed;
}
.navbar-mobile{
  background: none;
  margin-right: 5px;
  position: relative;
}
.navbar li {
  text-align: center;
  padding-bottom: 8px;
  border-bottom: none;
  padding-top: 8px;
}
.navbar a{
  display: inline;
  padding: 4px 0px;
  color: #143156;
  font-size: 18px;
}
.navbar-mobile a:hover, 
.navbar-mobile .active, 
.navbar-mobile li:hover>a {
  color: #fff;
}
.navbar li a.active:after{
  background-color: #fff;
  height: 2px;
}
.navbar-toggler .hamburger-toggle .hamburger span{
  background: #fff;
}
.navbar-mobile .navbar-toggler .hamburger-toggle .hamburger span {
  background: #143156;
}
.bi-list::before {
  position: absolute;
  top: -19px;
  right: -19px;
}
#homepage p{
  display: none;
}
#homepage .container{
  padding-bottom: 0px;
  /*opacity: 1 !important;
  transform: translate(0) scale(1) !important;*/
}
.banner-cont {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
}
#homepage .button {
  color: #fff;
  border: none;
  padding: 11px 35px;
  margin: 0px auto;
  float: initial;
  width: 180px;
  margin-bottom: 40px;
  font-size: 19px;
  min-width: 165px;
}
.about-left{
  display: none;
}
.about-left-mobile{
  display: block;
  padding-top: 35px;
  margin-bottom: 16px;
  text-align: center;
}
.about-right {
  padding-left: 0;
}
.title-top:before{
  display: none;
}
.about .title-top,
.section-title .title-top p{
  text-align: center;
  padding-top: 0;
}
.about .title-top p{
  color: #fff;
  padding-top: 0px;
  font-size: 15px;
}
.about:after{
  display: none;
}
.about:before{
  width: 100%;
  height: 35%;
}
.section-title h2{
  line-height: 35px;
  text-align: center;
  font-size: 24px;
}
.about .content {
  display: flex;
  flex-direction: column-reverse;
  padding: 50px 0px;
}
.slick-dots {
  bottom: 13px;
  margin-left: -13px;
}
.gallery .slick-dots{
  bottom: 8px;
}
.slick-dots li button:before{
  color: #d5d5d5;
  font-size: 15px;
}
.about p {
  font-size: 15px;
  line-height: 23px;
}

.vission-left{
  border-right: none;
  padding-left: 0;
  padding-top: 0px !important;
}
.row.ourvission {
  margin: 0;
}
.vission-inner {
  padding: 30px 20px 15px 20px;
  border-bottom: 1px solid #6fbf4b;
  border: 1px solid #6fbf4b;
  margin-top: 20px;
  text-align: left;
  min-height: 260px;  
}
.vission-scroll{
  height: 140px;
  overflow-y: auto;
  padding-right: 10px;
}
.vission-inne-right p {
  margin-bottom: 10px;
}

.vission-scroll::-webkit-scrollbar {
  width: 3px;
  display: block;
}

.vission-scroll::-webkit-scrollbar-track {
  background-color: #d4d4d4;
  border-radius: 100px;
}

.vission-scroll::-webkit-scrollbar-thumb {
  border-radius: 100px;
  border: 6px solid rgba(0, 0, 0, 0.18);
  border-left: 0;
  border-right: 0;
  background-color: #143156;
}

.vission-inner h2{
  font-size: 25px;
  margin-bottom: 20px;
}
.vission-right {
  padding-left: 0;
  padding-top: 0px !important;
  padding-right: 0px;
}
.vission-inne-right {
  padding-bottom: 30px;
}

.flip-box-back .inner.color-white {
  top: 1%;
  opacity: 0;
}
.flip-box .flip-box-back.active .inner {
  opacity: 1;
}
.flip-box .flip-box-back p {
  font-size: 15px;
  line-height: 20px;
}
.flip-box-back.kannapa .inner p {
  height: 260px;
  overflow-y: auto;
  padding-right: 10px;
}
.flip-box-back.kannapa .inner p::-webkit-scrollbar {
  width: 3px;
  display: block;
}

.flip-box-back.kannapa .inner p::-webkit-scrollbar-track {
  background-color: #d4d4d4;
  border-radius: 100px;
}

.flip-box-back.kannapa .inner p::-webkit-scrollbar-thumb {
  border-radius: 100px;
  border: 6px solid rgba(0, 0, 0, 0.18);
  border-left: 0;
  border-right: 0;
  background-color: #143156;
}
.flip-box-front p{
  width: 90%;
  margin: 0px auto;
  left: 0;
  right: 0;
  font-size: 20px;
}
.flip-box .inner a{
  font-size: 19px;
  min-width: 160px;
  width: 160px;
  bottom: 40px;
}

.testimonials .testimonial-item{
  min-height: 370px;
  padding: 30px 0px;
}
.testimonial-item .button--tamaya{
  min-width: 140px;
  width: 140px;
  font-size: 15px;
}
.testimonials .testimonial-item .testimonial-img{
  width: 60%;
  margin-bottom: 12px;
}
.testimonials .testimonial-item h3{
  font-size: 21px;
  list-style: none;
}
.testimonials .testimonial-item h4{
  font-size: 15px;
}
.testimonial-item a{
  font-size: 18px;
  padding: 7px 30px;
}
.testimonials .swiper-pagination{
  margin-top: 60px;
}
.testimonials .swiper-pagination .swiper-pagination-bullet{
  width: 15px;
  height: 15px;
}
.popup-inner{
  width: 80%;
}
.popup__text{
  padding: 1rem;
}
#header.header-scrolled{
  background-color: rgba(20, 49, 86, 0.9);
}
.product-tab .owl-theme .owl-dots{
  display: none;
}
.product-tab .owl-carousel .owl-stage-outer {
  margin-bottom: 0;
}
.product-tab .owl-carousel{
  margin-bottom: 0px;
}
.product-tab.fancy {
  padding-left: 5px;
  padding-right: 5px;
}
.accordion .faq-cont{
  padding: 18px 12px 18px 12px;
}
.dowload-popup .check-box label p{
  font-size: 13px;
}
.product-tab .owl-nav button span {
  color: #143156;
}
.fancy.product-tab .button{
  padding: 11px 20px;
  margin: 0;
  min-width: 155px;
  font-size: 18px;
}
.our-products .section-title {
  padding-bottom: 5px;
}
.product-tab .owl-carousel .owl-nav {
  position: relative;
  width: 100%;
  bottom: 0;
  display: flex;
  margin-top: -40px;
}
.our-products .faq.accordion .faq-list{
  margin-top: 0;
}
.our-products .faq.accordion {
  margin-top: 0;
}

.product-tab .owl-carousel .item {
  text-align: center;
  display: flex;
  justify-content: center;
}
.product-tab #pills-tab{
  margin-top: 25px;
}
.product-tab li {
  margin-bottom: 15px;
  margin-left: 2px;
  margin-right: 2px;
}
.tab-content{
  padding-top: 40px;
}
.tab-content h3{
  font-size: 20px;
  margin-bottom: 0px;
}
h3.accordion-top {
  padding-bottom: 25px;
}
h3.tabheading {
  display: none;
}
.faqheading-first h3 {
  padding-bottom: 25px;
}
.faqheading-second h3 {
  padding-bottom: 25px;
  padding-top: 10px;
}
.gallery .testi-heading-para{
  display: none;
}
.our-edge-card span:before {
  transform: scale(0.7);
}
.tab-content img {
  margin-top: 0px;
  margin-bottom: 20px;
}
.our-edge{
  padding-bottom: 60px;
}
.faq.accordion .faq-list a{
  font-size: 20px;
  padding: 11px 12px 15px 12px;
}
.faq.accordion .faq-list i{
  width: 30px;
  height: 30px;
  top: 16px;
}
.product-tab .faq.accordion .faq-list i{
  top: 10px;
  right: 10px;
}
tbody, td, tfoot, th, thead, tr{
  font-size: 13px;
}
.box-item{
  margin-bottom: 0px;
  padding: 5px;
}
.our-edge-card h3{
  font-size: 23px;
  line-height: 35px;
  margin-top: 6px;
  text-align: center;
  margin-bottom: 10px;
}
.our-edge-card p{
  line-height: 26px;
  margin-bottom: 0;
}
.our-edge .testi-heading-para {
  display: none;
}
.btnClass{
  font-size: 18px;
  padding: 16px 50px;
}
.allFiledsRequired{
  font-size: 15px;
}
.accordion-button::after{
  transform: scale(0.7) !important;
  right: -12px;
  position: relative;
}
.accordion button.accordion-button{
  font-size: 20px;
  padding: 3px 12px 2px 10px;
  margin: 0px;
}
.contact-more {
  height: auto;
  flex-direction: column;
  width: 100%;
  max-width: 310px;
  text-align: center;
  margin: 0px auto;
  margin-bottom: 10px;
}
.contact-more p{
  padding-left: 0;
  padding-top: 90px;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.contact-more.phone p span,
.contact-more.email p span,
.contact-more.phone p br,
.contact-more.email p br {
  display: none;
}
.copyright {
  width: 100%;
  max-width: 250px;
  margin: 0px auto;
}

.contact-heading {
  margin-bottom: 40px;
}
.contact-heading h2{
  text-align: center;
}
.footer-ma-tooltip {
  text-align: center;
}
.footer-ma-tooltip {
  text-align: center;
  margin-top: 25px;
  margin-bottom: 10px;
}
.contact-more span:before{
  transform: scale(0.7);
  left: 0;
  right: 0;
  margin: 0px auto;
}
body.back-fix {
  overflow: hidden;
}
#hero-error-404 h1, #hero-error-403 h1{
  font-size: 50px;
  margin-bottom: 15px;
}
#hero-error-404 p, #hero-error-403 p{
  font-size: 15px;
  line-height: 26px;
}
.copyright br{
  display: block;
}
.copyright span {
  display: none;
}
#hero-sub{
  background-image: none;
  /*background-image: url(../img/privacy-policy-banner-mobile.jpg);*/
}
#hero-sub-2{
  /*background-image: url(../img/terms-of-use-banner-mobile.jpg);*/
}
#hero-sub:before, #hero-sub-2:before, #hero-error-403:before, #hero-error-404:before{
  opacity: 0.7;
}
#hero-sub-2,
#hero-sub{
  height: 100%;
  padding-bottom: 60px;
}
#hero-sub-2 h1,
#hero-sub h1{
  font-size: 30px;
  line-height: 40px;
  position: absolute;
  bottom: 50px;
  width: 100%;
  padding: 0px 30px;
  left: 0;
  right: 0;
  margin-bottom: 0px;
}
.banner-sub-cont{
  height: 81vh;
}
#hero-sub-2 h1 br, #hero-sub h1 br{
  display: none;
}
.desktop{
  display: none;
}
.privacycont h2{
  font-size: 25px;
  line-height: 35px;
}
#hero-sub p, #hero-sub-2 p{
  display: none;
}
.privacycont h3{
  font-size: 20px;
}
.button--tamaya::before, .button--tamaya::after{
  transition: none;
  transition-timing-function: initial;
}
.back-to-top,
.back-to-top.active{
  display: none !important;
}
.owl-carousel .owl-nav button.owl-prev.disabled, 
.owl-carousel .owl-nav button.owl-next.disabled, 
.owl-carousel-desktop .owl-nav button.owl-prev.disabled, 
.owl-carousel-desktop .owl-nav button.owl-next.disabled,
.slick-slider button.slick-disabled{
  opacity: 0.4;
}
.logo-to-hover:hover + .footer-hover-content, .footer-hover-content:hover{
  display: none;
}

.flip-box .flip-box-back.active a{
  display: block;
}


.flip-box {
  perspective: 1000px;
}

.flip-box-front, .flip-box-back {
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden; /* iOS support */
    transition: transform 0.6s;
    -webkit-transition: transform 0.6s; /* iOS support */
}

.flip-box-front {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);

}

.flip-box-back {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

/* Initial state with 'active' class on back */
.flip-box .flip-box-front.active {
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}

.flip-box .flip-box-back.active {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
}

/* Ensure content is not reversed on iOS */
.flip-box .flip-box-back {
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg); /* iOS support */
}

.flip-box .flip-box-back.active {
  transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg); /* iOS support */
}



}

@media screen and (max-width: 820px) { /* iPhone 14 and similar devices */
  .flip-box-front, .flip-box-back {
      transform: none;
      -webkit-transform: none; /* iOS support */
  }

  /* Use a simple fade instead of a 3D flip */
  .flip-box .flip-box-front.active {
      opacity: 0;
  }

  .flip-box .flip-box-back.active {
      opacity: 1;
  }
}




@media (min-width: 768px) and (max-width: 1023px) {
body.back-fix {
    overflow: hidden;
}
.flip-box {
  perspective: 1000px;
}

.flip-box-front, .flip-box-back {
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transition: transform 0.6s;
}

.flip-box-front {
  transform: rotateY(0deg);
}

.flip-box-back {
  transform: rotateY(180deg);
}

/* Initial state with 'active' class on back */
.flip-box .flip-box-front.active {
  transform: rotateY(-180deg);
}

.flip-box .flip-box-back.active {
  transform: rotateY(0deg);
}

#homepage .button:hover, 
.fancy .button:hover, 
.menu-getin .button:hover, 
.modal-form-btn .button:hover{
  border: none;
}
.button--tamaya:hover::before, 
.intracity-bus:hover::before, 
.intracity-coach:hover::before, 
.more:hover::before, 
.btncontact .button:hover::before,
.button--tamaya:hover::after, 
.intracity-bus:hover::after, 
.intracity-coach:hover:after, 
.more:hover:after, 
.btncontact .button:hover:after,
.testimonial-item .button--tamaya:hover::before,
.testimonial-item .button--tamaya:hover::after,
.accordion .modal-form-btn .button--tamaya:hover::before,
.accordion .modal-form-btn .button--tamaya:hover::after,
.button--tamaya:hover > span, 
.intracity-bus:hover > span, 
.intracity-coach:hover > span, 
.more:hover:hover > span, 
.btncontact .button:hover > span,
.accordion .modal-form-btn .button--tamaya:hover > span {
  -webkit-transform: none;
  transform: none;
}
.button--tamaya:hover > span, 
.intracity-bus:hover > span, 
.intracity-coach:hover > span, 
.more:hover:hover > span, 
.btncontact .button:hover > span,
.testimonial-item .button--tamaya:hover > span,
.accordion .modal-form-btn .button--tamaya:hover > span{
  opacity: 0;
}
.navbar li:last-child {
  padding-right: 15px;
}
.ipad-img,
.slide .ipad-img{
  display: block;
}
.about .content img{
  width: 100%;
}
.mobile-img,
.desktop-img{
  display: none;
}
.slide .mobile-img,
.slide .desktop-img{
  display: none !important;
}
.prakash-roadlines{
  background-image: url(../img/ipad/prakassh-raodlines.webp) !important;
}
.sm-kannapa{
  background-image: url(../img/ipad/sm-kannapa-automobiles.webp) !important;
}
.stellar{
  background-image: url(../img/ipad/stellar-sp.webp) !important;
}
.organisational{
  background-image: url(../img/ipad/vision-mission-bg.webp);
}
.our-edge{
  background-image: url(../img/ipad/why-choose-mc2-bg.webp);
}
.faq{
  background-image: url(../img/ipad/faqs-bg.webp);
}
.contact::after{
  background-image: url(../img/ipad/contact-bg.webp);
}

.org-purpose{
  display: block;
}
.org-purpose .slick-slider {
  margin-bottom: 0;
}
.org-purpose .slick-list{
  padding-bottom: 0px;
}
.org-purpose .slick-arrow{
  top: 95%;
}
.mobile.ipad {
  display: block;
}
.hide-ipad {
  display: none;
}
.tab-content {
  text-align: center;
  padding-top: 20px;
}
.box-item h3.box-text-bottom {
  display: block;
}
.arrow-control {
  position: relative;
  bottom: 29px;
}
.our-edge .owl-carousel .owl-nav{
  bottom: 25px;
}
.our-edge .owl-theme .owl-dots{
  margin-top: 30px;
}
.swiper-button-next, .swiper-button-prev {
  width: 50px;
  height: 50px;
  background-color: #143156;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-box-shadow: 2px 0px 10px 1px rgba(0, 0, 0, 0.50);
  -moz-box-shadow: 2px 0px 10px 1px rgba(0, 0, 0, 0.50);
  box-shadow: 2px 0px 10px 1px rgba(0, 0, 0, 0.50);
}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: .55;
  cursor: auto;
  pointer-events: none;
  background-color: #fff;
  box-shadow: 2px 0px 10px 1px rgba(0, 0, 0, 0.20);
}
.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 19px;
  height: 100%;
  display: flex;
  width: 100%;
  color: #6fbf4b;
  align-items: center;
  justify-content: center;
  top: 1px;
  position: relative;
}
.swiper-button-next.swiper-button-disabled:after, .swiper-button-prev.swiper-button-disabled:after {
  color: #8998aa;
}

.our-legacy .owl-carousel{
  padding-bottom: 0px;
}
.our-legacy .owl-item{
  height: 570px;
}
.our-legacy .owl-theme .owl-dots{
  display: none;
}
h3.box-text-bottom {
  position: absolute;
  width: 100%;
  color: #143156;
  margin-top: 48px;
  text-align: center;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
}
.our-legacy .owl-carousel .owl-nav {
  bottom: 17px;
}
.our-legacy .owl-carousel .owl-nav button.owl-next.disabled, 
.our-legacy .owl-carousel .owl-nav button.owl-prev.disabled {
  background-color: #143156;
  opacity: 0.4;
}
.our-legacy .owl-theme .owl-dots .owl-dot span{
  width: 20px;
  height: 20px;
}
.our-legacy .owl-theme .owl-dots .owl-dot.active span {
  background: #143156;
}
.our-edge .desktop {
  display: none;
}
.our-edge .owl-carousel.owl-loaded.mobile {
  display: block;
  padding-bottom: 0px;
}
.our-edge .testi-heading-para {
  margin-bottom: 0px;
}
.load-more{
  display: none;
}
.contact-heading {
  margin-bottom: 40px;
}

.contact-more {
  height: auto;
  flex-direction: column;
  width: 100%;
  max-width: 310px;
  text-align: center;
  margin: 0px auto;
  margin-bottom: 10px;
}
.contact-more span:before {
  transform: scale(.6);
  left: 0;
  right: 0;
  margin: 0px auto;
}
.contact-more p {
  padding-left: 0;
  padding-top: 90px;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.header.addbg {
  background-image: url(../img/ipad-menu-bg.jpg);
  height: 100vh;
  background-size: cover;
}
.navbar-toggler{
  display: block;
}
.navbar-mobile ul{
  right: 0;
  bottom: 0;
  left: 0;
  top: 175px;
  background-color: transparent;
  height: 62vh;
  position: fixed;
}
.navbar-mobile{
  background: none;
}
.navbar li {
  text-align: center;
  padding-bottom: 10px;
  border-bottom: none;
  padding-top: 10px;
}
.navbar a{
  display: inline;
  padding: 10px 3px;
  color: #143156;
  font-size: 21px;
}
.navbar-mobile a:hover, 
.navbar-mobile .active, 
.navbar-mobile li:hover>a {
  color: #fff;
}
.navbar .active:after {
  background-color: #fff;
}
.navbar-toggler .hamburger-toggle .hamburger span{
  background: #fff;
}
.navbar-mobile .navbar-toggler .hamburger-toggle .hamburger span {
  background: #143156;
}
.bi-list::before {
  position: absolute;
  top: -19px;
  right: -19px;
}
.addbg .mobile-logo {
  display: block;
}
.addbg .desktop-logo {
  display: none;
}
.addbg .menu-footer {
  display: block;
  position: fixed;
  bottom: 50px;
  width: 100%;
  left: 0;
  right: 0;
}
.menu-getin {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  padding-bottom: 8px;
  margin-bottom: 15px;
}
.menu-getin:before{
  content: '';
  position: absolute;
  background-image: url(../img/shadow-line.png);
  background-repeat: no-repeat;
  width: 420px;
  height: 1px;
  top: 0px;
}
.menu-getin:after{
  content: '';
  position: absolute;
  background-image: url(../img/shadow-line.png);
  background-repeat: no-repeat;
  width: 420px;
  height: 1px;
  bottom: 0px;
}
.menu-copy {
  width: 100%;
  clear: both;
  text-align: center;
}
.menu-copy img {
  width: 7%;
}
.menu-copy p {
    font-size: 12px;
}
.menu-copy p a{
  color: #143156;
  text-decoration: none;
}


#homepage{
  background-image: url(../img/ipad/main-banner.webp);
  background-repeat: no-repeat;
  align-items: flex-end !important;
  background-size: cover;
}
#hero-error-404{
  background-image: url(../img/404-error-banner-ipad.webp);
  background-repeat: no-repeat;
}
#hero-error-403{
  background-image: url(../img/403-error-banner-ipad.webp);
  background-repeat: no-repeat;
}
#hero-sub-2,
#hero-sub{
  height: 100vh;
}
#hero-sub{
  background-image: url(../img/privacy-policy-banner-ipad.webp);
  background-repeat: no-repeat;
}
#hero-sub-2{
  background-image: url(../img/terms-of-use-ipad.webp);
  background-repeat: no-repeat;
}

#preloader img{
  width: 60%;
}
.navbar-mobile .mobile-nav-toggle {
  top: 42px;
  right: 37px;
}

#homepage h2{
  font-size: 40px;
  line-height: 55px;
  color: #6fbf4b;
}
#homepage h2 span{
  color: #fff;
}
#homepage p {
  font-size: 15px;
  line-height: 25px;
  max-width: 700px;
  display: none;
}

.navbar li{
  padding: 10px 15px 15px 15px;
}
.navbar a, .navbar a:focus{
  font-size: 18px;
}
#homepage .button{
  padding: 10px 40px;
  font-size: 15px;
}
.title-top:before{
  transform: scale(0.8);
}
.section-title h2{
  font-size: 25px;
  line-height: 35px;
}
.section-title .title-top p{
  font-size: 18px;
}
p{
  font-size: 15px;
  line-height: 22.5px;
}
.about:before {
  width: 100%;
  height: 30%;
}
.about-left {
  margin-bottom: 30px;
}
.about p:last-child {
  margin-bottom: 0;
}
.about .title-top p {
  color: #fff;
}
.about .content {
  display: flex;
  flex-direction: column-reverse;
  padding: 60px 0px;
}
.about .container:after{
  transform: scale(0.5);
  left: -54px;
  display: none;
}
.about-right {
  padding-left: 0;
}
.about .title-top, .section-title .title-top p {
  text-align: center;
  padding-top: 0;
}
.title-top:before{
  display: none;
}
.about .section-title h2 {
  width: 100%;
  max-width: 310px;
  margin: 0px auto;
}
.section-title h2 {
  line-height: 35px;
  text-align: center;
  font-size: 24px;
}
.about-left {
  display: none;
}
.about-left-mobile {
  display: block;
  padding-top: 25px;
  margin-bottom: 20px;
  text-align: center;
}
.about:after{
  display: none;
}
.vission-left{
  border-right: none;
  padding-left: 0px;
  padding-top: 0px !important;
}
.row.ourvission {
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
}
.flip-box-front, .flip-box-back{
  min-height: 480px;
}
.flip-box .flip-box-back p{
  font-size: 14px;
  line-height: 20px;
}
.flip-box-back.kannapa .inner p {
  height: 277px;
  overflow-y: auto;
  padding-right: 10px;
}
.flip-box .inner a{
  font-size: 19px;
  min-width: 160px;
  width: 160px;
  bottom: 30px;
}

.flip-box-back.kannapa .inner p::-webkit-scrollbar {
  width: 3px;
  display: block;
}

.flip-box-back.kannapa .inner p::-webkit-scrollbar-track {
  background-color: #d4d4d4;
  border-radius: 100px;
}

.flip-box-back.kannapa .inner p::-webkit-scrollbar-thumb {
  border-radius: 100px;
  border: 6px solid rgba(0, 0, 0, 0.18);
  border-left: 0;
  border-right: 0;
  background-color: #143156;
}
.vission-inner h2{
  font-size: 30px;
}
.vission-inner {
  padding: 30px 40px 20px 40px;
}
.vission-right {
  border-top: 1px solid #6fbf4b;
  padding-left: 0;
    padding-right: 0;
    padding-bottom: 20px;
    padding-top: 0px !important;
}
.box-item{
  margin-bottom: 40px;
}
.col-md-6.last-box {
  margin: 0px auto;
}
.flip-box p{
  font-size: 18px;
}
.flip-box-back .inner.color-white {
top: 0;
transform: none;
}
.flip-box .inner {
  transform: none;
  -webkit-transform: none;
  top: 180px;
}
.flip-box .inner.stellar-logo {
  top: 153px;
}
.flip-box-header{
font-size: 18px;
}
.testimonials .testimonial-item h3{
  font-size: 25px;
}
.testimonials .testimonial-item h4{
  font-size: 18px;
}
.testimonial-item a{
  font-size: 20px;
}
.testimonials .testimonial-item{
  margin: 0px auto;
  min-height: 360px;
  padding-top: 30px;
}
.our-edge .owl-item {
  align-items: stretch;
  display: flex;
  padding-left: 10px;
  padding-right: 10px;
}
.our-edge .owl-carousel .owl-nav button.owl-prev, 
.our-edge .owl-carousel .owl-nav button.owl-next {
  background-color: #143156;
}
.our-edge .owl-carousel .owl-nav button.owl-prev.disabled, 
.our-edge .owl-carousel .owl-nav button.owl-next.disabled {
  background-color: #fff;
  color: #143156;
}

.vission-inner {
  padding: 30px 20px 15px 20px;
  border-bottom: 1px solid #6fbf4b;
  border: 1px solid #6fbf4b;
  margin-top: 20px;
  text-align: left;
  min-height: 260px;
}
.vission-inne-right {
  padding-bottom: 30px;
  margin-right: 1px;
}
.vission-scroll {
  height: 140px;
  overflow-y: auto;
  padding-right: 10px;
}
h2.down-text {
  color: #fff;
  text-align: center;
  margin-top: 57px;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
}
.vission-scroll::-webkit-scrollbar {
  width: 3px;
  display: block;
}

.vission-scroll::-webkit-scrollbar-track {
  background-color: #d4d4d4;
  border-radius: 100px;
}

.vission-scroll::-webkit-scrollbar-thumb {
  border-radius: 100px;
  border: 6px solid rgba(0, 0, 0, 0.18);
  border-left: 0;
  border-right: 0;
  background-color: #143156;
}
.our-type.desktop{
  display: none;
}


.testimonials .testimonial-item .testimonial-img{
  width: 168px;
}
.product-tab #pills-tab{
  max-width: 520px;
}
.product-tab .nav .nav-item button{
  font-size: 23px;
  width: 220px;
  height: 60px;
}
.tab-content h3{
  font-size: 35px;
}
.tab-content h3{
  font-size: 25px;
  margin-top: 35px;
}
.faq.accordion {
  margin-top: -40px;
}
.faq.accordion .faq-list a{
  font-size: 20px;
}
.faq.accordion .faq-list i{
  width: 41px;
  height: 41px;
  top: 20px;
}
.slick-prev, .slick-next{
  width: 40px;
  height: 40px;
}
.slick-prev{
  left: 30px;
}
.slick-next {
  right: 30px;
}
.slick-prev:before, .slick-next:before{
  font-size: 28px;
}
.gallery .slick-prev, .gallery .slick-next {
  width: 50px;
  height: 50px;
}
.slick-dots {
  bottom: 20px;
}
.our-edge-card{
  padding: 30px 30px;
  margin-bottom: 20px;
  height: 500px;
}
.our-edge-card span:before{
  transform: scale(0.7);
  margin: 0px auto;
  left: 0;
  right: 0;
  position: relative;
}
.our-edge-card h3{
  font-size: 16px;
  line-height: 30px;
  margin-top: 6px;
  text-align: center;
}
.our-edge-card h3 br {
  display: none;
}
.our-edge .owl-theme .owl-dots .owl-dot span{
  width: 20px;
  height: 20px;
}
.our-edge .owl-theme .owl-dots .owl-dot.active span, 
.our-edge .owl-theme .owl-dots .owl-dot:hover span {
  background: #143156;
}
.our-edge-card p{
  font-size: 15px;
  line-height: 25px;
}
.more, .less{
  padding: 13px 45px;
}
.accordion button.accordion-button{
  font-size: 20px;
}
.contact-heading h2 {
  text-align: center;
}
.contact-heading:after {
  border-right: none;
  right: 0;
  top: initial;
  width: 100%;
  background-color: #119833;
  height: 1px;
  bottom: -22px;
  right: 0;
  margin: 0px auto;
}
.btnClass{
  padding: 12px 40px;
  font-size: 18px;
}
.allFiledsRequired{
  font-size: 13px;
}
.banner-sub-cont {
  height: 90vh;
}
#hero-sub h1,
#hero-sub-2 h1{
position: absolute;
bottom: 0;
width: 100%;
left: 0;
right: 0;
}
.google-map iframe{
  height: 400px !important;
}
.footer-ma-tooltip{
margin-top: 0px;
}
.accordion-button::after{
  transform: scale(0.9);
}
form input, form textarea, form select, form input:focus, form textarea:focus, form select:focus, form select:focus-visible, .select2-container--default .select2-selection--single .select2-selection__rendered, .select2-container--default .select2-selection--single{
  font-size: 15px;
}
.privacycont h2{
  font-size: 25px;
  line-height: 35px;
}
#hero-sub p, #hero-sub-2 p{
  display: none;
}
.privacycont h3{
  font-size: 20px;
}
.logo-to-hover:hover + .footer-hover-content, .footer-hover-content:hover{
  display: none;
}


}

@media only screen and (min-width: 1024px) and (max-height: 1366px) and (orientation: landscape) {
  #homepage{
    background-image: url(../img/main-banner-1366.webp);
    background-repeat: no-repeat;
  }
}

@media only screen and (device-width: 1024px) and (device-height: 1366px) and (orientation:portrait) {
#homepage{
  background-image: url(../img/ipad/main-banner.webp);
  background-repeat: no-repeat;
}
.banner-cont {
  width: 100%;
  text-align: center;
  left: 0;
  right: 0;
  position: absolute;
  bottom: -470px;
}
#homepage a.button-new {
  left: 0;
  right: 0;
  position: absolute;
  margin: 0px auto;
  display: table;
  width: 180px;
}
#homepage p {
  font-size: 15px;
  line-height: 25px;
  max-width: 700px;
  margin: 0px auto;
  margin-bottom: 50px;
}

}

@media only screen and (min-width: 1024px) and (max-width: 1365px)  {

.container{
  max-width: 960px;
}
.product-tab #pills-tab{
  max-width: 540px;
}
#hero-error-404 p, #hero-error-403 p{
  max-width: 600px;
  margin: 0px auto;
}
.about:before {
  width: 310px;
}
.flip-box-back.kannapa .inner p {
  height: 240px;
  overflow-y: auto;
  padding-right: 10px;
}
.flip-box-back.kannapa .inner p::-webkit-scrollbar {
  width: 3px;
  display: block;
}

.flip-box-back.kannapa .inner p::-webkit-scrollbar-track {
  background-color: #d4d4d4;
  border-radius: 100px;
}

.flip-box-back.kannapa .inner p::-webkit-scrollbar-thumb {
  border-radius: 100px;
  border: 6px solid rgba(0, 0, 0, 0.18);
  border-left: 0;
  border-right: 0;
  background-color: #143156;
}


}



@media screen and (min-width:950px) and (max-width:1200px){

  #homepage h1{
    font-size: 50px;
    line-height: 65px;
  }
  #homepage p {
    font-size: 15px;
    line-height: 25px;
    max-width: 700px;
  }
  .navbar li{
    padding: 10px 15px 0px 15px;
  }
  .navbar a, .navbar a:focus{
    font-size: 18px;
  }
  #homepage .button{
    padding: 12px 40px;
    font-size: 15px;
  }
  .title-top:before{
    transform: scale(0.8);
  }
  .section-title h2{
    font-size: 25px;
    line-height: 35px;
  }
  .section-title .title-top p{
    font-size: 18px;
  }
  p{
    font-size: 15px;
    line-height: 22.5px;
  }
  .about:after{
    display: none;
  }
  .flip-box-front, .flip-box-back{
    min-height: 480px;
  }
  .flip-box .flip-box-back p{
    font-size: 14px;
    line-height: 20px;
  }
  .vission-inner h2{
    font-size: 30px;
  }
  .vission-inner {
    padding: 45px 40px 35px 48px;
}
.flip-box-back .inner.color-white {
  top: 0;
  transform: none;
}
.flip-box-header{
  font-size: 18px;
}
  .testimonials .testimonial-item h3{
    font-size: 25px;
  }
  .testimonials .testimonial-item h4{
    font-size: 18px;
  }
  .testimonial-item a{
    font-size: 20px;
  }
  .product-tab .nav .nav-item button{
    font-size: 23px;
    width: 260px;
  }
  .tab-content h3{
    font-size: 35px;
  }
  .tab-content h3{
    font-size: 30px;
  }
  .faq.accordion .faq-list a{
    font-size: 20px;
  }
  .faq.accordion .faq-list i{
    width: 41px;
    height: 41px;
    top: 20px;
  }
  .our-edge-card{
    padding: 30px 30px;
  }
  .our-edge-card span:before{
    transform: scale(0.7);
  }
  .our-edge-card h3{
    font-size: 23px;
    line-height: 38px;
    margin-top: 115px;
  }
  .our-edge-card p{
    font-size: 18px;
    line-height: 29px;
  }
  .more, .less{
    padding: 17px 55px;
  }
  textarea.input-cust {
    margin-top: 0px;
}
  .accordion button.accordion-button{
    font-size: 20px;
  }
  .contact-heading h2 {
    text-align: left;
}
  .contact-heading:after {
    content: '';
    position: absolute;
        border-right: 1px solid #119833;
        right: -20px;
        height: 130px;
        top: -22px;
        background-color: transparent;
}
.footer-ma-tooltip{
  margin-top: 0px;
}
  .accordion-button::after{
    transform: scale(0.9);
  }
  form input, form textarea, form select, form input:focus, form textarea:focus, form select:focus, form select:focus-visible, .select2-container--default .select2-selection--single .select2-selection__rendered, .select2-container--default .select2-selection--single{
    font-size:16px;
  }
  
  
  
  }


@media screen and (min-width:1300px) and (max-width:1339px){
#homepage{
  background-image: url(../img/main-banner-1366.webp);
  background-repeat: no-repeat;
}
.about:before {
  width: 310px;
}


}

@media screen and (min-width:1400px) and (max-width:1500px){
#homepage{
  background-image: url(../img/main-banner-1440.webp);
  background-repeat: no-repeat;
}
.about:before {
  width: 310px;
}

}

@media screen and (min-width:1200px) and (max-width:1500px){


#homepage h1{
  font-size: 40px;
  line-height: 55px;
}
#homepage p {
  font-size: 15px;
  line-height: 25px;
  max-width: 660px;
}
.navbar a, .navbar a:focus{
  font-size: 15px;
}
#header .logo img {
  max-height: 45px;
}
#homepage .button{
  padding: 10px 40px;
  font-size: 20px;
}
.about:before{
  width: 24.3%;
}
.section-title h2{
  font-size: 30px;
  line-height: 40px;
}
.about .content img{
  height: 100%;
  width: 100%;
}
.about-right {
  padding-left: 20px;
}

.about .container:after{
  left: -70px;
}
.vission-inner h2{
  font-size: 30px;
}
.vission-inner {
  padding: 50px 40px 45px 40px;
}
.section-title .title-top p{
  font-size: 18px;
}
.flip-box-front, .flip-box-back{
  min-height: 480px;
}
.flip-box .flip-box-back p{
  font-size: 15px;
  line-height: 25px;
}
.flip-box-back.kannapa .inner p {
  height: 270px;
  overflow-y: auto;
  padding-right: 10px;
}
.flip-box-back.kannapa .inner p::-webkit-scrollbar {
  width: 3px;
  display: block;
}

.flip-box-back.kannapa .inner p::-webkit-scrollbar-track {
  background-color: #d4d4d4;
  border-radius: 100px;
}

.flip-box-back.kannapa .inner p::-webkit-scrollbar-thumb {
  border-radius: 100px;
  border: 6px solid rgba(0, 0, 0, 0.18);
  border-left: 0;
  border-right: 0;
  background-color: #143156;
}


.testimonials .testimonial-item h3{
  font-size: 25px;
}
.testimonials .testimonial-item h4{
  font-size: 18px;
}
.testimonial-item a{
  font-size: 20px;
}
.testimonials .testimonial-item .testimonial-img {
  width: 250px;
  margin-bottom: 30px;
}
.testimonials .testimonial-item{
  min-height: 440px;
}
.product-tab .nav .nav-item button{
  font-size: 23px;
  width: 260px;
}
.tab-content h3{
  font-size: 35px;
}
.tab-content h3{
  font-size: 30px;
}
.faq.accordion .faq-list a{
  font-size: 22px;
}
.faq.accordion .faq-list i{
  width: 41px;
  height: 41px;
  top: 20px;
}
.our-edge-card{
  padding: 35px 35px;
}
.our-edge-card h3{
  font-size: 20px;
  line-height: 35px;
}
.our-edge-card p{
  font-size: 15px;
  line-height: 27px;
}
.accordion button.accordion-button{
  font-size: 22px;
}
.accordion-button::after{
  transform: scale(0.9);
}
form input, form textarea, form select, form input:focus, form textarea:focus, form select:focus, form select:focus-visible, .select2-container--default .select2-selection--single .select2-selection__rendered, .select2-container--default .select2-selection--single{
  font-size:15px;
}




}

@media screen and (min-width:1504px) and (max-width:1710px){

  #homepage h1{
    font-size: 50px;
    line-height: 65px;
  }
  #homepage p {
    font-size: 15px;
    line-height: 25px;
    max-width: 700px;
  }
  .navbar a, .navbar a:focus{
    font-size: 18px;
  }
  #homepage .button{
    padding: 11px 40px;
    font-size: 20px;
  }
  .section-title h2{
    font-size: 30px;
    line-height: 45px;
  }
  .section-title .title-top p{
    font-size: 18px;
  }
  p{
    font-size: 15px;
    line-height: 26.5px;
  }
  .flip-box-front, .flip-box-back{
    min-height: 480px;
  }
  .flip-box .flip-box-back p{
    font-size: 15px;
    line-height: 21px;
  }
  .vission-inner {
    padding: 45px 40px 35px 48px;
}
  .vission-inner h2{
    font-size: 35px;
  }
  .testimonials .testimonial-item h3{
    font-size: 20px;
  }
  .testimonials .testimonial-item h4{
    font-size: 18px;
  }
  .testimonial-item a{
    font-size: 20px;
  }
  .product-tab .nav .nav-item button{
    font-size: 20px;
    width: 220px;
    height: 60px;
  }
  .product-tab #pills-tab{
    max-width: 500px;
  }
  .tab-content h3{
    font-size: 35px;
  }
  .tab-content h3{
    font-size: 25px;
  }
  .faq.accordion .faq-list a{
    font-size: 21px;
  }
  .faq.accordion .faq-list i{
    width: 41px;
    height: 41px;
    top: 20px;
  }
  .our-edge-card h3{
    font-size: 23px;
    line-height: 38px;
  }
  .our-edge-card p{
    font-size: 15px;
    line-height: 26px;
  }
  .accordion-button::after,
  .accordion-button:not(.collapsed)::after{
    transform: scale(0.8);
  }
  form input, form textarea, form select, form input:focus, form textarea:focus, form select:focus, form select:focus-visible, .select2-container--default .select2-selection--single .select2-selection__rendered, .select2-container--default .select2-selection--single{
    font-size:16px;
  }
  .slick-prev, .slick-next{
    width: 55px;
    height: 55px;
  }
  .more, .less{
    padding: 13px 55px;
    font-size: 20px;
  }
  .container,
  .footer-contact .container,
  #footer .container{
    max-width: 1320px;
    width: 100%;
  }
  
  }

@media screen and (min-width:1701px) and (max-width:2500px){
.container,
.footer-contact .container,
#footer .container{
  max-width: 85%;
  width: 100%;
}
#homepage .button{
  padding: 12px 75px;
}
#homepage p{
  max-width: 820px;
}
#homepage h1, #hero-sub h1, #hero-sub-2 h1{
  font-size: 55px;
  line-height: 75px;
}
#homepage p, #hero-sub p, #hero-sub-2 p{
  font-size: 16px;
}
p {
  font-size: 16px;
  line-height: 30px;
}
.privacycont ul li{
  font-size: 16px;
}
.about .content {
  padding: 70px 0px 70px 0px;
}
.about .content img{
  height: 100%;
}
.section-title h2{
  font-size: 35px;
  margin-bottom: 20px;
}
.vission-inner {
  padding: 55px 40px 55px 48px;
}
.flip-box-header{
  font-size: 20px;
}
.flip-box .flip-box-back p{
  font-size: 16px;
  line-height: 25px;
}
.testimonials .testimonial-item{
  min-height: 510px;
}
.our-edge-card h3{
  font-size: 30px;
  line-height: 45px;
}
.our-edge-card p{
  font-size: 16px;
}
.copyright, .copyright a, .contact-more p{
  font-size: 16px;
}



}