/**
* Template Name:core 8 media
/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}


.roboto-thin {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.roboto-light {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.roboto-regular {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.roboto-medium {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.roboto-bold {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.roboto-black {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.roboto-thin-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.roboto-light-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.roboto-regular-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.roboto-medium-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.roboto-bold-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.roboto-black-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: italic;
}


h{
  text-align: justify;
}

p {
  margin-bottom: 20px; /* Adjust the margin-bottom value to increase or decrease space */
}
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #009961;
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", 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 #009961;
  border-top-color: #fff;
  border-bottom-color: #fff;
  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: #009961;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.1s;
}

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

.back-to-top:hover {
  background: #00c27b;
  color: #fff;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(40, 40, 40, 0.9);
}

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

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 60px;
}

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

/* Get Startet Button */
.get-started-btn {
  margin-left: 25px;
  background: #009961;
  color: #fff;
  border-radius: 50px;
  padding: 8px 25px 9px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
}

.get-started-btn:hover {
  background: #00b371;
  color: #fff;
}

@media (max-width: 992px) {
  .get-started-btn {
    margin: 0 15px 0 0;
    padding: 6px 18px;
  }
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;

}

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

  
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  position: relative;
  white-space: nowrap;
  margin: 0 12px;
}

.navbar a,
.navbar a:focus {
  
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 3px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(192, 212, 180, 0.7);
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

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

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #009961;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

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

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

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

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

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

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

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(15, 15, 15, 0.9);
  transition: 0.3s;
  z-index: 999;
}

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

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

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: rgba(192, 212, 180, 0.7);
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

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

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

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


/*--------------------------------------------------------------
#background video
--------------------------------------------------------------*/
.video-background-holder {
  position: relative;
  background-color: black;
  height: calc(100vh - 72px);
  min-height: 25rem;
  width: 100%;
  overflow: hidden;
}

.video-background-holder video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.video-background-content {
  position: relative;
  z-index: 2;
}

.video-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  opacity: 0.5;
  z-index: 1;
}

/*
*
* ==========================================
* FOR DEMO PURPOSES
* ==========================================
*
*/

code {
  padding: 0 0.15rem;
  background: #f5f5f5;
  border-radius: 0.2rem;
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

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

.section-bg {
  background-color: #8fffd6;
}

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

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #009961;
  bottom: 0;
  left: 0;
}

.section-title p {
  margin-bottom: 0;
  color: #777777;
  font-size: 15px;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/


.about-us-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.about-text {
  width: 50%;
}

.about-image {
  width: 40%;
}

.about-image img {
  max-width: 100%;
  height: auto;
}

.welcome-message {
  font-family: Roboto, sans-serif;
  font-weight: 900;
  font-style: normal;
  color: rgba(230, 23, 23, 0.589);
}

.core8-media,
.marketing {
  color: rgba(230, 23, 23, 0.589);
  font-weight: bold;
}

@media (max-width: 991px) {
  .about-us-container {
    flex-direction: column;
    padding: 20px;
  }

  .about-text,
  .about-image {
    width: 100%;
    margin-bottom: 10px;
  }

  .welcome-message {
    margin-top: 20px;
  }
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 60px 30px;
  transition: all ease-in-out 0.3s;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  border-radius: 18px;
  border-bottom: 5px solid #fff;
}

.services .icon-box .icon {
  width: 64px;
  height: 64px;
  background: #009961;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
  color: #fff;
}

.services .icon-box .icon i {
  font-size: 28px;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #282828;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  transform: translateY(-10px);
  border-color: #009961;
}

.services .icon-box:hover h4 a {
  color: #009961;
}

.video-container {
  position: relative;
  width: 100%;
  /* Adjust the max-width as needed */
  margin-top: 20px auto;
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
}

.box-container {
  background-color: rgba(190, 51, 16, 0.589); /* Background color */
  padding: 20px; /* Padding for inner content */
  border-radius: 10px; /* Rounded corners */
  max-width: 900px; /* Maximum width for the box container */
  margin: 0 auto;
  align-items: center; /* Center the box container horizontally */
}
.box-heading {
  text-align: center; /* Center the text */
  margin-bottom: 20px; /* Add some space below the heading */
}
.box-container {
  background-color: rgba(230, 23, 23, 0.589); /* Background color with RGBA values */
  padding: 20px; /* Add padding for inner content */
  border-radius: 10px; /* Add rounded corners */
  margin-bottom: 0; /* Remove bottom margin */
}
.custom-submit-button {
  background-color: #009961;
  color: #fff; /* Text color */
  border: none; /* Remove border */
  padding: 10px 20px; /* Adjust padding as needed */
  border-radius: 5px; /* Add rounded corners */
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.custom-submit-button:hover {
  background-color: #007a4d; /* Darker shade for hover effect */
}

.col-lg-7 {
  max-width: 45%; /* Adjust the width percentage as needed */
}


/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
  background-size: cover;
  padding: 120px 0;
  position: relative; /* Add position relative to contain the image */
}

.cta img {
  position: absolute; /* Position the image */
  top: 0;
  left: 0;
  width: 100%; /* Ensure the image covers the entire container */
  height: 50%; /* Ensure the image covers the entire container */
  object-fit: cover; /* Ensure the image covers the entire container */
  z-index: -1; /* Send the image to the back */
}

.cta .cta-btn:hover {
  background: #00b371;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.features .icon-box i {
  font-size: 48px;
  float: left;
  color: #009961;
}

.features .icon-box p {
  font-size: 15px;
  color: #fff9f9;
  margin-left: 60px;
}

.features .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(131, 128, 128, 0.6), rgba(133, 123, 123, 0.6)), url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 120px 0;
  height: 50%;
}
.clients {
  padding-top: 30px;
}

