/**********************

Style.css
=============

Author:  Gino Aliaj
Template: Swimmerland - Water Park HTML Template
Version: 1.0

Author URI: gnodesign.com
***************************/


/*------------------------------------------------------------------
[Table of contents]

1.  Default Typography
2.  General Styles
3.  Buttons
4.  Header
5.  Home Page
    5.1 Main Section - Slider
    5.2 About Us Section
    5.3 Gallery Section
    5.4 Training Courses Section
    5.5 Count Up Section
    5.6 Blog Section
    5.7 Testimonial Section
    5.8 Pricing Plan Section
    5.9 Signup Section
    5.10 Latest Event Section
    5.11 Partners Section
6. Footer
7. Pages
    7.1 About Page
    7.2 404 Page
    7.3 Coming Soon Page
8. Blog
    8.1 Blog Listing
    8.2 Blog Detail
9. Contact Us
-------------------------------------------------------------------*/




body {
  background-color: #E0E0E0;
}




/* --------------------------------------
    1. Default Typography
-------------------------------------- */

*,
body {
  font-family: "Jost", system-ui;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Jost", system-ui;
    font-weight: 700;
    margin: 0 !important;
    color: #323232;
   
}

h1 {
    font-size: 48px; 
    text-transform: capitalize !important;
}

h2 {
    font-size: 38px;
     text-transform: capitalize !important;
}

h3 {
    font-size: 30px;
     text-transform: capitalize !important;
}

h4 {
    font-size: 24px;
     text-transform: capitalize !important;
}

h5 {
    font-size: 20px;
     text-transform: capitalize !important;
}

h6 {
    font-size: 18px;
     text-transform: capitalize !important;
}

p {
    font-size: 16px;
    line-height: 24px;
    color: #666;
}






/*sidebar1*/
:root {
  --sidebar1-bg-color: #f6f6f6;
  --active-link-color: #000;
  --text-color: #000;
  --progress-bar-color: #000;
  --lightbulb-color: black;
}

body.dark-mode {
  --sidebar1-bg-color: #23282d;
  --active-link-color: #00d084;
  --text-color: #fff;
  --progress-bar-color: #00d084;
  --lightbulb-color: white;
}

@media (max-width: 750px) {
  :root {
    --sidebar1-bg-color: rgba(240, 240, 240, 0.95);
  }

  body.dark-mode {
    --sidebar1-bg-color: rgba(35, 40, 45, 0.95);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: "DM Sans", sans-serif;
}

.header-one {
  margin-top: 0px;
}

#dark-mode-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: 10px;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--lightbulb-color);
  font-size: 2rem;
  transition: 350ms;
}

#dark-mode-toggle:hover {
  transform: scale(1.1);
}

#dark-mode-toggle:active {
  transform: scale(0.9);
  transition: transform 100ms;
}

.post-content {
  font-size: 1.7rem;
  margin: 0px 0px 0px 35px;
}

.sidebar1-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 90vw;
  margin: auto;
  margin-bottom:30px;
}

.intro,
.outro {
  width: 90vw;
  max-width: 900px;
  margin: auto;
  font-size: 1.2rem;
  padding: 20px 0px;
}

.sidebar1-wrapper {
  position: sticky;
  top: 25px;
  width: 275px !important;
  flex: none;
}

.sidebar1 {
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  background-color: var(--sidebar1-bg-color);
  transition: 250ms;
}

@media (max-width: 750px) {
  .sidebar1 {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
  }
}

.reading-progress-container {
  height: 5px;
  background-color: #e0e0e0;
  margin-top: 25px;
  border-radius: 100px;
}

.reading-progress-bar {
  height: 100%;
  background-color: var(--progress-bar-color);
  border-radius: 100px;
}

.sidebar1 a {
  display: block;
  padding: 0px 5px;
  margin: 5px 0;
  line-height: 3.5rem;
  text-decoration: none;
  color: var(--text-color);
  transition: 250ms;
}

.sidebar1-link.active {
  transform: scale(1.05);
  font-weight: bold;
  transform-origin: left;
  transition: transform 0.3s ease, font-weight 0.3s ease;
  color: var(--active-link-color);
      background-color: #1eb304;
}

.author-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  margin-top: 20px;
  margin-bottom: 25px;
  border-radius: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  background-color: var(--sidebar1-bg-color);
  transition: 250ms;
}

@media (max-width: 750px) {
  .author-box {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
  }
}

.author-gravatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin: 0px 10px 0px 10px;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  color: var(--text-color);
}

.author-title {
  font-size: 0.75rem;
  color: var(--active-link-color);
}

.sidebar1-toggle {
  display: none;
}

@media (max-width: 750px) {
  .sidebar1-wrapper {
    position: fixed;
    left: 50%;
    top: 25x;
    width: 90vw;
    transform: translate(-50%, -150%);
    transition: transform 0.5s;
    z-index: 10;
  }

  .sidebar1-visible .sidebar1-wrapper {
    transform: translate(-50%, 0%);
  }

  .post-content {
    margin: 0px 0px 0px 0px;
  }

  .sidebar1-toggle {
    display: block;
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 100;
    padding: 7px 13px 10px 14px;
    font-size: 24px;
    background-color: #23282d;
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
  }

  .sidebar1-visible .sidebar1-wrapper {
    margin: auto;
    position: fixed;
  }
}

/*sidebar1*/
















/*accordion*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700&display=swap');

#faq__accordian-main-wrapper {
    max-width: 1140px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    /*width: 830px;*/
}

.faq__accordion-content p {
    margin: 0;
}

.faq__accordian-heading {
    background-color: #eeeeee;
    padding: 10px 30px 10px 45px;
    display: block;
    margin-bottom: 15px;
    position: relative;
    font-weight: 500;
    text-decoration: none; /* Changed 'navajowhite' to 'none' */
    color: #000000;
}

/* Example CSS to style the active header */
.post-content :is(h1, h2, h3, h4, a).active {
    background-color: #1eb304; /* Change to your desired background color */
}


.faq__accordian-heading.active {
    background-color: #3c996b;
    color: #ffffff;
}

.faq__accordian-heading.active::before {
    transition: 0.3s linear all;
    transform: translateY(-50%) rotate(360deg);
    color: #ffffff;
}

.faq__accordion-content {
    display: none;
    padding: 10px 20px;
}

/*accordion*/


/* --------------------------------------
    2. General Styles
-------------------------------------- */

body {
    background: #f6f8f8;
}
.col-md-12 select {
        padding-right: 20px; /* Adjust the value as needed */
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none; /* Optional: replace with your own arrow icon */
    }
