@import url('https://fonts.googleapis.com/css?family=Rajdhani:300,400,500,600,700');
@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');

*,
*::after,
*::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
    box-sizing: border-box;
}

body{
    width: 100%;
    padding: 0;
    margin: 0;
    font-size: 20px;
    line-height: 1.6;
    font-weight: 400;
    font-family: 'Bebas neue', cursive;
    font-style: italic;
    background: #f3f3f3;
    background-size: cover;
}

h1 {
    font-size: 70px
}

h2 {
    font-size: 70px
}

h3 {
    font-size: 70px
}

h4 {
    font-size: 50px
}

h5 {
    font-size: 40px
}

h6 {
    font-size: 30px
}

p{
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 30px;
    line-height: 30px;
    font-weight: 400;
    font-style: normal;
}

img {
    max-width: 100%;
    height: auto;
}

a:hover{
    text-decoration: none;
}

.grey{
    background: #E1E4EC;
}

.padtop{
    padding-top: 84px;
}

/* LOADER */
.lds-spinner {
    color: official;
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-spinner div {
    transform-origin: 40px 40px;
    animation: lds-spinner 1.2s linear infinite;
  }
  .lds-spinner div:after {
    content: " ";
    display: block;
    position: absolute;
    top: 3px;
    left: 37px;
    width: 6px;
    height: 18px;
    border-radius: 20%;
    background: #fff;
  }
  .lds-spinner div:nth-child(1) {
    transform: rotate(0deg);
    animation-delay: -1.1s;
  }
  .lds-spinner div:nth-child(2) {
    transform: rotate(30deg);
    animation-delay: -1s;
  }
  .lds-spinner div:nth-child(3) {
    transform: rotate(60deg);
    animation-delay: -0.9s;
  }
  .lds-spinner div:nth-child(4) {
    transform: rotate(90deg);
    animation-delay: -0.8s;
  }
  .lds-spinner div:nth-child(5) {
    transform: rotate(120deg);
    animation-delay: -0.7s;
  }
  .lds-spinner div:nth-child(6) {
    transform: rotate(150deg);
    animation-delay: -0.6s;
  }
  .lds-spinner div:nth-child(7) {
    transform: rotate(180deg);
    animation-delay: -0.5s;
  }
  .lds-spinner div:nth-child(8) {
    transform: rotate(210deg);
    animation-delay: -0.4s;
  }
  .lds-spinner div:nth-child(9) {
    transform: rotate(240deg);
    animation-delay: -0.3s;
  }
  .lds-spinner div:nth-child(10) {
    transform: rotate(270deg);
    animation-delay: -0.2s;
  }
  .lds-spinner div:nth-child(11) {
    transform: rotate(300deg);
    animation-delay: -0.1s;
  }
  .lds-spinner div:nth-child(12) {
    transform: rotate(330deg);
    animation-delay: 0s;
  }
  @keyframes lds-spinner {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }

.loader{
background: #E1E4EC;
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
position: fixed;
top: 0;
left: 0;
z-index: 10000;
clip-path: circle(141.4% at 100% 100%);
transition: clip-path 0.3s ease-in-out;
}

.loader2{
clip-path: circle(0.0% at 100% 100%);
}
/* LOADER */


/* HEADER */
@media(max-width:768px){

    .ham{
        background: #FF0000;
        padding: 0px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;    
        cursor: pointer;
        font-size: 1.5em;
        width: 100%;
        border: none;
        color: #F3F3F3;
        box-shadow: 0 1px 0 0 rgb(0 0 0 / 6%);
    }
    
    header .ham a .logo{
        height: 70px;
    }
    
    header nav .logo{
        display: none;
    }
    
    .menu, .submenu{
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .menu{
        position: absolute;
        background: #FF0000;
        width: 100%;
        margin-left: -100%;
        transition: all 0.5s;
        z-index: 1000;
    }

    .menu__item{
        background: #FF0000;
    }
    
    .menu__link{
        display: block;
        padding: 20px;
        color: white;
        font-size: 1.2em;
        text-decoration: none;
    }
    
    .menu__link:hover{
        color: #F3F3F3;
    }
    
    .submenu .menu__link:hover{
        background: #DB0000;
        color: #F3F3F3;
    }
    
    .submenu{
        height: 0;
        overflow: hidden;
        transition: all 0.3s;
    }
    
    .submenu .menu__item{
        border-bottom: 1px solid rgba(255,255,255,.5);
    }

    .submenu .menu__link{
        background: #DB0000;
    }
    
    .mostrar{
        margin-left: 0;
    }

    .about .about_img figure {
        margin: 0px;
    }


    }
    
    @media(min-width:769px){
        .ham{
            display: none;
        }
    
        header nav{
            background-color: #FF0000;
            max-width: 100%;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-around;
            min-height: 70px;
            position: fixed;
            z-index: 1000;
            box-shadow: 0 1px 0 0 rgb(0 0 0 / 6%);

        }
    
        header nav a .logo{
            height: 72px;
        }
        
        .menu{
            padding: 0;
            margin: 0;
            list-style: none;
            transition: all 0.5s;
        }
        
        .menu i{
            display: none;
        }

        .menu, .submenu{
            list-style: none;
            padding: 0px;
            margin: 0px;
        }
            
        .menu__item{
            display: inline-block;
            position: relative;
            list-style: none;
            transition: 0.3s;
        }
    
        .menu__item:hover{
            background: #DB0000;
        }

        .menu__item:hover .menu__link{
            color: #F3F3F3;
        }
    
        .menu__link{
            display: block;
            text-decoration: none;
            padding: 20px;
            margin: 0px;
            font-size: 20px;
            color: #F3F3F3;
            font-weight: 500;
        }

    
        .container-submenu{
            position: relative;
        }
        
        .submenu{
            position: absolute;
            top: 68px;
            overflow: visible;
            z-index: 10000;
            display: none;
            background-color: #FF0000;
            width: 180%;
            padding-left: 0px;
    }
    
        .container-submenu:hover .submenu{
            display: block;
            position: absolute;
    }
    
        .submenu .menu__item{
            display:block;
            overflow: hidden;
            border-bottom: 1px solid rgba(255,255,255,.5);
        }
    
        .submenu .menu__item:hover{
            background: #DB0000;
        }
    
        .submenu .menu__link{
            font-size: 19px;
        }

        .slider{
            padding-top: 70px;
        }

        .about_img{
            padding-top: 55px;
        }

        .about .about_img .nomargin {
            margin: -70px;
        }
}        
/* CARROUSEL */

.carousel-inner{
    position: relative;
    display: flex;
    align-items: center;
    max-height: 90vh;
    width: 100%;
}

.relative{
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        text-align: left;
        bottom: auto;
}

.portada{
    object-fit: cover;
}
.carousel-item:before{
    content: "";
    width: 100%;
    height: 100%;
    background-color: black;
    position: absolute;
    opacity: 0.5;
}

.carousel-caption{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
    bottom: auto;
}

.carousel-caption span{
    font-size: 80px;
    font-weight: 400;
    line-height: 80px;
    padding-bottom: 10px;
    display: block;
    font-style: italic
}

.carousel-caption h1 {
    color: #f3f3f3;
    font-size: 80px;
    line-height: 80px;
    font-weight: 400;
    font-style: italic
}

.carousel-caption p{
    line-height: 40px;
}

.verMas{
    background: #f3f3f3;
    width: 196px;
    padding: 12px 0px;
    display: inline-block;
    font-weight: 500;
    line-height: 30px;
    color: #ff0000;
    border: 2px solid #ff0000;
    text-align: center;
    text-decoration: none;
    font-style: italic;
    font-size: 20px;
    letter-spacing: 3px;
    }

.verMas:hover{
    border: #ff0000 solid 2px;
    background: #ff0000;
    color: #fff;
    transition: ease all 0.5s;
}

#carouselExampleCaptions a.carousel-control-next {
    position: absolute;
    top: 40% !important;
    left: inherit !important;
    width: 30px;
    height: 60px;
    text-decoration: none;
    transition: all 0.5s;
}

#carouselExampleCaptions a.carousel-control-prev {
    position: absolute;
    top: 40% !important;
    left: 0px !important;
    width: 30px;
    height: 60px;
    text-decoration: none;
    transition: all 0.5s;
}

