/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #b33837;
  text-decoration: none;
}

a:hover {
  color: #860f0e;
  text-decoration: none;
}

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

/*--------------------------------------------------------------
# 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 #b33837;
  border-top-color: #d1e6f9;
  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: #b33837;
  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: #298ce5;
  color: #fff;
}

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

.datepicker-dropdown {
  padding: 20px !important;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #000;
  height: 40px;
  font-size: 16px;
  transition: all 0.5s;
  z-index: 996;
}

/*#topbar.topbar-scrolled {
  top: -40px;
}*/

#topbar .contact-info a {
  line-height: 1;
  color: #fff;
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  color: #b33837;
}

#topbar .contact-info i {
  color: #b33837;
  padding-right: 4px;
  margin-left: 15px;
  line-height: 0;
}

#topbar .contact-info i:first-child {
  margin-left: 0;
}

#topbar .social-links a {
  color: #fff;
  padding-left: 15px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

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

#topbar .social-links a:first-child {
  border-left: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  top: 40px;
  box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
}

#header.header-scrolled {
  position: fixed;
  top: 0;
  z-index: 999;
  transition: all .5s ease;
  width: 100%;
}

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

#header .logo a {
  color: #2c4964;
}

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

/**
* Appointment Button *
*/
.appointment-btn {
  margin-left: 25px;
  background: #b33837;
  color: #fff;
  border-radius: 50px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 16px;
  display: inline-block;
}

.appointment-btn:hover {
  background: #860f0e;
  color: #fff;
}
.main-btn {
  background: #b33837;
  color: #fff;
  border-radius: 50px;
  padding: 12px 30px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 16px;
  display: inline-block;
}

.main-btn:hover {
  background: #860f0e;
  color: #fff;
}

.btn-default {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    text-transform: capitalize;
    background: #b33837;
    color: #ffffff!important;
    border-radius: 100px;
    padding: 16px 25px;
    margin-right: 48px;
    border: none;
    transition: all 0.5s ease-in-out;
    position: relative;
    z-index: 1;
}
.btn-default::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #b33837;
    background-image: url(../images/arrow-white.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 14px auto;
    transform: translate(48px, 0px);
    transition: all 0.4s ease-in-out;
}
.btn-default:hover::before {
    background-color: #040401;
    background-size: 14px auto;
    transform: translate(48px, 0px) rotate(45deg);
}

@media (max-width: 768px) {
  .appointment-btn {
    margin: 0 15px 0 0;
    padding: 6px 18px;
  }
}

/*--------------------------------------------------------------
# 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 {
  position: relative;
  white-space: nowrap;
  padding: 8px 0 8px 20px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  color: #2c4964;
  white-space: nowrap;
  transition: 0.3s;
  border-bottom: 2px solid #fff;
  padding: 5px 2px;
  font-weight: 700;
}

.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: #b33837;
  border-color: #b33837;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 20px;
  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-size: 16px;
  font-weight: 500;
  text-transform: none;
  color: #082744;
  border: 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: #b33837;
}

.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: #2c4964;
  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(28, 47, 65, 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>ul>li {
  padding: 0;
}

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

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

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: calc(100% - 100px);
  height: 750px;
  background: url("../images/slider2.jpg") top center;
  background-size: cover;
  position: relative;
  border-radius: 46px;
  margin: 0 50px;
}
#hero:after{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9;
}

#hero .container {
  position: relative;
  z-index: 99;
}

#hero h1 {
  margin: 0;
  font-size: 70px;
  font-weight: 700;
  line-height: 80px;
  color: #fff;
}

#hero h5{
  color: #b33837;
  font-weight: 700;

}
#hero p {
  color: #fff;
  margin: 10px 0 0 0;
  font-size: 18px;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 35px;
  margin-top: 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: #b33837;
}

#hero .btn-get-started:hover {
  background: #860f0e;
}

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

@media (max-width: 992px) {
  #hero {
    margin-bottom: 0;
    height: 70vh;
  }

  #hero .container {
    padding-bottom: 63px;
  }

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

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

@media (max-height: 600px) {
  #hero {
    height: 110vh;
  }
}

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

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #2c4964;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #b33837;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}*/

.about-us {
    padding: 100px 0;
}

.section-title {
    margin-bottom: 40px;
}
.section-title h3 {
    display: inline-block;
    position: relative;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2em;
    text-transform: capitalize;
    color: #b33837;
    margin-bottom: 15px;
}
.section-title h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 0;
}
.section-title p {
    margin-top: 20px;
    margin-bottom: 0;
}
.about-content-body {
    margin-bottom: 40px;
}
.about-trusted-booking {
    display: flex;
    border-bottom: 1px solid #ececec;
    padding-bottom: 30px;
    margin-bottom: 30px;
}
.about-trusted-booking .icon-box {
    position: relative;
    margin-right: 20px;
    padding: 10px 0px 0px 10px;
}
.about-trusted-booking .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: #ff3600;
    opacity: 10%;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    z-index: 0;
    transition: all 0.4s ease-in-out;
}
.about-trusted-booking .icon-box img {
    position: relative;
    max-width: 74px;
    z-index: 1;
}
.trusted-booking-content {
    width: calc(100% - 94px);
}
.trusted-booking-content h3 {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 10px;
}
.trusted-booking-content p {
    margin: 0;
}
.about-image {
    position: relative;
    background-position: bottom 25px right 50px;
    background-size: auto;
    padding-bottom: 100px;
    margin-right: 40px;
    padding-left: 10px;
}
.about-img-1 {
    width: 414px;
    position: relative;
}
.about-img-1::before {
    content: '';
    position: absolute;
    top: -10px;
    bottom: 0;
    left: -10px;
    right: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #ececec;
    border-radius: 200px;
    z-index: 1;
}
figure {
    margin: 0;
}
.reveal {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}



