body {
  font-family: Manrope;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #000;
  scroll-behavior: smooth;
}

html{
  scroll-behavior: smooth;
}
p {
  font-family: Manrope;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;

  line-height: 130%!important;
}
h1, h2, h3, h4 {
  font-family: Manrope;
  line-height: 110%!important;
}

a {
  font-family: Manrope;
  text-decoration: none;
  color: inherit;
}

ul {
  font-family: Manrope;
  margin: 0;
  padding: 0;
}

* {
  font-family: Manrope;
  box-sizing: border-box;
}

li {
  font-family: Manrope;
  list-style-type: none;
  text-decoration: none;
}



/* .logo {
  max-width: 120px;
  margin: 2rem;
} */


body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #000;
  scroll-behavior: smooth;
}

html{
  scroll-behavior: smooth;
}
p {
  font-family: Manrope;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;

  line-height: 130%!important;
}
h1, h2, h3, h4 {
  line-height: 110%!important;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

li {
  list-style-type: none;
  text-decoration: none;
}



#header {
  position: fixed;
  width: 100%;
  height: 65px;
  top: 0;
  transition: 0.3s;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background: hsla(0, 0%, 100%, .5);
  z-index: 12000;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* Dark semi-transparent overlay */
  z-index: 9999; /* Ensure it sits above content but below the menu */
  opacity: 0; /* Initially hidden */
  visibility: hidden; /* Initially invisible */
  transition: opacity 0.4s ease, visibility 0.4s ease; /* Smooth transition */
}

#overlay.active {
  opacity: 1; /* Fully visible */
  visibility: visible; /* Change visibility */
}



#header .flex {
  display: flex;
}

#header .about {
  display: flex;
  align-items: center;
}

#header a {
  margin-bottom: 0;
}


#header .about svg {
  width: 50px;
  transition: all 0.3s;

}

#header .about:hover svg {
  transform: rotate(45deg) !important;
}

#header .space-between {
  justify-content: space-between;
}

#header .align-center {
  align-items: center;
}

#header .mr {
  margin-right: 1rem;
}

#header .circle-header {
  cursor: pointer;
  width: 25px;
  height:25px;
  border-radius:50%;
 background-color: transparent;
 color: transparent;
 display: flex;
 justify-content: center;
 align-items: center;
 letter-spacing: 0.8px;
 border: 1px black solid;
 background-image: radial-gradient(circle at center, black 50%, transparent 50%);
 background-position: 50% 50%;
 background-repeat: no-repeat;
 background-size: 100% 100%;
 transition: background-size 0.5s, color 0.5s;
 background-size: 0% 0%;
}


#header .circle-header:hover {
  background-size: 200% 200%;
}

#header .circle-header:hover .mini{
  display: flex;
}

#header #menuButton {
  cursor: pointer;
  transition: 0.4s;
  font-family: Manrope;
font-size: 18px;
font-weight: 500;
line-height: 24.59px;
text-align: left;

}

#header #menuButton:hover+.circle-header {
  background-size: 200% 200%;
}

#header #menuButton:hover+.mini {
  display: flex;
}

#header .navBar {
  position: relative;
  z-index: 999;
  padding: 0.4rem 1rem;
}

#header .buttonBlack {
  background-color: black;
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

#header .buttonBlack:hover {
  color: #000;
  background: transparent;
  border: 1px solid #000;
}

#header .titleWebloo {
  font-size: 30px;
  font-weight: bold;
}

#header .header-container {
  position: fixed;
  width: 45%;
  margin: 1rem;
  background-color: white;
  justify-content: flex-start;
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  transform: scale(0);
  transform-origin: top right;
  transition: transform 1s ease-in-out;
  z-index: 1000;
}

@keyframes slideInFromTopRightToBottomLeft {
  0% {
    transform: translate(10%, -10%) scale(0);
    opacity: 0;
  }
  100% {
    transform: translate(0%, 0%) scale(1);
    opacity: 1;
  }
}

@keyframes vanishAndBlur {
  0% {
    transform: scale(1);
    filter: blur(0px);
    opacity: 1;
  }
  100% {
    transform: scale(1.1) translateX(10px) translateY(-10px);
    filter: blur(6px);
    opacity: 0;
  }
}

#header .sublinks{
  background: black;
  color: white;
  width: 50%;
  padding: 2rem 0;
  padding-bottom: 1rem;
  border-radius: 0 30px 30px 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  
}



#header .social{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 2rem;
}

#header .social link{
  cursor: pointer;
}


.magnetic {
  margin: -5px;
  padding: 5px;
  display: inline-block;
  border-radius: 50%;
  cursor: pointer;

}




#header .header-container.active {
  max-width: 700px; 
  display: flex;
  animation: slideInFromTopRightToBottomLeft 0.4s ease forwards;
}

#header .header-container.closing {
  animation: vanishAndBlur 0.6s ease forwards;
}



#header .close-container {
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
}



#header .close-container img {


  width: 20px;
  transition: transform 0.4s ease;
  cursor: pointer;
}

#header .close-container img:hover {
  transform: rotate(90deg);
}

#header .about a {
  margin-bottom: 0;
}

/* Style for header links list items */
/* Style for header links list items */
#header .header-links li {
  font-weight: 400;
  cursor: pointer;
  font-size: 38px;  /* Original font size */
  position: relative;
  overflow: hidden;
  background-color: transparent;
 
  transition: background-color 0.3s ease, color 0.3s ease; /* Transition both background and color over 0.3s */
}

/* When hovering over the list items, change the background to black and the text color of the child 'a' to white */
#header .header-links li:hover {
  background-color: black;
  transition: background-color 0.3s ease;
}

/* Change the color of the anchor tag within the hovered 'li' */
#header .header-links li:hover a {
  color: white;
  transition: color 0.3s ease; /* Ensure smooth color transition */
}

/* Style for the anchor tags */
#header .header-links li a {
  font-weight: 400;
  padding: 0.5rem 2rem;
  text-decoration: none;
  font-size: 28px; /* Restore the original font size */
  transition: color 0.3s ease; /* Ensure smooth color change */
  display: block;
}

/* Active state: keep the background black and text white */
#header .header-links li.active {
  background-color: black;
}

#header .header-links li.active a {
  color: white;
}


#header .headerContainer-links {
  display: flex;
  gap: 3rem;
  flex-direction: column;
  justify-content: space-between;
  width: 50%;
  padding: 2rem 0px;
  padding-bottom: 1rem;
}

#header .info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
 
}

#header .social-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#header .beInTouch {
  color: #ABA7A7;
  font-size: 18px;
  text-decoration: none;
  font-weight: lighter;
  margin-bottom: 1rem;
}

#header #logo img {
  cursor: pointer;

}

#header .social-links li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 200;
  cursor: pointer;
  font-size: 16px;
  padding: 0.5rem 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.link__content{
  align-items: center;
  display: flex;
  justify-content: start;
}

.link__text {
  display: inline-block;
  line-height: .7em !important;

}

.link__icon {
  display: inline-block;
  display: flex;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.link__arrow {
  display: inline-flex;
  transform: rotate(-45deg);
  transition: transform .35s ease;
}

.link__arrow_clone {
  bottom: -100%;
  left: -100%;
  position: absolute;
  transform: translate(0) rotate(-45deg);
  z-index: 2;
}

.link__content:focus .link__arrow, .link__content:focus .link__arrow_clone, .link__content:hover .link__arrow, .link__content:hover .link__arrow_clone, .link_hovered .link__arrow, .link_hovered .link__arrow_clone{
  transform: translate(100%, -100%) rotate(-45deg);
}



#header .email-header {
  margin: 0;
  font-size: 18px;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  padding: 1rem 2rem;
  gap: 12px;
}

#header .email-header img {
  margin-left: 5px;
  transition: 0.3s;
}

#header .email-header:hover img {
  transform: translateX(5px) rotate(45deg);
}

#header .home {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-family: Manrope;
  margin: 0 2rem;
}

#header .home-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
}

#header .home-title {
  font-size: 58px;
}

#header .home-paragraph {
  font-size: 16px;
  margin-top: 1rem;
}




