/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --theme-color: #ffa41b;
  --theme-color2: #0a1963;
  --secondary-color: #111330;
  --title-color: #1c1c1c;
  --body-color: #505050;
  --smoke-color: #f7f7f7;
  --black-color: #000000;
  --white-color: #ffffff;
  --yellow-color: #fec624;
  --success-color: #28a745;
  --error-color: #dc3545;
  --border-color: #ffccb1;
  --title-font: "Jost", sans-serif;
  --body-font: "Jost", sans-serif;
  --icon-font: "Font Awesome 5 Pro";
  --main-container: 1220px;
  --container-gutters: 30px;
  --section-space: 120px;
  --section-space-mobile: 80px;
  --section-title-space: 80px;
  --ripple-ani-duration: 5s;
}
body {
  font-family: "Poppins", sans-serif;
  color: #0a1963;
}
.container{
  position:relative;
}
a {
  color: #ffa41b;
  text-decoration: none;
}

a:hover {
  color: #0a1963;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}
/*---------------- fonts ----------------*/
.font-size-100 {
  font-size: 100px !important;
}
.font-size-90 {
  font-size: 90px !important;
}
.font-size-80 {
  font-size: 80px !important;
}
.font-size-70 {
  font-size: 70px !important;
}
.font-size-65 {
  font-size: 65px !important;
}
.font-size-60 {
  font-size: 60px !important;
}
.font-size-55 {
  font-size: 55px !important;
}
.font-size-50 {
  font-size: 50px !important;
}
.font-size-45 {
  font-size: 45px !important;
}
.font-size-40 {
  font-size: 40px !important;
}
.font-size-35 {
  font-size: 35px !important;
}
.font-size-30 {
  font-size: 30px !important;
}
.font-size-28 {
  font-size: 28px !important;
}
.font-size-27 {
  font-size: 27px !important;
}
.font-size-26 {
  font-size: 26px !important;
}
.font-size-25 {
  font-size: 25px !important;
}
.font-size-24 {
  font-size: 24px !important;
}
.font-size-23 {
  font-size: 23px !important;
}
.font-size-22 {
  font-size: 22px !important;
}
.font-size-21 {
  font-size: 21px !important;
}
.font-size-20 {
  font-size: 20px !important;
}
.font-size-19 {
  font-size: 19px !important;
}
.font-size-18 {
  font-size: 18px !important;
}
.font-size-17 {
  font-size: 17px !important;
}
.font-size-16 {
  font-size: 16px !important;
}
.font-size-15 {
  font-size: 15px !important;
}
.font-size-14 {
  font-size: 14px !important;
}
.font-size-13 {
  font-size: 13px !important;
}
.font-size-12 {
  font-size: 12px !important;
}
.font-size-11 {
  font-size: 11px !important;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffa41b;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@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: #ffa41b;
  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: #3284f1;
  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: #ffa41b;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}

#topbar .contact-info i {
  font-style: normal;
  color: #fff;
}

#topbar .contact-info i a,
#topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  transition: 0.3s;
}

#topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}

#topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

#topbar .social-links a:hover {
  color: white;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 86px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header.fixed-top {
  height: 70px;
}

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

#header .logo a {
  color: #222222;
}

#header .logo a span {
  color: #ffa41b;
}

#header .logo img {
  max-height: 60px;
}

.scrolled-offset {
  margin-top: 70px;
  padding-top: 0;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

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

.navbar li {
  position: relative;
}

.navbar > ul > li {
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 15px;
  font-weight: 600;
  color: #222222;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

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

.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #ffa41b;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #ffa41b;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 28px;
  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;
}

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-weight: 400;
}

.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: #ffa41b;
}

.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: #222222;
  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;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 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;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

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

.navbar-mobile > ul > li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover > a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

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

.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: #ffa41b;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 75vh;
  background: url("../img/hero-bg.jpg") top left;
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  background: rgba(255, 255, 255, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  position: relative;
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #222222;
  font-family: "Poppins", sans-serif;
}

#hero h1 span {
  color: #ffa41b;
}

#hero h2 {
  color: #555555;
  margin: 5px 0 30px 0;
  font-size: 24px;
  font-weight: 400;
}

#hero .btn-get-started {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #ffa41b;
}

#hero .btn-get-started:hover {
  background: #247cf0;
}

#hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: #222222;
  font-weight: 600;
  display: flex;
  align-items: center;
}

#hero .btn-watch-video i {
  color: #ffa41b;
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

#hero .btn-watch-video:hover {
  color: #ffa41b;
}

#hero .btn-watch-video:hover i {
  color: #3b8af2;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero {
    height: 100vh;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .btn-get-started,
  #hero .btn-watch-video {
    font-size: 13px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  /* overflow: hidden; */
}

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

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: #e7f1fd;
  color: #ffa41b;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
}

