/**
* Template Name: Medicio
* Template URL: https://bootstrapmade.com/medicio-free-bootstrap-theme/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "DM Sans", sans-serif;
  --heading-font: "DM Sans", sans-serif;
  --nav-font: "DM Sans", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #555555; /* Color for headings, subheadings and title throughout the website */
  --accent-color: green; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #444444;  /* The default color of the main navmenu links */
  --nav-hover-color: #008000; /* 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: #008000; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

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

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

.accent-background {
  --background-color: #3fbbc0;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #65c9cd;
}

/* 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,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

h2 {
  color: #222222;
  font-family: var(--heading-font);
  font-size: 34px;
  font-weight: 600;
  line-height: 36px;
}

@media (max-width:991px){
h2 {
    font-size: 26px;
    line-height: 29px;
}
h4.section-subheading {
    font-size: 18px !important;
}
}

h4.section-subheading {
    font-size: 20px;
    color: #868681;
    margin-bottom: 22px;
}

.section-subheading i {
    color: green;
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

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

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.hero {
    margin-top: -100px;
}
.hero-subtitle {
    background-color: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(2px);
    display: inline-flex;
    border-radius: 100px;
    padding: 9px 20px;
    text-align: center;
    color: #f5f5f5;
}
.carousel-item h1 {
    font-size: 74px;
    color: #f5f5f5;
    font-weight: 800 !important;
    line-height: 70px;
    padding:20px 0px;
}
.carousel-item h1 span{
    color:#84b733;
}
.header {
  color: var(--default-color);
  background-color: transparent;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}
.header#header {
    background: linear-gradient(111deg, white 26%, green 22%);
}
.header .topbar {
 
  color: var(--contrast-color);
  height: 29px;
  padding: 0;
  transition: all 0.5s;
}
@media (max-width:991px){
    .topbar.d-flex.align-items-center {
    display: none !important;
}
}

.header .branding {
  min-height: 30px;
  padding: 10px 0;
  background-color:white;
}

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

.header .logo img {
    width: 16%;
    margin-right: 0px;
    position: absolute;
    left: 0px;
    top: -24px;
}
@media (max-width:991px){
 .header .branding {
    min-height: 70px;
    padding: 12px !important;
}
}
@media (max-width:767px){
  .header .logo img {
        width: 43% !important;
        top: -7px;
}
}

@media (max-width:990px) and (min-width:768px){
      .header .logo img {
        width: 27% !important;
        top: -11px;
}
}

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

.header .cta-btn,
.header .cta-btn:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 20px;
  margin: 0 5px 0 30px;
  border-radius: 4px;
  transition: 0.3s;
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

/*--------------------------------------------------------------
# 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: #000000;
    padding: 8px 19px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

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

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

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: green;
  }

  .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: 15px;
    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>ul {
    left:-106px!important;
  }
  .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: green;
    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: #000000;
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    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;
    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 !important;
  }
}


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.text-justify-custom{
    text-align: justify;
}
.footer {
  color: white;
  background-color: #f3f3f3;
  font-size: 14px;
  position: relative;
  padding-bottom: 30px;
}

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

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

.footer .footer-about .logo img {
   max-height: 130px;
    margin-right: 0px;
    background: white;
    padding: 0px;
    border-radius: 8px;
}

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

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 41px;
    border-radius: 50%;
    font-size: 16px;
    color: white;
    margin-right: 10px;
    background: green;
    transition: 0.3s;
}


.footer h4 {
    font-size: 20px;
    color: #222222;
    font-weight: bold;
    position: relative;
    padding-bottom: 6px;
    border-bottom: 2px solid green;
    display: inline-block;
    margin-bottom: 25px;
}

.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 0;
  display: flex;
  align-items: center;
}

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

.footer .footer-links ul a {
  color:#000000;
  display: inline-block;
  line-height: 1;
  font-size:16px;
}

.footer .footer-links ul a:hover {
  color: green;
}

.footer .footer-contact p {
  margin-bottom: 5px;
  color:#000000;
}

.footer .copyright {
  padding: 12px 0;
  background:green;
  border-radius: 12px;
  font-size: 16px;
}

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

.get-in-t i {
    font-size: 18px !important;
}
.get-in-t h6 {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color:#000000;
    margin: 0px;
}
.get-in-t p {
    color: #000000;
    font-size: 16px;
    font-weight: 300;
}
.get-in-t a {
    display: flex !important;
    align-items: center;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: 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 var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s 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);
  position: relative;
}

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

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

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 20px 0;
}

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

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

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
a.all-btn {
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 13px 20px;
    backdrop-filter: blur(9.2px);
    transition: 0.3s;
    margin: 10px;
    border: 1.8px solid green;
    border-radius: 100px;
    color: #222222;
    font-weight: 600 !important;
    overflow: hidden;
}
a.all-btn:hover {
    color:white;
}
.all-btn i {
    background-color: green;
    border-radius: 100px;
    padding: 8px 11px;
    margin-left: 7px;
    color: white;
    -webkit-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.all-btn:before {
    content: "";
    position: absolute;
    left: -110%;
    top: 50%;
    width: 200%;
    height: 200%;
    background: green;
    z-index: -1;
    transform: translateX(-50%) translateY(-50%);
    border-radius: 200px;
    -webkit-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.all-btn:hover:before {
    left: -10%;
    transform: translateX(0%) translateY(-50%);
}
.all-btn:hover i {
    background-color: white !important;
}
.all-btn:hover i {
    color: green !important;
}
/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 120px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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

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

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
@media (max-width:991px){
.carousel-item h1 {
    font-size: 50px;
    line-height: 47px;
}
.hero .container{
    margin-left: 40px !important;
    margin-right: 40px !important;

}
.hero .btn-get-started {
    margin-left: 0px !important;
}
.hero .carousel-item {
    align-items: center !important;
}
}
/**.branding {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(14.75px);
    border-radius: 0 0 16px 16px;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.1);**/
}
.carousel-item a i{
    background-color: #85b835;
    border-radius: 100px;
    padding: 8px 11px;
    margin-left: 7px;
    -webkit-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.hero {
  padding: 0;
}

.hero .carousel {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  position: relative;
}

@media (max-height: 500px),
(max-width: 580px) {
  .hero .carousel {
    min-height: 80vh;
  }
}

.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 {
  position: relative;
  text-align: left;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 50px;
  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 .container {
  margin-bottom: 0px !important;
  padding-bottom: 0px !important;
}

}

.hero .btn-get-started {
    font-size: 18px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 24px;
    backdrop-filter: blur(9.2px);
    transition: 0.3s;
    margin: 10px;
    border: 1.5px solid rgba(248, 247, 240, 0.6);
    border-radius: 100px;
    color: var(--contrast-color);
    background: rgba(255, 255, 255, 0.18);
    font-weight: 600 !important;
    overflow:hidden;
}
.hero .btn-get-started:hover {
    border-color:green;
}

.hero .btn-get-started:before {
    content: "";
    position: absolute;
    left: -110%;
    top: 50%;
    width: 200%;
    height: 200%;
    background: green;
    z-index: -1;
    transform: translateX(-50%) translateY(-50%);
    border-radius: 200px;
    -webkit-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.hero .btn-get-started:hover:before {
    left: -10%;
    transform: translateX(0%) translateY(-50%);
}

.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, #303030, #008000b0 90%);
  border-radius: 50px;
  color: var(--contrast-color);
  transition: 0.3s;
  width: 47px;
  height:47px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width:768px){
    .hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
    display:none !important;
}
}
.hero .carousel-control-prev,
.hero .carousel-control-next {
  transition: 0.3s;
  opacity: 1;
}

