/*=== MEDIA QUERY ===*/
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Crimson+Text:ital,wght@0,400;0,700;1,400;1,700&family=Lato:ital,wght@0,300;0,400;0,900;1,300;1,400;1,900&family=Lumanosimo&display=swap');

body,
p,
a,
span h2,
h3,
h4,
h5,
h6 {
    line-height: 1.4;
    font-family: 'Lato', sans-serif;
    text-align: justify;
    -webkit-font-smoothing: antialiased;
}

h1 {
    font-family: 'Lato', sans-serif;
}

.no-padding {
    padding: 0 !important;
}

.inline-block {
    display: inline-block;
}

ol,
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

figure {
    margin: 0;
}

a {
    transition: all 0.3s ease-in 0s;
}

iframe {
    border: 0;
}

a,
a:focus,
a:hover {
    text-decoration: none;
    outline: 0;
}

a:focus,
a:hover {
    color: #005200;
}

.section {
    padding: 55px 0;
}

/*------------Preloader-------------*/
#preloader {
    background: #fff;
    height: 100%;
    left: 0;
    opacity: 1;
    filter: alpha(opacity=100);
    position: fixed;
    text-align: center;
    top: 0;
    width: 100%;
    z-index: 999999999;
}

.btn.active:focus,
.btn:active:focus,
.btn:focus {
    outline: 0;
}

.preloader {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    position: absolute;
}

.preloader span {
    position: absolute;
    display: block;
    bottom: 0;
    width: 9px;
    height: 5px;
    border-radius: 5px;
    background: #fff;
    -webkit-animation: preloader 2s infinite ease-in-out;
    animation: preloader 2s infinite ease-in-out;
}

.preloader span:nth-child(2) {
    left: 11px;
    -webkit-animation-delay: 200ms;
    animation-delay: 200ms;
}

.preloader span:nth-child(3) {
    left: 22px;
    -webkit-animation-delay: 400ms;
    animation-delay: 400ms;
}

.preloader span:nth-child(4) {
    left: 33px;
    -webkit-animation-delay: 600ms;
    animation-delay: 600ms;
}

.preloader span:nth-child(5) {
    left: 44px;
    -webkit-animation-delay: 800ms;
    animation-delay: 800ms;
}

.preloader span:nth-child(6) {
    left: 55px;
    -webkit-animation-delay: 1000ms;
    animation-delay: 1000ms;
}

@-webkit-keyframes preloader {
    0% {
        height: 5px;
        transform: translateY(0);
        background: rgba(0, 0, 0, 0.1);
    }

    25% {
        height: 30px;
        transform: translateY(15px);
        background: #005200;
    }

    50%,
    100% {
        height: 5px;
        transform: translateY(0);
        background: rgba(0, 0, 0, 0.1);
    }
}

@keyframes preloader {
    0% {
        height: 5px;
        transform: translateY(0);
        background: #fff;
    }

    25% {
        height: 30px;
        transform: translateY(15px);
        background: #005200;
    }

    50%,
    100% {
        height: 5px;
        transform: translateY(0);
        background: #fff;
    }
}


/*-------------------Menu NavBar-------------------*/
.navigation {
    transition: 0.3s all;
    backdrop-filter: invert(5%);
}

.navigation .logo-default {
    display: none;
}

.navigation .dropdown-toggle::before,
.navigation .dropdown-toggle::after {
    display: none;
}

.navigation .dropdown-toggle i {
    font-size: 10px;
    margin-left: 2px;
    vertical-align: 2px;
}

.navigation .navbar-light .navbar-nav .nav-item .nav-link {
    color: #ffffff;
    font-size: 16px;
    line-height: 26px;
    padding: 20px 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.2s ease-in-out 0s;
}

.navigation .navbar-light .navbar-nav .nav-item .nav-link:hover,
.navigation .navbar-light .navbar-nav .nav-item .nav-link:active,
.navigation .navbar-light .navbar-nav .nav-item .nav-link:focus {
    background: none;
    color: #005200;
}