.section-title h3 span {
  color: #ffa41b;
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs-custom {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
  text-align: center;
  background-color: #cccccc;
  z-index: 1;
}

.breadcrumbs-custom-path {
  margin-left: -15px;
  margin-right: -15px;
  font-size: 18px;
  line-height: 1.33;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: "Teko", -apple-system, BlinkMacSystemFont, "Segoe UI", Poppins,
    "Helvetica Neue", Arial, sans-serif;
}

.breadcrumbs-custom-path > * {
  padding-left: 15px;
  padding-right: 15px;
}

.breadcrumbs-custom-path a {
  display: inline;
  vertical-align: middle;
}

.breadcrumbs-custom-path a,
.breadcrumbs-custom-path a:active,
.breadcrumbs-custom-path a:focus {
  color: #ffdb73;
}

.breadcrumbs-custom-path li {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.breadcrumbs-custom-path li::after {
  content: "/";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: -8px;
  color: rgba(255, 255, 255, 0.53);
  transform: translate3d(0, -50%, 0);
}

.breadcrumbs-custom-path li:last-child:after {
  display: none;
}

.breadcrumbs-custom-path a:hover {
  color: #ffffff;
}

.breadcrumbs-custom-path li.active {
  color: rgba(255, 255, 255, 0.53);
}

* + .breadcrumbs-custom-path {
  margin-top: 14px;
}

@media (min-width: 576px) {
  * + .breadcrumbs-custom-path {
    margin-top: 18px;
  }
}

@media (min-width: 1200px) {
  .breadcrumbs-custom {
    padding: 60px 0;
  }
}
.box-position {
  position: absolute;
  left: 0;
  top: 0;
  width: calc(100% + 150px);
  height: calc(100% + 150px);
  will-change: transform;
  animation: bgPos 100s linear infinite;
  transform: translate3d(-75px, -75px, 0) rotate(0.001deg);
  background-position: 50% 50%;
  background-size: cover;
  z-index: -1;
}
@keyframes bgPos {
  25% {
    transform: translate3d(-150px, -150px, 0) rotate(0.001deg);
  }

  75% {
    transform: translate3d(0, 0, 0) rotate(0.001deg);
  }
}
.breadcrumbs-custom:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(16 31 103 / 58%);
}
.text-yellow {
  color: #ffa41b !important;
}
/*--------------------------------------------------------------
# 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: #cbe0fb;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}

.featured-services .icon-box:hover::before {
  background: #ffa41b;
  top: 0;
  border-radius: 0px;
}

.featured-services .icon {
  margin-bottom: 15px;
}

.featured-services .icon i {
  font-size: 48px;
  line-height: 1;
  color: #ffa41b;
  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
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

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

.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.about .content ul li:first-child {
  margin-top: 35px;
}

.about .content ul i {
  background: #fff;
  box-shadow: 0px 6px 15px rgba(16, 110, 234, 0.12);
  font-size: 24px;
  padding: 20px;
  margin-right: 15px;
  color: #ffa41b;
  border-radius: 50px;
}

.about .content ul h5 {
  font-size: 18px;
  color: #555555;
}

.about .content ul p {
  font-size: 15px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #222222;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #e2eefd;
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #ffa41b;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 70px 0 60px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #f1f6fe;
}

.counts .count-box i {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #ffa41b;
  color: #fff;
  width: 56px;
  height: 56px;
  line-height: 0;
  border-radius: 50px;
  border: 5px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #062b5b;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 15px 0;
  text-align: center;
}

.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
}

.clients img:hover {
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  border: 1px solid #e2eefd;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #f1f6fe;
  border-radius: 4px;
  border: 1px solid #deebfd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
}

.services .icon-box .icon i {
  color: #3b8af2;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #222222;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(16, 110, 234, 0.1);
}

.services .icon-box:hover h4 a,
.services .icon-box:hover .icon i {
  color: #ffa41b;
}

.services .icon-box:hover .icon {
  border-color: #ffa41b;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../img/testimonials-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  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 auto 15px auto;
  color: #eee;
}

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

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

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 15px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #ffa41b;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #222222;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #555555;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #3c3c3c;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #ffa41b;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
  color: #6ba7f5;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #ffa41b;
}

.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet-active {
  background-color: #ffa41b;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(34, 34, 34, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  padding: 60px 0;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(16, 110, 234, 0.15);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #222222;
  margin: 0 3px;
  padding-top: 7px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  background: rgba(16, 110, 234, 0.8);
  display: inline-block;
  transition: ease-in-out 0.3s;
  color: #fff;
}

.team .member .social a:hover {
  background: #3b8af2;
}

.team .member .social i {
  font-size: 18px;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #222222;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing .box h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #777777;
  background: #f8f8f8;
}

.pricing .box h4 {
  font-size: 36px;
  color: #ffa41b;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing .box ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .box ul li {
  padding-bottom: 16px;
}

.pricing .box ul i {
  color: #ffa41b;
  font-size: 18px;
  padding-right: 4px;
}

.pricing .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  background: #ffa41b;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: #3b8af2;
}

.pricing .featured h3 {
  color: #fff;
  background: #ffa41b;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #ffa41b;
  color: #fff;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
}

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

.faq .faq-list li {
  border-bottom: 1px solid #d4e5fc;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq .faq-list .question {
  display: block;
  position: relative;
  font-family: #ffa41b;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: #0d58ba;
  transition: 0.3s;
}

.faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}

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

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

.faq .faq-list .collapsed {
  color: black;
}

.faq .faq-list .collapsed:hover {
  color: #ffa41b;
}

.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.3);
  padding: 20px 0 30px 0;
}

.contact .info-box i {
  font-size: 32px;
  color: #ffa41b;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #b3d1fa;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.4);
  padding: 30px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #ffa41b;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  background: #ffa41b;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #3b8af2;
}

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

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #fff;
  padding: 0 0 0px 0;
  color: #fff;
  font-size: 14px;
  background: #091655;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #f1f6fe;
  text-align: center;
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#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: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #ffa41b;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #0d58ba;
}

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

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

#footer .footer-top .footer-contact h3 {
  font-size: 24px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
  color: #fff;
}

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

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  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: #ffa41b;
  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: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

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

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

#footer .footer-top .social-links a:hover {
  background: #fff;
  color: #ffa41b;
  text-decoration: none;
}

#footer .copyright {
  text-align: center;
  float: left;
}

#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #444444;
}
.background-overlay {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-image: url(../../images/bg-14.png);
  background-position: center left;
  background-repeat: no-repeat;
  /*background-size: 200px auto;*/
  opacity: 0.5;
  background-size: contain;
}