#carouselExampleCaptions .carousel-control-prev,
#carouselExampleCaptions .carousel-control-next {
     width: 62px;
     height: 60px;
     background: #fffdfd;
     opacity: 1;
     font-size: 30px;
     color: #000;
}

#carouselExampleCaptions .carousel-control-prev:hover,
#carouselExampleCaptions .carousel-control-next:hover,
#myCarousel .carousel-control-prev:focus,
#myCarousel .carousel-control-next:focus {
     background: #ff0000 ;
     color: #fff;
}

#carouselExampleCaptions a.carousel-control-prev {
     position: absolute;
     left: 82px;
     bottom: 10px;
     top: inherit;
}

#carouselExampleCaptions a.carousel-control-next {
     position: absolute;
     left: 10px;
     top: inherit;
     bottom: 10px;
}

/* ABOUT */

.about{
padding-bottom: 80px;
}

.about .about_img figure {
    margin: 0px;
}

.about .about_box {
    padding-top: 55px;
}

.about .about_box h3 {
    color: #888687;
    line-height: 30px;
    padding-bottom: 7px;
    display: block;
}

.about .about_box span {
    font-family: 'Bebas neue', cursive;
    font-style: italic;
    font-size: 60px;
    font-weight: 400;
    color:#23242a; 
    padding-bottom: 10px;
    display: block;
    line-height: 60px;
}

