html, body {
    width: all;
    height: 100% !important;

    margin: 0px;

    box-sizing: border-box;
    overflow-x: hidden;
}

.white { color: white; }
.pink { color: #ce3c66; }
.black { color: black; }
.green { color: #d0f8a8; }
.cream { color: #edc6b8; }
.visitors { color: white; background-color: #ce3c66; padding: 5px; }
.bold { font-weight: bold; }
.fsize-text { font-size: 20px; }
.border-white { border: 1px white solid; }

.bwhite { background-color: white; }
.bpink { background-color: #ce3c66; }
.bblack { background-color: black; }
.bgreen { background-color: #d0f8a8; }
.byellow { background-color: yellow; }
.bcream { background-color: #edc6b8; }

.page-container {
    width: 100%;
    height: 1000px;

    display: flex;

    align-items: flex-start;
    justify-content: center;

    padding: 50px;
    padding-top:0px;
    padding-bottom:0px;
    /* background-color: yellow; */

    font-family: "openSans";
    font-style: italic;
    background-image: url('/assets/footprints.png');
    background-repeat: repeat;

}

.page-container .page-content {
    width: 100%;
    height: all;

    position: relative;
    top: 0px;
    bottom: 0px;

    background-color: white;
    box-shadow: 0px 0px 10px black;

}

.page-container .page-content header {

    width: 100%;
    height: 50px;

    background-color: yellow;

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding-top: 10px;
    padding-bottom: 10px;

}

.page-container .page-content header img,a {
    width: auto;
    height: 100%;
}

.page-container .page-content .banner {

    width: 100%;
    height: 500px;

    background-color: white;
    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;


    padding-top: 10px;
    padding-bottom: 10px;

}

.page-container .page-content .banner .logo {
    width: 20em;
    height: auto;
    margin-bottom: 50px;
}

.page-container .page-content .banner .social {
    width: 100%;
    height: auto;

    display: flex;
    flex-direction: row;

    align-items: center;
    justify-content: center;

    margin-top: 10px;
}

.page-container .page-content .banner .social a,img {
    width: 50px;
    height: auto;

    padding: 5px;

    text-decoration: none;
}



.page-container .page-content footer {

    width: 100%;
    height: 50px;

    background-color: yellow;

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding-top: 10px;
    padding-bottom: 10px;

}

.page-container .page-content footer img {
    width: auto;
    height: 100%;
}

.page-container .page-content .pictures {
    width: 100%;
    height: 1500px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: space-between;

    /* background-color: yellow; */
    /* text-transform: uppercase; */

}

.page-container .page-content .pictures .title {
    font-family: "courgette";
    font-size: 20px;
    font-weight: bold;
    width: 95%;
    height: 10%;
    padding: 10px;

    display: flex;
    flex-direction: row;

    align-items: center;
    justify-content: space-between;
}

.page-container .page-content .pictures .title a {
    width: 200px;
    height: 70px;
    text-decoration: none;

    display: flex;
    flex-direction: row;

    align-items: center;
    justify-content: space-between;

    color: white;
    padding: 10px;
    margin: 10px;
    border-radius: 5px;

    transition: 0.3s linear;
}

.page-container .page-content .pictures .title a:hover {

    box-shadow: 0px 0px 10px black;

    transition: 0.3s linear;
}

.page-container .page-content .pictures .title a span img {
    border-radius: 15px;
}

.page-container .page-content .pictures .gallery {
    width: 100%;
    height: 100% !important;
}

.page-container .page-content .comentaries {
    width: 100%;
    height: 700px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: space-between;

    /* background-color: yellow; */
    /* text-transform: uppercase; */

}

.page-container .page-content .comentaries .title {
    font-family: "courgette";
    font-size: 20px;
    font-weight: bold;
    width: 100%;
    height: 10%;
    text-align: center;
    padding: 10px;
}

.page-container .page-content .comentaries .insert-container {
    width: 100%;
    height: 90% !important;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.page-container .page-content .comentaries .insert-container .left {
    width: 50%;
    height: 100%;
    text-align: center;
    padding: 50px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;
}

.page-container .page-content .comentaries .insert-container .left .form-group {
    width: 100%;
    height: auto;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 10px;
}

.page-container .page-content .comentaries .insert-container .left .form-group label {
    width: 100%;
    padding: 10px;
    text-align: start;
}

.page-container .page-content .comentaries .insert-container .left .form-group input,textarea {
    width: 100%;
    padding: 10px;
    border-radius: 3px;
    border: 1px lightgray solid;
    transition: 0.3s linear;
}

.page-container .page-content .comentaries .insert-container .left .form-group input:hover,textarea:hover,input:focus,textarea:focus {
    box-shadow: 0px 0px 3px black;
    transition: 0.3s linear;
    outline: none;

}

.page-container .page-content .comentaries .insert-container .left .form-group textarea {
    width: 100%;
    height: 200px;
}

.page-container .page-content .comentaries .insert-container .left .form-group button {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px yellow solid;
    transition: 0.3s linear;

    color: white;
    background-color: #ce3c66;
}

.page-container .page-content .comentaries .insert-container .left .form-group button:hover {
    border: 1px #ce3c66 solid;

    color: white;
    background-color: #ce3c66;
    box-shadow: 0px 0px 5px #ce3c66;

    transition: 0.3s linear;
}

.page-container .page-content .comentaries .insert-container .right {
    width: 50%;
    height: 100%;
    text-align: center;
    padding: 10px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;
}

.call-us {
    position: fixed;

    border: 1px black solid;
    border-radius: 10px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    background-color: white;
    padding: 30px;
    right: 10px;
    bottom: 0px;

    color: black;
    font-weight: bold;
}

.call-us a {
    color: #ce3c66;
    text-decoration: none;
}

@media screen and (max-width: 628px) {

    .page-container .page-content header img {
        width: auto;
        height: 70%;
    }

    .page-container .page-content header img > a {
        width: auto;
        height: 80%;
    }

    .page-container .page-content .pictures .gallery {
        width: 100%;
        height: 900px;

        overflow-y: scroll;

    }

}

@media screen and (max-width: 530px) {
    .page-container {
        padding: 0px;
    }

    .page-container .page-content .pictures .title {
        height: 15%;
        flex-direction: column;
    }

    .page-container .page-content .pictures .gallery {
        height: 85%;
    }

    .call-us span {
        margin-right: 5px;
    }

    .call-us a {
        margin-left: 10px;
    }

}

@media screen and (max-width: 300px) {
    .page-container .page-content header img {
        width: auto;
        height: 50%;
    }

    .page-container .page-content header a > img {
        width: auto;
        height: 80%;
    }

    .page-container .page-content .banner .logo {
        width: 15em;
        height: auto;
        margin-bottom: 50px;
    }

    .page-container .page-content .banner span {
        text-align: center;
        line-height: 1.5em;
    }

    .page-container .page-content footer img {
        width: auto;
        height: 70%;
    }

}