@media screen and (max-width: 1050px) {

  #header .none {
    display: none;
  }

  #header .header-container {
    right: 10px;
    width: 90%;
   
    margin: 10px;
  }
}

@media screen and (max-width: 690px) {
  #header .header-container {
   
    width: 92%;
    

  }
  #header .header-links li {
    
    font-size: 33px;
    

  }
  
  
  #header .header-links a {
    
    font-size: 30px;
  
  }

  #header .close-container {
    top: 10px;
    right: 20px; 
  }
  
  
  
  #header .close-container img {
    width: 15px;
  }
  

  

}

@media screen and (max-width: 600px) {



    #header .header-links li a {
    
      padding: 0.5rem 1rem;
      text-decoration: none;
      font-size: 22px;
      transition: color 0.3s ease;
      display: block;
  }

  #header .social-links li {
    font-size: 12px;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 200;
  }

  #header .email-header {
    margin: 0;
    font-size: 12px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    padding: 1rem ;
    gap: 10px;
  }

  #header .social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.5rem 1rem;
    gap: 0.5rem;
  }

  #header .social-links {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

}


@media screen and (max-width: 400px) {


  #header .header-container {
    position: absolute;
    width: 95%;
    right: 10px;
    margin: 0;
  

  }

  #header .header-links li {

    margin-bottom: 0;

  }

  #header .header-links a {

    font-size: 28px;
  

  }


}

/*########## FOOTER CSS ###########*/
#footer {
  display: flex;
  justify-content: end;
  margin-top: auto;
  
  color: #fff;
  height: 90vh;
  width: 100%;
  
}

#footer .container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  height: 90%;
  background: #000;
  margin-top: auto;
  border-radius: 2rem 2rem 0 0;
  padding: 2rem;
  padding-top: 4rem;
}

#footer .content{
  display: flex;
  justify-content: space-between;
}

#footer .header {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}


#footer .header h2{
  font-size: clamp(42px, 4vw, 62px);
  
    font-weight: 500;
    margin-bottom: 1rem;
    margin-top: 0;
}


#footer .header p{
  font-size: 20px;
  margin: 0;
  margin-bottom: 1rem;
}


#footer .header a{
  font-size: 20px;
  margin: 0;
}

#footer .bold{
  font-weight: 600;
}

#footer .socials{
  display: flex;
  justify-content: space-evenly;
  gap: 2rem;
  width: 100%;
}


#footer .links{
  display: flex;
  justify-content: space-evenly;
  gap: 2rem;
  width: 100%;
}

#footer .link{
  display: flex;
  gap: 1.5rem;
  flex-direction: column;
}
#footer .link li{
  font-size: 18px;
  font-weight: 400;
}

#footer .allrights {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap; /* This allows the content to wrap onto the next line when necessary */
}

#footer .allrights a {
  font-size: 16px;
  font-weight: 400;
  position: relative;
  text-decoration: none;
  color: inherit; /* Maintain the original link color */
}
#footer .allrights p {
  font-size: 16px;
  font-weight: 400;
}

#footer .allrights a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px; /* Adjust the height of the line */
  background-color: currentColor; /* Use the current text color for the line */
  bottom: -1px; /* Position the line just below the text */
  left: 0;
  transition: width 0.3s ease; /* Smooth transition for the line */
}

#footer .allrights a:hover::after {
  width: 100%; /* Expand the line to full width on hover */
}


#footer .link__content{
  align-items: center;
  display: flex;
  justify-content: start;
  gap: 5px;
  cursor: pointer;
}

#footer .link__text {
  display: inline-block;
  line-height: .7em !important;

}

#footer .link__icon {
  display: inline-block;
  display: flex;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.link__arrow {
  display: inline-flex;
  transform: rotate(-45deg);
  transition: transform .35s ease;
}

.link__arrow_clone {
  bottom: -100%;
  left: -100%;
  position: absolute;
  transform: translate(0) rotate(-45deg);
  z-index: 2;
}

.link__content:focus .link__arrow, .link__content:focus .link__arrow_clone, .link__content:hover .link__arrow, .link__content:hover .link__arrow_clone, .link_hovered .link__arrow, .link_hovered .link__arrow_clone{
  transform: translate(100%, -100%) rotate(-45deg);
}



@media screen and (max-width: 900px) {

  #footer {
      height: auto;
      
    }
    
    #footer .container {
      height: auto;
      padding: 2rem;
      padding-top: 3rem;
      gap: 3rem;
    }
  

  

  #footer .content{
     flex-direction: column;
    }

    #footer .content{
      gap: 4rem;
    }

}


@media screen and (max-width: 550px) {

  #footer .links{
      justify-content: start;
      gap: 4rem;
  }

  #footer .socials{
      flex-direction: column-reverse;
  }
}



/*########## CARD CSS ###########*/

#cards-section {
  display: flex;
  width: 90%;
}

#cards-section .card {
  flex: 0 1 20%;
  transition: flex-basis 0.5s ease-in-out;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

#cards-section #card1 {
  background-color: #dc19d6;
}

#cards-section #card2 {
  background-color: #e3c921;
}

#cards-section #card3 {
  background-color: #2fda2f;
}

#cards-section #card4 {
  background-color: #11d2cf;
}

#cards-section #card5 {
  background-color: #ec5555;
}

#cards-section .card.active {
  flex-basis: 60%;
}

#cards-section .card:not(.active) {
  flex-basis: 10%;
}

#cards-section .card-header,
#cards-section .card-content,
#cards-section .card-footer {
  padding: 10px;
}

#cards-section .card-content {
  display: none;
}

#cards-section .card.active .card-content {
  display: block;
}

#card5 {
  border-radius: 0rem 0rem 3rem 0rem;
}

#cards-section .card-footer {
  position: absolute;
  bottom: 10px;
  right: 10px;
}

/*########## END CARD CSS ###########*/

/*########## SHOW CASE CSS ###########*/
#project-overview-section {
  max-width: 100%;
  margin: auto;
  
  box-sizing: border-box;
  width: 100%;
  padding: 1rem;
  padding-top: 80px;
}

#project-overview-section .project-image-container {
  position: relative;
}

#project-overview-section img {
  max-width: 100%;
  height: auto;
  width: 100%;
  object-fit: cover;
  max-height: calc(90vh - 4rem);
  border-radius: 1rem;
}

#project-overview-section .services-container {
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 2rem;
  box-sizing: border-box;
  width: 50%;
  font-size: 64px;
}

#project-overview-section .buzzer-image-pop{
  position: absolute;
top: 30%;
right: 35%;
}
#project-overview-section .services-container h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Manrope;
  font-size: 64px;
  font-weight: 500;
  line-height: 75px;
  text-align: left;
  color: #fff;
}

#project-overview-section .services-container h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Manrope;
  font-size: 64px;
  font-weight: 500;
  line-height: 75px;
  text-align: left;
  color: #fff;
}

#project-overview-section .services-container button {
  display: inline-block;
  margin-right: 10px;
  border-radius: 2rem;
  padding: 1rem 2rem
  ;
}

#project-overview-section .project-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: space-between;
  margin-top: 20px;
  padding: 0 4rem;
  border-bottom: 1px solid #000;
  border-radius: 1rem;
}

#project-overview-section .project-info-border {
  text-align: start;
    align-items: start;
    display: flex;
    flex-direction: column
}

#project-overview-section .project-info h3 {
  position: relative;
  font-family: Manrope;
  font-size: 20px;
  font-weight: 300;
  line-height: 27.32px;
  text-align: center;
  margin-bottom: 0;
}

#project-overview-section .project-info h3:before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border: 1px solid #000;
  border-radius: 50%;
}

#project-overview-section .project-button {
  display: block;
  margin: 10px auto;
  padding: 10px 20px;
  background-color: #f2f2f2;
  color: #000;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

#project-overview-section .project-button {
  transition: 0.3s;
}

#project-overview-section .project-button:hover {
  transform: scale(1.1);
}

