/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css?family=Playfair+Display:400,400i,700,700i,900|Poppins:200,300,300i,400,400i,500,600,700,800&display=swap");
body {
  background: #fff;
  color: #666666;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

a {
  color: #1dc8cd;
  transition: 0.5s;
}

a:hover, a:active, a:focus {
  color: #1dc9ce;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family:'Playfair Display', serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: linear-gradient(45deg, #1de099, #1dc8cd);
  color: #fff;
  padding: 2px 20px 8px 20px;
  font-size: 16px;
  border-radius: 4px 4px 0 0;
  right: 15px;
  bottom: 0;
  transition: none;
}

.back-to-top:focus {
  background: linear-gradient(45deg, #1de099, #1dc8cd);
  color: #fff;
  outline: none;
}

.back-to-top:hover {
  background: #1dc8cd;
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------/
#header {
  padding: 30px 0;
  height: 92px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
}

#header #logo {
  float: left;
}

#header #logo h1 {
  font-size: 36px;
  margin: -4px 0 0 0;
  padding: 0;
  line-height: 1;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header #logo h1 a, #header #logo h1 a:hover {
  color: #fff;
}

#header #logo img {
  padding: 0;
  margin: 0;
}

@media (max-width: 768px) {
  #header #logo h1 {
    font-size: 28px;
    margin-top: 0;
  }
  #header #logo img {
    max-height: 40px;
  }
}

#header.header-fixed {
  background: linear-gradient(45deg, #1de099, #1dc8cd);
  padding: 20px 0;
  height: 72px;
  transition: all 0.5s;
}*/

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
#intro {
  width: 100%;
  height: 100vh;
  background: linear-gradient(45deg, rgba(29, 224, 153, 0.8), rgba(29, 200, 205, 0.8)), url("../img/intro-bg.png") center top no-repeat;
  background-size: cover;
  position: relative;
}

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

#intro .intro-text {
  position: absolute;
  left: 0;
  top: 60px;
  right: 0;
  height: calc(50% - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

#intro h2 {
  margin: 30px 0 10px 0;
  padding: 0 15px;
  font-size: 48px;
  font-weight: 400;
  line-height: 56px;
  color: #fff;
}

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

#intro p {
  color: #fff;
  margin-bottom: 20px;
  padding: 0 15px;
  font-size: 24px;
}

@media (max-width: 768px) {
  #intro p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 20px;
  }
}

#intro .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#intro .btn-get-started:hover {
  color: #1dc8cd;
  background: #fff;
}

#intro .product-screens {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  text-align: center;
  width: 100%;
  height: 50%;
}

#intro .product-screens img {
  box-shadow: 0px -2px 19px 4px rgba(0, 0, 0, 0.29);
}

#intro .product-screens .product-screen-1 {
  position: absolute;
  z-index: 30;
  left: calc(50% + 54px);
  bottom: 0;
  top: 30px;
}

#intro .product-screens .product-screen-2 {
  position: absolute;
  z-index: 20;
  left: calc(50% - 154px);
  bottom: 0;
  top: 90px;
}

#intro .product-screens .product-screen-3 {
  position: absolute;
  z-index: 10;
  left: calc(50% - 374px);
  bottom: 0;
  top: 150px;
}

@media (max-width: 767px) {
  #intro .product-screens .product-screen-1 {
    position: static;
    padding-top: 30px;
  }
  #intro .product-screens .product-screen-2, #intro .product-screens .product-screen-3 {
    display: none;
  }
}

/*--------------------------------------------------------------
# Navigation Menu (Adapted for Bootstrap 5)
--------------------------------------------------------------*/

/* Nav Menu Essentials (Adjusted for .navbar-nav) */
/* Bootstrap 5's .navbar-nav handles display and list-style */
.navbar-nav, .navbar-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Desktop Dropdowns (Superfish-specific, if still used) */
/* Apply styling to the actual ul that Superfish generates for dropdowns */
.navbar-nav ul { /* This targets direct child ULs (dropdowns) of .navbar-nav */
    position: absolute;
    display: none; /* Superfish will toggle this */
    top: 100%;
    left: 0;
    z-index: 99; /* Ensure dropdown is above content */
    margin: 4px 0 0 0; /* Original margin from .nav-menu ul */
    padding: 10px; /* Original padding */
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25); /* Original shadow */
    background: #fff; /* Original background */
    min-width: 180px; /* Original min-width */
}

/* Nested dropdowns */
.navbar-nav ul ul {
    top: 0;
    left: 100%;
}

/* Individual dropdown list items */
.navbar-nav ul li {
    position: relative;
    white-space: nowrap;
    transition: 0.3s; /* Original transition */
}

