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

.dark-mode {
  background-color: orangered;
  color: white;
}

a {
  color: #1acc8d;
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", 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 #1acc8d;
  border-top-color: #d2f9eb;
  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: #1acc8d;
  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: #2be4a2;
  color: #fff;
}

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

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: rgba(1, 4, 0, 0.9);
}

#header.header-transparent {
}

#header.header-scrolled {
  background: rgba(0, 0, 0, 0.91);
  height: 60px;
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
}

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

#header .logo img {
  padding-top: 10px;
  padding-bottom: 15px;
  margin: 0;
  max-height: 175px;
}

/*--------------------------------------------------------------
# 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 a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 85px 10px 30px;
  font-size: 15px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  transition: 0.3s;
}

.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: 0;
  height: 2px;
  bottom: 3px;
  left: 30px;
  background-color: #1acc8d;
  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: 25px;
}

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

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

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

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

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

.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: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
    margin-top: -25px;
  }

  .navbar ul {
    display: none;
  }

  #header.header-transparent {
  background: rgba(0, 0, 0, 0.966);
}


#header .logo img {
  padding-top: 18px;
  padding-bottom: 15px;
  margin: 0;
  max-height: 155px;
}
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: black;
  transition: 0.3s;
  z-index: 999;
}

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

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

.navbar-mobile > ul > li > a:before {
  left: 20px;
}

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

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

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul,
.navbar-mobile .dropdown .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,
.navbar-mobile .dropdown .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a,
.navbar-mobile .dropdown .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i,
.navbar-mobile .dropdown .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,
.navbar-mobile .dropdown .dropdown ul a:hover,
.navbar-mobile .dropdown .dropdown ul .active:hover,
.navbar-mobile .dropdown .dropdown ul li:hover > a {
  color: #1acc8d;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#maine{
  background-size:cover;
  background-position: 1px 00px;
  background-repeat: no-repeat;
  color: #000;
  height: 650px;
}
#maine .form{
  border-radius: 20px;
  background-color: rgba(138, 150, 160, 0.658);
  width: 200px;
  height: fit-content;
  width: 38%;
  margin: 12% 50%;
  position: absolute;
}
#maine .mod {
  padding:5px 50px;
}
.col9{
  
  width: 60%;
  height: 24%;
  border-top-left-radius: 20px;
  margin-top: -5px;
  margin-left: -49px;
  padding-top: 15px;
  padding-left: 120px;
}
.col3{
  margin-top: -94px;
  margin-left: 236px;
  width: 61%;
  height: 23%;
  border-top-right-radius: 20px;
  padding-top: 16px;
  padding-left: 120px;
  
}
#maine .mod #link:any-link{
  color: #000;
}
#maine .mod i{
  font-size:35px;
  font-weight: 600;
  display: inline-flex;
  color: #000;
}
#maine .line{
  width: 100%;
  border: 4px solid black;
  margin-top: -20px;
}
.form h1{
  font-size: 38px;
  font-weight: 600;
  text-transform: capitalize;
  color: #000;
  padding: 15px 30px;
}

.col9 p, .col3 p{
  font-weight: 600;
}
#offer{
  color: #000;
  font-weight: 550;
  margin-top: -20px;
  padding-left: 36px;
  text-transform: capitalize;
}


#maine .btn{
  border-radius: 20px;
  width: 180px;
  background-color: #000;
  border: #000;
  color: white;
  margin-top: 0px;
  padding: 10px;
  text-transform: capitalize;
  font-weight: 600;
}

#maine #bt2{
  margin-top: -10px;
  padding: 5px;
  background-color: aliceblue;
  color: #000;
  text-decoration: underline;
}

@media (min-width:360px) and (max-width:991px){
  #maine{
    background-size:cover;
    background-position: 1px 00px;
    color: hsl(0, 0%, 0%);
    height: 650px;
  }
  #maine .form{
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.384);
    height: fit-content;
    margin-top: 40px;
    width: 95%;
    margin: 12% 0%;
  }
  #maine .mod {
    padding: 15px 10px;
    margin-top: 0px;
  }
  .col9{
    background-color: #86292900;
    width: 52%;
    height: 23%;
    border-top-left-radius: 20px;
    margin-top: -14px;
    margin-left: -9px;
    padding-top: 20px;
    padding-left: 60px;
  }
  
  .col3{
    position: absolute;
    margin-top: -106px;
    margin-left: 174px;
    width: 50%;
    height: 23%;
    border-top-right-radius: 20px;
    padding-top: 21px;
    padding-left: 80px;
    background-color: #00000000;
  }
  #maine .mod #link:any-link{
    color: #000;
  }
  #maine .mod i{
    font-size:40px;
    font-weight: 600;
    color: #000000;
  }
  #maine .line{
    width: 100%;
    border: 4px solid black;
    margin-top: -30px;
  }
  .form h1{
    font-size: 34px;
    font-weight: 600;
    text-transform: capitalize;
    color: #000;
    padding: 15px 10px;
  }
  
  #offer{
    color: #000;
    font-weight: 550;
    margin-top: -20px;
    padding-left: 15px;
    text-transform: capitalize;
  }

  #maine .container-fluid .row{
    width: 85%;
    background-color: #00000000;
    margin: auto;
    overflow: hidden;
  }
  
  #maine .btn{
    border-radius: 20px;
    width: 270px;
    background-color: #000;
    border: #000;
    color: white;
    margin-left: -10px;
    margin-top: -5px;
    padding: 15px;
    text-transform: capitalize;
    font-weight: 600;
  }
  
  #maine #bt2{
    margin-top: 10px;
    padding: 15px;
    background-color: aliceblue;
    color: #000;
    text-decoration: underline;
  }

}

@media (max-width:320px){

  #maine{
    background-size:cover;
    background-position: 1px 00px;
    color: hsl(0, 0%, 0%);
    height: 650px;
  }
  #maine .form{
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.384);
    height: fit-content;
    width: 93%;
    margin: 12% 0%;
  }
  .col9{
    background-color: #530e0e04;
    width: 72%;
    border-top-left-radius: 20px;
    margin-top: -4px;
    margin-left: -49px;
    padding-top: 10px;
    padding-left: 55px;
  }
  
  .col3{
    position: absolute;
    margin-top: -90px;
    margin-left: 100px;
    width: 50%;
    height: 16%;
    border-top-right-radius: 20px;
    padding-top: 8px;
    padding-left:45px;
    background-color: #ce591500;
  }
  #maine .mod #link:any-link{
    color: #000;
  }
  .details .content .phone-img{
    max-height: 400px;
  }
  #maine .mod i{
    font-size:35px;
    font-weight: 600;
    color: #000000;
  }

  #maine .line{
    width: 100%;
    border: 4px solid black;
    margin-top: -20px;
  }
  .form h1{
    font-size: 34px;
    font-weight: 600;
    text-transform: capitalize;
    color: #000;
    padding: 15px 10px;
  }
  
  #offer{
    color: #000;
    font-weight: 550;
    margin-top: -20px;
    padding-left: 15px;
    text-transform: capitalize;
  }
  
  #maine .container-fluid .row{
    width: 100%;
    background-color: #00000000;
    margin: auto;
    overflow: hidden;
  }
  
  #maine .btn{
    border-radius: 20px;
    width: 250px;
    background-color: #000;
    border: #000;
    color: white;
    margin-left: -50px;
    margin-top: -1px;
    padding: 15px;
    text-transform: capitalize;
    font-weight: 600;
  }
  
  #maine #bt2{
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 15px;
    background-color:blac;
    color: #000;
    text-decoration: underline;
  }

  .details .card-img{
    border-radius: 15px;
    padding-top: 10px;
  } 

}

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

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

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #1acc8d;
  margin: 4px 10px;
}

.section-title p {
  margin: 100px;
  /* margin: 0; */
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #010483;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #fafaff;
  min-height: 40px;
  margin-top: 80px;
}

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

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 400;
  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;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding: 40px 0 0 0;
}