@media (max-width: 900px) {

  #project-overview-section .project-info-border {
    margin-bottom: 0rem;
  }

  #project-overview-section .services-container {
    width: 70%;
    font-size: 48px;
  }

  #project-overview-section .project-info {
    grid-template-columns: repeat(2, 1fr);

    flex-direction: column;
    padding: 0 2rem;
  }


  #project-overview-section .services-container h3 {
    margin-top: 0;
    margin-bottom: 0;
    font-family: Manrope;
    font-size: 34px;
    font-weight: 500;
    line-height: 75px;
    text-align: left;
    color: #fff;
  }

  


  #project-overview-section .services-container button {
    padding: 0.5rem;
    margin: 0;
  }

  #project-overview-section .services-container{
    gap: 0.5rem;
    padding: 0.5rem;
}

}

@media (max-width: 600px) {

  #project-overview-section .project-info {
    grid-template-columns: repeat(1, 1fr);

    flex-direction: column;
    padding: 0 2rem;
  }
}


 



 
 



/*########## END SHOW CASE CSS ###########*/

/*########## info section CSS ###########*/
#infoSection {
  font-family: Manrope;
  max-width: 100%;
  margin: auto;
  width: 100%;
  box-sizing: border-box;
  padding: 1rem;
}

#infoSection .infoContent {
  display: flex;
  align-items: center;
  padding-top: 2rem;
  flex-wrap: wrap;
}

#infoSection .circle {
  width: 10px;
  height: 10px;
  border: 1px solid #000;
  border-radius: 50%;
  margin-right: 20px;
}

#infoSection .infoHeading {
  margin: 0;
  font-family: Manrope;
  font-size: 52px;
  font-weight: 300;
  line-height: 27.32px;
  text-align: left;
}

#infoSection .infoText {
  font-weight: 300;
  margin-top: 10px;
  font-family: Manrope;
  font-size: 58px;
  font-weight: 500;
  line-height: 70px;
  text-align: left;
  color: #000;
  width: 90%;
}

@media (max-width: 1200px) {
  

  #infoSection .infoText {
    font-size: 48px;
    line-height: 60px;
    width: 100%;
  }
}

@media (max-width: 992px) {
  #infoSection {
    padding: 0 1rem;
  }

  #infoSection .infoText {
    font-size: 40px;
    line-height: 50px;
  }
}

@media (max-width: 768px) {
 
  #infoSection .infoText {
    font-size: 32px;
    line-height: 40px;
  }

  #infoSection .infoHeading {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  #infoSection .infoText {
    font-size: 24px;
    line-height: 32px;
  }

  #infoSection .infoHeading {
    font-size: 24px;
  }
}


/*########## END info section CSS ###########*/

/*########## image section CSS  version 4 ###########*/
#customImageSection {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 10px;
  padding: 1rem;
}

#customImageSection .full-width,
#customImageSection .half-width {
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: cover;
  margin-bottom: 1rem;
  border-radius: 1rem;
}

#customImageSection .image-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  #customImageSection .image-group {
    grid-template-columns: 1fr;
  }
}

/*########## image section CSS ###########*/
#newImageSection {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 10px;
  padding: 1rem;
}

#newImageSection .full-width {
  width: 100%;
  margin-bottom: 1rem;
}

#newImageSection .half-width {
  width: 100%;
  margin-bottom: 1rem;
}

#newImageSection .half-width:last-child {
  margin-right: 0;
}

#newImageSection .image-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}



.slider img {
  width: 100%;
  display: block;
  /* Ensures images scale correctly */
}

.slider {
  width: 100%;
  height: 80vh;

}

.slider-adjustments {
  padding: 10rem;

}

/*########## END image section CSS ###########*/

/*########## Project details CSS ###########*/

#project-overview-section .testimonial-credits-container {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  font-family: 'Manrope', sans-serif;
}

#project-overview-section .details-image-border {
  display: none;
}

#project-overview-section .testimonial-credits,
#project-overview-section .testimonial-content {
  padding: 2rem;
  border-radius: 8px;
}

#project-overview-section .testimonial-credits {
  width: 40%;
  text-align: left;
}

#project-overview-section .testimonial-content {
  width: 50%;
  text-align: left;
}

#project-overview-section .testimonial-content h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 43.71px;
  margin-bottom: 1rem;
}

#project-overview-section .testimonial-credits p strong {
  display: block;
  font-weight: 500;
  margin-bottom: 0.25rem;
}


#project-overview-section .testimonial-credits h2 {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 300;
  line-height: 27.32px;
  margin-bottom: 0;
  padding-bottom: 0;
}

#project-overview-section .testimonial-credits h2 .circle {
  width: 10px;
  height: 10px;
  border: 1px solid #000;
  border-radius: 50%;
  margin-right: 20px;
  display: inline-block;
}

#project-overview-section .testimonial-credits p,
#project-overview-section .testimonial-content p {
  font-size: 24px;
  font-weight: 300;
  line-height: 32.78px;
  margin-bottom: 0.5rem;
  text-decoration: underline;
  font-family: Manrope;
  text-align: left;

}

#project-overview-section .testimonial-credits p strong {
  font-weight: 500;
}

#project-overview-section .star-rating {
  font-size: 1.5rem;
  color: #000;
  margin-bottom: 1rem;
}

#project-overview-section .star-rating span {
  font-weight: 400;
  color: #7D7D7D;
  font-family: Manrope;
  font-size: 12.52px;
  font-weight: 400;
  line-height: 17.1px;
  text-align: left;
}

#project-overview-section blockquote {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 500;
  
  margin: 1rem 0;
  font-style: normal;
}

#project-overview-section .testimonial-link {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  font-weight: 700;

  border: 1px solid #000;
  border-radius: 4rem;
  transition: 0.3s;
}

#project-overview-section .testimonial-link:hover {
  background-color: white;
  
transform: scale(1.05);
  color: #000;
}

/*########## END Project details CSS ###########*/





/*########## Business section CSS ###########*/
#business-section {
  width: 100%;
  padding: 0 4rem;
  box-sizing: border-box;
}

#business-title {
  text-align: center;
  margin-bottom: 2rem;
}

#business-title h1 {
  font-family: Manrope;
  font-size: 48px;
  font-weight: 500;
  line-height: 75px;
  text-align: left;
}

#business-video {
  text-align: center;
  margin-bottom: 2rem;
}

#business-video video {
  width: 100%;
  border-radius: 1rem;
}

#business-cta {
  text-align: center;
  text-align: center;
  border-bottom: 2px solid #000;
  border-radius: 3rem;
  margin-bottom: 1rem;
}

#business-cta button {
  color: #000;
  border: none;
  padding: 1rem 2rem;
  background-color: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.3rem;
  font-family: Manrope;
  font-size: 40px;
  font-weight: 500;
  line-height: 75px;
  text-align: left;
  margin-bottom: 4rem;

}

#business-cta .cta-icon {
  margin-left: 0.5rem;
  background-color: #000;
  padding: 2rem;
  color: #fff;
  border-radius: 0 50rem;
}

#business-cta .cta-icon:hover {
  background-color: transparent;
  color: #000;
  border: 2px solid #000;
}



/* Enhanced Showcase Image Section */
#customImageSectionEnhanced {
  padding: 1rem;
}

#customImageSectionEnhanced .full-width-enhanced,
#customImageSectionEnhanced .half-width-enhanced,
#customImageSectionEnhanced .responsive-img {
  width: 100%;
  height: auto;
  max-height: calc(100vh - 6rem);
  object-fit: cover;
  margin-bottom: 1rem;
  border-radius: 1rem;
}

#customImageSectionEnhanced .image-group-enhanced {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

#customImageSectionEnhanced .half-width-container-enhanced {
  position: relative;
  margin-bottom: 1rem;
}

#customImageSectionEnhanced .small-image-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}


#customImageSectionEnhanced .small-top-image-enhanced {
  position: absolute;
  width: 50%;
  height: 20%;
  object-fit: contain;
}

#customImageSectionEnhanced .small-top-image-enhanced.left {
  top: 30%;
  left: -80%;
}

#customImageSectionEnhanced .small-top-image-enhanced.right {
  top: 30%;
  right: 20%;
  z-index: 1;
}

@media (max-width: 768px) {
  #customImageSectionEnhanced .image-group-enhanced {
    grid-template-columns: 1fr;
  }
}

/* Industry */
#industry {
  padding: 2rem;
}

#industry .container {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
}