/* Dropdown list item links */
.navbar-nav ul li a {
    padding: 10px; /* Original padding */
    color: #333; /* Original color */
    transition: 0.3s; /* Original transition */
    display: block;
    font-size: 13px; /* Original font-size */
    text-transform: none; /* Original text-transform */
    text-decoration: none; /* Ensure no underline */
}

.navbar-nav ul li:hover > a {
    color: #1dc8cd; /* Original hover color */
}

/* Nav Menu Arrows (Superfish-specific) */
.sf-arrows .sf-with-ul {
    padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
    content: "\f107"; /* Down arrow */
    position: absolute;
    right: 15px;
    font-family: 'Font Awesome 6 Free'; /* Use Font Awesome 6 font-family */
    font-weight: 900; /* Use 900 for solid icons */
    font-style: normal;
    text-decoration: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.sf-arrows ul .sf-with-ul:after {
    content: "\f105"; /* Right arrow for nested dropdowns */
}


/* Nav Menu Styling (Desktop Links) */
/* These styles apply to the main level navigation links */
.navbar-nav .nav-item {
    margin-left: 10px; /* Spacing between top-level items */
}

.navbar-nav .nav-link {
    padding: 0 8px 10px 8px; /* Original padding for main nav items */
    text-decoration: none;
    display: inline-block; /* Original display */
    color: #fff; /* White color for desktop links */
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 14px;
    outline: none;
    transition: 0.3s; /* Original transition */
}

/* Active and Hover state for desktop links */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { /* Use .active for BS5 */
    color: RGBA(255,255,255,0.5) !important; /* Your branding hover/active color */
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    padding: 30px 0; /* Original padding */
    height: 92px; /* Original height */
    position: fixed; /* Fixed to top, as per your JS logic */
    left: 0;
    top: 0;
    right: 0;
    transition: all 0.5s;
    z-index: 997; /* Ensure header is above content but below overlay if any */
    /* Add default background here if not using classes like bg-dark/bg-light */
    background: transparent; /* Or a default color */
}

/* Header when scrolled */
#header.header-fixed {
    background: linear-gradient(45deg, #1de099, #1dc8cd); /* Original fixed background */
    padding: 20px 0;
    height: 72px; /* Original fixed height */
    transition: all 0.5s;
}

/* Logo Styling */
.navbar-brand {
    /* The h1 will inherit fw-bold from .navbar-brand */
    font-size: 36px; /* Original font size for h1 */
    margin: -4px 0 0 0; /* Original margin */
    padding: 0;
    line-height: 1;
    display: inline-block;
    font-family: "Montserrat", sans-serif;
    font-weight: 300; /* Original font-weight */
    letter-spacing: 3px;
    text-transform: uppercase;
}

.navbar-brand a {
    color: #fff; /* White color for logo link */
    text-decoration: none; /* Remove underline */
    transition: 0.3s; /* Original transition */
}

.navbar-brand a:hover {
    color: #1dc8cd; /* Original logo hover color */
}

/* Adjust logo on smaller screens (match your previous media query) */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 28px;
        margin-top: 0;
    }
    /* If using image logo: */
    /* .navbar-brand img {
        max-height: 40px;
    } */
}

/* Navbar Toggler Button (Hamburger icon) */
/* Bootstrap 5's navbar-dark will make the icon light by default */
.navbar-toggler {
    border: none; /* Remove default border if desired */
    outline: none; /* Remove outline on focus */
    padding: .25rem .75rem; /* Default padding */
}
/* If you use a custom Font Awesome icon inside the toggler button, style it here: */
.navbar-toggler i {
    color: #fff; /* Example color if icon is Font Awesome and navbar is dark */
    font-size: 24px; /* Matches your original size */
}

/* Hide default toggler icon if using Font Awesome custom icon */
/* .navbar-toggler-icon {
    display: none;
} */


/* REMOVED: All CSS for #nav-menu-container, #mobile-nav-toggle, #mobile-nav, #mobile-body-overly
   and their associated media queries. Bootstrap 5 handles this. */

/* Final body styles for mobile nav behavior (from your original JS/CSS) */
body.mobile-nav-active {
    overflow: hidden; /* Prevent body scroll when mobile menu is open */
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------/
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

.sf-arrows .sf-with-ul {
  padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 15px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

#nav-menu-container {
  float: right;
  margin: 0;
}

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

.nav-menu a {
  padding: 0 8px 10px 8px;
  text-decoration: none;
  display: inline-block;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
  outline: none;
}

.nav-menu > li {
  margin-left: 10px;
}

.nav-menu ul {
  margin: 4px 0 0 0;
  padding: 10px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  background: #fff;
}

.nav-menu ul li {
  transition: 0.3s;
}

.nav-menu ul li a {
  padding: 10px;
  color: #333;
  transition: 0.3s;
  display: block;
  font-size: 13px;
  text-transform: none;
}

.nav-menu ul li:hover > a {
  color: #1dc8cd;
}

.nav-menu ul ul {
  margin: 0;
}

#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 20px 20px 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

#mobile-nav-toggle i {
  color: #fff;
}