.clients .clients-wrap {
  border-top: 1px solid #e7e7e7;
  border-left: 1px solid #e7e7e7;
}

.clients .client-logo {
  padding: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
  overflow: hidden;
  background: #fff;
  height: 140px;
}

.clients .client-logo:hover img {
  transform: scale(1.1);
}

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

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  background: url("../img/counts-bg.jpg") center center no-repeat;
  background-size: cover;
  padding: 80px 0 60px 0;
  position: relative;
}

.counts::before {
  content: "";
  position: absolute;
  background: rgba(17, 17, 17, 0.9);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.counts .title {
  position: relative;
  color: #fff;
  margin-bottom: 40px;
}

.counts .title h3 {
  font-size: 36px;
  font-weight: 700;
}

.counts .counters span {
  font-size: 48px;
  display: block;
  font-weight: 700;
  color: #009961;
}

.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #fff;
}

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

/*--------------------------------------------------------------
# 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: 8px 16px 10px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  margin: 0 3px 10px 3px;
  transition: all ease-in-out 0.3s;
  background: #f4f4f4;
  border-radius: 50px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #009961;
}

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

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

.portfolio .portfolio-item img {
  position: relative;
  top: 0;
  transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  border-radius: 20px; /* Adjust the value as needed */
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: -50px;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: #009961;
  padding: 15px 20px;
}

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

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

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: white;
  transition: ease-in-out 0.3s;
}

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

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

.portfolio .portfolio-item:hover img {
  top: -30px;
}

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

/*--------------------------------------------------------------
# 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 #009961;
}

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

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(40, 40, 40, 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;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing {
  background-color: #f9f9f9;
}

.pricing .box {
  padding: 40px 20px;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
}

.pricing .box h3 {
  font-weight: 400;
  padding: 15px;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #282828;
}

.pricing .box h4 {
  font-size: 42px;
  color: #009961;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 20px;
}

.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing .box ul {
  padding: 20px 0;
  list-style: none;
  color: #282828;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

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

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

.pricing .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .box .btn-wrap {
  padding: 15px;
  text-align: center;
}

.pricing .box .btn-buy {
  display: inline-block;
  padding: 10px 40px 12px 40px;
  border-radius: 50px;
  border: 2px solid #009961;
  color: #009961;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .box .btn-buy:hover {
  background: #009961;
  color: #fff;
}

.pricing .recommended {
  border-color: #009961;
}

.pricing .recommended .btn-buy {
  background: #009961;
  color: #fff;
}

.pricing .recommended .btn-buy:hover {
  background: #00b371;
  border-color: #00b371;
}

.pricing .recommended-badge {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-size: 13px;
  padding: 3px 25px 6px 25px;
  background: #edfbf0;
  color: #009961;
  border-radius: 50px;
}

/*--------------------------------------------------------------
# Faq
--------------------------------------------------------------*/
.faq {
  padding: 0;
}

