@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

@font-face {
    font-family: 'Chaloops-Bold';
    src: url('Chaloops-Bold.ttf');
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body{
    margin :0;
    background-image: url('img/0.png');
    font-family: 'Chaloops-Bold';
    font-size: 30px;
}
.topnav {
  overflow: hidden;
}
.topnav a {
  float: right;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  font-family: 'Chaloops-Bold';
}
.topnav a:hover {
  background-color: #ddd;
  text-decoration: none;
  color:black;
}
.topnav a.active {
  background-color: #34A6CD;
  color: white;
}

.banner{
    height: 100vh;
    position: relative;
    overflow: hidden;
}
.banner .bg{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: auto 100%;
    background-position: center bottom;
    transition: 0.1s;
}
.banner .bg-1{
    background-image: url('img/0.png');
}
.banner .bg-2{
    background-image: url('img/1.png');
}
.banner .bg-3{
    background-image: url('img/2.png');
}

.banner .bg-4{
    background-image: url('img/3.png');
}

.banner .bg-5{
    background-image: url('img/4.png');
}

.banner  h1{
    position: absolute;
    top: 60%;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 6rem;
    font-family: 'Chaloops-Bold';
    color: #fff;
}
.banner  h3{
    position: absolute;
    top: 70%;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 4rem;
    font-family: 'Chaloops-Bold';
    color: #fff;
}
.banner a{
    text-decoration: none;
    color: #fff;
    font-size: 2rem;
}
.intro{
    min-height: 50vh;
    color: #eee;
    display: flex;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.intro img{
    width: 330px;
    height: 330px;
}
.intro p{
    width: 700px;
    max-width: 100%;
    
    text-align: center;
    font-size: 30px;
    font-family: 'Chaloops-Bold';
}
.intro button{
    background-color: #FD0003;
    padding: 10px 50px;
    border: 1px solid #591F1D;
    border-radius: 5px;
    color: #fff;
    font-family: Poppins;
    font-weight: 500;
}

h1{
    font-family: 'Chaloops-Bold';
}

.animation-show{
    transform: translateY(50px);
    opacity: 0;
    transition: 0.7s;
}
.active .animation-show{
    transform: translateY(0);
    opacity: 1;
}
.animation-show:nth-child(2){
    transition-delay: 0.3s;
}
.animation-show:nth-child(3){
    transition-delay: 0.6s;
}
.animation-show:nth-child(4){
    transition-delay: 0.9s;
}
.library{
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    text-align: center;
    color: #fff;
}
.library img{
    width: 90%;
    height: 500px;
    object-fit: cover;
}
.library p{
    font-family: 'Chaloops-Bold';
    font-size: 30px;
}

@media screen and (max-width: 768px){

    .library{
        grid-template-columns: repeat(2, 1fr);
    }
    .library img{
        height: 300px;
    }
}

.container {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
  }

  label{
    font-family: 'Chaloops-Bold';
    color: #591F1D;
  }

  input[type=text], input[type=number], input[type=email], input[type=tel], select, textarea {
    font-family: 'Chaloops-Bold';
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
  }

  input[type=submit] {
    font-family: 'Chaloops-Bold';
    background-color: #34A6CD;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    float: right;
  }
  
  input[type=submit]:hover {
    background-color: #60C29E;
  }
  
    .bottnav{
    background-color: #34A6CD;
    height: 50px;
    width: 100%;
    text-align: center;
  }
  .imgFooter{
    max-height: 2.5rem;
    width: auto;
    margin-top: 2px;
  }