header {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-image: url('/images/header.jpeg');
    background-size: cover;

    display: flex;

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

}

header > .text-container {
    width: 50%;
    height: 50%;

    padding: 50px;

    display: flex;

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

    color: white;
    font-family: "Nunito";
    background-color: rgba(133, 7, 17, 0.7);
    z-index: 1;
}

header > .text-container > h1 {
    margin-bottom: 15px;
}

header > .text-container > p {
    text-align: justify;
}

.content {
    width: 100%;
    height: auto;

    display: flex;

    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.content > .who-we-are {
    width: 100%;
    height: 400px;

    font-family: "Nunito";
    color: #850711;

    display: flex;

    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px;

    background-color: #fff;

}

.content > .who-we-are > h2 {
    font-weight: bold;
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.content > .who-we-are > p {
    font-size: 20px;
    text-align: justify;

    padding-left: 100px;
    padding-right: 100px;
}

.content > .pictures {
    width: 100%;
    min-height: 400px;

    font-family: "Nunito";
    color: #fff;

    display: flex;

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

    background-color: #850711;

}

.content > .pictures > h2 {
    font-weight: bold;
    font-size: 30px;
    text-transform: uppercase;
    padding: 50px;
}

.content > .pictures > .carousel {
    width: 100%;
    height: 100%;

    display: flex;
    margin: 0px;

    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    background-color: #fff;
}

.content > .pictures > .carousel > img {
    width: 20%;
    height: 100%;
    cursor: pointer;
    /* margin-bottom: 10px; */
    /* border-radius: 5px; */
    /* border: 1px #fff solid; */
    filter: grayscale(0.7);
    transition: 0.3s linear;
}

.content > .pictures > .carousel > img:hover {
    filter: grayscale(0);
    filter: blur(0.5);
    transition: 0.3s linear;
}

.content > .prices {
    width: 100%;
    height: 550px;

    font-family: "Nunito";
    color: #850711;

    display: flex;

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

    background-color: #fff;
}

.content > .prices > h2 {
    width: 100%;
    font-weight: bold;
    font-size: 30px;
    text-transform: uppercase;
    text-align: left;
    padding: 50px;
}

.content > .prices > .cards {
    width: 100%;
    height: 100%;

    display: flex;
    margin: 0px;
    padding: 30px;

    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    background-color: #fff;
}

.content > .prices > .cards > .card {
    width: 25%;
    height: 100%;

    color: #fff;
    padding: 30px;

    display: flex;

    flex-direction: column;
    align-items: center;
    justify-content: space-between;

    background-color: #850711;
    border: 1px transparent solid;

    transition: 0.3s linear;

}

.content > .prices > .cards > .card:hover {
    cursor: pointer;
    border: 1px #fff solid;
    box-shadow: 0px 0px 15px #850711;
    transition: 0.3s linear;
}

.content > .prices > .cards > .card > ul {
    padding-left: 10px;
    padding-right: 10px;
}

.content > .prices > .cards > .card > ul > li.blocked {
    text-decoration: line-through;
    color: #000;
}

.content > .direction {
    width: 100%;
    height: 600px;

    font-family: "Nunito";
    color: #850711;

    display: flex;

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

    background-color: #fff;
}

.content > .direction > h2 {
    width: 100%;
    font-weight: bold;
    font-size: 30px;
    text-transform: uppercase;
    text-align: center;
    padding: 50px;
}

.content > .direction > .content {
    width: 100%;
    height: 100%;

    display: flex;

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

}

.content > .direction > .content > .map {
    width: 50%;
    height: 100%;
}

.content > .direction > .content > .map > iframe {
    width: 100%;
}

.content > .direction > .content > .address {
    width: 50%;
    height: 100%;

    display: flex;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    background-image: url('/images/gallery/2.webp');
}

.content > .direction > .content > .address > p {
    padding: 50px;
    color: #fff;

    background-color: rgba(133, 7, 17, 0.8);
    transition: 0.3s linear;

}

.content > .direction > .content > .address > p:hover {
    cursor: pointer;
    box-shadow: 0px 0px 15px #fff;
    transition: 0.3s linear;
}

.content > .contact {
    width: 100%;
    height: 600px;

    font-family: "Nunito";
    color: #850711;

    display: flex;

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

    background-color: #fff;
}

.content > .contact > h2 {
    width: 100%;
    font-weight: bold;
    font-size: 30px;
    text-transform: uppercase;
    text-align: center;
    padding: 50px;
}

.content > .contact > .form {

    width: 90%;
    height: 70%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background-color: #850711;

}

.content > .contact > .form > .form-group {
    width: 40%;
    height: auto;
    text-align: center;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;

    padding: 10px;
}

.content > .contact > .form > .form-group.send {
    width: 40%;
    height: auto;

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

    padding: 10px;
}

.content > .contact > .form > .form-group > .form-label {
    width: 30%;
    font-family: "Nunito";
    color: #fff;
}

.content > .contact > .form > .form-group > .form-control {
    width: 70%;
    font-family: "Nunito";
    padding: 10px;
    border: 1px rgba(133, 7, 17, 0.8) solid;
    border-radius: 3px;
    outline: none;
    transition: 0.3s linear;
}

.content > .contact > .form > .form-group > .form-control:hover {
    outline: none;
    box-shadow: 0px 0px 5px #fff;
    transition: 0.3s linear;
}

.content > .contact > .form > .form-group > .form-send {
    width: 70%;
    font-family: "Nunito";
    padding: 10px;
    border: 1px rgba(133, 7, 17, 0.8) solid;
    border-radius: 3px;
    outline: none;
    transition: 0.3s linear;

}

.content > .contact > .form > .form-group > .form-send:hover {
    outline: none;
    color: #850711;
    cursor: pointer;
    box-shadow: 0px 0px 5px #fff;
    transition: 0.3s linear;
}

.content > .contact > .form > .form-group > .error {
    width: 100%;
    font-family: "Nunito";
    font-weight: bold;
    color: #fff;
}

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

    .hide-lg {
        display: none !important;
    }

    header > .text-container {
        width: 80%;
        height: 60%;
    }

    .content > .prices {
        height: 700px;
    }

    .content > .prices > h2 {
        text-align: center;
    }

    .content > .prices > .cards > .card {
        width: 30%;
        height: 100%;

        margin-bottom: 10px;
    }

    .content > .contact {
        height: 700px;
    }

    .content > .contact > .form > .form-group {
        width: 70%;
    }

    .content > .contact > .form > .form-group.send {
        width: 50%;
    }

    .content > .contact > .form > .form-group > .form-control {
        width: 70%;
    }

    .content > .contact > .form > .form-group > .form-send {
        width: 90%;
    }

}

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

    .hide-md {
        display: none !important;
    }

    header > .text-container {
        width: 80%;
        height: 70%;
    }

    .content > .prices {
        height: auto;
    }

    .content > .prices > h2 {
        text-align: center;
    }

    .content > .prices > .cards > .card {
        width: 90%;
        height: 100%;

        margin-bottom: 10px;
    }

    .content > .contact {
        height: 700px;
    }

    .content > .contact > .form > .form-group {
        width: 90%;
    }

    .content > .contact > .form > .form-group.send {
        width: 50%;
    }

    .content > .contact > .form > .form-group > .form-control {
        width: 70%;
    }

    .content > .contact > .form > .form-group > .form-send {
        width: 90%;
    }

}

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

    .hide-sm {
        display: none !important;
    }

    header > .text-container {
        width: 100%;
        height: 70%;
    }

    .content > .who-we-are {
        width: 100%;
        height: 400px;

        font-family: "Nunito";
        color: #850711;

        padding: 20px;

    }

    .content > .who-we-are > p {
        padding-left: 0px;
        padding-right: 0px;
    }

    .content > .pictures {
        min-height: 600px;
    }

    .content > .pictures > h2 {
        text-align: center;
    }

    .content > .pictures > .carousel {
        background-color: #850711;
    }

    .content > .pictures > .carousel > img {
        width: 25%;
    }

    .content > .prices {
        height: auto;
    }

    .content > .prices > h2 {
        text-align: center;
    }

    .content > .prices > .cards > .card {
        width: 90%;
        height: 100%;

        margin-bottom: 10px;
    }


    .content > .direction {
        width: 100%;
        height: 900px;
    }

    .content > .direction > .content {
        width: 100%;
        height: 100%;

        flex-direction: column;
    }

    .content > .direction > .content > .map {
        width: 100%;
        height: 70%;
    }

    .content > .direction > .content > .map > iframe {
        width: 100%;
        height: 100%;
    }

    .content > .direction > .content > .address {
        width: 100%;
        height: 30%;
    }

    .content > .contact {
        height: 700px;
    }

    .content > .contact > .form > .form-group {
        width: 90%;
    }

    .content > .contact > .form > .form-group.send {
        width: 50%;
    }

    .content > .contact > .form > .form-group > .form-control {
        width: 70%;
    }

    .content > .contact > .form > .form-group > .form-send {
        width: 90%;
    }

}

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

    .hide-sm {
        display: none !important;
    }

    header > .text-container {
        width: 100%;
        height: 70%;
    }

    header > .text-container > h1 {
        font-size: 27px;
        text-transform: uppercase;
    }

    header > .text-container > p {
        font-size: 15px;
    }

    .content > .who-we-are {
        width: 100%;
        height: 400px;

        font-family: "Nunito";
        color: #850711;

        padding: 20px;

    }

    .content > .who-we-are > h2 {
        font-size: 27px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .content > .who-we-are > p {
        font-size: 15px;
        padding-left: 0px;
        padding-right: 0px;
    }

    .content > .pictures {
        min-height: 600px;
    }

    .content > .pictures > h2 {
        text-align: center;
        font-size: 27px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .content > .pictures > .carousel {
        background-color: #850711;
    }

    .content > .pictures > .carousel > img {
        width: 25%;
    }

    .content > .prices {
        height: auto;
    }

    .content > .prices > h2 {
        text-align: center;
        font-size: 27px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .content > .prices > .cards > .card {
        width: 90%;
        height: 100%;

        margin-bottom: 10px;
    }


    .content > .direction {
        width: 100%;
        height: 900px;
    }

    .content > .direction > h2 {
        font-size: 27px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .content > .direction > .content {
        width: 100%;
        height: 100%;

        flex-direction: column;
    }

    .content > .direction > .content > .map {
        width: 100%;
        height: 70%;
    }

    .content > .direction > .content > .map > iframe {
        width: 100%;
        height: 100%;
    }

    .content > .direction > .content > .address {
        width: 100%;
        height: 30%;
    }

    .content > .contact {
        height: 800px;
    }

    .content > .contact > h2 {
        font-size: 27px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .content > .contact > .form > .form-group {
        width: 90%;
        flex-direction: column;
        align-items: flex-start;
    }

    .content > .contact > .form > .form-group.send {
        width: 50%;
    }

    .content > .contact > .form > .form-group > .form-label {
        width: 100%;
        text-align: left;
    }

    .content > .contact > .form > .form-group > .form-control {
        width: 100%;
    }

    .content > .contact > .form > .form-group > .form-send {
        width: 90%;
    }

}