@media (max-width: 768px) {
  #mobile-nav-toggle {
    display: inline;
  }
}

#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(52, 59, 64, 0.9);
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: #fff;
  font-size: 16px;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
}

#mobile-nav ul li a:hover {
  color: #fff;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: #1dc8cd;
}

#mobile-nav ul .menu-item-active {
  color: #1dc8cd;
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(52, 59, 64, 0.9);
  display: none;
}

body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
  color: #fff;
}
/* Marathon Social Media Icon
--------------------------------*/
ul.marathon-links{ 
  display: flex;
  position: absolute;
  list-style: none;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;}
ul.marathon-links li{
  position: relative;
  list-style: none;
  width: 60px;
  height: 60px;
  text-align: center;
  margin: 0 5px;
  border-radius: 50%;
  box-sizing: border-box;
  
}
ul.marathon-links li:before, ul.marathon-links li:after{
  content: '';
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
  background:#000;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0;
  transition: 1s;
  z-index: -1;
}
ul.marathon-links li:after{
  filter:blur(40px);
}
ul.marathon-links li:hover:before, ul.marathon-links li:hover:after{
  opacity: 1;
}
ul.marathon-links li a{
  position: absolute;
  top:5px;
  left:5px;
  right:5px;
  bottom: 5px;
  text-align:center;
  line-height: 50px;
  color: #fff;
  background:#000;
  font-size: 18px;
  border-radius: 50%;
}
ul.marathon-links li a .fa{
  text-shadow: 0 2px 5px rgba(0,0,0,.2);
  transition: 0.5s;
  transform: rotateY(0deg) scale(0.8);
  opacity: 0.5;
}
ul.marathon-links li a:hover .fa{ 
  opacity: 1;
  transform: scale(1.2);
}
ul.marathon-links li:nth-child(1) a, ul.marathon-links li:nth-child(1):before,ul.marathon-links li:nth-child(1):after{
   background: #3b5999;
}
ul.marathon-links li:nth-child(2) a,ul.marathon-links li:nth-child(2):before,ul.marathon-links li:nth-child(2):after{
   background: #55acee;
}
ul.marathon-links li:nth-child(3) a, ul.marathon-links li:nth-child(3):before,ul.marathon-links li:nth-child(3):after{
   background: #dd4b39;
}
ul.marathon-links li:nth-child(4) a,ul.marathon-links li:nth-child(4):before,ul.marathon-links li:nth-child(4):after{
   background: #0077B5;
}
ul.marathon-links li:nth-child(5) a,ul.marathon-links li:nth-child(5):before,ul.marathon-links li:nth-child(5):after{
   background: #e4405f;
}


/* Marathon Information Section
--------------------------------*/
.accordion-button{
  background: inherit !important;
}
.accordion-button:focus, input{
  box-shadow: 0 0 0 0.25rem rgba(13,110,253,0) !important;
}
.accordion-button:not(.collapsed) {
  color:#0dcaf0 !important;
}









/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
/* Sections Header
--------------------------------*/
.section-header .section-title, .section-title {
  font-size: 50px;
  font-family:'Playfair Display', serif;
  background-image: linear-gradient(to bottom left, #5B42F3,#000, #00DDEB);
  color: transparent !important;
  background-clip: text;
  -webkit-background-clip: text;
  text-align: center;
}

.section-header .section-description {
  text-align: center;
  padding-bottom: 40px;
  color: #777;
  font-style: italic;
}

.section-header .section-divider, .section-divider {
  display: block;
  width: 60px;
  height: 3px;
  background: #1dc8cd;
  background: linear-gradient(0deg, #1dc8cd 0%, #55fabe 100%);
  margin: 0 auto;
  margin-bottom: 20px;
}

/* Section with background
--------------------------------*/
.section-bg {
  background: #eff5f5;
}

/* About Us Section
--------------------------------*/
#about {
  padding: 60px 0;
  overflow: hidden;
}

#about .about-img {
  height: 510px;
  overflow: hidden;
}

#about .about-img img {
  margin-left: -15px;
  max-width: 100%;
}

