:root {
  --primary: #00aef5;
  --secondary: #008dc2;
  --light: #008d;
  --dark: #010A35;
  --text-color: rgb(245, 245, 245);
  --gray: #e7e7e7;
  --d: 700ms;
  --e: cubic-bezier(0.19, 1, 0.22, 1);
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/* 
html {
  cursor: url("../img/pressure-washing-gun-cursor.png"), auto;
} */

.bg-primary-custom {
  background-color: var(--primary);
}

.bg-primary-custom:hover {
  background-color: var(--secondary);
}

@media (max-width: 767px) {
  .text-xs-left {
    text-align: left;
  }

  .pr-xs-0 {
    padding-right: 0;
  }

  .pl-xs-0 {
    padding-left: 0;
  }

  .pr-xs-0 {
    padding-right: 0;
  }

  .plr-xs-15 {
    padding-right: 15px;
    padding-left: 15px;
  }

  .padding-sm-25 {
    padding: 25px;
  }

  .pb-xs-30 {
    padding-bottom: 30px;
  }

  .pt-xs-60 {
    padding-top: 60px;
  }

  .ptb-xs-40 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .pt-xs-40 {
    padding-top: 40px;
  }

  .pb-xs-40 {
    padding-bottom: 40px;
  }

  .pb-xs-60 {
    padding-bottom: 60px;
  }

  .ptb-xs-60 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .ml-xs-0 {
    margin-left: 0;
  }

  .mtb-xs-0 {
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .mt-xs-0 {
    margin-top: 0px;
  }

  .mb-xs-0 {
    margin-bottom: 0px;
  }

  .mtb-xs-15 {
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .mt-xs-10 {
    margin-top: 10px;
  }

  .mt-xs-15 {
    margin-top: 15px;
  }

  .mb-xs-15 {
    margin-bottom: 15px;
  }

  .mtb-xs-30 {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .mt-xs-30 {
    margin-top: 30px;
  }

  .mb-xs-30 {
    margin-bottom: 30px !important;
  }

  .float-none-xs {
    float: none;
  }

  .float-left-xs {
    float: left;
  }

  .float-right-xs {
    float: right;
  }

}

/*
 * A better looking default horizontal rule
 */
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #00aef5;
  text-decoration: none !important;
}

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

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


hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}


/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
/* .page-title {
  --background-color: var(--color-theme);
  --default-color: #fff;
  --heading-color: #fff;
  color: #00b1f7;
  background-color: var(--background-color);
  position: relative;
} */

.page-title {
  --background-color: var(--color-theme);
  --default-color: #fff;
  --heading-color: #fff;
  color: #00b1f7;
  background-color: var(--background-color);
  position: relative;
  overflow: hidden;
  /* Ensure content stays within the element */
}

.page-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  /* Darkens the background (adjust opacity as needed) */
  backdrop-filter: blur(3px);
  /* Adds blur effect */
  z-index: 0;
  /* Places the pseudo-element behind the content */
}

.page-title>* {
  position: relative;
  z-index: 1;
  /* Keeps the content above the pseudo-element */
}

.page-title .heading {
  padding: 160px 0 80px 0;
  border-top: 1px solid color-mix(in srgb, #00b1f7, transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
  color: white;
}

.page-title .heading p {
  color: white;
}

.page-title nav {
  border-bottom-right-radius: 25px;
  border-top-right-radius: 25px;
  position: absolute;
  background-color:
    color-mix(in srgb, #00aef5, #00b6ff91 92%);
  padding: 20px 0;
  bottom: 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.page-title nav ol a {
  color: color-mix(in srgb, #ffffff, transparent 50%);
}

.page-title nav ol a:hover {
  color: #00b1f7;
}

.page-title nav ol .current {
  color: white;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, #ffffff, transparent 50%);
}

@media (max-width: 640px) {
  .hero h2 {
    font-size: 36px !important;
  }
}

.custom-btn {
  color: var(--color);
  transition: 0.25s;
}

.custom-btn {
  background: none;
  border: 2px solid;
  font: inherit;
  line-height: 1;
  margin: 0.5em;
  padding: 1em 2em;
}

.raise:hover,
.raise:focus {
  box-shadow: 0 0.5em 0.5em -0.4em var(--hover);
  transform: translateY(-0.25em);
}

.raise {
  /* --color: #ffa260;
  --hover: #e5ff60; */
  --color: var(--primary);
  --hover: var(--secondary);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: #000000;
  background-color: #ffffff;
  padding: 60px 0;
  scroll-margin-top: 112px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 100px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--dark);
}

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

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


/* ==========================================================================
   Helper classes
   ========================================================================== */



.hidden,
[hidden] {
  display: none !important;
}


.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}


.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}



.invisible {
  visibility: hidden;
}



.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}


@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}


@media print {

  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }


  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }


  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}



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

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

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

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


/*---------------------------------------
       PRE LOADER              
  -----------------------------------------*/

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease-out, visibility 0s linear .5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity .5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #00aef5;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

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

.back-to-top:hover {
  background: #008dc2;
  color: #fff;
}

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

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  top: 20px;
}

