/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
header .top-header {
  padding: 8px 0px;
  background-color: #babf57;
}
header .top-header .main-top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .top-header a {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #000;
}
header .bottom-header {
  position: absolute;
  z-index: 9;
  width: 100%;
  padding: 15px 0px 0px;
}
header .bottom-header .main-bottom-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
header .bottom-header .logo {
  width: 30%;
}
header .bottom-header .logo img {
  width: 100%;
}
header .bottom-header .menu-icon {
  display: none;
}
header .bottom-header .primary-menu {
  width: 70%;
  display: flex;
  align-items: center;
  gap: 20px;
}
header .bottom-header .primary-menu nav ul {
  display: flex;
  justify-content: center;
  gap: 5px;
}
header .bottom-header .primary-menu nav li a {
  color: #fff;
  padding: 10px;
  font-size: 18px;
  display: inline-block;
}
header .bottom-header .primary-menu .primary-btn a {
  background-color: #326e53;
  color: #fff;
}
header .bottom-header .menu-dropdown {
  position: relative;
}
header .bottom-header .dropdown {
  position: absolute;
  width: 300px;
  background-color: #babf57;
  padding: 15px 20px;
  border-radius: 10px;
  transform: translateY(30px);
  transition: all 0.2s linear;
  visibility: hidden;
  z-index: 9;
}
header .bottom-header .dropdown ul {
  display: flex;
  flex-direction: column;
  gap: 5px !important;
}
header .bottom-header .dropdown li a {
  padding: 3px 10px !important;
  color: #262626 !important;
  font-size: 16px !important;
}
header .bottom-header .dropdown-icon i {
  transition: all 0.3s linear;
}
header .bottom-header .menu-dropdown:hover .dropdown {
  transform: translateY(0px);
  visibility: visible;
}
header .bottom-header .menu-dropdown:hover .dropdown-icon i {
  transform: rotate(180deg);
}
header .sticky .primary-btn a {
  background-color: #babf57 !important;
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {
  position: relative;
}
.hero-section .item {
  position: relative;
  padding: 250px 0px 200px;
}
.hero-section .item .banner-image {
  display: flex;
}
.hero-section .item .banner-image img {
  width: 100%;
}
.hero-section .item .banner-content {
  color: #fff;
}
.hero-section .item .banner-content .banner-tagline {
  padding: 8px 30px;
  display: inline-block;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  background-color: rgba(var(--floens-white-rgb, 255, 255, 255), 0.2);
  margin-bottom: 19px;
}
.hero-section .item .banner-content .banner-title {
  font-size: 50px;
  line-height: 1.3;
}
.hero-section .item .banner-content .primary-btn {
  margin-top: 20px;
}
.hero-section .slider-1 {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../uploads/banners/slider-1.webp);
  background-position: center;
  background-size: cover;
}
.hero-section .slider-2 {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../uploads/banners/slider-2.webp);
  background-position: center;
  background-size: cover;
}
.hero-section .slider-3 {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../uploads/banners/slider-3.webp);
  background-position: center;
  background-size: cover;
}
.hero-section .owl-nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.hero-section .owl-nav button span {
  display: inline-block;
  background-color: rgba(var(--floens-white-rgb, 255, 255, 255), 0.2);
  font-size: 36px;
  padding: 10px;
  color: #fff;
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about-section {
  padding: 80px 0px;
}
.about-section .main-about {
  display: flex;
}
.about-section .about-img {
  width: 50%;
  position: relative;
}
.about-section .about-img .about-two-img {
  position: absolute;
  top: 50%;
  right: 100px;
  display: flex;
  transform: translateY(-50%);
  width: 100%;
  max-width: 270px;
  border: 10px solid var(--floens-white, #ffffff);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.15);
}
.about-section .about-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/*--------------------------------------------------------------
# Service Section
--------------------------------------------------------------*/
.service-section {
  padding: 80px 0px 0px;
  background-color: #2b1e16;
  background-image: url(../uploads/banners/services-bg-1.webp);
  /* ======== cta ========= */
}
.service-section .service-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}
.service-section .sec-title-border .sec-title__tagline {
  color: #fff;
}
.service-section .service-items {
  margin-top: 60px;
}
.service-section .service-items .item {
  padding: 20px;
  background-color: #ededed;
}
.service-section .service-items .item-content {
  padding: 15px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-section .service-items .item-content h4 {
  color: #2e2e2e;
}
.service-section .service-items .item-content p {
  font-size: 16px;
}
.service-section .service-items .item-content a.btn {
  color: #1c1c1c;
  display: inline;
}
.service-section .service-items .item-content a.btn:hover {
  color: #326e53;
}
.service-section .cta {
  display: flex;
  align-items: center;
  gap: 40px;
  background: linear-gradient(rgba(138, 81, 51, 0.6352941176), rgba(138, 81, 51, 0.6352941176)), url(../uploads/banners/services-info-bg-1.png);
  background-color: #8a5133;
  background-position: center;
  background-size: cover;
  padding: 40px 30px;
  color: #fff;
}
.service-section .cta p {
  color: #fff;
  margin-top: 15px;
}
.service-section .cta .cta-content {
  width: 50%;
}
.service-section .cta .cta-link {
  width: 50%;
  text-align: center;
}
.service-section .cta .cta-link .item a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 26px;
  color: #fff;
  transition: all 0.2s linear;
}
.service-section .cta .cta-link .item a:hover {
  color: #babf57;
}

/*--------------------------------------------------------------
# Why choose us Section
--------------------------------------------------------------*/
.why-choose-us {
  padding: 80px 0px;
}
.why-choose-us .main-why {
  display: flex;
  gap: 40px;
}
.why-choose-us .why-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.why-choose-us .why-content .happy-client {
  display: flex;
  gap: 20px;
}
.why-choose-us .why-content .happy-client .item {
  display: flex;
  align-items: center;
  gap: 25px;
  width: 50%;
}
.why-choose-us .why-content .happy-client .item .happy-client-title {
  font-size: 18px;
  color: #000;
}
.why-choose-us .why-content .happy-client .item .client-number {
  font-size: 40px;
  font-weight: 600;
  color: #326e53;
}
.why-choose-us .why-content .happy-client .item .icon-box span {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #326e53;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
}
.why-choose-us .why-content .primary-btn {
  margin-top: 20px;
}
.why-choose-us .why-img {
  width: 50%;
  display: flex;
}
.why-choose-us .why-img .img2 {
  margin: -30px 0px 0px -50px;
}

/*--------------------------------------------------------------
# Testimonial Section
--------------------------------------------------------------*/
.testimonial-section {
  display: flex;
}
.testimonial-section .testimonial-img {
  width: 50%;
  background: url(../uploads/other/testimonial.webp);
  background-position: center;
  background-size: cover;
}
.testimonial-section .testimonial-content {
  width: 50%;
  background: #e5e5e5;
  padding: 50px 100px 50px 50px;
}
.testimonial-section .testimonial-content .main-testimonial-items {
  margin-top: 30px;
}
.testimonial-section .testimonial-content .main-testimonial-items p {
  margin: 15px 0px;
}
.testimonial-section .testimonial-content .main-testimonial-items .author {
  font-size: 24px;
  font-weight: 600;
  color: #3c3c3c;
}
.testimonial-section .testimonial-content .google-img img {
  width: 150px;
}

/*--------------------------------------------------------------
# Footer Section
--------------------------------------------------------------*/
footer {
  background: linear-gradient(90deg, rgb(186, 191, 87) 0%, rgb(50, 110, 83) 84%);
}
footer .top-header {
  padding: 50px 0px;
  display: flex;
  justify-content: space-between;
  color: #fff;
  flex-wrap: wrap;
  gap: 20px;
}
footer .top-header ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
footer .top-header ul a {
  font-size: 16px;
}
footer .top-header a {
  color: #fff;
}
footer .top-header i {
  margin-right: 15px;
}
footer .top-header .footer-contact ul li a {
  display: flex;
  align-items: center;
}
footer .top-header .social-media {
  margin-top: 20px;
  font-size: 25px;
}
footer .bottom-footer {
  background: #000000;
  padding: 10px 0px;
  text-align: center;
  font-size: 14px;
  color: #fff;
}
footer .bottom-footer a {
  color: #ffffff;
}
footer .bottom-footer img {
  margin-top: 10px;
}

.float a {
  width: 50px;
  height: 50px;
  padding: 20px;
  background: rgb(50, 110, 83);
  border-radius: 5px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

/*--------------------------------------------------------------
# Inner Pages Style Start
--------------------------------------------------------------*/
.two-col .main-two-col {
  display: flex;
  gap: 40px;
  align-items: center;
}
.two-col .box-img {
  width: 50%;
}
.two-col .box-img img {
  border-radius: 10px;
  box-shadow: 1px 1px 12px rgba(100, 100, 100, 0.431372549);
}
.two-col .box-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.two-col:nth-child(odd) {
  background: #edf2ff;
}
.two-col:nth-child(odd) .main-two-col {
  flex-direction: row-reverse;
}

.list-style {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.list-style li {
  list-style: inside;
}

/*--------------------------------------------------------------
# About Us Page
--------------------------------------------------------------*/
#about-page .box-img img {
  border-radius: 10px;
}

/*--------------------------------------------------------------
# Gallery Page
--------------------------------------------------------------*/
#gallery-page .main-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 20px;
  align-items: stretch;
}
#gallery-page .gallery-img {
  overflow: hidden;
  transition: all 0.2s ease-in-out;
  display: flex;
  border-radius: 10px;
}
#gallery-page .gallery-img:hover img {
  transform: scale(1.1);
  transition: all 0.2s ease-in-out;
}