.background-overlay2 {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-image: url(../../images/bg-14.png);
  background-position: center left;
  background-repeat: no-repeat;
  background-size: 280px auto;
  opacity: 1;
}

.background-overlay3 {
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  /* position: absolute; */
  background-image: url(../../images/bg-14.png);
  background-position: center right;
  background-repeat: no-repeat;
  background-size: 200px auto;
  /* opacity: 0.5;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s; */
  background-attachment: scroll;
}
footer strong, footer p, footer a{
  color:#fff;
}
footer a:hover{
  color:#ffa41b;
}
.about-content h6 {
  color: #d57c48;
  font-family: "Reenie Beanie", Sans-serif;
  font-size: 27px;
  /*line-height: 1.5em;*/
  line-height: 1;
  margin-bottom: 0;
}

/*
 * ----------------------------------------------------------------------------------------
 * 10.START BLOG DESIGN
 * ----------------------------------------------------------------------------------------
 */
.blog_section {
  padding-top: 100px;
  padding-bottom: 70px;
}
img {
  max-width: 100%;
}
.single_blog {
  margin-bottom: 30px;
  border-radius: 4px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}
.post_date {
  background: #ffa41b;
  color: #fff;
  padding: 5px 20px;
  margin-bottom: 0px;
  display: inline-block;
  font-size: 12px;
  position: absolute;
  right: 0px;
  top: 0px;
  margin: 10px 10px 0 0;
  z-index: 99;
  border-radius: 0px;
  font-weight: 700;
}
.post_date a {
  color: #fff;
}
.blog-text {
  padding: 10px 0 30px;
}
.single_blog .blog-text {
  padding: 10px 20px 30px;
}
.sidebar-wrap {
  position: sticky;
  top: 100px;
}
.post-meta {
  margin-top: 5px;
  margin-bottom: 8px;
  font-size: 14px;
  overflow: hidden;
}
.post-meta span,
.post-meta span a {
  margin-right: 10px;
  color: #333;
  font-weight: 500;
}
.post-meta span i {
  color: #ffa41b;
  padding-right: 3px;
}
.blog-text h4 {
  line-height: 26px;
  margin-bottom: 10px;
}
.single_blog h4 a {
  font-size: 18px;
  color: #333;
}
.single_blog h4 a {
  transition: 0.5s;
}
.single_blog h4 a:hover {
  color: #ffa41b;
}
.blog-photo {
}
.blog_image {
  position: relative;
  margin-bottom: 15px;
}
.single_blog:hover .blog_image:before {
  opacity: 1;
}
.post-btn {
  font-weight: 700;
  color: #ffa41b;
  transition: 0.5s;
  text-decoration: underline !important;
}
.post-btn:hover,
.post-btn:focus {
  color: #ffa41b;
}

.comment-box {
  padding: 0 !important;
}
.widget {
  margin-bottom: 30px;
  padding-bottom: 10px;
  background-color: #f1f8ff;
  overflow: hidden;
}
.widget_title {
  font-size: 24px;
  text-transform: capitalize;
  color: #333;
  margin: 30px 30px 12px 30px;
  padding-bottom: 14px;
  display: block;
  position: relative;
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}
.widget_title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  background-color: #fc5b62;
  width: 56px;
  height: 3px;
}

.widget_title::after {
  background-color: #0a1963;
}

