*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
:root {
    --dark-blue: #ffffff;
  }
body {
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: rgb(187, 187, 187);
    /* background-image: url('img/background.jpg');
    background-size: cover; */
    min-height: 100vh;
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}
.header-container .content {
    text-align: center;
    display: flex;
    flex-direction: column;
    width: 90%;
    align-items: center;
    margin-top: 100px;
}
.header-container h2 {
    color: #1174df;
    font-size: 2rem;
    margin-bottom: 1.2rem;
}
.header-container h1 {

    color: #1b1c1d;
    font-size: 400%;
    margin-bottom: 1.2rem;
}
.header-container span {
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #113878;
}
.main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
    margin-bottom: 60px;
}
.logos-container {
    display: flex;
    gap : 5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 80%;
}
.logos-container .logo {
    position: relative;
    width: 250px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(255, 255, 255);
    border-radius: 2rem;
    filter: blur(45deg);
    box-shadow: 1px 1px 10px #0c2d43;
}
.logos-container .logo img {
    width: 142px;
    height: 113px;
}
.logo:hover {
    filter: opacity(75%)
}
.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 50px 0;
}
.contact h4 {
    margin-bottom: 20px;
    font-size: 1rem;
    color: rgb(69, 68, 68);
    text-align: center;
}
.contact h3 {
    margin-bottom: 20px;
    color: rgb(12, 12, 12);
    text-align: center;
}
footer {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #145C8C;
    width: 100%;
    height: 50px;
    position: absolute;
    bottom: 0px;
}
@keyframes scale-logo {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }
  
  .logos-container .logo:hover {
    animation: scale-logo 1s ease-in-out infinite;
  }
  @keyframes bounce-text {
    0% {
      transform: translateY(-75px);
    }
    25% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-45px);
    }
    75% {
      transform: translateY(0px);
    }

  }
  
  .header-container .content h1,
  .header-container .content h2 {
    animation: bounce-text 2s ease-in-out ;
  }
  
  
  
  
  