@charset "utf-8";
@import url("../webfonts/ProximaNova_SemiBold/styles.css");
@import url("../webfonts/ProximaNova_Regular/styles.css");
@import url("../webfonts/ProximaNova_Bold/styles.css");
/* CSS Document */

body {
    background-color: white;
    margin: 0px;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #666666;
    -webkit-box-shadow: inset 2px 2px 3px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: inset 2px 2px 3px 0px rgba(0, 0, 0, 0.5);
    box-shadow: inset 2px 2px 3px 0px rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb {
    background: #efd312;
    border-radius: 4px;
    -webkit-box-shadow: inset 2px 2px 3px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: inset 2px 2px 3px 0px rgba(0, 0, 0, 0.5);
    box-shadow: inset 2px 2px 3px 0px rgba(0, 0, 0, 0.5);
}

#ONE {
    height: 100vh;
}

#TWO {
    height: auto;
    padding-bottom: 60px
}

#THREE {
    height: auto;
}

#FOUR {
    height: auto;
    padding-bottom: 60px;
}

#FIVE {
    height: 768px;
}

#ONE {}

#TWO {
    background-color: white;
    background-image: url(../img/offer_bg.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
}

#THREE {
    background-color: #f4edf3;
    padding-top: 70px
}

#FOUR {
    background-color: white;
    background-image: url(../img/offer_bg.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    padding-top: 70px;
}

#FIVE {
    background-color: #f4edf3;
}

/* SCROLL ICON --- START */

#scroll_icon {
    background-image: url(../img/scroll_icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100px;
    height: 100px;
    position: absolute;
    margin: auto;
    bottom: -42px;
    left: 0px;
    right: 0px;
    z-index: 1;
}

/* SCROLL ICON --- END */

/* MENU STYLES --- START */

#menu {
    border-bottom-style: solid;
    border-color: rgba(255, 255, 255, 0.5);
    border-width: 1px;
    position: absolute;
    height: 62px;
    width: 100%;
    z-index: 3;
    font-family: ProximaNova-Semibold;
    color: white;
    font-size: 16px;
    padding-top: 25px;
    -webkit-transition: all 200ms cubic-bezier(0.5, 0, 0.5, 1);
    -moz-transition: all 200ms cubic-bezier(0.5, 0, 0.5, 1);
    -o-transition: all 200ms cubic-bezier(0.5, 0, 0.5, 1);
    transition: all 200ms cubic-bezier(0.5, 0, 0.5, 1);
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4d000000', endColorstr='#1a000000', GradientType=0);
}

#menu.sticky {
    border-style: none;
    text-shadow: none;
    color: #333333;
    position: fixed;
    height: auto;
    z-index: 10;
    width: 100%;
    background-color: white;
    padding-top: 10px;
    padding-bottom: 10px;
    -webkit-box-shadow: 0px 2px 10px 2px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 2px 10px 2px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 2px 10px 2px rgba(0, 0, 0, 0.25);
    -webkit-transition: all 200ms cubic-bezier(0.5, 0, 0.5, 1);
    -moz-transition: all 200ms cubic-bezier(0.5, 0, 0.5, 1);
    -o-transition: all 200ms cubic-bezier(0.5, 0, 0.5, 1);
    transition: all 200ms cubic-bezier(0.5, 0, 0.5, 1);
    background: rgb(240, 249, 255);
    background: -moz-linear-gradient(top, rgba(240, 249, 255, 1) 1%, rgba(229, 229, 229, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(240, 249, 255, 1) 1%, rgba(229, 229, 229, 1) 100%);
    background: linear-gradient(to bottom, rgba(240, 249, 255, 1) 1%, rgba(229, 229, 229, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f0f9ff', endColorstr='#e5e5e5', GradientType=0);
}

#menu ul {
    margin: 0px;
    padding: 0px;
    text-align: right;
}

#menu ul li {
    display: inline-block;
}

#menu li {
    padding: 10px;
    margin-left: 30px;
    -webkit-transition: all 200ms cubic-bezier(0.5, 0, 0.5, 1);
    -moz-transition: all 200ms cubic-bezier(0.5, 0, 0.5, 1);
    -o-transition: all 200ms cubic-bezier(0.5, 0, 0.5, 1);
    transition: all 200ms cubic-bezier(0.5, 0, 0.5, 1);
}