.reveal img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}
.about-img-1 img {
    width: 100%;
    aspect-ratio: 1 / 1.37;
    object-fit: cover;
    border-radius: 200px;
}
.about-img-2 {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
}
.about-img-2::before {
    content: '';
    position: absolute;
    top: -8px;
    bottom: 0;
    left: -8px;
    right: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #ececec;
    border-radius: 160px;
    z-index: 1;
}
.about-img-2 img {
    width: 100%;
    aspect-ratio: 1 / 1.37;
    object-fit: cover;
    border-radius: 160px;
}

/*--------------------------------------------------------------
# Service 
---------------------------------------------------------------*/
.bg-section {
    position: relative;
    width: 100%;
    background: #fbe9ea;
    border-radius: 46px;
    margin: 0 auto;
    width: calc(100% - 100px);
    margin: 0 auto;
}
.our-services {
    background-position: bottom left;
    background-size: auto;
    padding: 100px 0;
}

.section-row {
    margin-bottom: 60px;
}

.section-row .section-title {
    width: 100%;
    max-width: 705px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 0;
}




.btc_ln_img_wrapper img{
  -webkit-border-top-left-radius: 10px;
    -moz-border-top-left-radius: 10px;
    border-top-left-radius: 10px;
  -webkit-border-top-right-radius: 10px;
    -moz-border-top-right-radius: 10px;
    border-top-right-radius: 10px;
}
.btc_ln_img_cont_wrapper{
  background:#ffffff;
  padding:30px;
  -webkit-border-bottom-left-radius: 10px;
    -moz-border-bottom-left-radius: 10px;
    border-bottom-left-radius: 10px;
  -webkit-border-bottom-right-radius: 10px;
    -moz-border-bottom-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.btc_ln_img_cont_wrapper h4 {
  font-size: 24px;
    font-weight: 800;
    text-transform: capitalize;
    margin-bottom: 10px;
    transition: all 0.5s ease-in-out;
    color: #333;
}


.btc_ln_img_cont_wrapper p{
  margin-top:15px;
  font-size: 16px;
  
}
img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
/*.btc_ln_img_cont_wrapper span a{
  font-size:16px;
  font-weight:600;
  text-transform:uppercase;
}
.btc_ln_img_cont_wrapper span a i{
  font-size:16px;
}*/
.btc_ln_img_wrapper{
  position:relative;
  overflow:hidden;
}
.btc_ln_img_wrapper:before{
      background-color: rgba(255, 255, 255, 0.2);
    content: "";
    height: 200%;
    left: -280px;
    position: absolute;
    top: -50%;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
    -webkit-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 80px;
    z-index: 0;
}
.btc_ln_img_wrapper:after{
      background-color: rgba(255, 255, 255, 0.2);
    content: "";
    height: 200%;
    left: 180%;
    position: absolute;
    top: -50%;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
    -webkit-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 80px;
    z-index: 0;
}
.btc_team_slider_cont_main_wrapper:hover .btc_ln_img_wrapper:before{
      left: 180%;
    -webkit-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
}
.btc_team_slider_cont_main_wrapper:hover .btc_ln_img_wrapper:after{
     left: -280px;
    -webkit-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
}

.btc_ln_img_cont_wrapper span a{
  display: inline-block;
  position: relative;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    color:#b33837;
    padding-right: 35px;
    transition: all 0.4s ease-in-out;
}

.btc_team_slider_cont_main_wrapper:hover .btc_ln_img_cont_wrapper span a{
  color: #040404;
  transition: all 0.4s ease-in-out;
}

.btc_ln_img_cont_wrapper span a::after{
    content: '';
    position: absolute;
    top: 2px;
    right: 0;
    bottom: 0;
    background-image: url("../images/arrow-white.svg");
    background-repeat: no-repeat;
    background-position: center center;
  background-size: 8px auto;
  background-color: #b33837;
  border-radius: 50%;
    width: 24px;
    height: 24px;
    transition: all 0.4s ease-in-out;
}

.btc_team_slider_cont_main_wrapper:hover .btc_ln_img_cont_wrapper span a::after{
  background-color: #040404;
  transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}

/*--------------------------------------------------------------
# How It Works
---------------------------------------------------------------*/

.how-it-work {
    padding: 50px 0 100px;
}
.how-work-accordion .accordion-item {
    position: relative;
    background: none;
    border-bottom: 1px solid #ececec;
    padding-bottom: 25px;
    margin-bottom: 25px;
}
.how-work-accordion .accordion-item .icon-box {
    padding: 5px 0px 0px 5px;
    position: absolute;
    left: 0;
    top: 4px;
}
.how-work-accordion .accordion-item .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: #ff3600;
    opacity: 10%;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    z-index: 0;
}
.how-work-accordion .accordion-item .icon-box img {
    position: relative;
    max-width: 34px;
    z-index: 1;
}
.how-work-accordion .accordion-header {
    position: relative;
}
.accordion-header {
    margin-bottom: 0;
}
.how-work-accordion .accordion-item .accordion-button {
    position: relative;
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    border: none;
    box-shadow: none;
    padding: 5px 30px 5px 60px;
}

