﻿.theme {
    margin: 0;
    font-family: sans-serif;
    overflow-x: hidden;
}

    .theme .header {
        width: 100%;
        height: 14vh;
        background-color: #101c24;
        display: flex;
        align-content: center;
        justify-content: center;
        align-items: center;
        box-shadow: 0px 0px 8px 6px #818181;
        cursor: default;
        user-select: none;
    }

        .theme .header .base-logo {
            display: flex;
            align-content: center;
            justify-content: center;
            align-items: center;
            max-width: 110px;
        }

            .theme .header .base-logo img {
                max-width: 96px;
                max-height: 80px;
            }

        .theme .header .title {
            font-size: 60px;
            font-weight: 900;
            font-family: inherit;
            color: #f7eaec;
        }

    .theme .body {
        padding-bottom: 60px;
    }

        .theme .body .first-banner {
            height: 50vh;
            width: 100%;
            overflow: hidden;
            background: #a36732;
            position: relative;
        }

            .theme .body .first-banner .first-banner-img {
                width: 100%;
                height: 100%;
                position: relative;
            }

                .theme .body .first-banner .first-banner-img .shaddow {
                    position: absolute;
                    left: 0;
                    top: 0;
                    background: black;
                    width: 100%;
                    height: 100%;
                    opacity: 0.8;
                }

                .theme .body .first-banner .first-banner-img .img {
                    background-image: url('../images/index/firstbanner.jpg');
                    width: 100%;
                    height: 100%;
                    background-repeat: no-repeat;
                    background-size: cover;
                    background-position-y: -145px;
                }

        .theme .body .first-banner-content {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-content: center;
            justify-content: center;
            align-items: center;
        }

    .theme .first-banner-content h1 {
        color: #ffffff;
        font-family: cursive;
        font-size: 45px;
        text-align: center;
        box-shadow: 0px 1px 88px 2px black;
        background-color: #00000085;
        padding: 45px 55px;
        border-radius: 25px;
    }

    .theme .section-text {
        margin-top: 96px;
        margin: 70px 30px;
    }

        .theme .section-text h1 {
            margin: 0;
            padding: 0;
            text-align: center;
            font-size: 45px;
            font-family: sans-serif;
            color: #646464;
            margin: 0 -30px;
            background-color: #4e4e4e;
            padding: 36px 0;
            box-shadow: 0px 2px 8px 2px #959595;
            color: white;
            margin-bottom: 65px;
        }

        .theme .section-text .paragrafo {
            font-size: 25px;
            color: #646464;
        }

        .theme .section-text .img-right-container,
        .theme .section-text .img-left-container {
            width: 100%;
            display: flex;
            align-items: center;
            margin-top: 48px;
            justify-content: center;
        }

            .theme .section-text .img-right-container .base-img-container,
            .theme .section-text .img-left-container .base-img-container {
                width: 30%;
                float: left;
                display: flex;
                justify-content: center;
                align-items: center;
                padding-right: 25px;
            }

                .theme .section-text .img-right-container .base-img-container img,
                .theme .section-text .img-left-container .base-img-container img {
                    max-width: 60%;
                    height: 100%;
                }

            .theme .section-text .img-right-container .base-text-container,
            .theme .section-text .img-left-container .base-text-container {
                width: 60%;
                float: left;
                font-size: 25px;
                color: #646464;
            }

        .theme .section-text .img-right-container {
            margin-top: 75px;
        }

        .theme .section-text.unique-content {
            margin: 0 0px;
            background-color: #4e4e4e;
            padding: 36px 0;
            box-shadow: 0px 2px 8px 2px #959595;
            padding-bottom: 90px;
        }

            .theme .section-text.unique-content h1 {
                background-color: transparent;
                padding: 0 !important;
                box-shadow: none;
            }

            .theme .section-text.unique-content .images-content {
                display: flex;
                align-content: center;
                justify-content: center;
                align-items: center;
                min-height: 190px;
                margin-top: 60px;
                background-color: #585858;
                box-shadow: 0 0 25px 4px #444444;
            }

                .theme .section-text.unique-content .images-content .container-img {
                    height: 100%;
                    width: min-content;
                    padding: 0 32px;
                }

                    .theme .section-text.unique-content .images-content .container-img img {
                        max-width: 160px;
                        min-height: 185px;
                    }

    .theme .footer {
        height: 482px;
        background-color: #101c24;
        display: flex;
        justify-content: space-evenly;
        align-content: center;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
    }

        .theme .footer img {
            margin-top: 18px;
        }

        .theme .footer h1 {
            user-select: none;
            color: white;
            margin: 0;
            margin-bottom: 32px;
        }

        .theme .footer a {
            color: white;
            text-decoration: none;
            font-size: 22px;
            margin-top: -12px;
        }

        .theme .footer h5 {
            color: white;
            margin: 0;
            padding: 0;
            margin-top: 35px;
        }

@media screen and (max-width: 580px) {
    .theme .header {
        display: flex;
        flex-direction: column;
    }

        .theme .header .base-logo {
        }

            .theme .header .base-logo img {
            }

        .theme .header .title {
            font-size: 34px;
        }
}
