/***************************/
/* Reset CSS */
/***************************/

/**************************/
/* Header Styling */
/**************************/
header {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
header a {
  color: #fff !important;
}
/* Styles for the scroll-down arrow container */
.scroll-down-arrow {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 999;
  background: linear-gradient(to bottom, #ff8800, #ffaa00);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  animation: bounce 2s infinite alternate;
}

/* Make the entire container clickable */
.scroll-down-arrow a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent; /* Transparent background */
}

/* Styles for the arrow shape */
.scroll-down-arrow a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(315deg);
}

/* Bounce Animation and Hover Effect - same as before */
@keyframes bounce {
  0% {
    transform: translateX(-50%) translateY(0);
  }
  100% {
    transform: translateX(-50%) translateY(-10px);
  }
}

.scroll-down-arrow:hover {
  background: linear-gradient(to bottom, #ffaa00, #ffcc00);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.main-logo {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 999;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  backface-visibility: hidden;
}

.main-nav {
  display: flex;
  position: relative;
  overflow: hidden;
  height: 100vh;
}

.main-nav img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(100%) sepia(0%) hue-rotate(0deg);
  transition: filter 0.3s ease;
}

.hbs-nav-item,
.hws-nav-item {
  position: relative;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  transition: width 0.45s ease, transform 0.7s ease, color 0.7s ease-in-out;
  overflow: hidden;
  border: none !important;
}

.hbs-nav-item:hover,
.hws-nav-item:hover {
  width: 130%;
  transform: translateY(-40px) scale(1.1);
}

.hbs-nav-item:hover img,
.hws-nav-item:hover img {
  filter: blur(5px) brightness(80%) sepia(10%) hue-rotate(0deg);
}

