/* C00280239, Gabriela Becerra */

/* common styles */

html {
    background-image: linear-gradient(to bottom right, lightblue, aquamarine);
    height: 100%;
}

.title {
    margin-top: 50px;
    text-align: center;
}

/* on small devices we reduce margins and font sizes, and we also justify the text for a nicer look. */
@media screen and (max-width: 600px) {
    .title {
        margin-top: 0px;
        font-size: 5vh;
    }

    .menu .menu-item {
        font-size: 3vh;
    }

    span, p {
        font-size: 2.5vh;
        text-align: justify;
    }
}

.content {
    padding: 50px;
    border: 1px dotted black;
    background-color: antiquewhite;
}

/* menu */

.menu {
    width: 100%;
}

.menu .menu-item {
    width: 25%;
    background-color: #414141;
    float: left;
    padding: 5px;
    text-align: center;
    box-sizing: border-box;
    border: 1px solid #000000;
}

.menu .menu-item a {
    color: #ffffff;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
}

.menu .menu-item a:hover {
    color: #cccccc;
    text-decoration: underline;
}

/* we change the color of the selected menu item for a better user experience. */
.menu .menu-item.is-active a {
    color: #8d8d8d;
}
/* this is needed to prevent overlap when using float. */
.clearfix {
    clear: both;
}

/* menu mobile */
@media screen and (max-width: 600px) {
    /* on a mobile we want a menu item to take the whole width */
    .menu .menu-item {
        width: 100%;
    }
}


/* CONTACT US */
form label {
    width: 100%;
    display: block;
    padding: 5px;
}

form input {
    border-radius: 5px;
    border: 1px solid blue;
    padding: 5px;
    max-width: 100%;
}
form textarea {
    border-radius: 5px;
    border: 1px solid blue;
    padding: 5px;
    min-width: 100%;
    max-width: 100%;
    min-height: 150px;
}

form select {
    border-radius: 5px;
    border: 1px solid blue;
}

form .submit {
    border: 1px solid #000000;
    background-color: #1a1a5f;
    color: #ffffff;
}

/* CUSTOMER FEEDBACK */
.customer-feedback {
    width: 100%;
    min-height: 200px;
    border-top: 1px dashed #ccc;
    border-bottom: 1px dashed #ccc;
}

.customer-feedback .customer-feedback-image {
    width: 30%;
}

.customer-feedback .customer-feedback-content {
    width: 70%;
}

/* is-left will put image on the right and content on the left */
.customer-feedback.is-left .customer-feedback-image {
    float: left;
}

.customer-feedback.is-left .customer-feedback-content {
    float: right;
}

/* is-right will put image on the right and content on the left */
.customer-feedback.is-right .customer-feedback-image {
    float: right;
}

.customer-feedback.is-right .customer-feedback-content {
    float: left;
}

.logo-home{
    margin: 0 auto;
    display: block;
    max-width: 100%;
}

@media screen and (max-width: 600px) {
    /* on a mobile we want a customer feedback to take the whole width */
    .customer-feedback .customer-feedback-image img {
        max-width: 100%;
    }

    .customer-feedback .customer-feedback-image {
        width: 100%;
    }

    .customer-feedback .customer-feedback-content {
        width: 100%;
        text-align: justify;
    }
}

/* GALLERY */
table.gallery {

}

table.gallery img {
    width: 200px;
    max-width: 100%;
}