/* Optional, but if used, @charset should be the very first line */
@charset "UTF-8";

/* Optional @layer, if used */
@layer reset;

/* Place @import at the top, right after @charset or @layer */
@import url('https://fonts.googleapis.com/css?family=Open+Sans');


:root {
    --color: #4973ff;
  }
  
  body {
    font-size: 16px;
    font-family: 'Montserrat', sans-sherif;
    margin: 0;
    padding: 0;
  }
  
  .content {
    max-width: 75%;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .hero {
    position: relative;
    color: white;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  
  .hero h2 {
    position: relative;
    z-index: 1;
    font-size: 4.5rem;
    margin: 0 0 10px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.9);
    
    @media screen 
    and (min-device-width: 1200px) 
    and (max-device-width: 1600px) 
    { 
      font-size: 100px;
    }
    @media screen 
    and (min-device-width: 320px) 
    and (max-device-width: 700px) 
    {
      font-size: 25px;
    }
  }
  
  .hero p {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 255);
    line-height: 1.4;
  }
  
  /* ========================= 
        Landing page waves 
    ===========================
  */
  
  .waves {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: #020f38ba;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
    transition: 500ms;
  }
  
  .waves::before,
  .waves::after {
    content: '';
    position: absolute;
    width: 300vw;
    height: 300vw;
    top: -65vw;
    left: 50%;
    transform: translate(-50%, -75%);
  }
  
  .waves::before {
    border-radius: 44%;
    background: rgb(56 160 230 / 44%);
    animation: waves 8s linear infinite;
  }
  
  .waves::after {
    border-radius: 44%;
    background: rgba(0, 123, 255, 0.5);
    animation: waves 15s linear infinite;
  }

  .full-screen-background {
    background-image: url('../img/banner_1.jpg'); /* replace with your image */
    background-size: cover;       /* Ensures the image covers the entire screen */
    background-position: center;  /* Centers the image */
    background-repeat: no-repeat; /* Prevents image from tiling */
    height: 100vh;                /* Makes the element full screen height */
    width: 100%;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
  .full-screen-background {
      background-position: top; /* Adjust position if needed */
  }
}

/* Media query for larger screens */
@media (min-width: 1200px) {
  .full-screen-background {
      background-position: center; /* Center on larger screens */
  }
}

  
  @keyframes waves {
    0% {
      transform: translate(-50%, -75%) rotate(0deg);
    }
    
    100% {
      transform: translate(-50%, -75%) rotate(360deg);
    }
  }


.accordion-header:hover {
  background-color: #e0e0e0; /* Change to desired hover color */
}

.accordion-content {
  padding: 10px;
  background-color: #fff;
  transition: max-height 0.3s ease; /* Apply transition for smooth animation */
  max-height: 0;
  overflow: hidden;
}

.accordion-item:hover .accordion-content {
  max-height: 1000px; /* Adjust to a large enough value to accommodate content */
}


.team4 {
  font-family: "Montserrat", sans-serif;
	color: #8d97ad;
  font-weight: 300;
}

.team4 h1, .team4 h2, .team4 h3, .team4 h4, .team4 h5, .team4 h6 {
  color: #3e4555;
}

.team4 .font-weight-medium {
	font-weight: 500;
}

.team4 h5 {
    line-height: 22px;
    font-size: 18px;
}

.team4 .subtitle {
    color: #8d97ad;
    line-height: 24px;
		font-size: 13px;
}

.team4 ul li a {
  color: #8d97ad;
  padding-right: 15px;
  -webkit-transition: 0.1s ease-in;
  -o-transition: 0.1s ease-in;
  transition: 0.1s ease-in;
}

.team4 ul li a:hover {
  -webkit-transform: translate3d(0px, -5px, 0px);
  transform: translate3d(0px, -5px, 0px);
	color: #316ce8;
}
