:root{
    --orange-color: #ED7F00;
    --orange-m-color: #E38721;
    --orange-l-color: #FC9D2F;
    --brown-color: #392E19;
    --blue-color: #27343D;

    --dark-black-color: #121212;
    --dark-black-m-color: #3D3D3F;
    --dark-black-l-color: #555555;
    --dark-grey-color: #676767;
    --dark-grey-l-color: #858484;
}


body{
    font-family: "Nunito", sans-serif;
}


#topbar{
    background-color: var(--blue-color);
    background: linear-gradient(0deg, var(--blue-color) 0%, #212b32 100%);
    color: white;
    padding: 5px 0;
    text-align: center;
    height: 40px;
    display: flex;
    align-items: center;
}
#topbar p, #topbar p a{
    margin: 0;
    padding: 0;
    font-size: 12px;
    color: #c9c9c9;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
#topbar .topbar-icon{
    background: #51606c;
    height: 20px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 11px;
    transition: all 0.3s ease-in-out;
}
#topbar p a:hover{
    color: #fff;
}
#topbar p a:hover .topbar-icon{
    background: var(--orange-l-color);
    color: #fff;
}


.siteLogo{}
.siteLogo img{
    height: 70px;
    transition: all 0.3s ease-in-out;
}
.siteLogo h1{
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 28px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}
.siteLogo h2{
    font-size: 22px;
    margin: 0;
    padding: 0;
    line-height: 18px;
    font-weight: 300;
    transition: all 0.3s ease-in-out;
}


header{
    padding: 10px 0;
    text-align: center;
    height: 100px;
    box-shadow: 0 0 20px -5px rgb(0 0 0 / 30%);
    background: linear-gradient(0deg, rgb(220 220 220) 0%, rgb(255 255 255) 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}
header nav{
    height: 100%;
}
header nav ul{
    height: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
header nav ul.responsive-nav{
    justify-content: space-evenly;
    flex-direction: column;
    max-height: 400px;
}
header nav ul li{}
header nav ul li a{
    text-decoration: none;
    color: var(--dark-black-color);
    padding: 10px 20px;
    display: block;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 2px solid var(--orange-color);
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}
header nav ul li a:hover{
    /* background-color: var(--orange-m-color); */
    color: white;
    border-bottom: 2px solid var(--dark-black-color);
}
header nav ul li a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scaleY(0);
    transform-origin: bottom center;
    background-color: var(--orange-m-color);
    z-index: -1;
    transition: transform 0.3s ease-in-out;
}
header nav ul li a:hover::after {
    transform: scaleY(1);
}
header nav ul li a.nav-active{
    color: white;
    border-bottom: 2px solid var(--dark-black-color);
}
header nav ul li a.nav-active::after{
    transform: scaleY(1);
}
header .ham-menu{
    font-size: 26px;
    background: var(--orange-l-color);
    color: #fff;
    height: 45px;
    width: 45px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
header .ham-menu:hover{
    background: var(--orange-color);
}
header.header-scroll{
    height: 60px;
}
header.header-scroll .siteLogo img{
    height: 40px;
}
header.header-scroll .siteLogo h1{
    font-size: 22px;
    line-height: 19px;
}
header.header-scroll .siteLogo h2{
    font-size: 16px;
    line-height: 18px;
}
header.header-scroll nav ul li a{
    padding: 5px 20px;
    font-size: 12px;
}
header.header-scroll .ham-menu{
    height: 35px;
    width: 35px;
    font-size: 22px;
}


.main-section{
    min-height: calc(100vh - 60px);
    padding: 60px 0;
    position: relative;

    transition: all 0.3s ease-in-out;
}


#mainSlider{
    height: 65vh;
    min-height: 300px;
    position: relative;
}
#mainSlider video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}
#mainSlider img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}
#mainSlider::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 0;
}
#mainSlider .main-slider-caption{
    position: absolute;
    top: 0px;
    left: 0;
    z-index: 1;
    color: white;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}