.navigation .navbar-light .navbar-nav .nav-item.active .nav-link {
    color: #008d00;
}

@media (max-width: 991px) {
    .navigation .nav-link {
        padding: 6px !important;
    }

    .navigation .navbar-collapse.show {
        overflow-y: auto;
        max-height: calc(100vh - 55px);
    }
}

.navigation .dropdown-submenu .dropdown-menu {
    margin: 0;
    background-color: #131313;
}

@media (min-width: 992px) {
    .navigation .dropdown-submenu .dropdown-menu {
        left: 100%;
        top: -5px;
    }

    .navigation .dropleft .dropdown-menu {
        left: auto;
        right: 100%;
        margin: 0;
        top: -5px;
    }

    .navigation .dropdown-submenu .dropdown-menu {
        background-color: #000;
    }
}

.navigation .dropdown:hover>.dropdown-menu {
    visibility: visible;
    opacity: 1;
}

.navigation .dropdown-menu {
    border: 0;
    border-radius: 0;
    top: 80%;
    left: 5px;
    display: block;
    visibility: hidden;
    opacity: 0;
    padding: 0;
    background: #000;
    transition: 0.3s ease;
}

.navigation .dropdown-menu li:first-child {
    margin-top: 12px;
}

.navigation .dropdown-menu li:last-child {
    margin-bottom: 12px;
}

@media (max-width: 991px) {
    .navigation .dropdown-menu {
        display: none;
        opacity: 1;
        visibility: visible;
        text-align: center;
        transition: 0s;
    }
}

@media (max-width: 991px) {
    .navigation .dropdown-menu.show {
        display: block;
    }

    .navigation .dropdown-menu {
        float: left;
        width: 100%;
    }
}

.navigation .dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    transition: 0.2s ease;
    padding: 8px 22px;
}

.navigation .dropdown-item:focus,
.navigation .dropdown-item:hover {
    color: #fff;
    background: transparent;
}

@media (max-width: 991px) {
    .navigation {
        box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.06);
        background: #fff;
    }

    .navigation .navbar-light .navbar-nav .nav-item .nav-link {
        color: #000;
    }

    .navigation .logo-white {
        display: none;
    }

    .navigation .logo-default {
        display: block;
    }

    .navigation .navbar-light .navbar-toggler {
        color: rgba(0, 0, 0, 0.5);
        border-color: rgba(0, 0, 0, 0.1);
    }
}

.sticky-header {
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.06);
    background: #fff;
}

.sticky-header .navbar-light .navbar-nav .nav-item .nav-link {
    color: #000;
}

.sticky-header .logo-white {
    display: none;
}

.sticky-header .logo-default {
    display: block;
}

.navbar-brand {
    height: auto;
    padding: 8px 0;
}

.navbar-brand h1 {
    margin: 0;
}

/*-----------------Fin Menu NavBar-----------------*/

/*-------------------Bienvenidos-------------------*/

.hero-area {
    background-image: url("../imagenes/fondo_inicio.jpg");
    background-size: cover;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-item {
    background-size: cover;
    background-position: center left;
    background-repeat: no-repeat;
    position: relative;
}

.slider-item::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
}

.slider-item .container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.slider-item h1 {
    color: #fff;
    font-size: 90px;
    line-height: 90px;
    letter-spacing: 5px;
    font-weight: bold;
    margin-bottom: 40px;
}

.slider-item p {
    font-size: 28px;
    color: #fff;
    letter-spacing: 3px;
    margin-bottom: 40px;
    text-align: center;
}

.btn-main {
    background: #005200;
    border: 1px solid #005200;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 12px 40px;
    text-transform: uppercase;
    border-radius: 40px;
}

.btn-main:hover {
    background: #126512;
    color: #fff;
}

@media (max-width: 1400px) {
    .slider-item h1 {
        font-size: 78px;
        line-height: 80px;
    }
}

@media (max-width: 1200px) {
    .slider-item h1 {
        font-size: 68px;
        line-height: 74px;
    }
}