.how-work-accordion .accordion-header .accordion-button::after, .how-work-accordion .accordion-header .accordion-button.collapsed::after {
    content: '\f077';
    position: absolute;
    top: 50%;
    right: 0;
    font-family: 'Font Awesome 6 Free';
    font-size: 20px;
    font-weight: 900;
    color: #040401;
    transform: translate(0px, -50%);
    transition: all 0.3s ease-in-out;
}
.how-work-accordion .accordion-header .accordion-button.collapsed::after {
    transform: rotate(-180deg) translate(0px, 50%);
}

.how-work-accordion .accordion-item .accordion-body {
    padding: 5px 30px 0px 60px;
}
.how-work-accordion .accordion-item .accordion-body p {
    margin: 0;
}
.how-work-image {
    position: relative;
    background-position: bottom right;
    padding-bottom: 50px;
    margin-left: 30px;
}
.how-work-img {
    position: relative;
    text-align: center;
}
.how-work-img img {
    border-radius: 200px;
}
.how-work-img::before {
    content: '';
    position: absolute;
    top: -10px;
    bottom: 0;
    left: -10px;
    right: 0;
    width: 414px;
    height: 100%;
    margin: 0 auto;
    border: 1px solid #ececec;
    border-radius: 200px;
    z-index: 1;
}
.trusted-client {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #ff3600;
    border-radius: 16px;
    width: 100%;
    max-width: 200px;
    padding: 20px;
    animation: trustedmoveobject 3s infinite linear alternate;
    z-index: 2;
}
.trusted-client-content {
    border-bottom: 2px solid #ffffff;
    margin-bottom: 20px;
    padding-bottom: 20px;
}
.trusted-client-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}
/*-------------------------------------------------------------
# Fleet 
--------------------------------------------------------------*/
.perfect-fleet.bg-section {
   
    padding: 100px 0;
}
.perfect-fleet-item {
    border: 1px solid #ececec;
    border-radius: 30px;
    padding: 20px;
}

.perfect-fleet-item .image-box{
  text-align: center;
  margin-bottom: 25px;
}

.perfect-fleet-title{
  margin-bottom: 25px;
}

.perfect-fleet-title h3{
  font-size: 12px;
  font-weight: 600;
  line-height: 1em;
  display: inline-block;
  background-color: #ececec;
  border-radius: 100px;
  padding: 10px 20px;
  margin-bottom: 15px;
}

.perfect-fleet-title h2{
  font-size: 20px;
  font-weight: 600;
}

/*.perfect-fleet-body{
  border-bottom: 1px solid #ececec;
  margin-bottom: 25px;
  padding-bottom: 25px;
}*/