.about .about_box p {
    font-size: 20px;
    line-height: 30px;
    color: #23242a;
}

.about_box_ span {
    font-weight: bold;
    font-size: 50px;
    line-height: 58px;
    color:#23242a; 
    padding-bottom: 10px;
display: block
}

.about_box_ {
    padding: 30px;
    padding-top: 30px;}

.about_box_ p {
    font-size: 17px;
    line-height: 30px;
    color: #23242a;
}

.left{
    text-align: left;
}

.right{
    text-align: right;
}

.center{
    text-align: center;
}

.row{
    align-items: center;
}
/* ULTIMAS NOTICIAS */

.sectionNoticias{
    padding-top: 60px;
    background-color: #E1E4EC;
}

.noticias{
    max-width: 1140px;
}

.titulo{
    margin-bottom: 46px;
    line-height: 32px;
    font-size: 24px;
    font-weight: 300;
    text-align: center;
    color: #1c1e36;
}

article{
    background-color: #E1E4EC;
}

.noti{
    display: block;
    margin: 1px;
    text-decoration: none;
    height: 390px;
    background-color: #FEFEFE;
}

.image{
    display: block;
    position: relative;
    overflow: hidden;
    height: 188px;    
}

.image-placeholder{
    max-height: 100%;
    max-width: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.noti:hover .image {
    height: 150px;
}

.noti:hover{
    text-decoration: none;
}

.noti .image{
    transition: height .3s ease-out;
}

.noti-tit{
    font-family: 'Roboto Condensed', sans-serif;
    font-style: normal;
    display: block;
    padding: 6px 17px 4px;
    font-size: 20px;
    font-weight: 700;
    text-align: left;
    color: #1c1e36;
}

.info{
    display: block;
    padding: 19px 17px 4px;
    line-height: 17px;
    font-size: 14px;
    font-weight: 300;
    text-align: left;
    color: #1c1e36;
}

.btnNoti{
    margin-top: 40px;
    margin-bottom: 40px;
}

.none{
    display: none;
    transition: all 5s;
}


/* CONTACTO */
.contact {
    background: #ffffff;
    padding: 90px 0px;
}

.titlepage {
    padding-bottom: 60px;
}

.titlepage h2 {
    line-height: 60px;
    padding: 0;
}

.contact .main_form {
    background: #fff;
   box-shadow: #ddd 0px 0px 19px 1px;
   padding: 40px;
} 

.form-control {
    border: #ff0000 solid 2px;
    border-radius: inherit;
    margin-bottom: 30px;
    padding: 13px 18px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
}
.form-control:focus {
    box-shadow: inherit;
    border: #ff0000 solid 2px !important;
}

.textarea {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    border: #ff0000 solid 2px;
    margin-bottom: 30px;
    padding: 13px 20px;
    width: 100%;
    padding-top: 40px;
} 

.send {
    border: 2px solid #ff0000;
    background: #f3f3f3;
    width: 196px;
    padding: 12px 0px;
    display: inline-block;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    color: #ff0000;
    text-align: center;
    text-decoration: none;
    margin: 0 auto;
    font-style: italic;
    letter-spacing: 3px;
    }

.send:hover{
    border: #ff0000 solid 1px;
    background: #ff0000;
    color: #fff;
    transition: ease all 0.5s;
}

#g-recaptcha-response {
    display: block !important;
    position: absolute;
    margin: -78px 0 0 0 !important;
    width: 302px !important;
    height: 76px !important;
    z-index: -999999;
    opacity: 0;
}