@media (max-width: 992px) {
    .slider-item h1 {
        font-size: 58px;
        line-height: 58px;
    }

    .slider-item p {
        font-size: 25px;
    }
}

@media (max-width: 768px) {
    .slider-item h1 {
        font-size: 40px;
        line-height: 52px;
    }

    .slider-item p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .slider-item h1 {
        font-size: 35px;
        line-height: 46px;
    }

    .slider-item p {
        font-size: 18px;
    }
}

/*-------------------Fin bienvenidos-------------------*/

/*--------------------Que ofrecemos--------------------*/

.border {
    height: 3px;
    margin: 20px auto;
    position: relative;
    width: 50%;
    background: #005200;
    border-radius: 10px;
    text-align: center;
    margin-top: 25px;
    margin-bottom: 50px;
}

.service-2 .service-item {
    border: 1px solid #eee;
    margin-bottom: 20px;
    padding: 20px 20px;
    transition: all 0.3s ease 0s;
    height: 290px;
}

.service-2 .service-item:hover {
    box-shadow: 0 5px 65px 0 rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0 5px 65px 0 rgba(0, 0, 0, 0.15);
}

.service-2 .service-item:hover i {
    background: #fff;
    color: #3d773d;
}

.service-2 .service-item i {
    font-size: 30px;
    display: inline-block;
    background: #005200 none repeat scroll 0 0;
    border-radius: 30px;
    box-shadow: 0 5px 6px 0 rgba(0, 0, 0, 0.1);
    color: #fff;
    height: 55px;
    line-height: 55px;
    margin-bottom: 20px;
    width: 55px;
    transition: all 0.3s ease 0s;
}

@media (min-width: 1400px) {
    .service-2 .service-item {
        height: 320px;
    }
}

@media (max-width: 1399px) {
    .service-2 .service-item {
        height: 315px;
    }
}

@media (max-width: 1198px) {
    .service-2 .service-item {
        height: 310px;
    }
}

@media (max-width: 991px) {
    .service-2 .service-item {
        height: 280px;
    }
}

/*------------------Fin Que ofrecemos------------------*/

/*-----------------Calidad y servicio-----------------*/
.about-2 {
    background: #f6f6f6;
}

.about-2 img {
    width: 100%;
    height: 600px !important;
}

.margen-Y {
    padding-bottom: 40px;
}

.mt-20 {
    margin: 20px 27%;
}



@media (max-width: 1400px) {
    .about-2 img {
        width: 80%;
        height: 550px !important;
    }
}

@media (max-width: 1200px) {
    .margen-Y {
        padding-bottom: 30px;
    }

    .about-2 img {
        width: 90%;
        height: 550px !important;
    }

    .mt-20 {
        margin: 20px 27%;
    }
}

@media (max-width: 992px) {
    .margen-Y {
        padding-bottom: 10px;
    }

    .mt-20 {
        margin: 20px 20%;
    }

    .about-2 img {
        width: 100%;
        height: 550px !important;
    }
}

@media (max-width: 768px) {
    .margen-Y {
        padding-bottom: 20px;
    }

    .about-2 img {
        width: 100%;
        height: 450px !important;
    }
}

@media (max-width: 480px) {
    .margen-Y {
        padding-bottom: 15px;
    }

    .about-2 img {
        width: 100%;
        height: 350px !important;
    }
}

/*----------------Fin Calidad y servici---------------*/

