/* FONTS */
@font-face {
    font-family: 'Argentum Sans Black';
    src: url(../../vendor/fonts/argentumsans-black.woff);
}
@font-face {
    font-family: 'Argentum Sans Bold';
    src: url(../../vendor/fonts/argentumsans-bold.woff);
}
@font-face {
    font-family: 'Argentum Sans Medium';
    src: url(../../vendor/fonts/argentumsans-medium.woff);
}
@font-face {
    font-family: 'Argentum Sans Regular';
    src: url(../../vendor/fonts/argentumsans-regular.woff);
}
@font-face {
    font-family: 'Argentum Sans Light';
    src: url(../../vendor/fonts/argentumsans-light.woff);
}

/* GENERAL */
body {
    font-family: 'Argentum Sans Regular', sans-serif;
}
h1, h2, h3, p, a {
    margin: 0;
    padding: 0;
}
h1, h2, h3 {
    font-family: 'Argentum Sans Black', sans-serif;
}
h1 {
    font-size: 28px;
}
h2 {
    font-size: 24px;
}
h3 {
    font-size: 20px;
}
p, a, li {
    font-size: 14px;
}
a,
button,
input,
select,
textarea {
    text-decoration: none!important;
    outline: none!important;
}
.black {
    font-family: 'Argentum Sans Black', sans-serif;
}
.bold {
    font-family: 'Argentum Sans Bold', sans-serif;
}
.medium {
    font-family: 'Argentum Sans Medium', sans-serif;
}
.regular {
    font-family: 'Argentum Sans Regular', sans-serif;
}
.light {
    font-family: 'Argentum Sans Light', sans-serif;
}
.white {
    color: #FFFFFF;
}
.blue {
    color: #062BE9;
}
.black {
    color: #000000;
}
.gray {
    color: #504C4C;
}
.spacing {
    padding: 100px 10px;
}
.regular-spacing {
    padding: 75px 10px;
}
.light-spacing {
    padding: 50px 10px;
}
.thin-spacing {
    padding: 25px 10px;
}
.clearfix {
    display: inline-block;
    width: 100%;
    margin: 0;
}
.clearfix.spacing-lg {
    margin: 25px 0px;
}
.clearfix.spacing-md {
    margin: 15px 0px;
}
.clearfix.spacing-sm {
    margin: 5px 0px;
}
.transition {
    transition: all 200ms ease-out;
}
.wrapper {
    max-width: 100vw;
    overflow: hidden;
}
.content {
    position: relative;
    overflow: hidden;
}
.no-margin {
    margin: 0;
}
.no-padding {
    padding: 0;
}
.abs-pos {
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}
.bg-cover {
    background-size: cover!important;
}
.bg-contain {
    background-size: contain!important;
}

/* MENU ICON RESPONSIVE */
#nav-icon {
    height: 15px;
    width: 25px;
    position: relative;
    margin: 8px auto;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transition: .5s ease-in-out;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    cursor: pointer;
}

#nav-icon span {
    position: absolute;
    display: block;
    height: 3px;
    width: 100%;
    left: 0;
    border-radius: 3px;
    background: #4D4C50;
    opacity: 1;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
}

#nav-icon span:nth-child(1) {
    top: 0px;
}

#nav-icon span:nth-child(2),
#nav-icon span:nth-child(3) {
    top: 6px;
}

#nav-icon span:nth-child(4) {
    top: 12px;
}

#nav-icon.open span:nth-child(1) {
    top: 6px;
    width: 0%;
    left: 50%;
}

#nav-icon.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#nav-icon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#nav-icon.open span:nth-child(4) {
    top: 6px;
    width: 0%;
    left: 50%;
}




/* NAVBAR */

.navbar {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    padding: 0 15px;
    background: #FFFFFF!important;
    z-index: 999;
    transition: background 500ms ease-in-out, height 500ms ease-in-out, box-shadow 500ms ease-in-out;
    -webkit-transition: background 500ms ease-in-out, height 500ms ease-in-out, box-shadow 500ms ease-in-out;
    -moz-transition: background 500ms ease-in-out, height 500ms ease-in-out, box-shadow 500ms ease-in-out;
    -ms-transition: background 500ms ease-in-out, height 500ms ease-in-out, box-shadow 500ms ease-in-out;
    -o-transition: background 500ms ease-in-out, height 500ms ease-in-out, box-shadow 500ms ease-in-out;
}

