@import url('https://fonts.googleapis.com/css2?family=Rubik&display=swap');
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
  background-color: #faf9f3;
}

a {
  color:#0381ab ;
  text-decoration: none;
}

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

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

.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #03789f;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

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

.back-to-top:hover {
  background: #fdc134;
  color: #faf9f3;
}

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


/* Disable aos animation delay on mobile */

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

#header {
  z-index: 997;
  transition: all 0.5s;
  padding: 16px 0;
  background:#faf9f3;
}

#header .logo h1 {
  font-size: 24px;
  margin: 0;
  padding: 10px 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #faf9f3;
  text-decoration: none;
}

#header .logo h1 a span,
#header .logo h1 a:hover span {
  color: #fdc134;
}

#header .logo img {
  padding: 1px 0; /* Adjust padding as needed */
  margin: -15px 0 0 -15px;
  max-height: 75px; /* Increase the height */
}


.navbar {
  padding: 0;
}

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

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 14px;
  font-weight: bolder;
  color: #003344;
  white-space: nowrap;
  transition: 0.3s;
}

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

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

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #003344;
  color: #faf9f3;
  padding: 4px 25px 6px 25px;
  margin-left: 30px;
  border-radius: 50px;
  border: 2px solid #fdc134;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  background: #fdc134;
  color: #003344;
}

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

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #3e6f9b;
}

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

.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: #000;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
}

@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(18, 33, 46, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

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

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

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

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  display: block;
  border: 0;
}

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

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


.btn-red {
  position: relative;
  overflow: hidden;
}

.btn-content {
  position: relative;
  z-index: 2;
  display: block;
  background-color: #fdc134;
  color: #faf9f3;
  transition: color 0.3s ease;
  padding: 1.5vh 4vw; /* Using viewport units for padding */
  font-size: 2.2vmin; /* Using vmin for font size */
  font-family: Poppins;
  font-weight: 1000;
  text-transform: uppercase;
}

.btn-content-teal {
  position: relative;
  z-index: 2;
  display: block;
  background-color: #014D63;
  color: #faf9f3;
  transition: color 0.3s ease;
  padding: 1.5vh 4vw; /* Using viewport units for padding */
  font-size: 2.2vmin; /* Using vmin for font size */
  font-family: Poppins;
  font-weight: 1000;
  text-transform: uppercase;
}

.btn-content-gold {
  position: relative;
  z-index: 2;
  display: block;
  background-color: #fdc134;
  color: #faf9f3;
  transition: color 0.3s ease;
  padding: 1.5vh 4vw; /* Using viewport units for padding */
  font-size: 2.2vmin; /* Using vmin for font size */
  font-family: Poppins;
  font-weight: 1000;
  text-transform: uppercase;
}

.btn-red::before {
  content: '';
  position: absolute;
  background-color: black;
  z-index: 1;
  transition: transform 0.3s ease;
  transform: translate(100%, 100%);
}

.btn-red:hover::before {
  transform: translate(0, 0);
}

.move-top-left:hover .btn-content {
  transform: translate(-1vmin, -1vmin); /* Using vmin for transformation */
}

@media (max-width: 768px) {
  .btn-content {
    padding: 8px 16px; /* Adjusting padding using specific values */
    font-size: 4vmin; /* Adjusting font size using vmin */
  }
  .btn-content-gold {
    padding: 8px 16px; /* Adjusting padding using specific values */
    font-size: 4vmin; /* Adjusting font size using vmin */
  }
  .btn-content-teal {
    padding: 8px 16px; /* Adjusting padding using specific values */
    font-size: 4vmin; /* Adjusting font size using vmin */
  }
}



#hero {
  width: auto;
  height: 80vh;
  background-color: rgba(63, 73, 83, 0.8);
  /* overflow: hidden; */
  position: relative;
  background-blend-mode: overlay;
  /* background-color: #E9DBC6; */
  /* background: linear-gradient(to right, teal 50%, #E9DBC6 50%); */
}

@media (max-width: 768px) {
  #hero {
    height: 90vh; /*calc(100vh - 70px);*/
  }
}

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

#hero .carousel-item {
  /* background-size: cover; */
 /*  background-position: center;
  background-repeat: no-repeat; */
  background-size: contain; 
  background-position: center top; /* Adjust as needed */
  background-repeat: no-repeat;
}

#hero .carousel-item img {
  width: auto;
  height: 80vh;
  object-fit: contain; /* Equivalent to background-size: contain; */
  object-position: center top; /* Equivalent to background-position: center top; */
}

@media (max-width: 767px) {
  #hero .carousel-item img {
    height: 100%;
    width: auto;
  }
}