.team{
    margin-bottom: 100px;
}
.team p{
    color: #fff;
}
@media (min-width: 800px) {
    .team{
        width:50%
    }
}
.float-btn-cntr {
    position: fixed;
    width: 50px;
    bottom: 50%;
    right: 0px;
    z-index: 99999999;
}
.float1 {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 50%;
    line-height: 50px;
    line-height: 50px;
    right: 0px;
    background-color: #2e5b8d;
    color: #fff !important;
    text-align: center;
    font-size: 24px;
    box-shadow: -2px 2px 3px rgba(0,0,0,30%);
    z-index: 99999999;
}
.float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 42%;
    right: 0px;
    background-color: #25d366;
    color: #fff !important;
    text-align: center;
    font-size: 24px;
    box-shadow: -2px 2px 3px rgba(0,0,0,30%);
    z-index: 99999999;
    line-height: 50px;
}
.cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
}
.cursor--small {
  width: 5px;
  height: 5px;
  left: -2.5px;
  top: -2.5px;
  border-radius: 50%;
  z-index: 11000;
  background: #1eb304;
  color:#1eb304;
}
.cursor--canvas {
  width: 100vw;
  height: 100vh;
  z-index: 12000;
  color:#1eb304;
}
.page, .page a {
 cursor: none;
}
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    margin-top: 70px;
    margin-bottom: 70px;
    text-align: center;
  }
  .gridss{
    text-align: center;
  justify-content: center;
  }
  .grid-item {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
  }

  .grid-item:hover {
    transform: scale(1.05);
  }

  .icon {
    font-size: 36px;
    margin-bottom: 10px;
  }
  .ser-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    text-align: center;
  }

  .ser-grid-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  }

  .ser-grid-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }

  .ser-grid-item img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
  }

  .ser-title {
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
  }

  .ser-description {
    color: #555;
    margin-bottom: 15px;
  }

  .ser-read-more {
    color: #1eb304;
    text-decoration: none;
    font-weight: bold;
  }
  .project-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
    text-align: center;
  }

  .project-grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  }

  .project-grid-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }

  .project-grid-item img {
    width: 100%;
    height: 100%; /* Adjust the height as needed */
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    filter: brightness(70%); /* Apply a slight brightness effect */
  }

  .project-grid-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.02)); /* Gradient overlay */
    z-index: 1;
    border-radius: 10px 10px 0 0;
  }

  .project-grid-item .project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #fff;
    padding: 15px;
    text-align: left;
    z-index: 999;
  }

  .project-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
  }

  .project-description {
    font-size: 14px;
  }
  .view-project-link {
    display: inline-block;
    margin-top: 10px;
    color: #fff;
    background-color: #1eb304;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease-in-out;
  }

  .view-project-link:hover {
    background-color: #1eb304;
    color: #fff;
  }
  .lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 2;
  }

  .lightbox img {
    max-width: 80%;
    max-height: 80%;
    border: 3px solid #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    z-index: 2;
  }
  .close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
  }
  .faq-container {
    max-width: 800px;
    margin: 0px auto 20px auto;;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  }

  .faq-item {
    margin-bottom: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    border-radius: 10px;
    overflow: hidden;
  }

  .faq-item:hover {
    background-color: #f7f7f7;
  }

  .faq-question {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #1eb304;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
  }

  .faq-answer {
    font-size: 16px;
    color: #555;
    display: none;
    padding: 0 15px 15px;
  }

  .faq-icon {
    font-size: 20px;
    margin-right: 5px;
    color: #1eb304;
  }
  .accordion-container {
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  }

  .accordion-item {
    border-bottom: 1px solid #ddd;
  }

  .accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    cursor: pointer;
  }

  .accordion-title {
    font-size: 18px;
    font-weight: bold;
  }

  .accordion-icon {
    font-size: 20px;
    color: #1eb304;
  }

  .accordion-content {
    padding: 15px;
    display: none;
  }

  .accordion-content p {
    margin: 0;
    line-height: 1.5;
  }
  .services-container {
    display: flex;
    max-width: 1200px;
    margin: 50px auto;
  }
  .services-container li a{
    color: #000;
  }

  .sidebar {
    width: 25%;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    height: 250px;
    display: none;
  }

  .service-list {
    list-style-type: none;
    padding: 0;
  }

  .service-list-item {
    margin-bottom: 10px;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
  }

  .service-list-item:hover {
    background-color: #f7f7f7;
  }

  .service-list-item.selected {
    background-color: #1eb304;
    color: #fff;
  }

  .main-contents {
    flex: 1;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
  }

  .service-description {
    padding: 40px;
    font-size: 18px;
    line-height: 1.5;
  }
  @media screen and (min-width: 768px) {
    /* Show the sidebar on larger devices */
    .services-container {
      flex-direction: row;
    }

    .sidebar {
      display: block;
      width: 25%;
    }
    .sidebar1 {
      display: block;
      width: 100%;
    }
  }
  .service-description img{
    max-width: 100%;
    margin: 20px 0;
  }
  
 
a {
    color: #1eb304;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

a:hover {
    color: #1eb304;
}

a:hover,
a:focus,
a:visited {
    text-decoration: none !important;
    outline: none !important
}

input {
    outline: none !important;
}

button {
    outline: none !important;
}

.main-content {
    padding: 80px 0;
}

.pad80 {
    padding: 80px 0 0 0;
}

.pad70 {
    padding: 70px 0 0 0;
}

.pad40 {
    padding: 40px 0 0 0;
}

.section-title {
    text-align: center;
    margin: 0 !important;
    text-transform: capitalize;
}

.section-title:after {
    content: url(../images/shapes/wave-blue.svg);
    display: block;
    width: 70px;
    margin: 0 auto;
    padding: 0px 0 20px 0;
    text-transform: uppercase;
}

.section-descr {
    text-align: center;
    margin: 0;
}

img {
    -moz-user-select: none;
    /* These user-select properties are inheritable, used to prevent text selection */
    -webkit-user-select: none;
    -ms-user-select: none;
    /* From IE10 only */
    -webkit-user-drag: none;
    /* Prevents dragging of images/divs etc */
    user-drag: none;
}


/* --------------------------------------
    3. Buttons
-------------------------------------- */

.btn {
    font-family: "Jost", system-ui;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 10px 25px;
    position: relative;
    background: #1eb304;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    border-radius: 25px;
    color: #fefefe;
    box-shadow: 5.5px 9px 15px 0px rgba(0, 0, 0, 0.2);
    -webkit-transition: all .8s ease;
    -moz-transition: all .8s ease;
    -ms-transition: all .8s ease;
    -o-transition: all .8s ease;
    transition: all .8s ease;
}

.btn:focus,
.btn:hover {
    color: #fefefe;
    box-shadow: none;
}

.btn-border {
    font-family: "Jost", system-ui;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 25px;
    position: relative;
    border: 2px solid #1eb304;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    border-radius: 25px;
    color: #999;
}

.btn-border.active {
    background: #1eb304;
    color: #f6f8f8;
}


/* --------------------------------------
    4. Header 
-------------------------------------- */

header {
    position: absolute;
    width: 100%;
    z-index: 999;
    -webkit-transition: .6s all ease;
    -moz-transition: .6s all ease;
    -ms-transition: .6s all ease;
    -o-transition: .6s all ease;
    transition: .6s all ease;
}

nav.navbar {
    background: none;
    border: none;
    margin: 70px 0 0 0;
    padding-bottom: 10px;
}

.navbar-brand img {
    height: 90px;
    cursor: pointer;
}

.navbar-header {
    float: right;
}

.navbar-toggle {
    display: block;
    border: none;
    margin: 18px 0;
    padding: 0;
}

.navbar-toggle:hover,
.navbar-toggle:focus {
    background: none !important;
}

.navbar-default .navbar-toggle .icon-bar {
    content: '';
    display: block;
    width: 30px;
    height: 5px;
    background: url(../images/shapes/wave-white.svg) no-repeat;
}

div#main-nav .nav {
    padding-top: 20px;
    margin: 0;
}

div#main-nav h3 {
    text-align: center;
    color: #f6f8f8;
    text-transform: uppercase;
    padding: 20px 0;
}

div#main-nav h3:after {
    content: url(../images/shapes/wave-white.svg);
    display: block;
    width: 60px;
    margin: 0 auto;
    text-transform: uppercase;
    position: relative;
}

.navbar .navbar-nav > li > a {
    font-family: "Jost", system-ui;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    color: #f6f8f8 !important;
    padding-left: 30px;
    white-space: nowrap;
}

.navbar .navbar-nav > li > a:hover {
    color: #1eb304 !important;
    -webkit-transition: 0.3s ease-in;
    -moz-transition: 0.3s ease-in;
    -ms-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
}

.navbar .navbar-nav > .open > a,
.navbar .navbar-nav > .open > a:hover,
.navbar .navbar-nav > .open > a:focus {
    background: none;
}

.navbar-default .navbar-nav >.active > a,
.navbar-default .navbar-nav >.active > a:focus,
.navbar-default .navbar-nav >.active > a:hover {
    background: none !important;
    color: #1eb304 !important;
}


/*****  PUSH MENU   *****/

.collapse {
    display: block !important;
}


/* General styles for all menus */