#header .phone {
  background-color: #00aef5;
  width: 7rem;
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 25px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--color-theme);
  color: whitesmoke;
  text-align: center;
  display: none;
}

#header .header-container {
  background: #fff;
}

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

#header .logo {
  overflow: hidden;
  padding: 16px 30px 12px 30px;
  /* background: #ffffff; */
  background: transparent;
}

#header .logo h1 {
  font-size: 26px;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

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

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

@media (max-width: 992px) {
  #header {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    top: 0;
    background: #000000;
  }

  #header .phone {
    display: block;
  }

  #header.header-scrolled,
  #header .header-container {
    background: #000000;
  }

  #header .logo {
    padding-left: 0;
  }

  #header .logo h1 {
    font-size: 24px;
  }

  iframe {
    width: 100%;
    margin-top: 4rem;
  }
}

/*--------------------------------------------------------------
# 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 30px;
  color: #36343a;
  transition: 0.3s;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  white-space: nowrap;
  transition: 0.3s;
}

nav .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: #00aef5;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #00aef5;
  padding: 10px 25px;
  margin-left: 30px;
  margin-right: 15px;
  border-radius: 50px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #008dc2;
}

.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;
  font-weight: 500;
}

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

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

.drop-down-block {
  display: block !important;
}

/* .navbar .dropdown-menu {
  height: fit-content !important;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
} */

@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(29, 28, 31, 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: #36343a;
}

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

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/banner/slider1.jpg") center center;
  background-size: cover;
  position: relative;
}

/*#hero-service {*/
/*  width: 100%;*/
/*  height: 100vh;*/
/*  background: url("../img/banner/slider3.jpg") center center;*/
/*  background-size: cover;*/
/*  position: relative;*/
/*}*/


#service-Concrete {
  width: 100%;
  /* height: 100vh; */
  background: linear-gradient(rgba(19, 19, 19, 0.45), rgba(19, 19, 19, 0.45)), url("../img/services/banner/concrete-cleaning.jpg") center center;
  background-size: cover;
  position: relative;
}


#service-house {
  width: 100%;
  /* height: 100vh; */
  background: linear-gradient(rgba(19, 19, 19, 0.6), rgba(19, 19, 19, 0.6)), url("../img/services/banner/house-washing.jpg") center center;
  background-size: cover;
  position: relative;
}

#service-paver {
  width: 100%;
  /* height: 100vh; */
  background: linear-gradient(rgba(19, 19, 19, 0.6), rgba(19, 19, 19, 0.6)), url("../img/services/banner/paver-sealing.jpg") center center !important;
  background-size: cover;
  position: relative;
}

#service-pool {
  width: 100%;
  /* height: 100vh; */
  background: linear-gradient(rgba(19, 19, 19, 0.6), rgba(19, 19, 19, 0.6)), url("../img/services/banner/pool-cage-cleaning.jpg") center center;
  background-size: cover;
  position: relative;
}

#service-pressure {
  width: 100%;
  /* height: 100vh; */
  background: linear-gradient(rgba(19, 19, 19, 0.6), rgba(19, 19, 19, 0.6)), url("../img/services/banner/pressure-washing.jpg") center center;
  background-size: cover;
  position: relative;
}

#service-roof {
  width: 100%;
  /* height: 100vh; */
  background: linear-gradient(rgba(19, 19, 19, 0.6), rgba(19, 19, 19, 0.6)), url("../img/services/banner/roof-cleaning.jpg") center center;
  background-size: cover;
  position: relative;
}

#service-commercial {
  width: 100%;
  /* height: 100vh; */
  background: linear-gradient(rgba(19, 19, 19, 0.6), rgba(19, 19, 19, 0.6)), url("../img/services/banner/commercial-cleaning.jpg") center center;
  background-size: cover;
  position: relative;
}

#hero .container,
#hero-service .container {
  padding-top: 80px;
  margin-bottom: 4rem;
}

#hero:before,
#hero-service:before {
  content: "";
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6px);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero h1,
#hero-service h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero h2,
#hero-service h2 {
  color: #eee;
  margin-bottom: 40px;
  font-size: 15px;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero h2 {
  font-size: 40px !important;
  font-weight: 700 !important;
  margin-bottom: 20px !important;
}

#hero .btn-get-started,
#hero-service .btn-get-started {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#hero .btn-get-started:hover,
#hero-service .btn-get-started:hover {
  background: var(--primary);
  border: 2px solid var(--secondary);
}

.serv:hover {
  color: white !important;
}

@media (min-width: 1024px) {

  #hero,
  #hero-service {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {

  #hero,
  #hero-service {
    height: 75vh;
  }

  #hero .container,
  #hero-service .container {
    padding-top: 60px;
  }

  #hero h1,
  #hero-service h1 {
    font-size: 32px;
    line-height: 36px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  height: calc(100vh - 80px);
  position: relative;
  padding: 140px 0 0 0;
  background-image: url("../img/contact/contact-hero.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  /* Darkens the background (adjust opacity as needed) */
  backdrop-filter: blur(6px);
}

