

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "DM Sans", sans-serif;
  color: #444444;
}
.marcellus-regular {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
}
.cursive-font {
  font-family: "Briem Hand", cursive;
  font-optical-sizing: auto;
  
}
a {
  color: #772d06;
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Marcellus", serif;
}
p{
  font-size: 18px;
  line-height: normal;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  /* width: 100%;
  height: 100%; */
  right: 0;
  bottom: 0;
  z-index: 9999;
  /* display: flex;
  justify-content: center;
  align-items: center; */
  overflow: hidden;
  background: #fff;
}

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

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

  100% {
    transform: rotate(360deg);
  }
}
.error{
  color: red;
  font-size: 13px;
  position: absolute;
  left: 2px;
  bottom: -5px;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 33px;
  z-index: 996;
  background: #772d06;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  color: #fff;
  border: 1px solid transparent;
  transition: all 0.4s;
}

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

.back-to-top:hover {
  background: #ffffff;
  border: 1px solid #772d06;
  color: #772d06;
  transition: 0.3s ease;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

#header.header-scrolled {
  padding: 12px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 26px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#header .logo a {
  color: #0b2341;
}

#header .logo img {
  max-height: 64px;
}
.about-img a{
  display: flex;
  align-items: center;
  justify-content: center;
}
.sub-heading{
  color: #832700;
  font-size: 28px;
}
.heading-main{
    font-size: 3rem;
    color: black;
    line-height: normal;
}
.play-icon{
  color: white;
  border: 1px solid white;
  padding: 0px 8px 0 10px;
  border-radius: 50%;
  font-size: 38px;

}
/*--------------------------------------------------------------
# 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 0 10px 60px;
  font-size: 15px;
  font-weight: 500;
  color: #0b2341;
  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: #772d06;
}

 .getstarted,
 .getstarted:focus , .banner-form button {
  background: #772d06;
  padding: 8px 20px;
  /* margin-left: 30px; */
  border: 1px solid transparent;
  color: #fff;
}

 .getstarted:hover,
 .getstarted:focus:hover ,.banner-form button:hover, .banner-form .getstarted:focus:hover{
  color: #772d06!important;
  border: 1px solid #772d06;
  background: #fffffffa;
}
footer ul li a.getstarted{
  margin-left: 0;
  color: white!important;
}
.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: #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;
  text-transform: 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: #772d06;
}