#main-nav.cbp-spmenu {
    background: -moz-linear-gradient(left, #1eb304 -40%, #003042 140%);
    background: -webkit-linear-gradient(left, #1eb304 -40%, #003042 140%);
    background: linear-gradient(to right, #1eb304 -40%, #003042 140%);
    position: fixed;
    padding: 0;
    margin: 0 !important;
    overflow-x: hidden;
    overflow-y: visible;
    display: block;
    visibility: visible !important;
    height: 100% !important;
    border: 0;
}

.cbp-spmenu-push-toleft:before {
    content: '';
    z-index: 1000;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}


/* Vertical menu that slides from the left or right */

.cbp-spmenu-left {
    left: -260px;
}

.cbp-spmenu-right {
    right: -260px;
}

.cbp-spmenu-left.cbp-spmenu-open {
    left: 0px;
    height: 100% !important;
}

.cbp-spmenu-right.cbp-spmenu-open {
    right: 0px;
    height: 100% !important;
}


/* Orientation-dependent styles for the content of the menu */

.cbp-spmenu-vertical {
    width: 260px;
    height: 100%;
    top: 0;
    z-index: 1000;
}


/* when menu is open */

.cbp-spmenu .nav > li {
    display: block;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #9ac7d8;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cbp-spmenu .nav > li i {
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.cbp-spmenu .nav > li.open i {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    top: 40%;
}


/* Push classes applied to the body */

.cbp-spmenu-push {
    overflow-x: hidden;
    position: relative;
    left: 0;
}

.cbp-spmenu-push-toright {
    left: 260px;
}

.cbp-spmenu-push-toleft {
    left: -260px;
}


/* Transitions */

.cbp-spmenu,
.cbp-spmenu-push {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}


/* Dropdown down */

.dropdown-menu {
    position: relative;
    width: 100%;
    background: rgba(15, 83, 108, 0.55);
    border-radius: 0;
    border: 0;
    float: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
    box-shadow: none;
    display: none;
}

.open > .dropdown-menu {
    display: block;
    animation: mymenu-open .5s;
}

.dropdown-menu li a {
    color: #f6f8f8;
    text-transform: uppercase;
    font-family: "Jost", system-ui;
    font-size: 16px;
    font-weight: 700;
    padding: 15px 0 15px 30px;
    border-bottom: 1px solid rgba(238, 238, 238, 0.2) !important;
}

.dropdown-menu li a:last-child {
    border: 0;
}

.dropdown-menu li a:hover,
.dropdown-menu li a:focus {
    background: none;
    color: #1eb304;
}


/* --------------------------------------
    5. Home Page
-------------------------------------- */


/**************** 5.1 Main Section - Slider ****************/

section.main {
    position: relative;
}


/* ---- Slider ---- */

.fullscreen {
    top: 0;
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.swiper-slide-active {
    z-index: 100;
}

.swiper-slide {
    overflow: hidden;
}


.overlay:before {
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    display: block;
    content: '';
    overflow: hidden;
    z-index: 2;
    position: absolute;
    top: 0;
    opacity: .9;
}

.overlay:after {
    background: -moz-linear-gradient(left, #1eb304 -40%, #003042 140%);
    background: -webkit-linear-gradient(left, #1eb304 -40%, #003042 140%);
    background: linear-gradient(to right, #1eb304 -40%, #003042 140%);
    width: 100%;
    height: 100%;
    display: block;
    content: '';
    overflow: hidden;
    z-index: 3;
    position: absolute;
    top: 0;
    opacity: .3;
}

.slider-content {
    position: relative;
    top: 35%;
    z-index: 15;
    text-align: center;
}

.slider-content h2 {
    color: #fefefe;
    font-weight: 400;
}

.slider-content h1{
    font-size: 72px;
    font-weight: 700;
    font-family: "Jost", system-ui;
    color: #fefefe;
}

.slider-content h1:after {
    content: url('../images/shapes/wave-blue.svg');
    display: block;
    width: 70px;
    margin: 0 auto;
    padding: 5px 0 20px 0;
    font-size: large;
}

.slider-content h4 {
    color: #fefefe;
    font-weight: 400;
}

.slider-content h4 span {
    color: #ff9900;
    font-family: inherit;
}
.slider-content h3 {
    color: #fefefe;
    font-weight: 400;
    font-size:24px;
}

.slider-content h3 span {
    color: #ff9900;
    font-family: inherit;
}

.slider-content .cta {
    margin-top: 40px;
}

.slider-content .cta .btn:hover {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}


/* ---- Video Background ---- */

video.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: url(../video/video.jpg) no-repeat;
    background-size: cover;
    -webkit-transition: all 1s opacity;
    -moz-transition: all 1s opacity;
    -ms-transition: all 1s opacity;
    -o-transition: all 1s opacity;
    transition: all 1s opacity;
}

.video-bg::-webkit-media-controls-start-playback-button {
    display: none!important;
    -webkit-appearance: none;
}


/* ---- Paginition ---- */

.swiper-pagination {
    top: 50%;
    -webkit-transform: rotate(90deg) translateX(-50%);
    -moz-transform: rotate(90deg) translateX(-50%);
    -ms-transform: rotate(90deg) translateX(-50%);
    -o-transform: rotate(90deg) translateX(-50%);
    transform: rotate(90deg) translateX(-50%);
    width: auto !important;
    height: 20px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border: 2px solid #fefefe;
    background: none;
    opacity: 0.6;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.swiper-pagination-bullet-active {
    border: none;
    background: #fefefe;
    opacity: 1;
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}


/* ---- Scroll Down ---- */

.scroll-down {
    position: absolute;
    bottom: 0;
    z-index: 20;
    width: 100%;
    text-align: center;
}

.scroll-down:before {
    content: url('../images/shapes/scroll-shape.svg');
    width: 100px;
    height: 49px;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: -1;
}

.scroll-down a {
    font-size: 30px;
    cursor: pointer;
    color: #323232;
}

.scroll-down a:hover {
    color: #1eb304;
    font-size: 34px;
}


/* Demos */

.fullscreen {
    background: url(../images/img/slider-bg.jpg) no-repeat;
    background-size: cover;
}

.service-bg {
    background: url(../images/img/pool-bg-2.webp) no-repeat;
    background-size: cover;
    top: 0;
    width: 100%;
    height: 450px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center; /* Center align text */
    background-position: bottom;
}


/**************** 5.2 About Section ****************/

section#about-us {
    text-align: center;
    overflow: hidden;
    position: relative;
}

section#about-us .about-image {
    background: url('../images/img/about-img.jpg');
    background-size: cover;
    min-height: 440px;
    z-index: 1;
}

section#about-us .about-description {
    width: 70%;
    display: block;
    margin: 0 auto;
}

section#about-us .btn {
    margin-top: 30px;
}

section#about-us .logo-overlay {
    width: 300px;
    height: 300px;
    opacity: .1;
    position: absolute;
    top: -120px;
    right: -100px;
    background: url('../images/logo-mark.svg');
}


/**************** 5.3 Gallery Section ****************/

section#gallery {
    background: #ededed;
}

ul.gallery-sorting {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
}

ul.gallery-sorting li {
    display: inline-block;
    padding: 15px 10px;
}

ul#grid.gallery-items {
    margin: 50px 0 0 0;
}

ul#grid.gallery-items li.shuffle-item {
    padding: 0;
}

ul#grid.gallery-items li.shuffle-item img {
    object-fit: cover;
    min-height: 250px;
    opacity: .7;
    -webkit-transition: all 1.2s ease;
    -moz-transition: all 1.2s ease;
    -ms-transition: all 1.2s ease;
    -o-transition: all 1.2s ease;
    transition: all 1.2s ease;
}


/* CSS Fallback from Modernizr */

ul#grid.gallery-items li.shuffle-item.compat-object-fit img {
    background-size: cover;
    background-position: center;
}

figure.gallery-item {
    max-height: 250px;
    overflow: hidden;
}

ul#grid.gallery-items li.shuffle-item:hover img {
    opacity: 1;
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
}

ul#grid.gallery-items li.shuffle-item a:before {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(60, 190, 238, 0.3);
    position: absolute;
    z-index: 1;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    opacity: 0;
}

ul#grid.gallery-items li.shuffle-item:hover a:before {
    opacity: 1;
}

ul#grid.gallery-items li.shuffle-item a:after {
    content: '\f00e';
    font-family: 'fontawesome';
    font-size: 30px;
    color: #f6f8f8;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 5;
    display: block;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
    opacity: 0;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

ul#grid.gallery-items li.shuffle-item:hover a:after {
    opacity: .8;
    font-size: 38px;
}


/**************** 5.4 Training Courses Section ****************/

section#courses {
    background: url('../images/img/courses-bg.png') no-repeat right bottom;
    background-size: cover;
    text-align: center;
}

section#courses h4 {
    color: #999;
    padding: 20px 0;
    text-transform: uppercase;
}

section#courses .training-course img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    z-index: 5;
    position: relative;
    box-shadow: 5.5px 9px 15px 0px rgba(0, 0, 0, 0.2);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

section#courses .training-course .btn {
    -webkit-transform: translateY(-100px) scale(0.3);
    -moz-transform: translateY(-100px) scale(0.3);
    -ms-transform: translateY(-100px) scale(0.3);
    -o-transform: translateY(-100px) scale(0.3);
    transform: translateY(-100px) scale(0.3);
    opacity: 0;
    z-index: 0;
}


/* when training course is clicked/active */

section#courses .training-course.active img {
    box-shadow: none;
}

