@media screen and (min-width: 601px) {
body {
    margin: 0;padding: 0;
}
.header_gotais {
    display: flex;
    width: 100%;
    height: 100vh;
    background-image: url("../img/top.png");
    background-repeat: no-repeat;
    background-size: cover;
    align-items: center;
}
.menu {
    display: flex;
    position: absolute;
    width: 100%;
    height: 120px;
    /* background: red; */
}
.logo {
    width: 250px;
    margin: 20px 0 0 20px;
}
.header_text {
    display: flex;
    width: 100%;
    height: 100px;
    justify-content: center;
}
.texts {
    display: block;
}
.text_1 {
    color: #FFF;
    font-family: 'Roboto', sans-serif;
    font-size: 30px;
    margin-bottom: 10px;
}
.text_2 {
    color: #FFF;
    font-family: 'Roboto', sans-serif;
    font-size: 30px;
}
.custom_text {
    background-color: rgba(47, 47, 47, 0.50);
    padding: 5px 12px 5px 12px;
    border-radius: 22px;
}
.foobot {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 20px;
}
.footbot_content{
    display: flex;
    min-width: 987px;
    max-width: 1128px;
    height: 200px;
    background: #1F1F1F;
}
.footbot_lawer {
    width: 188px;
    height: 180px;
    background: url("../img/foobot_lawer.png");
    background-position-y: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.foobot_texts {
    display: block;
}
.foobot_title {
    margin: 20px 0 10px 20px;
    font-family: 'Roboto', sans-serif;
    height: 20px;
    color: #FFF;
    font-size: 16px;
}
.foobot_description {
    margin: 20px 0 10px 20px;
    font-family: 'Roboto', sans-serif;
    width: 50%;
    color: #FFF;
    font-size: 16px;
}
.foobot_option {
    margin-top: 10px;
    width: 100%;
    display: flex;
    height: 40px;
    justify-content: flex-end;
}
.buttons {
    display: flex;
    width: 300px;
    height: 40px;
}
.button_1 {
    border-radius: 20px;
    background: #FFFFFF;
    border: none;
    width: 130px;
    margin-right: 20px;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: 0.5s;
}
.button_2 {
    border-radius: 20px;
    background: #1F1F1F;
    color: #FFF;
    border: solid 1px #FFFFFF;
    width: 130px;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: 0.5s;
}
.button_1:hover, .button_2:hover {
    border-radius: 0px;
}
}