@media (max-width: 768px) {
  #about .about-img {
    height: auto;
  }
  #about .about-img img {
    margin-left: 0;
    padding-bottom: 30px;
  }
}

#about .content .h2 {
  color: #333;
  font-weight: 300;
  font-size: 24px;
}

#about .content h3 {
  color: #777;
  font-weight: 300;
  font-size: 18px;
  line-height: 26px;
  font-style: italic;
}

#about .content p {
  line-height: 26px;
}

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

#about .content i {
  font-size: 20px;
  padding-right: 4px;
  color: #1dc8cd;
}

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

#about .content ul li {
  padding-bottom: 10px;
}

/* Product Featuress Section
--------------------------------*/
#features {
  background: #fff;
  padding: 60px 0 0 0;
  overflow: hidden;
}

#features .features-img {
  text-align: center;
  padding-top: 20px;
}

@media (min-width: 769px) {
  #features .features-img {
    padding-top: 120px;
    margin-top: -200px;
  }
}

#features .features-img img {
  max-width: 100%;
}

#features .box {
  margin-bottom: 15px;
  text-align: center;
}

#features .icon {
  margin-bottom: 10px;
}

#features .icon i {
  color: #666666;
  font-size: 40px;
  transition: 0.5s;
}

#features .icon i:before {
  background: #1dc8cd;
  background: linear-gradient(45deg, #1dc8cd 0%, #55fabe 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#features .title {
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 22px;
}

#features .title a {
  color: #111;
}

#features .description {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 10px;
}

#features .section-description {
  padding-bottom: 10px;
}

/* Product Advanced Featuress Section
--------------------------------*/
#advanced-features {
  overflow: hidden;
}

#advanced-features .features-row {
  padding: 60px 0 30px 0;
}

#advanced-features h2 {
  font-size: 26px;
  font-weight: 700;
  color: #000;
}

#advanced-features h3 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-style: italic;
  color: #999;
}

#advanced-features p {
  line-height: 24px;
  color: #777;
  margin-bottom: 30px;
}

#advanced-features i {
  color: #666666;
  font-size: 64px;
  transition: 0.5s;
  float: left;
  padding: 0 15px 0px 0;
  line-height: 1;
}

#advanced-features i:before {
  background: #1dc8cd;
  background: linear-gradient(45deg, #1dc8cd 0%, #55fabe 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#advanced-features .advanced-feature-img-right {
  max-width: 100%;
  float: right;
  padding: 0 0 30px 30px;
}

#advanced-features .advanced-feature-img-left {
  max-width: 100%;
  float: left;
  padding: 0 30px 30px 0;
}

@media (max-width: 768px) {
  #advanced-features .advanced-feature-img-right, #advanced-features .advanced-feature-img-left {
    max-width: 50%;
  }
}

@media (max-width: 767px) {
  #advanced-features .advanced-feature-img-right, #advanced-features .advanced-feature-img-left {
    max-width: 100%;
    float: none;
    padding: 0 0 30px 0;
  }
}

/* Call To Action Section
--------------------------------*/
#call-to-action {
  overflow: hidden;
  background: linear-gradient(rgba(29, 200, 205, 0.65), rgba(29, 205, 89, 0.2)), url(../img/call-to-action-bg.jpg) fixed center center;
  background-size: cover;
  padding: 80px 0;
}

#call-to-action .cta-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

#call-to-action .cta-text {
  color: #fff;
}

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

#call-to-action .cta-btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 25px;
  transition: background 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#call-to-action .cta-btn:hover {
  background: #1dc8cd;
  border: 2px solid #1dc8cd;
}

/* More Features Section
--------------------------------*/
#more-features {
  padding: 60px 0 60px 0;
  overflow: hidden;
}

#more-features .box {
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  background: #fff;
  transition: 0.4s;
}

#more-features .icon {
  float: left;
}

#more-features .icon i {
  color: #666666;
  font-size: 80px;
  transition: 0.5s;
  line-height: 0;
}

#more-features .icon i:before {
  background: #1dc8cd;
  background: linear-gradient(45deg, #1dc8cd 0%, #55fabe 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#more-features h4 {
  margin-left: 100px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#more-features h4 a {
  color: #111;
}

#more-features p {
  font-size: 14px;
  margin-left: 100px;
  margin-bottom: 0;
  line-height: 24px;
}

@media (max-width: 767px) {
  #more-features .box {
    margin-bottom: 20px;
  }
  #more-features .icon {
    float: none;
    text-align: center;
    padding-bottom: 15px;
  }
  #more-features h4, #more-features p {
    margin-left: 0;
    text-align: center;
  }
}