#menu li:hover {
    border-bottom-style: solid;
    border-bottom-color: white;
    border-bottom-width: 2px;
    -webkit-transition: all 200ms cubic-bezier(0.5, 0, 0.5, 1);
    -moz-transition: all 200ms cubic-bezier(0.5, 0, 0.5, 1);
    -o-transition: all 200ms cubic-bezier(0.5, 0, 0.5, 1);
    transition: all 200ms cubic-bezier(0.5, 0, 0.5, 1);
}

#menu li:active {
    border-bottom-color: #fce500;
    position: relative;
    top: 2px;
    -webkit-transition: all 200ms cubic-bezier(0.5, 0, 0.5, 1);
    -moz-transition: all 200ms cubic-bezier(0.5, 0, 0.5, 1);
    -o-transition: all 200ms cubic-bezier(0.5, 0, 0.5, 1);
    transition: all 200ms cubic-bezier(0.5, 0, 0.5, 1);
}

#menu a {
    text-decoration: none;
    color: inherit;
}

#contacto_menu {
    background-color: #314e96;
    border-radius: 20px;
    padding-left: 25px !important;
    padding-right: 25px !important;
    margin-right: 5vw;
}

#contacto_menu.sticky {
    color: white;
}

#contacto_menu:hover {
    border-bottom-style: none !important;
    -webkit-box-shadow: 0px 4px 0px 0px rgba(25, 39, 75, 1);
    -moz-box-shadow: 0px 4px 0px 0px rgba(25, 39, 75, 1);
    box-shadow: 0px 4px 0px 0px rgba(25, 39, 75, 1);
}

#contacto_menu:active {
    color: black;
    background-color: #fce500;
    -webkit-box-shadow: 0px 2px 0px 0px rgba(170, 122, 14, 1);
    -moz-box-shadow: 0px 2px 0px 0px rgba(170, 122, 14, 1);
    box-shadow: 0px 2px 0px 0px rgba(170, 122, 14, 1);
}

#menu_img_scroll {
    background-image: url(../img/logo_menu.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    height: 40px;
    width: 175px;
    position: absolute;
    top: 8px;
    left: 8px;
    display: none;
}

#menu_img_scroll.sticky {
    display: block;
}

#menu_img {
    background-image: url(../img/logo_menu.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 170px;
    height: 40px;
    position: absolute;
    margin-left: 10px;
    display: none;
}

.mobile-nav-trigger {
    display: none;
    background-size: contain;
    background-color: transparent;
    background-repeat: no-repeat;
    background-image: url(../img/menu_mob_icon.svg);
    height: 40px;
    width: 40px;
    border: none;
    float: right;
    margin-right: 10px;
    -webkit-transition: all 200ms cubic-bezier(0.5, 0, 0.5, 1);
    -moz-transition: all 200ms cubic-bezier(0.5, 0, 0.5, 1);
    -o-transition: all 200ms cubic-bezier(0.5, 0, 0.5, 1);
    transition: all 200ms cubic-bezier(0.5, 0, 0.5, 1);
}

.mobile-nav-trigger.active {
    background-image: url(../img/menu_mob_icon_close.svg);
    -webkit-transition: all 200ms cubic-bezier(0.5, 0, 0.5, 1);
    -moz-transition: all 200ms cubic-bezier(0.5, 0, 0.5, 1);
    -o-transition: all 200ms cubic-bezier(0.5, 0, 0.5, 1);
    transition: all 200ms cubic-bezier(0.5, 0, 0.5, 1);
}

/* MEDIA QUERIES */

@media screen and (max-width:1110px) {
    #menu {
        font-size: 14px;
    }
    #menu ul {
        text-align: right;
    }
    #menu li {
        margin-left: 10px;
    }
    #contacto_menu {
        margin-right: 10px;
    }
}

@media screen and (max-width:900px) {
    #menu_img_scroll.sticky {
        display: none;
    }
}

