@charset "utf-8";

html,
body {
    scroll-behavior: smooth;
    height: 100%;
    position: relative;
    z-index: 6001;
}

html,
body {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    line-height: 1;
    font: inherit;
    vertical-align: baseline;
    background: #cccccc;
}

#wrap {
    min-height: 100%;
    background-color: rgb(254, 254, 254);
}

#content {
    box-sizing: content-box;
    width: auto;
    margin: 0 auto;
    background-color: none;
    overflow: auto;
    padding: 0px 0px 41px 0px;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background-color: rgb(0, 0, 0, .1);
}

::-webkit-scrollbar-thumb {
    background-color: rgb(0, 0, 153, .3);
    border-radius: 10px;
}

/*-----------------------------------*/
.blink {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 100;
    animation: parpadeo 1s infinite;
    /* color: rgb(61,127,143); */
    color: rgb(0, 0, 255);
    font-size: 10pt;
}

@keyframes parpadeo {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/*************************************************************************/
#wrap-img-banner {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(0, 0, 0);
    background: radial-gradient(circle, rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 17, 17, .8);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    color: white;
    text-align: center;
}

#wrap-img-banner #overlay h1 {
    text-transform: uppercase;
    color: rgb(255, 255, 255, .9);
    font-family: 'headm', serif;
    font-size: clamp(24pt, 2vw, 30pt);
    font-weight: 600;
    margin: 0px;
    text-shadow: 0px 0px 20px #000097;
}

#wrap-img-banner #overlay span {
    font-family: 'textm', serif;
    font-weight: 200;
    font-size: 12pt;
    color: rgb(255, 255, 255);
    padding: 10px;
    text-shadow: 0px 0px 1px #000000;
}

@media (max-width: 1366px) {
    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

@media (max-width: 400px) {
    #wrap-img-banner {
        height: 400px;
    }

    img {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 901px) {
    #wrap-img-banner #overlay h1 {
        font-size: 20pt;
    }

    #wrap-img-banner #overlay h4 {
        font-size: 20pt;
        margin: -50px 0px 0px 0px;
    }

    #wrap-img-banner {
        height: 300px;
    }
}

/*******************************************************/
#wrap-img-banner-brand {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(0, 0, 0);
    background: radial-gradient(circle, rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

#wrap-img-banner-brand .img-banner {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#wrap-img-banner-brand #overlay {
    position: relative;
    width: 100%;
    background-color: rgba(17, 17, 17, .6);
    display: flex;
    flex-direction: column;
    justify-content: start;
    padding-top: 220px;
    padding-bottom: 40px;
    align-items: center;
    color: white;
    text-align: center;
    box-sizing: border-box;
    z-index: 1;
}

#wrap-img-banner-brand #overlay .content-info-services {
    width: 1300px;
    color: #ffffff;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 0px;
}

#wrap-img-banner-brand #overlay .content-info-services .col1 {
    grid-column: span 2 / span 2;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

#wrap-img-banner-brand #overlay .content-info-services .col1 h1 {
    color: rgb(255, 255, 255);
    font-family: 'headm', serif;
    font-weight: 200;
    text-transform: uppercase;
    text-shadow: 1px 1px 10px rgb(0, 0, 153);
}


#wrap-img-banner-brand #overlay .content-info-services .col2 {
    grid-column: span 6 / span 6;
    grid-column-start: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 10px;
}


#wrap-img-banner-brand #overlay .content-info-services .col2 img {
    width: 50%;
    height: auto;
    opacity: .8;
}

#wrap-img-banner-brand #overlay .content-info-services .col2 p {
    color: rgb(255, 255, 255);
    text-align: justify;
    font-family: 'textm', serif;
    font-size: 14pt;
    font-weight: 200;
}

@media (max-width:1300px) {
    #wrap-img-banner-brand #overlay .content-info-services {
        width: auto;
    }
}

@media (max-width:950px) {

    #wrap-img-banner-brand #overlay {
        padding-top: 200px;
    }
}

@media (max-width:900px) {
    #wrap-img-banner-brand #overlay {
        padding-top: 150px;
    }
}

@media (max-width:900px) {
    #wrap-img-banner-brand #overlay .content-info-services {
        display: block;
    }
}