/* Clients Section
--------------------------------*/
#clients {
  padding: 30px 0;
  background: #fff;
  overflow: hidden;
}

#clients img {
  max-width: 100%;
  opacity: 0.5;
  transition: 0.3s;
  padding: 15px 0;
}

#clients img:hover {
  opacity: 1;
}

/* Our Team Section
--------------------------------*/
#team {
  padding: 60px 0;
  overflow: hidden;
}

#team .member {
  text-align: center;
  margin-bottom: 20px;
}

#team .member .pic {
  margin-bottom: 15px;
  overflow: hidden;
  height: 260px;
}

#team .member .pic img {
  max-width: 100%;
}

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

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

#team .member .social {
  margin-top: 15px;
}

#team .member .social a {
  color: #b3b3b3;
}

#team .member .social a:hover {
  color: #1dc8cd;
}

#team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}
@media (max-width: 966px) {
  #team .member .pic img {
    max-width: 70%;
  }
}


/* upcoming Section
--------------------------------*/


#upcoming .upcoming-item,.flexslider  {
  text-align: center;
  border: none;
  box-shadow: none;
}

#upcoming .upcoming-item .upcoming-img {
  height: 300px;
  width: auto;
  border-radius:10px;
  margin: 10px auto;
  opacity: 0.9;
}

#upcoming .upcoming-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #999;
}

#upcoming .upcoming-item h4 {
  font-size: 14px;
  color: #000;
  margin: 0 0 15px 0;
}


#upcoming ol.flex-control-paging a {
  background: rgba(0,0,0,0.5);
}

#upcoming ol.flex-control-nav li a.flex-active {
  background: rgba(0,0,0,1);
}
@media (max-width: 646px) {
  #upcoming .upcoming-item .upcoming-img {
    height: auto;
    width: 90vw;
  }
}

/* Gallery Section
--------------------------------*/
#gallery {
  background: #fff;
  padding: 60px 0 0 0;
  overflow: hidden;
}

#gallery .container-fluid {
  padding: 0px;
}

#gallery .gallery-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}

#gallery .gallery-item,#donate .gallery-item {
  overflow: hidden;
  position: relative;
  padding: 0;
  vertical-align: middle;
  text-align: center;
}

#gallery .gallery-item img,#donate .gallery-item img {
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  width: 100%;
}

#gallery .gallery-item:hover img,#donate .gallery-item:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

#gallery .gallery-item:hover .gallery-overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.7);
}

/* Contact Section
--------------------------------*/
#contact {
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 0;
  overflow: hidden;
}

#contact .contact-about h3 {
  font-size: 36px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1dc8cd;
}

#contact .contact-about p {
  font-size: 14px;
  line-height: 24px;
  font-family: "Montserrat", sans-serif;
  color: #888;
}

#contact .social-links {
  padding-bottom: 20px;
}

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

#contact .social-links a:hover {
  background: #1dc8cd;
  color: #fff;
}

#contact .info {
  color: #333333;
}

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

#contact .info p {
  padding: 0 0 10px 42px;
  line-height: 28px;
  font-size: 14px;
}

#contact .form #sendmessage {
  color: #1dc8cd;
  border: 1px solid #1dc8cd;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #errormessage {
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #sendmessage.show, #contact .form #errormessage.show, #contact .form .show {
  display: block;
}

#contact .form .validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

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

#contact .form button[type="submit"],#suport-child, .btn-theme{
  background: linear-gradient(45deg, #1de099, #1dc8cd);
  border: 0;
  border-radius: 20px;
  padding: 8px 30px;
  color: #fff;
}

#contact .form button[type="submit"]:hover {
  cursor: pointer;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #fff;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 0;
  color: #333;
  font-size: 14px;
}

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

#footer .footer-links a {
  color: #666;
  padding-left: 15px;
}

#footer .footer-links a:first-child {
  padding-left: 0;
}

#footer .footer-links a:hover {
  color: #1dc8cd;
}

.fonted-header{
    font-family:'Playfair Display', serif;
    background-image: linear-gradient(to bottom left, #5B42F3,#000, #00DDEB);
    color: transparent !important;
    background-clip: text;
    -webkit-background-clip: text;
}


/* Custom */
}
.cardContainer 
{
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  transition: all .3s ease;
  /*depth of the elements */
  -webkit-perspective: 800px;
  -moz-perspective: 800px;
  -o-perspective: 800px;
  perspective: 800px;
}

#donate .card 
{
  width: 99%;
  min-height: 300px !important;
  cursor: pointer;
  
  /*transition effects */
  -webkit-transition: -webkit-transform 0.6s;
  -moz-transition: -moz-transform 0.6s;
  -o-transition: -o-transform 0.6s;
  transition: transform 0.6s;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
#donate.card p{
  position:relative !important;
}