#industry .industry {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 20px;
  padding: 0 0rem 0.4rem 0;
  margin: 2rem;
  width: 50%;
}

#industry .title {
  font-size: 62px;
  font-weight: 500;
  line-height: 65px;
}

#industry .rating-container {
  display: flex;
  flex-direction: row;
  justify-content: left;
  gap: 3rem;
  align-items: center;
}

#industry .boxnumber {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#industry .boxnumber h3 {
  font-family: 'Manrope';
  font-size: 18px;
  font-weight: 500;
  line-height: 24.59px;
  text-align: left;

}

#industry .boxnumber p {
  font-size: 12.72px;
}

#industry .container-img {
  width: 50%;
}

#industry .container-img img {
  width: 100%;
  max-height: 836px;
}

#industry .btn-industry {
  width: 4rem;
  transition: 0.3s;
}

#industry .btn-industry:hover {
  transform: rotate(45deg);
}


/*########## brand ###########*/


#brand {
  width: 100%;
  height: 100vh;
  background-color: black;
  color: white;
  display: flex;
  flex-direction: column;
  overflow: hidden;

}

#brand .container {

  display: flex;
  justify-content: space-between;
  height: 100%;
}

#brand .content,
#brand .brand-content {
  flex: 1;
  height: 100%;
}

#brand .content {
  position: relative;
  overflow: hidden;
  width: 90%;
  display: flex;
  justify-content: center;
}

#brand .absolute,
#brand .absoluteBottom {
  width: 80%;
  position: absolute;
  transition: top 2s ease-in-out;
  animation-duration: 6s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

#brand .absolute {
  height: 100%;
 
}

#brand .absoluteBottom {
  height: 100%;

}



#brand .content1 {
  height: 48%;
  display: flex;
  flex-direction: column-reverse;
  border-radius: 22px;
  padding: 2rem;
  margin: 2rem 1rem;
}

#brand .content-button {
  display: flex;
  flex-direction: column-reverse;
  align-items: start;
  gap: 1rem;
}

#brand .content-button button {
  padding: 14px 22px;
  border: 1px white solid;
  background: transparent;
  color: white;
  border-radius: 2rem;
  font-size: 16px;
  transition: 0.3s;
  cursor: pointer;
}

#brand .content-button button:hover {
  background: white;
  color: black;
}

#brand .brand-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
}

#brand .brand-content h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
}

#brand .brand-content button {
  background-color: white;
  padding: 20px 40px;
  color: black;
  border: none;
  border-radius: 2rem;
  font-size: 18px;
  border: 2px white solid;
  cursor: pointer;
  transition: 0.3s;
}

#brand .brand-content button:hover {
  border: 2px white solid;
  background-color: black;
  color: white;
}

#brand #box1,
#brand #box2,
#brand #box3,
#brand #box4 {
  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;
}



#brand #box1 {
  background-image: url('../assets/images/brand2.webp');
  background-size: cover;
  /* Cover the entire area of the box */
  background-position: center;
  /* Center the background image */
  background-repeat: no-repeat;
}

#brand #box2 {
  background-image: url('../assets/images/somo.webp');
  background-size: cover;
  /* Cover the entire area of the box */
  background-position: center;
  /* Center the background image */
  background-repeat: no-repeat;
}

#brand #box3 {
  background-image: url('../assets/images/brand3.webp');
  background-size: cover;
  /* Cover the entire area of the box */
  background-position: center;
  /* Center the background image */
  background-repeat: no-repeat;
}

#brand #box4 {
  background-image: url('../assets/images/brand4.webp');
  background-size: cover;
  /* Cover the entire area of the box */
  background-position: center;
  /* Center the background image */
  background-repeat: no-repeat;
}



#brand .mobile-content {
  position: relative;
  display: none;

}

#brand .relative {
  display: flex;
  flex-direction: row;

}

@media screen and (max-width: 1100px) {


  #brand .container {
    flex-direction: column;
  }

  #brand .content {
    display: none;
  }

  #brand .mobile-content {
    display: block;

  }

  #brand .brand-content {
    justify-content: start;
    gap: 2rem;
  }

  @keyframes slide-left-right {

    0%,
    100% {
      left: -80%;
    }

    50% {
      left: 10%;
    }
  }

  #brand .relative {
    display: flex;
    flex-direction: row;
    position: absolute;
    bottom: 10px;
    left: -20%;
    /* Start position */
    animation: slide-left-right 6s linear infinite;
    /* Adjust the duration as needed */
  }

  #brand .content1 {
    width: 400px;
    height: 400px;
  }

}

@media screen and (max-width: 800px) {



  #brand .relative {

    animation: slide-left-right 12s linear infinite;
    /* Adjust the duration as needed */
  }

  @keyframes slide-left-right {

    0%,
    100% {
      left: -200%;
    }

    50% {
      left: 10%;
    }
  }


}



/*########## END Business section CSS ###########*/



#ecommerceSection {
  padding: 40px 20px;
  background-color: transparent;
}

#ecommerceSection .header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  background-color: transparent;
}

#ecommerceSection .header-content h1 {
  font-family: 'Manrope', sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 65.57px;
  color: #000;
  text-align: left;
  margin-right: 20px;
}

#ecommerceSection .slick-prev,
#ecommerceSection .slick-arrow {
  display: none !important;
}

#ecommerceSection .header-content p {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 27.32px;
  color: #666;
  text-align: left;
}

.header .navigation button {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  position: relative;

}

#ecommerceBenefits .header .navigation button {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;

}

.navigation{
  display: flex;
  align-items: center;
}

.navigation #left-btn {
  transition: 0.3s;

}

.navigation #right-btn {
  transition: 0.3s;
  
}

.navigation #left-btn:hover {
  transform: scale(1.2);
}

.navigation #right-btn:hover {
  transform: scale(1.2);
}

#ecommerceBenefits p {
  font-size: 18px;
  color: #666;
  text-align: center;
  margin: 20px 0;
}

#ecommerceBenefits .slider {
  margin-top: 20px;
}

#ecommerceBenefits .card {
  text-align: center;
  background-color: #F1F1F1;
  color: #333;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  
  height: 475px;
  border-radius: 10px;
  overflow: hidden;
 
  transition: 0.5s;
}





#ecommerceBenefits .card h2 {
  color: #333;
  font-family: Manrope;
  font-size: 40px;
  font-weight: 500;
  line-height: 54.64px;
  text-align: left;
}

.slick-slide {
  margin: 0.5rem;
}

#ecommerceBenefits .slick-slide:not(:nth-of-type(3n+2)) .card {
  background-color: #F1F1F1;
  color: #333;
}

#ecommerceBenefits .slick-slide .card:hover {
  background-color: #000;
  color: white;
}

#ecommerceBenefits .slick-slide .card:hover p,#ecommerceBenefits .slick-slide .card:hover h2{

  color: white;
}


#ecommerceBenefits .card p {
  color: #666;
  font-family: Manrope;
  font-size: 20px;
  font-weight: 400;
  line-height: 27.32px;
  text-align: left;

}

#ecommerceBenefits .card-number {
  position: absolute;
  bottom: 10px;
  right: 10px;
  
  font-family: Manrope;
  font-size: 40px;
  font-weight: 500;
  line-height: 54.64px;
  text-align: right;

}

.slick-slider {
  height: auto;
}

#magic {
  width: 100%;
  height: 80vh;
  background-image: url("../assets/images/fr.webp") ;
  background-size: cover;
  /* Cover the entire area of the box */
  background-position: center;
  /* Center the background image */
  background-repeat: no-repeat;
}

#magic .container{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  padding: clamp(1rem, 3vw, 3rem); /* Responsive padding */
  height: 100%;
}

#magic .container h2 {
  position: relative;
  z-index: 3;
  padding: clamp(1rem, 3vw, 4rem); /* Responsive padding */
  text-transform: uppercase;
  font-family: Manrope;
  font-size: clamp(32px, 5vw, 70px); /* Responsive font-size */
  font-weight: 500;
  line-height: clamp(40px, 8vw, 90px); /* Responsive line-height */
  text-align: center;
  margin-top: 0;
  margin-bottom: 1rem;
  color: white;
}