@media screen and (max-width:768px) {
    #menu {
        height: 50px;
        padding-top: 10px;
    }
    #menu ul li {
        display: block;
        border-top: 2px rgba(130, 130, 130, 0.25) solid;
    }
    #menu ul {
        display: none;
        z-index: 1;
        width: 100%;
        position: absolute;
        text-align: center;
        top: 60px;
    }
    #menu li {
        margin-left: 0px;
        background-color: rgba(0, 0, 0, 0.85);
        font-size: 20px;
    }
    #contacto_menu {
        border-bottom-right-radius: 10px;
        border-bottom-left-radius: 10px;
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
        background-color: rgba(49, 78, 150, 0.85) !important;
        -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
        -moz-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
        box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
        margin-right: 0px;
    }
    #menu.sticky {
        color: #ffffff;
        position: fixed;
        width: 100%;
        padding-top: 10px;
    }
    #menu_img {
        display: block;
    }
    #menu li:hover {
        border-bottom-style: none;
    }

    #menu li:active {
        top: 0px;
    }
}

/* MENU STYLES --- END */

/* BG VIDEO --- START */

video#bgvid {
    position: fixed;
    top: 50%;
    left: 50%;
    min-height: 100%;
    min-width: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background-image: url(../img/bgv_poster.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

/* BG VIDEO --- END */

/* SPLASH --- START */

#splash {
    background: rgba(0, 0, 0, 0.75);
    height: 560px;
    width: 520px;
    padding: 40px;
    text-align: justify;
    position: absolute;
    top: 15vh;
    right: 140px;
    z-index: 2;
}

#splash_logo {
    background-image: url(../img/logo_splash.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    height: 110px;
    width: 100%;
}

#splash_text {
    color: white;
    font-family: ProximaNova-Regular;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: .5px;
    margin-top: 80px;
    margin-bottom: 80px;
}

#splash_text h1 {
    font-size: 45px;
    margin: 0px 0px 40px 0px;
}

#splash_text b {
    font-family: ProximaNova-Bold;
}

#splash_button_cont {
    text-align: center;
}

#vidsplash {
    background-color: #314e96;
    border-style: none;
    font-family: ProximaNova-bold;
    color: white;
    font-size: 24px;
    letter-spacing: .5px;
    padding: 20px 50px 20px 50px;
    border-radius: 30px;
    cursor: pointer;
    outline: none;
}

/* MEDIA QUERIES */

@media screen and (max-width:480px) {
    #splash {
        top: 80px !important;
        padding: 20px 0px 20px 0px !important;
    }
    #splash_logo {
        height: 50px !important;
    }
    #splash_text {
        margin: 10px 40px 10px 40px !important;
        font-size: 14px !important;
    }
}

@media screen and (max-width:880px) {
    #splash {
        padding: 20px 0px 40px 0px;
        margin-left: 5vw;
        width: 90vw;
        height: auto;
        right: unset;
    }
    #splash_text {
        margin: 20px 40px 40px 40px;
        letter-spacing: 0px;
        font-size: 18px;
    }
    #splash_text h1 {
        font-size: 26px;
        margin: 0px 0px 20px 0px;
    }
    #splash_logo {
        height: 100px;
        width: 70vw;
        margin-left: auto;
        margin-right: auto;
    }
}

/* SPLASH --- END */

/* OFFERS --- START */

#brands {
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 10vw;
    padding-right: 10vw;
    padding-top: 70px;
    padding-bottom: 70px;
    background-color: rgba(240, 240, 240, 1);
    margin-bottom: 30px;
}

.logo_offer {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 30px;
    width: 10vw;
    margin: 20px 40px 20px 40px;
}

.L01 {
    background-image: url(../img/logos_offer/michelin.svg);
}

.L02 {
    background-image: url(../img/logos_offer/bfgoodrich.svg);
}

.L03 {
    background-image: url(../img/logos_offer/uniroyal.svg);
}

.L04 {
    background-image: url(../img/logos_offer/goodyear.svg);
}

.L05 {
    background-image: url(../img/logos_offer/rovelo.svg);
}

.L06 {
    background-image: url(../img/logos_offer/pirelli.svg);
}

