/*General*/
body {
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Open Sans';
}

.web-title {
    text-align: center;
}

.separator {
    width: 80%;
    height: 1px;
    border-bottom: 1px solid grey;
    margin: auto;
}

/*Navbar*/
.navbar {
    width: 100%;
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
}

.link {
    padding: 0 15px;
    margin: 1px;
}

.main_logo {
    height: 80px;
}

@media only screen and (max-width: 900px) {
    .navbar {
        flex-direction: column;
    }

    .links {
        padding: 10px 0 15px 0;
    }

    .main_logo {
        height: 60px;
    }
}

/*Main image*/
.images {
    text-align: center;
    padding: 25px;
}

/*Location section*/
.location {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-frame {
    max-width: 639px;
    border: 0;
    height: 303px;
}

.map-container {
    padding: 15px;
}

.location__info {
    text-align: center;
}

@media only screen and (max-width: 900px) {
    .location {
        flex-direction: column;
        width: 100%;
    }  
}

/*Info section*/
.main-info {
    width: 90%;
    margin: auto;
}

.info {
    width: 100%;
    display: flex;
}

.image-wrapper {
    text-align: center;
}

.title-text {
    text-align: center;
}

.info__image {
    max-width: 350px;
    padding: 0 20px;
}

.info__text {
    text-align: justify;
}

.info-wrapper {
    display: flex;
    flex-direction: column;
}

.social {
    display: flex;
    justify-content: space-evenly;
}

.social-link {
    width: 210px;
    height: 30px;
    border-radius: 5px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    align-self: center;
    color: black;
    justify-content: space-around;
}

.youtube-video {
    border: 3px solid #FF0000;
}

.facebook {
    border: 3px solid #4267B2;
}

.social-logo {
    height: 20px;
    justify-content: space-around;
}

@media only screen and (max-width: 900px) {
    .info {
        flex-direction: column;
    }  

    .social {
        flex-direction: column;
    }

    .social-link {
        margin: 10px 0;
    }

    .info__image {
        padding: 0;
        max-width: 250px;        
    }
}

/*Footer*/
.footer {
    display: flex;
    width: 100%;
    background-color: black;
    align-items: center;
    margin-top: 20px;
    justify-content: center;
}

.footer-info {
    color: white;
    text-align: center;
    font-size: 11px;
}