.card.flipped 
{
  -webkit-transform: rotateY( 180deg );
  -moz-transform: rotateY( 180deg );
  -o-transform: rotateY( 180deg );
  transform: rotateY( 180deg );
}
.card .front,
.card .back {
  display: block;
  min-height: 300px;
  width: 100%;
  color: white;
  text-align: center;
  position: relative !important;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  box-shadow: 3px 5px 20px 2px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 2px 5px rgba(0, 0, 0, 0.26);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 2px 5px rgba(0, 0, 0, 0.26);
}

.card .back {
  background: #fff;
  -webkit-transform: rotateY( 180deg );
  -moz-transform: rotateY( 180deg );
  -o-transform: rotateY( 180deg );
  transform: rotateY( 180deg );
}

/*Colors for front and back applied here*/
.cardContainer:first-child .card .front {background: linear-gradient(45deg, rgba(29, 224, 153, 1), rgba(29, 200, 205, 1));}
.cardContainer:first-child .card .back {background: linear-gradient(45deg, rgba(29, 224, 153, 1), rgba(29, 200, 205, 1));}
.cardContainer:nth-child(2) .card .front {background: linear-gradient(45deg, rgba(29, 224, 153, 0.8), rgba(29, 200, 205, 0.8));}
.cardContainer:nth-child(2) .card .back {background: linear-gradient(45deg, #1dc8cd, #1de099);}
.cardContainer:nth-child(3) .card .front {background: linear-gradient(45deg, rgba(29, 224, 153, 1), rgba(29, 200, 205, 1));}
.cardContainer:nth-child(3) .card .back {background: linear-gradient(45deg, rgba(29, 224, 153, 1), rgba(29, 200, 205, 1));}
.cardContainer:nth-child(4) .card .front {background: linear-gradient(45deg, rgba(29, 224, 153, 1), rgba(29, 200, 205, 1));}
.cardContainer:nth-child(4) .card .back {background: linear-gradient(45deg, rgba(29, 224, 153, 1), rgba(29, 200, 205, 1));}




a{text-decoration:none;}
    .animation {
  -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;
}

:root {
  --main-color-one: #F3941E;
  --main-color-two: #071C55;
  --heading-color: #071C55;
  --paragraph-color: #666;
  --heading-font: 'Playfair Display', serif;
  --body-font: 'Poppins', sans-serif;
  --body-font-size: 15px;
  --body-font-width: 400;
  --body-line-height: 32px; }
.single-intro {
  padding: 0 52px;
  margin-bottom: 30px; }
  .single-intro .thumb {
    margin-bottom: 10px; }
  .single-intro .intro-title {
    position: relative;
    margin-bottom: 2px;
    font-weight: 600; }
    .single-intro .intro-title .intro-count {
      font-family: 'Poppins', sans-serif;
      color: #CFD3DE;
      font-size: 70px;
      font-weight: 700; }
    .single-intro .intro-title .intro-cat {
      position: absolute;
      background: #ffffff;
      padding: 0 8px;
      margin-left: -12px;
      margin-top: 4px;
      font-family:'Playfair Display', serif;
      font-size:calc(1.275rem + .3vw);
      font-weight:600;
      font-weight: 500;
    line-height: 1.2;
    color:#212529;
    }
  .single-intro p {
    margin-bottom: 0;
    font-family:'Poppins', sans-serif;
      font-size:15px;
  }
  .single-intro.style-two {
    padding: 0 15px; }
    .single-intro.style-two .thumb {
      margin-bottom: 20px; }
    .single-intro.style-two .intro-title {
      position: relative;
      margin-bottom: 30px; }
      .single-intro.style-two .intro-title:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -10px;
        width: 50px;
        height: 2px;
        background: var(--main-color-one); }

.single-intro-two {
  border-left: 1px solid #EAEAEA;
  margin-bottom: 30px; }
  .single-intro-two.bl-0 {
    border-left: 0; }
  .single-intro-two .single-intro.style-two {
    margin-bottom: 0; }




/* Tours Page call-to-action 
--------------------------------*/
#tours-intro {
  overflow: hidden;
  /*background: linear-gradient(rgba(29, 200, 205, 0.65), rgba(29, 205, 89, 0.2)), url(../img/call-to-action-bg.jpg) fixed center center;*/
  background: linear-gradient(45deg, rgba(29, 224, 153, 0.8), rgba(29, 200, 205, 0.8)), url("../img/marathon-hero.png") center top no-repeat;
  background-size: cover;
  padding: 80px 0;
  height:75vh;
}