.hero img {
  aspect-ratio: 3 / 2;
  /* Maintain a 3:2 aspect ratio */
  width: 100%;
  /* Ensure the image fills the container horizontally */
  height: auto;
  /* Adjust the height automatically to maintain the aspect ratio */
  object-fit: contain;
  /* Ensure the image fits within the container without stretching */
  opacity: 0.8;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary);
}

.hero h2 .accent {
  color: white;
}

.hero p {
  color: color-mix(in srgb, white, transparent 40%);
  font-weight: 400;
  margin-bottom: 30px;
}

.hero .btn-get-started {
  color: var(--background-color) !important;
  background-color: var(--default-color) !important;
  /* color: var(--contrast-color);
  background: var(--accent-color); */
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 40px;
  border-radius: 50px;
  transition: 0.3s;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  width: auto;
  /* Allows the button width to adjust */
  min-width: 150px;
  /* Ensures it doesn't shrink too much */
  max-width: 100%;
  /* Makes it responsive */
  /* padding: 10px 20px; */
  /* Adds consistent padding */
  white-space: nowrap;
  /* Prevents the text from wrapping */
  text-align: center;
  /* Centers the text inside the button */
}

.hero .btn-get-started:hover {
  border-color: color-mix(in srgb, var(--contrast-color), transparent 60%);
  color: var(--default-color) !important;
  background-color: var(--background-color) !important;
  cursor: pointer;
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-weight: 600;
  color: var(--default-color);
}

.hero .btn-watch-video i {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover i {
  color: var(--default-color);
}

@media (max-width: 640px) {
  .hero h2 {
    font-size: 36px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 14px;
  }
}

.hero .icon-boxes {
  padding-bottom: 60px;
  z-index: 4;
}

@media (min-width: 1200px) {
  .hero .icon-boxes:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(50% + 20px);
    background-color: var(--default-color);
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
}

.hero .icon-box {
  padding: 60px 30px;
  position: relative;
  overflow: hidden;
  background: var(--background-color);
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  height: 100%;
  width: 100%;
  text-align: center;
}

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

.hero .icon-box .title a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.hero .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 48px;
  line-height: 1;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero .icon-box:hover {
  background-color: color-mix(in srgb, var(--background-color), white 10%);
}

.hero .icon-box:hover .title a,
.hero .icon-box:hover .icon {
  color: var(--contrast-color);
}

.hero .icon-boxes .row {
  display: flex;
  /* Default flexbox layout */
  flex-wrap: wrap;
}

.hero .icon-boxes .col-xl-3.col-md-6 {
  width: 100%;
  /* Default for small screens (mobile) */
}

@media (max-width: 768px) {
  .hero .icon-box {
    padding: 1rem;
  }

  .hero .icon-boxes .row {
    display: grid;
    /* Use grid layout for mobile screens */
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns */
    gap: 20px;
    /* Space between items */
  }

  .hero .icon-boxes .col-xl-3.col-md-6 {
    width: 100%;
    /* Ensure grid respects container width */
  }
}

@media (min-width: 768px) {

  /* For tablets and larger screens */
  .hero .icon-boxes .col-xl-3.col-md-6 {
    width: 50%;
    /* 2 items per row */
  }
}


@media (min-width: 1200px) {

  /* For large screens */
  .hero .icon-boxes .col-xl-3.col-md-6 {
    width: 25%;
    /* 4 items per row */
  }
}

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

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

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

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

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--primary);
  bottom: 0;
  left: 0%;
  transform: translateX(0%);
}

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

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  background: #f6f6f7;
  text-align: center;
  padding: 5px 0;
}

.clients img {
  width: 40%;
  filter: grayscale(100);
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
}

.clients img:hover {
  filter: none;
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# About Section Merged
--------------------------------------------------------------*/
.about {
  margin: 0 auto;
}

.about h3 {
  font-weight: 700;
  /* Priority: soap-steam */
  font-size: 28px;
  /* Priority: soap-steam */
  margin-bottom: 20px;
  /* Priority: soap-steam */
  line-height: 32px;
  /* Included from safewash */
}

.about img {
  display: block;
  margin-inline: auto;
  ;
}

.about .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
  /* Priority: soap-steam */
}

.about .content h2 {
  font-weight: 700;
  /* From safewash */
  font-size: 48px;
  /* From safewash */
  line-height: 60px;
  /* From safewash */
  margin-bottom: 20px;
  /* From safewash */
  text-transform: uppercase;
  /* From safewash */
}

.about .content ul {
  list-style: none;
  /* Priority: soap-steam */
  padding: 0;
  /* Priority: soap-steam */
}

.about .content ul li {
  padding: 0 0 10px 30px;
  /* Priority: soap-steam */
  position: relative;
  /* Priority: soap-steam */
}

.about .content ul i {
  position: absolute;
  /* Priority: soap-steam */
  font-size: 20px;
  /* Priority: soap-steam */
  left: 0;
  /* Priority: soap-steam */
  top: -3px;
  /* Priority: soap-steam */
  color: var(--primary);
  /* Priority: soap-steam */
}