.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(--contrast-color);
}

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

.hero .carousel-indicators li.active {
  opacity: 1;
  background: var(--accent-color);
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services1 {
    padding-right: 45px;
}
.aboutimg-mobileview{
    display:none;
}
@media (max-width:991px){
.aboutimg-mobileview{
    display:block !important;
    padding-top: 20px;
}
.featured-services1{
    display:none !important;
}
h4.section-subheading {
    margin-bottom: 15px !important;
}
}
/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-sec {
    row-gap: 30px;
}
.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
  background-color:#f7f7f7;
}
.details-btn {
    padding-top: 10px;
}
.call-to-action .btn-get-started:hover{
    color:green !important;
}
.project-card {
    overflow: hidden;
    border-radius: 10px;
}
.project-card .thumb {
    position: relative;
    overflow: hidden;
}
.project-card .thumb > a {
    display: block;
    border-radius: 10px;
    overflow: hidden;
}
.project-card .thumb > a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 24, 25, 0) 38.69%, rgba(0, 24, 25, 0.6) 66.87%, #001819 100%);
    z-index: 2;
}
.project-card .thumb img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    transition: all 0.3s;
    height: 330px;
}

.project-card .thumb .content {
    position: absolute;
    bottom: 18px;
    left: 0;
    width: 90%;
    transform: translateX(5.5%);
    padding: 14px 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 8px;
    height: auto;
    overflow: hidden;
    transition: all 0.3s;
    z-index: 10;
}
.project-card .thumb .content h5 {
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
    color: white;
    margin-bottom: 0px;
}
.project-card .thumb .content p {
    color: white;
    margin-bottom: 0;
}
.project-card .thumb > a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 24, 25, 0) 38.69%, rgba(0, 24, 25, 0.6) 66.87%, #001819 100%);
    z-index: 2;
}
.project-card:hover .thumb a img {
    transform: scale(1.1);
}