.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: #0b2341;
  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(4, 12, 21, 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: #0b2341;
}

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

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 600px;
  background-color: rgba(4, 12, 21, 0.8);
  overflow: hidden;
  background-image: url(../img/bg-banner.jpg);
  background-size: 100%;
  position: relative;
  transition: 0.3s ease;
  animation: ban-zoom infinite 25s linear;
}
@keyframes ban-zoom {
  0%{
    background-size: 100%;
  }
  100%{
    background-size: 120%;
  }
}
.left-hero-area{
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  align-items: center;
  color: white;
  position: relative;

}
.left-hero-area h2{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}
#hero .counter-banner{
  display: flex;  
  margin-top: 6rem;
  width: fit-content;
  gap: 20px;
  color: white;
  position: absolute;
  bottom: 30px;
  left:0%;
 
}
.counter-banner .item1 .num{
  font-size: 2.3rem;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: normal;
}
.counter-banner .item1 .indicator{
  font-size: 22px;
  font-weight: 200;
  font-family: 'DM Sans', serif;
}
.banner-form{
background: linear-gradient(109.46deg, #4C5C51 1.57%, rgba(196, 196, 196, 0.1) 100%);
border: 1px solid #7c8183;
border-radius: 20px;
padding: 20px;
}
.banner-form input , .banner-form label , .banner-form button , .banner-form textarea{
  display: block;
  width: 100%;
}
.banner-form input:focus-visible , .banner-form textarea:focus-visible {
  border:0.5px solid #772d06;
  outline: none;
}
.banner-form input::placeholder , .banner-form textarea::placeholder{
  color: white;
  opacity: 0.5;
}
.banner-form input , .banner-form textarea{
  color: white;
  font-weight: 200;
  font-size: 16px;
  border: 1px solid #7c8183;
  border-radius: 5px;
  padding: 8px 10px;
  background: linear-gradient(109.46deg, rgba(201, 201, 201, 0.8) 1.57%, rgba(196, 196, 196, 0.1) 100%);
  margin-bottom: 10px;
}
.banner-form label{
 
  color: white;
  font-size: 15px;
  padding-block: 4px;
}
.banner-form button{
  background-color: #772d06;
  color: white;
  outline: none;
  border: 1px solid transparent;
  padding:  10px 10px;
  font-size: 15px;
  text-align: center;
}
.banner-form button:focus{
  border: none;
  outline: none;
}
.testimonialSwiper{
  padding-bottom: 50px;
}
.testimonialSwiper .swiper-pagination-bullet{
  background-color:  #625A5A;
  height: 10px; width: 10px;
  
}
a.side-call-icon {
  font-size: 18px;
  position: fixed;
  bottom: 125px;
  /* padding: 0px 6px; */
  background-color: #832700;
  right: 16px;
  border-radius: 18%;
  color: white;
  height: 40px;
  width: 40px;
  z-index: 999;
  display: flex;
  align-items: center;
  border: 1px solid transparent;
  justify-content: center;
}
a.side-call-icon:hover {
  background-color:#fff ;
  color:#832700; border: 1px solid #772d06;
  border: 1px solid #772d06;
}
.side-call-icon i.bi.bi-telephone-fill {
  
  line-height: 1.2;
}
.about-home p{
  color: black;
}
.about-home .heading-main{
  margin-bottom: 15px;
}

.offered-services{
  background-image: url(../img/Mask\ group\ \(17\).png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.service-tabs ul{
  width: fit-content;
  margin: auto;
  background: white;
  gap: 5px;
}
 .service-tabs .nav-tabs .nav-link{
  padding: 12px;
  width: 110px;
  border: none;
  color: #000;
}
.service-tabs .nav-tabs .nav-link.active,
.service-tabs .nav-tabs .nav-link:focus,
.service-tabs .nav-tabs .nav-link:hover{
  border: none;
  color: #772d06;
}
.service-tabs .tab-content{
  background-color: white;
  padding:  20px;
  width: 80%;
  margin: auto;
}
.service-tabs .nav-item .nav-link.active path , .service-tabs .nav-item .nav-link.active span{
color: #772d06;
fill: #772d06;

}
.service-tabs .tab-content .heading-main{
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 15px;
}
.icon-tab svg path{
  fill: #000;
}
.icon-tab svg{
  height: 40px;
  width: 40px;
  margin-bottom: 5px;
}
.icon-tab{
  color: black;
  font-size: 13px;
  display: flex;
  font-weight: 500;
  align-items: center;
  flex-direction: column;
}
.testimonials{
  text-align: center;
}
.testimonials .t-test{
  font-size: 16px;
  font-weight: 400px;
  line-height: 1.3;
  margin-top: 13px;
  
}
.testimonials .stars i{
  color: gold;
}
.testimonials .t-author{
  font-weight: 600;
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 70px 0;
}


.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: #f38b74;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #0f2f57;
}
.offered-services .tab-pane p{
font-weight: 400;
color: black;
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

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

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #772d06;
  line-height: 1;
}

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

.about .content .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #772d06;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #772d06;
}

.about .content .btn-learn-more:hover {
  background: #772d06;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-top: 0;
}

.counts .count-box {
  box-shadow: -10px -5px 40px 0 rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 100%;
}

.counts .count-box i {
  display: block;
  font-size: 30px;
  color: #772d06;
  float: left;
}

.counts .count-box span {
  font-size: 42px;
  line-height: 24px;
  display: block;
  font-weight: 700;
  color: #0b2341;
  margin-left: 50px;
}

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

.counts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #164682;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .count-box a:hover {
  color: #2169c4;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  background: #343a40;
  position: relative;
  overflow: hidden;
}

.team .member .member-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

.team .member .member-info-content {
  position: absolute;
  left: 50px;
  right: 0;
  bottom: 0;
  transition: bottom 0.4s;
}

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

.team .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

.team .member .social {
  position: absolute;
  left: -50px;
  top: 0;
  bottom: 0;
  width: 50px;
  transition: left ease-in-out 0.3s;
  background: rgba(11, 35, 65, 0.5);
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  display: block;
  color: #fff;
  margin-top: 15px;
}

.team .member .social a:hover {
  color: #772d06;
}

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

.team .member:hover .member-info {
  background: linear-gradient(0deg, rgba(11, 35, 65, 0.9) 0%, rgba(11, 35, 65, 0.8) 20%, rgba(0, 212, 255, 0) 100%);
  opacity: 1;
  transition: 0.4s;
}

.team .member:hover .member-info-content {
  bottom: 30px;
  transition: bottom 0.4s;
}

.team .member:hover .social {
  left: 0;
  transition: left ease-in-out 0.3s;
}
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f6f9fd;
  min-height: 40px;
  margin-top: 82px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 74px;
  }
  #hero{
    animation: unset;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: #0b2341;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 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: #123a6d;
  content: "/";
}

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

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

