/********** Template CSS **********/
:root {
    --primary: #592c82;
    --light: #F6F7F8;
    --dark: #1A2A36;
}


.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

h1{
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 47px;
    color: #592c82;
    letter-spacing: .1rem;
    font-weight: 500;

}
h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 500;
    font-size: 50px;
    letter-spacing: .2rem;
    color: #592c82;
}

h4{
    font-family: 'Roboto Slab', serif;
    color: white;
    font-weight: 400;
    font-size: 30px;
}

h5{
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 30px;
    color: #000000;
    letter-spacing: .1rem;
    font-weight: 300;
}

h6{
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 30px;
    color: #ffffff;
    letter-spacing: .1rem;
    font-weight: 500;
}

h7{
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    color: #ffffff;
    font-weight: 300;
}
span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 35px;
    color: #3e3e3e;
    line-height: 100%;
}

p {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 40px;
    color: #3e3e3e;
    line-height: 120%;
}

h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 80px;
    color: #592c82;
    letter-spacing: .5rem;

}

.badge{
    font-size: 30px;
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", 
    Helvetica, Arial, "Lucida Grande", sans-serif;
    
}

.bg-pf {
    margin-top: -50px;
    background-color: #582c82cd;
    padding: 6%;
    display: none;
}

@media screen and (max-width: 600px) {
    .bg-pf{
        display: flex;
    }
}

.texto-principal {
    padding-top: 4%;
    text-align: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.texto-secundario {
    padding-top: 4%;
    text-align: left;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.container-right{
    max-width: 400px;
    margin-left: auto;
    padding-right: 15%;
}



/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", 
    Helvetica, Arial, "Lucida Grande", sans-serif;
    margin-right: 30px;
    padding: 25px 0;
    color: white;
    font-size: 20px;
    font-weight: 100;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link.active {
    color: white;
    font-weight: 600;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
        padding-left: 0px !important;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;

    }
}


.texto-left{
    padding-top: 90px; 
    text-align: left;
}

.texto-right{
    padding-top: 90px; 
    text-align: right;
}

@media screen and (max-width: 600px) {
    .carousel-caption{
       visibility: hidden;
    }
}



@media screen and (max-width: 600px) {
    .esconder {
        width: 320px;
    }
}

@media screen and (max-width: 600px) {
    p {
        font-size: 25px;
    }
    h2{
        font-size: 45px;
    }
    .texto-right{
    text-align: center;
    }
    .texto-left{
        padding-top: 0px;
        text-align: center;
        }
    span{
    text-align: center;
    font-size:25px ;
    }
}




/* Botones fiales */
.aparecer-btn {
    display: none;
}

@media screen and (max-width: 600px) {
    .esconder-btn {
        display: none;
    }

    .aparecer-btn {
        display: inline;
    }
}

.btn-resp {
    font-size: 22px;
}

.bg-grey {
    background-color: whitesmoke;
    padding: 6%;
}

.bg-grey-p {
    background-color: whitesmoke;
    padding: 1%;
}

.bg-purple{
    background-color:#592c82;
    padding: 4%; 
}

.row a{
    color: white;
}

.bg-purple-2{
    background-color:#592c82;
    padding: 2%; 
    padding-bottom: 2%;
}
.btn-xl {
    width: 400px;
    height: 68px;
    background-color: #592c82;
    font-size: 25px;
    font-weight: 500;
}

.btn-light{
    background-color: white;
    color: #592c82;
}


.btn-purple{
    background-color: #592c82;
    color: white;
}
.btn-light:hover{
    background-color: rgb(233, 233, 233);
    color: #592c82;
}
/* Botones fiales End */



.carousel-caption {
    max-width: 450px;
    margin-left: auto;
    top: 0;
    left: 00;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: #601b867c;
    z-index: 1;
}


.texto-fac{
    font-size: 20px;
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", 
  Helvetica, Arial, "Lucida Grande", sans-serif;
  text-align: left;
}

.btn-primary{
    font-size: 17px;
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", 
  Helvetica, Arial, "Lucida Grande", sans-serif;
    border-radius: 0;
}

.btn-secondary{
    font-size: 17px;
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", 
  Helvetica, Arial, "Lucida Grande", sans-serif;
    border-radius: 0;
}

.btn-f{
    font-size: 25px;
    letter-spacing: .2rem;
    font-weight: 500;
    font-family: 'Barlow Condensed', sans-serif;
}



i{
    color: white;
    font-size: 35px;
}



/* Portada Vacamtes */

.carousel-caption-2 {
    position: absolute;
    max-width: 1400px;
    margin-right: auto;
    top: 0;
    left: 00;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    z-index: 1;
    padding-left: 5%;

}

