body {
  font-family: 'Lexend';
  color: #1C1C1C;
}

a {
  color: #1C1C1C;
  text-decoration: none;
}

a:hover {
  color: #9e9e9e !important;
  text-decoration: none;
}
a:active{ color: #0A73A6 !important;}
h3{color:#212529;}

.popup-container {
    position: relative; /* makes child absolute relative to this */
    display: inline-block;
}

.popup-content {
    display: none;
    position: absolute;
    top: 0;
    left: 160px;  /* show beside thumbnail */
    z-index: 999;
    background: #fff;
    padding: 5px;
    border: 1px solid #ccc;
}
.popup-content img {
    max-width: 600px;
    max-height: 600px;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;}

.loader{position: absolute;
  left: 45%;
  top:40%;
  width: 120px;
  height: 120px;}
@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #E4761F;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #5ec6ca;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #075DA3;
  color: #fff;
  height: 40px;
  font-size: 16px;
  font-weight: 600;
  z-index: 996;
  transition: all 0.5s;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar i {
  padding-right: 6px;
  line-height: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  /*top: 40px;*/
  background: #fff;
  border-bottom: 4px solid #E4761F;
}
#headcon{
  /*background: #fff;*/
  padding-right: 0px;
  /*box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);*/
}
@media (max-width: 992px) {
  #header {
    padding: 0px 0;
  }
}

#header.header-scrolled {
  top: 0;background-color: #fff;
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#header .logo a {
  color: #555555;
}

#header .logo img {
  max-height: 60px;
}

/**
* Appointment Button
*/
.appointment-btn {
  margin-left: 25px;
  background: #E4761F;
  color: #fff;
  padding: 21px 25px;
  white-space: nowrap;
  transition: 0.3s;text-align: right;
  display: inline-block;
}

.appointment-btn:hover {
  background: #32435a;
    color: #fff;
}

@media (max-width: 768px) {
  .appointment-btn {
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 35px 2px 15px;
  font-family: 'Lexend';
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

.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: #E4761F ;
}*/

.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: #3fbbc0;
}

.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 
*/
.mobile-nav-toggle {
  color: #555555;
  font-size: 28px;
  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;
  }
    .carousel .carousel, .carousel .carousel-inner, .carousel .carousel-item, .carousel .carousel-item::before {
    position: absolute;
    top: -37px !important;
    }
    .dropdown-menu{width: auto !important;}
    .computer {font-size: 14px !important;}
  /*.navbar ul {
    display: none;
  }*/
  .sim{ display:none;}
  .navbar ul {    align-items: normal;
    margin-right: 0px !important;}
	.navbar-toggler {margin-left:60px !important;}
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(60, 60, 60, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #555555;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #3fbbc0;
}

.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: #3fbbc0;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}
.about-bmit{background: #FFF1E8;}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.carousel {
  width: 100%;
  height: 84vh;
  background-color: rgba(60, 60, 60, 0.8);
  overflow: hidden;
  position: relative;
}

.carousel .carousel,
.carousel .carousel-inner,
.carousel .carousel-item,
.carousel .carousel-item::before {
  position: absolute;
  top: -115px;
  right: 0;
  left: 0;
  bottom: 0;
}

.carousel .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /*display: grid;*/
  align-items: flex-end;
}

.carousel .searchdiv {
  background: rgba(255, 255, 255);border-radius: 10px;
}

@media (max-width: 1200px) {
  .carousel .container {
    margin-left: 50px;
    margin-right: 50px;
  }
}

.carousel h2 {
  color: #2f2f2f;
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 700;
}

.carousel p {
  /*margin: 0 auto 30px auto;*/
  color: #fff;
}

.carousel .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

.carousel .carousel-inner .carousel-item,
.carousel .carousel-inner .active.carousel-item-start,
.carousel .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

.carousel .carousel-inner .active,
.carousel .carousel-inner .carousel-item-next.carousel-item-start,
.carousel .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

.carousel .carousel-inner .carousel-item-next,
.carousel .carousel-inner .carousel-item-prev,
.carousel .carousel-inner .active.carousel-item-start,
.carousel .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

.carousel .carousel-control-next-icon,
.carousel .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(63, 187, 192, 0.8);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel .carousel-control-next-icon:hover,
.carousel .carousel-control-prev-icon:hover {
  background: #3fbbc0;
  color: rgba(255, 255, 255, 0.8);
}

.carousel .carousel-indicators li {
  list-style-type: none;
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 30px;
  height: 8px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;margin-left: 10px;
}

.carousel .carousel-indicators li.active {
  opacity: 1;
  background: #E4761F;
}

.carousel .btn-get-started {
  font-family: 'Lexend';
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 10px 10px 10px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  background: #E4761F;    border-radius:0px 10px 10px 0px;
  width: 100%;
    height: 100%;
}

