/* police */
@font-face {
    font-family: roboto;
    src: url('../../assets/font/Roboto-Black.ttf');
}
@font-face {
    font-family: opensans;
    src: url('../../assets/font/OpenSans-Medium.ttf');
}
.block__title, h1, h3 {
    font-family: roboto;
}
p {
    font-family: opensans;  
}
/*head*/
.mask-custom {
    /*background-color: #c28918;*/
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(255,255,255,1) 28%, rgba(194,137,24,1) 41%);
}
.nav-link {
    color: #fff !important;
    font-weight: normal;
}
.nav-link:hover {
    color: #288308 !important;
}

/* content */
#intro {
    background-image: url('../../assets/pictures/fibec-banner.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}
#intro h1 {
    font-size: 55px;
    color: white;
    text-shadow: 1px 1px 2px black;
}
#intro h1 span{
    font-size: 30px;
}
.block__title {
    display: block;
    position: relative;
    width: 80%;
    padding-left: 2%;
    color: #188915;
    font-size: 28px;
    font-weight: 600;
}
.block__title:before {
    content: "";
    display: block;
    position: absolute;
    height: 1px;
    width: 110%;
    bottom: -5px;
    left: 2%;
    background-color: #c28918;
}
.block__title:after {
    content: "";
    display: block;
    position: absolute;
    height: 12px;
    width: 12px;
    bottom: -10px;
    left: 0%;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #c28918;
}

.block__title-h3 {
    font-size: 23px;  
}

/* footer */
.footer {
    position: relative;
    width: 100%;
    background: #c28918;
    min-height: 100px;
    padding: 20px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 130px;
  }
  
  .social-icon,
  .menu {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
  }
  
  .social-icon__item,
  .menu__item {
    list-style: none;
  }
  
  .social-icon__link {
    font-size: 2rem;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
  }
  .social-icon__link:hover {
    transform: translateY(-10px);
  }
  
  .menu__link {
    font-size: 1.2rem;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
    text-decoration: none;
    opacity: 0.75;
    font-weight: 300;
  }
  
  .menu__link:hover {
    color: #288308;
  }

  .menu__link-footer {
    font-size: 1rem;
    color: #fff;
    display: inline-block;
    transition: 0.5s;
    text-decoration: none;
    opacity: 0.75;
    font-weight: 300;
  }
  
  .menu__link-footer:hover {
    color: #288308;
  }
  
  .footer p {
    color: #fff;
    margin: 15px 0 10px 0;
    font-size: 1rem;
    font-weight: 300;
  }
  
  .wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("../../assets/pictures/wave2.png");
    background-size: 1000px 100px;
  }
  
  .wave#wave1 {
    z-index: 1000;
    opacity: 1;
    bottom: 0;
    animation: animateWaves 4s linear infinite;
  }
  
  .wave#wave2 {
    z-index: 999;
    opacity: 0.5;
    bottom: 10px;
    animation: animate 4s linear infinite !important;
  }
  
  .wave#wave3 {
    z-index: 1000;
    opacity: 0.2;
    bottom: 15px;
    animation: animateWaves 3s linear infinite;
  }
  
  .wave#wave4 {
    z-index: 999;
    opacity: 0.7;
    bottom: 20px;
    animation: animate 3s linear infinite;
  }

/* teams */
.team .section-title .main-team-subheading {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaaaaa;
  }
  .team .section-title .main-team-subheading::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: #556270;
    margin: 4px 10px;
  }
  .team .main-team-heading {
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    color: #556270;
  }
  .team .member {
    position: relative;
    box-shadow: 0px 2px 15px rgba(85, 98, 112, 0.08);
    padding: 30px;
    border-radius: 4px;
    background: #fff;
  }
  .team .member .pic {
    overflow: hidden;
    width: 140px;
    border-radius: 4px;
  }
  .team .member .pic img {
    transition: ease-in-out 0.3s;
  }
  .team .member:hover img {
    transform: scale(1.1);
  }
  .team .member .member-info {
    padding-left: 30px;
  }
  .team .member .member-heading {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 20px;
    color: #556270;
    line-height: 1.2;
  }
  .team .member span {
    display: block;
    font-size: 15px;
    padding-bottom: 10px;
    position: relative;
    font-weight: 500;
  }
  .team .member span::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 1px;
    background: #dee2e6;
    bottom: 0;
    left: 0;
  }
  .team .member .member-para {
    margin: 10px 0 0 0;
    font-size: 14px;
  }

/* spacing */
.mt-10 {
    margin-top: 100px !important;
}
.mt-15 {
    margin-top: 150px !important;
}
.mt-20 {
    margin-top: 200px !important;
}

@keyframes animateWaves {
    0% {
      background-position-x: 1000px;
    }
    100% {
      background-positon-x: 0px;
    }
  }
  
  @keyframes animate {
    0% {
      background-position-x: -1000px;
    }
    100% {
      background-positon-x: 0px;
    }
  }