.L07 {
    background-image: url(../img/logos_offer/yokohama.svg);
}

.L08 {
    background-image: url(../img/logos_offer/bridgestone.svg);
}

.L09 {
    background-image: url(../img/logos_offer/hankook.svg);
}

#offer_cont {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 15vw;
    padding-right: 15vw;
}

#offer_text {
    height: auto;
    width: 50%;
    font-family: ProximaNova-Regular;
    text-align: center;
}

#offer_img {
    background-image: url(../img/offer_tires.svg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 65%;
    height: auto;
    width: 50%;
}

.T01 {
    font-size: 70px;
    color: #333333;
    margin-bottom: 40px;
}

.T02,
.T03,
.T04,
.T05,
.T06 {
    font-size: 20px;
    color: #999999;
    margin-bottom: 20px;
    height: 50px;
    width: auto;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
    padding-left: 100px;
    text-align: left
}

.T02 {
    background-image: url(../img/offer_icons/icon_01.svg);
}

.T03 {
    background-image: url(../img/offer_icons/icon_02.svg);
}

.T04 {
    background-image: url(../img/offer_icons/icon_03.svg);
}

.T05 {
    background-image: url(../img/offer_icons/icon_04.svg);
}

.T06 {
    background-image: url(../img/offer_icons/icon_05.svg);
}

#offer_button {
    background-color: #314e96;
    border-style: none;
    font-family: ProximaNova-bold;
    color: white;
    font-size: 14px;
    letter-spacing: .5px;
    padding: 20px 50px 20px 50px;
    border-radius: 30px;
    cursor: pointer;
    outline: none;
    text-decoration: none;
}

/* MEDIA QUERIES */

@media screen and (max-width: 480px) {
    #brands {
        padding-left: 0vw !important;
        padding-right: 0vw !important;
        margin-bottom: 10px;
    }
    .logo_offer {
        margin: 15px !important;
    }
    #offer_button {
        padding: 20px;
    }
}

@media screen and (max-width:900px) {
    #brands {
        padding-left: 5vw;
        padding-right: 5vw;
    }

    .logo_offer {
        margin: 10px 20px 10px 20px;
        width: 110px;
        height: 50px;
    }
}

@media screen and (max-width:768px) {
    #offer_cont {
        flex-direction: column;
        padding-left: 5vw;
        padding-right: 5vw;
    }
    #offer_text {
        width: 100%;
    }
    #offer_img {
        height: 250px;
        width: 100%;
        background-position: center;
        background-size: contain;
        margin-top: 30px;
    }
    .T02,
    .T03,
    .T04,
    .T05,
    .T06 {
        margin-bottom: 15px;
        height: 40px;
    }
}

/* OFFERS --- END */

/* SOLUTION --- START */

#solution_cont {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 15vw;
    padding-right: 15vw;
    height: 100%;
    align-items: center;
    background-image: url(../img/solution_bg.svg);
    background-repeat: no-repeat;
    background-size: cover;
}

#solution_img {
    background-image: url(../img/solution_img.svg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    width: 50%;
    height: 768px;
}

#solution_text {
    height: auto;
    width: 50%;
    font-family: ProximaNova-Regular;
    text-align: center;
}

.S01 {
    color: white;
    font-size: 50px;
    margin-bottom: 40px;
}

.S02 {
    color: white;
    font-size: 16px;
    text-align: left;
    line-height: 30px;
}

.S02 ul {
    padding-left: 20px;
}

.S02 ul li {
    margin-bottom: 20px;
}

#solution_button {
    background-color: #00ceba;
    border-style: none;
    font-family: ProximaNova-bold;
    color: white;
    font-size: 14px;
    letter-spacing: .5px;
    padding: 20px 50px 20px 50px;
    border-radius: 30px;
    cursor: pointer;
    outline: none;
    text-decoration: none;
}


/* MEDIA QUERIES */

@media screen and (max-width: 640px) {
    #solution_text {
        width: 85%;
    }
}