.navbar.fixed-top {
    position: fixed!important;
    top: 0;
    background: #FFFFFF!important;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, .3);
    transition: background 500ms ease-in-out, height 500ms ease-in-out, box-shadow 500ms ease-in-out;
    -webkit-transition: background 500ms ease-in-out, height 500ms ease-in-out, box-shadow 500ms ease-in-out;
    -moz-transition: background 500ms ease-in-out, height 500ms ease-in-out, box-shadow 500ms ease-in-out;
    -ms-transition: background 500ms ease-in-out, height 500ms ease-in-out, box-shadow 500ms ease-in-out;
    -o-transition: background 500ms ease-in-out, height 500ms ease-in-out, box-shadow 500ms ease-in-out;
}

.navbar .container {
    position: relative;
    height: 100%;
}

.navbar .navbar-brand {
    padding: 20px 0px;
}

.navbar.fixed-top .navbar-brand {
    padding: 15px 0px;
}

.navbar .navbar-brand img {
    max-height: 55px;
}

.navbar.fixed-top .navbar-brand img {
    max-height: 45px;
}

.navbar .navbar-nav {
    width: 100%;
}

.navbar .navbar-nav li {
    position: relative;
    height: 60px;
    padding: 0 10px;
}

.navbar .navbar-nav .nav-link {
    position: relative;
    font-size: 14px;
    color: #4D4C50;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.navbar .navbar-nav .nav-link.blue {
    color: #062BE9;
}

.navbar .navbar-nav > li.active .nav-link,
.navbar .navbar-nav > li.show .nav-link,
.navbar .navbar-nav > li:hover .nav-link,
.navbar .navbar-nav > li:focus .nav-link,
.navbar .navbar-nav > li .nav-link:hover,
.navbar .navbar-nav > li .nav-link:focus {
    color: #062BE9;
}

.navbar .navbar-nav > li.social {
    display: flex;
    align-items: center;
    margin-left: 35px;
}

.navbar .navbar-nav > li.social a {
    font-size: 22px;
    color: #8D8D8D;
}

.navbar .navbar-nav > li.social a:not(:last-of-type) {
    margin-right: 15px;
}

.navbar .navbar-nav > li.social a:hover {
    color: #062BE9;
}


/****** HOME ******/

/* HEADER */

#home header {
    height: calc(100vh - 95px);
    margin-top: 95px;
}

#home header .container,
#home header .container .row {
    height: 100%;
}

#home header .container .row.section-content .hero-content h1 {
    font-size: 36px;
    white-space: pre-line;
    line-height: 1;
}

#home header .container .row.section-content .hero-content h2 {
    font-size: 16px;
}

#home header .container .row.section-content .img-container {
    text-align: right;
}

#home header .container .row.section-content .img-container img {
    height: 320px;
}

#home header .container .call-to-action {
    position: absolute;
    width: 100%;
    bottom: 75px;
    padding-left: 50px;
}

#home header .container .call-to-action a {
    display: inline-flex;
    align-items: center;
}

#home header .container .call-to-action a button.play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    width: 100px;
    margin-right: 40px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: #0D00BE;
    cursor: pointer;
}

#home header .container .call-to-action a p {
    border-bottom: 2px solid rgba(255,255,255,0.2);
}

#home header .container .call-to-action a:hover button.play-btn {
    box-shadow: 10px 10px 28px -8px rgba(0,0,0,0.75);
}

#home header .container .call-to-action a button.play-btn i {
    font-size: 25px;
    color: #FFFFFF;
}

/* INDUSTRIAS */

#home #industrias .boxes {
    display: flex;
    justify-content: space-between;
}

#home #industrias .boxes .box {
    display: flex;
    justify-content: space-between;
    flex-flow: column;
    height: 300px;
    width: calc(20% - 15px);
    padding: 65px 25px;
    background-color: #F2F2F2;
    transition: 300ms ease-in-out all;
}

