* {
  font-family: "Open Sans", sans-serif;
  margin: 0;
  padding: 0;
}

a {
  color: var(--white-color);
  transition: 0.5s;
  text-decoration: none;
  font-family: "Open Sans", sans-serif;
}

a:hover,
a:active,
a:focus {
  color: var(--main-color);
  outline: none;
  text-decoration: none;
}
h1 {
  font-size: 2.5rem;
  font-family: "Open Sans", sans-serif;
  line-height: 3rem;
  font-weight: 600;
}

.team-card {
  margin: 0 auto;
  max-width: 350px;
  border: none;
  border-bottom: 5px solid var(--main-color);
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}

h3 {
  font-size: 1rem;
  font-weight: normal;
  letter-spacing: 1px;
}
h4 {
  font-size: 1rem;
  font-weight: normal;
  letter-spacing: 1px;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
p {
  font-size: 15px;
  font-weight: normal;
  letter-spacing: 1px;
  font-family: "Open Sans", sans-serif;
  line-height: 2rem;
}

h1,
h2,
h3,
h5,
h6 {
  padding: 0;
  padding-bottom: 2rem;
}

:root {
  --white-color: #fff;
  --main-color: #e57d53;
}
section {
  overflow: hidden;
  padding: 3rem 6rem;
}

.btn {
  background-color: var(--main-color);
  color: var(--white-color);
  padding: 1rem 1.5rem;
}
.btn a {
  padding: 0 0 !important;
  color: var(--white-color) !important;
}

.btn:hover {
  background-color: #947b3a;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--main-color);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

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

.back-to-top:hover {
  background: #947b3a;
  color: #fff;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 1rem 6rem;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(20, 20, 20, 0.9);
  padding: 0.5rem 5.5rem;
}
#header.header-scrolled .logo {
  width: 150px;
}

#header .logo img {
  width: 150px;
  padding: 10px;
}

@media (max-width: 992px) {
  #header {
    border: 0;
    padding: 15px 0;
  }
  #header .logo img {
    width: 120px;
  }
}

/*--------------------------------------------------------------
# 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;
  margin: 0 15px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 3px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  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: 10px;
  left: 0;
  background-color: var(--main-color);
  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: #fff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: var(--main-color);
  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: 14px;
  text-transform: none;
  font-weight: 500;
  color: #fff;
}

.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: var(--white-color);
}

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

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

@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(15, 15, 15, 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: #282828;
}

.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: var(--main-color);
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: var(--main-color);
  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: var(--main-color);
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: linear-gradient(rgb(0, 0, 0, 0.3), rgb(0, 0, 0, 0.3)),
    url("../img/hero-image.jpeg");
  overflow: hidden;
  position: relative;
  color: #fff;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 70px;
  left: 50px;
  right: 50px;
}

#hero .container {
  text-align: center;
}

#hero .carousel-fade {
  overflow: hidden;
}

#hero .carousel-fade .carousel-inner .carousel-item {
  transition-property: opacity;
}

#hero .carousel-fade .carousel-inner .carousel-item,
#hero .carousel-fade .carousel-inner .active.carousel-item-start,
#hero .carousel-fade .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-fade .carousel-inner .active,
#hero .carousel-fade .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-fade .carousel-inner .carousel-item-next,
#hero .carousel-fade .carousel-inner .carousel-item-prev,
#hero .carousel-fade .carousel-inner .active.carousel-item-start,
#hero .carousel-fade .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
  width: 10%;
}

@media (min-width: 1024px) {
  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 15px;
  line-height: 1;
  display: grid;
  place-items: center;
  background: #000000;
  opacity: 0.5;
}
#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  opacity: 1;
}

#hero .carousel-indicators li {
  cursor: pointer;
}

/* ============== SECTION-2 ============== */
.section-10 .top-heading,
.section-7 .top-heading,
.section-5 .top-heading,
.section-3 .top-heading,
.section-2 .top-heading {
  color: var(--main-color);
  font-size: 16px;
  font-weight: 600;
}

.section-2 .video-section {
  min-height: 500px;
  margin-top: 5rem;
}

@media (max-width: 768px) {
  .section-2 .video-section {
    min-height: 250px;
  }
}