.faq .content {
  padding: 60px 100px 0 100px;
}

.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.faq .content p {
  font-size: 15px;
  color: #848484;
}


.faq-image {
  width: 40%; /* Adjust width of image container */
}

.faq-image img {
  max-width: 100%; /* Ensure image does not exceed container width */
  height: auto; /* Maintain aspect ratio */
}


.faq .accordion-list {
  padding: 0 50px 60px 50px; /* Adjust the padding as needed */
}

.faq .accordion-list ul li {
  width: 100%; /* Adjust the width as needed */
}

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

.faq .accordion-list li {
  padding: 20px;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  border-radius: 4px;
}

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

.faq .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

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

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

.faq .accordion-list a.collapsed {
  color: #343a40;
}

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

.faq .accordion-list a.collapsed .icon-show {
  display: contents;
}

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

@media (max-width: 992px) {
  .faq .accordion-list {
    display: flex; /* Use flexbox to display items horizontally */
    flex-wrap: wrap; /* Allow items to wrap to the next line */
    justify-content: space-between; /* Distribute items evenly along the main axis */
  }
  
  .faq .accordion-list li {
    width: 48%; /* Set a width for each item */
    width: 100%; /* Set the width to 100% for full width on mobile */
    padding: 20px; /* Increase padding for larger box size */
    margin-bottom: 20px; /* Add margin bottom to create space between rows */
  }
}
@media (max-width: 1024px) {

  .faq .content,
  .faq .accordion-list {
    padding-left: 0;
    padding-right: 0;
  
  }
}

@media (max-width: 992px) {
  .faq {
    img {
      padding-top: 30px;
    } 
  }

  .faq .content {
    padding-top: 30px;
  }

  .faq .accordion-list {
    padding-bottom: 30px;

  }
}
@media (max-width: 576px) {
  .faq .accordion-list li {
    width: 100%; /* Set the width to 100% for full width on mobile */
    padding: 20px; /* Increase padding for larger box size */
    margin-bottom: 20px; /* Add margin bottom for spacing between items */
  }

  .faq .accordion-list p {
    font-size: 10px; /* Increase font size for better readability */
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/


.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 32px;
  color: #009961;
  float: left;
  line-height: 1;
}

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

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

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

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

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

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .sent-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #009961;
}

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

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

.contact .php-email-form button[type=submit] {
  background: #009961;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #00b371;
}

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

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f9f9f9;
  min-height: 40px;
  margin-top: 72px;
}

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

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 500;
}

.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: #424242;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #0f0f0f;
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
}

#footer h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0 0 15px 0;
}

#footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 40px 0;
}

#footer .social-links {
  margin: 0 0 40px 0;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #009961;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #00b371;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  margin: 0 0 5px 0;
}

#footer .credits {
  font-size: 13px;
}

#footer .credits a {
  color: #00b371;
  transition: 0.3s;
}

#footer .credits a:hover {
  color: #009961;
}

/*--------------------------------------------------------------
# our value
--------------------------------------------------------------*/
.ourvalue .icon-box {
  padding: 60px 30px;
  transition: all ease-in-out 0.3s;
  background: #000000;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  border-radius: 18px;
  border-bottom: 5px solid #fff;
}




.ourvalue .icon-box:hover {
  transform: translateY(-10px);
  border-color: #009961;
}

.ourvalue .icon-box:hover h4 a {
  color: #009961;
}

.carousel-item {
  height: 100vh;

  min-height: 350px;
  background: no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}


/*--------------------------------------------------------------
# why us
--------------------------------------------------------------*/


.carousel-item {
  width: 100%;
  height: auto; /* Change height to auto for dynamic height based on content */
}

.carousel-item img {
  width: 100%;
  max-height: 100%; /* Ensure the image fills the entire carousel item */
  object-fit: cover; /* Maintain aspect ratio and cover entire area */
}

.carousel-caption {
  color: #ffffff; /* Adjust the color as needed */
  position: absolute; /* Position captions absolutely within the carousel item */
  bottom: 0; /* Align captions to the bottom */
  left: 0; /* Align captions to the left */
  right: 0; /* Align captions to the right */
  background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
  padding: 10px; /* Add padding to captions */
}
/*--------------------------------------------------------------
# Social media
--------------------------------------------------------------*/
.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: 8px 16px 10px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  margin: 0 3px 10px 3px;
  transition: all ease-in-out 0.3s;
  background: #f4f4f4;
  border-radius: 50px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #009961;
}

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

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