#home #industrias .boxes .box:hover {
    transform: translateY(-25px);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, .3);
}

#home #industrias .boxes .box .img-container img {
    position: absolute;
    width: 70px;
    opacity: 1;
    transition: 300ms ease-in-out all;
}

#home #industrias .boxes .box .img-container img.active {
    opacity: 0;
}

#home #industrias .boxes .box:hover .img-container img {
    opacity: 0;
}

#home #industrias .boxes .box:hover .img-container img.active {
    opacity: 1;
}

/***** NOSOTROS *****/
/* HEADER */
#nosotros {
    background: url("../../public/img/background.jpg") repeat center center;
}

#nosotros header {
    margin-top: 95px;
}

#nosotros header .section-title h1 {
    padding-left: 20px;
}

#nosotros header .section-content .img-bg {
    z-index: 0;
}

#nosotros header .section-content .text-container p {
    white-space: pre-line;
    font-size: 16px;
    line-height: 1.6;
}

#nosotros header .section-content .text-container p::after {
    position: absolute;
    display: block;
    content: '';
    height: 2px;
    width: 90%;
    bottom: -20px;
    right: 0;
    background-color: rgba(255,255,255,0.8);
}

/* ABOUT */
#nosotros #about p:not(:last-of-type) {
margin-bottom: 1rem;
}

/* MISION */
#nosotros #mision .boxes .box {
    background-color: #062BE9;
    padding: 20px;
    min-height: 225px;
}

#nosotros #mision .boxes .box h2 {
    font-size: 26px;

}

/* VALORES */
#nosotros #valores .container {
    padding-bottom: 165px;
}

#nosotros #valores .section-content ul {
    display: flex;
    justify-content: space-around;
    margin: 0;
    padding: 0;
    list-style: none;
}

#nosotros #valores .section-content ul li {
    display: flex;
    align-items: center;
    flex-flow: column;
    text-align: center;
}

#nosotros #valores .section-content ul li .img-container {
    position: relative;
    display: flex;
    justify-content: center;
    height: 85px;
    width: 85px;
    margin-bottom: 5px;
}

#nosotros #valores .section-content ul li .img-container img {
    position: absolute;
    height: 100%;
    opacity: 1;
    transition: 300ms ease-in-out all;
}

#nosotros #valores .section-content ul li .img-container img.active {
    opacity: 0;
}

#nosotros #valores .section-content ul li:hover .img-container img {
    opacity: 0;
}

#nosotros #valores .section-content ul li:hover .img-container img.active {
    opacity: 1;
}

#nosotros #valores .section-content ul li span {
    color: #504C4C;
    transition: 300ms ease-in-out all;
}

#nosotros #valores .section-content ul li:hover span {
    color: #000000;
}

.tooltip-inner {
    background-color: #FFFFFF;
    color: #000;
}

.bs-tooltip-auto[x-placement^=bottom] .arrow::before,
.bs-tooltip-bottom .arrow::before {
    border-bottom-color: #FFFFFF;
}

/***** CONTACTO *****/
/* MAIN */
#contacto #main {
    margin-top: 95px;
    background-color: rgba(181,181,181,0.22);
}

#contacto #main .img-bg {
    width: 70%;
    right: 0;
    left: auto;
    opacity: .44;
}

#contacto #main .form-container .form-col {
    margin-bottom: 35px;
}

#contacto #main .form-container input,
#contacto #main .form-container textarea {
    font-family: 'Argentum Sans Light', sans-serif;
    font-size: 14px;
    width: 100%;
    color: #000;
    border: none;
    border-bottom: 2px solid #698BFC;
    background-color: transparent;
    padding-left: 5px;
}

#contacto #main .form-container textarea {
    font-family: 'Argentum Sans Light', sans-serif;
    font-size: 14px;
    width: 100%;
    color: #000;
    border-bottom: 2px solid #698BFC;
    background-color: transparent;
    padding-left: 5px;
}

