
.footer {
    width: 100%;
    height: 20%;
    background-color: #10133A;
    position: absolute;
    bottom: 0;
    display: grid;
    grid-template-columns: 40% 30% 30%;
    grid-template-rows: 30% 30% 30% 10%;
}




.footer p {
    font-size: 1.3vw;
    font-family: 'Involve-Regular';
}

.footer-text-1 {
    padding: 2vw;
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 2;
    color: white;
    font-size: 1.6vw;
    display: flex;
    flex-direction: column;
    justify-content: center;


}

.footer-text-2 {
    padding: 2vw;
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 2;
    grid-row-end: 3;
    color: white;
    font-size: 1.6vw;
    display: flex;
    flex-direction: column;
    justify-content: center;


}

.footer-text-3 {
    padding: 2vw;
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 3;
    grid-row-end: 4;
    color: white;
    font-size: 1.6vw;
    display: flex;
    flex-direction: column;
    justify-content: center;


}

.footer-text-4 {
    padding: 2vw;
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 2;
    color: white;
    font-size: 1.6vw;
    display: flex;
    flex-direction: column;
    justify-content: center;


}

.footer-text-5 {
    padding: 2vw;
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 2;
    grid-row-end: 3;
    color: white;
    font-size: 1.6vw;
    display: flex;
    flex-direction: column;
    justify-content: center;


}

.footer-icons {
    padding: 2vw;
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 3;
    grid-row-end: 4;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 50%;

}



.footer-icon {
    width: 3vw;
}

.footer-icon path{
    transition: fill 0.5s ease;
}

.footer-icon:hover path {
    fill: url(#gradient-hover);
    cursor: pointer;
}



.href-text {
    all: initial;
    font-family: 'Involve-Regular';
    color: white;
    font-size: 1.6vw;
    transition: color 0.3s ease;
    cursor: pointer;
}

.href-text:hover {
    color: #EF0195;
}

@media(max-width: 1150px) {
    .footer {
        height: 30vh;
        grid-template-columns: 50% 50%;
        grid-template-rows: 30% 30% 30% 10%;
    }

}

@media(max-width: 850px) {
    .footer {
        height: 45vh;
    }

    .footer p {
    font-size: 1.8vw;
    }

    .href-text {

    font-size: 2.8vw;
    margin-bottom: 0.5vw;

    }

    .footer-icon {
    width: 6vw;
    }


}

@media(max-width: 500px) {
    .footer {
        height: 35vh;
    }

    .footer p {
    font-size: 2.1vw;
    }

    .href-text {

    font-size: 2.9vw;
    margin-bottom: 0.5vw;

    }

    .footer-icon {
    width: 6vw;
    }


}