.about .icon-boxes h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1acc8d;
  margin-bottom: 15px;
}

.about .icon-box {
  margin-top: 40px;
}

.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #7ceec6;
  border-radius: 50px;
  transition: 0.5s;
}

.about .icon-box .icon i {
  color: #1acc8d;
  font-size: 32px;
}

.about .icon-box:hover .icon {
  background: #1acc8d;
  border-color: #1acc8d;
}

.about .icon-box:hover .icon i {
  color: #fff;
}

.about .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.about .icon-box .title a {
  color: black;
  transition: 0.3s;
}

.about .icon-box .title a:hover {
  color: #1acc8d;
}

.about .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
  font-size: 14px;
}

.about .video-box {
  background: url("../../img/greenlady with box.png") center center no-repeat;
  background-size: contain;
  min-height: 300px;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#3f43fd 50%, rgba(63, 67, 253, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(63, 67, 253, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:hover::after {
  border-left: 15px solid #3f43fd;
  transform: scale(20);
}

.about .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Details
--------------------------------------------------------------*/
.details .content + .content {
  margin-top: 100px;
}

.details .content h3 {
  font-weight: 600;
  font-size: 26px;
  color: #1acc8d;
}

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

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

.details .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #1acc8d;
}

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

.details .card-img{
  border-radius: 15px;
  padding-top: 10px;
} 