.portfolio .portfolio-item img {
  position: relative;
  top: 0;
  transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: -50px;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: #009961;
  padding: 15px 20px;
}

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

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

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: white;
  transition: ease-in-out 0.3s;
}

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

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

.portfolio .portfolio-item:hover img {
  top: -30px;
}

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

/*--------------------------------------------------------------
#Branding
--------------------------------------------------------------*/
.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: 8px 16px 10px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  margin: 0 3px 10px 3px;
  transition: all ease-in-out 0.3s;
  background: #f4f4f4;
  border-radius: 50px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #009961;
}

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

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

.portfolio .portfolio-item img {
  position: relative;
  top: 0;
  transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: -50px;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: #009961;
  padding: 15px 20px;
}

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

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

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: white;
  transition: ease-in-out 0.3s;
}

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

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

.portfolio .portfolio-item:hover img {
  top: -30px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}
/*--------------------------------------------------------------
#Website
--------------------------------------------------------------*/
.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: 8px 16px 10px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  margin: 0 3px 10px 3px;
  transition: all ease-in-out 0.3s;
  background: #f4f4f4;
  border-radius: 50px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #009961;
}

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

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

.portfolio .portfolio-item img {
  position: relative;
  top: 0;
  transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: -50px;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: #009961;
  padding: 15px 20px;
}

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

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

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: white;
  transition: ease-in-out 0.3s;
}

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

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

.portfolio .portfolio-item:hover img {
  top: -30px;
}

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


/*--------------------------------------------------------------
#LEADERSHIP
--------------------------------------------------------------*/
#team {
  background-color: #f9f9f9; /* Background color for the team section */
  padding: 60px 0; /* Padding for the team section */
}

.team .container {
  max-width: 1200px; /* Max width for the container */
  margin: auto; /* Center aligning the container */
}

.team .team-content {
  padding: 0 15px; /* Padding for the team content */
}

.team .team-content h2 {
  font-size: 24px; /* Font size for the heading */
  font-weight: bold; /* Font weight for the heading */
  color: #333; /* Text color for the heading */
}

.team .team-content p {
  font-size: 16px; /* Font size for the paragraph */
  color: #555; /* Text color for the paragraph */
}

.team .team-image {
  max-width: 100%; /* Maximum width for the team image */
  height: auto; /* Auto height for the team image */
}

.team .social-links {
  display: flex; /* Displaying social links horizontally */
  justify-content: center; /* Center aligning the social links */
  margin-top: 20px; /* Margin top for the social links */
}

.team .social-links a {
  font-size: 20px; /* Font size for the social links */
  margin: 0 10px; /* Margin for the social links */
  color: #555; /* Text color for the social links */
  transition: color 0.3s ease; /* Transition effect for color change */
}

.team .social-links a:hover {
  color: #007bff; /* Text color for the social links on hover */
}

/* Additional styling for the card */
.team .card {
  border: none; /* Removing border from the card */
}

.team .card-body {
  padding: 0; /* Removing padding from the card body */
}

.team .card-body figure {
  margin: 0; /* Removing margin from the figure */
}

.team .card-body figcaption {
  padding: 10px; /* Padding for the figcaption */
}

.team .card-body h4 {
  font-size: 18px; /* Font size for the card title */
  font-weight: bold; /* Font weight for the card title */
  margin-bottom: 5px; /* Margin bottom for the card title */
}

.team .card-body p {
  font-size: 14px; /* Font size for the card text */
  color: #777; /* Text color for the card text */
  margin-bottom: 0; /* Removing margin bottom from the card text */
}
h1 {
  font-size: 24px; /* Set the font size for the entire h1 */
  color: #333; /* Set the color for the entire h1 */
}

.highlight {
  font-weight: bold; /* Make the text within the span elements bold */
}

/* Adjust the size of the text within the span elements */
.highlight {
  font-size: 28px; /* Set the font size for the highlighted text */
  color: blue; /* Set the color for the highlighted text */
}

