/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Poppins", sans-serif;
  color: #585a61;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

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

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

.back-to-top:hover {
  background: #4189bd;
  color: #fff;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 15px 0;
  background: rgba(255, 255, 255, 0.95);
}

#header.header-transparent {
  background: transparent;
}

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

#header .logo h1 {
  font-size: 30px;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
}

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

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

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
#header .logo{
  transition: transform .4s;
}

#header .logo:hover{
  transform: scale(1.1);
}

.navbar {
  padding: 0;
}

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

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  color: #47536e;
  white-space: nowrap;
  transition: 0.3s;
}

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

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #126cac;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
}

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

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #126cac;
}

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

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

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

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}


/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #47536e;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(51, 60, 79, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 6px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #47536e;
}

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

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

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

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

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

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #5777ba;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 140px 0 100px 0;
}

#hero .hero-bg{
  position: absolute;
  top: 0;
  z-index: -10;
  height: 100%;
  width: 100%;
  clip-path: polygon(40% 0, 100% 0%, 100% 100%, 55% 100%);
  background: #d6eaf6;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  line-height: 56px;
  text-transform: uppercase;
  color: #126cac;
  font-family: "Poppins", sans-serif;
}

#hero h1 span{
  font-size: 71px;
  font-weight: bolder;
  color: #a2bb21;
}

#hero .hero-img img {
  width: 80%;
}

@media (max-width: 991px) {
  #hero {
    text-align: center;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 31px;
  }

  #hero h1 span{
    font-size: 41px;
    font-weight: bolder;
  }


  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 991px){
  #hero{
    padding-top: 120px;
  }

  #hero .hero-bg{
    display: none;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 31px;
  }

  #hero h1 span{
    font-size: 41px;
    font-weight: bolder;
  }

  #hero .hero-img img {
    width: 60%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}

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

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

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

.section-title h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 8px;
  color: #5777ba;
  font-family: "Poppins", sans-serif;
  position: relative;
}

.section-title h2::after{
  content: '';
  position: absolute;
  display: block;
  background-color: #5777ba;
  width: 22%;
  height: 3px;
  bottom: 0;
}

.section-title p {
  font-size: 20px;
  margin: 25px;
}

@media (max-width: 375px){
  .section-title h2{
    font-size: 35px;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about{
  background: #2a6ea2;
  border-radius: 200px 0px;
}

.about .section-title h2{
  text-align: center;
  color: #a2bb21;
}

.about .section-title h2::after{
  background-color: #a2bb21;
}

.about .section-title p,
.about .section-title ul{
  color: #f2f5fa;
  font-size: 20px;
  margin: 25px;
}

.about .section-title ul {
  list-style: none;
  padding-left: 40px;
}

.about .section-title ul li {
  padding-bottom: 8px;
}

.about .section-title ul i {
  font-size: 28px;
  padding-right: 2px;
  color: #a2bb21;
  line-height: 0;
}

@media (max-width: 768px) {
  .about{
    border-radius: 100px 0px;
  }

  .about .section-title ul {
    padding-left: 20px;
  }
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
#services{
  padding-bottom: 0;
}

.services .section-title h2{
  text-align: center;
}

.services .content {
  padding: 10px 0;
}

.services .content .icon-box{
  margin-top: 20px;
  margin-inline: 12px;
  border-radius: 10px;
  padding: 20px 15px;
  height: 250px;
  -webkit-box-shadow: 0px 9px 15px -4px rgba(0,0,0,0.21);
  -moz-box-shadow: 0px 9px 15px -4px rgba(0,0,0,0.21);
  box-shadow: 0px 9px 15px -4px rgba(0,0,0,0.21);

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.info{
  z-index: 1;
}

.services .content .icon-box .info h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 10px;
  text-align: center;
  color: #fff;
  text-shadow: 0px 1px 5px rgba(0, 0, 0, 0.7);
  transition: color .3s;
}

.services .content .icon-box .info h3:hover{
  color: #abbbdd;
}

.services .content .icon-box .info a img{
  width: 50px;
}

.services .content .icon-box i {
  font-size: 48px;
  float: left;
  color: #5777ba;
}

.services .image img{
  border-radius: 10px;
  margin: 50px 0;
}

@media (max-width: 1199px) {
  .services .image img {
    max-width: 60%;
  }
}

@media (max-width: 991px) {
  .services .image {
    text-align: center;
  }

  .services .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .services .content{
    margin-inline: 15px;
  }

  .services .image img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Service
--------------------------------------------------------------*/
#service{
  padding-top: 0px;
  padding-bottom: 10px;
  margin-inline: 70px;
}

.req{
  margin-bottom: 60px;
}

#service .image img{
  border-radius: 10px;
  margin: 0;
  max-height: 460px;
}

#service .section-title{
  padding-top: 80px;
  padding-bottom: 40px;
  text-align: center;
}

#service .info p {
  font-size: 20px;
  margin: 25px;
  padding-bottom: 20px;
}

#service .info ul{
  font-size: 20px;
  margin: 25px;
}

#service .info ul {
  list-style: none;
  padding-left: 0;
}

#service .info ul li {
  padding-bottom: 8px;
  
}

#service .info ul i {
  font-size: 28px;
  padding-right: 2px;
  color: #5777ba;
  line-height: 0px;
}

#service .info strong{
  color: #5777ba;
}


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

#service .accordion-list li+li {
  margin-top: 15px;
}

