footer{
    width: 100%;
    height: auto;
}

.footer__container{
    width: 100%;
}

.footer__background{
    width: 100%;
    height: auto;
    background-color:var(--background-blue-color);
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    justify-content: center;
    align-items: center;
}

/* Logo of the institute */

.footer__logo{
    width: 90%;
    height: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer__logo figure{
    width: 200px;
    margin: auto;
}

.footer__logo figure img{
    width: 100%;
}

/* Network */

.network{
    width: 100%;
}

.network h3{
    color: var(--font-white-color);
    text-align: center;
}

.network__items{
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: center;    
    justify-content: center;
    padding: 25px;
}

.network__icons{
    color: var(--font-white-color);
    text-decoration: none;
}

.network__icons:hover{
    color: var(--font-hover-white-color);
    cursor: pointer;
    transition: all .3s ease-in-out;
}

/* Contact */

.contact{
    width: 90%;
    height: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
}

.contact__content{
    width: 100%;
    height: auto;
}

.contact__icons{
    color: var(--font-white-color);
    text-decoration: none;
}

.contact__data{
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact__phone{
    padding: 1rem;
}

.contact__icons{
    display: block;
    text-align: center;
}

.contact h3, .contact__data .contact__phone .data{
    color: var(--font-white-color);
    text-align: center;
    display: block;
    padding-top: 1rem;
}

.contact__data .contact__phone .whatsapp:hover{
    color: var(--font-hover-white-color);
    transition: all .3s ease-in-out;
}

/* Location */

.location{
    width: 90%;
    height: 100%;
    padding-top: 1rem;
    margin: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
}

.location h3, .location__direction .contact__icons, .location__direction .data{
    color: var(--font-white-color);
    text-align: center;
    display: block;
    padding-top: 1rem;
    line-height: var(--line-height-size);
}

.location__map{
    width: 100%;
    height: 200px;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.location__map iframe{
    width: 100%;
    height: 100%;
}

/* Copy and developer*/

.copy__and__developer{
    width: 100%;
    background-color:var(--background-blue-color);
}

.copy__and__developer__content{
    width: 90%;
    margin: auto;
    padding-top: 1.7rem;
    padding-bottom: 1.7rem;
}

.copy__and__developer p{
    color: var(--font-white-color);
    text-align: center;
    line-height: var(--line-height-size);
}

.copy__and__developer p a{
    text-decoration: none;
    color: var(--font-white-color);
    text-align: center;
    font-weight: bold;
}

.copy__and__developer p a:hover{
    color: var(--font-hover-white-color);
    transition: all .3s ease-in-out;
}

/* Mediaquery viewport 1050px*/

@media (max-width: 1050px){
    /* Footer */

    .footer__background{
        grid-template-columns: 1fr 1fr;
    }

    /* Location map */

    .location{
        grid-column-start: 1;
        grid-column-end: 3;
    }

    .location__map{
        height: 300px;
    }
}

/* Mediaquery viewport 650px*/

@media (max-width: 650px){
    /* Footer */

    .footer__background{
        grid-template-columns: 1fr;
    }

    /* Location map */

    .location{
        grid-column-start: 1;
        grid-column-end: 2;
    }
}

/* Mediaquery viewport 400px*/

@media (max-width: 400px){
    /* Logo of the institute */

    .content__footer figure{
        width: 170px;
    }
}

/* Mediaquery viewport 270px*/

@media (max-width: 270px){
    /* Footer */

    .footer__background{
        padding: 0;
    }

    /* Logo of the institute */

    .footer__logo figure{
        width: 150px;
    }

    /* Location map */

    .location__map{
        height: 200px;
    }
}

/* Mediaquery viewport 250px*/

@media (max-width: 250px){
    /* Logo of the institute */

    .footer__logo figure{
        width: 130px;
    }
}

/* Mediaquery viewport 210px*/

@media (max-width: 200px){
    /* Location map */
    .location__map{
        height: 200px;
    }
}