section#courses .training-course.active h4 {
    color: #323232;
}

section#courses .training-course.active .btn {
    -webkit-transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
    opacity: 1;
}


/* btn colors for each course */

section#courses #volley.training-course .btn {
    background: #ffcd78;
}

section#courses #fitness.training-course .btn {
    background: #4b5aa7;
}

section#courses #swimming.training-course .btn {
    background: #a5d2f0;
}

section#courses #yoga.training-course .btn {
    background: #a076ab;
}

section#courses .course-image img {
    height: 400px;
    margin: 0 auto;
}


/**************** 5.5 CountUp Section ****************/

section#countup {
    background: url(../images/img/testimonial-bg-4.png) no-repeat #1eb304;
    text-align: center;
    position: relative;
}
@media (max-width: 800px) {
    section#countup {
    background: #1eb304;
}
}
section#countup img {
    height: 60px;
}

section#countup h3 {
    color: #f6f8f8;
    padding-top: 20px;
    text-transform: uppercase;
}

section#countup span {
    color: #f6f8f8;
    font-size: 42px;
    font-weight: 700;
}

section#countup:before {
    content: '';
    background: url(../images/shapes/wave-top.svg) no-repeat;
    background-position: bottom;
    background-size: cover;
    display: block;
    position: absolute;
    left: 0;
    top: -47px;
    width: 100%;
    height: 50px;
}

section#countup:after {
    content: '';
    background: url(../images/shapes/wave-bottom.svg) no-repeat;
    background-position: top;
    background-size: cover;
    display: block;
    position: absolute;
    left: 0;
    bottom: -47px;
    width: 100%;
    height: 50px;
}


/**************** 5.6 Blog Section ****************/

section#blog {
    background: #ededed;
    margin-top: -40px;
}

article.blog-post {
    background: #f6f8f8;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 5.5px 9px 15px 0px rgba(0, 0, 0, 0.2);
    margin-bottom: 80px;
}

article.blog-post .blog-thumbnail {
    padding: 0;
    background: #1eb304;
    overflow: hidden;
}

article.blog-post .blog-thumbnail a:after {
    content: '\f0c1';
    font-family: 'fontawesome';
    color: #f6f8f8;
    font-size: 32px;
    position: absolute;
    top: 50%;
    left: -20%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    -webkit-transition: all .7s ease;
    -moz-transition: all .7s ease;
    -ms-transition: all .7s ease;
    -o-transition: all .7s ease;
    transition: all .7s ease;
}

article.blog-post .blog-thumbnail:hover a:after {
    left: 50%;
    opacity: 1;
}

.blog-thumbnail img {
    max-height: 300px;
    object-fit: cover;
    height: 260px;
    width: 100%;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

article.blog-post .blog-thumbnail:hover img {
    transform: scale(1.2);
    opacity: .5;
}

article.blog-post .date {
    background: #1eb304;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    color: #f6f8f8;
    text-align: center;
    padding: 10px 15px;
    line-height: 1;
    border-radius: 0 0 0 20px;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

article.blog-post .blog-thumbnail:hover .date {
    opacity: 0;
}

.blog-post .date span.day,
.blog-post .date span.publish-month {
    font-family: "Jost", system-ui;
}

.blog-post .date span.day {
    display: block;
    font-size: 24px;
    font-weight: 700;
}

.blog-post .date span.publish-month {
    font-size: 14px;
    text-transform: uppercase;
}

.blog-post .blog-desc {
    padding: 0 0 0 50px;
    color: #999;
}

.blog-post .blog-desc h4 a {
    color: #323232;
    text-transform: capitalize;
    font-family: "Jost", system-ui;
    font-weight: 700;
    cursor: pointer;
}

.blog-post .blog-desc h4 a:hover {
    color: #1eb304;
}

.post-detail {
    padding: 10px 0 30px 0;
    color: #999;
}

.post-detail span:after {
    content: '|';
    padding: 0 7px;
}

.post-detail span:last-child:after {
    display: none;
}

.post-detail span i {
    padding-right: 5px;
}

.blog-post .blog-desc a.btn {
    margin-top: 30px;
}

section#blog .text-center {
    margin: 0 0 90px 0;
}


/**************** 5.7 Testimonial Section ****************/

section#testimonials {
    background: url(../images/img/testimonial-bg.png) no-repeat #1eb304;
    background-position: top left;
    background-size: contain;
    color: #f6f8f8;
}

section#testimonials .section-title {
    text-align: left;
    color: #f6f8f8;
}

section#testimonials .section-title span {
    font-family: "Jost", system-ui;
    font-weight: 700;
    font-size: 24px;
    color: #a2ff91;
}

section#testimonials .section-title:after {
    content: url(../images/shapes/wave-white.svg);
    display: block;
    width: 70px;
    margin: 0;
    padding: 0px 0 20px 0;
    text-transform: uppercase;
}

#sync1 .item .testimonial {
    padding-left: 80px;
}

#sync1 .item blockquote {
    text-align: left;
    color: #f6f8f8;
    line-height: 30px;
    border: 0;
}

#sync1 .item blockquote:before {
    content: '\f10d';
    font-family: 'fontawesome';
    display: inline-block;
    float: left;
    color: #f6f8f8;
    font-size: 72px;
    position: absolute;
    left: 1px;
    top: 30px;
}

#sync2 {
    padding: 40px 0 0 0;
}

#sync2 .synced .item {
    opacity: 1;
}

#sync2 .item {
    margin: 5px;
    cursor: pointer;
    opacity: .6;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

#sync2 .item .client-img {
    display: inline-block;
    float: left;
}

#sync2 .item img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

#sync2 .item .details {
    display: inline-block;
    float: left;
    margin-top: 20px;
    padding-left: 30px;
}

#sync2 .item .details h4 {
    color: #f6f8f8;
    text-align: left;
    text-transform: uppercase;
}

#sync2 .item .details h6 {
    color: #a2ff91;
    text-align: left;
    text-transform: uppercase;
}


/**************** 5.8 Pricing Plan Section ****************/

section#pricing {
    background: url(../images/img/pricing-bg.png) no-repeat #ededed;
    background-position: bottom;
}

section#pricing .section-descr {
    padding-bottom: 100px;
    margin: 0;
}

section#pricing .pricing-wrapper {
    text-align: center;
    border-radius: 30px;
    background: #f6f8f8;
    box-shadow: 5.5px 9px 15px 0px rgba(0, 0, 0, 0.2);
}

.pricing-header:before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    background: #f6f8f8;
    top: -30px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-radius: 20px 20px 0 0;
}

.pricing-header:after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: #ededed;
    border: 1px solid #e0e0e0;
    top: -20px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-radius: 50%;
    box-shadow: inset 1px 2px 3px 0px rgba(0, 0, 0, 0.1);
}

section#pricing .pricing-header .price {
    font-size: 60px;
    font-family: "Jost", system-ui;
    font-weight: 700;
    padding: 15px 0;
}

section#pricing .pricing-plan {
    text-transform: uppercase;
    padding: 15px 0;
}

section#pricing .pricing-plan img {
    width: 70px;
    height: 45px;
}

section#pricing .pricing-plan h4 {
    color: #f6f8f8;
    padding-top: 10px;
}

ul.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #999;
}

ul.pricing-features li {
    font-family: "Jost", system-ui;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.pricing-footer {
    padding: 30px 0;
}


/* styles for basic, pro & ultra tables */

section#pricing #basic .pricing-plan {
    background: #1eb304;
}

section#pricing #pro .pricing-plan {
    background: #f69504;
}

section#pricing #pro .pricing-footer .btn {
    background: #f69504;
}

section#pricing #ultra .pricing-plan {
    background: #9f76ab;
}

section#pricing #ultra .pricing-footer .btn {
    background: #9f76ab;
}


/**************** 5.9 Signup Section ****************/

section#signup {
    background: url(../images/img/signup-bg.png) no-repeat #1EB304;;
    background-position: left;
    padding: 60px 0;
}

section#signup h3 {
    font-weight: 100;
    text-align: left;
    color: #a2ff91;
}

section#signup h3 strong {
    font-family: "Jost", system-ui;
    font-weight: 700;
    color: #f6f8f8;
}

section#signup .section-title:after {
    content: url(../images/shapes/wave-white.svg);
    display: block;
    width: 70px;
    margin: 0;
    padding: 0;
}

section#signup .col-md-4 {
    text-align: center;
}

section#signup .btn {
    color: #1eb304;
    background: #f6f8f8;
    padding: 10px 35px;
    margin-top: 25px;
}


/**************** 5.10 Latest Event Section ****************/


/* calendar */

.calendar-container {
    height: auto;
    width: 100%;
}

.calendar header {
    position: relative;
    text-align: center;
    text-transform: uppercase;
}

.calendar .btn-prev,
.calendar .btn-next {
    top: 0;
    line-height: 28px;
    font-size: 24px;
    position: absolute;
    color: #323232;
    cursor: pointer;
}

.calendar .btn-prev:hover,
.calendar .btn-next:hover {
    color: #1eb304;
}

.calendar .btn-prev {
    left: 2px;
}

.calendar .btn-next {
    right: 5px;
}

.calendar table {
    width: 100%;
    margin-top: 40px;
}

.calendar thead {
    font-weight: 600;
    text-transform: uppercase;
    font-family: "Jost", system-ui;
}

.calendar tbody {
    color: #999;
}

.calendar td {
    padding: 15px 5px;
    font-size: 18px;
    text-align: center;
    font-family: "Jost", system-ui;
}

.calendar tbody td:hover {
    cursor: pointer;
    color: #1eb304;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.calendar .current-day {
    color: #f6f8f8;
    position: relative;
}

.calendar .current-day:hover {
    color: #f6f8f8;
}

td.current-day:after {
    content: '';
    display: block;
    width: 32px !important;
    height: 32px !important;
    background: #1eb304;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) !important;
    -moz-transform: translate(-50%, -50%) !important;
    -ms-transform: translate(-50%, -50%) !important;
    -o-transform: translate(-50%, -50%) !important;
    transform: translate(-50%, -50%) !important;
    border-radius: 50%;
    z-index: -1;
}

.calendar .event {
    cursor: pointer;
    position: relative;
}

td.event.active {
    color: #1eb304;
}

.calendar .event:after {
    content: '';
    display: block;
    background: #1eb304;
    border-radius: 50%;
    width: 8px;
    height: 8px;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}


/* event */

section#events .list {
    background: #ededed;
    border-radius: 30px;
    box-shadow: 5.5px 9px 15px 0px rgba(0, 0, 0, 0.2);
    margin: 0 25px;
}

section#events .day-event {
    display: none;
}

section#events .day-event.active {
    display: block;
    opacity: 1;
}

section#events .event-img {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 30px 30px 0 0;
}

section#events .event-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

section#events .event-details {
    padding: 30px 30px 0 30px;
    text-align: center;
}

section#events .event-details h4 {
    text-transform: uppercase;
}

section#events .event-details .date {
    font-size: 18px;
}

section#events .event-details p.date {
    padding: 10px 0;
}

section#events .event-details .date,
section#events .event-details p {
    color: #999;
}

section#events .event-details .btn {
    margin: 30px 0;
}


/**************** 5.11 Partners Section ****************/

section#partners {
    background: #ededed;
    margin-top: -40px;
}

#partners .owl-item {
    min-height: 30px;
}

#partners img {
    width: 130px;
    -webkit-transition: all .9s ease;
    -moz-transition: all .9s ease;
    -ms-transition: all .9s ease;
    -o-transition: all .9s ease;
    transition: all .9s ease;
    margin: 0 auto;
    display: block;
}

#partners img:hover {
    opacity: 0.5;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}


/* --------------------------------------
    6. FOOTER
-------------------------------------- */

footer#main-footer {
    background: url(../images/img/footer-bg-1.png) no-repeat #1eb304;
    background-position: bottom center;
    background-size: cover;
    color: #f6f8f8;
    position: relative;
}

footer#main-footer:before {
    content: '';
    background: url(../images/shapes/wave-top-footer.svg) no-repeat;
    background-position: bottom;
    background-size: cover;
    display: block;
    position: absolute;
    left: 0;
    top: -47px;
    width: 100%;
    height: 50px;
}


/* footer top */

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

footer .footer-top img {
    height: 86px;
    margin-bottom: 5px;
}

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

footer .footer-top ul li {
    padding-bottom: 10px;
}

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

footer .footer-top h4 {
    color: #f6f8f8;
    padding-bottom: 30px;
    text-transform: uppercase;
}

footer .footer-top p {
    color: #f6f8f8;
}

footer .footer-top .about p {
    padding-bottom: 30px;
    margin: 0;
}

footer .footer-top .about i {
    padding-right: 20px;
}

footer .footer-top .footer-links li a {
    color: #f6f8f8;
}

footer .footer-top .footer-links li a:hover {
    color: #a2ff91;
}

footer form .form-group {
    margin-top: 30px;
}

footer form .input-group {
    width: 100%;
}

footer form input.form-control {
    height: 40px;
    border: 0;
    border-radius: 20px;
    padding: 0 0 0 30px;
    width: 90% !important;
    opacity: .3;
    z-index: 0 !important;
}

footer .btn {
    position: absolute;
    right: 0;
    background: #f69504;
    border: 0;
    box-shadow: none;
}

footer .btn:hover {
    background: #1eb304;
}


/* copyright */

footer .copyright {
    padding: 30px 0;
    border-top: 1px solid #669aaf;
}

footer .copyright p {
    margin: 0;
    color: #f6f8f8;
}


/* --------------------------------------
    7. Pages
-------------------------------------- */

#pages.main {
    z-index: 0;
}

#pages.main .page-title {
    height: 350px;
}

#pages.main .page-title h2 {
    color: #f6f8f8;
    z-index: 4;
    font-size: 50px;
    text-transform: uppercase;
    position: absolute;
    top: 60%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}
#pages.main .page-title h1 {
    color: #f6f8f8;
    z-index: 4;
    font-size: 50px;
    text-transform: uppercase;
    position: absolute;
    top: 60%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
        padding: 0px 100px 0 100px;
}


/**************** 7.1 About Page ****************/

section#about .section-title {
    text-align: left;
}

section#about .section-title:after {
    margin: 0;
}

section#about p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 20px;
}

section#about .about-vid {
    height: 450px;
}

section#about .about-vid .vid-container {
    background: #2e2e2e;
    width: 85%;
    height: 100%;
    position: relative;
    border-radius: 30px;
    box-shadow: 5.5px 9px 15px 0px rgba(0, 0, 0, 0.2);
}

section#about .about-vid .vid-container .popup-video:after {
    content: '\f144';
    font-family: 'fontawesome';
    display: block;
    color: #f6f8f8;
    font-size: 70px;
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: .5;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

section#about .about-vid:hover .vid-container .popup-video:after {
    font-size: 80px;
    opacity: .7;
}

section#about .about-vid .vid-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    opacity: .5;
}

section#about ul.check-list {
    font-size: 18px;
    color: #666;
    padding: 0;
    margin: 25px 0;
    list-style: none;
}

section#about ul.check-list li {
    padding-bottom: 20px;
}

section#about ul.check-list li:last-child {
    padding-bottom: 0;
}

section#about ul.check-list li:before {
    content: '\f00c';
    font-family: 'fontawesome';
    font-size: 18px;
    color: #74cc6c;
    padding-right: 10px;
}


/* Timeline */

section#timeline {
    background: #ededed;
}

section#timeline .section-title {
    text-align: left;
}

section#timeline .section-title:after {
    margin: 0;
}

.timeline {
    list-style: none;
    padding: 60px 0 20px;
    margin: 0;
    position: relative;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #c8c8c8;
    left: 50%;
    margin-left: -1.5px;
}

.timeline > li {
    margin-bottom: 60px;
    position: relative;
    display: none;
}

.timeline > li:before,
.timeline > li:after {
    content: " ";
    display: table;
}

.timeline > li:after {
    clear: both;
}

.timeline > li:before,
.timeline > li:after {
    content: " ";
    display: table;
}

.timeline > li:after {
    clear: both;
}

.timeline > li > .timeline-badge {
    color: #fff;
    width: 54px;
    height: 54px;
    position: absolute;
    top: 15px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #ededed;
    border: 6px solid #1eb304;
    border-radius: 50%;
}