.project-card:hover .thumb .content .details-btn {
    bottom: 20px;
}
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about h4{
    text-align:center;
}
.about h2{
    text-align:center;
}
.about ul{
    list-style-type:none;
    padding: 0px;
}
.about ul i {
    background-color: green;
    color: white;
    border-radius: 100px;
    padding: 2px 5px;
    font-size: 20px;
}
.about ul li {
    padding-bottom: 14px;
}
.about .position-relative {
    padding-right: 45px;
}
.about img {
    border-radius: 10px;
    width: 515px;
    height: 530px;
    object-fit: cover;
}
@media (max-width:991px){
    .about .position-relative {
    padding-right: 0px !important;
}
.about{
    padding-left:12px !important;
    padding-right:12px !important;
}
.about img {
    width: 100% !important;
    height: 100% !important;
}
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/

.about .col-lg-3 {
    margin-top: 0px !important;
    margin-bottom: 20px;
}
span.counter-value.counted {
    color: #222222;
    font-size: 45px;
    font-weight: 700;
}
.breadcurm-top {
    text-align: left;
    justify-content: end !important;
}
@media (max-width:991px){
    span.counter-value.counted {
    font-size: 45px !important;
}
.breadcurm-top {
    text-align: center;
    justify-content: end !important;
}
.featured-services-aboutp p {
    text-align: center;
}
.featured-services-aboutp h2 {
    margin-bottom: 0px;
}
}
span.counter-label {
    font-size: 19px;
}

.breadcurm-top{
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    padding-left: 40px;
    padding-right: 40px;
    min-height: 400px;
}

.breadcurm {
    display: none;
}

@media (max-width:991px){
.middle_banner h1 {
    padding: 0px!important;
    font-size: 26px !important;
}

.breadcurm-top {
    border-radius: 10px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    min-height: 300px !important;
}
.all-page-banner .container-fuild.px-5 {
    padding-left: 22px !important;
    padding-right: 22px !important;
}
.vission {
    margin-right:0px !important;
}
.mission2{
    margin-right: 0px !important;
}
.middle_banner h1 {
    text-align: left !important;
    margin: 0px;
    line-height: 1em;
}
.breadcurm {
    text-align: left !important;
    line-height: 1.3em;
}
}
.mission , .vission{
    border: 1px solid #03221b1a;
    border-radius: 20px;
    padding: 24px;
}
.vission {
    margin-right: 15px;
}
.mission2{
    margin-right: 15px;
}
.mission2 i {
    color: #8ec73d;
    font-size: 47px !important;
}
.vission h4 {
    color: white;
}
.vission p {
    color: white;
}
.mission-vission h4 {
    padding-top: 10px;
}


.counter-space {
    margin-left: 20px;
}
@media (max-width:768px){
   .counter-space {
    margin-left: 0px !important;
    margin-bottom:0px;
} 
}


.footer-fixed a {
    position: fixed;
    right: 15px;
    bottom: 74px;
    background-color: #008000;
    color: white;
    font-size: 23px;
    padding: 7px 12px;
    border-radius: 50px;
    z-index: 999;
}

.middle_banner {
    /*background-color:#00000087;*/
 
    border-radius: 8px;
    padding: 20px 0px;
}

.middle_banner h1{
 color: #ffffff !important;
 font-weight: 600 !important;
 font-size: 52px;
}
.breadcurm-top:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 24, 25, 0) 42.69%, rgba(0, 24, 25, 0.6) 75.87%, #001819 100%);
}