#contacto #main .form-container input[type="submit"] {
    padding: 10px 25px;
    font-size: 12px;
    color: #4D4C50;
    border: 2px solid #698BFC;
    transition: 300ms ease-in-out all;
    width: auto;
}

#contacto #main .form-container input[type="submit"]:hover {
    background-color: #698BFC;
    color: #FFFFFF;
}

#contacto #main .form-container ::-webkit-input-placeholder {
    color: #4D4C50;
    font-size: 14px;
    font-family: 'Argentum Sans Light', sans-serif;
}

#contacto #main .form-container ::-moz-placeholder {
    color: #4D4C50;
    font-size: 14px;
    font-family: 'Argentum Sans Light', sans-serif;
}

#contacto #main .form-container :-moz-placeholder {
    color: #4D4C50;
    font-size: 14px;
    font-family: 'Argentum Sans Light', sans-serif;
}

#contacto #main .form-container :-ms-input-placeholder {
    color: #4D4C50;
    font-size: 14px;
    font-family: 'Argentum Sans Light', sans-serif;
}

/* MAP */
#contacto #map .section-title {
    padding: 50px 6%;
}

#contacto #map .map-container {
    position: relative;
    height: 450px;
}

#contacto #map .map-container iframe {
    height: 100%;
    width: 100%;
}

#contacto #map .map-container a.map-btn {
    cursor: pointer;
}

#contacto #map .map-container .overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(6,43,233,0.80);
    opacity: 1;
    transition: 300ms ease-in-out all;
}

#contacto #map .map-container .overlay.op-0 {
    opacity: 0;
    visibility: hidden;
}

#contacto #map .map-container .overlay i {
    font-size: 152px;
    color: white;
}

/***** TEMPLATE *****/
/* FULL PAGE */
#template #full-page {
    margin-top: 95px;
    min-height: calc(100vh - 250px);
}

#template #full-page .main-nav ul {
    display: flex;
    justify-content: space-evenly;
    padding: 0;
    margin: 0;
    list-style: none;
}

#template #full-page .main-nav ul li a {
    font-size: 22px;
    color: #062BE9;
    padding: 5px 25px;
    border-radius: 18px;
    background-color: #FFFFFF;
}

#template #full-page .main-nav ul li a.active,
#template #full-page .main-nav ul li:hover a {
    background-color: #062BE9;
    color: #FFFFFF;
}

#template #full-page .sub-nav {
    position: absolute;
    display: flex;
    justify-content: right;
    align-items: center;
    height: 100%;
    right: 35px;
    top: 0;
}

#template #full-page .sub-nav::after {
    position: absolute;
    display: block;
    content: '';
    height: 100%;
    width: 2px;
    top: 0;
    right: 0;
    background-color: #FFFFFF;
}

button.menu-collapse {
    display: none;
}

#template #full-page .sub-nav ul {
    text-align: right;
    padding: 5px 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-flow: column;
    border: none;
}

#template #full-page .sub-nav ul li {
    position: relative;
    padding-right: 50px;
}

#template #full-page .sub-nav ul li::after {
    position: absolute;
    display: block;
    content: '';
    height: 10px;
    width: 10px;
    top: 50%;
    transform: translateY(-50%);
    right: -4px;
    background-color: #FFFFFF;
    border-radius: 50%;
    z-index: 1;
}

#template #full-page .sub-nav ul li:not(:last-of-type) {
    margin-bottom: 10px;
}

#template #full-page .sub-nav ul li a {
    font-size: 12px;
    color: #062BE9;
    padding: 5px 25px;
    border-radius: 18px;
    background-color: #ffffff;
    font-weight: 700;
}

#template #full-page .sub-nav ul li a[aria-expanded="true"],
#template #full-page .sub-nav ul li a.active,
#template #full-page .sub-nav ul li a:hover {
    color: #ffffff;
    background-color: #062BE9;
}

#template #full-page .sub-nav ul ul.sub-menu li {
    padding-right: 25px;
    margin-bottom: 10px;
}

#template #full-page .sub-nav ul ul.sub-menu li::after {
    position: absolute;
    display: block;
    content: '';
    height: 2px;
    width: 10px;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    background-color: #FFFFFF;
    z-index: 1;
}