.hws-nav-item .main-nav-list li,
.hbs-nav-item .main-nav-list li {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.main-nav-list {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.main-nav-link {
  display: inline-block;
  position: relative;
  text-align: center;
  font-size: 3rem;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease-in-out, transform 0.6s ease;
}

.main-nav-link::before {
  content: "";
  position: absolute;
  margin-top: 3px;
  padding-top: 1.5px;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 3px;
  background-color: #fff;
  transition: width 0.4s ease;
  transform: translateX(-50%);
  background-color: #34869e;
}

.main-nav-link:hover::before {
  width: 100%;
}

.main-nav-link:hover {
  transform: scale(1.2);
  color: #34869e !important;
}

.nav-title {
  position: relative;
  transform: translate(70px, -90px);
  z-index: 2;
  width: 100%;
  color: #f5eee8;
  font-size: 3.4rem;
  font-weight: bold;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}

/**************************/
/* Hero Styling */
/**************************/

.section-hero {
  background-color: #fff;
  padding: 4rem 2rem;
  text-align: center;
  overflow: hidden;
  background-color: #fff;
  position: relative;
  /* box-shadow: 0 0.1rem 3.2rem #eaf6fc; */
  background-color:#eaf6fc;
  height: 40rem;
}

.heading-primary {
  font-family: 'Inter', sans-serif;
  font-size: 8.3rem;
  letter-spacing: -2px;
  font-weight: 300;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  padding: 0.6rem 3rem;
  margin: 0rem auto;
  gap:3rem;
  
  	
}

.right-text {
  align-self: flex-start;
  /* font-size: 3.5rem; */
  padding-right: 50%;
  color: #34869e !important;
}

.left-text {
  margin-bottom: 0.5rem;
  align-self: flex-end;
  padding-left: 50%;
  /* font-size: 3.5rem; */
}

.floating-text {
  position: absolute;
  bottom:1rem;
  left: 50%;
  transform: translateX(-50%);
  transform: translateY(-5px);
  color: #000;
  white-space: normal;	
  font-size: 2.5rem; /* Increase the font size for the floating text */
  border-radius: 5px;
  padding: 10px 0px; /* Increase the padding to increase the width */
  white-space: normal; /* Allow the text to wrap to multiple lines if needed */
  animation: floatAnimation 2s ease-in-out forwards;
  font-family: "Arial", sans-serif;
  transform: scale(1);
  text-align: center;
  max-width:60%;
  padding-top:10rem;		
  
}
.invisible {
  opacity: 0;
}
@keyframes floatAnimation {
  from {
    transform: translateX(-50%) translateY(20px); /* Start animation slightly below the initial position */
    opacity: 0; /* Start with the text invisible */
  }
  to {
    transform: translateX(-50%) translateY(-20px); /* Final position for the floating text */
    opacity: 1; /* Fully visible at the final position */
  }
}
/**************************/
/* Certification-Section Styling */
/**************************/
.heading-featured-in {
  font-family: "Roboto", "Arial", sans-serif;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.95px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  padding-left: 1.88%;
  color: #999;

  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.logos {
  display: flex;

  justify-content: space-around;
  margin-top: 6rem;
}
.certif-title {
  color: #000 !important;
  opacity: 70% !important;
}
.certif-item img {
  transition: all 0.2s ease;
  opacity: 90%;
  width: auto !important;
}

.certif-item:hover img {
  transform: scale(1.1);
  filter: grayscale(0%) !important;
  opacity: 80% !important;
}

/* Add a new background color to the section */
.section-featured {
  padding: 2.5em 2rem;
  background-color: #fff;
}
.section-featured {
  padding: 3m 2rem;
  /* box-shadow: 0px 20px 12px rgba(0, 0, 0, 0.22);  */
}
.container {
  text-align: center;
}

/* Style the certification logos and titles */
.certif-item img {
  width: 85%;
  height: auto;
  border-radius: 18%;
  filter: grayscale(100%);
  opacity: 0.6;
}

.section-certificats {
  background-color: #fff;
  padding-top: 9.6rem;
  padding-bottom: 6rem !important;
}
.middel-text {
  text-align: center !important;
}

.costum-margin {
  margin-bottom: 20px !important;
}
.left {
  padding-right: 40px;
}

/* Adjust the color of the certification titles */
.certif-title {
  font-family: "Roboto", "Arial", sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  color: #777; /* Use the color #99575C from the images */
  text-transform: uppercase; /* Convert the text to uppercase */
  letter-spacing: 1px; /* Add some letter spacing */
  transition-delay: 0.005s;
  margin: 0 0;
}

/**************************/
/* Qui-sommes-nous-Section Styling */
/**************************/

.section-qui-sommes-nous {
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
  background-color: #eaf6fc;
  margin-top: 9.6rem;
  padding: 5rem 0;
 
}
.subheading,
.heading-secondary {
  text-align: start;
}

.step-description {
  font-size: 1.8rem;
  line-height: 1.8;
  font-weight: 400;
}
.step-number {
  font-size: 8.6rem;
  font-weight: 600;
  color: #ddd;
  margin-bottom: 1.2rem;
}
.container {
  text-align: start;
}

/**************************/
/* trustworthy-Section Styling */
/**************************/

.section-trustworthy {
  margin-bottom: 0;
  background-color: #fff;

  position: relative;
  display: flex; /* Use flexbox to position elements side by side */
}

.background-image {
  width: 60%;
  height: 60vh;
  background-color: #b3b4b3;
  background-image: url("/src/templates/test/image/16.webp");
  background-size: cover;
  background-position: left;
  background-repeat: no-repeat;
  clip-path: circle(30% at 47% 50%);
  background-size: 100%;
  transform: scale(1);
  background-color: #fff;
  transition: clip-path 0.8s ease-in-out, transform 0.8s ease-in-out ,width 0.8s ease-in-out, height 0.8s ease-in-out;
}

.text-content {
  position: absolute;
  max-width: 25%;
  top: 50%;
  right: 14%;
  transform: translateY(-10%);
  transition: color 1s ease, transform 0.8s ease-in-out;
  color:#34869e;  
}

.eco-title{
  transition: color 1s ease; 
}
.text-content {
  position: absolute;
  max-width: 25%;
  top: 50%;
  right: 14%;
  transform: translateY(-40%);
  transition: color 1s ease ,transform 0.8s ease-in-out;
  color:#34869e;  
}
/* Additional styling for the text */
.text-content h2 {
  font-size: 5rem;
  font-weight: 500;
  color: inherit;
  margin-bottom: 1.6rem;
  text-align: start;
  line-height: 1.2;
  word-wrap: break-word;
}

.white-color{
  color: #fff !important
}

.text-desc{
  opacity: 0;
  font-size: 1.5rem;
  transition:opacity 1.2s ease-in-out;
}

/* Add styles for the button link */
.btn {
    opacity:0 ;
    display: inline-block !important;
    background-color: transparent !important;;
    margin-top: 1rem !important;
    padding: 10px 20px !important;
    color: #fff !important;
    font-size: 1.2rem !important;
    border: 2px solid #fff !important;
    border-radius: 5px !important;
    text-decoration: none !important; /* Remove underline from the link */
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease !important ,opacity 1.2s ease-in-out; /* Add smooth transitions on hover */
}

/* Add hover effect for the button link */
.btn:hover {
    background-color: #fff !important;
    color: #000 !important;
    border-color: #fff !important;
}

/* Optional: Add a subtle box-shadow on hover for a cooler effect */
.btn:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
}



/**************************/
/* Support SECTION */
/**************************/

.section-support {
  background-color: #fff;
  display: grid;
  grid-template-columns: 55fr 45fr;
  align-items: center;
}

.support-container {
  padding: 4rem;
}

.support {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 0rem;
  column-gap: 8rem;
}

.support-img {
  width: 6.4rem;
  border-radius: 50%;
  margin-bottom: 1.2rem;
}

.support-text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 1.6rem;
}

.support-name {
  font-size: 1.6rem;
  color: #6f6f6f;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  padding: 1.6rem;

}

.gallery-item {
  overflow: hidden;
}

.gallery-item img {
  display: block;
  width: 100%;
  transition: all 0.4s;
}

.gallery-item img:hover {
  transform: scale(1.1);
}
.support-text {
  display: flex;
  flex-direction: column;
}
.support-link {
  margin-top: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #0098ff;
  cursor: pointer;
  text-decoration: none;
}

/**************************/
/* news Styling */
/**************************/

/* Your original CSS styles */
.section-news {
  background-color: #eaf6fc;
  padding: 9.6rem 0;

}
.site-section{
  margin-top:5rem ;
}

.autoHeightClass{
  height: 50px !important;
}
/* CSS styles for the image caption */
.owl-carousel {
  display: flex;
  justify-content: space-between;
}

.media-29101 {
  margin-right: 0px; /* Adjust the margin between items */
  position: relative;

  
}

.media-29101 img {
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  /* Apply a filter to make the image darker */
  /* Adjust the value as needed (e.g., 70% will make it darker) */
}

.media-29101::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Adjust the height as needed to control the area affected by the brightness */
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7),
    rgba(255, 255, 255, 0)
  );
  /* Apply a filter to make the lower half of the image darker */
  filter: brightness(
    80%
  ); /* Adjust the value as needed (e.g., 70% will make it darker) */
}
.image-caption a {
  color: #fff !important;
  text-decoration: none;
  font-weight: 200 !important;
  font-size: 1.5rem;
}
.date-text {
  color: #cecaca;
  font-size: 1.1rem;
}
.image-caption {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: white;
}

