* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

#home {
    width: 100%;
    height: 50vh;
    background-image: url(imgs/h1_hero1.jpg);
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: multiply;
    background-size: cover;
    display: inline-block;
    background-position: 20%;
}

#home header {
    margin-left: 14%;
    padding: 2%;
}

#home img {
    vertical-align: middle;
    margin-right: 48%;
}

#home #telefone {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-family: questrial
}

#home #button {
    margin-left: 2%;
    margin-right: 2%;
    font-family: questrial;
    font-size: 16px;
    text-decoration: none;
    color: white;
    background-color: #D6A04C;
    padding: 14px 24px;
    border: 1px solid #D6A04C;
    vertical-align: middle;
}

#home #button:hover {
    background-color: transparent;
    color: #D6A04C;
    transition: 0.5s;
}

#home header #nav_button {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

#home header #nav_button .menu {
    height: 10px;
    width: 30px;
    display: inline-block;
    border-top: solid 2px white;
    border-bottom: solid 2px white;
}

#home header #nav_button>input {
    z-index: 101;
    opacity: 0;
    height: 40px;
    width: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

#home header #nav_button>input:checked {
    position: fixed;
    left: 85%;
    top: 6.5%;
}

#home header #nav_button>input:checked+nav {
    transition: 1s;
    right: 0;
}

#home header #nav_button input:hover+nav .close_button>svg {
    fill: #D6A04C;
}

#home nav {
    width: 17.5%;
    height: 100vh;
    position: fixed;
    z-index: 100;
    right: -17.5%;
    top: 0;
    background-color: #111111;
    display: inline-block;
    transition: 1s;
}

#home nav svg {
    fill: white;
    height: 21px;
}

#home nav .close_button {
    margin-top: 15%;
    margin-left: 11%;
}

#home nav .primary_list {
    position: relative;
    width: 100%;
    text-align: center;
    margin-top: 22%;
}

#home nav .primary_list li {
    list-style: none;
    margin-top: 10%;
}

#home nav .primary_list li .blog .svg_mais {
    vertical-align: middle;
    height: 15px;
    width: 15px;
    margin-left: 4%;
}

#home nav .primary_list li .blog .svg_menos {
    display: none;
    vertical-align: middle;
    height: 15px;
    width: 15px;
    margin-left: 4%;
}

#home nav .primary_list li a {
    text-decoration: none;
}

#home nav .primary_list li p {
    text-decoration: none;
    color: white;
    font-size: 20px;
    font-weight: 100;
    font-family: Questrial;
    display: inline-block;
    vertical-align: middle;
}

#home #nav_button nav .icons {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#home #nav_button nav .icons a {
    display: inline-block;
    margin-right: 15px;
}

#home #nav_button nav .icons a svg {
    height: 22px;
    fill: white;
    transition: all .4s ease-out 0s;
}

#home #nav_button nav .icons a:hover svg {
    fill: #D6A04C;
    transition: all .4s ease-out 0s;
    transform: rotateY(200deg);
}

#home nav .primary_list li .blog {
    position: relative;
    height: 100%;
    width: 100%;
}

#home nav .primary_list li .blog input {
    width: 100%;
    height: 100%;
    opacity: 0;
    position: absolute;
    cursor: pointer;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#home nav .primary_list li .blog .secondary_list {
    position: relative;
    left: 5%;
    width: 100%;
    display: none;
    transition: 0.5s;
}

#home nav .primary_list li .blog input:checked~.secondary_list {
    display: inline-block;
}

#home nav .primary_list li .blog input:checked~.svg_mais {
    display: none;
}

#home nav .primary_list li .blog input:checked~.svg_menos {
    display: inline-block;
}

#home .title {
    margin-left: 22%;
    margin-top: 4%;
}

#home .title a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-family: questrial;
}

#home .title p {
    color: white;
    font-size: 16px;
    font-family: questrial;
}

#home .title h1 {
    margin-top: 10px;
    color: white;
    font-size: 60px;
    font-family: cabin, sans-serif;
    font-weight: 100;
}

#home_block {
    font-family: Cabin;
    color: white;
    padding-top: 5%;
    padding-left: 16%;
    background-color: #0b0016;
}

#home_block .row1 h2 {
    font-size: 44px;
    font-weight: 100;
    padding-bottom: 3%;
}

#home_block .row {
    padding-bottom: 6%;
}

#home_block .row img {
    padding-bottom: 5%;
    width: 105%;
}