/** end contact **/

/* FOOTER */

.pdn-top-30 {
    padding-top: 60px;
}
.footer {
    background-color: #051108;
    text-align: center;
    font-family: poppins;
}
.footer .headinga h3 {
    font-family: 'Bebas neue', cursive;
    font-style: italic;
    font-size: 50px;
   display: block;
   color: #fff;
   max-width: 850px;
   padding-bottom: 1px;
   border-bottom: #fff solid 1px;
   text-align: center;
   margin: 0 auto;
    margin-bottom: 0px;
   margin-bottom: 30px;

}
.footer .headinga span {
    font-family: 'Roboto Condensed', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    display: block;
    color: #fff;
    padding-top: 10px;
    padding-bottom: 5px;
}
.footer .headinga p {
    font-family: 'Roboto Condensed', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    display: block;
    color: #fff;
    line-height: 30px;
    margin-top: 10px;
}
ul.link li {
    display: inline-block;
    padding: 8px 15px;
    
    
}
ul.link li a {
    font-family: 'Bebas neue', cursive;
    font-style: italic;
    color: #fff;
    font-size: 20px;
    transition: ease all 0.5s;    
}
ul.link li a:hover {
    color: #ff0000;
}

ul.location_icon {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 5px;
}
ul.location_icon li {
    float: left;
    height: 60px;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-right: 20px;
}
ul.location_icon li:last-child {
    padding-right: 0px;
}
ul.location_icon li a {
color: #fff;
width: 40px;
height: 40px;
border: solid #fff 1px;
float: left;
text-align: center;
line-height: 40px;
border-radius: 100%;
font-size: 18px;
transition: ease all 0.5s;
} 

ul.location_icon li a:hover {
    background: #ff0000;
border: solid #ff0000 1px;        
color: #fff;
}

ul.location_icon span {
    font-size: 17px;
    font-weight: 400;
}
.copyright {
    background: #fff;
    padding: 10px 0px 10px 0;
    margin-top: 50px;
}
.copyright p {
    color: #000;
    font-size: 16px;
    text-align: center;
    text-align: center;
    margin: 0 auto;
}
.copyright a {
    color: #000;
}
.copyright a:hover {
    color: #ff0000;
}
.btn-primary.focus,
.btn-primary:focus {
    box-shadow: inherit;
}

iframe{
    margin-right: 10px;
    }
    

@media(max-width:575px){
    iframe{
        margin-right: 0px;
    }
}

/* ABOUT */

.brand_color {
    background-color: #ddd;
    position: relative;
    top: 70px;
}
.brand_color .titlepage {
    margin-top: 90px;
    padding-bottom: 90px;
}

.brand_color .abouttitle h2 {
    color: #fff;
    text-transform: uppercase;
    font-size: 40px;
    line-height: 45px;
    padding: 40px 0;
    font-weight: 500;
    text-align: center;
}

/* BANNER */

.banner{
    position: relative;
    max-height: 330px;
    height: 330px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}

.banner-caption{
    position: absolute;
    top: 70%;
    transform: translateY(-50%);
    text-align: left;
    bottom: auto;
    left: 10%;
}

.small{
    font-size: 55px;
}

.banner .titlepage{
    margin-left: 30px;
}

.banner .titlepage h2{
    color: #fff;
}