/****************************************/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.6s ease;
    pointer-events: all;
    visibility: visible;
}

#preloader.hidden {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

#preloader .img-preloader {
    background-color: transparent;
    padding: 0;
    width: 180px;
    height: 180px;
    overflow: hidden;
    margin: 0;
    position: relative;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 10px 0 0;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/**********************************************************/
/*                    Video Banner                        */
/**********************************************************/
#wrap-video-services {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(0, 0, 0);
    background: radial-gradient(circle, rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

video {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#wrap-video-services #overlay {
    position: relative;
    width: 100%;
    background-color: rgba(17, 17, 17, .6);
    display: flex;
    flex-direction: column;
    justify-content: start;
    padding-top: 220px;
    padding-bottom: 40px;
    align-items: center;
    color: white;
    text-align: center;
    box-sizing: border-box;
    z-index: 1;
}

#wrap-video-services #overlay .content-info-services {
    width: 1300px;
    color: #ffffff;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 0px;
}

#wrap-video-services #overlay .content-info-services .col1 {
    grid-column: span 2 / span 2;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

#wrap-video-services #overlay .content-info-services .col1 h1 {
    color: rgb(255, 255, 255);
    font-family: 'headm', serif;
    font-weight: 500;
    text-transform: none;
    text-shadow: 1px 1px 10px rgb(0, 0, 153);
}

#wrap-video-services #overlay .content-info-services .col1 img {
    width: 250px;
    height: auto;
    margin: 0px;
    padding: 0px;
    filter: grayscale(100%) brightness(0) invert(1);
}

#wrap-video-services #overlay .content-info-services .col2 {
    grid-column: span 6 / span 6;
    grid-column-start: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 10px;
}

#wrap-video-services #overlay .content-info-services .col2 article {
    background-color: rgba(255, 255, 255, .1);
    backdrop-filter: blur(4px) saturate(100%);
    -webkit-backdrop-filter: blur(4px) saturate(100%);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    padding: 10px;
}

#wrap-video-services #overlay .content-info-services .col2 article img {
    width: 100px;
    height: auto;
    filter: grayscale(100%) brightness(0) invert(1);
    opacity: .8;
}

#wrap-video-services #overlay .content-info-services .col2 p {
    color: rgb(255, 255, 255);
    text-align: justify;
    font-family: 'textm', serif;
    font-size: 14pt;
    font-weight: 200;
}

@media (max-width:1300px) {
    #wrap-video-services #overlay .content-info-services {
        width: auto;
    }
}

@media (max-width:950px) {

    #wrap-video-services #overlay {
        padding-top: 200px;
    }
}

@media (max-width:900px) {
    #wrap-video-services #overlay {
        padding-top: 150px;
    }
}

@media (max-width:900px) {
    #wrap-video-services #overlay .content-info-services {
        display: block;
    }
}

/*******************************************************/
/*            Estilos para el mapa de google           */
/******************************************************/
.wrap-section-map {
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 0px 0px 17px 0px;
}

.section-map {
    box-sizing: border-box;
    margin: 0px auto 0px auto;
    overflow: hidden;
    width: 100%;
    padding: 0px;
}

iframe {
    width: 100%;
    height: 350px;
    border: 0px;
    margin: 0px;
    display: block;
}

@media (min-width:1350px) {
    .section-map {
        max-width: 1350px;
    }
}

@media (max-width: 1000px) {
    .section-map {
        width: auto;
    }
}

.line-span {
    display: flex;
    align-items: center;
    line-height: 2;
    text-align: left;
}

.line-span:before,
.line-span:after {
    background-color: rgb(0, 0, 153, .3);
    content: "";
    display: block;
    flex: 1;
    height: 3px;
    border-radius: 2px;
}

.scroll-item {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease-out;
}

.scroll-item.visible {
    opacity: 1;
    transform: translateY(0);
}
/**************************************/
/* Whatsapp Button                    */
/**************************************/
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9998;
    cursor: pointer;
    transition: 1s all;
}
  
.whatsapp-button img {
    width: 40px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    background: #25D366;
    background: linear-gradient(90deg,rgba(37,211,102,1) 0%, rgba(77,77,255,1) 100%);
    padding: 10px;
    transition: 1s all;
}

.whatsapp-button:hover {
    transform: translateY(-5px);
}