.timeline > li > .timeline-badge:before {
    content: '';
    display: block;
    width: 25px;
    height: 25px;
    background: #1eb304;
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.timeline > li > .timeline-panel {
    width: 44%;
    float: left;
    border-radius: 30px;
    position: relative;
    background: #f6f8f8;
    box-shadow: 5.5px 9px 15px 0px rgba(0, 0, 0, 0.2);
}

.timeline > li > .timeline-panel .timeline-header {
    padding: 30px 0;
    background: #1eb304;
    text-transform: uppercase;
    text-align: center;
    border-radius: 30px 30px 0 0;
}

.timeline > li > .timeline-panel .timeline-header h4 {
    color: #f6f8f8;
}

.timeline > li > .timeline-panel .timeline-image {
    height: 200px;
}

.timeline > li > .timeline-panel .timeline-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.timeline > li > .timeline-panel .timeline-descr {
    padding: 30px;
}

.timeline > li.timeline-inverted > .timeline-panel {
    float: right;
}

.timeline > li.timeline-inverted > .timeline-panel:before {
    border-left-width: 0;
    border-right-width: 15px;
    left: -15px;
    right: auto;
}

.timeline > li.timeline-inverted > .timeline-panel:after {
    border-left-width: 0;
    border-right-width: 14px;
    left: -14px;
    right: auto;
}

section#timeline .load {
    text-align: center;
    padding-top: 40px;
}


/**************** 7.2 404 Page ****************/

header#page-404 {
    background: url(../images/img/slider-bg.jpg);
    background-size: cover;
    z-index: 0;
    width: 100%;
    height: 200px;
    position: relative;
}

header#page-404 nav {
    margin: 0;
}

#not-found.main {
    position: relative;
    height: calc(100vh - 200px);
    background: url(../images/img/404-bg.png) no-repeat #ededed;
    background-position: bottom;
    background-size: 100% 100%;
    overflow: hidden;
}

#not-found.main .container {
    position: absolute;
    width: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

section#not-found img {
    width: 300px;
    opacity: .5;
    display: block;
    margin: 0 auto;
}

section#not-found .error-detail {
    text-align: center;
}

section#not-found .error-detail h2 {
    font-size: 190px;
    color: #666;
}

section#not-found .error-detail h4 {
    color: #666;
    text-transform: uppercase;
    padding: 20px 0;
}


/**************** 7.3 Coming Soon Page ****************/

section#coming-soon .coming-content {
    position: absolute;
    width: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 15;
    text-align: center;
}

section#coming-soon h2 {
    color: #1eb304;
    text-transform: uppercase;
    padding-bottom: 10px;
    font-weight: 400;
}

section#coming-soon h3 {
    color: #f6f8f8;
    text-transform: uppercase;
}

section#coming-soon .countdown {
    text-align: center;
}

section#coming-soon .countdown ul {
    list-style: none;
    margin: 0;
}

section#coming-soon .countdown ul li {
    display: inline-block;
    margin: 20px 0;
}

section#coming-soon .countdown li span {
    color: #f6f8f8;
    font-size: 90px;
}

section#coming-soon .countdown li p {
    font-family: "Jost", system-ui;
    color: #eaeaea;
    font-size: 26px;
    font-weight: 300;
    text-transform: uppercase;
}

section#coming-soon .coming-content .cta {
    text-align: center;
}

section#coming-soon .coming-content .cta a {
    margin: 20px 10px;
}

section#coming-soon .coming-content .cta .btn-border {
    color: #f6f8f8;
}

section#coming-soon .coming-content .cta .btn-border:hover {
    color: #1eb304;
}


/* --------------------------------------
    8. Blog
-------------------------------------- */


/**************** 8.1 Blog Listing ****************/

article.blog-listing {
    display: none;
}

a#loadMore:focus {
    color: #999;
}


/**************** 8.2 Blog Detail ****************/

section#blog-post .container {
    padding-left: 0;
    padding-right: 0;
}

section#blog-post .post-title {
    margin-bottom: 10px;
}

section#blog-post h2 {
    text-transform: uppercase;
}

section#blog-post h4 {
    text-transform: uppercase;
    padding-bottom: 20px;
}

section#blog-post p {
    font-size: 17px;
    line-height: 26px;
}

section#blog-post ul {
    font-size: 16px;
    line-height: 26px;
}

section#blog-post .post-img {
    padding: 0;
    border-radius: 30px;
    height: 500px;
    margin: 40px 0;
    box-shadow: 5.5px 9px 15px 0px rgba(0, 0, 0, 0.2);
}

section#blog-post .post-img img {
    border-radius: 30px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section#blog-post .post-quote {
    background: #1eb304;
    color: #f6f8f8;
    border-radius: 30px;
    text-align: center;
    margin: 40px 0;
}

section#blog-post .post-quote blockquote {
    margin: 0;
    padding: 55px 0;
    font-style: italic;
    font-size: 24px;
    border: 0;
}

section#blog-post .post-quote blockquote:before {
    content: '\f10d';
    font-family: 'fontawesome';
    display: inline-block;
    float: left;
    color: #f6f8f8;
    font-size: 72px;
    position: absolute;
    left: 30px;
    top: 0;
    font-style: normal;
    opacity: .5;
}

section#blog-post .post-quote blockquote:after {
    content: '\f10e';
    font-family: 'fontawesome';
    display: inline-block;
    float: right;
    color: #f6f8f8;
    font-size: 72px;
    position: relative;
    right: 30px;
    top: 0;
    font-style: normal;
    opacity: .5;
}

section#blog-post ul.social {
    padding: 0;
    margin-top: 40px;
}

section#blog-post ul.social li {
    display: inline-block;
}

section#blog-post ul.social li .btn {
    width: 140px;
    height: 40px;
    font-size: 24px;
    padding: 0;
}

section#blog-post ul.social li #fb.btn {
    background: #2164b6;
}

section#blog-post ul.social li #twitter.btn {
    background: #43d0fe;
}

section#blog-post ul.social li #linkedin.btn {
    background: #2a8fdd;
}

section#blog-post ul.social li #google.btn {
    background: #dd4b39;
}

section#blog-post ul.social li #pinterest.btn {
    background: #df5643;
}


/* Comments Section */

section#blog-comments h4 {
    text-transform: uppercase;
    padding-bottom: 40px;
}

section#blog-comments .comments-list {
    list-style: none;
    padding: 0;
}

section#blog-comments .comments-list .comment {
    margin-bottom: 40px;
    border-bottom: 2px solid #ededed;
}

section#blog-comments .comments-list .comment:last-child {
    border-bottom: 0;
}

section#blog-comments .comments-list .commenter {
    width: 50px;
    height: 50px;
    margin-right: 20px;
}

section#blog-comments .comments-list .commenter img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

section#blog-comments .comments-list .comment-body h6 {
    text-transform: capitalize;
    padding-bottom: 5px;
}

section#blog-comments .comments-list .comment-body .comment-reply {
    margin: -22px 20px 0 0;
}

section#blog-comments .comments-list .comment-body .comment-reply .btn {
    color: #1eb304;
    background: #fff;
}

section#blog-comments .comments-list .comment-body .comment-reply .btn:hover {
    color: #fff;
    background: #1eb304;
}

section#blog-comments .comments-list .comment-body .comment-info {
    padding-bottom: 25px;
}

section#blog-comments .comments-list .comment-body time {
    font-size: 14px;
    color: #999;
}


/* comment replies */

section#blog-comments .comments-list .comment-replies {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

section#blog-comments .comments-list .comment-replied {
    border-bottom: 0;
}

section#blog-comments .comments-list .comment-replied:last-child {
    margin-bottom: 0;
}


/* comment form */

form#comment-form input {
    margin: 10px 0;
    height: 60px;
    background: #fff;
    border: 0;
    border-radius: 30px;
    padding-left: 30px;
    box-shadow: 5.5px 9px 15px 0px rgba(0, 0, 0, 0.1);
}

form#comment-form input:focus {
    box-shadow: none;
}

form#comment-form textarea {
    margin: 10px 0 30px 0;
    background: #fff;
    border: 0;
    border-radius: 30px;
    padding: 20px 30px;
    box-shadow: 5.5px 9px 15px 0px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    resize: none;
}

form#comment-form textarea:focus {
    box-shadow: none;
}

form#comment-form .form-control::-webkit-input-placeholder {
    color: #999;
}
form#comment-form .form-control::-webkit-select-option {
    color: #999;
}

form#comment-form .form-control:-moz-placeholder {
    color: #999;
}

form#comment-form .form-control::-moz-placeholder {
    color: #999;
}

form#comment-form .form-control:-ms-input-placeholder {
    color: #999;
}

form#comment-form p {
    color: #999;
    font-style: italic;
}


/* --------------------------------------
    9. Contact Us
-------------------------------------- */