.thumb li {
    font-size: 15px;
}

.our-core-ser h5 {
    font-size: 18px !important;
    line-height: 20px !important;
    padding-bottom: 20px;
    text-align: center;
}
.project-card2 {
    padding: 24px;
    background-color: #f3f3f3;
    border-radius: 13px;
    min-height: 290px !important;
}
.project-card3 {
    padding: 24px;
    background-color: #0080001a;
    border-radius: 13px;
    min-height: 290px !important;
}
@media (max-width:991px){
    .middle_banner {
    width: 100% !important;
    margin-bottom: 20px;
    background: unset !important;
    padding: 0px !important;
}
.middle_banner {
    z-index: 999;
}
.breadcurm-top:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 24, 25, 0) 42.69%, rgba(0, 24, 25, 0.6) 75.87%, #001819 100%);
}
section#mission-vission {
    padding-left: 12px;
    padding-right: 12px;
}
.our-core-ser h5 {
    padding-bottom: 10px !important;
}
.project-card3 {
    min-height: 250px !important;
}
.project-card2 {
    min-height: 250px !important;
}
img.our-approch-img {
    width: 100% !important;
    height: 250px !important;
    margin-left: 0px !important;
}
.our-approch h2 {
    text-align: center;
    margin: 0px;
}
.our-commotments .container {
    padding:30px;
}
section.our-commotments {
    padding-left: 12px;
    padding-right: 12px;
}
.directores-msg h4.section-subheading {
    text-align: center !important;
}
.footer .footer-about .logo img {
    max-height: 100% !important;
    width: 55% !important;
    object-fit: cover !important;
    margin: 0px;
}
.ser-info {
    padding-right: 0px !important;
}
}

.approch-block img {
    background-color: #008000;
    border-radius: 50px;
    padding: 10px;
    width: 100px;
}
.approch-block {
    display: flex;
    gap: 20px;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ececec;
}
img.our-approch-img {
    width: 90%;
    height: 500px;
    object-fit: cover;
    margin-left: 50px;
    border-radius: 10px !important;
}
.our-commotments .container {
    background-color: #008000;
    border-radius: 10px;
    padding: 40px 30px;
}
.our-commotments p {
    font-size: 19px;
    line-height: 25px;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-100% - var(--gap)));
    }
}

.our-scrolling-ticker {
    background-color: #ffffff;
    padding:3px 0;
    border-top: 1px solid #ddddddad;
}
.scrolling-ticker-box {
    --gap: 20px;
    position: relative;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
    align-items: center;
}
.scrolling-content {
    flex-shrink: 0;
    display: flex;
    gap: var(--gap);
    min-width: 100%;
    animation: scroll 60s linear infinite;
}
.scrolling-content {
    will-change: transform;
}
.scrolling-content span {
    color: #222222;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
}
.scrolling-content img {
    padding-right: 5px;
    width: 30px;
    height: 30px;
}

