:root {
    --main-color: #FAFAFA;
    --secondary-color: #090909;
    --tertiary-color: #E64344;

    --text-title-big: 2.5em;
    --text-title-medium: 2em;
    --text-title-small: 1.5em;
}

footer{
    background-image: url("../assets/footer__background.webp");
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 50vw;
    background-color: var(--tertiary-color);
    background-blend-mode: multiply;

    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: fit-content;
    width: 100vw;
    font-size: 3em;
    padding-top: 5rem;
    padding-bottom: 5rem;
    font-weight: 400;
    font-style: normal;
    font-optical-sizing: auto;
    font-family: "Darker Grotesque", sans-serif;
}

footer ul{
    color: var(--main-color);
    width: 100%;
}

footer ul li{
    width: 100%;
    transition: transform 0.3s ease-in-out;
    padding-left: 10vw;
}

footer ul li a{
    display: block;
    width: 100%;
    color: var(--main-color);
    text-decoration: none;
}

footer ul:hover > li:not(:hover){
    opacity: 0.5;
  }

  footer ul li:hover{
    transform: translateX(3rem);
    cursor: pointer;
  }




@media (max-width: 1100px){

    footer{
        background-image: url("../assets/footer__background.webp");
        background-position: right top;
        background-repeat: no-repeat;
        background-size:80vw;
        background-color: var(--tertiary-color);
        background-blend-mode: multiply;
        padding-top: 15rem;
    
        font-size: 2em;
       
     
    }
}