section#contact {
    background: #ededed;
    position: relative;
}

section#contact p {
    color: #999;
}

form#contact-forms {
    margin-top: 30px;
}

form#contact-forms .col-md-12 {
    padding: 0;
    text-align: center;
}

form#contact-forms input {
    margin: 10px 0;
    height: 60px;
    background: #f6f8f8;
    border: 0;
    border-radius: 30px;
    padding-left: 30px;
    box-shadow: 5.5px 9px 15px 0px rgba(0, 0, 0, 0.1);
}
form#contact-forms select {
    margin: 10px 0;
    height: 60px;
    background: #f6f8f8;
    color: #999;
    border: 0;
    border-radius: 30px;
    padding-left: 30px;
    box-shadow: 5.5px 9px 15px 0px rgba(0, 0, 0, 0.1);
}
form#contact-forms input:focus {
    box-shadow: none;
}

form#contact-forms textarea {
    margin: 10px 0 30px 0;
    background: #f6f8f8;
    border: 0;
    border-radius: 30px;
    padding: 20px 30px;
    box-shadow: 5.5px 9px 15px 0px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    resize: none;
}

form#contact-forms textarea:focus {
    box-shadow: none;
}

form#contact-forms .form-control::-webkit-input-placeholder {
    color: #999;
}

form#contact-forms .form-control::-webkit-select-placeholder {
    color: #999;
}

form#contact-forms .form-control:-moz-placeholder {
    color: #999;
}

form#contact-forms .form-control::-moz-placeholder {
    color: #999;
}

form#contact-forms .form-control:-ms-input-placeholder {
    color: #999;
}


/* google maps */

.gmaps {
    height: 600px;
    padding: 0;
    border-radius: 30px;
}

.gmaps #map {
    width: 90%;
    height: 100%;
    float: right;
    border-radius: 30px;
    box-shadow: 5.5px 9px 15px 0px rgba(0, 0, 0, 0.2);
}

.gmaps .gm-style {
    border-radius: 30px;
}

#map .gmnoprint {
    display: none;
}


/* Contact Ver. 2 */

section.contact:before {
    content: '';
    display: block;
    width: 100%;
    height: 100px;
    position: absolute;
    bottom: 0px;
    z-index: 1;
    box-shadow: 5px 60px 50px 0 rgba(0, 0, 0, 0.1);
}

section.contact:after {
    content: '';
    background: url(../images/shapes/wave-bottom2.svg) no-repeat;
    background-position: top;
    background-size: cover;
    display: block;
    position: absolute;
    left: 0;
    bottom: -49px;
    width: 100%;
    height: 50px;
    z-index: 1;
}

section#contact .contact-top {
    margin-bottom: 80px;
}

.gmaps2 {
    height: 400px;
    padding: 0;
    border-radius: 30px;
}

.gmaps2 #map {
    width: 100%;
    height: 100%;
    float: right;
}


/* --------------------------------------
    x. Animations
-------------------------------------- */


/* Menu Animation */

@-webkit-keyframes mymenu-open {
    0% {
        transform: translateY(-30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

@-moz-keyframes mymenu-open {
    0% {
        transform: translateY(-30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

@-o-keyframes mymenu-open {
    0% {
        transform: translateY(-30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

@keyframes mymenu-open {
    0% {
        transform: translateY(-30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}
.inc-siz{
        color: #f6f8f8;
    z-index: 4;
    font-size: 50px;
    text-transform: uppercase;
    position: absolute;
    top: 60%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}












/*new*/
/* Custom styles for nested dropdowns */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
}

.dropdown-menu > .dropdown-submenu > .dropdown-menu {
    display: none;
}

.dropdown-menu > .dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

.dropdown-menu > .dropdown-submenu:hover {
    background-color: #f1f1f1;
}


.background-div {
    position: relative; /* Ensure relative positioning for overlay */
    width: 100%; /* Take full width */
    height: 400px; /* Adjust height as needed */
    background-image: url('../images/img/water-body.jpg');
    background-size: cover; /* Cover ensures the background image covers the entire div */
    background-position: center; /* Center the background image */
    background-repeat: no-repeat; /* Prevent background image from repeating */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Align items vertically center */
    align-items: flex-start; /* Align items horizontally to the start */
    padding: 20px; /* Adjust padding as needed */
    color: white; /* Text color */
    margin-bottom: 30px;
    border-radius: 10px!important;
}

.background-div::before {
    content: ''; /* Required for pseudo-element */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust transparency (0.5 = 50% black) */
    
}

.background-div h1,
.background-div p,
.background-div button {
    position: relative; /* Ensure text appears above overlay */
    z-index: 1; /* Ensure text appears above overlay */
    color: white; /* Text color */
}

.background-div h1 {
    margin-bottom: 10px; /* Adjust margin as needed */
}

.background-div p {
    margin-bottom: 20px; /* Adjust margin as needed */
}

.background-div button {
    padding: 10px 20px;
    background-color: #007bff; /* Example button background color */
    color: white; /* Example button text color */
    border: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .background-div {
        height: 300px; /* Adjust height for smaller screens */
    }
    
    .background-div h1,
    .background-div p,
    .background-div button {
        font-size: 18px; /* Adjust font size for smaller screens */
    }
}



.card {
            margin-bottom: 20px;
            border: none;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            position: relative;
        }
        .card-img-top {
            height: 200px;
            object-fit: cover;
        }
        .icon-bottom-right {
            position: absolute;
            bottom: 10px;
            right: 10px;
            font-size: 24px;
            color: #ffffff;
        }
        
        
        
        .faq-section {
            padding: 50px 0;
            background-color: #f8f9fa;
        }
        
        .carousel {
	margin: 50px auto;
    padding: 30px 70px;
    background: #c3c3c321;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); 
}
.carousel-item {
	color: #999;
	font-size: 14px;
    text-align: center;
	overflow: hidden;
    min-height: 290px;
}
.carousel .item .img-box {
	width: 135px;
	height: 135px;
	margin: 0 auto;
	padding: 5px;
	border-radius: 50%;
}
.carousel .img-box img {
	width: 100%;
	height: 100%;
	display: block;
}
.carousel .testimonial {
	padding: 10px 0 10px;
}
.carousel .overview {	
	font-style: italic;
}
.carousel .overview b {
	text-transform: uppercase;
	color: #323232;
    font-size: 16px;
}
.carousel .carousel-control {
	width: 40px;
    height: 40px;
    top: 50%;
	background: none;
}
.carousel-control i {
    font-size: 68px;
	line-height: 42px;
    position: absolute;
    display: inline-block;
	color: rgba(0, 0, 0, 0.8);
    text-shadow: 0 3px 3px #e6e6e6, 0 0 0 #000;
}
.carousel .carousel-indicators {
	bottom: -40px;
}
.carousel-indicators li, .carousel-indicators li.active {
	width: 10px;
	height: 10px;
	margin: 1px 3px;
	border-radius: 50%;
}
.carousel-indicators li {	
	background: #999;
	border-color: transparent;
	box-shadow: inset 0 2px 1px rgba(0,0,0,0.2);
}
.carousel-indicators li.active {	
	background: #555;		
	box-shadow: inset 0 2px 1px rgba(0,0,0,0.2);
}

@media screen and (max-width: 1773px) {
  .slider-content h1 {
    font-size: 60px;
  }
  
  .slider-content h3 {
    font-size: 18px;
}
  
  .slider-content .cta {
    margin-top: 24px;
  }
}

@media screen and (max-width: 968px) {
  .slider-content h1 {
    font-size: 47px;
  }
  
  .slider-content h3 span{
       font-size: 18px;
  }
 
}

@media screen and (max-width: 767px) {
  .slider-content h1 {
    font-size: 40px;
  }
  
  .slider-content h3 span{
       font-size: 18px;
  }
 .fullscreen {
    height: 100vh;
    
}

}


@media (max-width: 460px) {
    
    }
    
}



.service_section {
    position: relative
}

.service_section .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px;
    background-color: #c3c3c321;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Box shadow effect */
}


.service_section .box .img-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 125px;
    min-width: 75px;
    height: 75px;
    margin-right: 25px
}

.service_section .box .img-box img {
    max-width: 100%;
    max-height: 100%;
    -webkit-transition: all .3s;
    transition: all .3s
}

.service_section .box .detail-box h5 {
    font-weight: 700;
    margin-bottom: 10px!important;
}
.service_section .box .detail-box h3 {
    font-weight: 700;
    margin-bottom: 10px!important;
    font-size: 20px;
    text-transform: capitalize !important;
}

.service_section .box .detail-box span {
    padding-bottom: 10px!important;
    font-size: 20px;
    text-transform: capitalize !important;
    font-family: "Jost", system-ui;
    font-weight: 700;
    color: #323232;
}


.service_section .box .detail-box a {
    color: #04233b;
    font-weight: 600
}

.service_section .box .detail-box a:hover {
    color: #0a97b0
}

@media (max-width:420px) {
    .service_section .box {
        flex-direction: column
    }

    .service_section .box .img-box {
        justify-content: flex-start;
        margin-bottom: 15px
    }
}

@media (min-width:1200px) {
    .container {
        max-width: 1170px
    }
}

.custom-contact-form-container {
    padding: 50px;
    background: #c3c3c321;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Box shadow effect */
}

.highlight-section {
            background-color: #1eb304;
            color: white;
            padding: 40px 0;
            margin: 50px 0 50px 0;
        }
        .highlight-section .icon {
            font-size: 50px;
            margin-bottom: 20px;
        }
        
        .highlight-section h4 {
            color: white; 
        }
        
        .highlight-section h3 {
            color: white; 
            font-size: 24px;
        }
        
        .highlight-section span {
            color: white;
            font-size: 24px;
            text-transform: capitalize !important;
            font-weight: 700;
            margin: 0 !important;
        }
        
.service_container{
    margin-bottom: 80px;
}


.card-custom {
    background-color: #EFF1F1;
    color: white;
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 30px;
    min-height: 330px;
}

.card-custom .icon img {
    padding-bottom: 10px;
}

.card-custom h6 {
    margin-top: 15px;
}


.card-custom span {
    font-family: "Jost", system-ui;
    font-weight: 700;
    margin: 0 !important;
    color: #323232;
    font-size: 18px;
}

.card-custom h3 {
    margin-top: 15px;
    font-size: 18px;
    text-transform: capitalize !important;
}

.card-custom p {
    padding-top: 8px;
    font-size: 13px;
}


.project-slider {
    display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -10px !important;

  margin-bottom:5px;
}



.slider-wrapper {
  position: relative;
}

.slider-wrapper .slide-button {
position: absolute;
  top: 58%;
  outline: none;
  border: none;
  height: 50px;
  width: 50px;
  z-index: 5;
  color: #fff;
  display: flex;
  cursor: pointer;
  font-size: 2.2rem;
  background: #404040;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transform: translateY(-50%);
}

.slider-wrapper .slide-button:hover {
  background: #404040;
}

.slider-wrapper .slide-button#prev-slide {
  left: -25px;
  display: none;
}

.slider-wrapper .slide-button#next-slide {
  right: -25px;
}

.slider-wrapper .image-list {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 18px;
  font-size: 0;
  list-style: none;
  margin-bottom: 30px;
  overflow-x: auto;
  scrollbar-width: none;
}

.slider-wrapper .image-list::-webkit-scrollbar {
  display: none;
}

.slider-wrapper .image-list .image-item {
  width: 325px;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

.container .slider-scrollbar {
  height: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}

.slider-scrollbar .scrollbar-track {
  background: #ccc;
  width: 100%;
  height: 2px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  position: relative;
}

.slider-scrollbar:hover .scrollbar-track {
  height: 4px;
}

.slider-scrollbar .scrollbar-thumb {
  position: absolute;
  background: #323232;
  top: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  cursor: grab;
  border-radius: inherit;
}

.slider-scrollbar .scrollbar-thumb:active {
  cursor: grabbing;
  height: 8px;
  top: -2px;
}

.slider-scrollbar .scrollbar-thumb::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  bottom: -10px;
}

/* Styles for mobile and tablets */
@media only screen and (max-width: 1023px) {
  .slider-wrapper .slide-button {
    display: none !important;
  }

  .slider-wrapper .image-list {
    gap: 10px;
    margin-bottom: 15px;
    scroll-snap-type: x mandatory;
  }

  .slider-wrapper .image-list .image-item {
    width: 280px;
    height: 380px;
  }

  .slider-scrollbar .scrollbar-thumb {
    width: 20%;
  }
}




/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index:99; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

/* Caption of Modal Image */
#caption {
  display: none;
}

/* Add Animation - Zoom in the Modal */
.modal-content, #caption { 
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/**************** 5.9 CTA Section ****************/

section#cta{
    background: url(../images/img/cta-background.png);
    background-position: left;
    padding: 60px 0;
}

section#cta h3 {
    font-weight: 500;
    text-align: left;
    color: #a2ff91;
}

section#cta p {
   font-size: 18px;
    line-height: 24px;
    color: #fff;
    text-align: left;
    padding-top: 12px;
}

section#cta h3 strong {
    font-family: "Jost", system-ui;
    font-weight: 700;
    color: #f6f8f8;
}