/*--------------------------------------------------------------
# Service Area Page
--------------------------------------------------------------*/
#service-areas-page .service-areas-list {
  padding-bottom: 80px;
}
#service-areas-page .main-areas-list ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 20px;
  align-items: stretch;
}
#service-areas-page .main-areas-list li {
  background-color: #326e53;
  color: #fff;
  padding: 10px;
  font-size: 18px;
}

/*--------------------------------------------------------------
# Blog Page
--------------------------------------------------------------*/
#blog-page .inner-page {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../uploads/banner/about-inner-banner.webp);
}
#blog-page .main-blog {
  background: #eaf0f5;
}
#blog-page .blogs {
  display: flex;
  gap: 40px;
}
#blog-page .blog-date {
  font-size: 18px;
}
#blog-page .blog-grid {
  width: 70%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(40%, 1fr));
  grid-gap: 20px;
  align-items: stretch;
}
#blog-page .blog-grid .items {
  padding: 20px;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 15px;
  transition: all 0.2s linear;
}
#blog-page .blog-grid .items .item-blog-dec {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#blog-page .blog-grid .items a {
  color: #000;
}
#blog-page .blog-grid .items .blog-img {
  overflow: hidden;
  border-radius: 10px;
  display: flex;
}
#blog-page .blog-grid .items .blog-img img {
  transition: all 0.2s linear;
}
#blog-page .blog-grid .items:hover img {
  transform: scale(1.1);
}
#blog-page .blog-grid .items:hover {
  box-shadow: 0 0 20px 0 rgba(13, 38, 60, 0.1803921569);
}
#blog-page .blog-side-bar {
  width: 30%;
}