.carousel .btn-get-started:hover {
  background: #0471a8;
}
.travling-name{color: #E4761F;font-weight: 600;font-size: 54px;margin-right: 406px;}
@media (max-width: 992px) {
  .carousel {
    height: 18vh;
  }

  .carousel .container {
    margin-top: 40px;
	margin-left: 14px;
    margin-right: 14px;
    width: auto;
  }
}

@media (max-width: 768px) {
  .carousel h2 {
    font-size: 28px;
  }
  .travling-name{color: #E4761F;font-weight: 600;font-size: 54px;margin-right: 406px;}
  .logo {
    width: 73px !important;
    margin-top: -7px !important;
    padding-bottom: 5px !important;
}
        .py-md-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
}

@media (min-width: 1024px) {
   .computer {font-size: 14px !important;}
  .carousel .carousel-control-prev,
  .carousel .carousel-control-next {
    width: 5%;
  }
}

@media (max-height: 500px) {
  .carousel {
    height: 160vh;
  }
    
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 30px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f7fcfc;
}

.section-title {
  padding-bottom: 30px;font-family: 'Public Sans';margin-left: 10px;
}
.section-title h4 {
	color:#E4761F;
}
.section-title h3 {
  position: relative;
  color:#212529;
  font-weight:600;
  line-height: 30px;
    font-family: 'Lexend';
}
.section-title h3::after {
  content: "";
  position: absolute;
  display: block;
  width: 26px;
  height: 5px;
  background: #0A73A6;
  bottom: 14px;
  transform: rotate(89deg);
  left: calc(1% - 36px);
}
.section-title h5 {
  position: relative;
  color:#fff;
  line-height: 30px;
    font-family: 'Lexend';
}
.section-title h5::after {
  content: "";
  position: absolute;
  display: block;
  width: 26px;
  height: 5px;
  background: #0A73A6;
  bottom: 14px;
  transform: rotate(89deg);
  left: calc(1% - 36px);
}

.section-title p {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# populardes-title
--------------------------------------------------------------*/

.populardes-title h2 {
  text-transform: capitalize;
  margin-bottom: 20px;
  position: relative;font-weight: bold;
  color: #075DA3;margin-left: 20px;font-family: 'Playfair Display SC';
}

.populardes-title h2::after {
  content: "";
  position: absolute;
display: block;
width: 26px;
height: 5px;
background: #FFD301;
bottom: 14px;
transform: rotate(89deg);
left: calc(1% - 36px);
}

.populardes-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# busfeature-title
--------------------------------------------------------------*/

.busfeature-title {
  text-align: right;
}

.busfeature-title h4 {
  text-transform: capitalize;
  position: relative;
  color: #075DA3;margin-right: 30px;
}

.busfeature-title h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 28px;
  height: 5px;
  background: #FFD301;
  bottom: 15px;
  transform: rotate(89deg);
  left:calc(100% - -11px);
}

.busfeature-title p {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# busfeature-title
--------------------------------------------------------------*/

.busfeature-title {
  text-align: right;
}

.busfeature-title h4 {
  text-transform: capitalize;
  position: relative;
  color: #075DA3;margin-right: 30px;
}

.busfeature-title h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 28px;
  height: 5px;
  background: #FFD301;
  bottom: 15px;
  transform: rotate(89deg);
  left:calc(100% - -11px);
}

.busfeature-title p {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# ourroute-title
--------------------------------------------------------------*/
.ourroute-title {
  text-align: center;
  padding-bottom: 30px;
}

.ourroute-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: capitalize;
  margin-bottom: 20px;
  position: relative;
  color: #075DA3;
    font-family: 'Playfair Display SC';
}

.ourroute-title h2 {
  text-transform: capitalize;
  position: relative;
  color: #075DA3;margin-right: 30px;
}

.ourroute-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 28px;
  height: 5px;
  background: #FFD301;
  bottom: 18px;
transform: rotate(89deg);
left: calc(40% - 10px);
}

.ourroute-title p {
  margin-bottom: 0;
}
.card-ourroute
{
	background-image:url('../img/top-route.png');
}
.card-ourroute h4{color:#fff;margin-bottom:0px;text-transform:uppercase; font-family: 'Playfair Display SC';}
.computer{color:#fff;text-align:center;padding:15px;
  left: 45px;cursor:pointer;border-radius:10px;background-size: cover;
}
.mech{ background-image: url('../img/Mechanical.png') !important;
	color:#fff;text-align:center;padding:15px;background-size: cover;
  left: 45px;cursor:pointer;border-radius:10px;}
.elect-eng{background-image: url('../img/Electronics.png') !important;
	color:#fff;text-align:center;padding:15px;background-size: cover;
  left: 45px;cursor:pointer;border-radius:10px;}
.elect-tel{background-image: url('../img/Electrical.png') !important;
	color:#fff;text-align:center;padding:15px;background-size: cover;
  left: 45px;cursor:pointer;border-radius:10px;}
.general-sci{background-image: url('../img/Generalscience.png') !important;
	color:#fff;text-align:center;padding:15px;background-size: cover;
  left: 45px;cursor:pointer;border-radius:10px;}
.mba{background-image: url('../img/MBA.png') !important;
	color:#fff;text-align:center;padding:15px;background-size: cover;
  left: 45px;cursor:pointer;border-radius:10px;}
.admin-dep{background-image: url('../img/Admnistratived.png') !important;
	color:#fff;text-align:center;padding:15px;background-size: cover;
  left: 45px;cursor:pointer;border-radius:10px;}
.centered1 {
  background-image: url('../img/placement.png') !important;
	color:#fff;text-align:center;background-size: cover;left: 45px;
}
.overview{background-color:#EAEAEA;color:#212529 !important;left: 45px;}
.placement{box-shadow: 0px 4px 6px 0px #00000026;}
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding:10px 0px 10px 0px;
  min-height: 40px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 130px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}


/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.featured-services .icon-box::before {
  content: "";
  position: absolute;
  background: #d9f1f2;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}

.featured-services .icon-box:hover::before {
  background: #3fbbc0;
  top: 0;
  border-radius: 0px;
}

.featured-services .icon {
  margin-bottom: 15px;
}

.featured-services .icon i {
  font-size: 48px;
  line-height: 1;
  color: #3fbbc0;
  transition: all 0.3s ease-in-out;
}

.featured-services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.featured-services .title a {
  color: #111;
}

.featured-services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.featured-services .icon-box:hover .title a,
.featured-services .icon-box:hover .description {
  color: #fff;
}

.featured-services .icon-box:hover .icon i {
  color: #fff;
}
/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h2 {
  font-weight: 600;
  font-size: 26px; padding-bottom: 30px;font-family: 'Lexend';font-weight: 600;color: #fff;
    line-height: 50px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #3fbbc0;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.count-box {
  box-shadow:0px 20px 50px 0px rgb(0 0 0 / 20%);
  width: 100%;background: #fff;border-radius: 15px;text-align: center;margin-bottom: 10px;
}

.count-box span {
  line-height: 24px;
  display: block;
  font-weight: 700;
  font-family: Open Sans;
  color: #282828;
  padding: 10px;
}
.count-box .rimg {
  margin-top: -30px;
  width: 70px;
      border-radius: 50%;
    box-shadow: -1px 3px 3px #ddd;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials-title {
  text-align: center;
  padding-bottom: 30px;
}
.testimonials-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: capitalize;
  margin-bottom: 20px;
  position: relative;
  color: #075DA3;
    font-family: 'Playfair Display SC';
}
.testimonials-title h2::after{
	content: "";
  position: absolute;
  display: block;
  width: 28px;
  height: 3px;
  background: #FFD301;
  bottom: 18px;
  transform: rotate(89deg);
  left: calc(30% - 40px);
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height:220px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid #fff;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  color:rgba(40, 40, 40, 1);
}

.testimonials .testimonial-item h4 {
  font-size: 18px;
  font-weight: 600;
    color: #313041;
}

.testimonials .testimonial-item {
  margin: 5px 2px 0px 10px;
    padding: 30px 20px 20px 20px;
    background: #fff;
    box-shadow:-2px 1px 8px 0px #0000001F;
    border-radius: 10px;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #DEDEDE;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #DEDEDE;
}
.testimonials .bxs-star{color: rgba(246, 4, 2, 1);text-align:center;}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 20px rgba(214, 215, 216, 0.5);
  padding: 20px 0 30px 0;
}

.info-box i {
  font-size: 32px;
  color: #3fbbc0;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #c5ebec;
}

.info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.php-email-form {
    box-shadow: 0 0 20px rgba(214, 215, 216, 0.5);
    padding: 30px;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #f3f3f3;
  /*padding: 0 0 30px 0;*/
  color: #3C3C3C;
  font-size: 14px;overflow-x: hidden;
}

#footer .footer-top {
  padding: 30px 0 0px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #3fbbc0;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #65c9cd;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 19px;
  position: relative;
  padding-bottom: 12px;color:#fff;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #9F9F9F;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #E4761F;
  font-size: 18px;
  line-height: 1;margin-right: 10px;
}

#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: #9F9F9F;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #dc3545;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border: 1px solid #d5d5d5;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #3fbbc0;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #65c9cd;
}