#service .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0px 9px 15px -4px rgba(0,0,0,0.1);
  -moz-box-shadow: 0px 9px 15px -4px rgba(0,0,0,0.1);
  box-shadow: 0px 9px 15px -4px rgba(0,0,0,0.1);
}

#service .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  cursor: pointer;
  color: #5777ba;
}

#service .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

#service .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

#service .accordion-list .icon-show {
  display: none;
}

#service .accordion-list a.collapsed {
  color: #343a40;
}

#service .accordion-list a.collapsed:hover {
  color: #5777ba;
}

#service .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

#service .accordion-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1999px) {
  #service{
    margin-inline: 20px;
  }
}

@media (max-width: 1970px) {
  #service .image img{
    max-width: 100%;
  }
}

@media (max-width: 1024px) {

  #service .content,
  #service .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 991px) {
  #service .section-title{
    padding-bottom: 18px;
  }

  #service .image img{
    min-height: 400px;
  }

  #service .content {
    padding-top: 30px;
  }

  #service .accordion-list {
    padding-bottom: 30px;
  }
}

@media (max-width: 575px) {
  #service .image img{
    min-height: 200px;
  }

  #service{
    margin-inline: 0px;
  }
}

.nom .section-title img{
  width: 80px;
}

/*--------------------------------------------------------------
# Accreditation
--------------------------------------------------------------*/
#accreditation {
  padding: 60px 0;
  box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.25);
}

#accreditation .section-title{
  padding-bottom: 60px;
}

#accreditation .section-title h2{
  text-align: center;
}

#accreditation .acc-wrap {
  border-left: 1px solid #d8d8d8;
  margin-bottom: 30px;
}

#accreditation .acc-logo {
  padding: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #d8d8d8;
  overflow: hidden;
  height: auto;
}

#accreditation .repse img{
  width: 200px;
}

@media (max-width: 1199px) {
  #accreditation .repse img{
    width: 145px;
    margin: 5px;
  }
}

#accreditation img {
  height: 160px;
  aspect-ratio: 3/2;
  object-fit: contain;
  transition: all 0.4s ease-in-out;
}


#accreditation .acc-logo:hover img {
  transform: scale(1.03);
}


@media (max-width: 991px){
  #accreditation .acc-wrap {
    border: none;
    margin-bottom: 30px;
  }

  #accreditation .acc-logo {
    padding: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: none;
    overflow: hidden;
    height: 180px;
  }
  
}

@media (max-width: 767px){
  #accreditation img {
    height: 140px;
    aspect-ratio: 3/2;
    object-fit: contain;
  }
}



/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  overflow: hidden;
  min-height: 550px;
}

.clients .section-title{
  margin-top: 40px;
}

.clients .clients-slider{
  margin-top: 60px;
}

.clients .swiper-slide {
  transition: 0.3s;
}

.clients .swiper-slide img{
  width: 90%;
  aspect-ratio: 3/2;
  object-fit: contain;
}

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

.clients .swiper-slide-active {
  text-align: center;
}

@media (min-width: 2303px) {
  .clients .section-title{
    margin-top: 0px;
  }
}


@media (min-width: 992px) {
  .clients .swiper-wrapper {
    padding: 40px 0;
  }

  .clients .swiper-slide-active {
    padding: 4px;
    background: #fff;
    z-index: 1;
    transform: scale(1.2);
    transform: translateY(-40px);
    margin-top: 10px;
    border-radius: 25px;
  }
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
#contact{
  background: #2a6ea2;
}

.contact .section-title h2{
  color: #a2bb21;
}

.contact .section-title h2::after{
  background-color: #a2bb21;
}

.contact .section-title p{
  font-size: 25px;
  line-height: 25px;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
}

.contact .section-title p span{
  font-weight: bolder;
  color: #a2bb21;
}

.contact .info {
  padding: 20px 40px;
  color: #fff;
  text-align: center;
}

.contact .info i {
  font-size: 48px;
  color: #a2bb21;
  margin-bottom: 15px;
}

.contact .info .facebook{
  font-size: 48px;
  color: #a2bb21;
  margin-bottom: 15px;
  border-radius: 50%;
  transition: all .5s;
}

.contact .info .facebook:hover{
  background: #a2bb21;
  color: #2a6ea2;
}

.contact .info h4 {
  padding: 0;
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.contact .info p {
  text-transform: uppercase;
  font-size: 15px;
  margin-bottom: 5px;
}

.contact .info p a{
  color: #fff;
  transition: color .4s;
}

.contact .info p a:hover{
  color: #a2bb21;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  padding: 0 0 30px 0;
  color: #47536e;
  font-size: 14px;
  background: #eff2f8;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #f9fafc;
  text-align: center;
}

#footer .footer-top .footer-logo {
  margin-bottom: 30px;
}

#footer .footer-top .footer-logo .logo{
  width: 70px;
}

#footer .footer-top .footer-logo p{
  padding-top: 40px;
}


#footer .footer-top .footer-logo .hidrolab{
  width: 120px;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #47536e;
  position: relative;
  padding-bottom: 12px;
}

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

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #2a6ea2;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  padding-right: 12px;
}

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

#footer .footer-top .footer-links ul a {
  color: #8a8c95;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #2a6ea2;
}

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

#footer .footer-top .social-links a:hover {
  background: #27282c;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  text-align: center;
  float: left;
  color: #47536e;
}

@media (max-width: 768px) {

  #footer .footer-top .footer-links {
    margin: 30px 0;
  }

  #footer .copyright{
    float: none;
    text-align: center;
    padding: 5px 0;
  }
}