#mainSlider .main-slider-caption h2{
    font-size: 44px;
    margin: 0;
    padding: 0;
    font-weight: 400;
    text-transform: uppercase;
}
#mainSlider .main-slider-caption h3{
    font-size: 32px;
    margin: 0;
    padding: 0;
    font-weight: 400;
    text-transform: uppercase;
}
#mainSlider .main-slider-caption p{
    font-size: 18px;
    margin: 0;
    padding: 0;
}


#mainSlider #mainSliderCarousel{
    position: absolute;
    top: 0px;
    left: 0;
    z-index: -1;
    color: white;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

#mainDestacados{}
#mainDestacados .main-product-container{}
#mainDestacados .main-product-container .main-product-content{
    overflow: hidden;
    border-radius: 20px 35px 20px 35px;
    transition: all 0.3s ease-in-out;
    height: 250px;
    width: 100%;
    position: relative;
    box-shadow: 0 0 15px -5px #ececec;
}
#mainDestacados .main-product-container .main-product-content .main-product-image{
    height: 180px;
    background: #404040;
    position: relative;
    z-index: 1;
}
#mainDestacados .main-product-container .main-product-content .main-product-image img{
    object-fit: cover;
    height: 100%;
    width: 100%;
}
#mainDestacados .main-product-container .main-product-content .main-product-description{
    height: 125px;
    z-index: 5;
    position: relative;
    background: #fff;
    transition: all 0.3s ease-in-out;
    padding: 15px 25px 25px 25px;
    box-shadow: 0 -5px 15px -5px #a0a0a0;
}
#mainDestacados .main-product-container .main-product-content .main-product-description span{
    opacity: 0;
    transition: all 0.3s ease-in-out;
}
#mainDestacados .main-product-container .main-product-content .main-product-description .main-product-description-plus{
    opacity: 1;
    transition: all 0.3s ease-in-out;
    position: absolute;
    right: 5px;
    top: 43px;
    font-size: 22px;
    color: #c1c1c1;
}
#mainDestacados .main-product-container .main-product-content .main-product-description h4{
    margin: 0;
    padding: 0;
    font-weight: bold;
    font-size: 23px;
    color: var(--orange-color);
}
#mainDestacados .main-product-container .main-product-content .main-product-description p{
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: #272727;
}
#mainDestacados .main-product-container .main-product-content:hover{
    box-shadow: 0 5px 25px -9px #cccccc;
    cursor: pointer;
}
#mainDestacados .main-product-container .main-product-content:hover .main-product-description span{
    opacity: 1;
}
#mainDestacados .main-product-container .main-product-content:hover .main-product-description .main-product-description-plus{
    top: 98px;
    color:var(--orange-color);
}
#mainDestacados .main-product-container .main-product-content:hover .main-product-description{
    margin-top: -55px;
}


#mainNosotros{}
#mainNosotros h2{
    color: #fff;
    margin: 0;
    padding: 0;
    font-weight: bolder;
    font-size: 36px;
}
#mainNosotros h3{
    color: #fff;
    margin: 0;
    padding: 0;
    font-weight: bolder;
    font-size: 24px;
}
#mainNosotros p{
    color: #fff;
    margin: 0;
    padding: 0;
    font-size: 15px;
}
#mainNosotros .light-text{
    color: var(--dark-grey-l-color);
}


#mainServicios{
    overflow: hidden;
}
#mainServicios:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.65);
    background: linear-gradient(45deg, rgb(255 255 255) 0%, rgb(137 137 137 / 90%) 100%);
    z-index: 0;
}
#mainServicios .rounded-img{
    box-shadow: 0 0 20px -5px #9d9d9d;
}
#mainServicios .container{
    z-index: 1;
    position: relative;
}




