
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Elms+Sans:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
    
  }
  
  
  body,
  html {
    padding: 0;
    margin: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

  }
  p {
    font-size: 1.1rem;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
    color: hsl(210, 16%, 15%);
    text-align: justify;
  
  }
  h1 {
    font-size: 30px;
    font-weight: 200;
  }
  
  
  a {
    text-decoration: none;
    color: #003b58;
  }

  .line-info {
    transition: all .6s ease-out;
    transform: scale(0);
    background-color: #fdd568;
    height: 1px;
    width: 100%;

}
.line-info-animation {
    transform: scale(1);
}
  .line-footer {
    transition: all .6s ease-out;
    transform: scale(0);
    background-color: #fdd568;
    height: 1px;
    width: 40vw;
  }
  .line-footer-animation {
    transform: scale(1);
  } 
  .line-left {
    transition: all .6s ease-out;
    transform: scale(0);
    background-color: #fdd568;
    height: 1px;
    width: 40vw;
  }
  .line-left-animation {
    transform: scale(1);
  } 
  .line-right {
    transition: all .6s ease-out;
    transform: scale(0);
    background-color: #fdd568;
    height: 1px;
    width: 40vw;
  }
  .line-right-animation {
    transform: scale(1);
  } 

  .fadeIn-photo {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.4s ease-in-out;
  }
  .fadIn-photo-animation {
    opacity: 1;
    transform: translate(0);
  }
  .fadeIn-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all .9s ease-in-out;
}
.fadIn-up-animation {
   opacity: 1;
   transform: translateY(0);
}
.fadeIn-down {
    opacity: 0;
    transform: translateY(-20px);
    transition: all .6s .6s ease-out;
}
.fadIn-down-animation {
   opacity: 1;
   transform: translateY(0);
}.fadeIn-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all .6s 1s ease-out;
}
.fadIn-left-animation {
 opacity: 1;
 transform: translateX(0);
}
  .footer {
    background-color: #A3B9D0;
    padding-top: 3rem;
    margin: auto 0;
    text-align: left;
  }
  .footer-text {
    padding: 20px 0;
    
  }
  .footer-text p {
    text-transform: uppercase;
    font-size: 1rem;
    text-align: center; 
  }
  .footer ul li a {
    list-style-type: none;
}


  :active, :hover, :focus {
  outline: 0!important;
  outline-offset: 0;
  }
  ::before,
  ::after {
    position: absolute;
    content: "";
  }
  .btn-holder {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1000px;
  margin: 10px auto 35px;
}
.btn {
  position: relative;
  display: inline-block;
  width: auto; height: auto;
  background-color: transparent;
  border: none;
  cursor: pointer;
  margin: 0px 0px 15px;
  min-width: 150px;
}
.btn.focus, .btn:focus {
  box-shadow: none;
}
  .btn span {         
    position: relative;
    display: inline-block;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    top: 0; left: 0;
    width: 100%;
    padding: 12px 20px;
    transition: 0.3s;
  }
  .btn.hover-border-10::before,
.btn.hover-border-10::after {
  left: 5%;
  height: 40%;
  width: 2px;
  transition: height 0.2s 0.35s ease-out;
}
.btn.hover-border-10::before {
  top: 50%;
}
.btn.hover-border-10::after {
  bottom: 50%;
}
.btn.hover-border-10:hover::before {
  height: 50%;
  transition: height 0.2s ease-in;   
}
.btn.hover-border-10:hover::after {
  height: 50%;
  transition: height 0.1s ease-in;   
}

.btn.hover-border-10 span::before,
.btn.hover-border-10 span::after {
  width: 0%; height: 0%;
  background: transparent;
  opacity: 0;
  z-index: 2;
}
.btn.hover-border-10 span::after {
  bottom: 0; left: 0%;
  border-bottom: 2px solid #A3B9D0;
  transition: width 0.25s ease-in, opacity 0s 0.35s;   
}
.btn.hover-border-10 span:hover::after {
  width: 100%;
  opacity: 1;
  transition: width 0.25s 0.2s ease-out, opacity 0s 0.2s;   
}
.btn.hover-border-10 span::before {
  top: 0%; left: 0%;
  border-top: 2px solid #A3B9D0;
  border-right: 2px solid #A3B9D0;
  transition: height 0.15s ease-in, width 0.2s 0.15s linear, opacity 0s 0.35s;   
}
.btn.hover-border-10 span:hover::before {
  width: 100%; height: 100%;
  opacity: 1;
  transition: width 0.2s 0.1s linear, height 0.15s 0.3s ease-out, opacity 0s 0.1s;   
}
.btn-4 span {
  color: rgb(28, 31, 30);
  background-color: rgb(245,245,245);
}
.btn-4 span:hover {
  color: #A3B9D0;
}
.btn-4::before,
.btn-4::after {
  width: 15%; height: 2px;
  background-color: #A3B9D0;
  z-index: 2;
}

  @media only screen and (max-width: 500px) {
    
      .footer-text p {
        font-size: 1rem;
      }
      h1 {
        font-size: 25px;
      }

  }