.details .signup{
  width: 270px;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 20px;
  border: none;
  background-color: #000000;
}
@media (min-width:360px) and (max-width:991px){
  .details .signup{
    width: 270px;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 12%;
    padding: 10px;
    border-radius: 20px;
    border: none;
    background-color: #000000;
  }

  .details .content + .content {
    margin-top: 00px;
  }
}
@media (max-width:320px){
  .details .signup{
    width: 270px;
    margin-top: 20px;
    margin-left: 10px;
    padding: 10px;
    border-radius: 20px;
    border: none;
    background-color: #000000;
  }
}
section {
  padding: 60px 0;
  overflow: hidden;
}

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

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #1acc8d;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  padding-bottom: 30px;
  text-align: center;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #1acc8d;
}

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

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

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

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

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

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

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

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

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  font-size: 26px;
}

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

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

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #eee;
}

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

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

#text {
  text-align: center !important;
  padding: 30px !important;
}

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

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

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

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery {
  width: 95%;
  margin: auto;
  padding: 10px;
  background-color: #00000000;
}
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  margin-right: 10px;
  margin-bottom: 25px;
  box-shadow: 1px 10px 11px 1px rgba(0, 0, 0, 0.356);
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
#faq-title {
  padding-top: 30px;
  text-align: left;
  width: 090%;
}

#faq-text {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0px 20px 0;
  margin-left: 00px;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000;
}

.faq .section-title .btn {
  width: 220px;
  margin-top: 20px;
  border-radius: 6px;
}
.faq .section-title .btn a:any-link {
  padding-left: 6px;
  color: white;
}

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

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

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

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  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: #34e5a6;
}

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

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

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

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

@media (min-width: 360px) and (max-width: 991px) {
  .faq .faq-list {
    padding: 0;
  }
  .faq-title {
    text-align: center;
  }

  .faq-text {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    text-align: center;
    text-transform: uppercase;
    color: #000;
    height: fit-content;
    width: fit-content;
    margin: auto;
  }

  .faq .section-title .but {
    margin: auto;
    width: fit-content;
  }

  .section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: none;
    background: #1acc8d;
    margin: 4px 10px;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #dd111100;
}

.contact .info i {
  font-size: 20px;
  color: #1acc8d;
  float: left;
  width: 44px;
  height: 44px;
  background: #f0f0ff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #000000;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #504d4d;
}

.contact .info .phone {
  margin-top: 30px;
}

.contact .info .email:hover i,
.contact .info .phone:hover i {
  background: #1acc8d;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  background: #a3070700;
}

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

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

.contact .php-email-form input {
  height: 44px;
}

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

.contact .php-email-form .form-group2 {
  margin: auto;
  width: fit-content;
}

.contact .php-email-form .btn {
  background: #1acc73;
  width: 250px;
  height: 45px;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 15px;
}

.contact .php-email-form .btn:hover {
  background: #34e5a6;
}
/*--------------------------------------------------------------

---------------------------------------------------------------*/

.endless #btn {
  border: 2px solid black;
  background-color: #00663300;
  height: 180px;
  width: 550px;
  padding: 30px;
  margin-top: 50px;
}

#end {
  text-align: center;
  padding-left: 00px;
}

.endless .soon {
  font-weight: 600;
  text-transform: capitalize;
  background-color: #000;
  color: white;
  width: fit-content;
  height: 40px;
  padding: 5px;
  margin-left: 160px;
  margin-top: 30px;
  position: absolute;
}