.perfect-fleet-body ul{
  list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.perfect-fleet-body ul li{
  position: relative;
    width: calc(50% - 5px);
    text-transform: capitalize;
    padding-left: 25px;
}

.perfect-fleet-body ul li img{
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
      width: auto !important;
}

.perfect-fleet-pricing{
  width: 100%;
}

.perfect-fleet-pricing h2{
  font-size: 24px;
}

.perfect-fleet-pricing h2 span{
  font-size: 14px;
  font-weight: 400;
}

/*------------------------------------------------------------
# our team
------------------------------------------------------------*/
.our-team{
  padding: 100px 0 70px;
}

.team-member-item{
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.team-image{
    position: relative;
    overflow: hidden;
  border-radius: 30px;
  margin-bottom: 20px;
}

.team-image img{
  width: 100%;
  aspect-ratio: 1/1.2;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}

.team-member-item:hover .team-image img{
    transform: scale(1.1);
}

.team-social-icon{
  position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
  margin: 0 auto; 
  transform: translateY(100%);
  text-align: center;
  z-index: 1;
    transition: all 0.5s ease-in-out;
}

.team-member-item:hover .team-social-icon{
  left: 10px;
  right: 10px;
  bottom: 20px;
  transform: translateY(0);
}

.team-social-icon ul{
  backdrop-filter: blur(30px);
  display: inline-block;
  list-style: none;
  line-height: normal;
  margin: 0;
  padding: 12px 25px;
  border-radius: 30px;
  overflow: hidden;
}

.team-social-icon ul li{
  position: relative;
  display: inline-block;
    text-align: center;
    margin-right: 20px;
  z-index: 1;
}

.team-social-icon ul li:last-child{
  margin-right: 0;
}

.team-social-icon ul li a{
    display: block;
}

.team-social-icon ul li a i{
    color: #fff;
    font-size: 24px;
  transition: all 0.3s ease-in-out;
}

.team-social-icon ul li a:hover i{
  
}

.team-content{
  text-align: center;
}

.team-content h3{
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.team-content p{
  text-transform: capitalize;
  margin: 0;
}

/************************************/
/***    11. Why Choose Us css     ***/
/************************************/

.why-choose-us{
  background-position: center center;
  background-size: auto;
  padding: 100px 0;
}

.why-choose-item{
  display: flex;
  border-bottom: 1px solid #ececec;
  padding-bottom: 45px;
  margin-bottom: 45px;
}

.why-choose-item:last-child{
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.why-choose-item .icon-box{
  position: relative;
  padding: 5px 0px 0px 5px;
  margin-right: 20px;
}

.why-choose-item .icon-box::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: #ff3600;
    opacity: 10%;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    z-index: 0;
    transition: all 0.5s ease-in-out;
}

.why-choose-item .icon-box img{
    position: relative;
    max-width: 32px;
    z-index: 1;
}

.why-choose-content{
  width: calc(100% - 52px);
}

.why-choose-content h3{
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.why-choose-content p{
  margin: 0;
}

.why-choose-image{
  position: relative;
  text-align: center;
}

.why-choose-image::before{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url('../images/why-choose-car-img.png') no-repeat;
  background-position: bottom center;
  background-size: 100% auto;
  z-index: 1;
}

.why-choose-image img{
  aspect-ratio: 1 / 1.65;
  object-fit: cover;
  border-radius: 200px;
}
@media only screen and (max-width: 1366px){
#hero,.bg-section {
    width: calc(100% - 30px);
    margin: 0 15px;
}}

@media only screen and (max-width: 991px){
.why-choose-image img {
    aspect-ratio: 1 / 1.6;
}
.why-choose-image::before {
    background-size: 50% auto;
}
.why-choose-image {
    margin: 30px 0;
}
#hero,.bg-section {
    width: 100%;
    margin: 0;
    border-radius: 0;
}
.about-image {
    width: 100%;
    max-width: 550px;
    padding-bottom: 100px;
    margin-right: 0px;
    margin: 0 auto;
    margin-bottom: 30px;
}
}
@media only screen and (max-width: 767px){
.why-choose-image img {
    aspect-ratio: 1 / 1.4;
}
.why-choose-image::before {
    background-size: 100% auto;
}
.how-work-img::before {
    width: 100%;
}
.about-img-1 {
    width: 250px;
}
.about-img-2 {
    width: 200px;
}
.about-image {
    background-position: bottom 25px right 35px;
    background-size: 50% auto;
    padding-bottom: 70px;
}
}

/**********---------------- CAR testi slider CSS START --------------****************/
.x_offer_car_main_wrapper{
  padding: 100px 0 70px;
}

.screenshot .owl-carousel .owl-item {
  width: auto;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-transform: scale(.9);
  transform: scale(.9);
  opacity: .5;
    padding: 60px 45px 50px 45px;
  background:#ffffff;
}
.screenshot .owl-carousel .owl-item.active.center {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  box-shadow: 0 0 0 #000;
  box-shadow: 0 0 30px rgba(0, 0, 0, .1);
    background: #fff;
  text-align:center;
  -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.screen .owl-dots {
  width: 200px;
  margin: 25px auto 0;
  text-align: center
}
.screen .owl-dots .owl-dot {
  height: 8px;
  width: 8px;
  border-radius: 50%;
  display: inline-block;
  margin: 6px;
  background: #d0d0d0;
  text-indent: 0;
    position: relative;
    display: inline-block;
    cursor: pointer;
}
.screen .owl-dots .owl-dot span{
  width: auto;
}
.screen .owl-dot.active:after {
       content: '';
    border: 2px solid #b33837;
    width: 16px;
    height: 16px;
    border-radius: 100%;
    position: absolute;
    left: -4px;
    top: -4px;
}
.screen .owl-dot.active {
  background: #b33837;
}
.screenshot .owl-carousel .owl-nav{
  display:none;
}
.screenshot .owl-carousel .owl-item .card .card-content p {
  clear: both;
  margin: 6px 0;
  font-size:16px;
  line-height:30px;
  font-style:italic;
  color:#111111 !important;
}
.card-content{
  position:relative;
}
.testi_slide_star{
  position:absolute;
      top: -45px;
    right: -20px;
}
.testi_slide_star i{
  color:#edcc30;
}
.screenshot .owl-carousel .owl-item .card .card-content .card-title {
  font-size: 16px;
  text-transform:uppercase;
  color:#111111 !important;
  font-weight:800;
  padding-top:20px;
  line-height:20px;
  font-style:normal;
}
.screenshot .owl-carousel .owl-item .card .card-content .card-title span {
  display: block;
  font-size: 16px;
  color:#b33837;
  text-transform: capitalize;
  font-weight: 400;
  font-style:normal;
      padding-top: 5px;
}
.screenshot .owl-carousel .owl-item .card .card-image {
  border-radius: 50%;
  position: absolute;
  top: -120px;
  left: 0px;
  right: 0px;
  margin: 0px auto;
  width: 100px;
  height: 100px;
      border: 8px solid #f9f9f9;
  overflow: hidden;
}
.screenshot .owl-carousel .owl-item .card .card-image img {
  width: 100%;
  z-index: 0;
  border-radius: 50%;
}

.screenshot .owl-carousel .owl-item .card .card-content p:not(.card-title) * {
  color: #8a8a8a;
}
.valign-wrapper{
  float:left;
  width:100%;
  text-align:Center;
    background: #fff;
  border:0;
}
.screenshot .owl-carousel .owl-stage:after{
  height:100px;
}
.screenshot .owl-carousel .owl-stage{
  top:60px;
}

/**********---------------- CAR testi slider  END --------------****************/
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f1f7fd;
  min-height: 40px;
  margin-top: 120px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 100px;
  }
}

.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;
  }
}

/************************************/
/***    15. Latest Article css    ***/
/************************************/

.latest-article{
  padding: 100px 0;
}

.highlighted-article-post{
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}

.highlighted-article-featured-img a{
  display: block;
  position: relative;
  cursor: none;
}

.highlighted-article-featured-img a:before{
  content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 2.8%, #000000 99.93%);
    z-index: 0;
}
.image-anime {
    position: relative;
    overflow: hidden;
}
.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}
.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.highlighted-article-featured-img img{
  width: 100%;
  aspect-ratio: 1/ 0.85;
  object-fit: cover;
}