.widget ul > li {
  list-style-type: none;
  padding-top: 14px;
  padding-bottom: 14px;
  font-weight: 500;
  border-bottom: 1px solid #ddd;
  padding-left: 30px;
  padding-right: 30px;
  transition: 0.5s;
}
.laveria_recent_post h3 {
  font-size: 17px;
}
.widget li a {
  font-weight: 600;
}
.widget ul {
  margin: 0;
  padding: 0;
}
/*END BLOG SINGLE PAGE DESIGN*/
/*======= social-profile ========*/
.social-profile li {
  display: inline-block;
  margin-right: 3px;
}
.social-profile li:last-child {
  margin-right: 0;
}
.social-profile li a {
  display: block;
  color: #0d233e;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  background-color: rgba(128, 137, 150, 0.1);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.social-profile li a:hover {
  background-color: #287dfa;
  color: #fff;
}

/*======= social--profile ========*/
.social--profile li a {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.social--profile li a:hover {
  background-color: #287dfa;
  color: #fff;
}
/*==== contact-address ======*/
.contact-address li {
  position: relative;
  padding-left: 45px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(128, 137, 150, 0.1);
}
.icon-element {
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  background-color: #ffa41b;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  position: relative;
  font-size: 25px;
  color: #fff;
}
.contact-address li > .icon-element {
  position: absolute;
  left: 0;
  top: 5px;
  width: 35px;
  height: 35px;
  line-height: 35px;
  font-size: 18px;
}
.title {
  font-size: 18px;
  color: #0d233e;
}
/*================== form-box ===================*/
.form-box {
  border: 1px solid rgba(128, 137, 150, 0.1);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  margin-bottom: 30px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
}

.form-title-wrap {
  padding: 20px;
  border-bottom: 1px solid rgba(128, 137, 150, 0.1);
}

.form-content {
  padding: 20px;
}

.blockquote-item {
  border-left: none;
  background-image: url(../images/img9.jpg);
  background-size: cover;
  background-position: center;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  z-index: 1;
  padding: 40px;
  position: relative;
}
.blockquote-item .blockquote__text {
  line-height: 30px;
  font-weight: 500;
  font-style: italic;
  color: #fff;
}
.blockquote-item .blockquote__meta {
  font-weight: 500;
  margin-top: 16px;
  display: -ms-flex;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  font-size: 18px;
}
.blockquote-item .blockquote__meta span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  margin-left: 5px;
}
.blockquote-item:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0d233e;
  opacity: 0.8;
  z-index: -1;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
/*======= card ========*/
.card-item {
  margin-bottom: 30px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}