.about .content p:last-child {
  margin-bottom: 0;
  /* Priority: soap-steam */
}

.about .pulsating-play-btn {
  position: absolute;
  /* Priority: soap-steam */
  left: calc(50% - 47px);
  /* Priority: soap-steam */
  top: calc(50% - 47px);
  /* Priority: soap-steam */
}


.about .cnt-det h5 {
  position: relative;
  top: -10px;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  background: #008dc2;
  padding: 40px 0 20px 0;
  color: #fff;
}

.counts .counters span {
  font-size: 36px;
  display: block;
  font-weight: 700;
}

.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 500;
}




/*--------------------------------------------------------------
# hero contact form 
--------------------------------------------------------------*/
.volunteer-section {
  background: var(--secondary);
  position: relative;
  overflow: hidden;
}

.volunteer-section::after {
  content: "";
  background: var(--primary);
  border-radius: 50%;
  position: absolute;
  bottom: -110px;
  right: -80px;
  width: 350px;
  height: 350px;
}

.volunteer-form {
  background: var(--secondary);
  border-radius: 12px;
  padding: 50px;
}

.volunteer-image {
  border-radius: 100%;
  display: block;
  margin: auto;
  width: 300px;
  height: 300px;
  object-fit: cover;
}

.volunteer-section .custom-block-body {
  max-width: 440px;
  margin: 0 auto;
}

.volunteer-section .custom-block-body p {
  line-height: 1.7;
}

.hero-form {
  transform: translateY(-12rem);
  overflow: hidden;
  padding-bottom: 0;
  margin-top: 2rem;
  margin-bottom: -7rem;
}

.custom-form::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: white !important;

}

.custom-form:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: white !important;
}

.custom-form::-ms-input-placeholder {
  /* Microsoft Edge */
  color: white !important;
}

.custom-form .form-control,
.input-group-file {
  background-color: white;
  box-shadow: none;
  border: 0;
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  outline: none;
}

.custom-form .form-control:hover,
.custom-form .form-control:focus {
  border-color: black;
  /* border-width: 5px; */
}

.custom-form label {
  margin-bottom: 10px;
}

.custom-form .form-check-group {
  margin-bottom: 20px;
}

.donate-form .form-check-group-donation-frequency {
  padding-right: 0;
}

.form-check-group-donation-frequency+.form-check-group-donation-frequency {
  padding-right: 12px;
  padding-left: 0;
}

.form-check-group-donation-frequency .form-check-label {
  font-weight: 700;
}

.custom-form .form-check-radio {
  position: relative;
  height: 100%;
  padding-left: 0;
}

.custom-form .input-group-text {
  background: var(--secondary);
  border: 0;
  color: var(--light);
}

.custom-form .form-check-radio .form-check-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.form-check-radio .form-check-input[type=radio] {
  background-color: olive;
  border-radius: .25rem;
  border: 0;
  box-shadow: none;
  outline: none;
  width: 100%;
  margin-top: 0;
  margin-left: 0;
  padding: 25px 50px;
  transition: all 0.5s;
}

.form-check-radio .form-check-input:checked[type=radio] {
  background-image: none;
}

.form-check-radio .form-check-input:checked[type=radio]+.form-check-label,
.form-check-radio .form-check-input:hover+.form-check-label,
.form-check-radio .form-check-input:checked+.form-check-label {
  color: var(--light);
}

.form-check-radio .form-check-input:hover,
.form-check-radio .form-check-input:checked {
  background-color: var(--secondary);
  border-color: var(--light);
}

.input-group-file {
  border-radius: .25rem;
  padding: 13px .75rem;
}

.input-group-file input[type=file] {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
  padding: 0;
}

.input-group-file .input-group-text {
  background: transparent;
  color: inherit;
  margin-bottom: 0;
  padding: 0;
}

.custom-form button[type="submit"] {
  background: white;
  border: none;
  border-radius: 10px;
  color: var(--dark);
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--gray);
  border-color: transparent;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, #00b1f7, transparent 90%);
  margin-bottom: 20px;

  position: sticky;
  top: 10rem;
  /* right: 0rem; */
  left: 0;
  z-index: 99;
}

.service-details .service-subsection {
  padding: 20px 0;
  scroll-margin-top: 120px;
}

.service-details .services-list a {
  color: rgb(128, 128, 128) !important;
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, #00b1f7, transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, #00b1f7, transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: #000000 !important;
  font-weight: 700;
  border-color: #007bac;
}

.service-details .services-list a:hover {
  border-color: var(--color-theme);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

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

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
/* page-content
page-card
card-content
card-title
copy
card-btn */

.page-content {
  display: grid;
  grid-gap: 1rem;
  padding: 1rem;
  max-width: 1024px;
  margin: 0 auto;
  font-family: var(--font-sans);
}

@media (min-width: 600px) {
  .page-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 800px) {
  .page-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.page-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 1rem;
  width: 100%;
  text-align: center;
  color: whitesmoke;
  background-color: whitesmoke;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1), 0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1), 0 16px 16px rgba(0, 0, 0, 0.1);
}

