/*COWORKING FOOTER*/
.footer-container{
    display: flex;
    width: 100%;
    min-height: 400px;
    height: 400px;
    background-color: #6d905d;
    padding: 25px;
}

.footer-container .footer-left{
    width: 58%;
    display: flex;
    min-height: 400px;
}

.footer-container .footer-info{
    width: 38%;
    height: 100%;
    display: flex;
    color: #000;
    font-family: 'Roboto', Arial, sans-serif;
    justify-content: center;
    align-items: start;
    flex-wrap: wrap;
    font-size: 17px;
    padding-top: 30px;
    padding-right: 30px;
}

.footer-container .footer-info .info{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-wrap: wrap;
}

.footer-container .footer-info .info .title{
    font-size: 30px;
    font-weight: 600;
}
.footer-container .footer-info .info .contact{
    font-weight: 500;
}
.footer-container .footer-info .info .mail{
    font-size: 15px;
}
.footer-container .footer-info .info .location{
    font-weight: 500;
}
.footer-container .footer-info .info .location-data{
    font-size: 15px;
}

.footer-container .footer-image{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-container .footer-image img{
    width: 90%;
    height: auto;
}

.coworking-footer-copyright span{
    width: 100%;
    text-align: center;
}

/* MAPA */
.hotel-map-container {
    height: 100%;
    flex-grow: 1;
    position: relative;
    padding: 20px;
}

.hotel-map-controls {
    position: absolute;
    float: left;
    display: flex;
    flex-direction: column;
    left: 30px;
    top: 30px;
    z-index: 40;
}

.hotel-map-controls button {
    display: block;
    width: 40px;
    height: 40px;
    color: #d9d9d9;
    border: 1px solid #f0f0f0;
    margin-bottom: 10px;
}

.hotel-map-controls button.zoom-in {
    background: white url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2218%22%20height%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpolygon%20fill%3D%22%23666%22%20points%3D%2218%2C7%2011%2C7%2011%2C0%207%2C0%207%2C7%200%2C7%200%2C11%207%2C11%207%2C18%2011%2C18%2011%2C11%2018%2C11%22%2F%3E%3C%2Fsvg%3E") no-repeat center;
}

.hotel-map-controls button.zoom-out {
    background: white url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2218%22%20height%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23666%22%20d%3D%22M0%2C7h18v4H0V7z%22%2F%3E%3C%2Fsvg%3E") no-repeat center;
}

.hotel-map-controls button:last-child {
    margin-bottom: 0;
}

.hotel-map-controls button:hover {
    color: #fff;
}

.hotel-map {
    width: 100%;
    height: 100%;
}


/* BOCADILLOS DE INFORMACION DE CADA PUNTERO DEL MAPA */
.hotel-map .info {
    display: flex;
    flex-wrap: wrap;
}

.hotel-map .image,
.hotel-map .text {
    width: 50%;
}

.hotel-map .image {
    margin: auto;
}

.hotel-map img {
    width: 100%;
}

.hotel-map .text {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-left: 10px;
}

.hotel-map .title {
    font-size: 20px;
    font-family: 'Almarai', sans-serif;
    font-weight: bold;
}

.hotel-map .subtitle {
    font-size: 16px;
    font-weight: normal;
}

.hotel-map .description {
    font-size: 14px;
    line-height: 20px;
}

.hotel-map .title,
.hotel-map .subtitle,
.hotel-map .description {
    margin: 0 auto;
}

@media screen and (max-width: 712px) {
    .hotel-map-container{
        padding: 0;
    }
}


@media (max-width: 1000px) {
    .footer-container{
        flex-direction: column;
        height: 1000px;
    }
    .footer-container .footer-left{
        width: 100%;
    }
    .footer-container .footer-image img{
        width: 400px;
    }
}

@media (max-width: 600px) {
    .footer-container .footer-left{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 1500px;
    }

    .footer-container .footer-info{
        width: 100%;
    }

    .footer-container .footer-image{
        width: 100%;
    }

    .footer-container .footer-image img{
        width: 200px;
    }
}