#footer .copyright {
  padding: 10px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
}
.btn-get-started{
	color:#fff;
    background: #E4761F;
    padding: 8px 25px;
    border: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    /* padding: 14px 32px; */
    border-radius: 5px;
}
.classic-tabs .nav {
white-space:nowrap;
overflow-x:auto;
position:relative;
/*border-radius:.3rem .3rem 0 0*/
border: 1px solid #ddd;
}

@media (min-width:62rem) {
.classic-tabs .nav {
overflow-x:hidden
}
}

.classic-tabs .nav li a {
display:block;
padding:10px 41px;
font-size:14px;
text-transform:uppercase;
color: #717171;
font-weight: 500;
text-align:center;
border-radius:0
}

.classic-tabs .nav li a:not(.active) {
margin-bottom:3px
}

.classic-tabs .nav li a.active {
border-bottom:3px solid;
color: #fff !important;
}

@media (min-width:62em) {
.classic-tabs .nav li:first-child {
/*margin-left:56px*/
}
}

.classic-tabs .nav.tabs-cyan li a.active {
	border-color: #E4761F;
    background: #E4761F; 
    color: #fff;
}

.classic-tabs .nav.tabs-grey li a.active {
border-bottom: 3px solid;
    color: #fff;
    font-weight: 600;
}


