:root {
    --white-color: #fff;
    --purple-color: rgb(165, 0, 165);
    --header-height: 110px;
    --navbar-height: 34px;
    --menu-height: calc(var(--header-height) - var(--navbar-height));
}

html {
    box-sizing: border-box;
    line-height: 1.6rem;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 62.5%;
}

body {
    font-family: "Poppins", "Lato", sans-serif;
    margin: 0;
    scroll-behavior: smooth;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

.grid {
    width: 1500px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 10px;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* -------------- Submenu ------------------ */
.header__submenu-1,
.header__submenu-2,
.header__submenu-3,
.header__submenu-4,
.header__submenu-5,
.header__submenu-6 {
    left: -5%;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes growth {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes inputOut {
    0% {
        width: 0px;
    }

    100% {
        width: 400px;
    }
}

@keyframes showSlide {
    from {
        opacity: 0.4;
    }

    to {
        opacity: 1;
    }
}

.common-link:hover {
    color: rgb(204, 102, 255) !important;
}


.fixed-menu {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 5;
}