/* ============== SECTION-3 ============== */
.section-3 {
  background-color: #f2f3f7;
}

.section-3 li {
  text-transform: capitalize !important;
}
/* ============== SECTION-4 ============== */
.section-4 {
  background-image: linear-gradient(rgb(0, 0, 0, 0.7), rgb(0, 0, 0, 0.7)),
    url("../img/slide-8.jpg");
  min-height: 400px;
  padding: 0 2rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: grid;
  place-items: center;
}

.section-4 h2 {
  color: var(--main-color);
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 0px;
  padding-bottom: 0px;
}

/* ============== SECTION-5 ============== */
.section-5 .card h2 {
  padding-bottom: 0;
  font-size: 1.2rem;
}
.section-5 .card {
  margin: auto;
  margin-top: 2rem;
  border: none;
  background-color: #f2f3f7;
  border-bottom: 5px solid var(--main-color);
  height: auto;
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}

.carousel-indicators [data-bs-target] {
  background-color: var(--main-color);
}

/* ============== SECTION-6 ============== */
.section-6 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(2, 1, 1, 0.6)),
    url("../img/slide-11-3.jpg");
  padding: 10rem 0rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.section-6 .experience-content {
  color: var(--white-color);
}

.section-6 .experience-content h2 {
  font-family: MV Boli;
  color: var(--main-color);
}
/* ============== SECTION-7 ============== */

@media (min-width: 991px) {
  .section-7 .benefit-img {
    height: 800px;
    object-fit: cover;
    object-position: center;
  }
}

.section-3 li,
.section-7 li {
  list-style: none;
  font-size: 16px;
  letter-spacing: 1px;
  font-family: "Open Sans", sans-serif;
  color: #727272;
}

.section-7 p {
  text-align: justify;
}

.section-7 .col-1 h3 {
  margin-bottom: 0rem !important;
}

.section-7 hr {
  color: rgb(180, 180, 180);
}
/* ============== SECTION-8 ============== */
.section-8 {
  background-color: #f4f4f4;
}
/* ============== SECTION-10 ============== */
.section-10 {
  background-color: #222222;
  color: var(--white-color);
  padding-bottom: 0;
  position: relative;
}

.section-10 .phone {
  position: fixed;
  right: 25px;
  bottom: 15%;
  z-index: 996;
}
.section-10 form {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}

.section-10 form input,
.section-10 form textarea {
  padding: 0.8rem 1rem;
  border: none;
  box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset,
    rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
  outline: none;
  background-color: var(--white-color);
  font-size: 14px;
  letter-spacing: 1px;
  border-radius: 10px;
}
.section-10 form input:focus,
.section-10 form textarea:focus {
  background-color: var(--main-color);
  box-shadow: none;
}

.section-10 form button {
  width: 12rem;
  border: none;
  border-radius: 10px;
  padding: 0.8rem 1rem;
  background-color: var(--white-color);
}

.section-10 .Links li {
  line-height: 2rem;
  color: var(--white-color);
}
.section-10 i {
  color: var(--main-color);
}
.section-10 a {
  font-size: 14px;
}

.section-10 p {
  padding-bottom: 0;
  margin-bottom: 0;
}
/* ============== common-section ============== */
/* ==============  ============== */
/* ============== common-section ============== */

.common-section {
  padding: 4.5rem 7rem;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(2, 1, 1, 0.6)),
    url("../img/slide-11.JPG");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--white-color);
}

.common-section .breadcrumb-item {
  color: #9f9f9f;
}
.common-section .content h1 {
  padding-bottom: 1rem;
}

.common-section .content {
  margin-top: 12rem;
}

.common-section-2 li {
  letter-spacing: 1px;
  font-size: 15px;
  line-height: 2rem;
  font-weight: normal;
  color: #727272;
  list-style-type: square;
}

.common-section-2 h2 {
  padding-bottom: 1rem;
  font-size: 1.5rem;
}
.common-section-2 p {
  text-align: justify;
}

.images-section img {
  height: 400px;
  object-fit: cover;
  object-position: center;
}


.team-image {
  object-fit: contain;
  border-radius: 5px;
}