#magic .container button{
  color: black;
  padding: 1rem 3rem;
  border-radius: 2rem;
  background-color: white;
  font-size: 18px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

#magic .container button:hover {
  transform: translateY(-6px) scale(1.1);
  color: #000;
  background: white;
}

#magic  img{
 border-radius: 80px;
}


#magic .img1 img {
  position: absolute;
  bottom: 40%;
  right: 3%;
  width: clamp(70px, 10vw, 110px); /* Responsive width */
  height: clamp(150px, 20vw, 233px); /* Responsive height */
  z-index: -1;
  opacity: 1;
  transition: 0.3s;
  object-fit: cover;
  z-index: 2;
}

#magic .img2 img {
  position: absolute;
  bottom: 38%;
  left: 3%;
  width: clamp(150px, 15vw, 200px); /* Responsive width */
  height: clamp(80px, 10vw, 110px); /* Responsive height */
  object-fit: cover;
  z-index: 2;
  opacity: 1;
  transition: 0.3s;
}


@media screen and (max-width: 700px) {


 

  #magic .img2 img {
   opacity: 0;
   transition: 0.3s;
  }

  #magic .img1 img {
    opacity: 0;
    transition: 0.3s;
  }

  #magic .container{
    padding: 0;
  }
}

/* ecommerce-clients */
#ecommerce-clients {
  width: 100%;
  text-align: center;
  padding: 4rem 0;
  overflow: hidden;
}

#ecommerce-clients h2 {
  font-size: 28px;
  font-weight: 500;
  line-height: 38.25px;
  margin-bottom: 20px;
}

.clients-logos-wrapper {
  overflow: hidden;
  position: relative;
}

.clients-logos {
  display: flex;
  justify-content: start;
  gap: 10%;
  animation: scroll-logos 20s linear infinite;
}

.clients-logos img {
  max-height: 60px;
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* 404 page */

#error-404 .page-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  padding: 2em;
  height: 100%;
}


#error-404 .text-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  padding: 0 2em;
}

#error-404 .page-title {
  font-family: Manrope;
  font-size: 96px;
  font-weight: 500;
  line-height: 48px;
  text-align: left;

}

#error-404 .text-content p {
  font-family: Manrope;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
}

#error-404 .back-to-home {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.5em;
}

#error-404 .text-content .button {
  display: inline-block;
  margin-top: 1em;
  padding: 0.5em 1em;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 0.25em;
}

#error-404 .text-content .button:hover {
  background-color: #444;
}

#error-404 .image-content {
  flex: 1;
  text-align: right;
}

#error-404 .image-content img {
  max-width: 100%;
  height: auto;
}

#homeservice .content-error h1 {
  font-size: clamp(42px, 5vw, 80px);
  font-weight: 500;
  margin: 0;
}

#homeservice .error-explore {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 18px;
  font-family: 500;
  cursor: pointer;
  position: absolute;
  bottom: 0;
}

#homeservice .error-explore a{
  display: flex;
  align-items: center;
 
}

#homeservice .error-relative {
  position: relative;
}

#homeservice .justify-center {
  justify-content: center !important;
}

/* Partners - homepage */

#ecommerce-partners {
  width: 100%;
  text-align: center;
  margin-bottom: 4rem;
  margin-top: 2rem;
  overflow: hidden;
}

#ecommerce-partners h2 {
  font-family: Manrope;
  font-size: 28px;
  font-weight: 500;
  line-height: 38.25px;
  text-align: center;
  
  margin-bottom: 20px;
}

#ecommerce-partners p {
  font-family: Manrope;
  font-size: 28px;
  font-weight: 500;
  line-height: 38.25px;
  text-align: center;
  
  margin-bottom: 20px;
}



.partners-logos-wrapper {
  overflow: hidden;
  position: relative;
}

.partners-logos {
  display: flex;
  justify-content: start;
  gap: 7%;
  animation: scroll-logos 30s linear infinite;
  
}

.partners-logos-1{
  margin-top: 2rem;
}

.partners-logos-2 {
  animation: scroll-logos-reverse 30s linear infinite;
  margin-top: 2rem;
  margin-top:4rem;
}

.partners-logos img {
  max-height: clamp(28px, 5vw, 60px); /* Responsive max-height */
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-logos-reverse {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

body {
  margin: 0;
}

#story {
  height: 95vh;
  margin-bottom: 3rem;
}

#story .container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

#story .header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
}

#story .header h2 {
  text-transform: uppercase;
  font-size: clamp(1.5rem, 2vw, 1.75rem);
  font-weight: 500;
  color: white;
  font-family: Manrope;
}

#story .header img {
  filter: none;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* Active State Changes */
#story .box.active .header h2 {
  color: white;
}


#story .slick-slide{
  margin: 0;
}


#story .box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  height: 100%;
  padding: 2rem;
  transition: flex 0.5s ease, background-color 0.5s ease;
  overflow: hidden;
  position: relative;
  border-left: none;
  background-color: rgba(0, 0, 0, 0.3); /* Transparent background for inactive boxes */
  background-blend-mode: overlay;
  background-size: cover;
}

/* Background Images for Boxes */
#story .box1 {
  background: url("../assets/images/Rectangle\ 1.webp") center center/cover no-repeat;
  
}

#story .box2 {
  background: url("../assets/images/Rectangle\ 2.webp") center center/cover no-repeat;
}

#story .box3 {
  background: url("../assets/images/Rectangle\ 3.webp") center center/cover no-repeat;
}

#story .box4 {
  background: url("../assets/images/Rectangle\ 4.webp") center center/cover no-repeat;
}

/* Content and Title Initially Hidden */
#story .box .title,
#story .box .content {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.7s ease-in, transform 0.7s ease-in;
}

/* Active Box Style */
#story .box.active {
  flex: 2;
  z-index: 2;
  background-color: transparent; /* Remove overlay for active box */
}

/* Active Box: Gradually Show Title and Content */
#story .box.active .title,
#story .box.active .content {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.3s;
  transition-duration: 0.5s;
}

/* Head and Title Styles */
#story .head h2 {
  font-size: clamp(1.5rem, 4vw, 2.625rem);
  color: white;
  font-family: Manrope;
  font-weight: 500;
}

#story .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Content Paragraph Style */
#story .content p {
  font-size: clamp(0.8rem, 2.5vw, 1.25rem);
  width: 90%;
  margin-bottom: 4rem;
  color: white;
}

#story .content button {
  display: flex;
  align-items: center;
  color: black;
  padding: 15.79px 31.58px;
  border-radius: 31.58px;
  border: 0.79px solid black;
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  background: white;
  cursor: pointer;
  transition: 0.3s;
}

#story .content button:hover {
  transform: translateX(5px);
}



#story .content button svg {
  margin-left: 5px;
  max-height: 20px;
  transform: rotate(-45deg);
  transition: 0.3s;
}


#story .content button:hover svg{
  transform: rotate(0deg);
}

/* Circle Wrapper Style */
#story .circle-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  border: 1px solid #5F5F5F;
  border-radius: 50%;
  box-sizing: border-box;
  opacity: 0;
  transform: scale(0.8);
  transition: transform 0.7s ease, opacity 0.7s ease;

}

#story .absolute {
  position: absolute;
  bottom: 1%;
  right: 5%;
  transition: 0.3s;
  cursor: pointer;
}

#story .absolute img {
  max-height: 42px;
}

#story .circle-wrapper:hover .absolute {
  transform: translateX(5px);
}

/* Circle Style */
#story .circle {
  border-radius: 50%;
  height: clamp(80px, 10vw, 216px);
  width: clamp(80px, 10vw, 216px);
  min-width: clamp(80px, 10vw, 216px);
  opacity: 0;
  transform: scale(0.5);
  transition: transform 0.7s ease, opacity 0.7s ease;
  border: 1px solid #5F5F5F;
}

/* Image within the Circle */
#story .circle img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* Active Box: Show Circle and Wrapper */
#story .box.active .circle-wrapper {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.6s;
}

#story .box.active .circle {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.8s;
}

/* Inactive Box Styling */
#story .box:not(.active) {
  flex: 0.5;
  background-color: rgba(0, 0, 0, 0.3); /* Transparent background for inactive boxes */
}