.endless .btn {
  margin-top: 30px;
  margin-right: 0px;
  border: none;
  width: 220px;
  height: 65px;
  border-radius: 15px;
  background-color: #000;
  color: white;
  font-size: 15px;
  display: flex;
}

.endless i {
  font-size: 50px;
}

.endless .btn a {
  margin-top: 0px;
}

.endless span {
  font-size: 25px;
  margin-top: -30px;
  color: #fff;
}

.endless .img-top {
  width: 600px;
  margin-left: 80px;
}
@media (max-width: 991px) {
  .endless #btn {
    border: 2px solid black;
    background-color: #00663300;
    height: 180px;
    width: 99%;
    margin: auto;
    padding-left: 90px;
  }
  .endless .btn {
    margin-top: 10px;
    margin-left: -50px;
    border: none;
    width: 250px;
    height: 60px;
    border-radius: 15px;
    background-color: #000;
    color: white;
    font-size: 15px;
    padding-left: 100px;
  }
  .endless .btn span {
    margin-top: -10px;
    margin-left: -50px;
    position: absolute;
  }
  .endless .btn i {
    margin-left: -85px;
    margin-top: -2px;
    position: absolute;
  }
  .endless .img-top {
    width: 400px;
    margin-left: 50px;
    margin-top: 2px;
  }
  .endless .soon {
    width: fit-content;
    margin-left: 100px;
    margin-top: -20px;
    position: absolute;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #000000;
  padding: 70px 0;
  color: #fff;
  font-size: 14px;
  width: 100%;
  margin-top: -60px;
}

.footer-top {
  padding: 50px 0 10px 0;
}

.footer-top .footer-info {
  margin-bottom: 15px;
  background: #ffffff21;
  color: #fff;
  border-top: 4px solid #1acc8d;
  text-align: center;
  padding: 30px 20px;
}

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

.footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
}

.footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-left: 10px;
  padding-bottom: 12px;
}

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

.footer-top .footer-links ul {
  list-style: none;
  padding-left: 20px;
  margin: 0;
}

.footer-top .footer-links ul i {
  padding-right: 5px;
  color: #61ebba;
  font-size: 5px;
  line-height: 1;
}

.footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  font-size: 16px;
}

.footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

.footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer-top .footer-links ul a:hover,
.link-tree .btn:hover {
  color: #4be8b0;
}

.link-tree {
  background-color: #ffffff21;
  border-radius: 10px;
  margin-right: 0px;
  width: 350px;
  height: 330px;
  padding: 50px;
}

.link-tree h4 {
  text-align: center;
  padding-bottom: 7px;
  margin-top: -23px;
}

.link-tree ul {
  display: block;
  list-style-type: none;
  padding-left: 0px;
  text-align: center;
}

.link-tree li {
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.link-tree i {
  font-size: 25px;
  padding-top: 0px;
  position: absolute;
  margin-left: -35px;
}

.link-tree .btn {
  border-radius: 10px;
  background-color: #000000c4;
  border: none;
  width: 250px;
  height: 45px;
  padding: 10px;
}

.copyright {
  margin: auto;
  width: 95%;
  border-radius: 5px;
  padding: 0px 15px;
  margin-top: 40px;
  text-align: center;
}

.copyright h5 {
  font-size: 17px;
  font-weight: 600;
}

.copyright span {
  font-size: 14px;
  margin-top: -10px;
}

.copyright i {
  font-size: 20px;
  padding: 7px 2px;
}
#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}
@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
}

@media (min-width: 360px) and (max-width: 991px) {
  .footer-top .footer-links {
    padding: 10px 0;
    text-align: center;
    font-size: 16px;
  }

  .footer-top .footer-links ul {
    padding: 0px 15px;
    width: 45%;
    margin: auto;
  }
  .footer-top .footer-links ul li {
    padding: 15px 10px;
  }

  #h4 {
    margin-left: -50px;
  }

  .link-tree {
    width: 80%;
    margin: auto;
    background-color: rgba(255, 255, 255, 0.048);
    border-radius: 10px;
  }

  .link-tree ul {
    display: block;
    list-style-type: none;
    padding-left: 0px;
    text-align: center;
    text-transform: lowercase;
  }

  .link-tree .btn {
    border-radius: 10px;
    background-color: #000000c4;
    border: none;
    width: 200px;
    height: 45px;
  }
}