#tours-intro .cta-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

#tours-intro .cta-text {
  color: #fff;
}

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

#tours-intro .cta-btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 25px;
  transition: background 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#tours-intro .cta-btn:hover {
  background: #1dc8cd;
  border: 2px solid #1dc8cd;
}


.h2{
    font-family:'Playfair Display', serif;
    font-size: 35px;
    line-height: 1.2380952380952381;
}
h4.title, #holiday-plan h4{
    font-family:'Playfair Display', serif;
    font-size:2.5rem;
    line-height:1.238;
    color:#000;
}
body{font-family:'Poppins', sans-serif;}
#offers button,.btn-green{
  background: linear-gradient(45deg, #1de099, #1dc8cd);
  border: 0;
  border-radius: 20px;
  padding: 8px 30px;
  color: #fff;
  font-family:'Playfair Display', serif;
}
#offers button:hover,.btn-green{
  background: linear-gradient(45deg,#1dc8cd, #1de099);
  color:#FFF !important;
}
.card-body i.fa{color: #1de099;}
.text-green{color:#1de099;}
.price{
    font-family:"Montserrat", sans-serif;
    font-size:2.73rem;
    font-weight:700;
}



/****  Register  ***
section .section-title {
    text-align: center;
    color: #007b5e;
    margin-bottom: 50px;
    text-transform: uppercase;
}
#tabs{
  background: #007b5e;
    color: #eee;
}
#tabs h6.section-title{
    color: #eee;
}

#tabs .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #f3f3f3;
    background-color: transparent;
    border-color: transparent transparent #f3f3f3;
    border-bottom: 4px solid !important;
    font-size: 20px;
    font-weight: bold;
}
#tabs .nav-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    color: #eee;
    font-size: 20px;
}*/
.form-box {
  /*max-width: 90vw;*/
  margin: 5px; 
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}
.nav-tabs .nav-link {
  border: none;
  font-weight: 600;
  color: #072366;
}
.nav-tabs .nav-link.active {
  border-bottom: 5px solid #09cc7f/*#072366*/;
}
.tab-content {
  margin-top: 30px;
}


/*** ***/
/*Profile Card 5*/
.profile-card-5 {
   margin-top: 20px;
}

.profile-card-5 .btn {
   border-radius: 2px;
   text-transform: uppercase;
   font-size: 12px;
   padding: 7px 20px;
}

.profile-card-5 .card-img-block {
   width: 91%;
   margin: 0 auto;
   position: relative;
   top: -20px;
}

.profile-card-5 .card-img-block img {
   border-radius: 5px;
   box-shadow: 0 0 10px rgba(0, 0, 0, 0.63);
}

.profile-card-5 h5 {
   color: #4e5e30;
   font-weight: 600;
}

.profile-card-5 p {
   font-size: 14px;
   font-weight: 300;
}

.profile-card-5 .btn-primary {
   background-color: #4e5e30;
   border-color: #4e5e30;
}

/***** ****/
.btn-gradient {    
    width:40%;
    position: relative;
    display: inline-block;
    left:-20px;
    background: rgba(0, 0, 0, 0.15);
    border-top-right-radius: 60px;
    padding: 8px 24px 8px 16px;
    box-shadow: 2px 0px 0px 0px rgba(78, 72, 72, 0.4);
}

.btn-twitter{
    font-size:20px;
    padding:0px 20px;
    color: #fff;
    background-color: #c41f26;
    border:none;
    justify-content: center;
    align-items: center;
    display: flex;
    width:250px;
}

.radius-btn{
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.radius-style a{
    border-radius:30px;
}

.icon-btn{
    background:#007b5e;
    /*float:left;*/
}

.btn-text{
    width:60%;
}

/*label{
  color: #007b5e;
}
form .form-control{
  
}
.form-check label{
  color:#FFF;
}*/
#flush-headingTwo > button:hover,#flush-headingOne > button:hover,#flush-headingThree > button:hover{
  color:#007b5e !important;
}

.about-img:before {
    position: absolute;
    content: "";
    width: 255px;
    height: 217px;
    background-image: url("../img/dots.svg");
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-transform: translate(-40%, -40%);
    -ms-transform: translate(-40%, -40%);
    transform: translate(-40%, -40%);
    z-index: -1; 
}
.imgs-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[27];
    grid-template-columns: repeat(27, 1fr);
    position: relative; 
}
.imgs-grid:before {
    position: absolute;
    content: "";
    width: 255px;
    height: 217px;
    background-image: url("../images/dots-green.svg");
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-transform: translate(-40%, -40%);
    -ms-transform: translate(-40%, -40%);
    transform: translate(-40%, -40%);
    z-index: -1;
}
.imgs-grid .grid {
    position: relative; 
}
.imgs-grid .grid img {
    border-radius: 10px;
    max-width: 100%;
    box-shadow: 0px 0px 30px rgba(255, 255, 255,0.3);
}
.imgs-grid .grid.grid-1 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 18;
    grid-column: 1 / span 18;
    -ms-grid-row: 1;
    -ms-grid-row-span: 27;
    grid-row: 1 / span 27; 
}
.imgs-grid .grid.grid-2 {
    -ms-grid-column: 19;
    -ms-grid-column-span: 27;
    grid-column: 19 / span 27;
    -ms-grid-row: 1;
    -ms-grid-row-span: 5;
    grid-row: 1 / span 5;
    padding-left: 20px; 
}
.imgs-grid .grid.grid-3 {
    -ms-grid-column: 14;
    -ms-grid-column-span: 16;
    grid-column: 14 / span 16;
    -ms-grid-row: 6;
    -ms-grid-row-span: 27;
    grid-row: 6 / span 27;
    padding-top: 20px;
}
.imgs-grid .grid.grid-4 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 9;
    grid-column: 1 / span 9;

    -ms-grid-row: 28;
    -ms-grid-row-span: 5;
    grid-row: 28 / span 5;

    padding-top: 20px;
}


