/* CSS Document */

.page-template-team-template .site-inner .wrap {
  max-width: 100%;
}

.octane-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.octane-background img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.octane-content {
    position: relative;
    height: 100%;
}

.octane-position {
    position: relative;
}

.right-divider {
    width: 50%;
    height: 20px;
    background: var(--blue);
    border-radius: 12px 0px 0px 12px;
    margin-left: auto;
}

.left-divider {
    width: 50%;
    height: 20px;
    background: var(--blue);
    border-radius: 0px 12px 12px 0px;
    margin-right: auto;
}

/* Hero */

.hero {
    background: #072f54;
}

.hero-flex {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 250px;
}

.hero-title {
    display: block;
    font-family: var(--main-font);
    color: var(--style-sec);
    color: white;
    text-transform: uppercase;
    font-size: 70px;
    line-height: 74px;
    animation: jumpUp 1.3s ease;
    padding: 0px 15px;
}

@keyframes jumpUp {
    0% {
        opacity: 0;
        transform: translatey(100px);
    }

    100% {
        opacity: 1;
        transform: translatey(0px);
    }
}

.hero .octane-content {
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(0,113,188,1) 100%);
}

.hero .octane-background img {
    mix-blend-mode: multiply;
    animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* team */

.team-content ,wrap {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
}

.team-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.team-title {
    color: var(--dark-blue);
    text-transform: uppercase;
    position: relative;
    font-size: 40px;
    font-weight: bold;
    margin-left: 20px;
}

.team-title::before {
    content: "";
    height: 10px;
    width: 10px;
    display: block;
    background: var(--blue);
    border-radius: 100%;
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translatey(-50%);
}

.team-card {
  width: calc((100% / 3) - 23px);
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #dee6ee;
  padding: 15px;
  border-radius: 170px 170px 15px 15px;
  text-align: center;
  gap: 15px;
  box-shadow: 3px 3px 15px #0000001A;
}

.team-card:nth-of-type(1) {
    animation: slideUp 1s ease;
}

.team-card:nth-of-type(2) {
    animation: slideUp 1.3s ease;
}

.team-card:nth-of-type(3) {
    animation: slideUp 1.5s ease;
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translatey(150px);
    }

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

.team-card img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 170px;
}

.member-name, .member-title {
  margin: 0px;
}

.member-email::before {
  content: "\f0e0";
  font-family: "Font Awesome 5 Free";
  margin-right: 10px;
}

.member-link {
  background: var(--blue);
  color: white;
  padding: 5px 20px;
  border-radius: 30px;
  font-weight: bold;
  transition: .4s;
  margin-top: auto;
}

.member-link i {
  margin-left: 10px;
}

.member-link:hover {
  color: white;
  transform: scale(1.1);
}












/* responsive */

@media(max-width: 1440px) {
  /* Hero */
    
    .hero-title {
        font-size: 66px;
    }
}

@media(max-width: 1350px) {
  /* Hero */
    
    
    .hero-title {
        font-size: 62px;
    }
    
    .hero-link {
        font-size: 23px;
    } 
}

@meida(max-width: 1250px) {
  /* Hero */
    
    .hero-title {
        font-size: 58px;
    }
}

@media(max-width: 1150px) {
  /* Hero */
    
    .hero-flex {
        height: 250px;
    }
    
    .hero-title {
        font-size: 54px;
    }
    
    .hero-link {
        padding: 0 20px;
    }   
}

@media(max-width: 1024px) {
  /* Hero */
    
    .hero-title {
        font-size: 50px;
    }
  
  .team-card {
    width: calc((100% / 2) - 23px);
    max-width: 300px;
  }

  .team-container:hover .team-card img {
    filter: none;
  }
}

@media(max-width: 768px) {
  /* Hero */
    
    .hero-title {
        font-size: 46px;
    }
}

@media(max-width: 550px) {
  .team-container {
    gap: 10px;
  }
  
  .member-name {
    font-size: 20px;
  }

  .member-title, .member-link {
    font-size: 16px;
  }

  .team-card {
    padding: 7px;
    width: calc(50% - 5px);
  }

  .team-content {
    padding: 40px 10px;
  }

  .member-email {
    display: flex;
    flex-direction: column;
  }

  .member-email::before {
    margin-right: 0px;
  }

  .member-email {
    font-size: 14px;
  }
}

@media(max-width: 450px) {
  /* Hero */
    
    .hero-flex {
        height: auto;
    }
    
    .hero-title {
        font-size: 42px;
        line-height: 40px;
        margin: 0px;
        padding: 40px 20px;
    }
}

@media(max-width: 350px) {
  /* Hero */

    
    .hero-link {
        width: 100%;
    }   
}

/*# sourceMappingURL=team-page.css.map */