/*#hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1; 
}

#hero .carousel-item:nth-child(1)::before {
  background: linear-gradient(to right, teal 50%, red 50%);
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1; 
}

#hero .carousel-item:nth-child(2)::before {
  background: linear-gradient(to right, blue 50%, yellow 50%);
}

#hero .carousel-item:nth-child(3)::before {
  background: linear-gradient(to right, green 50%, purple 50%);
}
*/
#hero .carousel-container {
  display: flex;
  align-items: flex-end;
  justify-content: right;
  position: absolute;
  /* bottom: 15vh; */
  top: 15vh;

  width:45vw;
  /* left: 50px; */
  right: 5px;
  color: #fff;
  font-family: 'Fjalla One', sans-serif;
  
}


#aboutUsSec {
  width: 100%;
  height: 100vh;
  background-color: rgba(63, 73, 83, 0.8);
  overflow: hidden;
  position: relative;
}

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

#aboutUsSec .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#aboutUsSec .carousel-container {
  display: flex;
  align-items: flex-end;
  justify-content: right;
  position: absolute;
  /* bottom: 15vh; */
  top: 10vh;

  width:45vw;
  left: 50px;
  /* right: 5px; */
  color: #fff;
  font-family: 'Fjalla One', sans-serif;
  
}

#hero .carousel-content {
  background: rgba(28, 23, 21, 0.7);
  padding: 20px;
  color: #fff;
  animation-duration: 0.5s;
  border-top: 5px solid #f03c02;
}

#hero .carousel-content h2 {
  color: #fff;
  margin-bottom: 30px;
  
 
  font-family: 'Fjalla One', sans-serif;
  font-size: 28px;
   font-weight: 1200;
}

#hero .btn-get-started {
  font-family: "Muli", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  animation-delay: 0.8s;
  background-color:  #f03c02;
  border: 2px solid white;
}

.move-top-left {
  transition: transform 0.3s ease; /* Transition for movement */
}

.move-top-left:hover {
  transform: translate(-5px, -5px); /* Move 5px to the left and 5px up */
}

#hero .btn-get-started:hover {
  background: #f03c02;
  color: #fff;
  text-decoration: none;
}

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

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

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

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

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

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

#hero .carousel-indicators li {
  cursor: pointer;
  list-style-type: none;
}

@media (min-width: 1024px) {
  #hero .carousel-content {
    width: 60%;
  }

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

@media (max-width: 992px) {
  /* #hero {
    height: calc(100vh - 70px);
  } */

  #hero .carousel-content h2 {
    margin-bottom: 15px;
    font-size: 22px;
  }

  #hero .carousel-content p {
    font-size: 15px;
  }
}

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


section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background: #faf9f3;/*linear-gradient(180deg, #f2f6fa 0%, #faf9f3 100%);*/
}

.section-faq {
  background: #faf9f3;
}

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

.section-title-left {
  text-align: left;
  padding-bottom: 30px;
  font-family: 'Fjalla One', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  /* margin-left: 30px; */
}

.section-title, .section-title-left h2 {
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  font-family: "Poppins", sans-serif;
  color: #003344;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 7px;
  background: #BE9B62;
  bottom: 1px;
  left: calc(50% - 60px);
  border-radius: 3px; 
  border-radius: 3px
  /* border-top-left-radius: 3px; 
  border-top-right-radius: 3px */
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 7px;
  background: #313131;
  bottom: 1px;
  left: calc(50% - 20px);
}
/* .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: #fdc134;
  bottom: 0;
  left: calc(50% - 20px);
} */

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



.about .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: #003344;
}

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

.about .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
  color: #003344;
}

.about .content .icon-box h4 a {
  color: #003344;
  transition: 0.3s;
}

.about .content .icon-box h4 a:hover {
  color: #fdc134;
}

.about .content .icon-box i {
  font-size: 48px;
  float: left;
  color: #fdc134;
}

.about .content .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

.about .image {
  background: url("../../assets/img/garden2.jpg") center center no-repeat;
  background-size: cover;
  min-height: 400px;
}

@media (max-width: 667px) {
  .about .image img {
    max-width: 100%;
  }
}

.services {
  padding-bottom: 40px;
}

.services .card {
  border: 0;
  padding: 0 30px;
  margin-bottom: 60px;
  position: relative;
  background: transparent;
}

.services .card-img {
  overflow: hidden;
  z-index: 9;
  border-radius: 0;
}

.services .card-img img {
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}

.services .card-body {
  z-index: 10;
  background: #fff;
  border-top: 4px solid #faf9f3;
  padding: 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  margin-top: -60px;
  margin-left: 30px;
  width: calc(100% - 60px);
}

@media (max-width: 640px) {
  .services .card-body {
    margin-left: 15px;
    width: calc(100% - 30px);
  }
}

.services .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.services .card-title a {
  color: #003344;
  transition: 0.3s;
}

.services .card-text {
  color: #5e5e5e;
}

.services .read-more a {
  color: #777777;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: 0.3s;
}

.services .read-more a:hover {
  color: #fdc134;
}

