@import url('https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:wght@300;700&display=swap');

html {
    font-size: 16px;
    overflow-x: hidden;
}
body {
    font-family: 'Open Sans Condensed', sans-serif;
    background: #e7f5fe;
    color: #000;
    /* overflow-x: hidden; */
    position: relative;
}

a, .Landing-Header, .ImgLogo{
    text-decoration: none;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease
    letter-spacing: 1.5px;
    color: #000;
}

/* WEB UTILITIES */

.Landing-Wrapper {
    display: block;
    padding-top: 100px;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 999999;
}
#status {
    width: 200px;
    height: 200px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -100px 0 0 -100px;
}

/* LANDING HEADER /////////////////////////////////////////////////////////////*/

.Landing-Header {
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 3;
    top: 0;
    padding: 15px 0;
    box-shadow: 0px 0px 15px rgb(0 0 0 / 20%);
}

.Landing-Header.Active .ImgLogo{
    height: 50px;
}

.Landing-Header .BoxLogos {
    display: flex;
    align-items: center;
    justify-content: center;
}

.Landing-Header .BoxLogos .LogoExpo {
    margin: 0;
}

.ImgLogo{
    height: 80px;
}


/* LANDING INTRO /////////////////////////////////////////////////////////////*/

.Landing-Intro {
    background: url(../img/Banner-Principal.jpg);
    background-size: cover;
    height: 70vh;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    border-bottom: 10px solid #023ea0;
}

.BoxIntro{}
.BoxIntro .Text {
    color: #707070;
    font-weight: 600;
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 2.4rem;
    text-align: center;
}


/* LANDING DESTACADO //////////////////////////////////////////////////////////*/

.Landing-Destacado {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    background: #fff; 
}

.BoxDestacado{
    margin: 0;
}
.BoxDestacado .Img{
    color: #707070;
    font-weight: 600;
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 2rem;
    letter-spacing: -1px;
}

/* LANDING FORMULARIO //////////////////////////////////////////////////////////*/

.Landing-Formulario{
    background: #e7f5fe;
}
.Formulario .Input {
    border: 1px solid #023ea0;
    border-radius: 0;
    background: #fff;
    padding: 15px;
    font-weight: 600;
    min-height: 60px;
    font-size: 1.4rem;
}
.Formulario .InputSubi {
    border: 1px solid #023ea0;
    border-radius: 0;
    background: #023ea0;
    padding: 15px;
    font-weight: 600;
    min-height: 60px;
    color: #fff;
    width: 100%;
    font-size: 1.4rem;
}
.Formulario input::-webkit-input-placeholder{color: #023ea0;opacity:1 !important;font-size: 1.4rem;}
.Formulario input::-moz-placeholder{color: #023ea0;opacity:1 !important;font-size: 1.4rem;}
.Formulario input:-ms-input-placeholder{color: #023ea0;opacity:1 !important;font-size: 1.4rem;}
.Formulario input:-moz-placeholder{color: #023ea0;opacity:1 !important;font-size: 1.4rem;}

input[type="file"] {
    display: none;
}
.custom-file-upload {
    display: inline-block;
    cursor: pointer;
    margin: 0;
    border: 1px solid #023ea0;
    border-radius: 0;
    background: #023ea0;
    padding: 15px;
    font-weight: 600;
    min-height: 60px;
    color: #fff;
    width: 100%;
    font-size: 1.4rem;
    opacity: 1;
    text-align: center;
}
.custom-file-upload:hover {
    opacity: 0.8;
}

.Formulario .InputSubmit {
    border: 1px solid #707070;
    border-radius: 0;
    background: #707070;
    padding: 15px;
    font-weight: 600;
    min-height: 60px;
    color: #fff;
    width: 100%;
    font-size: 1.4rem;
}
.Formulario .InputSubmit:hover {
    background: #333;
    border: 1px solid #333;
}

/* LANDING FOOTEER //////////////////////////////////////////////////////////*/

.Landing-Footer{
    min-height: 80px;
    background: #707070;
}

/* LANDING GRACIAS /////////////////////////////////////////////////////////////*/


.Landing-Gracias{
    background: #e7f5fe;
}

.BoxGracias .Title {
    color: #023ea0;
    font-weight: 600;
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 2.8rem;
    line-height: 3rem;
    text-align: center;
}

.BoxGracias .Text {
    color: #707070;
    font-weight: 600;
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 2.8rem;
    line-height: 3rem;
    text-align: center;
}

.BoxIntro .Text br{
    display: none;
}