body, html {
    
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow-x:hidden;
}
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Nunito",  sans-serif;
}


:root { 
  --background-color: #ffffff; 
  --default-color: #444444; 
  --heading-color: #111111; 
  --accent-color: #ff3300; 
  --surface-color: #ffffff; 
  --contrast-color: #ffffff; 
}

:root {
  --nav-color: #444444;  /* The default color of the main navmenu links */
  --nav-hover-color: #ff3300; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ff3300; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

.light-background {
  --background-color: #f7f7f7;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #ff3300;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #2ae149;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
 padding-top:3%;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 70px;
  margin-right: 5px;
}

.header .logo h1 {
  font-size: 26px;
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--heading-color);
}

.header .logo span {
  color: var(--accent-color);
  font-size: 26px;
  font-weight: 700;
}

.header .header-social-links {
  padding: 0 0 0 15px;
}

.header .header-social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding-left: 10px;
  display: inline-block;
  transition: 0.3s;
  font-size: 16px;
}

.header .header-social-links a:hover {
  color: var(--accent-color);
}

.header .header-social-links a i {
  line-height: 0px;
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

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

  .header .header-social-links {
    order: 2;
    padding: 0 15px 0 0;
  }

  .header .navmenu {
    order: 2;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 13px;
    font-size: 13px;
    font-family: var(--nav-font);
    text-transform:capitalize;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

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

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 13px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

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

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}
.main {
    height: 100% !important;
    min-height: 600px !important;
}
.form-group input[type=text], .form-group input[type=email], .form-group input[type=tel], .form-group input[type=number], .form-group input[type=password], .form-group input[type=date], .form-group input[type=date], .form-group textarea, .form-group select {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    resize: none !important;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.gform {
    background-color: var(--surface-color);
    padding: 20px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
   
}

    .gform input[type=text], .gform input[type=email], .gform input[type=tel], .gform input[type=number], .gform input[type=date], .gform input[type=password], .gform textarea, .gform select {
        display: block;
        width: 100%;
        padding: 0.375rem 0.75rem;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        color: var(--bs-body-color);
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        resize: none !important;
        background-color: var(--bs-body-bg);
        background-clip: padding-box;
        border: var(--bs-border-width) solid var(--bs-border-color);
        border-radius: var(--bs-border-radius);
        transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    }

    .gform input[type=file] {
        display: block;      
        padding: 0.375rem 0.75rem;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        color: var(--bs-body-color);
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        resize: none !important;
        background-color: var(--bs-body-bg);
        background-clip: padding-box;
        border: var(--bs-border-width) solid var(--bs-border-color);
        border-radius: var(--bs-border-radius);
        transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    }

.cform {
    position: relative;
}

    .cform input[type=text], .cform input[type=email], .cform input[type=tel], .cform input[type=number], .cform input[type=password], .cform input[type=date], .cform input[type=date], .cform textarea, .cform select {
        display: block;
        width: 100%;
        padding: 0.375rem 0.75rem;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        color: var(--bs-body-color);
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        resize: none !important;
        background-color: var(--bs-body-bg);
        background-clip: padding-box;
        border: var(--bs-border-width) solid var(--bs-border-color);
        border-radius: var(--bs-border-radius);
        transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    }

    .cform input[type=file] {
        display: block;       
        padding: 0.375rem 0.75rem;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        color: var(--bs-body-color);
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        resize: none !important;
        background-color: var(--bs-body-bg);
        background-clip: padding-box;
        border: var(--bs-border-width) solid var(--bs-border-color);
        border-radius: var(--bs-border-radius);
        transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    }


.gall-bk {
    background: rgba(0, 0, 0, 0.05);
    background-size: cover;
}

.video-bk {
    background: rgba(0, 0, 0, 0.05);
    background-size: cover;
    margin-top: 50px;
    margin-bottom: -60px;
    padding: 80px 20px 80px;
    width: 100%;
}

.video-gall {
    overflow: hidden;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    width: 100%;
    height: auto;
    min-height: 183px;
    object-fit: cover;
    object-position: top;
    background-repeat: no-repeat;
}

.btn {
    /*font-weight: 600;*/
    /* transition: .5s;*/
    -webkit-appearance: none;
    -moz-appearance: none;
    display: inline-block;
    padding: 6px 15px;
    margin: 8px 0px;
    border-collapse: collapse;
    font-weight: 500;
    color: #fff !important;
    border: none;
    border-radius: 8px;
    text-transform: capitalize;
    text-decoration: none;
    outline: none;
    line-height: 1.3em;
    width: auto;
    background: linear-gradient(to right, #339900 50%, #ff3300 50%) left;
    background-size: 200%;
    transition: .5s ease-out;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-hover-bg {
    transition: 0.5s;
}

    .btn-hover-bg:hover {
        /*background: var(--bs-secondary) !important;
        color: var(--bs-primary) !important;*/
        background-position: right;
        color: #fff !important;
    }

.btn-hover-color {
    transition: 0.5s;
}

    .btn-hover-color:hover {
        color: var(--bs-secondary) !important;
    }
/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: #060606 !important;
}

    .topbar a,
    .topbar a i {
        transition: 0.5s;
        color:#fff !important;
    }

        .topbar a:hover,
        .topbar a i:hover {
            color: var(--bs-secondary) !important;
        }


@media (max-width: 768px) {
    .topbar {
        display: none;
    }
}

.footer .footer-about .logof {
    height: 60px;
    padding: 5px;
    background: #fff;
    border-radius: 5px;
}
/*--------------------------------------------------------------
# clients-carousel
--------------------------------------------------------------*/
.clients-carousel .client-banner {
   /* padding: 10px;*/
    text-align: center;
}

    .clients-carousel .client-banner img {
         object-fit: contain;
        display: inline-block;
        width:100%;
    }
.clients {
    background: #c8c8c8 !important;
}
 
/*--------------------------------------------------------------
# team-carousel
--------------------------------------------------------------*/
.team-card {
    text-align: center;
    padding: 10px;
    background: rgb(255, 255, 255, 0.7) !important;
    box-shadow: 0px 4px 8px rgba(0,0,0, 0.8) !important;
    border-radius: 8px;
}

.teamimg {
    position: relative;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    max-height: 200px;
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: cover;
    overflow: hidden;
    object-position: top; /* crop only from bottom */
}

.owl-nav {
    position: absolute;
    top: 35%;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

    .owl-nav i {
        font-size: 30px;
        color: #333;
    }

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 60px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0px;
  display: flex;
  /*align-items: center;*/
}

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

    .footer a {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        display: inline-block;
        line-height: 1;
        transition: 0.5s;
    }
    .footer a>i {
        color: color-mix(in srgb, var(--default-color), transparent 30%) !important;
        display: inline-block;
        line-height: 1;
        transition: 0.5s;
    }
.footer a:hover {
  color: var(--accent-color);
  letter-spacing:1px;
}
    .footer a {
        color: color-mix(in srgb, var(--default-color), transparent 15%);
        display: inline-block;
        line-height: 1;
        padding:0px 10px;
    }
    .footer .footer-contact p {
        margin-bottom: 5px;
        color: color-mix(in srgb, var(--default-color), transparent 15%);
    }
    .footer .footer-contact p span, i {       
        color: color-mix(in srgb, var(--default-color), transparent 15%);
    }

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
    .footer .copyright a {
      
        color: color-mix(in srgb, var(--default-color), transparent 10%);
    }
        .footer .copyright a:hover {
            color: var(--accent-color);
            letter-spacing: 1px;
        }

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

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

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

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

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 40px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  padding-bottom: 15px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 100PX;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
}

.hero .carousel {
  width: 100%;
  min-height: calc(100vh - 75px);
  padding: 0;
  margin: 0;
  position: relative;
}

@media (max-height: 500px),
(max-width: 1200px) {
  .hero .carousel {
    min-height: calc(100vh - 48px);
  }
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero .container {
  background: color-mix(in srgb, var(--surface-color), transparent 60%);
  position: relative;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 50px;
  /*border-top: 4px solid var(--accent-color);*/
  border-radius:25px;
  z-index: 3;
}

@media (max-width: 1200px) {
  .hero .container {
    margin-left: 50px;
    margin-right: 50px;
  }
}

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

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

.hero .btn-get-started {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  transition: 0.5s;
  margin: 10px;
  border-radius: 4px;
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

.hero .btn-get-started:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 50px;
  color: var(--contrast-color);
  transition: 0.3s;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

.hero .carousel-control-prev:hover .carousel-control-next-icon,
.hero .carousel-control-prev:hover .carousel-control-prev-icon,
.hero .carousel-control-next:hover .carousel-control-next-icon,
.hero .carousel-control-next:hover .carousel-control-prev-icon {
  background: var(--accent-color);
  color: var(--default-color);
}

.hero .carousel-indicators li {
  cursor: pointer;
  background: var(--default-color);
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

.hero .carousel-indicators li.active {
  opacity: 1;
  background: var(--accent-color);
}
/*--------------------------------------------------------------
# text content Section
--------------------------------------------------------------*/
.txtcontent ul {
    list-style: none !important; /* hide default */
    padding-left: 4% !important;
}

    .txtcontent ul li {
        display: list-item !important;
        list-style-type: disc !important;
        padding: 5px 0 !important;
    }

#termsContent {
    display: none;
    background: #f9f9f9;
    padding: 10px;
    border: 1px solid #ccc;
    margin-top: 5px;
}
.termspointer {
    cursor: pointer;
    color: blue;
    text-decoration: underline;
}
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
    color: var(--default-color);
    /*background-color: #060606;*/
    padding: 40px 0;
    scroll-margin-top: 100px;
    overflow: clip;
}
/*.about p, h2, h3, h4, h5{
    color: #F5FCD2 !important;
}*/
@media (max-width: 1199px) {

    .about {
        scroll-margin-top: 66px;
    }
}

.about .inner-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin: 30px 20px;
}

@media (min-width: 991px) {
    .about .inner-title {
        max-width: 75%;
        margin: 0 0 50px 0;
    }
}

.about .our-story {
    padding: 40px;
    background: rgb(255, 255, 255, 0.8);
    border-radius: 75px 0px 75px !important;
}

@media (min-width: 991px) {
    .about .our-story {
        padding-right: 25%;
    }
}

.about .our-story h4 {
    text-transform: uppercase;
    font-size: 1.1rem;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.about .our-story h3 {
    font-size: 2.25rem;
    font-weight: 700;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .our-story p:last-child {
    margin-bottom: 0;
}

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

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

    .about ul i {
        font-size: 1.25rem;
        margin-right: 0.5rem;
        line-height: 1.2;
        color: var(--accent-color);
    }

.about .watch-video i {
    font-size: 2rem;
    transition: 0.3s;
    color: var(--accent-color);
}

.about .watch-video a {
    font-weight: 600;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-left: 8px;
    transition: 0.3s;
}

.about .watch-video:hover a {
    color: var(--accent-color);
}

.about .about-img {
    min-height: 400px;
    position: relative;
}

@media (min-width: 992px) {
    .about .about-img {
        position: absolute;
        top: 0;
        right: 0;
        min-height: 600px;
    }
}

.about .about-img img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    border-radius: 0px 75px 0px 75px !important;
}


/*** Blog Start ***/
.owl-carousel .owl-stage {
    display: flex;
}

.owl-carousel .owl-item {
    display: flex;
    height: 100%;
}

.blog {
    background: rgb(229, 229, 229, 0.5);
}
    .blog .blog-item {
        background: var(--bs-white);
        border-radius: 10px;
        box-shadow: 0 0 25px rgba(0, 0, 0, .2);
        transition: 0.5s;
        display: flex;
        flex-direction: column;
        height: 100%;
        width: 100%;
    }

        .blog .blog-item .txt-height {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
    .blog .blog-item {
        background: var(--bs-white);
        border-radius: 10px;
        box-shadow: 0 0 25px rgba(0, 0, 0, .2);
        transition: 0.5s;
    }
    
.blog .blog-item .h5 {
    color: rgba(0, 0, 0, 0.8) !important;
}

.blog .blog-item p {
    color: rgba(0, 0, 0, 0.7) !important;
}

        .blog .blog-item .txt-height a {
            transition: 0.5s;
            font-weight: 700;
            color: var(--bs-primary);
        }

        .blog .blog-item .txt-height:hover a:hover {
            color: rgba(0, 0, 0, 0.7) !important;
        }

.blog .blog-item .blog-img {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

    .blog .blog-item .blog-img img {
        transition: 0.5s;
        overflow: hidden;
        -webkit-transition-duration: 500ms;
        transition-duration: 500ms;
        max-height: 200px;
        width: 100% !important;
        aspect-ratio: 1 / 1 !important;
        object-fit: cover;
        object-position: top; /* crop only from bottom */
    }

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 208, 132, 0.1);
    opacity: 0;
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    opacity: 1;
}

.blog .blog-item .blog-img .blog-title {
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 5;
}

.blog-carousel .owl-stage-outer {
    margin-top: 15px;
}
.blog .owl-nav .owl-prev {
    justify-content: start;
}
.blog .owl-nav .owl-next {
    justify-content: end;
}
.blog .owl-nav .owl-prev {
    background: none;
    font-size: 26px;
    line-height: 0;
    background: color-mix(in srgb, var(--default-color), transparent 70%);
    border-radius: 50px;
    color: var(--contrast-color);
    transition: 0.3s;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .blog .owl-nav .owl-prev:hover {
        background: var(--bs-primary);
        color: var(--bs-primary);
    }

.blog .owl-nav .owl-next {
    background: none;
    font-size: 26px;
    line-height: 0;
    background: color-mix(in srgb, var(--default-color), transparent 70%);
    border-radius: 50px;
    color: var(--contrast-color);
    transition: 0.3s;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .blog .owl-nav .owl-next:hover {
        background: var(--bs-primary);
        color: var(--bs-primary);
    }
/*** Blog End ***/
/*** Service Start ***/
/*.service {
    background: rgb(229, 229, 229, 0.7);
}*/

.service .service-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-color: var(--surface-color);
    box-shadow: inset 0 0 45px rgba(0, 0, 0, .2);
    transition: 0.5s;
}

.service .service-item .txt-height {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
        .service .service-item .txt-height a {
            transition: 0.5s;
            font-weight: 700;
            color: var(--bs-primary);
        }

        .service .service-item .txt-height a:hover {
            color: rgba(0, 0, 0, 0.7) !important;
        }
        .service .service-item:hover {
            box-shadow: 0 0 45px rgba(0, 0, 0, .2);
        }

        .service .service-item .service-img {
            position: relative;
            overflow: hidden;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
            transition: 0.5s;
        }

            .service .service-item .service-img img {
                transition: 0.5s;
                overflow: hidden;
                -webkit-transition-duration: 500ms;
                transition-duration: 500ms;
                max-height: 200px;
                width: 100% !important;
                aspect-ratio: 1 / 1 !important;
                object-fit: cover;
                object-position: top; /* crop only from bottom */
            }

        .service .service-item:hover .service-img img {
            transform: scale(1.2);
        }
/*** Service End ***/

/*** Donation Start ***/
.donation {
    background: rgb(229, 229, 229, 0.5);
}
.donation .donation-item {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .donation .donation-item .txt-height {
        min-height: 125px !important;
    }

    .donation .donation-item::after {
        width: 100%;
        height: 100%;
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        display: flex;
        background: rgba(0, 0, 0, 0.5);
        z-index: 2;
    }

    .donation .donation-item .donation-content h5 {
        color: rgba(255, 255, 255, 0.7) !important;
    }

    .donation .donation-item .donation-content {
        position: absolute;
        width: 95%;
        height: 95%;
        padding: 20px;
        justify-content: end;
        bottom: -60px;
        left: 0;
        transition: 0.5s;
        z-index: 3;
        color: rgba(255, 255, 255, 0.7) !important;
    }

    .donation .donation-item:hover .donation-content {
        position: absolute;
        width: 100%;
        height: 100%;
        padding: 20px;
        justify-content: end;
        bottom: 0px;
        left: 0;
        background: rgba(0, 0, 0, 0.5);
        color: #fff !important;
    }

    .donation .donation-item .donation-btn {
        visibility: hidden;
        opacity: 0;
        transition: 0.5s;
    }

    .donation .donation-item:hover .donation-btn {
        visibility: visible;
        opacity: 1;
    }

    .donation .donation-item img {
        transition: 0.5s;
        overflow: hidden;
        -webkit-transition-duration: 500ms;
        transition-duration: 500ms;        
        width: 100% !important;
        aspect-ratio: 1 / 1 !important;
        object-fit: cover;
        object-position: top; /* crop only from bottom */
    }
.donation-carousel .owl-stage-outer {
    margin-top: 15px;
}
.donation .owl-nav .owl-prev {
    justify-content: start;
}

.donation .owl-nav .owl-next {
    justify-content: end;
}

.donation .owl-nav .owl-prev {
    background: none;
    font-size: 26px;
    line-height: 0;
    background: color-mix(in srgb, var(--default-color), transparent 70%);
    border-radius: 50px;
    color: var(--contrast-color);
    transition: 0.3s;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .donation .owl-nav .owl-prev:hover {
        background: var(--bs-primary);
        color: var(--bs-primary);
    }

.donation .owl-nav .owl-next {
    background: none;
    font-size: 26px;
    line-height: 0;
    background: color-mix(in srgb, var(--default-color), transparent 70%);
    border-radius: 50px;
    color: var(--contrast-color);
    transition: 0.3s;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .donation .owl-nav .owl-next:hover {
        background: var(--bs-primary);
        color: var(--bs-primary);
    }
/*** Donation End ***/
/*** causes Start ***/
.causes {
   /* background: rgba(249, 195, 123, .1);*/
}

.causesbk {
    background: var(--bs-white);
    border-color: rgba(0, 0, 0, .2);
    border-style: dotted;
    border-top: 0;
    padding: 0px;
}

.causes .causes-item {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;    
}

    .causes .causes-item .txt-height {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .causes .causes-item .causes-img {
        position: relative;
        transition: 0.5s;
    }

        .causes .causes-item .causes-img .causes-link {
            position: absolute;
            width: 100%;
            height: 100%;
            bottom: 0 !important;
            left: 0;
            display: flex;
            justify-content: space-between;
            align-items: end;
            background: rgba(0, 0, 0, .2);
            transition: 0.5s;
        }

        .causes .causes-item .causes-img:hover .causes-link {
            background: rgba(0, 0, 0, .6);
        }

        .causes .causes-item .causes-img img {
            transition: 0.5s;
            overflow: hidden;
            -webkit-transition-duration: 500ms;
            transition-duration: 500ms;
            max-height: 200px;
            width: 100% !important;
            aspect-ratio: 1 / 1 !important;
            object-fit: cover;
            object-position: top; /* crop only from bottom */
        }

        .causes .causes-item .causes-img:hover img {
            transform: scalex(-1);
        }

        .causes .causes-item .causes-img .causes-dination {
            position: absolute;
            top: 0;
            right: 0;
        }

            .causes .causes-item .causes-img .causes-dination a {
                font-size: 14px;
            }

    .causes .causes-item .txt-height a {
        transition: 0.5s;
        font-weight: 700;
        color: var(--bs-primary);
    }

        .causes .causes-item .txt-height a:hover {
            color: rgba(0, 0, 0, 0.7) !important;
        }
    .causes .causes-item .progress {
        height: 10px;
        overflow: visible;
    }

        .causes .causes-item .progress .progress-bar {
            position: relative;
            width: 0;
            overflow: visible;
            background: var(--bs-primary);
            transition: 2s;
        }

            .causes .causes-item .progress .progress-bar span {
                position: absolute;
                top: 50%;
                right: -1px;
                transform: translateY(-50%);
                padding: 1px 5px;
                font-size: 12px;
                color: var(--bs-white);
                background: var(--bs-dark);
                z-index: 1;
            }
/*** causes End ***/
.video {
    background: rgb(229, 229, 229, 0.8);
}
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

iframe {
    width: 100%;
    height: 200px;
}

.paging {
    margin: 20px 0;
    text-align: center;
}
/*** Events Start ***/
.teamimg {
    transition: 0.5s;
    overflow: hidden;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: cover;
    object-position: top; /* crop only from bottom */
}

.event {
    background: rgb(229, 229, 229, 0.5) !important;
}

    .event .event-carousel.owl-carousel {
        position: relative;
    }

    .event .owl-nav .owl-prev {
        justify-content: start;
    }

    .event .owl-nav .owl-next {
        justify-content: end;
    }

    .event .owl-nav .owl-prev {
        background: none;
        font-size: 26px;
        line-height: 0;
        background: color-mix(in srgb, var(--default-color), transparent 70%);
        border-radius: 50px;
        color: var(--contrast-color);
        transition: 0.3s;
        width: 54px;
        height: 54px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .event .owl-nav .owl-prev:hover {
            background: var(--bs-primary);
            color: var(--bs-primary);
        }

    .event .owl-nav .owl-next {
        background: none;
        font-size: 26px;
        line-height: 0;
        background: color-mix(in srgb, var(--default-color), transparent 70%);
        border-radius: 50px;
        color: var(--contrast-color);
        transition: 0.3s;
        width: 54px;
        height: 54px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .event .owl-nav .owl-next:hover {
            background: var(--bs-primary);
            color: var(--bs-primary);
        }

    .event .event-carousel .event-item {
        border-style: dotted;
        border-top: 0;
        border-color: #d8d8d8;
        background: #fff !important;
    }

        .event .event-carousel .event-item .event-content {
            background: #fff;
            min-height: 100px;
        }
        .event .event-carousel .event-item img {
            transition: 0.5s;
            overflow: hidden;
            -webkit-transition-duration: 500ms;
            transition-duration: 500ms;
            min-height: 175px;
            width: 100% !important;
            aspect-ratio: 1 / 1 !important;
            object-fit: cover;
            object-position: top; /* crop only from bottom */
        }
/*** Events End ***/
/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
    background-color: var(--surface-color);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border-radius: 5px;
    width: 100%;
    padding: 10px;
}

    .team .team-member .member-img {
        position: relative;
        overflow: hidden;
    }

    .team .team-member .social {
        position: absolute;
        left: 0;
        bottom: 0;
        right: 0;
        height: 40px;
        opacity: 0;
        transition: ease-in-out 0.3s;
        background: color-mix(in srgb, var(--background-color), transparent 20%);
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .team .team-member .social a {
            transition: color 0.3s;
            color: var(--heading-color);
            margin: 0 10px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

            .team .team-member .social a i {
                line-height: 0;
            }

            .team .team-member .social a:hover {
                color: var(--accent-color);
            }

        .team .team-member .social i {
            font-size: 18px;
            margin: 0 2px;
        }

    .team .team-member .member-info {
        padding: 25px 15px;
        text-align: center;
    }

        .team .team-member .member-info h4 {
            font-weight: 700;
            margin-bottom: 5px;
            font-size: 25px;
            color: color-mix(in srgb, var(--heading-color));
        }

        .team .team-member .member-info span {
            display: block;
            font-size: 18px;
            font-weight: 400;
            color: color-mix(in srgb, var(--default-color), transparent 10%);
        }

        .team .team-member .member-info p {
            font-style: italic;
            font-size: 14px;
            line-height: 26px;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
        }

    .team .team-member:hover .social {
        opacity: 1;
    }

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

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 3px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}
.portfolio-filters li {
    display: inline-block;
    padding: 8px 15px;
    margin: 5px;
    background: #f1f1f1;
    cursor: pointer;
    border-radius: 5px;
}

    .portfolio-filters li.active {
        background: #007bff;
        color: #fff;
    }
.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

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

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

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

.portfolio .portfolio-item {
    position: relative;
    overflow: hidden;
   
}
    .portfolio .portfolio-item img {
        width: 100% !important;
        aspect-ratio: 1 / 1 !important;
        object-fit: cover;
        overflow: hidden;
        background-color: var(--surface-color);
       /* box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.8);*/
    }
.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--surface-color), transparent 10%);
  padding: 15px;
}

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

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

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

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



/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  position: relative;
  height: 100%;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
    background-color: color-mix(in srgb, var(--default-color), transparent 98%);
    padding: 10px 30px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    margin-bottom: 20px;
}
.service-details .services-img {
    margin-bottom: 20px;
    overflow: hidden;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    width: 100%;    
    object-fit: cover;
    object-position: left right;
    background-repeat: no-repeat;
}

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

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

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

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

    .service-details ul li {
        padding: 5px 0px 5px !important;
        line-height:2;
        display: flex;
        align-items: center;
        border-bottom: 1px dotted color-mix(in srgb, var(--default-color), transparent 80%);
    }

    .service-details ul i {
        font-size: 20px;
        margin-right: 5px;
        color: var(--accent-color);
        font-weight: 700;
    }
.service-details .services-list a {
    display: block;
    color: color-mix(in srgb, var(--default-color), transparent 10%);
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 15px;
    font-weight:600;
}

.service-details .services-list ul li a.active {
    color: var(--heading-color);
    font-weight: 700;
    border-color: var(--accent-color);
}

.service-details .services-list ul li a:hover {
    color: var(--accent-color);
    letter-spacing: 1px;
}
/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .swiper-wrapper {
  height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
    display: none;
  }
}

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

.portfolio-details .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

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

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

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

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

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

.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding-top: 0;
}

.contact .info {
  background-color: var(--surface-color);
  padding: 40px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contact .info h3 {
  font-weight: 600;
  font-size: 24px;
}

.contact .info p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 30px;
  font-size: 15px;
}

.contact .info-item+.info-item {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact .info-item i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
  margin-right: 20px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

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

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

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

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

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

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email] {
  height: 48px;
  padding: 10px 15px;
}

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

.contact .php-email-form button[type=submit] {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 13px 50px;
  transition: 0.4s;
  border-radius: 4px;
}

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

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/* Simple popup styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 400px;
    border-radius: 10px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.modal input, .modal label {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.modal button {
    padding: 10px 20px;
  /*  background-color: #007bff;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 5px;*/
}

.fundus
{
    min-width:125px !important;
}


