@import url('https://fonts.googleapis.com/css?family=Montserrat:300i,400,400i,500,600,700,800');

*, *:after, *:before {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.content {
    width: 90%;
    max-width: 1200px;
}

:root {
    --blue: #00adef;
    --red: #ec1b23;
}

/*BUTTONS*/
.button {
    display: block;
    width: 290px;
    font-size: 1.125em;
    font-weight: bold;
    color: #FFFFFF;
    text-align: center;
    padding: 14px 0;
    border: 2px solid #18bfff;
    -webkit-border-radius: 27px;
    -moz-border-radius: 27px;
    border-radius: 27px;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.button:hover {
    background-color: var(--blue);
    border-color: var(--blue);
}

.button_medium {
    width: 400px;
    max-width: 100%;
}

.button_big {
    width: 100%;
}

.button i {
    margin-right: 10px;
}

.button_blue {
    background-color: #18bfff;
    -webkit-box-shadow: 0 15px 15px rgba(24, 191, 255, 0.3);
    -moz-box-shadow: 0 15px 15px rgba(24, 191, 255, 0.3);
    box-shadow: 0 15px 15px rgba(24, 191, 255, 0.3);
}

.button_blue_dark {
    background-color: #00adef;
    border-color: #00adef;
    -webkit-box-shadow: 0 15px 15px rgba(0, 173, 239, 0.3);
    -moz-box-shadow: 0 15px 15px rgba(0, 173, 239, 0.3);
    box-shadow: 0 15px 15px rgba(0, 173, 239, 0.3);
}

.button_blue_dark:hover {
    background-color: #18bfff;
    border-color: #18bfff;
}

.button_border {
    border-color: #00adef;
    color: #00adef;
}

.button_border:hover {
    background-color: #00adef;
    border-color: #00adef;
    color: #FFFFFF;
}

.button_green {
    border-color: #89c261;
    color: #89c261;
}

.button_green:hover {
    background-color: #89c261;
    border-color: #89c261;
    color: #FFFFFF;
}

.button_icon {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.button_box {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.button_box .button {
    width: calc(50% - 10px);
}

/*HEADER*/
.header_container {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #FFFFFF;
}

.header_home{
    position: static;
}

.header_nav_container {
    background-color: var(--blue);
}

.header_logo {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -200px;
    width: 400px;
    height: 280px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: #FFFFFF;
    -webkit-border-radius: 0 0 30px 30px;
    -moz-border-radius: 0 0 30px 30px;
    border-radius: 0 0 30px 30px;
    -webkit-box-shadow: 0 38px 65px rgba(0, 0, 0, 0.21);
    -moz-box-shadow: 0 38px 65px rgba(0, 0, 0, 0.21);
    box-shadow: 0 38px 65px rgba(0, 0, 0, 0.21);
}


.header_menu {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.header_menu_box {
    display: flex;
    flex-wrap: wrap;
}

.header_menu a {
    display: block;
    font-size: 1.25em;
    font-weight: 600;
    color: #FFFFFF;
    padding: 58px 30px;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.header_menu li.active a,
.header_menu a:hover {
    background-color: var(--red);
}

.header_menu .right {
    margin-left: auto;
}

.header_social {
    justify-content: space-between;
    padding: 15px 0;
}

.header_social_facebook {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-weight: 300;
    font-style: italic;
    color: #878787;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.header_social_facebook i {
    font-size: 1.75em;
    color: #00adef;
    margin-right: 10px;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.header_social_facebook:hover {
    text-decoration: underline;
}

.header_social_facebook:hover i {
    color: #ec1b23;
}

.header_social_whatsapp {
    width: 299px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-weight: 300;
    font-style: italic;
    color: #878787;
    padding: 7px 0;
    border: 2px solid #89c261;
    -webkit-border-radius: 17px;
    -moz-border-radius: 17px;
    border-radius: 17px;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.header_social_whatsapp i {
    font-size: 1.25em;
    color: #89c261;
    margin-right: 10px;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.header_social_whatsapp:hover {
    background-color: #89c261;
    color: #FFFFFF;
}

.header_social_whatsapp:hover i {
    color: #FFFFFF;
}

.header_separator {
    width: 100%;
    height: 10px;
    background-color: #FFFFFF;
}

/*PAGES*/
.pages_header {
    width: 100%;
    height: 620px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.pages_header.about {
    background: url(../images/bg/bg-about.jpg) center top no-repeat;
    background-size: cover;
}

.pages_header.services {
    background: url(../images/bg/bg-services.jpg) center top no-repeat;
    background-size: cover;
}

.pages_header.contact {
    background: url(../images/bg/bg-contact.jpg) center top no-repeat;
    background-size: cover;
}

.pages_header_title {
    width: 90%;
    max-width: 1200px;
    font-size: 3em;
    font-weight: 800;
    color: #18bfff;
    text-align: center;
    margin-top: 264px;
}

.pages_content {
    padding: 80px 0;
}

.pages_cta_container {
    width: 100%;
    background-color: #e9e9e9;
}

.pages_cta {
    justify-content: center;
    align-items: center;
    padding: 80px 0;
}

.pages_cta p {
    font-size: 1.5em;
    font-weight: bold;
    color: #00adef;
    margin-right: 100px;
}

/*BANNER*/
.banner_container{
    width: 100%;
    display: block;
}

.main_banner {
    background: url(../images/bg/bg-banner.jpg) center top no-repeat;
    background-size: cover;
    height: 900px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.main_banner_header {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 200px;
}

.main_banner_title {
    width: 100%;
    font-size: 3em;
    font-weight: 800;
    color: #18bfff;
    text-align: center;
    margin-bottom: 80px;
}

.main_banner_title span {
    display: block;
    font-size: 0.7em;
    color: #FFFFFF;
    text-align: center;
}

/*SERVICES*/
.main_services_content {
    justify-content: flex-end;
    align-items: flex-start;
    /*padding: 160px 0 80px 0;*/
    padding: 120px 0 80px 0;
    position: relative;
}

.main_services_header {
    width: 100%;
    max-width: 600px;
}

.main_services_title {
    font-size: 3em;
    font-weight: bold;
    color: var(--blue);
    text-transform: uppercase;
    margin-bottom: 30px;
}

.main_services_text {
    font-size: 1.25em;
    font-weight: 300;
    color: #6f6f6f;
    line-height: 2em;
    margin-bottom: 50px;
}

.main_services_img {
    position: absolute;
    top: 80px;
    left: 0;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.main_services_list {
    position: absolute;
    top: 100%;
    margin-top: 60px;
    right: 0;
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.main_services_item {
    width: calc(50% - 10px);
    display: flex;
    flex-wrap: wrap;
}

.main_services_item i {
    display: flex;
    flex-wrap: wrap;
    height: 56px;
    font-size: 3.5em;
    color: #FFFFFF;
}

.main_services_item i.icon-tractor {
    font-size: 2.9em;
}

.main_services_list ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.main_services_list ul li {
    width: 100%;
    position: relative;
    font-size: 1.125em;
    color: rgba(255, 255, 255, 0.6);
    padding-left: 15px;
}

.main_services_list ul li:first-child {
    margin-bottom: 30px;
}

.main_services_list ul li::before {
    content: '';
    position: absolute;
    top: 6px;
    width: 10px;
    height: 10px;
    background-color: #FFFFFF;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    margin-left: -1em;
}

.main_services_item h2 {
    width: 100%;
    font-size: 1.125em;
    font-weight: 500;
    color: #FFFFFF;
    margin: 10px 0 20px 0;
}

.main_services_item p {
    width: 100%;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.main_services_tips li {
    display: flex;
    flex-wrap: wrap;
    font-size: 1.125em;
    font-style: italic;
    color: #6f6f6f;
    line-height: 2em;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
}

.main_services_tips li::before {
    content: '';
    position: absolute;
    top: 15px;
    width: 10px;
    height: 10px;
    background-color: #00adef;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    margin-left: -1em;
}

.services_header {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 40px;
}

.services_header h2 {
    width: 100%;
    font-size: 2.375em;
    font-weight: bold;
    color: #00adef;
}

.services_header p {
    width: 100%;
    font-size: 1.125em;
    color: #6f6f6f;
    line-height: 2em;
}

.services_text {
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    background-color: #FFFFFF;
    padding: 50px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    -webkit-box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
    margin: 0 auto 60px auto;
}

.services_text h2 {
    width: 100%;
    font-size: 1.875em;
    font-weight: bold;
    color: #00adef;
    margin-bottom: 20px;
}

.services_text p {
    width: 100%;
    font-size: 1.125em;
    color: #6f6f6f;
    line-height: 2em;
    margin-bottom: 20px;
}


.service_item {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 100px;
}

.service_item:last-child {
    margin-bottom: 0;
}

.service_item:nth-of-type(2n+0) .service_cover {
    order: 1;
}

.service_cover {
    width: calc(100% - 640px);
    max-width: 500px;
}

.service_cover img {
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    -webkit-box-shadow: 0 50px 70px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0 50px 70px rgba(0, 0, 0, 0.4);
    box-shadow: 0 50px 70px rgba(0, 0, 0, 0.4);
}

.service_header {
    width: 600px;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
}

.service_header i.icon-car {
    font-size: 6.25em;
    color: #00adef;
    margin-bottom: -13px;
}

.service_header i.icon-tractor {
    font-size: 5.25em;
    color: #00adef;
    margin-bottom: 5px;
}

.service_header h2 {
    width: 100%;
    font-size: 2.375em;
    font-weight: bold;
    color: #00adef;
    margin-bottom: 30px;
}

.service_header p {
    font-size: 1.25em;
    font-style: italic;
    color: #6f6f6f;
    line-height: 2em;
    margin-bottom: 30px;
}

.service_item_button {
    display: none;
}

.service_item ul li {
    display: flex;
    flex-wrap: wrap;
    font-size: 1.25em;
    font-style: italic;
    color: #6f6f6f;
    line-height: 2em;
    margin-bottom: 30px;
    position: relative;
    padding-left: 15px;
}

.service_item ul li::before {
    content: '';
    position: absolute;
    top: 15px;
    width: 10px;
    height: 10px;
    background-color: #00adef;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    margin-left: -1em;
}

/*ABOUT*/
.main_about_container {
    background: url(../images/bg-soneca.jpg) center bottom no-repeat;
    background-size: cover;
    height: 1269px;
}

.main_about_content {
    justify-content: center;
    /*padding-top: 480px;*/
    padding-top: 360px;
}

.main_about_title {
    width: 100%;
    font-size: 3em;
    font-weight: bold;
    color: #FFFFFF;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.main_about_text {
    width: 100%;
    /*max-width: 1000px;*/
    /*font-size: 1.25em;*/
    font-size: 1.125em;
    font-style: italic;
    color: #FFFFFF;
    text-align: center;
    line-height: 2em;
    /*margin-bottom: 60px;*/
    margin-bottom: 20px;
}

.about_text {
    font-size: 1.125em;
    color: #6f6f6f;
    line-height: 2em;
    margin-bottom: 20px;
}

.about_content .about_text {
    color: #FFFFFF;
}

.about_text p {
    margin-bottom: 20px;
}

.about_instutional {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.about_img {
    width: 50%;
    max-width: 600px;
}

.about_img img {
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    -webkit-box-shadow: 0 50px 70px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0 50px 70px rgba(0, 0, 0, 0.4);
    box-shadow: 0 50px 70px rgba(0, 0, 0, 0.4);
}

.about_institutional_right {
    width: 45%;
    max-width: 500px;
}

.about_institutional_item {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.about_institutional_item:last-child {
    margin-bottom: 0;
}

.about_institutional_item h2 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 1.375em;
    font-weight: bold;
    color: #00adef;
    margin-bottom: 15px;
}

.about_institutional_item h2 i {
    font-size: 1.75em;
    margin-right: 20px;
}

.about_institutional_item p {
    font-style: italic;
    color: #6f6f6f;
    line-height: 1.8em;
}

.about_container {
    background: url(../images/bg-soneca.jpg) center bottom no-repeat;
    background-size: cover;
    height: 900px;
}

.about_content {
    padding: 80px 0;
}

.about_title {
    width: 100%;
    font-size: 3em;
    font-weight: bold;
    color: #FFFFFF;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 60px;
}

.about_gallery a img {
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

/*CONTACT*/
.contact_content {
    justify-content: space-between;
    align-items: flex-start;
}

.contact_left {
    width: 400px;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.contact_title {
    width: 100%;
    font-size: 2.5em;
    font-weight: 800;
    color: #00adef;
    margin-bottom: 30px;
}

.contact_address {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.contact_address i {
    font-size: 3em;
    color: #00adef;
}

.contact_address p {
    font-size: 1.125em;
    font-style: italic;
    color: #6f6f6f;
    line-height: 2em;
    margin-left: 20px;
}

.contact_maps {
    font-weight: 300;
    font-style: italic;
    color: #6f6f6f;
    text-decoration: underline;
    margin: 10px 0 50px 76px;
}

.contact_phone {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 1.5em;
    font-weight: bold;
    color: #00adef;
    margin-bottom: 60px;
}

.contact_phone i {
    font-size: 2em;
    margin-right: 20px;
}

.contact_form {
    width: calc(100% - 440px);
    max-width: 650px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    background-color: #FFFFFF;
    padding: 50px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    -webkit-box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
}

.contact_form_text {
    width: 100%;
    font-size: 1.5em;
    font-weight: 600;
    color: #6f6f6f;
    margin-bottom: 40px;
}

.contact_form input,
.contact_form textarea {
    font-weight: 300;
    color: #6f6f6f;
    border: none;
    border-bottom: 1px solid #dadada;
    margin-bottom: 30px;
}

.contact_form textarea {
    resize: none;
}

.contact_form input::placeholder {
    font-weight: 300;
    font-style: italic;
    color: #6f6f6f;
}

.contact_form textarea::-webkit-input-placeholder {
    font-weight: 300;
    font-style: italic;
    color: #6f6f6f;
}

.contact_form textarea::-moz-placeholder {
    font-weight: 300;
    font-style: italic;
    color: #6f6f6f;
}

.contact_form button {
    cursor: pointer;
    outline: none;
}

.contact_about_bg {
    background: url(../images/bg-soneca.jpg) center bottom -20px no-repeat;
    background-size: cover;
    height: 496px;
}

/*FOOTER*/
.footer_menu {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 50px 0;
    border-bottom: 2px solid #dedcdc;
}

.footer_menu a {
    display: block;
    font-size: 1.125em;
    color: #00aaeb;
    padding: 15px 20px;
    margin: 0 5px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.footer_menu li.active a,
.footer_menu a:hover {
    color: #FFFFFF;
    background-color: #ec1b23;
    -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.footer_info {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding: 50px 0;
}

.footer_address {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.footer_address i {
    font-size: 3.5em;
    color: #00adef;
}

.footer_address p {
    font-size: 1.25em;
    font-style: italic;
    color: #6f6f6f;
    line-height: 2em;
    margin-left: 40px;
}

.footer_phone {
    font-size: 1.5em;
    font-weight: bold;
    color: #00adef;
    margin-bottom: 15px;
}

.footer_copy {
    width: 100%;
    background-color: var(--blue);
}

.footer_copy_content {
    justify-content: center;
    padding: 30px 0;
}

.footer_copy p,
.footer_copy a {
    font-size: 0.9375em;
    font-weight: 300;
    color: #FFFFFF;
}

.footer_copy a {
    margin-left: 5px;
}

.footer_copy a span {
    font-weight: bold;
}

.footer_copy a:hover {
    text-decoration: underline;
}

/*1392px 87em*/
@media (max-width: 87em) {
    .about_container {
        height: 780px;
    }
}


/*1280px 80em*/
/*1279px*/
@media (max-width: 79.9375em) {
    .header_logo {
        margin-left: -170px;
        width: 340px;
        height: 240px;
    }

    .header_logo img {
        height: 120px;
    }

    .pages_header {
        height: 520px;
    }

    .pages_header_title {
        margin-top: 200px;
    }

    .main_banner {
        height: 768px;
    }

    .main_services_content {
        padding: 80px 0;
    }

    .main_services_img {
        width: 450px;
    }

    .main_services_list {
        margin-top: 50px;
    }

    .main_about_content {
        /*padding-top: 450px;*/
        padding-top: 350px;
    }
}

/*1200px 75em*/
/*1199px*/
@media (max-width: 74.9375em) {
    .header_menu a {
        padding: 58px 25px;
    }

    .main_services_header,
    .main_services_list {
        max-width: 520px;
    }

    .main_services_title {
        font-size: 2.5em;
    }

    .main_services_text {
        font-size: 1.125em;
        margin-bottom: 40px;
    }

    .footer_info {
        justify-content: space-between;
    }

    .service_header h2 {
        margin-bottom: 20px;
    }

    .service_header p {
        font-size: 1.125em;
    }

    .contact_about_bg {
        background-position: center bottom;
        height: 350px;
    }
}

/*1104px*/
@media (max-width: 69em) {
    .main_services_img {
        width: 360px;
    }

    .main_services_list {
        max-width: 600px;
        left: 50%;
        margin-top: 40px;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .main_services_list ul li:first-child {
        margin-bottom: 20px;
    }

    .main_about_container {
        height: 1200px;
    }

    .main_about_content {
        /*padding-top: 400px;*/
        padding-top: 280px;
    }

    .main_about_title {
        margin-bottom: 20px;
    }
}

/*1088px*/
@media (max-width: 68em) {
    .header_menu a {
        font-size: 1.125em;
        padding: 48px 20px;
    }

    .header_social_whatsapp {
        width: 280px;
    }

    .pages_header {
        height: 480px;
    }

    .footer_info {
        justify-content: space-around;
    }

    .footer_info .button {
        display: none;
    }

    .about_text {
        margin-bottom: 20px;
    }
}

/*1024px 64em*/
/*1023px*/
@media (max-width: 63.9375em) {
    .header_container {
        background-color: var(--blue);
    }

    .header_content {
        width: 90%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        margin: 0 auto;
        padding: 20px 0;
    }

    .header_social {
        width: auto;
        margin: 0;
    }

    .header_social .header_social_facebook,
    .header_social .header_social_facebook i {
        color: #FFFFFF;
    }

    .header_social .header_social_whatsapp {
        display: none;
    }

    .header_nav_container {
        display: flex;
        flex-wrap: wrap;
    }

    .header_nav {
        display: block;
    }

    .header_menu_mobile {
        display: block;
        color: #FFFFFF;
        width: 25px;
        height: 21px;
        border-top: 3px solid;
        float: left;
        position: relative;
        cursor: pointer;
        -webkit-backface-visibility: hidden;
    }

    .header_menu_mobile::after, .header_menu_mobile::before {
        content: '';
        display: block;
        height: 3px;
        margin-top: 6px;
        background: currentColor;
        position: relative;
        transition: transform .2s ease;
    }

    .header_menu_mobile.active {
        border-top-color: transparent;
        z-index: 4;
        color: #FFFFFF;
    }

    .header_menu_mobile.active::after {
        margin-top: 0px;
        top: 3px;
        transform: rotate(45deg);
    }

    .header_menu_mobile.active::before {
        margin-top: 0px;
        top: 6px;
        transform: rotate(135deg);
    }

    .header_nav {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        position: relative;
        padding: 10px 10px;
        transition-duration: 0.3s;
        -webkit-transition-duration: 0.3s;
        -moz-transition-duration: 0.3s;
        order: 1;
    }

    .header_nav.active {
        background-color: var(--red);
        border-radius: 10px 10px 0 0;
    }

    .header_menu {
        z-index: 5;
        width: 200px;
        display: none;
        position: absolute;
        right: 0;
        top: 41px;
        background: var(--red);
        padding: 20px;
        -moz-border-radius: 10px 0 10px 10px;
        -webkit-border-radius: 10px 0 10px 10px;
        border-radius: 10px 0 10px 10px;
        -webkit-box-shadow: 0 20px 30px rgba(0, 0, 0, 0.25);
        -moz-box-shadow: 0 20px 30px rgba(0, 0, 0, 0.25);
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.25);
        margin-top: 0;
    }

    .header_menu li {
        width: 100%;
    }

    .header_menu a {
        padding: 10px;
    }

    .header_menu li.active a,
    .header_menu a:hover {
        background: none;
    }

    .header_logo {
        margin: 0;
        width: auto;
        height: auto;
        padding: 40px 50px;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .header_logo img {
        max-width: 253px;
        height: 100px;
    }

    .main_banner {
        height: 600px;
    }

    .main_banner_header {
        margin-top: 150px;
    }

    .pages_header {
        height: 400px;
    }

    .pages_header_title {
        margin-top: 150px;
    }

    /*CONTENTS*/
    .pages_content,
    .main_services_content,
    .about_content,
    .pages_cta {
        padding: 60px 0;
    }

    .main_services_img {
        width: calc(100% - 560px);
        top: 60px;
    }

    .about_img {
        width: 100%;
        margin: 0 auto;
    }

    .about_img img {
        -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        -moz-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    }

    .about_institutional_right {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 40px;
    }

    .service_item {
        align-items: center;
    }

    .service_cover {
        width: calc(100% - 540px);
    }

    .service_header {
        width: 500px;
    }

    .service_header i.icon-car {
        font-size: 5.25em;
    }

    .service_header i.icon-tractor {
        font-size: 4.25em;
    }

    .service_header h2 {
        font-size: 2em;
    }

    .service_header p {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .service_header .button {
        font-size: 1em;
    }

    .contact_content {
        justify-content: center;
    }

    .contact_left {
        order: 1;
        margin-top: 80px;
    }

    .contact_form {
        width: 100%;
    }

    .about_container {
        height: 700px;
    }
}

/*960px 60em*/
/*959px*/
@media (max-width: 59.9375em) {

}

/*900px 56.25em*/
/*899px*/
@media (max-width: 56.1875em) {
    .main_services_img {
        display: none;
    }

    .main_services_content {
        justify-content: center;
    }

    .main_services_header {
        max-width: 600px;
    }

    .main_services_title {
        text-align: center;
    }

    .main_about_container {
        /*height: 1000px;*/
        height: 1269px;
    }

    .main_about_content {
        /*padding-top: 350px;*/
        padding-top: 240px;
    }

    .main_about_title {
        font-size: 2.5em;
        margin-bottom: 30px;
    }

    .main_about_text {
        font-size: 1.125em;
        /*margin-bottom: 40px;*/
        margin-bottom: 20px;
    }

    .about_title {
        font-size: 2.5em;
        margin-bottom: 40px;
    }

    .pages_cta p {
        margin-right: 50px;
    }

    .service_cover {
        width: 40%;
    }

    .service_cover img {
        -webkit-border-radius: 30px;
        -moz-border-radius: 30px;
        border-radius: 30px;
        -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        -moz-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    }

    .service_header {
        width: calc(60% - 40px);
    }

    .service_header h2 {
        font-size: 1.75em;
    }

    .service_header p {
        margin-bottom: 0;
    }

    .service_header .button {
        display: none;
    }

    .service_item_button {
        display: block;
        max-width: 600px;
        margin: 40px auto 0 auto;
        order: 2;
    }

    .contact_title {
        font-size: 2em;
    }

    .contact_about_bg {
        height: 300px;
    }
}

/*800px*/
@media (max-width: 50em) {

}

/*768px 48em*/
/*767px*/
@media (max-width: 47.9375em) {
    .pages_header {
        height: 350px;
    }

    .pages_header_title {
        font-size: 2.5em;
        margin-top: 130px;
    }

    .footer_info {
        justify-content: space-between;
    }

    .footer_address p {
        font-size: 1.125em;
        margin-left: 20px;
    }

    .services_text {
        width: 100%;
    }
}

/*720px 45em*/
/*719px*/
@media (max-width: 44.9375em) {
    .header_social .header_social_facebook {
        font-size: 0;
    }

    .header_social .header_social_facebook i {
        font-size: 28px;
        margin-right: 0;
    }

    .main_banner {
        height: 500px;
    }

    .main_banner_header {
        max-width: 520px;
        margin-top: 120px;
    }

    .main_banner_title {
        font-size: 2.5em;
        margin-bottom: 50px;
    }

    /*CONTENTS*/
    .pages_content,
    .main_services_content,
    .footer_menu,
    .footer_info,
    .about_content,
    .pages_cta {
        padding: 40px 0;
    }

    .main_about_container {
        background: url(../images/bg-soneca2.jpg) center top no-repeat;
        background-size: cover;
        height: auto;
    }

    .main_about_content {
        padding: 240px 0 60px 0;
    }

    .main_about_title {
        font-size: 2em;
    }

    .main_about_text {
        font-size: 1em;
    }

    .footer_menu a {
        padding: 15px;
        margin: 0;
    }

    .footer_info {
        flex-direction: column;
    }

    .footer_address {
        margin-bottom: 40px;
    }

    .footer_address p {
        font-size: 1.125em;
        margin-left: 20px;
    }

    .footer_info .button {
        display: block;
        margin-top: 40px;
    }

    .about_text {
        font-size: 1em;
    }

    .pages_cta p {
        width: 100%;
        text-align: center;
        margin: 0 0 20px 0;
    }

    .service_cover {
        width: 100%;
        order: 1;
        margin: 20px auto 0 auto;
    }

    .service_header {
        width: 100%;
    }

    .service_item {
        margin-bottom: 60px;
    }

    .contact_about_bg {
        height: 200px;
    }

    .services_header {
        margin-bottom: 20px;
    }

    .services_header h2 {
        font-size: 1.75em;
    }

    .services_header p {
        font-size: 1em;
    }

    .services_text h2 {
        font-size: 1.5em;
    }

    .services_text p {
        font-size: 1em;
    }

    .service_item ul li {
        font-size: 1.125em;
        padding-left: 15px;
    }
}

/*592px 37em*/
/*591px*/
@media (max-width: 36.9375em) {
    .button {
        font-size: 1em;
    }

    .main_banner_header {
        max-width: 420px;
    }

    .main_banner_title {
        font-size: 2em;
        margin-bottom: 40px;
    }

    .main_services_title {
        font-size: 2em;
        margin-bottom: 20px;
    }

    .main_services_text {
        margin-bottom: 20px;
    }

    .main_services_item {
        width: 100%;
        justify-content: center;
    }

    .main_services_item h2 {
        text-align: center;
    }

    .main_services_item:first-of-type {
        margin-bottom: 40px;
    }

    .main_about_title {
        font-size: 2em;
        margin-bottom: 20px;
    }

    .main_about_text {
        margin-bottom: 20px;
    }

    .footer_menu li {
        width: 100%;
        max-width: 200px;
    }

    .footer_menu a {
        text-align: center;
    }

    .footer_copy p,
    .footer_copy a {
        width: 100%;
        font-size: 0.875em;
        text-align: center;

    }

    .footer_copy a {
        margin: 10px 0 0 0;
    }

    .about_title {
        font-size: 2em;
    }

    .service_header h2 {
        font-size: 1.5em;
        margin-bottom: 10px;
    }

    .service_item_button span {
        display: block;
    }

    .contact_form_text {
        font-size: 1.25em;
        text-align: center;
    }

    .contact_about_bg {
        height: 180px;
    }

    .services_text {
        padding: 30px;
    }
}

/*480px 30em*/
/*479px*/
@media (max-width: 29.9375em) {
    .header_logo {
        padding: 30px 40px;
    }

    .header_logo img {
        height: 90px;
    }

    .pages_header {
        height: 300px;
    }

    .pages_header_title {
        font-size: 2em;
        margin-top: 120px;
    }

    .contact_form {
        padding: 20px;
    }

    .contact_form_text {
        font-size: 1.125em;
        margin-bottom: 20px;
    }

    .main_services_tips li {
        font-size: 1em;
    }

    .main_services_list ul li {
        font-size: 1em;
    }
}

/*464px*/
@media (max-width: 29em) {
    .button_box {
        justify-content: center;
    }

    .button_box .button {
        width: 100%;
        max-width: 290px;
    }

    .button_box .button:first-child {
        margin-bottom: 20px;
    }

    .header_logo {
        padding: 30px 35px;
    }

    .header_logo img {
        height: 80px;
    }

    .pages_header_title {
        margin-top: 110px;
    }

    .main_banner_title {
        font-size: 1.5em;
        margin-bottom: 40px;
    }

    .main_banner_title span {
        font-size: 0.8em;
    }

    .main_about_title span {
        display: block;
    }

    .footer_address {
        justify-content: center;
    }

    .footer_address i {
        font-size: 3em;
    }

    .footer_address p {
        width: 100%;
        font-size: 1em;
        text-align: center;
        margin: 5px 0 0 0;
    }

    .main_about_content {
        padding: 300px 0 60px 0;
    }

    .about_container {
        height: 800px;
    }

    .pages_cta p {
        font-size: 1.25em;
    }

    .service_header {
        justify-content: center;
    }

    .service_header h2 {
        text-align: center;
    }

    .contact_left {
        justify-content: center;
    }

    .contact_title {
        text-align: center;
    }

    .contact_address {
        width: 100%;
        justify-content: center;
    }

    .contact_address i {
        font-size: 3em;
    }

    .contact_address p {
        width: 100%;
        font-size: 1em;
        text-align: center;
        margin: 5px 0 0 0;
    }

    .contact_maps {
        margin: 0 auto 40px auto;
    }

    .contact_about_bg {
        height: 160px;
    }
}

/*352px*/
@media (max-width: 22em) {
    .header_logo {
        padding: 30px;
    }

    .header_logo img {
        height: 70px;
    }

    .main_banner_title span {
        font-size: 0.7em;
    }

    .about_container {
        height: 900px;
    }

    .pages_cta p span {
        display: block;
    }

    .main_about_content {
        padding: 320px 0 60px 0;
    }
}