@media (min-width: 600px) {
  .page-card {
    height: 350px;
  }
}

.page-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  background-size: cover;
  background-position: 0 0;
  transition: transform calc(var(--d) * 1.5) var(--e);
  pointer-events: none;
}

.page-card:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  pointer-events: none;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.009) 11.7%, rgba(0, 0, 0, 0.034) 22.1%, rgba(0, 0, 0, 0.072) 31.2%, rgba(0, 0, 0, 0.123) 39.4%, rgba(0, 0, 0, 0.182) 46.6%, rgba(0, 0, 0, 0.249) 53.1%, rgba(0, 0, 0, 0.32) 58.9%, rgba(0, 0, 0, 0.394) 64.3%, rgba(0, 0, 0, 0.468) 69.3%, rgba(0, 0, 0, 0.54) 74.1%, rgba(0, 0, 0, 0.607) 78.8%, rgba(0, 0, 0, 0.668) 83.6%, rgba(0, 0, 0, 0.721) 88.7%, rgba(0, 0, 0, 0.762) 94.1%, rgba(0, 0, 0, 0.79) 100%);
  transform: translateY(-50%);
  transition: transform calc(var(--d) * 2) var(--e);
}

.page-card:nth-child(1):before {
  background-image: url(../img/services/paver-service.jpg);
}

.page-card:nth-child(2):before {
  background-image: url(../img/services/roof-cleaning.jpg);
}

.page-card:nth-child(3):before {
  background-image: url(../img/services/pressure-washing.jpg);
}

.page-card:nth-child(4):before {
  background-image: url(../img/services/commercial-cleaning.jpg);
}

.page-card:nth-child(5):before {
  background-image: url(../img/services/driveway-service.jpg);
}

.page-card:nth-child(6):before {
  background-image: url(../img/services/house-washing.jpg);
}

.page-card:nth-child(7):before {
  background-image: url(../img/services/pool-cleaning.jpg);
}

.page-card:nth-child(8):before {
  background-image: url(../img/services/concrete-cleaning.jpg);
}

.card-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 1rem;
  transition: transform var(--d) var(--e);
  z-index: 1;
}

.card-content>*+* {
  margin-top: 1rem;
}

.card-title {
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.2;
}

.copy {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.35;
}

.card-btn {
  cursor: pointer;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.65rem;
  font-weight: bold;
  letter-spacing: 0.025rem;
  text-transform: uppercase;
  color: white;
  background-color: var(--primary);
  border: none;
}

.card-btn:hover {
  background-color: var(--secondary);
}


.card-btn:focus {
  outline: 1px dashed yellow;
  outline-offset: 3px;
}

@media (hover: hover) and (min-width: 600px) {
  .page-card:after {
    transform: translateY(0);
  }

  .card-content {
    transform: translateY(calc(100% - 4.5rem));
  }

  .card-content>*:not(.card-title) {
    opacity: 0;
    transform: translateY(1rem);
    transition: transform var(--d) var(--e), opacity var(--d) var(--e);
  }

  .page-card:hover,
  .page-card:focus-within {
    align-items: center;
  }

  .page-card:hover:before,
  .page-card:focus-within:before {
    transform: translateY(-4%);
  }

  .page-card:hover:after,
  .page-card:focus-within:after {
    transform: translateY(-50%);
  }

  .page-card:hover .card-content,
  .page-card:focus-within .card-content {
    transform: translateY(0);
  }

  .page-card:hover .card-content>*:not(.card-title),
  .page-card:focus-within .card-content>*:not(.card-title) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(var(--d) / 8);
  }

  .page-card:focus-within:before,
  .page-card:focus-within:after,
  .page-card:focus-within .card-content,
  .page-card:focus-within .card-content>*:not(.card-title) {
    transition-duration: 0s;
  }
}

/* new code */

.service {
  position: relative;
  width: 100%;
  padding: 45px 0 15px 0;
}

.service .service-item {
  position: relative;
  width: 100%;
  height: 34rem;
  /* Adjust height based on content */
  text-align: center;
  background: #ffffff;
  border-radius: 5px;
  margin-bottom: 30px;
  box-shadow: 0 0 30px rgba(0, 0, 0, .1);
  display: flex;
  flex-direction: column;
  /* Use flexbox to arrange content vertically */
}

.service .service-item img {
  width: 100%;
  border-radius: 5px 5px 0 0;
}

.service .service-item h3 {
  margin: 0;
  padding: 25px 15px 15px 15px;
  font-size: 20px;
  font-weight: 300;
  color: #00539C;
}

.service .service-item p {
  margin: 0;
  padding: 0 25px 25px 25px;
  font-size: 16px;
  flex-grow: 1;
  /* Allow the paragraph to grow and fill available space */
}

.service .service-item a.btn {
  margin: 0 auto 30px;
  /* Center the button horizontally */
  padding: 10px 20px;
  font-size: 14px;
  text-transform: uppercase;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  background: #00aef5;
  transition: .3s;
}

.service .service-item:hover a.btn {
  color: #ffffff;
  background: #0087bd;
}