#home_block .row a {
    text-decoration: none;
    color: white;
}

#home_block .row h1 {
    font-size: 32px;
    font-weight: 100;
    margin-bottom: 3%;
}

#home_block .row p {
    font-size: 14px;
    font-family: questrial;
}

#home_block .row .image {
    display: inline-block;
    margin-right: 3%;
    transform: translateY(0);
    transition: 0.5s;
}

#home_block .row .image:hover {
    transform: translatey(5%);
    transition: 0.5s;

    img {
        filter: contrast(50%);
        transition: 0.5s;
    }

    h1 {
        color: #D6A04C;
        transition: 0.5s;
    }

    svg {
        fill: black;
        transition: 0.5s;
    }

    .arrow {
        background-color: white;
        transition: 0.5s;
    }
}

#home_block .row .div_arrow {
    position: relative;
}

#home_block .row .div_align {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#home_block .row .arrow {
    display: inline-block;
    background-color: transparent;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    position: relative;
}

#home_block .row .arrow svg {
    display: inline-block;
    height: 16px;
    width: 16px;
    fill: transparent;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#rodape {
    height: 55vh;
    background-color: #1e1e1e;
    text-align: center;
    padding-top: 120px;
}

#rodape .listas {
    padding-bottom: 4%;
    display: inline-block;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: #353535;
    margin-bottom: 2%;
}

#rodape .listas .espaco_rodape {
    position: relative;
    display: inline-block;
    padding: 0px 12px;
    width: 220px;
    vertical-align: top;
    text-align: left;
}

#rodape .listas .espaco_rodape h4 {
    font-size: 20px;
    font-family: cabin;
    font-weight: 100;
    color: white;
    margin: 0 0 30px;
}

#rodape .listas .espaco_rodape ul {
    text-align: left;
}

#rodape .listas .espaco_rodape ul a li {
    list-style: none;
    margin-bottom: 25px;
}

#rodape .listas .espaco_rodape ul a {
    text-decoration: none;
    color: white;
    font-family: questrial, sans-serif;
    font-weight: 400;
    font-size: 16px;
}

#rodape .listas .espaco_rodape ul a:hover {
    text-decoration: underline;
}

#rodape .listas .espaco_email {
    display: inline-block;
    text-align: left;
    color: white;
    width: 416px;
    margin-left: 200px;
}

#rodape .listas .espaco_email h4 {
    font-size: 20px;
    font-family: cabin;
    font-weight: 100;
    color: white;
    margin: 0 0 30px;
}

#rodape .listas .espaco_email p {
    font-size: 16px;
    font-family: questrial, sans-serif;
    font-weight: 400;
    margin-bottom: 5%;
    color: #A4A6AE;
}

#rodape .listas .espaco_email input {
    width: 100%;
    height: 60px;
    border-radius: 6px;
    font-family: questrial, sans-serif;
    padding: 10px 20px;
    color: #5C6168;
    border: 0;
    font-size: 16px;
    background: white;
}

#rodape .listas .espaco_email .input_email {
    position: relative;
    margin-bottom: 10%;
}

#rodape .listas .espaco_email .input_email input{
    outline: none;
}

#rodape .listas .espaco_email .input_email .button_submit {
    z-index: 2;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translatey(-47%);
}

#rodape .listas .espaco_email button {
    height: 60px;
    width: 80.5px;
    border: 0;
    position: relative;
    display: inline-block;
    background: #D6A04C;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    cursor: pointer;
}

#rodape .listas .espaco_email button img {
    position: absolute;
    display: inline-block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#rodape .listas .espaco_email .icons a{
    vertical-align: middle;
}

#rodape .listas .espaco_email .icons a:hover svg{
    fill: #D6A04C;
    transition: all .4s ease-out 0s;
    transform: rotateY(200deg);
}

#rodape .listas .espaco_email .icons a svg {
    fill: white;
    height: 22px;
    margin-right: 5%;
    transition: all .4s ease-out 0s;
}

#rodape .listas .espaco_email .icons svg path {
    vertical-align: middle;
}

#rodape .fim p {
    color: #A4A6AE;
    font-size: 16px;
    font-weight: 400;
    font-family: questrial, sans-serif;
    display: inline-block;
}

#rodape .fim svg {
    width: 16px;
    height: 16px;
    fill: #D6A04C;
}

#rodape .fim a {
    text-decoration: none;
    font-family: questrial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #D6A04C;
}