#story .box:not(.active) .title,
#story .box:not(.active) .content {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.1s ease-out, transform 0.1s ease-out;
}

#story .box:not(.active) .circle-wrapper {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

#story .box:not(.active) .circle {
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

#story .box:not(.active) .header {
  cursor: pointer;
}


/* Specific adjustment for carousel mode when on smaller screens */
@media (max-width: 1200px) {
  #story {
      height: auto;
  }
  #story .container {
      display: flex;
      justify-content: space-between;
      width: 100%;
      height: 100%;
      overflow: hidden;
  }
}
@media (max-width: 800px) {
  #story .content p {
      font-size: clamp(1rem, 2.5vw, 1.25rem); /* Converted to clamp */
      width: auto;
      margin-bottom: 2rem;
     
  }
  #story .content button {
    padding: 12px 14px;
  }
}

/* Mobile/Tablet Navigation for Story Section */
.story-mobile-nav {
  display: none !important; /* Force hidden on desktop */
}

/* Show navigation only on tablets and mobile */
@media (max-width: 1200px) {
  #story {
    position: relative;
  }
  
  .story-mobile-nav {
    display: block !important;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
  }
  
  .story-nav-arrow {
    position: absolute;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .story-nav-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
  }
  
  .story-nav-arrow.left {
    right: 42px;
  }
  
  .story-nav-arrow.right {
    right: 8px;
  }
  
  .story-nav-arrow svg {
    width: 14px;
    height: 14px;
    fill: white;
  }
  
  /* Hide default slick dots */
  #story .slick-dots {
    display: none;
  }
}

/* Adjust for smaller mobile screens */
@media (max-width: 600px) {
  .story-mobile-nav {
    top: 10px;
    right: 10px;
  }
  
  .story-nav-arrow {
    width: 24px;
    height: 24px;
  }
  
  .story-nav-arrow.left {
    right: 35px;
  }
  
  .story-nav-arrow.right {
    right: 5px;
  }
  
  .story-nav-arrow svg {
    width: 12px;
    height: 12px;
  }
}




/* #### NEWS PAGE  #### */
#news-page {
  padding: 20px;
}

#news-filters {
  display: flex;
  justify-content: space-around;
  margin-bottom: 3%;
  border-bottom: 1px solid #000;
  border-radius: 1rem;
  padding-top: 3%;
  flex-wrap: wrap;
}

#news-filters button {
  background: none;
  border: none;
  color: #A5A2A2;
  cursor: pointer;
  font-weight: 500;
  font-size: 32px;
  font-family: 'Manrope';
  line-height: 43px;
  padding: 10px 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-bottom: 2%;
}

#news-filters button:hover,
#news-filters button.active {
  text-decoration: underline;
  color: #000;
}

#news-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

#news-posts .news-post {
  box-shadow: none;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

#news-posts .news-post:hover {
  transform: scale(0.99);
}

#news-posts .post-thumbnail {
  width: 100%;
  height: 0;
  padding-top: 79.545%;
  /* Aspect Ratio 440px / 350px */
  background-size: cover;
  background-position: center;
  position: relative;
}

#news-posts .post-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3%;
}

#news-posts .post-content {
  padding: 15px;
  flex-grow: 1;
}

#news-posts .post-category a {
  font-family: Manrope;
  font-size: 16px;
  font-weight: 400;
  line-height: 21.86px;
  text-align: left;
  color: #999;
  margin-bottom: 10px;
  text-decoration: none;
}

#news-posts .post-excerpt {
  font-family: Manrope;
  font-size: 22px;
  font-weight: 500;
  line-height: 30.05px;
  text-align: left;
  flex-grow: 1;
  color: #666;
}

#news-posts .post-title {
  font-family: Manrope;
  font-size: 22px;
  font-weight: 500;
  line-height: 30.05px;
  text-align: left;

}

#news-posts .read-more {
  display: inline-block;
  margin-top: 10px;
  color: #000;
  text-decoration: none;
  align-self: flex-end;
  font-family: Manrope;
  font-size: 18px;
  font-weight: 500;
  line-height: 24.59px;
  text-align: left;
  gap: 1rem;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

#news-posts .read-more span {
  font-size: 20px;
  line-height: 1;
  display: inline-block;
  transition: transform 0.3s ease;
}

#news-posts .read-more span img {
  vertical-align: middle;
}

#news-posts .read-more:hover {
  letter-spacing: 2px;
}

#news-posts .read-more:hover span {
  transform: rotate(45deg);
  transition: transform 0.3s ease-in-out;
}

#load-more {
  display: block;

  margin: 20px auto;
  padding: 20px 40px;
  font-size: 18px;
  background-color: #000;
  color: #fff;
  border: 1px solid black;
  cursor: pointer;
  border-radius: 50rem;
}

#load-more:hover {
  background-color: transparent;
  border: 1px solid #000;
  color: #000;
}

.disable-click a {
  pointer-events: none;
  cursor: default;
  color: inherit;
}

@media (max-width: 1000px) {
  #news-posts {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Small Screens (Mobiles) */
@media (max-width: 600px) {
  #news-posts {
    grid-template-columns: 1fr;
  }
}
/*##### BLOG POST - SINGLE PAGE ######*/
#blog-post-section {

  padding: 1rem;
  padding-top: 80px;
  font-family: Arial, sans-serif;
  color: #333;
 
}

#blog-post-section .container {
  width: 100%;
  margin: 0 auto;
}

#blog-post-section .blog-post h1 {
  font-family: Manrope;
  font-size: clamp(42px, 4vw, 62px);
  font-weight: 500;
  line-height: 75px;
  text-align: left;
  width: 90%;
  

}

#blog-post-section .post-meta {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
  margin-bottom: 20px;
  font-size: 1em;
  color: #333;
}

#blog-post-section .meta-item {
  display: flex;
  flex-direction: column;
  align-items: self-start;
  text-align: center;
  position: relative;
  gap: 0.5rem;
}

#blog-post-section .meta-item .meta-label {
  display: flex;
  align-items: center;
  font-family: Manrope;
  font-size: 20px;
  font-weight: 300;
  line-height: 27.32px;
  text-align: left;
}

#blog-post-section .meta-item .meta-label::before {
  content: "○";
  font-size: 1.2em;
  margin-right: 5px;
}

#blog-post-section .meta-value {
  font-family: Manrope;
  font-size: 24px;
  font-weight: 500;
  line-height: 32.78px;
  text-align: left;
}

#blog-post-section p strong {
  font-family: Manrope;
  font-size: 32px;
  font-weight: 500;
  line-height: 43.71px;
  text-align: left;
}

#blog-post-section .featured-image {
  width: 100%;
  margin-bottom: 3rem;
}

#blog-post-section .featured-image img {
  width: 100%;
  height: auto;
  max-height: 713px;
  padding: 0;
  object-fit: cover;
  border-radius: 2rem;
}

#blog-post-section .content-row {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
}

#blog-post-section .post-content {
  width: 75%;
  line-height: 1.8;
}

/* Improved typography and spacing for post content */
#blog-post-section .post-content p {
  font-family: Manrope;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #333;
}

#blog-post-section .post-content h1,
#blog-post-section .post-content h2,
#blog-post-section .post-content h3,
#blog-post-section .post-content h4,
#blog-post-section .post-content h5,
#blog-post-section .post-content h6 {
  font-family: Manrope;
  font-weight: 500;
  color: #222;
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
}

#blog-post-section .post-content h2 {
  font-size: 2.2rem;
  line-height: 1.3;
}

#blog-post-section .post-content h3 {
  font-size: 1.8rem;
  line-height: 1.4;
}

#blog-post-section .post-content h4 {
  font-size: 1.5rem;
  line-height: 1.4;
}

/* Better image spacing within content */
#blog-post-section .post-content img {
  max-width: 100%;
  height: auto;
  margin: 2rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#blog-post-section .post-content figure {
  margin: 2.5rem 0;
}

#blog-post-section .post-content figcaption {
  font-size: 0.9rem;
  color: #666;
  text-align: center;
  margin-top: 0.8rem;
  font-style: italic;
}