.custom-text {
  color: blue;
}
@media (max-width: 576px) {
  #team {
    padding: 40px 0; /* Reduce padding for smaller screens */
  }

  .team .team-content {
    padding: 0; /* Remove padding for better space utilization */
  }

  .team .team-content h2 {
    font-size: 20px; /* Decrease font size for the heading */
  }

  .team .team-content p {
    font-size: 8px; /* Decrease font size for the paragraph */
  }

  .team .team-image {
    max-width: 80%; /* Decrease max width for better fit on smaller screens */
    margin: 20px auto; /* Add margin for better spacing */
  }

  .team .social-links {
    margin-top: 10px; /* Reduce margin top for social links */
  }

  .team .social-links a {
    font-size: 16px; /* Decrease font size for the social links */
  }

  .team .card-body h4 {
    font-size: 16px; /* Decrease font size for the card title */
  }

  .team .card-body p {
    font-size: 12px; /* Decrease font size for the card text */
  }
}
@media (max-width: 576px) {
  /* Other media queries remain unchanged */

  .team .team-image {
    max-width: 80%; /* Decrease max width for better fit on smaller screens */
    margin: 20px auto; /* Center the image horizontally */
    display: block; /* Ensure the image is displayed as a block element */
  }
}
/*--------------------------------------------------------------
# SEO Section
--------------------------------------------------------------*/

#seo {
  width: 100%;
  min-height: 100vh;
  background: url("../img/seo-bg.jpg") top center;
  background-size: cover;
  position: relative;
}

#seo:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#seo .container {
  position: relative;
  padding-top: 74px;
  text-align: center;
}

#seo h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

#seo h1 span {
  color: #ffc451;
}

#seo h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0 0 0;
  font-size: 24px;
}

#seo .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 100%;
  text-align: center;
}

#seo .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: #ffc451;
}

#seo .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
}

#seo .icon-box h3 a {
  color: #fff;
  transition: ease-in-out 0.3s;
}

#seo .icon-box h3 a:hover {
  color: #ffc451;
}

#seo .icon-box:hover {
  border-color: #ffc451;
}

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

@media (max-width: 768px) {
  #seo h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #seo h2 {
    font-size: 20px;
    line-height: 24px;
  }
}



/*--------------------------------------------------------------
# SMM Section
--------------------------------------------------------------*/
#smm {
  width: 100%;
  min-height: 100vh;
  background: url("../img/smm-bg.jpg") top center;
  background-size: cover;
  position: relative;
}

#smm:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#smm .container {
  position: relative;
  padding-top: 74px;
  text-align: center;
}

#smm h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

#smm h1 span {
  color: #ffc451;
}

#smm h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0 0 0;
  font-size: 24px;
}

#smm .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 100%;
  text-align: center;
}

#smm .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: #ffc451;
}

#smm .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
}

#smm .icon-box h3 a {
  color: #fff;
  transition: ease-in-out 0.3s;
}

#smm .icon-box h3 a:hover {
  color: #ffc451;
}

#smm .icon-box:hover {
  border-color: #ffc451;
}

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

@media (max-width: 768px) {
  #smm h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #smm h2 {
    font-size: 20px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# Paid Search Section
--------------------------------------------------------------*/
#paidsearch {
  width: 100%;
  min-height: 100vh;
  background: url("../img/paidsearch-bg.jpg") top center;
  background-size: cover;
  position: relative;
}

#paidsearch:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#paidsearch .container {
  position: relative;
  padding-top: 74px;
  text-align: center;
}

#paidsearch h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

#paidsearch h1 span {
  color: #ffc451;
}

#paidsearch h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0 0 0;
  font-size: 24px;
}

#paidsearch .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 100%;
  text-align: center;
}

#paidsearch .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: #ffc451;
}

#paidsearch .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
}

#paidsearch .icon-box h3 a {
  color: #fff;
  transition: ease-in-out 0.3s;
}

#paidsearch .icon-box h3 a:hover {
  color: #ffc451;
}

#paidsearch .icon-box:hover {
  border-color: #ffc451;
}

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

@media (max-width: 768px) {
  #paidsearch h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #paidsearch h2 {
    font-size: 20px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# VIDEO PRODUCTION Section
--------------------------------------------------------------*/
#videoproduction {
  width: 100%;
  min-height: 100vh;
  background: url("../img/videoproduction-bg.jpg") top center;
  background-size: cover;
  position: relative;
}