.image-caption h3 {
  font-size: 18px;
  margin: 0;
}

.image-caption h3 a {
  color: #6c757d;
}

.image-caption p.date-text {
  margin: 0;
}
.btn-container {
  text-align: center;
  margin-top: 20px;
}

/* Style for the button */
.news-btn {
  margin-top: 0.2rem;
  display: inline-block;
  padding: 10px 25px;
  font-size: 16px;
  font-weight: 600;
  background-color: #34869E;
  color:#fff;
  text-decoration: none;
  border-radius: 5px;
  border: #34869E solid 1px;
  transition: background-color 0.4s ease-in-out, color 0.4s ease-in-out;
}

.news-btn:hover {
  background-color: #fff ;
  color:#34869E ;
  text-decoration: none;
}


a,
a:focus,
a:active {
  color: #777;
  -ms-transition: all linear 0.2s;
  -webkit-transition: all linear 0.2s;
  transition: all linear 0.2s;
}

.color-green {
  color: #1a936f !important;
}
.subheading {
  color: #34869e !important;
  font-size: 2.3rem;
}
.step-number {
  color: #34869e !important;
}

.certif-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0rem;
  position: relative;
}

.heading-secondary {
  font-size: 4rem;
}
.certif-title {
  color: #0491e0 !important;
  font-size: 12px;
}
.certif-number {
  font-weight: 600;
  color: #666;
  font-size: 13px;
  margin-bottom: 5px;
  line-height: 10px;
}

.certif-higligh {
  font-weight: bold;
  color: #6897a0 !important;
}

.certif-description {
  color: black;
  line-height: 1.5;
  padding-top: 5px;
  font-weight: 400;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}

.certif-btn {
  padding: 15px 15px;
  display: inline-block;
  text-decoration: none;
  color: #3b3a3a;
  font-size: 12px;
  margin-top: 20px;
  background: #11b4e7;
  text-transform: uppercase;
  border-radius: 3px;
  font-weight: bold;
  padding: 6px 12px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  transition: all ease-in-out 0.2s;
  -moz-transition: all ease-in-out 0.2s;
  -webkit-transition: all ease-in-out 0.2s;
  margin-bottom: 5rem;
}
.certif-btn:hover {
  text-decoration: none;
  color: #fff;
}

.stop-scrolling{
  overflow: hidden!important;
}
.mt--0{
 margin-bottom:50px !important;
}

/* New section */ 
.block-middle-text {
  display: table-cell;
  vertical-align: middle !important;
  text-transform: uppercase;
  padding: 0 10px;
  font-weight: 600;
  font-size: 15px;
  color: #777;
}

.block-middle-icon {
  display: table-cell;
  vertical-align: middle;
  filter: brightness(0.3) invert(1) sepia(1) saturate(50) hue-rotate(180deg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.4)
}

.block-middle-icon img {
  padding: 25px;
}