.service .service-item a.btn:hover {
  color: #ffffff;
  background: #004077;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  color: #00aef5;
}

.carousel-item {
  padding-inline: 10px;
}

.nav-btns a {
  background-color: #00aef5;
  color: rgb(255, 255, 255);
  border: 0;
  border-radius: 4px;
  margin-inline: 1rem;
}

@media (max-width: 768px) {
  .carousel-inner .carousel-item {
    justify-content: center;
  }

  .carousel-inner .carousel-item>div {
    display: none;
  }

  .carousel-inner .carousel-item>div:first-child {
    display: block;
  }
}

.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-start,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
  display: flex;
  /* transition-duration: 10s; */
}

/* display 4 */
@media (min-width: 768px) {

  .carousel-inner .carousel-item-right.active,
  .carousel-inner .carousel-item-next,
  .carousel-item-next:not(.carousel-item-start) {
    transform: translateX(25%) !important;
  }

  .carousel-inner .carousel-item-left.active,
  .carousel-item-prev:not(.carousel-item-end),
  .active.carousel-item-start,
  .carousel-item-prev:not(.carousel-item-end) {
    transform: translateX(-25%) !important;
  }

  .carousel-item-next.carousel-item-start,
  .active.carousel-item-end {
    transform: translateX(0) !important;
  }

  .carousel-inner .carousel-item-prev,
  .carousel-item-prev:not(.carousel-item-end) {
    transform: translateX(-25%) !important;
  }
}

@media (max-width: 767.98px) {
  .service .service-item {
    position: relative;
    width: 100%;
    height: 38rem;
    ;
    /* Adjust height based on content */
    text-align: center;
    background: #ffffff;
    border-radius: 5px;
    margin-bottom: 30px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
    display: flex;
    flex-direction: column;
    /* Use flexbox to arrange content vertically */
  }

  .service .service-item a.btn {
    right: 33%;
    bottom: -2%;
  }

}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0 0 20px 0;
  margin: 0 auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 8px 10px;
  line-height: 1;
  transition: all 0.3s ease-in-out;
  border: 1px solid color-mix(in srgb, var(--primary), transparent 70%);
  padding: 3px;
  border-radius: 4px;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

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

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 5px 5px;
  }
}

.portfolio .portfolio-content {
  background-color: var(--surface-color);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
  position: relative;
  z-index: 1;
}

.portfolio .portfolio-main img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.portfolio .portfolio-content .portfolio-info {
  background-color: var(--background-color);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 25px 20px;
  position: relative;
  z-index: 2;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-content .portfolio-info h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info h4 a:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

.portfolio .btn-more {
  width: auto;
  /* Allows the button width to adjust */
  min-width: 150px;
  /* Ensures it doesn't shrink too much */
  max-width: 100%;
  /* Makes it responsive */
  padding: 10px 20px;
  /* Adds consistent padding */
  border-radius: 50px;
  color: var(--text-color);
  background-color: var(--primary);
  border: 1px solid color-mix(in srgb, var(--dark), transparent 80%);
  transition: ease-in-out 0.3s;
  white-space: nowrap;
  /* Prevents the text from wrapping */
  text-align: center;
  /* Centers the text inside the button */
}

.portfolio .btn-more:hover {
  color: var(--text-color);
  background-color: var(--secondary);
}

@media (max-width: 992px) {
  .portfolio .btn-more {
    width: 40%;
  }
}

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

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 16px 8px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
}

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

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

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(54, 52, 58, 0.6);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(54, 52, 58, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 20px;
}

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

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

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

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #00cc95;
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

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

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

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(54, 52, 58, 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 Section
--------------------------------------------------------------*/
.team {
  background: #fff;
}

.team .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}

.team .member .pic {
  overflow: hidden;
  width: 150px;
  border-radius: 50%;
  margin: 0 auto 20px auto;
}

.team .member .pic img {
  transition: ease-in-out 0.3s;
}

.team .member:hover img {
  transform: scale(1.1);
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #36343a;
}

.team .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team .member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #b5b3ba;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.team .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #a8a5ae;
}

.team .member .social a i {
  color: #fff;
  font-size: 16px;
  margin: 0 2px;
}

.team .member .social a:hover {
  background: #009970;
}

.team .member .social a+a {
  margin-left: 8px;
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 15px;
  position: relative;
  text-align: center;
  height: 18rem;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  margin-right: 15px;
}

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

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

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

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

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

.testimonials .swiper-wrapper {
  height: auto;
}

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--primary), transparent 85%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--dark);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
    height: 100%;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.untree_co-section {
  padding: 70px 0;
}

.section-title {
  position: relative;
  padding-bottom: 20px;
  display: inline-block;
}

.section-title:before {
  content: "";
  position: absolute;
  left: 50;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: #1A374D;
}

.section-title.text-center:before {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.custom-block .section-title {
  font-size: 18px;
  font-weight: 700;
}

/* .section-title-about{

} */
.section-title-about {
  position: relative;
  padding-bottom: 10px;
  display: inline-block;
}

.section-title-about:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: #1A374D;
}

