@import url('../fonts/load.css');
@import url('navbar.css');
@import url('header.css');
@import url('about.css');
@import url('features.css');
@import url('pricing.css');
@import url('faq.css');
@import url('footer.css');

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #1C2541;
}

h1, p, span, a, button {
    color: #fff;
}

section {
    height: 100vh;
    overflow-x: clip;
}

.flex {
    display: flex;
}

.flex-horizontal {
    flex-direction: row;
}

.flex-vertical {
    flex-direction: column;
}

.flex-item {
    flex: 1;
}

.flex-stretch {
    align-items: stretch;
}

.grid {
    display: grid;
}

.grid-4-c {
    grid-template-columns: repeat(4, 1fr);
}

.footer-waves {
    position: fixed;
    bottom: -20%;
    left: 0;
    width: 100%;
    transform: scaleY(0.5);
    z-index: -1;
    user-select: none;
}

@media screen and (max-width: 1100px) {
    .footer-waves {
        bottom: -10%;
    }
}

@media screen and (min-width: 2000px) {
    .footer-waves {
        bottom: -35%;
    }
}

@keyframes slide-right {
    0% {
        transform: translateX(-75px);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes slide-left {
    0% {
        transform: translateX(75px);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes opacity-and-scale {
    0% {
        opacity: 0;
    }
    49% {
        opacity: 0;
    }
    50% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes opacity-and-translateX {
    0% {
        opacity: 0;
    }
    49% {
        opacity: 0;
    }
    50% {
        transform: translateX(75px);
        opacity: 1;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}