.services .card:hover img {
  transform: scale(1.1);
}

.services .card:hover .card-body {
  border-color: #fdc134;
}

.services .card:hover .card-body .card-title a {
  color: #fdc134;
}

.features .content+.content {
  margin-top: 100px;
}

.features .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #003344;
}

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

.features .content ul li {
  padding-bottom: 10px;
}

.features .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #fdc134;
}

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

.pricing .box {
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  background: #faf9f3;
  text-align: center;
  position: relative;
}

.pricing .featured-badge {
  display: inline-block;
  position: absolute;
  top: -11px;
  left: calc(50% - 49px);
  background: #fdc134;
  color: #faf9f3;
  text-align: center;
  line-height: 1;
  border-radius: 50px;
  padding: 4px 20px 5px 20px;
  font-size: 12px;
  text-transform: uppercase;
}

.pricing h3 {
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 28px;
}

.pricing h4 {
  font-size: 46px;
  color: #fdc134;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 25px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 18px;
  display: block;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

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

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

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .get-started-btn {
  background: #003344;
  display: inline-block;
  padding: 6px 30px;
  border-radius: 20px;
  color: #faf9f3;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  transition: 0.3s;
}

.pricing .get-started-btn:hover {
  background: #fdc134;
}

.pricing .featured {
  z-index: 10;
  margin: -30px -5px 0 -5px;
  border: 1px solid #fdc134;
}

.pricing .featured .get-started-btn {
  background: #fdc134;
}

.pricing .featured .get-started-btn:hover {
  background: #fdcd5c;
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}


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

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

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

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

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

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

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

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

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

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

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

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

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

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

#footer {
  padding: 0 0 30px 0;
  color: #d0d0d0;
  font-size: 14px;
  background: #003344;
}
#footer .footer-newsletter {
  padding: 50px 0;
  background: #003344;
  text-align: center;
  font-size: 15px;
  color: #faf9f3;
}
#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: #faf9f3;
  padding: 6px 10px;
  position: relative;
  border-radius: 5px;
  box-shadow: 0px 2px 15px #003344;
  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: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 3px 20px;
  background: #4eb478;
  color: #faf9f3;
  transition: 0.3s;
  border-radius: 0 5px 5px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer .footer-newsletter form input[type=submit]:hover {
  background: #45a36c;
}
#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #024157;
  color: #faf9f3;
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #b7b7b7;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  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: #4eb478;
  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: #aaaaaa;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #4eb478;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #373737;
  color: #faf9f3;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: #4eb478;
  color: #faf9f3;
  text-decoration: none;
}
#footer .copyright {
  text-align: center;
  float: left;
}
#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: white;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
}

.modal-content {

  max-width: 300px; /* Adjust as needed */
  margin: 0 auto; /* Center the content horizontally */

}

/*--------------------------------------------------------------
# product_card
--------------------------------------------------------------*/

.product_card .product_card-item {
  box-sizing: content-box;
  padding: 30px 30px 0 30px;
  margin: 30px 15px;
  text-align: center;
  background-color: #fff;
  min-height: 350px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
}

.product_card .product_card-item .product_card-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid #faf9f3;
  margin: 0 auto;
}

.product_card .product_card-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.product_card .product_card-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 0 30px;
  margin: 30px 15px;
  text-align: center;
  background-color: #fff;
  min-height: 350px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid #faf9f3;
  margin: 0 auto;
}

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

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

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #fedac0;
  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;
}

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #ef6603;
}

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


.cojourney .coinfo {
  box-sizing: content-box;
  padding: 30px 30px 0 30px;
  margin: 30px 15px;
  text-align: center;
  min-height: 350px;
  /* max-height: 350px; */
  background-color: #A49E8D;
  /* box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08); */
  border-radius: 25px;
}

.col-image-container{
  border-radius: 25px;
  max-height: 325px;
  border: 4px solid white;
}

/*--------------------------------------------------------------
# productview
--------------------------------------------------------------*/
.productview .productview-carousel,
.productview .productview-slider {
  overflow: hidden;
}

.productview .testimonial-item {
  box-sizing: content-box;
  /* padding: 30px 30px 0 30px; */
  margin: 30px 15px;
  text-align: center;
  max-height: 350px;
  background-color: #fff;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
}

.productview .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid #faf9f3;
  margin: 0 auto;
  background-color: #fff;
}

.productview .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.productview .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

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

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

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

.productview .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

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

.productview .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #faf9f3;
  opacity: 1;
  border: 1px solid #ef6603;
}

.productview .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ef6603;
}

.journey-text {
  font-family: 'Rubic', sans-serif;
  font-size: 28px;
  display: block;
  /* text-align: justify; */
  font-weight: 700;
}

.journey-text-sm {
  font-family: 'Rubic', sans-serif;
  font-size: 21px;
  display: block;
  text-align: justify;
  font-weight: 400;
}