#footer .footer-top .footer-info {
  margin-bottom: 15px;
  background: #05101e;
  border-top: 4px solid #772d06;
  text-align: center;
  padding: 30px 20px;
}

#footer .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 .footer-top .footer-info p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
}

#footer .footer-top .social-links a {
    font-size: 37px;
    display: inline-block;
    color: #000;
    line-height: 1;
    /* padding: 8px 0; */
     margin-right: 5px; 
    border-radius: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
    background: transparent;
}

#footer .footer-top .social-links a:hover {
  color: #772d06;
 
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
/*  margin-bottom: 30px;*/
  /* border-right: 1px solid #6b2000; */
}

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

#footer .submit-btn{
      background-color: #772d06;
    color: white;
    outline: none;
    border: none;
    padding: 10px 10px;
    font-size: 15px;
    text-align: center;
}

#footer .bdr-right{
    /* border-right: 1px solid #6b2000; */
    margin-top: 60px;
}

#footer .footer-newsletter p{
  color:#000;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #ef6445;
  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 a {
  color: #000;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  margin: auto;
}
#footer .footer-center{
  text-align: center;
}
#footer .footer-center i{
 color: #832700;
 font-size: 40px;
}


#footer .footer-center p{
  color:#000;
  font-size: 16px;
  text-align: left;
}

#footer .footer-top .footer-links ul a:hover {
  color: #ef6445;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 0px;
  background: #fff;
/*  padding: 6px 10px;*/
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
    border: 0;
    padding: 10px 9px;
    width: calc(100% - 10px);
    color: #000;
    background-color: #929d989e;
    margin-bottom: 15px;
}
#footer .logo{
  padding-left: 12px;
}
#footer .bdr-right .footer-center, 
#footer .bdr-right .footer-center a{
  gap: 35px;
  align-items: center;
}
#footer .getstarted{
padding-inline: 30px;
}
#footer .footer-top .social-links a i {
    background: black;
    color: white;
    padding: 5px;
    font-size: 23px;
    border-radius: 50%;
}
#footer .footer-newsletter{
  padding-left:30px;
  text-align: center;
}

#footer .footer-top .footer-links h4{
  padding-top: 4rem;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #ef6445;
}
.gallerySwiper img{
  width: 100%;
  /* height: 380px; */
  object-fit: cover;

}
.gallery{
  padding-top: 0;
}

@media(max-width:991px){
  .left-hero-area h2{
    font-size: 1.7rem;
  }
  #hero {
   
    height: auto;
    background-image: url(../img/bg-banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
#hero .counter-banner{
  position: relative;
  margin-top: 3rem;
}
.gallerySwiper{
  padding: 20px;
} 
#footer .footer-top .footer-links ul{
  display: flex;
    gap: 13px;
    align-items: center;
    justify-content: center;
}
#footer .footer-top .footer-links ul li{
  padding-bottom: 0;
}
.service-tabs ul {
  justify-content: center;
}
.footer-top{
  text-align: center;
}
.gallerySwiper img{
  width: 100%;
  /* height: 460px; */
  object-fit: cover;
}
}
@media(max-width:660px){
  .gallerySwiper img{
   /* height: 300px; */
  }
 
}
@media(max-width:480px){
  .gallerySwiper img{
  
    height: auto;
  }
}
@media (max-width: 991px) {
  #hero .counter-banner {
     
    flex-wrap: wrap;
    position: static;
    text-align: center;
    justify-content: center;
  }
  .footer-links{
    display: none;
  }
}
@media(min-width:1400px){
  .gallerySwiper img{
  
    /* height: 470px; */
  }
}
@media(min-width:1640px){
  .gallerySwiper img{
  
    /* height: 530px; */
  }
}
@media only screen and  (min-width:660px ) and ( max-width:821px){
  .service-tabs .nav-tabs .nav-link {
 
    width: 145px;
   
}
}
.copyrights {
  color: #832700;
  text-align: center;
}
.whatsapp-button{
  position: fixed;
  bottom: 79px;
  right: 16px;
  z-index: 99;
  background-color: #772d06;
  border-radius: 4px;
  color: #ffffff;
  border: 1px solid #772d06;
  text-decoration: none;
  width: 40px;
  height: 40px;
  font-size: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-box-shadow: 0px 0px 25px -6px rgba(0,0,0,1);
  -moz-box-shadow: 0px 0px 25px -6px rgba(0,0,0,1);
  box-shadow: 0px 0px 25px -6px rgba(0,0,0,1);

}
.whatsapp-button:hover{
  border: 1px solid #772d06;
  background-color: white;
  color: #772d06;
  transition: 0.3s ease;
}
.no-decor{
  text-decoration: none;
  color: inherit;
}