#template #full-page .sub-nav ul ul.sub-menu li a {
    font-size: 12px;
    padding: 5px 12px;
}

#template #full-page .section-content h1 {
    font-size: 24px;
}

#template #full-page .section-content h2 {
    font-size: 22px;
}


#template #full-page .section-content p {
    white-space: pre-line;
}

#template #full-page .the_content .boxes {
    display: flex;
    justify-content: space-around;
}

#template #full-page .the_content .boxes .box {
    width: calc(25% - 10px);
}

#template #full-page .the_content .boxes .box .img-container {
    position: relative;
    height: 300px;
}

#template #full-page .the_content .boxes .box .img-container p {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px 6px;
    background-color: #062BE9;
    color: white;
    text-transform: uppercase;
    line-height: 1;
}

#template #full-page .the_content .boxes .box p.desc {
    font-size: 12px;
    line-height: 1.2;
    margin-top: 10px;
}

/***** GALLERY PAGE *****/
/* GALERIA */

#gallery-page {
    background: url("../../public/img/background.jpg") repeat center center;
}

#gallery-page #gallery {
    margin-top: 95px;
}

#gallery-page #gallery ul {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#gallery-page #gallery ul.lightSlider {
    height: 500px;
}

#gallery-page #gallery ul.lSGallery {
    height: 100px;
}

#gallery-page #gallery ul li {
    position: relative;
    width: 100%;
    height: 100%;
}

#gallery-page #gallery ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#gallery-page #gallery .lSPager img {
    -webkit-filter: sepia(100%);
    filter: sepia(100%);
    transition: 300ms ease all;
}

#gallery-page #gallery .lSPager li.active img,
#gallery-page #gallery .lSPager li:hover img {
    -webkit-filter: none;
    filter: none;
    transition: 300ms ease all;
}

#gallery-page #gallery a.lSPrev {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    background-color: #062BE9;
    background-image: none;
    border-radius: 50%;
    height: 50px;
    width: 50px;
}

#gallery-page #gallery a.lSPrev i {
    font-size: 20px;
}

#gallery-page #gallery a.lSNext {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    right: 12px;
    opacity: 1;
    background-color: #062BE9;
    background-image: none;
    border-radius: 50%;
    height: 50px;
    width: 50px;
}

#gallery-page #gallery a.lSNext i {
    font-size: 20px;
}

/***** FOOTER *****/
footer {
    background-color: #262626;
}

footer .container {
    padding: 25px 10px;
}

footer .container .section-title h1 {
    font-size: 20px;
}

footer .container .contact-info .block {
    display: flex;
    align-items: center;
}

footer .container .contact-info .block:not(:last-of-type) {
    margin-bottom: 8px;
}

footer .container .contact-info .block i {
    font-size: 18px;
    width: 25px;
}

footer .container .contact-info .block a {
    font-size: 12px;
    color: #FFFFFF;
}

footer .container .contact-info .block a:hover {
    color: #00B4D8;
}

footer .container .location-info {
    display: flex;
}

footer .container .location-info i {
    color: #FFFFFF;
    font-size: 18px;
    margin-right: 8px;
}

footer .container .location-info p {
    line-height: 1.2;
    white-space: pre-line;
    font-size: 12px;
}