/* WordPress alignment classes */
#blog-post-section .post-content .alignleft {
  float: left;
  margin: 1rem 2rem 1rem 0;
  max-width: 50%;
}

#blog-post-section .post-content .alignright {
  float: right;
  margin: 1rem 0 1rem 2rem;
  max-width: 50%;
}

#blog-post-section .post-content .aligncenter {
  display: block;
  margin: 2rem auto;
  text-align: center;
}

/* List improvements */
#blog-post-section .post-content ul,
#blog-post-section .post-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

#blog-post-section .post-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

/* Blockquote styling */
#blog-post-section .post-content blockquote {
  border-left: 4px solid #ddd;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  background: #f9f9f9;
  font-style: italic;
  border-radius: 0.5rem;
}

#blog-post-section .post-content blockquote p {
  margin-bottom: 0;
}

#blog-post-section .suggested-posts {
  width: 25%;
  height: fit-content;
  position: sticky;
  top: 100px;
}

#blog-post-section .suggested-posts h3 {
  font-family: Manrope;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: #222;
}

#blog-post-section .suggested-news-post {
  margin-bottom: 2rem;
  background: transparent;
  transition: transform 0.2s ease;
}

#blog-post-section .suggested-news-post:hover {
  transform: translateY(-2px);
}

#blog-post-section .suggested-news-post:last-child {
  margin-bottom: 0;
}

#blog-post-section .suggested-post-title {
  font-family: Manrope;
  font-size: 22px;
  font-weight: 500;
  line-height: 30.05px;
  text-align: left;
}

#blog-post-section .suggested-post-thumbnail {
  margin-bottom: 1rem;
}

#blog-post-section .suggested-post-content {
  padding-top: 0.5rem;
}

#blog-post-section .suggested-post-thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 3%;
}

#blog-post-section .suggested-post-content .suggested-post-category {
  font-size: 0.9em;
  color: #666;
  margin-bottom: 5px;
}

#blog-post-section .suggested-post-content .suggested-post-excerpt {
  font-size: 1em;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  /* Number of lines to show */
  overflow: hidden;
  text-overflow: ellipsis;
}

#blog-post-section .suggested-post-content .suggested-read-more {
  font-family: Manrope;
  font-size: 18px;
  font-weight: 500;
  line-height: 24.59px;
  text-align: left;
  color: #000;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1rem;
}

html :where(img[class*=wp-image-]) {
  height: auto;
  max-width: 100%;
  width: 100%
}

#blog-post-section .suggested-post-content .suggested-read-more:hover {
  text-decoration: underline;
}

#blog-post-section .suggested-post-content .suggested-read-more span {
  display: inline-block;
  vertical-align: middle;
}

#blog-post-section .suggested-post-content .suggested-read-more:hover span {
  transform: rotate(45deg);
  transition: transform 0.3s ease-in-out;
}


@media screen and (max-width: 900px) {
  #blog-post-section {
    padding: 1rem 0.5rem;
    padding-top: 80px;
  }
  
  #blog-post-section .container {
    margin: 0 1rem;
  }
  
  #blog-post-section .post-meta{
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  #blog-post-section .content-row{
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-direction: column;
  }
  
  #blog-post-section .suggested-posts{
    width: auto;
    position: static;
    margin-top: 2rem;
  }
  
  #blog-post-section .post-content{
    width: auto;
  }
  
  #blog-post-section .post-content h2 {
    font-size: 1.8rem;
  }
  
  #blog-post-section .post-content h3 {
    font-size: 1.5rem;
  }
  
  #blog-post-section .post-content h4 {
    font-size: 1.3rem;
  }
  
  #blog-post-section .post-content p {
    font-size: 18px;
    line-height: 1.7;
  }
  
  #blog-post-section .post-content .alignleft,
  #blog-post-section .post-content .alignright {
    float: none;
    margin: 1.5rem 0;
    max-width: 100%;
    text-align: center;
  }
}

@media screen and (max-width: 600px) {
  #blog-post-section .blog-post h1 {
    font-size: clamp(28px, 6vw, 42px);
    line-height: 1.2;
  }
  
  #blog-post-section .post-meta {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  
  #blog-post-section .post-content p {
    font-size: 16px;
  }
  
  #blog-post-section .suggested-posts {
    margin-top: 1.5rem;
  }
}


#you-may-also-like {
  padding: 20px 0;
  padding: 0% 1% 0% 1%;
}

#you-may-also-like h2 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}

#suggested-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

#suggested-posts .news-post {
  box-shadow: none;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

#suggested-posts .news-post:hover {
  transform: scale(0.95);
}

#suggested-posts .post-thumbnail {
  width: 100%;
  height: 0;
  padding-top: 79.545%;
  /* Aspect Ratio 440px / 350px */
  background-size: cover;
  background-position: center;
  position: relative;
}

#suggested-posts .post-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3%;
}

#suggested-posts .post-content {
  padding: 15px;
  flex-grow: 1;
}

#suggested-posts .post-category {
  font-family: Manrope;
  font-size: 16px;
  font-weight: 400;
  line-height: 21.86px;
  text-align: left;
  color: #999;
  margin-bottom: 10px;
}

#suggested-posts .post-excerpt {
  font-family: Manrope;
  font-size: 22px;
  font-weight: 500;
  line-height: 30.05px;
  text-align: left;
  flex-grow: 1;
  color: #666;
}

#suggested-posts .read-more {
  display: inline-block;
  margin-top: 10px;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  align-self: flex-end;
}

#suggested-posts .read-more span {
  font-size: 20px;
  line-height: 1;
  display: inline-block;
  transition: transform 0.3s ease;
}

#suggested-posts .read-more:hover span {
  transform: translateX(5px);
}



#homeservice .container {
  display: flex;
  padding: 1rem;
  justify-content: space-between;
  height: 90%;
  gap: 2rem;
}


#homeservice .content {
  display: flex;
  flex-direction: column;

}

#homeservice .content h1 {
  font-size: clamp(42px, 4vw, 62px);
  
  font-weight: 400;
  margin: 0;
}

#homeservice .content p {
  margin-top: 2rem;
  font-size: clamp(18px, 3vw, 22px);
  font-weight: 400;
}

#homeservice .content2 {
  height: 100%;
  width: 50%;

}

#homeservice .content2 img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}


#homeservice .explore {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 18px;
  font-family: 500;
  cursor: pointer;
}

#homeservice .explore img {
  transition: 0.3s;
}


#homeservice .explore:hover img {
  transform: rotate(45deg);
}

/*##### Preloader ####*/
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(100vh + 100px);
  z-index: 9999;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 1s ease, visibility 1s ease;
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
}

#preloader .preloader-content {
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}

#preloader .preloader-content img {
  max-width: 40%;
  height: auto;
}

#preloader .preloader-content p {
  color: #fff;
  font-size: 1.5rem;
  margin-top: 10px;
}




/*#### END ####*/

/*#### marquee - index page ####*/
#marquee {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.marquee-content {
  border-bottom: 1px solid black;
  border-top: 1px solid black;
  margin-top: 5rem;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: 5%;
}

.marquee-container {
  display: flex;
  white-space: nowrap;
  animation: scrollRightToLeft 8s linear infinite;
  align-items: center;
}

.marquee-container h1,
.marquee-container img {
  font-size: 100px;
  font-weight: 500;
  margin: 5rem 2rem;
  display: inline-block;
}

.marquee-container img {
  border-radius: 10rem;
}

@keyframes scrollRightToLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}



#header-custom {
  position: fixed;
  width: 100%;
  height: 65px;
  top: 0;
  transition: 0.3s;
  

  
  z-index: 12000;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* Dark semi-transparent overlay */
  z-index: 9999; /* Ensure it sits above content but below the menu */
  opacity: 0; /* Initially hidden */
  visibility: hidden; /* Initially invisible */
  transition: opacity 0.4s ease, visibility 0.4s ease; /* Smooth transition */
}

#overlay.active {
  opacity: 1; /* Fully visible */
  visibility: visible; /* Change visibility */
}



#header-custom .flex {
  display: flex;
}

#header-custom .about {
  display: flex;
  align-items: center;
}

#header-custom a {
  margin-bottom: 0;
}