@media screen and (max-width: 768px) {
    #solution_cont {
        flex-direction: column-reverse;
        padding-left: 5vw;
        padding-right: 5vw;
        height: auto;
    }
    #THREE {
        padding-top: 70px;
    }
    #solution_img {
        background-position: center center;
        background-size: contain;
        height: 400px;
        width: 100%;
        margin-top: 30px;
    }
    #solution_button {
        padding: 20px;
    }
}

@media screen and (max-width: 920px) {
    #solution_cont {
        padding-left: 0vw;
        padding-right: 0vw;
    }
}

@media screen and (max-width: 1110px) {
    #THREE {
        background-color: #314d96;

    }
}

/* SOLUTION --- END */

/* PACK --- START */

#pack_title {
    font-family: ProximaNova-Regular;
    color: #333333;
    font-size: 40px;
    text-align: center;
}

#pack_cont {
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
}

#pack_text_01 {
    font-family: ProximaNova-Regular;
    margin: 20px;
}

#pack_text_02 {
    font-family: ProximaNova-Regular;
    margin: 20px;
}

.pack_text_title {
    color: #333333;
    font-size: 24px;
    text-align: center;
    margin-bottom: 10px;
}

.pack_text_price {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #314d96;
    font-size: 50px;
    font-weight: bolder;
}

.P01 {
    background-color: transparent;
}

.P02 {
    background-color: transparent;
}

.pack_text_price p {
    margin: 10px 0px 0px 0px;
    font-size: 12px;
}

.pack_text_list {
    color: #333333;
    font-size: 16px;
    text-align: left;
}

.pack_text_list ul {
    line-height: 28px;
}

.pack_button {
    background-color: #314e96;
    border-style: none;
    font-family: ProximaNova-bold;
    color: white;
    font-size: 14px;
    letter-spacing: .5px;
    padding: 20px 50px 20px 50px;
    border-radius: 30px;
    cursor: pointer;
    outline: none;
    text-decoration: none;
}

#pack_va_cont {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 50px;
    align-items: flex-end;
}

#pack_va_01 {
    text-align: center;
    margin-right: 30px;
    width: 180px;
}

#pack_va_02 {
    text-align: center;
    margin-right: 30px;
    margin-left: 30px;
    width: 180px;
}

#pack_va_03 {
    text-align: center;
    margin-left: 30px;
    width: 180px;
}

.va_title {
    font-family: ProximaNova-Regular;
    font-size: 14px;
    color: #333333;
}

.va_text {
    font-family: ProximaNova-Bold;
    color: #333333;
    font-size: 16px;
}

.va_price {
    font-family: ProximaNova-Bold;
    font-size: 28px;
    color: #314e96;
    margin-bottom: 0px;
}

.va_month {
    font-family: ProximaNova-Bold;
    font-size: 12px;
    color: #314e96;
    margin-top: 0px;
}

.va_button {
    background-color: #314e96;
    border-style: none;
    font-family: ProximaNova-Regular;
    color: white;
    font-size: 12px;
    letter-spacing: .5px;
    padding: 10px 50px 10px 50px;
    border-radius: 30px;
    cursor: pointer;
    outline: none;
    text-decoration: none;
}

/* MEDIA QUERIES */

@media screen and (max-width: 480px) {
    #pack_cont {
        flex-direction: column;
        justify-content: center;
    }
    #pack_va_cont {
        flex-direction: column;
        align-items: center;
    }
    #pack_va_01 {
        margin-right: 20px;
        margin-left: 20px;
        width: auto;
        margin-bottom: 10px;
    }
    #pack_va_02 {
        margin-right: 20px;
        margin-left: 20px;
        width: auto;
        margin-bottom: 10px;
    }
    #pack_va_03 {
        margin-right: 20px;
        margin-left: 20px;
        width: auto;
        margin-bottom: 10px;
    }
}

/* PACK --- END */

/* CONTACT --- START */

#contact_cont {
    background-repeat: no-repeat;
    background-image: url(../img/contact_bg.svg);
    background-size: cover;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#contact_title {
    font-family: ProximaNova-Regular;
    color: white;
    text-align: center;
    font-size: 40px;
}

form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 15vw;
    padding-right: 15vw;
    margin-top: 30px;
}