.section-title-about.text-center:before {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.custom-block .section-title-about {
  font-size: 18px;
  font-weight: 700;
}

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

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

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


.feature-img-bg {
  border-radius: 20px;
  background-size: cover;
}

.feature-1-wrap {
  position: relative;
}

.feature-1 {
  padding: 30px;
  background: rgba(26, 55, 77, 0.05);
  border-radius: 20px;
  min-height: calc(50% - 15px);
  top: 0;
  margin-bottom: 30px !important;
}

.img-play-video {
  position: relative;
}

.video-play-button {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  /* background: $primary; */
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
}

.video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #204560;
  border-radius: 50%;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  animation: pulse-border 1500ms ease-out infinite;
  opacity: 0.8;
}

.video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #1A374D;
  border-radius: 50%;
  -webkit-transition: all 200ms;
  -o-transition: all 200ms;
  transition: all 200ms;
  opacity: 0.8;
}

.video-play-button:hover:after {
  background-color: #204560;
}

.video-play-button img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}

.video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-left: 22px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}




/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-box>.row {
  -webkit-box-shadow: 0px 0px 21px -6px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 21px -6px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 21px -6px rgba(0, 0, 0, 0.75);
}

.contact .info-container {
  background-color: var(--accent-color);
  height: 100%;
  padding: 20px;
}

.contact .info-item {
  width: 100%;
  margin-bottom: 20px;
  padding: 20px;
  color: var(--dark);
  background-color: color-mix(in srgb, teal, transparent 90%);
}