#videoproduction:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#videoproduction .container {
  position: relative;
  padding-top: 74px;
  text-align: center;
}

#videoproduction h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

#videoproduction h1 span {
  color: #ffc451;
}

#videoproduction h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0 0 0;
  font-size: 24px;
}

#videoproduction .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 100%;
  text-align: center;
}

#videoproduction .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: #ffc451;
}

#videoproduction .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
}

#videoproduction .icon-box h3 a {
  color: #fff;
  transition: ease-in-out 0.3s;
}

#videoproduction .icon-box h3 a:hover {
  color: #ffc451;
}

#videoproduction .icon-box:hover {
  border-color: #ffc451;
}

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

@media (max-width: 768px) {
  #videoproduction h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #videoproduction h2 {
    font-size: 20px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# OUTDOOR MARKETING Section
--------------------------------------------------------------*/

#outdoormarketing {
  width: 100%;
  min-height: 100vh;
  background: url("../img/outdoormarketing-bg.jpg") top center;
  background-size: cover;
  position: relative;
}

#outdoormarketing:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#outdoormarketing .container {
  position: relative;
  padding-top: 74px;
  text-align: center;
}

#outdoormarketing h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

#outdoormarketing h1 span {
  color: #ffc451;
}

#outdoormarketing h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0 0 0;
  font-size: 24px;
}

#outdoormarketing .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 100%;
  text-align: center;
}

#outdoormarketing .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: #ffc451;
}

#outdoormarketing .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
}

#outdoormarketing .icon-box h3 a {
  color: #fff;
  transition: ease-in-out 0.3s;
}

#outdoormarketing .icon-box h3 a:hover {
  color: #ffc451;
}

#outdoormarketing .icon-box:hover {
  border-color: #ffc451;
}

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

@media (max-width: 768px) {
  #outdoormarketing h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #outdoormarketing h2 {
    font-size: 20px;
    line-height: 24px;
  }
}



/*--------------------------------------------------------------
# BLOG
--------------------------------------------------------------*/
p{
  style:"padding:0px";}


.blog-standard .blog-post {
  margin-bottom: 45px; }
  .blog-standard .blog-post .post-thumbnail {
    width: 100%;
    max-height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: 14px; }
  .blog-standard .blog-post .post-date {
    font-size: 14px;
    line-height: 2.86;
    margin-bottom: 4px; }
  .blog-standard .blog-post .post-title {
    font-size: 25px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 9px; }
  .blog-standard .blog-post .post-excerpt {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.71;
    margin-bottom: 15px; }
  .blog-standard .blog-post .post-permalink {
    font-size: 14px;
    font-weight: 500;
    line-height: 0.88px;
    color: inherit; }
    .blog-standard .blog-post .post-permalink::after {
      content: "\2192";
      margin-left: 6px;
      transition: transform 0.4s ease;
      display: inline-block; }
    .blog-standard .blog-post .post-permalink:hover {
      text-decoration: none; }
      .blog-standard .blog-post .post-permalink:hover::after {
        transform: translateX(5px); }

.blog-standard .oleez-pagination {
  margin-bottom: 54px; }

  /*--------------------------------------------------------------
blog button
--------------------------------------------------------------*/



  #unique-containerone {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .read-more {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    background-color: #ff5821;
    border-radius: 60%; /* To make it circular */
    text-decoration: none;
    transition: background-color 0.3s;
  }
  
  .read-more:hover {
    background-color: #e54c20;
  }

  




  /*--------------------------------------------------------------
our approach
--------------------------------------------------------------*/


  .service_section {
    position: relative;
  }
  
  .service_section .box {
    margin-top: 30px;
    text-align: center;
    -webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.15);
            box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.15);
    padding: 25px 15px;
    -webkit-transition: all .3s;
    transition: all .3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .service_section .box .img-box {
    width: 65px;
    height: 65px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .service_section .box .img-box img {
    max-height: 100%;
    max-width: 100%;
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  
  .service_section .box .detail-box {
    margin-top: 15px;
  }
  
  .service_section .box .detail-box h5 {
    font-weight: bold;
  }
  
  .service_section .box .detail-box p {
    margin: 0;
  }
  
  .service_section .box:hover {
    background-color: rgba(107, 107, 145, 0.808);
    color: black;
  }
  
  .service_section .box:hover .img-box img {
    -webkit-filter: brightness(1) invert(1);
            filter: brightness(1) invert(1);
  }
  
  .service_section .btn-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 45px;
  }
  
  .service_section .btn-box a {
    display: inline-block;
    font-family: 'Merriweather Sans', sans-serif;
    text-transform: uppercase;
    padding: 10px 45px;
    background-color: #0355cc;
    border: 1px solid #0355cc;
    border-radius: 0;
    color: #ffffff;
  }
  
  .service_section .btn-box a:hover {
    background-color: transparent;
    color: #0355cc;
  }


/*--------------------------------------------------------------
Services -title 
--------------------------------------------------------------*/

.section-title {
  text-align: center; /* Center-aligns its child elements */
}



/*--------------------------------------------------------------
OUT DOOR .marketing IMAGE HOVER EFFECT
--------------------------------------------------------------*/
.image-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 20px; /* Adjust the vertical spacing between rows */
}

