@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {

    color: #fff;
    font-family: "Ryker", sans-serif;
    overflow-x: hidden;

}

html {
    scroll-behavior: smooth;
}

.arrow-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 18px 22px;
    border-radius: 50%;
    border: 1px solid #e4e4e4;
    color: #000;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 9999;
}

.arrow-top:hover {
    background: #f4f2f2 !important;
}

.arrow-active {
    opacity: 1;
    visibility: visible;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

body {
    background: #F6F6F6;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0;
    font-family: "Raleway", sans-serif;

}

h2 {
    font-size: 2.5rem;
    font-weight: 500;
    margin: 0;
    color: rgb(44, 55, 117) !important;
    font-family: "Raleway", sans-serif;
}

h4,
h5,
h6 {
    font-weight: 500;
    font-family: "Raleway", sans-serif;
}

h4 {
    font-size: 18px;
}

ul {
    margin: 0 !important;
    padding: 0 !important;
}

a {
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: .3s;
    font-size: 14px;
}

p {
    color: var(--p-color);
    line-height: 24px;
    margin: 0 !important;
}

@media (max-width: 1024px) {
    h1 {
        font-size: 2rem;

    }

    h2 {
        font-size: 2rem;
    }

    p,
    a,
    input,
    label {
        font-size: .875rem !important;
    }

    .stats article p {
        font-size: 2.5rem !important;
    }

    .stats h3 {
        font-size: .875rem !important;
    }

    .container,
    .header-container,
    .contact-title {
        padding: 0 10px !important;
    }

    .plan-container {
        padding: 0 10px !important;
    }

    .temoignage {
        padding: 0 10px !important;
    }

    .arrow-top {
        display: none;
    }
}