.call-area {
    background-image: url("/imagenes/yeso1.jpg");
    background-size: cover;
    height: 40vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.call-area:before {
    content: "";
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.call-area {
    color: #fff;
}

.call-area h1 {
    font-size: 20px;
    line-height: 25px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.call-area p {
    font-size: 15px;
    color: #fff;
    width: 100%;
    margin-bottom: 20px;
}

.call-area .btn-main {
    margin-right: 8px;
}

/*=================================================================
Footer section
==================================================================*/
#footer .container {
    padding: 0;
}

#footer .container p,
#footer .container li {
    padding-left: 20%;
}

.top-footer {
    background-color: #222222;
    border-top: 1px solid #404040;
    padding: 2%;
}

.top-footer h3 {
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.top-footer p {
    font-size: 13px;
    line-height: 25px;
    color: #bdbdbd;
    font-weight: 300;
    letter-spacing: 1px;
    padding-right: 20px;
}

.top-footer li a {
    font-size: 13px;
    line-height: 30px;
    color: #bdbdbd;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: capitalize;
    transition: color 0.3s;
    font-family: "Source Sans Pro", sans-serif;
    display: block;
}

.top-footer li a:hover {
    color: #005200;
}

.footer-bottom {
    text-align: center;
    background-color: #1b1b1b;
    border-top: 1px solid #2c2c2c;
    padding: 30px 0;
}

.footer-bottom h5 {
    font-size: 12px;
    line-height: 1;
    color: #888888;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 7px;
    margin-bottom: 3px;
}

.footer-bottom h6 {
    font-size: 11px;
    line-height: 15px;
    color: #888888;
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: 2px;
    margin-bottom: 0;
}

/*-----------ABOUT-----------*/

.about-hero-area {
    background-image: url("../imagenes/about.jpg");
    background-size: cover;
    height: 50vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-hero-area h2 {
    font-size: 35px;
    color: #ffffff;
}

.about-hero-slider .about-hero-area .container {
    position: absolute;
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.about-hero-slider .about-hero-area .container ol li {
    color: #ffffff;
}

.slider-item {
    background-size: cover;
    background-position: center left;
    background-repeat: no-repeat;
    position: relative;
}

.about-hero-slider .slider-item::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    left: 0;
    top: 0;
}

/*=================================================================
  Contact
  ==================================================================*/
.contact-us {
    padding: 100px 0 50px 0;
}

.contact-form {
    margin-bottom: 40px;
}

.contact-form .form-control {
    background-color: transparent;
    border: 1px solid #dedede;
    box-shadow: none;
    height: 45px !important;
    color: #0c0c0c;
    height: 38px;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    border-radius: 0;
}

.contact-form input:hover,
.contact-form textarea:hover,
.contact-form #contact-submit:hover {
    border-color: #005200;
    box-shadow: 1px 1px 9px 3px rgba(0, 82, 0, 0.32);
}

.contact-form #contact-submit {
    border: none;
    padding: 15px 0;
    width: 50%;
    margin: 0 25%;
    background: #005200;
    color: #fff;
    border-radius: 10px;
}

.contact-form #contact-submit:hover {
    background: #024802;
}

.contact-form textarea.form-control {
    padding: 10px;
    height: 120px !important;
    outline: none;
}

.contact-details .contact-short-info {
    margin-top: 15px;
}

.contact-details .contact-short-info li {
    margin-bottom: 6px;
}

.social-icon {
    margin-top: 50px;
    margin-bottom: 50px;
}

.social-icon ul li {
    display: inline-block;
    margin-right: 10px;
}

.social-icon ul li a {
    display: block;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    border: 1px solid #dedede;
    text-align: center;
}

.social-icon ul li a:hover {
    background: #005200;
    color: #fff;
    border: 1px solid #005200;
}

.social-icon ul li a:hover i {
    color: #fff;
}

.social-icon ul li a i {
    color: #55606a;
    display: inline-block;
    font-size: 20px;
    line-height: 50px;
    margin: 0;
}

.google-map {
    position: relative;
}

.google-map .map_canvas {
    height: 400px;
    color: white;
}

/*---------------------------------------------------------------*/

.ajuste {
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.centered-element {
    margin: 20% 0;
}



@media (max-width: 991px) {
    .centered-element {
        margin: 0;
    }
}

.whatsapp {
    position:fixed;
    width:60px;
    height:60px;
    bottom:40px;
    right:40px;
    background-color:#25d366;
    color:#FFF;
    border-radius:50px;
    text-align:center;
    align-items: center;
    font-size:40px;
    z-index:100;
}