.image-container {
  position: relative;
  width: calc(33.33% - 10px); /* Adjust the width of each image container */
  margin-bottom: 20px; /* Adjust the vertical spacing between images */
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background color */
  opacity: 0; /* Initially hidden */
  transition: opacity 0.3s ease;
}

.text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 18px;
  text-align: center;
  opacity: 0; /* Initially hidden */
  transition: opacity 0.3s ease;
}

.image-container:hover .overlay {
  opacity: 1; /* Show overlay on hover */
}

.image-container:hover .text {
  opacity: 1; /* Show text on hover */
}

.image-container:hover img {
  transform: scale(1.1); /* Adjust scale as needed */

}



/*--------------------------------------------------------------
case study
--------------------------------------------------------------*/
.custom-image {
  display: flex;
  justify-content: center; /* Center the image horizontally */
  align-items: center; /* Center the image vertically */
  padding-top: 30px;
  padding-bottom: 30px;
}

.custom-image img {
  max-width: 100%; /* Set the maximum width of the image to 100% of its container */
  height: auto; /* Let the height adjust automatically to maintain the aspect ratio */
  width: auto; /* Ensure that the width adjusts automatically */
  max-height: 150px; /* Set the maximum height of the image */
}
/*--------------------------------------------------------------
news
--------------------------------------------------------------*/

.news .container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.main-image-section {
  padding-top: 30px;
  padding-bottom: 30px;
}

.main-image img {
  max-width: 100%;
  height: auto;
}

.news {
  padding-top: 30px;
}



.zoom-effect-heading {
  font-family: Roboto, sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 23px;

}

@media (max-width: 991px) {
  .news h3,
  .news h5,
  .news p {
    text-align: left;
  }
}


.underline-text {
  font-family: Roboto, sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 45px;
  text-decoration: underline; /* Add underline to text */
  padding-top: 20px;
}

/*--------------------------------------------------------------
hover effect
--------------------------------------------------------------*/
.zoom-effect:hover {
  transform: scale(1.2) translateX(10px); /* Increase scale to 1.1 on hover (you can adjust as needed) */
  transition: transform 0.3s ease; /* Add a smooth transition effect */
}
.zoom-effect-heading:hover {
  transform: scale(1.1); /* Adjust the scale factor as needed */
  transition: transform 0.3s ease; /* Add a smooth transition effect */
}



.animate-zoom {
  transition: transform 0.3s ease;
}

.animate-zoom:hover {
  transform: scale(1.05);
}

.zoom-effect-heading {
  transition: color 0.3s ease;
}

.about-image img {
  max-width: 100%; /* Ensure the image fits its container */
  height: auto; /* Maintain aspect ratio */
  transition: transform 0.3s ease; /* Add a smooth transition effect */
}

.about-image img:hover {
  transform: scale(1.1); /* Increase scale on hover */
}




.scroll-visibility {
  opacity: 0;
  transition: opacity 3s ease;
}

.scroll-visibility.visible {
  opacity: 1;
}

@media (max-width: 576px) {
  .scroll-visibility {
    /* No need to repeat the same properties */
  }

  .scroll-visibility.visible {
    /* No need to repeat the same properties */
  }
}