.highlighted-article-body{
  max-width: 420px;
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 20px;
  z-index: 1;
}

.highlighted-article-body .article-meta{
  margin-bottom: 10px;
}

.highlighted-article-body .article-meta ul{
  list-style: none;
  margin: 0;
  padding: 0;
}

.highlighted-article-body .article-meta ul li a i{
  margin-right: 10px;
}

.highlighted-article-body .article-meta ul li a{
  color: #fff;
  text-transform: capitalize;
}

.highlighted-article-body .highlighted-article-content h3{
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5em;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.highlighted-article-body .highlighted-article-content h3 a{
  color: inherit;
}

.highlighted-article-post:hover .highlighted-article-content .section-icon-btn img{
  transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}

.article-post{
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.article-post:last-child{
  margin-bottom: 0;
}

.article-post .article-featured-img{
  width: 33%;
}

.article-post .article-featured-img a{
  display: block;
  cursor: none;
  border-radius: 15px;
}

.article-post .article-featured-img img{
  width: 100%;
  aspect-ratio: 1 / 0.8;
  object-fit: cover;
  border-radius: 15px;
}

.article-post .article-post-body{
  width: calc(100% - 33%);
  margin-left: 30px;
}

.article-post-body .article-meta{
  margin-bottom: 15px;
}

.article-post-body .article-meta ul{
  list-style: none;
  margin: 0;
  padding: 0;
}

.article-post-body .article-meta ul li a i{
  font-size: 18px;
  margin-right: 10px;
}

.article-post-body .article-meta ul li a{
  color: #616161;
  text-transform: capitalize;
}

.article-post-body .article-post-content h3{
  color: #040404;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5em;
  margin-bottom: 20px;
}

.article-post-body .article-post-content h3 a{
  color: inherit;
}

.article-post-content .read-story-btn{
  display: inline-block;
  position: relative;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    color:#b33837;
    padding-right: 35px;
    transition: all 0.4s ease-in-out;
}

.article-post:hover .article-post-content .read-story-btn{
  color: #040404;
  transition: all 0.4s ease-in-out;
}

.article-post-content .read-story-btn::after{
    content: '';
    position: absolute;
    top: 2px;
    right: 0;
    bottom: 0;
    background-image: url("../images/arrow-white.svg");
    background-repeat: no-repeat;
    background-position: center center;
  background-size: 8px auto;
  background-color: #b33837;
  border-radius: 50%;
    width: 24px;
    height: 24px;
    transition: all 0.4s ease-in-out;
}

.article-post:hover .article-post-content .read-story-btn::after{
  background-color: #040404;
  transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 991px){
.highlighted-article-post {
    margin-bottom: 30px;
}
}

/************************************/
/***       14. CTA Box css        ***/
/************************************/

.cta-box{
  background: #040404;
  background-position: center center;
  background-size: cover;
  padding: 100px 0;
}

.cta-box.bg-section{
  max-width: 1500px;
}

.cta-box-content{
  width: 100%;
  max-width: 520px;
}

.cta-box-content .section-title p,
.cta-box-content .section-title h2{
  color: #fff;
}

.cat-box-image{
  text-align: center;
}

.cta-box-btn .btn-default:hover::before{
  background-color: #b33837;
}


/************************************/
/***    17. About us Page css   ***/
/************************************/

.page-header{
  position: relative;
  background: url('../images/page-header-bg.jpg') no-repeat center center;
  background-size: cover;
  border-radius: 46px;
  overflow: hidden;
  padding: 140px 0;
}

.page-header:before{
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #040401;
  opacity: 40%;
  z-index: 1;
}

.page-header-box{
  position: relative;
  text-align: center;
  z-index: 1;
}

.page-header-box h1{
  font-size: 74px;
    font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.page-header-box ol{
  margin: 0;
  padding: 0;
  justify-content: center;
}

.page-header-box ol li.breadcrumb-item{
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
  color: #fff;
}

.page-header-box ol li.breadcrumb-item a{
    color: inherit;
}

.page-header-box ol li.breadcrumb-item.active{
  color: #b33837;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
    color: #fff;
}

.about-us.page-about-us{
  padding: 100px 0;
}

.about-us.page-about-us .about-content-body{
    margin-bottom: 0px;
}

.exclusive-partners{
  background: #fbe9ea no-repeat;
  background-position: bottom left;
  background-size: auto;
  padding: 100px 0 70px;
}

.partners-logo{
  background-color: #fff;
  border-radius: 20px;
  text-align: center;
  padding: 30px 50px;
  margin-bottom: 30px;
}

.partners-logo img{
  width: 190px;
  margin: 0 auto;
}

.vision-mission{
  padding: 100px 0;
}

.vision-mission .section-title{
  max-width: 780px;
}

.our-projects-nav{
  margin-bottom: 50px;
  text-align: center;
}

.our-projects-nav .nav-tabs{
  padding: 0;
  margin: 0;
  list-style: none;
  display: inline-flex;
  background-color: #fbe9ea;
  border-radius: 100px;
  border: none;
  padding: 15px;
}

.our-projects-nav ul li{
  margin-right: 25px;
}

.our-projects-nav ul li:last-child{
  margin-right: 0;
}

.our-projects-nav ul li .nav-link{
  background-color: #fff;
  color: #040401;
  border-radius: 100px;
  font-family: var(--accent-font);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1em;
  text-transform: capitalize;
  border: none;
  padding: 15px 30px;
  transition: all 0.4s ease-in-out;
}

.our-projects-nav ul li .nav-link:hover{
  border: none;
}

.our-projects-nav ul li .nav-link.active{
  background-color: #b33837;
  color: #fff;
  border: none;
}

.vision-mission-list ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.vision-mission-list ul li{
  position: relative;
  font-size: 20px;
  font-weight: 500;
  color: #040401;
  margin-bottom: 20px;
  padding-left: 30px;
}

.vision-mission-list ul li:last-child{
  margin-bottom: 0;
}

.vision-mission-list ul li:before{
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 20px;
    color: #b33837;
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 3px;
    left: 0;
}

.vision-image{
  text-align: right;
  margin-left: 30px;
}

.vision-image figure{
  display: block;
  border-radius: 46px;
}

.vision-image img{
  aspect-ratio: 1 / 0.99;
  object-fit: cover;
  border-radius: 46px;
}

.our-video{
  padding: 100px 0;
}

.customer-counter-item{
  position: relative;
}

.customer-counter-image{
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}

.customer-counter-image::before{
  content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #040401;
    opacity: 30%;
    z-index: 0;
}

.customer-counter-image img{
  aspect-ratio: 1 / 0.98;
  object-fit: cover;
  border-radius: 30px;
}

.satisfied-customer-counter{
  position: absolute;
  top: 40px;
  left: 50px;
}

.satisfied-customer-counter h3{
  font-size: 40px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
}

.satisfied-customer-counter p{
  color: #fff;
  text-transform: capitalize;
  margin: 0;
}

.satisfied-customer-image{
  position: absolute;
  bottom: 40px;
  left: 50px;
  animation: satisfiedmoveobject 3s infinite linear alternate;
}

@keyframes satisfiedmoveobject{
  50%{
    left: 90px;
  }
}

.satisfied-customer-image img{
  max-width: 220px;
}

.video-image-box{
  position: relative;
  padding-bottom: 50px;
  cursor: none;
}

.video-image{
  border-radius: 30px;
  overflow: hidden;
}

.video-image img{
  width: 100%;
  aspect-ratio: 1 / 0.47;
  object-fit: cover;
  border-radius: 30px;
}

.video-image a{
  position: relative;
  display: block;
  cursor: none;
  z-index: 1;
}

.video-image a::before{
  content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #040401;
    opacity: 30%;
    z-index: 0;
}

.video-image-play-button{
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.video-image-play-button a{
    background-color: #b33837;
  border: 12px solid #fbe9ea;
    border-radius: 100%;
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
}

.video-image-play-button a i{
    font-size: 30px;
    color: #fff;
}

.our-team{
  padding: 100px 0 70px;
}

.team-member-item{
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.team-image{
    position: relative;
    overflow: hidden;
  border-radius: 30px;
  margin-bottom: 20px;
}

.team-image img{
  width: 100%;
  aspect-ratio: 1/1.2;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}

.team-member-item:hover .team-image img{
    transform: scale(1.1);
}

.team-social-icon{
  position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
  margin: 0 auto; 
  transform: translateY(100%);
  text-align: center;
  z-index: 1;
    transition: all 0.5s ease-in-out;
}

.team-member-item:hover .team-social-icon{
  left: 10px;
  right: 10px;
  bottom: 20px;
  transform: translateY(0);
}

.team-social-icon ul{
  backdrop-filter: blur(30px);
  display: inline-block;
  list-style: none;
  line-height: normal;
  margin: 0;
  padding: 12px 25px;
  border-radius: 30px;
  overflow: hidden;
}

.team-social-icon ul li{
  position: relative;
  display: inline-block;
    text-align: center;
    margin-right: 20px;
  z-index: 1;
}

.team-social-icon ul li:last-child{
  margin-right: 0;
}

.team-social-icon ul li a{
    display: block;
}

.team-social-icon ul li a i{
    color: #fff;
    font-size: 24px;
  transition: all 0.3s ease-in-out;
}

.team-social-icon ul li a:hover i{
  color: #b33837;
}

.team-content{
  text-align: center;
}

.team-content h3{
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.team-content p{
  text-transform: capitalize;
  margin: 0;
}


/************************************/
/***    31. Contact us Page css   ***/
/************************************/

.page-contact-us{
  padding: 100px 0 50px;
}

.contact-info-form{
  background: url('../images/contact-form-plan.svg') no-repeat;
  background-position: bottom -10px right 50px;
  background-size: auto;
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  border: 1px solid #ececec;
  border-radius: 30px;
  padding: 50px 35px;
}

.contact-information{
  background: #040401 url('../images/contact-information-bg.svg') no-repeat;
  background-position: bottom right;
  background-size: auto;
  border-radius: 30px;
  padding: 40px;
  margin-right: 30px;
}

.contact-information .section-title{
  margin-bottom: 100px;
}

.contact-information .section-title p,
.contact-information .section-title h2{
  color: #fff;
}

.contact-info-list{
  margin-bottom: 100px;
}

.contact-info-item{
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 320px;
  margin-bottom: 30px;
}

.contact-info-item:last-child{
  margin-bottom: 0;
}

.contact-info-item .icon-box{
  margin-right: 15px;
}

.contact-info-item .icon-box img{
  max-width: 40px;
}

.contact-info-content{
  width: calc(100% - 55px);
}

.contact-info-content p{
  color: #fff;
  margin: 0;
}

.contact-info-social ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-info-social ul li{
    display: inline-block;
    margin-right: 10px;
}

.contact-info-social ul li:last-child{
  margin-right: 0;
}

.contact-info-social ul li a{
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    height: 36px;
    width: 36px;
    border-radius: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.contact-info-social ul li:hover a{
  border-color: #b33837;
}

.contact-info-social ul li a i{
    font-size: 16px;
  transition: all 0.3s ease-in-out;
}

.contact-info-social ul li:hover a i{
  color: #b33837;
}

.contact-us-form .form-group label{
  color: #040401;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.contact-us-form .form-control{
      padding: 12px 0px;
    font-size: 16px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #ececec;
    border-radius: 0;
    color: #040401;
    box-shadow: none;
    outline: none;
}

.contact-us-form .form-control::placeholder{
      color: #040401;

  text-transform: capitalize;
}

.google-map{
  padding: 50px 0 100px;
}

.google-map .section-title{
  text-align: center;
}

.google-map .section-title h3{
  color: #b33837;
}

.google-map-iframe{
  width: 100%;
  height: 550px;  
}

.google-map-iframe iframe{
  width: 100%;
  height: 550px;
  border-radius: 30px;
}
@media only screen and (max-width: 1366px){
.contact-info-form {
    width: calc(100% - 30px);
    margin: 0 15px;
}
}
@media only screen and (max-width: 991px){
.contact-info-form {
    background: none;
    padding: 30px 15px;
}
.contact-information {
    padding: 30px;
    margin-bottom: 30px;
    margin-right: 0;
}
.bg-section {
    width: 100%;
    margin: 0;
    border-radius: 0;
}
.page-header {
    padding: 100px 0;
}
.our-projects-nav {
    margin-bottom: 30px;
}
.our-projects-nav .nav-tabs {
    padding: 10px;
}
.our-projects-nav ul li {
    margin-right: 20px;
}
.vision-mission-content {
    margin-bottom: 30px;
}
.vision-image {
    text-align: center;
    margin-left: 0px;
}
.video-image-box {
    padding-bottom: 40px;
}
.video-image-play-button a {
    width: 90px;
    height: 90px;
}
.video-image-play-button a i {
    font-size: 26px;
}
}
@media only screen and (max-width: 767px){
.contact-info-form {
    width: 100%;
    border: none;
    padding: 0;
    margin: 0;
}
.contact-information {
    padding: 20px;
}
.our-projects-nav .nav-tabs {
    justify-content: center;
}
.page-header {
    padding: 80px 0;
}
.our-projects-nav ul li {
    margin-right: 10px;
    margin-bottom: 15px;
}
.customer-counter-item {
    margin-bottom: 30px;
}
.video-image-play-button {
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
}
.video-image-play-button a {
    width: 80px;
    height: 80px;
}
.video-image-play-button a i {
    font-size: 22px;
}
}

/* -------------------------------------------------------------
Service Detail
-----------------------------------------------------------------*/
.page-service-single {
    padding: 100px 0;
}
.service-sidebar {
    position: sticky;
    top: 20px;
    margin-right: 30px;
}
.service-catagery-list {
    background-color: #fbe9ea;
    border-radius: 30px;
    padding: 30px;
    margin-bottom: 50px;
}
.service-catagery-list h3 {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 30px;
}
.service-catagery-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.service-catagery-list ul li {
    border-bottom: 1px solid #ececec;
    margin-bottom: 20px;
    padding-bottom: 20px;
}
.service-catagery-list ul li a {
    display: block;
    position: relative;
    font-weight: 500;
    color: #040401;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}
.service-catagery-list ul li a::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translate(0px, -50%);
    background-image: url(../images/arrow-orange.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 12px auto;
    width: 12px;
    height: 12px;
    transition: all 0.3s ease-in-out;
}
.service-catagery-list ul li:hover a {
    color: #b33837;
}
.service-catagery-list ul li:hover a::after {
    transform: translate(0px, -50%) rotate(45deg);
}
.sidebar-cta-box {
    background: #fbe9ea;
    border-radius: 30px;
    text-align: center;
    padding: 40px 30px;
}
.cta-contact-item .icon-box {
    margin-bottom: 30px;
}
.cta-contact-item .icon-box img {
    max-width: 65px;
    margin: 0 auto;
}
.cta-contact-content {
    margin-bottom: 30px;
}
.cta-contact-content h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}
.cta-contact-content p {
    margin: 0;
}
.service-featured-image {
    margin-bottom: 30px;
}
.service-featured-image figure {
    display: block;
    border-radius: 30px;
}
.service-featured-image img {
    border-radius: 30px;
}
.service-entry {
    border-bottom: 1px solid #ececec;
    padding-bottom: 50px;
    margin-bottom: 50px;
}
.service-entry h2 {
    font-size: 44px;
    margin-bottom: 30px;
    font-weight: 700;
}
.service-entry p {
    margin-bottom: 30px;
}
.service-entry ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}
.service-entry ul li {
    position: relative;
    width: calc(50% - 10px);
    color: #b33837;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    padding-left: 30px;
}
.service-entry ul li:before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 20px;
    color: #b33837;
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 2px;
    left: 0;
}
.section-title {
    margin-bottom: 40px;
}
.service-gallery figure {
    border-radius: 30px;
}
.service-gallery img {
    aspect-ratio: 1 / 1.1;
    object-fit: cover;
    border-radius: 30px;
}
.rental-condition-accordion .accordion-item {
    border: 1px solid #ececec;
    border-radius: 12px;
    margin-bottom: 25px;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}
.accordion-header {
    margin-bottom: 0;
}


.rental-condition-accordion .accordion-header .accordion-button {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2em;
    background-color: #b33837;
    color: #040401;
    padding: 20px 50px 20px 20px;
    transition: all 0.3s ease-in-out;
}
.rental-condition-accordion .accordion-button:not(.collapsed) {
    background-color: #b33837;
    color: #ffffff;
    border-bottom: 1px solid #ffffff33;
}
.rental-condition-accordion .accordion-item .accordion-button::after, .rental-condition-accordion .accordion-item .accordion-button.collapsed::after {
    content: '\f068';
    font-family: "Font Awesome 6 Free";
    position: absolute;
    right: 20px;
    top: 50%;
    bottom: auto;
    transform: translate(0px, -10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 20px;
    width: 20px;
    height: 20px;
    padding: 5px;
    color: #ffffff;
}
.rental-condition-accordion .accordion-item .accordion-body {
    background-color: #b33837;
    padding: 20px 50px 20px 20px;
}
.rental-condition-accordion .accordion-header .accordion-button.collapsed {
    background-color: #ffffff;
    color: #040401;
}
.rental-condition-accordion .accordion-item .accordion-button.collapsed::after {
    content: '\f067';
    color: #040401;
}
.rental-condition-accordion .accordion-item .accordion-body p {
    color: #ffffff;
    margin: 0;
}

@media only screen and (max-width: 991px){
.service-gallery img {
    aspect-ratio: 1 / 0.85;
}
.service-gallery {
    margin-bottom: 30px;
}
}

.map-section {
/*    background-image: url(../images/maper.jpg);*/
    height: 100%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0 80px 0;
/*    border-bottom: 1px solid #f1f1f1;*/
    position: relative;
}
.icon-wrap area {
    cursor: pointer;
}
.icon-wrap img{
  width:auto;height: auto;max-width: inherit;margin: 0!important;
}
@media (max-width:768px){
  .icon-wrap img{max-width: 100%;}
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/


.main-footer{
  background: #040401 ;
  background-position: top center;
  background-size: 100% auto;
  padding: 70px 0 25px;
  margin-bottom: 50px;
}

.about-footer{
  padding-right: 40px;
}

.about-footer .footer-logo{
  margin-bottom: 30px;
}

.about-footer .about-footer-content p{
  color: #fff;
  margin: 0;
}

.footer-links{
  margin-left: 70px;
}

.footer-links h3,
.footer-newsletter h3{
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 25px;
}

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

.footer-links ul li{
  margin-bottom: 10px;
}

.footer-links ul li:last-child{
  margin-bottom: 0;
}

.footer-links ul li a{
  color: #fff;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.footer-links ul li:hover a{
  color: #b33837;
}

.footer-newsletter-form .form-group{
  width: 100%;
  display: flex;
  position: relative;
}

.footer-newsletter-form .form-group .form-control{
  width: 100%;
  padding: 14px 20px;
  background: #ffffff33;
  color: #fff;
  border: none;
  border-radius: 100px;
  box-shadow: none;
}

.footer-newsletter-form .form-group .form-control::placeholder{
  color: #fff;
}
.section-icon-btn {
    background-color: #b33837;
    border-radius: 100%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease-in-out;
}
.footer-newsletter-form .form-group .section-icon-btn{
  content: '';
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translate(48px, -50%);
  border: none;
  padding: 0;
}

.footer-newsletter-form .section-icon-btn:hover{
  background-color:#040401;
  transition: all 0.5s ease-in-out;
    transform: translate(48px, -50%);
}

.footer-newsletter-form .section-icon-btn:hover img{
  transform:rotate(45deg);
  transition: all 0.5s ease-in-out;
}

.footer-copyright{
    border-top: 1px solid #ffffff33;
    padding: 25px 0;
    margin-top: 50px;
}

.footer-copyright .footer-copyright-text p{
  color: #fff;
  margin: 0;
}

.footer-copyright .footer-social-links ul{
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: end;
}

.footer-copyright .footer-social-links ul li{
  display: inline-block;
  margin-right: 10px;
}

.footer-copyright .footer-social-links ul li:last-child{
  margin-right: 0;
}

.footer-copyright .footer-social-links ul li a{
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
    height: 36px;
    width: 36px;
    border-radius: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.footer-copyright .footer-social-links ul li a i{
  font-size: 16px;
}

.footer-copyright .footer-social-links ul li a:hover{
  border-color: #b33837;
  color: #b33837;
}
.container {
    max-width: 1300px;
}

@media only screen and (max-width: 991px){
  .main-footer {
    padding: 50px 0 0;
    margin: 0;
}
.footer-links {
    margin-left: 0px;
}
.about-footer {
    padding-right: 0;
    margin-bottom: 40px;
}
.about-footer .footer-logo {
    margin-bottom: 20px;
}
.footer-links {
    margin-left: 0px;
}
.footer-links h3, .footer-newsletter h3 {
    margin-bottom: 20px;
}
.footer-copyright {
    padding: 20px 0;
    margin-top: 40px;
}
}
@media only screen and (max-width: 767px){
.footer-links {
    margin-bottom: 40px;
}
.footer-copyright {
    margin-top: 40px;
}
.footer-copyright-text {
    text-align: center;
    margin-bottom: 10px;
}
.footer-copyright .footer-social-links ul {
    text-align: center;
}
#header .btn-default{display: none;}
}