footer .container .cta {
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .container .cta a.custom-btn {
    font-size: 12px;
    color: white;
    padding: 5px 25px;
    border-radius: 18px;
    background-color: #00B4D8;
}

footer .container .cta a.custom-btn:hover {
    background-color: white;
    color: #00B4D8;
}

footer .container .cert {
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .container .cert img {
    width: 70px;
}

footer .rights p,
footer .rights a {
    color: #FFFFFF;
    text-align: center;
    font-size: 12px;
    padding: 0 20px 12px;
}


/***** RESPONSIVE *****/
@media(max-width: 1199px) {
    /***** GENERAL STYLES *****/

}

@media(max-width: 991px) {
    /***** GENERAL STYLES *****/
    h1 {
        font-size: 26px;
    }
    h2 {
        font-size: 22px;
    }
    h3 {
        font-size: 18px;
    }
    .navbar-light .navbar-toggler {
        border: 2px solid #4D4C50;
    }
    .navbar {
        position: fixed !important;
        top: 0;
        padding-bottom: 0;
    }
    .navbar .navbar-brand {
        padding: 15px 0px;
    }
    .navbar .navbar-brand img {
        max-height: 38px;
    }
    .navbar.fixed-top .navbar-brand img {
        max-height: 38px;
    }
    .navbar .navbar-nav li {
        height: 50px;
    }
    .navbar .navbar-nav,
    .navbar .dropdown-menu {
        text-align: center;
    }
    .navbar .dropdown-menu .dropdown-divider {
        border-top: 1px solid transparent;
    }
    .navbar .navbar-nav .nav-link span,
    .navbar .navbar-nav .dropdown-item span {
        display: none;
    }
    .navbar .container:before {
        display: none;
    }
    .navbar #navbarSupportedContent {
        margin-top: 10px;
    }
    .navbar .navbar-nav > li.social {
        display: flex;
        align-items: center;
        margin: 0;
        justify-content: center;
    }
    /***** HOME *****/
    /* HEADER */
    #home header {
        height: calc(100vh - 68px);
        margin-top: 68px;
    }
    #home header .container {
        height: 100%;
        display: flex;
        align-items: center;
        flex-flow: column;
        justify-content: center;
    }
    #home header .container .row {
        height: auto;
    }
    #home header .container .row.section-content .hero-content {
        text-align: center;
    }
    #home header .container .row.section-content .hero-content h1 {
        font-size: 32px;
        white-space: normal;
    }
    #home header .container .row.section-content .img-container {
        display: none;
    }
    #home header .container .call-to-action {
        position: relative;
        width: 100%;
        bottom: auto;
        padding-left: 0;
        text-align: center;
        margin-top: 25px;
    }
    #home header .container .call-to-action a button.play-btn {
        height: 75px;
        width: 75px;
        margin-right: 10px;
    }
    #home #industrias .section-title {
        text-align: center;
    }
    #home #industrias .boxes {
        justify-content: space-around;
        flex-flow: wrap;
        margin-top: -15px;
    }
    #home #industrias .boxes .box {
        width: calc(33.333% - 15px);
        height: auto;
        margin-top: 15px;
        justify-content: center;
        text-align: center;
    }
    #home #industrias .boxes .box:hover {
        transform: none;
    }
    #home #industrias .boxes .box .img-container {
        height: 65px;
        margin-bottom: 20px;
    }
    #home #industrias .boxes .box .img-container img {
        position: relative;
        height: 100%;
        width: auto;
        opacity: 1;
    }
    #home #industrias .boxes .box:hover .img-container img {
        opacity: 1;
    }
    #home #industrias .boxes .box .img-container img.active {
        display: none;
    }
    /***** NOSOTROS *****/
    /* HEADER */
    #nosotros header {
        margin-top: 68px;
    }
    #nosotros header .section-title h1 {
        text-align: center;
    }
    #nosotros header .section-content .img-container {
        text-align: center;
    }
    #nosotros header .section-content .text-container {
        text-align: center;
        margin-top: 25px;
    }
    #nosotros header .section-content .text-container p::after {
        width: 100%;
    }
    /* MISION */
    #nosotros #mision .boxes .box {
        min-height: auto;
        text-align: center;
    }
    #nosotros #mision .boxes {
        margin-top: -25px;
    }
    #nosotros #mision .boxes .col-12 {
        margin-top: 25px;
    }
    /* VALORES */
    #nosotros #valores .section-title {
        text-align: center;
    }
    /***** CONTACTO *****/
    /* MAIN */
    #contacto #main .section-title {
        text-align: center;
    }
    #contacto #map .section-title {
        text-align: center;
    }
    /***** TEMPLATE PAGE *****/
    #template #full-page {
        margin-top: 68px;
        min-height: calc(100vh - 70px);
    }
    #template #full-page .main-nav ul li a {
        font-size: 20px;
    }
    #template #full-page .sub-nav {
        justify-content: center;
        width: 300px;
        right: 0;
        margin-right: -300px;
        padding: 20px;
        background-color: #262626;
        z-index: 10;
        transition: 300ms ease-in-out all;
    }
    button.menu-collapse {
        position: absolute;
        left: -35px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 85px;
        width: 35px;
        border: none;
        background-color: #FFFFFF;
        border-top-left-radius: 5px;
        border-bottom-left-radius: 5px;
        opacity: 1;
        transition: 500ms ease-in-out all;
    }
    button.menu-collapse i {
        font-size: 20px;
        color: #262626;
        transition: 300ms ease-in-out all;
    }
    button.menu-collapse.active i {
        transform: rotate(-180deg);
    }
    #template #full-page .main-nav ul {
        flex-flow: wrap;
        margin-top: -25px;
    }
    #template #full-page .main-nav ul li {
        margin-top: 25px;
    }
    #template #full-page .sub-nav.active-nav {
        margin-right: 0px;
    }
    #template #full-page .sub-nav ul {
        text-align: center;
    }
    #template #full-page .sub-nav ul li {
        padding-right: 0;
    }
    #template #full-page .sub-nav ul li::after {
        display: none;
    }
    #template #full-page .sub-nav ul ul.sub-menu li {
        padding-right: 0;
    }
    #template #full-page .sub-nav ul ul.sub-menu li::after {
        display: none;
    }
    #template #full-page .section-content {
        text-align: center;
    }
    #template #full-page .section-content h1 {
        font-size: 20px;
    }
    #template #full-page .section-content h2 {
        font-size: 18px;
    }
    #template #full-page .the_content .boxes {
        flex-flow: wrap;
        margin-top: -25px;
    }
    #template #full-page .the_content .boxes .box {
        width: calc(50% - 10px);
        margin-top: 25px;
    }
    /***** GALLERYY PAGE *****/
    #gallery-page #gallery {
        margin-top: 68px;
    }
    #gallery-page #gallery ul.lightSlider {
        height: 300px;
    }
    /***** FOOTER *****/
    footer {
        overflow: hidden;
    }
    footer .section-title {
        text-align: center;
    }
    footer .container .contact-info .block {
        justify-content: center;
    }
    footer .container .col-12 {
        margin-top: 25px;
    }
    footer .container .location-info {
        justify-content: center;
    }
}