.contact .info-item:last-child {
  margin-bottom: 0;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--primary);
  background-color: color-mix(in srgb, lightseagreen, transparent 80%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  color: var(--contrast-color);
  font-size: 20px;
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.contact .php-email-form {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  padding: 30px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form input[type=number],
.contact .php-email-form textarea,
.contact .php-email-form select,
.contact .php-email-form select option {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: darkgrey;
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, darkgrey, transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=number]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus,
.contact .php-email-form select:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=number]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder,
.contact .php-email-form select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: white;
  background: var(--primary);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Contact Form Toast Message
--------------------------------------------------------------*/

.toast-container,
.toast {
  border-radius: 10px;
  z-index: 99999;
}

.toast-translucent {
  background-color: rgba(255, 255, 255, 0.75);
  /* White background with 75% opacity */
  backdrop-filter: blur(10px);
  /* Apply blur effect */
  -webkit-backdrop-filter: blur(10px);
  /* Safari support */
  border: 1px solid rgba(255, 255, 255, 0.3);
  /* Optional: Add a light border */
  z-index: 99999;
}

.toast-success {
  background-color: rgba(40, 167, 69, 0.75);
  backdrop-filter: blur(10px);
  /* Apply blur effect */
  -webkit-backdrop-filter: blur(10px);
  /* Safari support */
  border: 1px solid rgba(255, 255, 255, 0.3);
  /* Optional: Add a light border */
  /* Success green */
  z-index: 99999;
}

.toast-danger {
  background-color: rgba(220, 53, 69, 0.75);
  backdrop-filter: blur(10px);
  /* Apply blur effect */
  -webkit-backdrop-filter: blur(10px);
  /* Safari support */
  border: 1px solid rgba(255, 255, 255, 0.3);
  /* Optional: Add a light border */
  /* Danger red */
  z-index: 99999;
}

.container.quote .quote-text {
  background: rgba(1, 10, 53, .8);
}

.container.quote .quote-form {
  background: rgba(255, 255, 255, .8);
}

.container.quote .quote-text .h-100,
.container.quote .quote-form .h-100 {
  padding: 6rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
/*** Footer ***/
.footer {
  color: #7F8499;
}

/* .footer .bg-dark {
  margin-top: 0 !important;
} */

.footer .btn-primary {
  background-color: var(--primary);
  border-radius: 0;
}

.footer .btn-primary:hover {
  background-color: var(--secondary)
}

.footer .btn.btn-link,
.btn-contact {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #7F8499;
  font-weight: normal;
  text-transform: capitalize;
  transition: .3s;
}

.footer .btn.btn-contact::before {
  /* position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: transparent; */
  margin-right: 10px;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #7F8499;
  margin-right: 10px;
}

.footer .btn.btn-link:hover,
.btn-contact:hover {
  color: var(--primary) !important;
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .btn.btn-square {
  color: #7F8499;
  border: 1px solid #7F8499;
}

.footer .btn.btn-square:hover {
  color: var(--light);
  color: white;
  /* border-color: var(--primary); */
  border-color: var(--primary);
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
  color: var(--primary);
}

.footer .copyright a:hover {
  color: #FFFFFF;
}

.rounded-custom {
  border-radius: 50%;
  width: 2.5rem !important;
  text-align: center;
  justify-content: center;
}

.fa-youtube:before {
  content: "\f167" !important;
  position: relative !important;
  margin-left: -1.5px !important;
}



/* MEDIA QUERY */


@media screen and (min-width: 1600px) {
  .volunteer-section::after {
    width: 450px;
    height: 450px;
  }

  .volunteer-image {
    width: 350px;
    height: 350px;
  }
}

@media (min-width: 1400px) {
  .container.quote .quote-text {
    padding-left: calc(((100% - 1320px) / 2) + .75rem);
  }

  .container.quote .quote-form {
    padding-right: calc(((100% - 1320px) / 2) + .75rem);
  }
}

@media (min-width: 1200px) {
  .container.quote .quote-text {
    padding-left: calc(((100% - 1140px) / 2) + .75rem);
  }

  .container.quote .quote-form {
    padding-right: calc(((100% - 1140px) / 2) + .75rem);
  }
}


@media (max-width: 991.98px) {
  .volunteer-section::after {
    width: 300px;
    height: 300px;
  }

  .volunteer-image {
    width: 250px;
    height: 250px;
    margin: 0;
  }

  .custom-text-box,
  .volunteer-form {
    padding: 30px;
    border-radius: 0;
  }

  .hero-form {
    transform: translateY(0rem);
    width: 100%;
    margin-bottom: 0rem;
  }

  .container.quote {
    max-width: 100% !important;
  }

  .container.quote .quote-text {
    padding-left: calc(((100% - 960px) / 2) + .75rem);
  }

  .container.quote .quote-form {
    padding-right: calc(((100% - 960px) / 2) + .75rem);
  }

  .feature-img-bg {
    height: 300px !important;
    margin-bottom: 30px;
  }

}

@media (max-width: 480px) {
  .volunteer-image {
    width: 150px;
    height: 150px;
  }

  .volunteer-section::after {
    width: 200px;
    height: 200px;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

.faq .faq-img img {
  width: 100%;
}


.faq .faq-button button {
  width: auto;
  /* Allows the button width to adjust */
  min-width: 150px;
  /* Ensures it doesn't shrink too much */
  max-width: 100%;
  /* Makes it responsive */
  padding: 10px 20px;
  /* Adds consistent padding */
  border-radius: 25px;
  color: white;
  background-color: #00aef5;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  transition: ease-in-out 0.3s;
  white-space: nowrap;
  /* Prevents the text from wrapping */
  text-align: center;
  /* Centers the text inside the button */
}

/* Hover effect */
.faq .faq-button button:hover {
  color: white;
  background-color: #007fb1;
}

/* Media query for mobile devices */
@media (max-width: 991.5px) {
  .faq .faq-button {
    display: flex;
    /* Add flexbox */
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
    width: 100%;
    /* Take full width of parent */
  }

  .faq .faq-button button {
    width: 50%;
    /* Wider button for mobile */
    margin: 0 auto !important;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  background-color: transparent;
}

.call-to-action .container {
  padding-top: 80px;
  padding-bottom: 80px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  clip-path: inset(0 round 15px);
}

.call-to-action .container img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  border-radius: 15px;
  overflow: hidden;
}

.call-to-action .container:before {
  content: "";
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  inset: 0;
  z-index: 2;
  backdrop-filter: blur(5px);
}

.call-to-action .container .content {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  color: white;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.call-to-action p {
  color: white;
  margin-bottom: 20px;
}

.call-to-action .play-btn {
  width: 94px;
  height: 94px;
  margin-bottom: 20px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 60%) 52%);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.call-to-action .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 20%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

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

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

.call-to-action .play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--color-theme);
  color: whitesmoke;
  border-radius: 100px;
}

.cta-button button {
  background-color: #00aef5;
  width: 12rem;
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--color-theme);
  color: whitesmoke;
  /* border-radius: 100px;   */
}

.call-to-action .cta-btn:hover {
  background: var(--color-theme);
  border: 2px solid white;
}

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

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



/*--------------------------------------------------------------
# Scroll down button
--------------------------------------------------------------*/
.demo a {
  position: absolute;
  /* Use fixed positioning to center on the screen */
  top: 82%;
  /* Center vertically */
  left: 50%;
  /* Center horizontally */
  z-index: 1;
  display: inline-block;
  -webkit-transform: translate(-50%, -50%);
  /* Adjust for the element's dimensions */
  transform: translate(-50%, -50%);
  color: #fff;
  font: normal 400 20px/1 'Josefin Sans', sans-serif;
  letter-spacing: .1em;
  text-decoration: none;
  transition: opacity .3s;
  color: #fff;
}

.demo a:hover {
  opacity: .5;
  color: smokewhite !important;
}

#section10 {
  position: initial;
}

#section10 a {
  padding-top: 60px;
}

#section10 a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 30px;
  height: 50px;
  margin-left: -15px;
  border: 2px solid #fff;
  border-radius: 50px;
  box-sizing: border-box;
}

#section10 a span::before {
  position: absolute;
  top: 10px;
  left: 50%;
  content: '';
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sdb10 2s infinite;
  animation: sdb10 2s infinite;
  box-sizing: border-box;
}

@-webkit-keyframes sdb10 {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  80% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes sdb10 {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  80% {
    transform: translate(0, 20px);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@media (max-width: 768px) {
  #section10 {
    display: none;
  }
}