main {
    background-image: url("bgimg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-size: cover;
    background-repeat: no-repeat;
    font-family: emoji, sans-serif;
}

header {
    background-color: #d3d3d3;
}

header span {
    font-size: 35px;
    text-transform: uppercase;
    font-family: emoji;
    letter-spacing: 10.5px;
}

.logo-block {
    width: 5rem;
}

.about-section {
    width: 90%;
    max-width: 800px;
    margin: 5rem auto;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 1px 5px 10px #000000;
    font-size: 1.2rem;
    background-color: #d3d3d3;
}

.carousel-item {
    width: 100%;
    height: 33rem;
    margin: auto;
}

iframe {
    border-radius: 10px;
}

.section-map {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 50px 10px;
}

footer {
    width: 100%;
    background-color: #d3d3d3;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.footer-social {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
}


@media screen and (min-width: 320px) and (max-width: 768px) {
    .about-section {
        width: 100%;
    }

    footer {
        display: block;
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    .footer-social {
        flex-direction: column;
        padding: 1rem 0;
    }

    .footer-social li {
        margin: 1rem 0;
    }

    footer {
        flex-direction: column;
        padding: 1rem;
    }
}


.map-responsive {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