.directores-msg p {
    text-align: justify;
}
.services-detilas p {
    text-align: justify;
}
.services-detilas h5 {
    color: #008000;
}
.services-detilas h6 {
    color: #222222;
    font-size: 19px;
    text-align: center;
}
.inside-ser-de ul {
    list-style: none;
    text-align: center;
    padding-left: 0px;
}
.inside-ser-de ul li {
    font-size: 15px;
    padding: 7px 0px;
    border-bottom: 1px solid #0909091c;
}
.sidebar {
    background-color: #f3f3f3;
    border-radius: 10px;
    padding: 24px;
    position: sticky;
    top: 10%;
}
.ser-info {
    padding-right: 60px;
}
.sidebar ul {
    list-style: none;
    text-align: center;
    padding: 0px;
}
.sidebar li {
    border: 1px solid #03221b1a;
    background-color: white;
    padding: 11px;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: 0.3s;
}
.sidebar li:hover{
    background-color: #008000 !important;
}
.sidebar li a { 
    color:#727272 !important;
}
.sidebar li:hover a { 
    color:#ffffff !important;
}
.sidebar h3 {
    color: #222222;
    text-align: center;
    font-size: 24px;
    padding-bottom: 20px;
}
.contact-info {
    border: 1px solid #e1dedeb5;
    border-radius: 10px;
    padding: 30px;
    min-height: 210px;
    background-color: white;
}
.contact-info i {
    background-color: #008000;
    color: white;
    border-radius: 66px;
    font-size: 25px;
    padding: 6px 11px;
}
.contact-info h3 {
    padding-top: 22px;
    color: #222222;
    font-size:22px;
}
.contact-info a {
    color: #000000;
    font-size: 17px;
}

.contact-frmsec img {
    border-radius: 25px;
    height: 460px;
    object-fit: cover;
}
.contact-img {
    padding-left: 50px;
}
section.contactus {
    background-color: #f7f7f7;
}
@media (max-width:991px){
    .contact-img {
    padding-left: 0px !important;
}
form#contactForm {
    padding-right:0px !important;
}
.contact-frmsec img {
    border-radius: 25px;
    height: 100% !important;
}
.services-detilas .row {
    width: 100%;
}
}

#contactForm input {
    width: 100%;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
}
label {
    font-size: 18px;
    color: #222222;
}
input:focus {
    outline: 0px;
}
textarea:focus {
    outline: 0px;
}
textarea {
    width: 100%;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
}
button.enquirynow {
    background-color: #008000;
    color: white;
    border: 2px solid #008000;
    border-radius: 100px;
    padding: 7px 20px;
    font-size: 18px;
    transition: 0.3s;
}
form#contactForm {
    padding-right: 60px;
}
button.enquirynow:hover {
    background-color: #ffffff;
    color: #008000;
}

.blog-ser-2 .approch-block img {
    padding: 5px;
    width: 45px;
}
.blog-ser-2 .approch-block {
    padding-top:0px;
    padding-bottom: 8px;
    gap:15px !important;
}
.blog-ser2-icon {
    display: flex !important;
    gap: 20px;
    align-items: center;
}
.all-info-blog h6 {
    font-size: 22px;
    color: #222222;
}
.all-info-blog .approch-block {
    align-items: start;
}
.left-box {
    background: #f7f7f7;
    padding: 24px;
    border-radius: 10px;
}
.featured-services-blog {
    padding-bottom: 0px;
}
@media (max-width:991px){
    .blog-ser2-icon {
    display: block!important;
}
.blog-ser-2 .approch-block {
    padding-top: 8px;
    padding-bottom: 8px;
}
.directores-msg-blog p {
    text-align: center;
}
.directores-msg-blog div {
    text-align: center;
}
p.text-center.ser-info-para {
    width: 100% !important;
}
}
.directores-msg-blog {
    padding-bottom: 14px !important;
}

p.text-center.ser-info-para {
    width: 67%;
}
.breadcurm {
    font-size: 20px;
    color:white !important;
}

.breadcurm a {
    color:white !important;
}

.approch-block i {
    background-color: #008000;
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 38px;
    color: white;
}
@media (max-width:460px){
    .approch-block i {
    padding: 5px 11px !important;
    font-size: 28px !important;
}
    
}

.blog-2 img {
    width: 61%;
    height: 400px;
    object-fit: cover; 
}

@media (max-width:991px){
    .blog-2 img {
    width: 100% !important;
    height: 220px !important;
}
}