.unities-map--container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0% 0% 5% 0%;
    width: 100%;
    height: 80dvh;
    gap: 2%;

    @media (max-height: 600px) and (orientation: landscape){
        height: 120dvh;
        padding: 0% 0% 2% 0%;
    }

    @media (min-width: 1000px){
        padding: 0%;
    }
}

.horizontal-container--desktop{
    display: contents;

    @media (min-width: 1200px){
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 80dvh;
    }
}   

.map-container--title{
    color: #ece7e3;
    background-color: #fe6300;
    font-size: 13px;
    padding: 3%;
    border-radius: 5px;

    @media (max-height: 600px) and (orientation: landscape){
        padding: 1.5% 2%;
    }

    @media (min-width: 768px) and (min-height: 600px) {
        font-size: 15px;
        padding: 1.7% 3%;
    }

    @media (min-width: 1000px){
        padding: 1% 2%;
    }
}


.map-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    height: 100%;

    @media (max-height: 600px) and (orientation: landscape){
        gap: 1%;
        flex-direction: row;
    }

    @media (min-width: 768px) and (min-height: 600px) {
        height: 40%;
    }

    @media (min-width: 1000px){
        height: 100%;
    }
}

.map--component{
    width: 100%;
    height: 100%;
    border: 2px solid #fe6300;
    border-radius: 5px;
    transition: transform 0.5s;

    @media (max-height: 600px) and (orientation: landscape){
        flex: 3;
        border-radius: 8px;
    }
    
    @media (min-width: 1000px){
        width: 78%;
        height: 78%;
        border-radius: 10px;
    }
}  

.map--component:hover{
    transform: scale(1.05);
}  

.school-media--container{
    display: inherit;
    justify-content: center;
    align-items: center;
    gap: 3%;
    margin-top: 2%;
    width: inherit;

    @media (max-height: 600px) and (orientation: landscape){
        flex: 1;
        gap: 10%;
        margin-top: 0%;
    }

    @media (min-width: 1000px){
       padding: 2% 0%;
       margin-top: 0%;
    }
}

.map--icon{
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fe6300;
    font-size: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;  
    background-color: hsl(102, 69%, 40%, 0.1);

    @media (min-width: 768px) {
        font-size: 25px;
        width: 40px;
        height: 40px;
    }
}

.whatsapp-icon:hover{
    color: white;
    background-color: #4aad20;
}

.instagram-icon:hover{
    color: white;
    background-image: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}