.blog-side-bar {
  background-color: #fff;
  padding: 20px;
  border-radius: 15px;
  border: 1px solid #ccc;
}
.blog-side-bar .recent-posts {
  padding-top: 15px;
  margin-top: 20px;
  border-top: 2px solid #babf57;
}
.blog-side-bar .recent-posts ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
.blog-side-bar .recent-posts ul li {
  display: flex;
  gap: 20px;
}
.blog-side-bar .recent-posts .entry-image {
  width: 250px;
  display: flex;
  border-radius: 5px;
}
.blog-side-bar .recent-posts .entry-image a {
  display: flex;
}
.blog-side-bar .recent-posts .entry-image img {
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-side-bar .recent-posts .entry-title p a {
  color: #000;
  font-size: 18px;
}
.blog-side-bar .recent-posts h6 {
  font-size: 16px;
}

/*--------------------------------------------------------------
# Blog Detail Page
--------------------------------------------------------------*/
#blog-detail-page .inner-page {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../uploads/banner/about-inner-banner.webp);
}
#blog-detail-page .detail-page {
  background: #eaf0f5;
}
#blog-detail-page .main-detail-page {
  display: flex;
  gap: 20px;
}
#blog-detail-page .single-blog-content {
  width: 70%;
  padding: 20px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#blog-detail-page .blog-side-bar {
  width: 30%;
}

/*--------------------------------------------------------------
# Contact Us Page
--------------------------------------------------------------*/
form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #f7f7f7;
  padding: 50px 35px;
  border-radius: 10px;
  box-shadow: 1px 1px 12px rgba(137, 137, 137, 0.3098039216);
}
form .box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
form .group-box {
  display: flex;
  gap: 20px;
}
form .group-box .box {
  width: 50%;
}
form input, form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  resize: none;
}
form input[type=submit] {
  background: #326e53;
  width: 170px;
  font-size: 18px;
  color: #fff;
  padding: 13px 0px;
  cursor: pointer;
}

#contact-page .main-contact {
  display: flex;
  gap: 30px;
}
#contact-page .contact-details {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#contact-page .contact-details .item a {
  display: flex;
  gap: 15px;
  align-items: center;
  font-size: 18px;
  color: #1c1c1c;
}
#contact-page .contact-details .item .item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #326e53;
}
#contact-page .contact-details .item .item-icon i {
  color: #fff;
  font-size: 22px;
}
#contact-page .contact-details .business-hours {
  margin-top: 30px;
}
#contact-page .contact-details .business-hours ul {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#contact-page .contact-details .business-hours ul li {
  font-size: 18px;
}
#contact-page .contact-form {
  width: 50%;
}
#contact-page .contact-map {
  display: flex;
}
#contact-page .contact-map iframe {
  width: 100%;
  height: 350px;
}

/*--------------------------------------------------------------
# Get A Quote Page
--------------------------------------------------------------*/
#get-quote-page .main-get-quote {
  display: flex;
  gap: 40px;
}
#get-quote-page .img-box {
  width: 40%;
}
#get-quote-page .img-box img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0px 0px 12px rgba(204, 204, 204, 0.8);
}
#get-quote-page .form-box {
  width: 60%;
}

.about-content ul li {
  list-style: disc;
  line-height: 23px;
}/*# sourceMappingURL=style.css.map */


.blog-heading{
  font-size: 2rem;
}