/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing-section {
      padding: 60px 0;
    }
    .card {
      border: none;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      transition: all 0.3s ease-in-out;
    }
    .card:hover {
      transform: translateY(-5px);
    }
    .price {
      font-size: 36px;
      font-weight: bold;
      color: #28a745;
    }
    .icon {
      font-size: 40px;
      margin-bottom: 15px;
      color: #0d6efd;
    }
    .btn-outline-success {
      border-radius: 30px;
    }
/* Custom CSS to re-enable numbering for a list-group ordered list */
.list-group.ol-with-numbers {
    counter-reset: li-counter; /* You can name this anything you want */
    list-style-type: none; /* We'll use custom counters below */
    padding-left: 0; /* Bootstrap often sets this to 0 */
}

.list-group.ol-with-numbers > li {
    position: relative;
    padding-left: 2.5rem; /* Adjust as needed to make space for the number + padding */
}

.list-group.ol-with-numbers > li::before {
    content: counter(li-counter); /* Display the counter */
    counter-increment: li-counter; /* Increment the counter for each list item */
    position: absolute;
    left: 0.8rem; /* Adjust horizontal position of the number */
    top: 0.5rem; /* Adjust vertical position of the number */
    font-weight: bold; /* Optional: make numbers bold */
    color: #0d6efd; /* Optional: Bootstrap primary color for numbers */
}

/* If you want the numbers to respect the 'start' attribute: */
.list-group.ol-with-numbers[start]::before {
    
}

/*Product Section*/
.product-section {
  padding: 1.5rem 0; 
}
.product-section .product-item {
    text-align: center;
    text-decoration: none;
    display: block;
    position: relative;
    padding-bottom: 50px;
    cursor: pointer; 
}
.product-section .product-item .product-thumbnail {
    margin-bottom: 30px;
    position: relative;
    top: 0;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease; 
}
.product-section .product-item h3 {
      font-weight: 600;
      font-size: 16px; }
.product-section .product-item strong {
      font-weight: 800 !important;
      font-size: 18px !important; }
.product-section .product-item h3, .product-section .product-item strong {
      color: #2f2f2f;
      text-decoration: none; }
    .product-section .product-item .icon-cross {
      position: absolute;
      width: 35px;
      height: 35px;
      display: inline-block;
      background: #2f2f2f;
      bottom: 15px;
      left: 50%;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      margin-bottom: -17.5px;
      border-radius: 50%;
      opacity: 0;
      visibility: hidden;
      -webkit-transition: .3s all ease;
      -o-transition: .3s all ease;
      transition: .3s all ease; }
      .product-section .product-item .icon-cross img {
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }
    .product-section .product-item:before {
      bottom: 0;
      left: 0;
      right: 0;
      position: absolute;
      content: "";
      background: #dce5e4;
      height: 0%;
      z-index: -1;
      border-radius: 10px;
      -webkit-transition: .3s all ease;
      -o-transition: .3s all ease;
      transition: .3s all ease; }
    .product-section .product-item:hover .product-thumbnail {
      top: -25px; }
    .product-section .product-item:hover .icon-cross {
      bottom: 0;
      opacity: 1;
      visibility: visible; }
    .product-section .product-item:hover:before {
      height: 70%; }