@font-face {
    font-family: "ga";
    src: url("../fonts/SuisseIntl-Regular.otf"),
        url("../fonts/SuisseIntl-Thin.otf"),
        url("../fonts/SuisseIntl-Bold.otf"),
        url("../fonts/SuisseIntl-Medium.otf");
    font-style: normal;
    font-display: swap;
}

* {
    font-family: "ga" !important;
}

.header-bg-img {
    background-image: url("../wtheq/part-one/bg-one.webp");
    background-repeat: no-repeat;
}

.animation-img {
    position: relative;
    animation: updown 4s ease-in-out infinite;
}

@keyframes updown {
    0% {
        top: 0;
    }
    50% {
        top: 10px;
    }
    100% {
        top: 0;
    }
}