@media(max-width: 767px) {
    /***** GENERAL STYLES *****/
    h1 {
        font-size: 24px;
    }
    h2 {
        font-size: 20px;
    }
    h3 {
        font-size: 16px;
    }
    /***** HOME *****/
    /* HEADER */
    #home header .container .row.section-content .hero-content h1 {
        font-size: 24px;
    }
    #home header .container .call-to-action a {
        flex-flow: column;
    }
    #home header .container .call-to-action a button.play-btn {
        margin-right: 0;
    }
    #home header .container .call-to-action a p {
        margin-top: 10px;
    }
    /* INDUSTRIAS */
    #home #industrias .container {
        padding: 50px 10px;
    }
    #home #industrias .boxes .box {
        width: calc(50% - 15px);
    }
    /***** NOSOTROS *****/
    /* HEADER */
    #nosotros header .section-content .text-container p {
        white-space: normal;
        font-size: 14px;
    }
    /* MISION */
    #nosotros #mision .boxes .box h2 {
        font-size: 20px;
    }
    /* VALORES */
    #nosotros #valores .section-content ul {
        flex-flow: wrap;
        margin-top: -25px;
    }
    #nosotros #valores .section-content ul li {
        width: 33.333%;
        margin-top: 25px;
    }
    /***** CONTACTO *****/
    /* MAIN */
    #contacto #main {
        margin-top: 68px;
    }
    #contacto #main .img-bg {
        display: none;
    }
    #contacto #main .container {
        padding: 75px 10px;
    }
    #contacto #main .form-container a.submit {
        display: block;
        text-align: center;
        width: 100%;
    }
    /* MAP */
    #contacto #map .map-container .overlay i {
        font-size: 90px;
        color: white;
    }
}

@media (max-width: 575px) {

}