.card-item .card-img {
  position: relative;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.card-item .card-img img {
  width: 100%;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.card-item .card-img .badge {
  position: absolute;
  background-color: #40cc6f;
  top: -10px;
  left: 20px;
  padding: 6px 11px;
  font-size: 12px;
  text-transform: uppercase;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  font-weight: 500;
  z-index: 1;
  color: #fff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.card-item .card-img .badge-ribbon {
  left: auto;
  right: 20px;
  background-color: #f9b851;
}
.card-item .card-img .add-to-wishlist {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  line-height: 35px;
  font-size: 18px;
  cursor: pointer;
  color: #0d233e;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.card-item .card-img .add-to-wishlist:hover {
  background-color: #287dfa;
  color: #fff;
}
.card-item .card-title {
  font-size: 19px;
  color: #0d233e;
  margin-bottom: 2px;
}
.card-item .card-title a {
  color: #0d233e;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.card-item .card-title a:hover {
  color: #287dfa;
}
.card-item .card-meta {
  font-size: 15px;
}
.card-item .card-meta .post-dot {
  width: 4px;
  height: 4px;
  background-color: rgba(128, 137, 150, 0.4);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
  margin-left: 5px;
  position: relative;
  top: -3px;
}
.card-item .card-body {
  padding: 25px 10px;
  min-height: auto;
}
@media (max-width: 425px) {
  .card-item .list-items-2 li span {
    width: 100%;
  }
}
.card-item .card-rating {
  padding-top: 12px;
  padding-bottom: 12px;
}
.card-item .card-rating .badge {
  background-color: #f9b851;
  font-size: 15px;
}
.card-item .card-rating .review__text {
  padding-left: 4px;
  padding-right: 4px;
  color: #f9b851;
  font-size: 15px;
}
.card-item .card-rating .rating__text {
  font-size: 14px;
}
.card-item .card-price {
  font-size: 15px;
}
.card-item .card-price .price__from {
  font-size: 13px;
}
.card-item .card-price .price__num {
  color: #0d233e;
  font-size: 18px;
  font-weight: 500;
}
.card-item .card-price .price__text {
  display: block;
  line-height: 16px;
}
@media (max-width: 1199px) {
  .card-item .card-price {
    display: block !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .card-item .card-price {
    display: flex !important;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .card-item .card-price {
    display: flex !important;
  }
}
.card-item:hover {
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  -o-transform: translateY(-3px);
  transform: translateY(-3px);
}
/*======= car-card ========*/
.car-card .card-img {
  overflow: hidden;
  /*max-height:199px;*/
}
.car-card .card-img img {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  /*height: 165px;*/
  /*width: auto;*/
  /*margin: 0 auto;*/
  /*display: block;*/
}
.car-card .card-img .badge {
  top: 20px;
}
.car-card .card-img:hover img {
  -webkit-transform: scale(1.04);
  -moz-transform: scale(1.04);
  -ms-transform: scale(1.04);
  -o-transform: scale(1.04);
  transform: scale(1.04);
}

.car-card .card-rating {
  padding-bottom: 14px;
}

.car-card .card-body {
  padding-top: 10px;
}

.car-card .card-title {
  margin-bottom: 0;
  margin-top: 2px;
}

.car-card:hover {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.card-attributes {
  padding-bottom: 12px;
}
.card-attributes ul li {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(128, 137, 150, 0.1);
  color: #0d233e;
  font-size:14px;
}
.card-attributes ul li:last-child {
  border-right: none;
}
.card-attributes ul li i {
  padding-right: 7px;
  font-size: 16px;
}
/*** 

====================================================================
    Feature Section
====================================================================

***/
.features-section {
  position: relative;
  padding: 100px 0px 90px;
}
.features-section:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #fcf9f7;
  right: 62px;
  width: auto;
  content: "";
}
@media (max-width: 1399.98px) {
  .features-section:before {
    right: 0;
  }
}
.features-section .icon-dots {
  position: absolute;
  top: 0;
  left: 0;
}
.features-section .icon-plane-2 {
  position: absolute;
  bottom: 30px;
  left: 465px;
}
@media (max-width: 1199.98px) {
  .features-section .title-column .inner-column .title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 30px;
  }
}
@media (max-width: 575.98px) {
  .features-section .title-column .inner-column .title {
    font-size: 30px;
  }
}

.feature-block {
  position: relative;
  margin-top: -12px;
}
@media (max-width: 1199.98px) {
  .feature-block {
    margin-top: 0;
  }
}
@media (max-width: 991.98px) {
  .feature-block {
    margin-top: 20px;
  }
}
.feature-block .inner-box {
  padding: 30px 0 20px;
  background: var(--theme-color-light);
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
@media (max-width: 1199.98px) {
  .feature-block .inner-box {
    width: 100%;
    height: 100%;
  }
}
.feature-block .inner-box:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}
.feature-block .inner-box:hover .icon {
  background-color: var(--theme-color2);
  color: var(--theme-color-dark);
}
.feature-block .inner-box .icon {
  
  position: relative;
  color: var(--theme-color1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  line-height: 90px;
  font-size: 50px;
  border-radius: 50%;
  margin: 0 auto 30px;
  background: #f8f5f1;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}
.feature-block .inner-box .icon img{
  height:55px;
}
.feature-block .inner-box .title {
  font-weight: 600;
}
.feature-block .inner-box .title a:hover {
  color: var(--theme-color2);
}
.auto-container {
  position: static;
  max-width: 1320px;
  padding: 0px 15px;
  margin: 0 auto;
  width: 100%;
}
.features-section .icon-dots {
  position: absolute;
  top: 0;
  left: 0;
}
.icon-dots {
  width: 331px;
  height: 375px;
  background-image: url(../../images/icons/icon-dots.png);
}
.icon-plane-2 {
  width: 387px;
  height: 144px;
  background-image: url(../../images/icons/icon-plane-2.png);
}
.features-section .icon-plane-2 {
  position: absolute;
  bottom: 30px;
  left: 465px;
}
.bounce-x {
  -webkit-animation: bounce-x 10s infinite linear;
  animation: bounce-x 10s infinite linear;
}
@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
/*------------------- 4.9. Packages  -------------------*/
.package-review i {
  color: var(--theme-color2);
  font-size: 14px;
}

.package-meta a {
  margin-right: 20px;
  position: relative;
}
.package-meta a i {
  margin-right: 4px;
}
.package-meta a::before {
  content: "";
  width: 1px;
  height: 70%;
  opacity: 0.7;
  background-color: var(--body-color);
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
}
.package-meta a:last-child {
  margin-right: 0;
}
.package-meta a:last-child::before {
  display: none;
}

.package-price {
  font-size: 20px;
  font-weight: 600;
  transition: 0.5s;
}

.package-style1 {
  background-color: var(--white-color);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
}
.package-style1 .package-img {
  overflow: hidden;
}
.package-style1 .package-img img {
  transition: 0.5s;
}
.package-style1 .package-content {
  padding: 25px 10px 30px;
}
.package-content .package-meta a {
  margin-right: 10px;
  position: relative;
  font-size: 11px;
}
.package-style1 .package-title {
  font-size: 20px;
  font-weight: 600;
  margin: 3px 0;
}
.package-style1 .package-title a {
  color: var(--body-color);
}
.package-style1 .package-title a:hover {
  color: var(--theme-color);
}
.package-style1 .package-text {
  margin-bottom: 10px;
}
.package-style1 .package-meta {
  border-top: 1px solid var(--border-color);
  padding-top: 12px;
}
.package-style1 .package-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}
.package-style1 .vs-btn {
  padding: 10px 15px;
  font-size: 14px;
}
.package-style1:hover {
  box-shadow: 0px 13px 48px 0px rgba(255, 104, 26, 0.07);
}
.package-style1:hover .package-img img {
  /* transform: scale(1.1); */
}
.package-style1:hover .package-price {
  color: var(--theme-color);
}

.package-review2 i {
  color: var(--theme-color);
}
.vs-btn {
  border: none;
  vertical-align: middle;
  display: inline-block;
  text-align: center;
  font-family: var(--title-font);
  background-color: var(--body-color);
  color: var(--white-color);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  padding: 15px 30px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-transform: uppercase;
}
.vs-btn.style4 {
  background-color: var(--theme-color);
}
.package-style1 .vs-btn {
  padding: 10px 15px;
  font-size: 14px;
}
.package-style1 .package-meta {
  border-top: 1px solid var(--border-color);
  padding-top: 12px;
}
.shape-mockup {
  display: inline-block;
  position: absolute;
}
.background-image,
[data-bg-src] {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.shape-mockup-wrap {
  position: relative;
  overflow: hidden;
}
/*img:not([draggable]),*/
/*embed,*/
/*object,*/
/*video {*/
/*  max-width: 100%;*/
/*  height: auto;*/
/*}*/
.spin {
  animation: spin var(--duration, 40s) infinite linear;
}
.ripple-animation,
.play-btn:after,
.play-btn:before {
  animation-duration: var(--ripple-ani-duration);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-name: ripple;
}
.jump-reverse-img,
.jump-img,
.jump-reverse,
.jump {
  animation: jumpping var(--duration, 6s) infinite linear;
}
@-webkit-keyframes jumpping {
  0% {
    transform: translateY(-30px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(-30px);
  }
}
@keyframes jumpping {
  0% {
    transform: translateY(-30px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(-30px);
  }
}
.about-list1 {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  list-style: none;
}
.about-list1 li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 5px;
  margin-right: 15px;
}
.about-list1 li::before {
  content: "\ef14";
  width: 6px;
  height: 6px;
  /* outline: 5px solid var(--border-color);
  background-color: var(--theme-color);
  border-radius: 50%; */
  position: absolute;
  left: 5px;
  /* top: 10px; */
  font-family: remixicon!important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}
.scroll-btn {
  position: fixed;
  bottom: 300px;
  right: 30px;
  z-index: 94;
  opacity: 0;
  visibility: hidden;
  display: inline-block;
  border-radius: 50%;
}
.scrollToTop {
  position: fixed;
  right:15px;
  bottom: 500px;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
  z-index: 96;
}

.scrollToTop.show {
  bottom: 20px;
  opacity: 1;
  visibility: visible;
}
.scroll-btn:before {
  content: "";
  position: absolute;
  left: var(--extra-shape, -6px);
  top: var(--extra-shape, -6px);
  right: var(--extra-shape, -6px);
  bottom: var(--extra-shape, -6px);
  background-color: transparent;
  border-radius: inherit;
  z-index: 1;
  border: 2px dashed var(--theme-color2);
  transition: all ease 0.4s;
  animation: spin 13s infinite linear;
}
.scroll-btn i {
  display: inline-block;
  background-color: var(--theme-color2);
  color: var(--white-color);
  text-align: center;
  font-size: 32px;
  width: var(--btn-size, 50px);
  height: var(--btn-size, 50px);
  line-height: var(--btn-size, 50px);
  z-index: 2;
  border-radius: inherit;
  position: relative;
  transition: all ease 0.8s;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.02);
}
.blog-style3 {
  border: none;
  box-shadow: 0px 0px 5px rgba(255, 104, 26, 0.15);
  padding: 8px 8px;
  border-radius: 10px;
}
.font-size-10{
  font-size:10px !important;
}
.blog-style3 .blog-img {
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 24px;
}
.blog-style3 .blog-img img {
  transition: 0.5s ease-in-out;
}
.blog-style3 .blog-title {
  font-size: 24px;
  margin-bottom: 2px;
}
.blog-style3 .blog-text {
  margin-bottom: 15px;
}
.blog-style3 .vs-btn {
  padding: 16px 20px;
  font-size: 14px;
  margin-left: 4px;
}
.blog-style3 .vs-btn i {
  margin-left: 4px;
}
.blog-style3 .blog-bottom {
  margin-top: 0;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog-style3 .blog-date {
  margin-right: 4px;
}
.blog-style3 .blog-date i {
  margin-right: 4px;
}
.blog-style3:hover .blog-img img {
  transform: scale(1.1);
}
/* ==========================================================================
   Slider Section
   ========================================================================== */
/* .slider-content-wrap{ height: 550px; }
.dl-slider .overlay{
	background-color: rgba(0,0,0,0.3);
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
} */

.slider-content-wrap picture {
  width: 100%;
}
.dl-slider .bg-img {
  display: block;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  z-index: -1;
}
.dl-slider .dl-btn-group {
  margin-top: 25px;
  overflow: hidden;
}
.dl-slider .dl-btn {
  background-color: #fff323;
  display: inline-block;
  color: #13287e;
  font-size: 15px;
  line-height: 12;
  font-family: "Heebo", sans-serif;
  letter-spacing: 0;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  padding: 0 30px;
  line-height: 45px;
  border-radius: 3px;
}
.dl-slider .dl-btn i {
  margin-left: 5px;
  line-height: 45px;
}
.dl-slider .dl-btn:hover {
  background-color: #13287c;
  color: #fff;
  transition: all 0.2s ease-in-out;
}

/*Slider Resposnsive CSS
==========================*/
@media only screen and (max-width: 992px) {
  /* .slider-content-wrap{
      height: 400px;
  } */

  .dl-slider .dl-btn-group {
    margin-top: 10px;
  }
  .dl-slider .dl-btn {
    line-height: 45px;
    padding: 0 35px;
    font-size: 12px;
  }
  .dl-slider.owl-carousel div.owl-nav button {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 10px;
  }
  .dl-slider .dl-caption.dl-border {
    display: none !important;
  }
}

@media only screen and (max-width: 520px) {
  .dl-slider .slick-arrow {
    display: none !important;
  }
}

/* Bullets */
.dl-slider .slick-dots {
  width: 100%;
  height: auto;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 20px;
  margin: 0;
  list-style: none;
}
.dl-slider .slick-dots li {
  display: inline-block;
  margin: 0 6px;
}
.dl-slider .slick-dots li button {
  background-color: rgba(19, 40, 126, 0.3);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  overflow: hidden;
  text-indent: -99999px;
  padding: 0;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  border:none;
}
.dl-slider .slick-dots li button:focus,
.dl-slider .slick-dots li button:active {
  outline: none;
}
.dl-slider .slick-dots li.slick-active button {
  background-color: #FFA41C;
  transition: all 0.3s ease-in-out;
}
/* Vertical Dots */
.dl-slider.vertical-dots .slick-dots {
  width: auto;
  height: auto;
  bottom: 50%;
  left: auto;
  right: 50px;
  transform: translateY(50%);
}
.dl-slider.vertical-dots .slick-dots li {
  display: block;
  margin: 5px 0;
}
/* Slick */
.dl-slider .slick-arrow {
  display: none !important;
  background-color: rgba(19, 40, 126, 0.4);
  color: #ddd;
  font-size: 14px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  z-index: 1;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.dl-slider .slick-arrow.slick-next {
  left: auto;
  right: 0;
}
.dl-slider .slick-arrow:hover {
  background-color: rgba(19, 40, 126, 0.6);
  color: #fff;
  transition: all 0.3s ease-in-out;
}
/* ------------------------------------
	05. About Section CSS
---------------------------------------*/
.rs-about.style1 .about-images {
  position: relative;
}
.rs-about.style1 .about-images .about-widget {
  position: absolute;
  color: #FFFFFF;
  font-family: "Roboto", Sans-serif;
  font-size: 16px;
  font-weight: 600;
  width: 290px;
  max-width: 290px;
  right: 64px;
  top: 476px;
}
.rs-about.style1 .about-images .about-widget .about-style {
  padding: 25px 40px 25px 105px;
  background-image: url(assets/images/about/style1/ibg.png);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 6px 6px 6px 6px;
}
.rs-about.style1 .about-img {
  margin: 0px 0px 0px -42px;
}
.rs-about.style2 {
  position: relative;
  z-index: 11;
}
.rs-about.style2 .services-item {
  display: flex;
}
.rs-about.style2 .services-item .services-icon img {
  max-width: unset;
  width: 90px;
  height: 70px;
}
.rs-about.style2 .services-item .services-content {
  padding-left: 24px;
}
.rs-about.style2 .services-item .services-content .title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: #101010;
  margin: 0 0 10px;
}
.rs-about.style2 .services-item .services-content .desc {
  color: #101010;
  margin: 0;
}
.rs-about.style2 .about-images {
  position: relative;
  z-index: 11;
}
.rs-about.style2 .about-images .about-animation .animation {
  position: absolute;
}
.rs-about.style2 .about-images .about-animation .animation.dot-img {
  right: 54px;
  top: 30px;
  z-index: -11;
}
.rs-about.style2 .about-images .about-animation .animation.cleaning-img {
  left: -53px;
  top: -80px;
}
.rs-about.style2 .about-images .about-animation .animation.cleaning-img img {
  max-width: 200px;
}
.rs-about.style2 .about-images .rs-animate-ab2 {
  position: absolute;
  right: 48px;
  bottom: -10px;
  width: 270px;
  max-width: 270px;
  padding: 28px 30px 19px 30px;
  background-color: #01539F;
  border-radius: 50px 0px 50px 0px;
}
.rs-about.style2 .about-images .rs-animate-ab2 .rs-pie-content {
  display: flex;
  align-items: center;
  position: relative;
}
.rs-about.style2 .about-images .rs-animate-ab2 .rs-pie-content .rs-pie {
  display: inline-block;
  position: relative;
  text-align: center;
}
.rs-about.style2 .about-images .rs-animate-ab2 .rs-pie-content .rs-pie span {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
  display: block;
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.rs-about.style2 .about-images .rs-animate-ab2 .rs-pie-content .number {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  line-height: 30px;
  padding: 0px 0px 0px 23px;
  margin: -4px 0px 0px 0px;
}
.rs-about.style3 {
  position: relative;
}
.rs-about.style3 .about-img {
  position: relative;
}
.rs-about.style3 .about-img .about-widget {
  position: absolute;
  width: 220px;
  max-width: 220px;
  top: 392px;
  left: -98px;
}
.rs-about.style3 .about-img .about-widget .counter-part {
  padding: 26px 40px 29px 40px;
  background-color: transparent;
  background-image: linear-gradient(120deg, #1c6c28 32%, #ffd600 100%);
  border-radius: 5px 5px 5px 5px;
}
.rs-about.style3 .about-img .about-widget .counter-part .rs-count {
  font-size: 68px;
  line-height: 68px;
  font-weight: 700;
  color: #fff;
  position: relative;
  display: inline-block;
  padding-right: 45px;
}
.rs-about.style3 .about-img .about-widget .counter-part .rs-count:before {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.rs-about.style3 .about-img .about-widget .counter-part .title {
  color: #ffffff;
  margin: 0;
}
.rs-about.style3 .rs-animation {
  position: absolute;
  left: -31px;
  top: 15px;
}
.rs-about.style4 .about-images {
  position: relative;
}
.rs-about.style4 .about-images .about-widget {
  background-color: #01539F;
  width: 275.217px;
  max-width: 275.217px;
  bottom: 0px;
  right: 55px;
  position: absolute;
}
.rs-about.style4 .about-images .about-widget .services-item {
  display: flex;
  padding: 12px 0px 12px 20px;
}
.rs-about.style4 .about-images .about-widget .services-item .services-icon img {
  width: 50px;
  height: 59px;
  max-width: unset;
}
.rs-about.style4 .about-images .about-widget .services-item .services-content {
  padding: 0px 0px 0px 15px;
  margin: 12px 0px 0px 0px;
}
.rs-about.style4 .about-images .about-widget .services-item .services-content .services-desc {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45em;
  color: #ffffff;
  margin-bottom: 0;
}
.y-middle {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.veritcal {
  animation-name: veritcal;
  animation-timing-function: linear;
  animation-duration: 12s;
  animation-iteration-count: infinite;
}
@keyframes veritcal {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(100px);
  }
  100% {
    transform: translateY(0);
  }
}
.sec-title2 .brush-content .sub-text {
  font-size: 17px;
  font-weight: 600;
  line-height: 28px;
  color: #01539F;
  text-transform: uppercase;
  margin: 6px 0 0px;
  display: block;
}
.sec-title2 .title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: #011b67;
  margin: 0;
}
.line-clamp-2,
.line-clamp-3,
.line-clamp-4 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.line-clamp-3 {
  -webkit-line-clamp: 3;
}
.line-clamp-2 {
  -webkit-line-clamp: 2;
}
.floatwa {
    position: fixed;
    bottom: 20px;
    left: 15px;
    z-index: 1000;
    margin: auto;
    float: none;
}
.tombolwa {
    text-align: right;
    margin: 0;
    margin-left: 0;
    text-align: center;
    float: none;
}
.floatwa a {
    color: white;
}

.BackgroundImage-Container {
    /*position: relative;*/
    width : 100%;
    height : 100%;
}

.BackgroundImage {
    position: absolute;
    top : 0;
    right : 0;
    bottom: 0;
    left: 0;
    /*width : 100%;*/
    height: 100% !important;
    object-fit: contain;
}
 .slick-slide img,.about-images img, section img {
    height: auto;
}
@media only screen and (min-width: 768px){
    .wabutton {
        width: 70px;
        height: 70px;
        position: fixed;
        bottom: 1%;
        left: 20px;
        z-index: 100;
    }    
}

@media (max-width: 768px) {
  #footer .copyright,
  #footer .credits {
    float: none;
    text-align: center;
    padding: 2px 0;
  }
  .auto-container{
    position:relative;
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
  }

  .features-section .icon-plane-2 {
    position: absolute;
    bottom: 30px;
    left: 2px;
  } 
  .feature-block .inner-box {
    background: white;
  }

  .features-section {
    padding: 60px 0px 45px;
  }
  .btn-text{
    width:100%;
    padding: 10px;
  }
  .package-style1 .vs-btn {
    padding: 15px 50px;
    font-size: 14px;
  }

  .car-card .card-img img {
    height: auto;
    width: 100%;
  }
  .car-card .card-img {
    overflow: hidden;
    max-height: 300px;
  }
  
  .features-section .icon-plane-2 {
    display: none;
 }
 .background-overlay{
     height: 0;
     width: 0;
     display:none;
 }
 
 .wabutton {
    width: 70px;
    height: 70px;
    position: fixed;
    bottom: 1%;
    left: 20px;
    z-index: 100;
 }
 body{
     overflow-x: hidden
 }
 
 .BackgroundImage {
    max-height: 579px !important;
    object-fit: contain;
 }
 

}