#header-custom .about svg {
  width: 50px;
  transition: all 0.3s;

}

#header-custom .about:hover svg {
  transform: rotate(45deg) !important;
}

#header-custom .space-between {
  justify-content: space-between;
}

#header-custom .align-center {
  align-items: center;
}

#header-custom .mr {
  margin-right: 1rem;
}

#header-custom .circle-header {
  cursor: pointer;
  width: 25px;
  height:25px;
  border-radius:50%;
 background-color: transparent;
 color: transparent;
 display: flex;
 justify-content: center;
 align-items: center;

 letter-spacing: 0.8px;
 border: 1px white solid;
 
 background-image: radial-gradient(circle at center, white 50%, transparent 50%);
 background-position: 50% 50%;
 background-repeat: no-repeat;
 background-size: 100% 100%;
 transition: background-size 0.5s, color 0.5s;
 background-size: 0% 0%;
}


#header-custom .circle-header:hover {
  background-size: 200% 200%;
}

#header-custom .circle-header:hover .mini{
  display: flex;
}

#header-custom #menuButton {
  cursor: pointer;
  transition: 0.4s;
  font-family: Manrope;
font-size: 18px;
font-weight: 500;
line-height: 24.59px;
text-align: left;
color: white;
}

#header-custom #menuButton:hover+.circle-header {
  background-size: 200% 200%;
}

#header-custom #menuButton:hover+.mini {
  display: flex;
}

#header-custom .navBar {
  position: relative;
  z-index: 999;
  padding: 0.4rem 1rem;
}

#header-custom .buttonBlack {
  background-color: black;
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

#header-custom .buttonBlack:hover {
  color: #000;
  background: white;
  border: none;
}

#header-custom .titleWebloo {
  font-size: 30px;
  font-weight: bold;
}

#header-custom .header-container {
  position: fixed;
  width: 45%;
  margin: 1rem;
  background-color: white;
  justify-content: flex-start;
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  transform: scale(0);
  transform-origin: top right;
  transition: transform 1s ease-in-out;
  z-index: 1000;
}

@keyframes slideInFromTopRightToBottomLeft {
  0% {
    transform: translate(10%, -10%) scale(0);
    opacity: 0;
  }
  100% {
    transform: translate(0%, 0%) scale(1);
    opacity: 1;
  }
}

@keyframes vanishAndBlur {
  0% {
    transform: scale(1);
    filter: blur(0px);
    opacity: 1;
  }
  100% {
    transform: scale(1.1) translateX(10px) translateY(-10px);
    filter: blur(6px);
    opacity: 0;
  }
}

#header-custom .sublinks{
  background: black;
  color: white;
  width: 50%;
  padding: 2rem 0;
  padding-bottom: 1rem;
  border-radius: 0 30px 30px 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
}

#header-custom .social{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 2rem;
}

#header-custom .social link{
  cursor: pointer;
}


.magnetic {
  margin: -5px;
  padding: 5px;
  display: inline-block;
  border-radius: 50%;
  cursor: pointer;
  /*border: 1px solid #000; //use this for debugging*/
}




#header-custom .header-container.active {
  max-width: 700px; 
  display: flex;
  animation: slideInFromTopRightToBottomLeft 0.4s ease forwards;
}

#header-custom .header-container.closing {
  animation: vanishAndBlur 0.6s ease forwards;
}



#header-custom .close-container {
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
}



#header-custom .close-container img {
  width: 20px;
  transition: transform 0.4s ease;
  cursor: pointer;
}

#header-custom .close-container img:hover {
  transform: rotate(90deg);
}

#header-custom .about a {
  margin-bottom: 0;
}

/* Style for header links list items */
/* Style for header links list items */
#header-custom .header-links li {
  font-weight: 400;
  cursor: pointer;
  font-size: 38px;  /* Original font size */
  position: relative;
  overflow: hidden;
  background-color: transparent;
 
  transition: background-color 0.3s ease, color 0.3s ease; /* Transition both background and color over 0.3s */
}

/* When hovering over the list items, change the background to black and the text color of the child 'a' to white */
#header-custom .header-links li:hover {
  background-color: black;
  transition: background-color 0.3s ease;
}

/* Change the color of the anchor tag within the hovered 'li' */
#header-custom .header-links li:hover a {
  color: white;
  transition: color 0.3s ease; /* Ensure smooth color transition */
}

#header-custom .header-links li a {
  font-weight: lighter;
  padding: 0.5rem 1rem;
  text-decoration: none;
  font-size: 28px; /* Restore the original font size */
  transition: color 0.3s ease; /* Ensure smooth color change */
  display: block;
}

/* Active state: keep the background black and text white */
#header-custom .header-links li.active {
  background-color: black;
}

#header-custom .header-links li.active a {
  color: white;
}


#header-custom .headerContainer-links {
  display: flex;
  gap: 3rem;
  flex-direction: column;
  justify-content: space-between;
  width: 50%;
  padding: 2rem 0px;
  padding-bottom: 1rem;
}

#header-custom .info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
 
}

#header-custom .social-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

#header-custom .beInTouch {
  color: #ABA7A7;
  font-size: 18px;
  text-decoration: none;
  font-weight: lighter;
  margin-bottom: 1rem;
}

#header-custom #logo img {
  cursor: pointer;

}

#header-custom .social-links li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 200;
  cursor: pointer;
  font-size: 16px;
  padding: 0.5rem 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.link__content{
  align-items: center;
  display: flex;
  justify-content: start;
}

.link__text {
  display: inline-block;
  line-height: .7em !important;

}

.link__icon {
  display: inline-block;
  display: flex;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.link__arrow {
  display: inline-flex;
  transform: rotate(-45deg);
  transition: transform .35s ease;
}

.link__arrow_clone {
  bottom: -100%;
  left: -100%;
  position: absolute;
  transform: translate(0) rotate(-45deg);
  z-index: 2;
}

.link__content:focus .link__arrow, .link__content:focus .link__arrow_clone, .link__content:hover .link__arrow, .link__content:hover .link__arrow_clone, .link_hovered .link__arrow, .link_hovered .link__arrow_clone{
  transform: translate(100%, -100%) rotate(-45deg);
}



#header-custom .email-header {
  margin: 0;
  font-size: 18px;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  padding: 1rem 2rem;
  gap: 12px;
}

#header-custom .email-header img {
  margin-left: 5px;
  transition: 0.3s;
}

#header-custom .email-header:hover img {
  transform: translateX(5px) rotate(45deg);
}

#header-custom .home {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-family: Manrope;
  margin: 0 2rem;
}

#header-custom .home-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
}

#header-custom .home-title {
  font-size: 58px;
}

#header-custom .home-paragraph {
  font-size: 16px;
  margin-top: 1rem;
}




@media screen and (max-width: 1050px) {

  #header-custom .none {
    display: none;
  }

  #header-custom .header-container {
    right: 10px;
    width: 90%;
   
    margin: 10px;
  }
}

@media screen and (max-width: 690px) {
  #header-custom .header-container {
   
    width: 92%;
    

  }
  #header-custom .header-links li {
    
    font-size: 33px;
    
  
  }
  
  
  #header-custom .header-links a {
    
    font-size: 30px;
  
  }

  #header-custom .close-container {
    top: 20px;
    right: 20px; 
  }
  
  
  
  #header-custom .close-container img {
    width: 20px;
  }

}




@media screen and (max-width: 600px) {


  #header-custom  .social-links li {
    font-size: 12px;
  }

  #header-custom  .header-links li a {
   
    padding: 0.5rem 1rem;
        text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
    display: block;
}

#header-custom  .social-links li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 200;
}

#header-custom  .email-header {
  margin: 0;
  font-size: 10px;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  padding: 1rem ;
  gap: 10px;
}

#header-custom  .social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0.5rem 1rem;
  gap: 0.5rem;
}

#header-custom  .social-links {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

}


@media screen and (max-width: 400px) {


#header-custom  .header-container {
  position: absolute;
  width: 95%;
  right: 10px;
  margin: 0;


}

#header-custom  .header-links li {

  margin-bottom: 0;

}

#header-custom  .header-links a {

  font-size: 28px;


}
}