section#cta.section-title:after {
    display: block;
    width: 70px;
    margin: 0;
    padding: 0;
}

section#cta .col-md-4 {
    text-align: end;
}


@media (max-width: 992px) {
    section#cta .col-md-4 {
        text-align: center;
    }
}


section#cta .btn {
    color: #1eb304;
    background: #f6f8f8;
    padding: 10px 35px;
    margin-top: 25px;
}

@media (min-width: 992px) {
    .custom-gap-right {
        padding-right: 35px;
    }
}



/* Original header styles */
.main-header {

    z-index: 1;
}

/* Sticky header styles */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #00000085;
    color: white;
    z-index: 10;
    display: none;
    width: 100%;
    -ms-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -op-animation-name: fadeInDown;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -ms-animation-duration: 500ms;
  -moz-animation-duration: 500ms;
  -op-animation-duration: 500ms;
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
  -ms-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -op-animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -ms-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -op-animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}






/* Hide submenus by default */
.dropdown .dropdown-custom {
    display: none;
    transition: all 0.3s ease; /* Smooth appearance */
    transition-delay: 0s; /* No delay initially */
}

/* Show the submenu when hovering over the parent menu item */
.dropdown:hover .dropdown-custom {
    display: block;
    transition-delay: 0.2s; /* Add delay before showing the submenu */
}

/* Optional: Add transition for smooth appearance */
.dropdown-custom {
    transition: all 0.3s ease; /* Smooth appearance */
}




.irrigation_services_section {
    padding: 20px 0;
}

.irrigation_services_section .heading_container {
    text-align: center;
    margin-bottom: 30px;
}

.irrigation_services_section .services_list ul {
    list-style-type: none;
    padding: 0;
}

.irrigation_services_section .services_list ul li {
    margin-bottom: 20px;
    padding: 10px;
}

.irrigation_services_section .services_list ul li strong {
    margin-bottom: 5px;
    font-weight: 600;
}



.services_list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.service_card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1 1 300px; /* Adjust width as needed */
}

.service_card h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.service_card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.card .card-content h4{
    color: #ffff;
}

.card .card-content h3{
    color: #ffff;
    font-size: 24px;
    text-transform: capitalize !important;
}

.card .card-content a{
    color: #ffff;
    font-size: 24px;
    text-transform: capitalize !important;
    font-weight: 700;
    margin: 0 !important;
}

.card .card-content a:hover{
    color: #1eb304;
}

.card .card-content p{
   
    color: #d7d7d7;
}

.border-primary{
    padding: 20px 40px;
    border: 1px dotted #1eb304;
}


@media (max-width: 992px) {
    .card {
        height: auto!important;
    }
}


@media (min-width: 992px) {
    .custom-center {
        display: flex!important;
        justify-content: center!important;
        align-items: center!important;
    }
}


.social-media {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.social-media li {
    display: inline;
    margin-right: 10px; /* Adjust the spacing as needed */
}

.social-media a {
    color: #fff; /* Adjust the icon color as needed */
    font-size: 24px; /* Adjust the icon size as needed */
    text-decoration: none;
}

.social-media a:hover {
    color: #ddd; /* Change color on hover if desired */
}

.d-flex-center {
    display: flex;
    justify-content: center;
}

.blur-effect {
    
    background: rgb(0 0 0 / 14%);
    backdrop-filter: blur(2px);
    padding: 30px 40px;
    border-radius: 50px;
    
}
@media (max-width: 768px) {
    #pages.main .page-title h1 {
        font-size: 30px; /* Adjust font size for mobile */
        padding: 0 20px; /* Reduce horizontal padding */
        top: 50%; /* Adjust vertical positioning if needed */
    }
}