footer{}
footer .siteLogo .logoRadius{
    width: 110px;
    height: 110px;
    background: rgb(255 255 255 / 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
footer .siteLogo{
    color: #fff;
}
footer .siteLogo img{
    /* filter: contrast(0) brightness(0) invert(1); */
    height: 90px;
}
footer .siteLogo h1{
    font-size: 50px;
    line-height: 45px;
}
footer .siteLogo h2{
    font-size: 38px;
    line-height: 40px;
}
footer .footer-icons{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25px;
    width: 25px;
    background: #ffffff;
    border-radius: 50%;
    font-size: 12px;
    color: var(--orange-color);
    transition: all 0.3s ease-in-out;
}
footer h3{
    font-size: 26px;
    font-weight: bolder;
    margin: 0;
    padding: 0;
}
footer p{
    margin: 0;
    padding: 0;
    font-size: 16px;
    color: var(--blue-color);
}
footer a{
    margin: 0;
    padding: 0;
    text-decoration: none;
    color: var(--blue-color);
    transition: all 0.3s ease-in-out;
}
footer a:hover{
    color: #000;
}
footer a:hover .footer-icons{
    background: var(--orange-color);
    color: #ffffff;
}
footer .footer-contact-form{}
footer .footer-contact-form h3{
    color: #e0e0e0;
}
footer .footer-contact-form p{
    color: #e0e0e0;
}
footer .footer-contact-form label{
    color: #505050;
    font-size: 14px;
}
footer .footer-contact-form form{
    margin-top: 30px;
}

footer .footer-border-radius-bottom-left{
    border-radius:0 0 0 50px;
}
footer .footer-border-radius-top-right{
    border-radius: 0 50px 0 0;
}
footer .footer-border-radius-bottom-right{
    border-radius: 0 0 0 0;
}


.copyright{
    color: #fff;
    font-size: 14px;
}


.g-mt-60{
    margin-top: 60px
}

.line-spacer{
    width: 50%;
    height: 5px;
    background: var(--orange-color);
    margin: 20px 0;
    border-radius: 5px;
}

.orange-bg{
    background: rgb(252,157,47);
    background: radial-gradient(circle, rgba(252,157,47,1) 0%, rgba(237,127,0,1) 100%);
}
.white-bg{
    background: rgb(255,255,255);
    background: linear-gradient(45deg, rgba(255,255,255,1) 0%, rgba(239,239,239,1) 100%);
}
.l-white-bg{
    background: rgba(255,255,255,0.3);
    background: linear-gradient(45deg, rgba(255,255,255,0.3) 0%, rgba(239,239,239,0.3) 100%);
}
.dark-bg{
    background: rgb(61,61,63);
    background: linear-gradient(45deg, var(--blue-color) 0%, rgba(18,18,18,1) 100%);
}
.grey-bg{
    background-color: var(--dark-grey-l-color);
}

.image-bg{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-clip: border-box;
    background-attachment: fixed;
    width: 100%;
    height: 100%;
}

.rounded-img{
    border-radius: 10px;
    box-shadow: 0 0 20px -5px var(--dark-black-color);
}

.special-btn{
    background: rgb(252, 157, 47);
    background: radial-gradient(circle, rgba(252, 157, 47, 1) 0%, rgba(237, 127, 0, 1) 100%);
    border-radius: 6px;
    border: 0;
    padding: 10px 25px;
    color: #fff;
    font-weight: bold;
    text-shadow: 1px 1px 5px #bb6401;
    box-shadow: 0 0 15px -5px #959595;
    transition: all 0.3s ease-in-out;
    opacity: 0.7;
}
.special-btn:hover{
    box-shadow: 0 0 15px -5px #000000;
    color: #fff;
    opacity: 1;
}


@media screen and (max-width: 1199px){
    .siteLogo h1{
        font-size: 25px;
        line-height: 24px;
    }
    .siteLogo h2{
        font-size: 18px;
        line-height: 14px;
    }
}
@media screen and (max-width: 767px){
    footer .footer-border-radius-bottom-right{
        border-radius:0 0 0 50px;
    }
    footer .footer-border-radius-bottom-left{
        border-radius: 0 0 0 0;
    }
}
@media screen and (max-width: 575px){
    footer .siteLogo img{
        filter: contrast(0) brightness(0) invert(1);
        height: 100px;
    }
    footer .siteLogo h1{
        font-size: 40px;
        line-height: 40px;
    }
    footer .siteLogo h2{
        font-size: 30px;
        line-height: 25px;
    }
}