.classic-tabs .nav.tabs-animated .floor {
display:inline-block;
width:30px;
height:3px;
position:absolute;
z-index:1200;
bottom:0;
transition:all .4s linear
}

.classic-tabs .tab-content.card {
border-top-left-radius:0;
border-top-right-radius:0
}
.vertab-content ul, .vertab-content ol {
	padding-left: 15px;
}
@media (min-width:768px) {
.vertab-container {
	z-index: 10;
	padding: 0 !important;
	/*margin-top: 20px;*/
	background-clip: padding-box;
	opacity: 0.97;
	filter: alpha(opacity=97);
	/*overflow: auto;*/
	margin-bottom: 10px;
}
.vertab-menu {
	padding-right: 0;
	padding-left: 0;
	padding-bottom: 0;
	display: block;
	background-color: #fff;
}
.vertab-menu .list-group {
	margin-bottom: 0;
}
.vertab-menu .list-group>a {
	margin-bottom: 0;
	border-radius: 0;
}
.vertab-menu .list-group>a, .vertab-menu .list-group>a {
	color: #0A73A6;
	background-image: none;
	border-radius: 0;
	box-sizing: border-box;
	border: none;
	border: 1px solid #CACACA;
	padding: 15px 10px;
}
.vertab-menu .list-group>a.active, .vertab-menu .list-group>a:hover, .vertab-menu .list-group>a:focus {
	position: relative;
	border: none;
	border-radius: 0;
	border: 1px solid #CACACA;
	border-left: 5px solid #E4761F;
	padding-left: 5px;
	background-image: none;
	background-color: #fff;
	color: #E4761F !important;
}
.vertab-content {
	padding-left: 20px;
	/*padding-top: 10px;*/
}
.vertab-accordion .vertab-content:not(.active) {
	display: none;
}
.vertab-accordion .vertab-content.active .collapse {
	display: block;
}	
.vertab-container .panel-heading {
	display: none;
}
.vertab-container .panel-body {
	border-top: none !important;
}
}

/* If the tc_breakpoint variable is changed, this breakpoint should be changed as well */
@media (max-width:767px) {
.vertab-container {
	margin-top: 20px;
	margin-bottom: 20px;
}
.vertab-container .vertab-menu {
	display: none;
}
.vertab-container .panel-heading {
	background-color: #F6F6F6;
	color: #0A73A6;
	padding: 15px;
	border-bottom: 1px solid #F6F6F6;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	border-left: 5px solid #F6F6F6;
}
.vertab-container .panel-heading:hover, .vertab-container .panel-heading:focus, .vertab-container .panel-heading.active {
	border-left: 5px solid #7952b3;
	border-bottom: 1px solid #7952b3;
}
.vertab-content {
	border-bottom: 1px solid #CACACA;
}
.vertab-container .panel-title a:focus, .vertab-container .panel-title a:hover, .vertab-container .panel-title a:active {
	color: #818181;
	text-decoration: none;
}

.vertab-container .panel-collapse .panel-body {
	border-top: none !important;
}
}
.me-1{background-color:#FAFAFA;
padding: 10px;
margin-bottom: 10px;}
.customer-logos {
  padding: 0 70px;
}
.slick-initialized .slick-slide{
  color: #FFF;
  height: 200px;
  margin: 0 15px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slick-next, .slick-prev{
  z-index: 5;
}
.slick-next{
  right: 15px;
}
.slick-prev{
  left: 15px;
}
.slick-next:before, .slick-prev:before{
  color: #000;
  font-size: 26px;
}