input {
    background-color: rgba(255, 255, 255, .25);
    border-style: none;
    height: 50px;
    width: 300px;
    max-width: 300px;
    margin: 10px;
    text-indent: 15px;
    font-family: ProximaNova-Regular;
    font-style: italic;
    font-size: 16px;
    color: #333333;
}

::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: white;
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: white;
}

:-ms-input-placeholder {
    /* IE 10+ */
    color: white;
}

:-moz-placeholder {
    /* Firefox 18- */
    color: white;
}

#contact_button_cont {
    text-align: center;
    margin-top: 30px;
}

.contact_button {
    background-color: #314e96;
    border-style: none;
    font-family: ProximaNova-bold;
    color: white;
    font-size: 14px;
    letter-spacing: .5px;
    padding: 20px 80px 20px 80px;
    border-radius: 30px;
    cursor: pointer;
    outline: none;
    text-decoration: none;
}

/* MEDIA QUERIES */

@media screen and (max-width: 960px) {
    form {
        padding-left: 0vw;
        padding-right: 0vw;
    }
}

@media screen and (max-width: 640px) {
    #contact_title {
        color: #333333;
    }
}

/* CONTACT --- END */

/* FOOTER --- START */

footer {
    background-color: white;
    height: 100%;
    width: 100%;
    text-align: center;
    padding-top: 70px;
    padding-bottom: 70px;
}

#exa {
    font-family: ProximaNova-Regular;
    font-size: 14px;
    color: #b3b3b3;
    text-decoration: none;
    background-image: url(../img/exa_icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right center;
    padding: 5px 40px 5px 0px;
}

#footer_cont {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    margin-left: 50px;
    margin-right: 50px;
    margin-top: 0px;
    margin-bottom: 45px;
}

#footer_logo {
    background-image: url(../img/logo_menu.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 75%;
    width: 24%;
    height: auto;
}

#footer_links {
    border-left-style: solid;
    border-left-width: 2px;
    border-left-color: #efd312;
    width: 25%;
    height: auto;
    text-align: left;
    color: #333333;
    font-size: 14px;
    line-height: 20px;
}

#footer_links ul {
    list-style-type: none;
    padding-left: 20px;
}

#footer_links a {
    text-decoration: none;
    color: inherit;
}

.links01 {
    font-family: ProximaNova-Regular;
}

.links02 {
    font-family: ProximaNova-Bold;
}

#footer_contact {
    font-family: ProximaNova-Regular;
    border-left-style: solid;
    border-left-width: 2px;
    border-left-color: #efd312;
    width: 25%;
    height: auto;
    text-align: left;
    color: #333333;
    font-size: 14px;
    line-height: 16px;
}

#footer_contact ul {
    list-style-type: none;
    padding-left: 20px
}

#footer_text {
    font-family: ProximaNova-Regular;
    border-left-style: solid;
    border-left-width: 2px;
    border-left-color: #efd312;
    width: 25%;
    height: auto;
    text-align: left;
    color: #333333;
    font-size: 14px;
    line-height: 16px;

}

#footer_text ul {
    list-style-type: none;
    padding-left: 20px
}

/* MEDIA QUERIES */

@media screen and (max-width: 768px) {
    #footer_cont {
        flex-direction: column;
        align-items: center;
    }
    #footer_logo {
        width: 300px;
        height: 100px;
        border-bottom-style: solid;
        border-bottom-color: #efd312;
        border-bottom-width: 2px;
    }
    #footer_links {
        border-left-style: none;
        border-bottom-style: solid;
        border-bottom-color: #efd312;
        border-bottom-width: 2px;
        width: 300px;
        text-align: center;
    }
    #footer_links ul {
        padding-left: 0px;
        margin: 5px;
    }
    #footer_contact {
        border-left-style: none;
        border-bottom-style: solid;
        border-bottom-width: 2px;
        border-bottom-color: #efd312;
        width: 300px;
        text-align: center;
    }
    #footer_contact ul {
        padding-left: 0;
        margin: 5px;
    }
    #footer_text {
        border-left-style: none;
        width: 300px;
        text-align: center;
    }
    #footer_text ul {
        padding-left: 0;
        margin: 5px;
    }
}

/* FOOTER --- END */
