@import url('https://fonts.googleapis.com/css2?family=League+Spartan');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'League Spartan', sans-serif;
}

.nav-item {
    padding: 0 20px;
}

.nav-link {
    font-weight: 400;
    font-size: 24px;
    line-height: 22px;
    color: white;
    border-bottom: 4px solid #ed1c2300;
}

.nav-link:hover {
    font-weight: 700;
    color: white !important;
    border-bottom: 4px solid #ED1C23;

}

#homebanner {
    background-image: url("/images/Bg\ 1.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.homenav{
  position: fixed;
  bottom: 5%;
  right: 5%;
  z-index: 1;
}
#home-link {
  opacity: 0;
  transition: opacity 0.5s ease;
}

#home-link.visible {
  opacity: 1;
}

.homenav:hover{
  border: 0;
}
.hometext h1 {
    font-weight: 700;
    font-size: 70px;
    line-height: 64px;
    color: #ED1C23;
}

.solution h3 {
    font-weight: 500;
    font-size: 55px;
    line-height: 51px;
    color: #ED1C23;
}

.sol-card h5 {
    font-weight: 500;
    font-size: 24px;
    line-height: 22px;
    color: #000000;
}

#solution-section {
    background: #F2F2F2;

}

#goalbg {
    background-image: url("/images/goalbg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 20px 0;
}

#goalbg h4 {
    font-weight: 500;
    font-size: 52px;
    line-height: 48px;
    color: #ED1C23;

}

#goalbg h6 {
    font-weight: 400;
    font-size: 38px;
    line-height: 35px;
    color: #000000;
    padding: 20px 0;
}

#goalbg p {
    font-weight: 500;
    font-size: 24px;
    line-height: 22px;
    color: #ED1C23;
    padding: 20px;
    margin-bottom: 0;

}

#goalbg .card img {
  width:10%;
}
@media only screen and (max-width: 400px){
    #goalbg .card img{
        width: 25%;
    }
}
#about{
  background-color:#F2F2F2;
}
#about p {
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  color: #575757;
  margin-bottom: 0;
}
#about h2 {
  font-weight: 500;
  font-size: 55px;
  line-height: 51px;
  color: #ED1C23;
  text-align: center;
}
.urlfooter h5 {
    font-weight: 600;
    font-size: 32px;
    line-height: 29px;
    color: #000000;
}

#experience {
    background-image: url("/images/Bg\ 1.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#experience h2 {
    font-weight: 500;
    font-size: 55px;
    line-height: 51px;
    color: #ED1C23;
}
#experience p {
font-weight: 400;
font-size: 40px;
line-height: 37px;
color: #000000;
padding: 20px 0;
}
#experience small {
  font-weight: 400;
  font-size: 24px;
  line-height: 37px;
  color: #575757;
  padding: 20px 0;
}
.reveal {
    position: relative;
    opacity: 0;
  }
  
  .reveal.active {
    opacity: 1;
  }
   .active.fade-up{
    animation: fade-up 0.7s ease-in;
  }
  .active.fade-bottom {
    animation: fade-bottom 0.7s ease-in;
  }
  .active.fade-left {
    animation: fade-left 0.7s ease-in;
  }
  .active.fade-right {
    animation: fade-right 0.7s ease-in;
  }
  .active.zoom-in{
    animation: zoom-in-zoom-out 1s ease;
  }
  @keyframes fade-up {
    0% {
      transform: translateY(-50px);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  @keyframes fade-bottom {
    0% {
      transform: translateY(50px);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  @keyframes fade-left {
    0% {
      transform: translateX(-100px);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  @keyframes fade-right {
    0% {
      transform: translateX(100px);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }

  @keyframes zoom-in-zoom-out {
    0% {
      transform: scale(0.5, 0.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }