/*
 * Estilos reutilizables
 */

.mb-0 {
    margin-bottom: 0;
}

.mt-0 {
    margin-top: 0;
}

.text-uppercase {
    text-transform: uppercase;
}


/* HEADER*/

.link {
    /*Se le aplica un font-weight para convertir en bold al texto*/
    font-weight: 700;
    /*Se le agrega padding para agregar un espacio entre los textos*/
    padding: 21px;
    /*crea cajas que son de bloque y en línea de forma simultanea*/
    display: inline-block;
    color: white;
    text-decoration: none;
}

header {
    position: fixed;
    background: #2c3e50;
    width: 100%;
    top: 0;
}

.menu {
    padding: 14px 70px;
    overflow: auto;
}

a:hover {
    background-color: #18bc9c;
}

.menu .left {
    float: left;
    /*Se le aplica un font-weight para convertir en bold al texto*/
    font-weight: 700;
    font-size: 20px;
}

.menu .right {
    float: right;
    font-weight: 700;
    font-size: 15px;
}


/*Caja 1*/

.box-one img {
    padding: 24px;
    margin-left: 36%;
    margin-top: 10%;
}

.box-one p {
    color: white;
    text-align: center;
    font-size: 38px;
    font-weight: 700;
}


/*LAYOUT CAJA FOTOGRAFIAS*/

.container {
    /*Se ve hasta 1200 pixeles*/
    width: 100%;
    margin: 0 auto;
    background-color: white;
}

.container p {
    color: black;
    text-align: center;
    font-size: 38px;
    font-weight: 700;
}

.container hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.row:before,
.row:after {
    content: " ";
    display: table;
}

.row:after {
    clear: both;
}


/*Comienzo a hacer las columnas*/


/*Selector de muchas cosas, todo lo que comience con col- va a tener estos valores:*/

[class*="col-"] {
    min-height: 7px;
    float: left;
    padding: 12px;
}

.col-4 {
    /*(4/12)*100*/
    width: 33.333333%;
}

.col-12 {
    /*(12/12)*100*/
    width: 100%;
}

.col-6 {
    /*(6/12)*100*/
    width: 50%;
}


/*para obligarla a q la imagen se mantenga dentro del grid - esto ya esta arriba en otro ejercicio*/

.img-responsive {
    max-width: 100%;
    width: 100%;
}


/* ABOUT */

.about {
    background-color: #18bc9c;
    padding: 24px 12px;
}

.about p {
    font-size: 20px;
}

.text-one {
    color: white;
    font-weight: 700;
    padding-right: 10%;
    text-align: justify;
}

.text-two {
    color: white;
    font-weight: 700;
    padding-right: 7%;
    text-align: justify;
}

.button {
    background-color: white;
}

.about h1 {
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 38px;
    font-weight: 700;
}


/*CONTACT SECTION*/


/*CONTACT SECTION*/

.contact h1 {
    color: black;
    padding: 20px;
    text-align: center;
    font-size: 38px;
    font-weight: 700;
}

.form-container {
    text-align: center;
    width: 100%;
    margin-left: -4%;
}

input[type="text"],
input[type="email"],
input[type="number"] {
    border: none;
    border-bottom: 1px solid gray;
    width: 60%;
    height: 50px;
    font-size: 16px;
}

.input-message {
    height: 100px;
}


/*buttons*/

.about button {
    background-color: #18bc9c;
    /* Green */
    border: 2px solid white;
    color: white;
    padding: 10px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 3% 37% 7% 40%;
}

.form-container button {
    background-color: #18bc9c;
    /* Green */
    border: 2px solid white;
    color: white;
    padding: 10px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 2% 52% 3% 0%;
}


/*footer*/

address {
    font-size: 14px;
}

div .col-4 {
    font-size: 10px;
}

footer h4 {
    font-size: 14px;
}

footer .row {
    background-color: #2c3e50;
    color: white;
}

.col-4 a {
    color: #18bc94;
}

.col-12 {
    width: 100%;
    background-color: #233140;
    text-align: center;
    font-size: 15px;
}

.col-4 i {
    font-size: 30px;
    text-align: center;
}


/*MODAL*/

.hide {
    display: none;
}


/* The Modal (background) */

.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
}


/* Modal Content/Box */

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    /* Could be more or less, depending on screen size */
}


/* The Close Button */

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}