.block-middle {
  display: table;
  width: 100%;
  margin-bottom: 20px;
}

.homepage-title{
  color: #34869E;
  margin-top: 5rem;
  margin-bottom: 4rem;
}

.gallery img{
 transform: scale(1);
 	
}

.support-title{
font-size:3rem
}

a:hover{
    text-decoration: none !important; 
}

/* footer */
/*footer */
.footer-homepage .footer-title, .footer-homepage a.footer-title, .footer-homepage a.footer-title:hover {
  font-size: 18px;
  font-weight: 400;
  color: #eee;
}

.footer-homepage .footer-title::after {
  width: 40px;
  background: #ddd;
  left: 50%;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.footer-title::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: #db794c;
  bottom: -5px;
  left: 0;
}

.footer-address {
  color: #aaa;
  font-size: 14px;
}

.footer-homepage .footer-title, .footer-homepage a.footer-title, .footer-homepage a.footer-title:hover {
  font-size: 18px;
  font-weight: 400;
  color: #eee;
}

.footer-title {
  color: #eee;
  text-transform: uppercase;
  position: relative;
  font-size: 15px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  margin-top: 25px;
  font-weight: 700;
  display: inline-block;
}

.footer-title::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: #db794c;
  bottom: -5px;
  left: 0;
}

.footer-social-icons a {
  color: #aaa;
  padding: 5px;
  font-size: 20px;
}

.footer-homepage .footer-title.hbs, .footer-homepage .footer-title.hbs:hover {
  color: #1a936f;
}
.footer-homepage .footer-title, .footer-homepage a.footer-title, .footer-homepage a.footer-title:hover {
  font-size: 18px;
  font-weight: 400;
  color: #eee;
}
.footer-title {
  color: #eee;
  text-transform: uppercase;
  position: relative;
  font-size: 15px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  margin-top: 25px;
  font-weight: 700;
  display: inline-block;
}

.footer-homepage {
  border-top: 4px solid #ddd;
  background: #333;
  text-align: center;
}
.footer-item {
  display: block;
  color: #aaa;
  font-weight: 100;
  font-size: 13px;
  line-height: 20px;
}
.text-center {
  text-align: center!important;
}

a {
  text-decoration: none !important;
}

.footer-homepage .footer-title.hws, .footer-homepage .footer-title.hws:hover {
  color: #5ab4e8;
}

.footer-bottom-link {
  display: inline-block;
  padding: 0 5px;
  text-transform: uppercase;
  font-size: 11px;
}
a, a:focus, a:active {
  color: #777;
  -ms-transition: all linear .2s;
  -webkit-transition: all linear .2s;
  transition: all linear .2s;
}


.footer-bottom-link a {
    color: #aaa;
}
a, a:focus, a:active {
    color: #777;
    -ms-transition: all linear .2s;
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
}
a {
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}


.footer-bottom-info {
  font-size: 10px;
  margin-top: 10px;
}

.color-green {
  color: #1a936f!important;
}
.footer-homepage .footer-bottom {
  border-top: 1px solid #777;
  padding-top: 15px;
  margin-top: 25px;
}
.dropdown, .dropleft, .dropright, .dropup {
  position: relative;
}

.footer-bottom-link a {
  color: #aaa;
}

.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}
footer {
  border-top: 3px solid #647272;
  background: #16282d;
  padding: 15px 5% 0 5%;
  padding-bottom: 10px;
}



.container {
  width: 980px;
  margin: 0 auto;
}
.ico-title {
  font-size: 2em;
}
.iconlist {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.iconlist li {
  position: relative;
  margin: 5px;
  width: 150px;
  cursor: pointer;
}
.iconlist li .icon-holder {
  position: relative;
  text-align: center;
  border-radius: 3px;
  overflow: hidden;
  padding-bottom: 5px;
  background: #ffffff;
  border: 1px solid #E4E5EA;
  transition: all 0.2s linear 0s;
}
.iconlist li .icon-holder:hover {
  background: #00C3DA;
  color: #ffffff;
}
.iconlist li .icon-holder:hover .icon i {
  color: #ffffff;
}
.iconlist li .icon-holder .icon {
  padding: 20px;
  text-align: center;
}
.iconlist li .icon-holder .icon i {
  font-size: 3em;
  color: #1F1142;
}
.iconlist li .icon-holder span {
  font-size: 14px;
  display: block;
  margin-top: 5px;
  border-radius: 3px;
}

.footer-social-icons a:hover{
  color: #1a936f;
}

.footer-bottom-link a:hover{
  color: #1a936f;
}

.gallery {
  align-self: last baseline;
  margin: 0;
  padding: 0;
  /* Center the item in the cell using position and translate */
 	
  

}

.gallery img {
  width: 100%;
}
