:root {
  --primary-background: #dee0e5;
  --primary-white: #ffffff;
  --primary-black: #01020a;
  --primary-orange: #e88b16;
  --primary-lightGray: #cccccc;
  --primary-darkGray: #666;
  --primary-green: #65ce91;
  --primary-red: #f05252;
  --primary-blue: #6b9efc;
}

html,
body {
    height: 100%;
    font-family: "Poppins", sans-serif;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 2%;
}

/* HEADER */

header.menu-mobile{
    display: none;
}

header{
    padding: 15px 0;
}

header > .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .logo img{
    width: 6vw;
}

/* FOOTER */

footer{
    width: 100%;
    position: relative;
    padding: 40px 0;
    background-color: rgb(17 24 39);
}

footer > .container img{
    filter: brightness(0) invert(1);
    margin: 0 0 10px 0;
}

footer > .container{
    display: flex;
    justify-content: space-between;
}
footer .area{
    width: calc(100% / 4);
}

footer .area h2{
    font-size: 1.4vw;
    color: #fff;
    font-weight: 500;
}

footer .area ul{
    margin: 15px 0 0 0;
}

footer .area ul li,
footer .area p{
    margin: 0 0 10px 0;
    color: hsl(224, 13%, 65%);
    text-decoration: none;
    font-size: 1vw;
}

footer .area ul li a{
    color: hsl(224, 13%, 65%);
    text-decoration: none;
}

footer .area p{
    color: hsl(224, 13%, 65%);
}

footer .final-text{
    width: 80%;
    margin: 40px auto 0 auto;
    color: #fff;
    text-align: center;
    border-top: 0.5px solid hsl(225, 14%, 23%);
    padding: 40px 0 0 0;
}

  .slide-menu{
    width: 100% !important;
    transition: 0.3s !important;
    padding: 20px !important;
  }

@media screen and (max-width: 1025px) {
    
    /* HEADER */

    html,
    body {
        height: auto;
    }

    header.menu-desktop{
        display: none;
    }

    header.menu-mobile{
        display: flex;
    }

    header .logo img{
        width: 8vw;
    }

    header.menu-mobile .trigger-menu span{
        font-size: 40px;
        color: #666;
        cursor: pointer;
    }

    header.menu-mobile .content-menu{
        width: 0;
        overflow: hidden;
        height: 100vh;
        position: fixed !important;
        padding: 0;
        left: 0;
        top: 0;
        background-color: #fff;
        transition: 1s;
        z-index: 9999999 !important;

    }

    .open-menu{
        width: 100% !important;
        padding: 20px !important;
        transition: 1s;
    }

    header.menu-mobile .content-menu .top{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* FOOTER */

    footer > .container {
        flex-direction: column;
        align-items: center;
    }

    footer > .container img {
        width: 20vw;
    }

    footer .area{
        width: 100%;
        padding: 0 0 15px 0;
    }

    footer .area p,
    footer .area ul li,
    footer .area ul li a {
        font-size: 1.6vw;
    }

    footer .area h2 {
        font-size: 2.4vw;
    }
}

@media screen and (max-width: 500px) {

    /* HEADER */

    header.menu-mobile .trigger-menu span{
        font-size: 30px;
    }

    header .logo img{
        width: 20vw;
    }

    /* FOOTER */

    footer > .container img {
        width: 40vw;
    }

    footer .area p,
    footer .area ul li,
    footer .area ul li a {
        font-size: 3vw;
    }

    footer .area h2 {
        font-size: 6vw;
    }
    footer .final-text{
        width: 100%;
        font-size: 12px;
    }
}