@font-face {
    font-family: "Lufga";
    src: url("../fonts/Lufga-Thin.woff2") format("woff2");
    font-weight: 100;
    font-style: normal;
}
@font-face {
    font-family: "Lufga";
    src: url("../fonts/Lufga-ThinItalic.woff2") format("woff2");
    font-weight: 100;
    font-style: italic;
}

@font-face {
    font-family: "Lufga";
    src: url("../fonts/Lufga-ExtraLight.woff2") format("woff2");
    font-weight: 200;
    font-style: normal;
}
@font-face {
    font-family: "Lufga";
    src: url("../fonts/Lufga-ExtraLightItalic.woff2") format("woff2");
    font-weight: 200;
    font-style: italic;
}

@font-face {
    font-family: "Lufga";
    src: url("../fonts/Lufga-Light.woff2") format("woff2");
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: "Lufga";
    src: url("../fonts/Lufga-LightItalic.woff2") format("woff2");
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: "Lufga";
    src: url("../fonts/Lufga-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Lufga";
    src: url("../fonts/Lufga-Italic.woff2") format("woff2");
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: "Lufga";
    src: url("../fonts/Lufga-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: "Lufga";
    src: url("../fonts/Lufga-MediumItalic.woff2") format("woff2");
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: "Lufga";
    src: url("../fonts/Lufga-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: "Lufga";
    src: url("../fonts/Lufga-SemiBoldItalic.woff2") format("woff2");
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: "Lufga";
    src: url("../fonts/Lufga-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: "Lufga";
    src: url("../fonts/Lufga-BoldItalic.woff2") format("woff2");
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: "Lufga";
    src: url("../fonts/Lufga-ExtraBold.woff2") format("woff2");
    font-weight: 800;
    font-style: normal;
}
@font-face {
    font-family: "Lufga";
    src: url("../fonts/Lufga-ExtraBoldItalic.woff2") format("woff2");
    font-weight: 800;
    font-style: italic;
}

@font-face {
    font-family: "Lufga";
    src: url("../fonts/Lufga-Black.woff2") format("woff2");
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: "Lufga";
    src: url("../fonts/Lufga-BlackItalic.woff2") format("woff2");
    font-weight: 900;
    font-style: italic;
}
body {
    padding: 0;
    margin: 0;
    font-family: "Lufga", sans-serif;
}

.font-inter {
    font-family: "Lufga", sans-serif;
}

.active {
    color: #00bbf5;
}

.view {
    padding-left: 1rem; /* px-4 */
    padding-right: 1rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* sm breakpoint (640px) */
@media (min-width: 640px) {
    .view {
        padding-left: 3rem; /* px-12 */
        padding-right: 3rem;
    }
}

/* md breakpoint (768px) */
@media (min-width: 768px) {
    .view {
        padding-left: 4rem; /* px-16 */
        padding-right: 4rem;
    }
}

/* lg breakpoint (1024px) */
@media (min-width: 1024px) {
    .view {
        padding-left: 5rem; /* px-20 */
        padding-right: 5rem;
    }
}

/* xl breakpoint (1280px) */
@media (min-width: 1280px) {
    .view {
        padding-left: 5rem;
        padding-right: 5rem;
    }
    .animate-wave {
        animation: waveMove 6s linear infinite;
    }
    .butn::before {
        background: #fff;
        content: "";
        height: 155px;
        opacity: 0;
        position: absolute;
        top: -50px;
        transform: rotate(35deg);
        width: 30px;
        left: -50%;
        transition: all 3000ms cubic-bezier(0.19, 1, 0.22, 1);
    }

    .butn__new:hover::before {
        left: 120%;
        opacity: 0.5;
    }
}

/* 2xl breakpoint (1536px) */
@media (min-width: 1536px) {
    .view {
        padding-left: 5rem;
        padding-right: 5rem;
    }
}

@keyframes waveMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
