@font-face{
  font-family: 'Poppins';
  src: url('../font/Poppins-Regular.ttf');
}
html, body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, blockquote, dl, dd {
  font-family: 'Poppins';
}
.logo{
    background-color: white;
    border-radius: 50%;
}
.hero{
    height: 85vh;
    width: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    position: relative;
}
.gradient{
    height: 85vh;
    width: 100%;
    background: linear-gradient(-5deg, rgba(0, 48, 146, 0.5), rgba(0, 48, 146, 0.5));
    position: absolute;
    z-index: 10;
}
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: 0;
}
.text-wrapper{
    position: relative;
    z-index: 100;
}
.banner {
    background: linear-gradient(-5deg, rgba(0, 48, 146, 0.5), rgba(0, 48, 146, 0.5)), url('../img/hero.webp');
    background-size: cover;
    background-position: center;
}
.logo-slider {
    animation: scroll 15s linear infinite;
}
.logo-wrapper > img {
    filter: grayscale(100%);
    transition: filter 0.3s ease-in-out;
}

.logo-wrapper > img:hover {
    filter: grayscale(0%);
}

.logo-container:hover .logo-slider {
    animation-play-state: paused;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}




