@import '../css/contacto.css';
@import '../css/ihover.css';
html, body{
    overflow-x: hidden;
    max-width: 100%;
}
body{
    margin: 0;
    background: #2D2D2D;
    position: static;
}
video{
    position: fixed;
    min-width: 100%;
    min-height: 100%;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: -1;
}
/*SliderCSS*/
.slider{
    z-index: 1;
    width: 100%;
    margin: auto;
    overflow: hidden;
}
.slider ul{
    display: flex;
    padding: 0;
    width: 400%;
    animation: cambio 20s infinite alternate ease-in-out;
}
.slider li{
    width: 100%;
    list-style: none;
}
.slider img{
    width: 100%;
}
@keyframes cambio{
    0%{
        margin-left: 0;
    }
    20%{
        margin-left: 0;
    }
    25%{
        margin-left: -100%;
    }
    45%{
        margin-left: -100%;
    }
    50%{
        margin-left: -200%;
    }
    70%{
        margin-left: -200%;
    }
    75%{
        margin-left: -300%;
    }
    100%{
        margin-left: -300%;
    }
}
/*BTNS*/
#btns{
    border-radius: 50%;
    padding:25px;
    color:#DD8300;
    box-sizing: border-box;
    font-size: 80px;
    margin:40px;
}
#btns:hover{
    color:white;
    background-color:#DD8300;
    transition: all .25s ease-in-out;
}
#btnsp{
    color: #DD8300;
    text-decoration: none;
}
/*Sections*/
#Section1{
    padding-top: 40px;
    color: #fff;
    margin-top: -20px;
    box-sizing: border-box;
    Background-color: #F2F2F2;
}
.container-fluid{
    width: 100%;
    box-sizing: border-box;
    padding:10px;
}
#Section2{
    width: 100%;
    height:500px;
    padding-top: 40px;
    color: #fff;
    box-sizing: border-box;
    Background-color: #F2F2F2;
}
#Section2 h1{
    font-weight: 600;
    color:#3d3d3d;
    text-align: center;
}
.list li{
    list-style-type: square;
    color: #D37F29;
}
.list li p{
    color: dimgray;
}
#section3{
    padding-top: 40px;
    height: 500px;
    color: #000;
    width: 100%;
}
#section7{
    height: 300px;
    text-align: center;
    width: 100%;
    padding:0px;
    color: #fff;
    box-sizing: border-box;
    Background-color: #F2F2F2;
}
#section7 h1{
    font-weight: 600;
    color:#3d3d3d;
    text-align: center;
}
#section8 {
    height: 300px;
    text-align: center;
    width: 100%;
    padding: 0px;
    color: #fff;
    box-sizing: border-box;
    Background-color: #F2F2F2;
}
#Incendiosss{
    width: 30%;
    margin-top: 5%;
    margin-left: 10%;
}
#Incendios{
    width: 35%;
    margin-left: 50%;
    margin-top: 5%;
}
#Incendios1{
    width: 20%;
    margin-left: 50%;
    margin-top: 5%;
}
#Incendiosd{
    width: 20%;
    margin-left: 50%;
    margin-top: 0%;
}
#imf{
    width:25%;
    margin-left:55%;
    margin-top: -120px;
}
#imf1{
    width:20%;
    margin-left:55%;
    margin-top: -60px;
}
#ilf{
    width: 20%;
    margin-top: -5%;
    margin-left: 10%;
}
#st{
    font-size: 20pt;
    margin-top: -15%;
    margin-left: 10%;
    text-align: left;
    color:#3d3d3d;
    font-weight:bold;
}
#sts{
    margin-left: 50%;
    font-size: 20pt;
    text-align: left;
    margin-top: -13%;
    color: black;
    font-weight:bold;
}
#Linkas{
    margin-left: 10%;
    background-color:#202020;
    color: white;
    font-size: 12pt;
    text-align: center;
    padding:10px;
    border: none;
    box-sizing: border-box;
}
#Linkss{
    margin-left: 50%;
    background: #202020;
    color: white;
    font-size: 14pt;
    border: none;
    box-sizing: border-box;
    padding-top: 10px;
}
#Linkas:hover,#Linkss:hover{
    background-color: darkorange;
    cursor: pointer;
    transition: all .25s ease-in-out;
}
/* ---------------------------------------------- 
/* * Mouse animate icon
/* ---------------------------------------------- */
.mouse-icon{
    border: 2px solid #000;
    border-radius: 16px;
    height: 50px;
    width: 34px;
    display: block;
    z-index: 20;
    opacity: 0.9;
    margin-left: 50%;
    margin-top: 10%;
}
.mouse-icon .wheel{
    -webkit-animation-name: drop;
    -webkit-animation-duration: 2s;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-delay: 0s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-play-state: running;
    -webkit-animation-name: drop;
    animation-name: drop;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-iteration-count: ease-in-out;
    animation-iteration-count: ease-in-out;
    -webkit-animation-play-state: running;
    animation-play-state: running;
}
.mouse-icon .wheel{
    position: relative;
    border-radius: 10px;
    background: #000;
    width: 5px;
    height: 10px;
    top: 5px;
    margin-left: auto;
    margin-right: auto;
}
@-webkit-keyframes drop{
    0%{
        top: 5px;
        opacity: 0;
    }
    30%{
        top: 10px;
        opacity: 1;
    }
    100%{
        top: 25px;
        opacity: 0;
    }
}
@keyframes drop{
    0%{
        top: 5px;
        opacity: 0;
    }
    30%{
        top: 10px;
        opacity: 1;
    }
    100%{
        top: 25px;
        opacity: 0;
    }
}
.back{
    background-color: rgba(255,255,255,0.7);
    height: 500px;
    margin-top: -60px;
    width: 110%;
    margin-left: -20px;
}
.hacia-arriba{
    padding: 5px;
    height: 40px;
    width: 40px;
    /*establecemos espacios en el boton*/
    display: inline-block;
    text-align: center;
    z-index: 1;
    background:darkorange;
    /*establecemos un color de fondo*/
    color: #fff;
    font-weight: bold;
    /*cambiamos el color de la fuente*/
    position: fixed;
    /*lo ponemos fijo a pantalla*/
    font-size: 20px;
    box-sizing: border-box;
    /*establecemos un tamaņo a nuestra fuente*/
    bottom: 400px;
    /*establecemos un espacio de abajo*/
    right:20px;
    /*establecemos un espacio de la parte derecha de nuestro sitio*/
    cursor: pointer;
    /*a la hora de que el usuario pase el mause cambie a una manita para que pueda darle click*/
    border-radius: 50%;
    /*establecemos un redondeado al boton, esto puede variar*/
}
.hacia-arriba:hover{
    background: black;
    padding: 5px;
    transition: all .25s ease-in-out;
}
.icon-ctrl{
    padding-top: 8px;
    /*acomodamos el icono*/
}
.Indic{
    width: 60%;
    margin: auto;
    padding: 20px;
}
.text{
    position: relative;
    padding: 10px;
    margin-top: -2%;
    color: white;
    background: #202020;
    border-radius: 5px;
    margin-top: 20px
}
.Instruction{
    width: 100%;
    margin: auto;
    background: #202020;
    padding: 40px;
}
.Instruction .row .col-sm-8 p{
    text-align: left;
    font-size: 18px;
    color: white;
}
.contentss{
    width: 98%;
    margin: auto;
    margin-top: 5%;
}
#construccion{
    width: 50%;
}
.vids{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.9);
    margin-top: -20px;
}
.parallax,.parallax1,.parallax2,.parallax3{
    /* Full height */
     height: 100%;
    /* Create the parallax scrolling effect */
     background-attachment: fixed;
     background-position: center;
     background-repeat: no-repeat;
     background-size: cover;
    color: white;
    font-size:80px;
    font-family: sans-serif;
    padding: 20px;
    margin-top: -50px;
}
.parallax{
    /* The image used */
     background-image: url('../images/backs/CPR.jpg');
}
 .parallax1{
    /* The image used */
     background-image: url('../images/backs/AstroMa.jpg');
     margin-top: 0px;
}
.parallax2{
    /* The image used */
     background-image: url('../images/backs/RosslacC.jpg');
}
.parallax3{
    /* The image used */
     background-image: url('../images/backs/Hikvs.jpg');
     margin-top: 0px;
}
#footer{
    background: white;
    margin-top: -20px;
}
#footer,.row{
    text-align: center;
    font-size: 12pt;
    color: #DD8300;
    font-weight: normal;
}
#footer .col-sm-4{
    margin-top: 20px;
}
#footer a{
    color: #DD8300;
    list-style: none;
}
#footer a:hover{
    color: #000;
    cursor: pointer;
    font-weight: bold;
}
.social{
    position: fixed;
    box-sizing: border-box;
    left: 0;
    text-align: center;
    bottom: 100px;
    font-size: 35px;
    width: 50px;
    z-index: 100;
}
.social a:hover{
    font-size: 40px;
    transition: all .25s ease-in-out;
}
.facebook{
    background-color:#3b5998;
}
.twitter{
    background-color: #00aced;
    margin-top: -10px;
}
.youtube{
    background-color:#bb0000;
    margin-top: -10px;
}
.list li{
    text-align: left;
    list-style-type: square;
    color: #D37F29;
}
.list li p{
    color: dimgray;
}
#client{
    opacity: .35;
    filter: grayscale(100%);
}
#client:hover{
    opacity: 1;
    cursor: pointer;
    transition: .3s all ease-in-out;
    filter: saturate(120%);
}
div h1{
    font-size: 22px;
    text-align: center;
    font-weight: bold;
}
.cu{
    width: 100%;
}
ul.countdown{
    position:absolute;
    top:30%;
    margin-top: -80px;
    text-align: center;
    padding: 0;
    margin-bottom: 0;
    width: 100%;
}
ul.countdown li{
    display: inline-block;
    margin-right: 3%;
    text-align: center;
}
ul.countdown li span{
    font-size: 72px;
    font-size: 5.8vw;
    width: 100px;
    letter-spacing: 5px;
    font-weight:bold;
    color:darkorange;
    animation-name:letras;
     animation-duration:2s;
    animation-iteration-count:infinite;
    animation-direction: alternate;
}
ul.countdown li p{
    color:darkorange;
    font-size: 20px;
    margin-bottom: 0;
    animation-name:letras;
     animation-duration:2s;
    animation-iteration-count:infinite;
    animation-direction: alternate;
}
ul.countdown li:last-child{
    margin-right: 0;
}
.corp{
    margin-top:580px;
}
@media (max-width: 800px){
    #btns{
        margin:0px;
        padding:0px;
        font-size:60px;
    }
    .Instruction .row .col-sm-8 p{
        font-size: 14px;
        text-align: center;
    }
    .Indic img{
        width: 150%;
        box-sizing: border-box;
        margin-left: -20%;
    }
    #construccion{
        width: 100%;
    }
    #cliente{
        margin: auto;
        width: 80%;
    }
    .social{
        font-size: 25px;
    }
    #Incendiosss,#Incendios,#Incendiosd,#Incendios1{
        margin-left:40%;
        margin-right: 0px;
    }
    #imf,#ilf,#imf1{
        margin-top: -0px;
        margin-left: 40%;
        width:25%;
    }
    #st,#sts{
        font-size: 20px;
        text-align: center;
        margin-left: 0;
        margin-top:30px;
    }
    #Linkas,#Linkss{
        margin-right: 0px;
        margin-left: 40%;
        margin-top: -60px;
    }
    #section7{
        height: 400px;
    }
    ul.countdown{
        margin-top: -80px;
    }
    #tabf{
        padding-left: 40px;
    }
}
@media (max-width:600px){
    #btns{
        margin: auto;
        padding:0px;
        font-size:40px;
    }
    #btnsp{
        margin-left:20px;
        font-size:10px;
        margin-left: -10%;
    }
    #Section2{
        height:750px;
        padding-top:0;
    }
    .back{
        margin-left:-20px;
        width: 120%;
    }
    #Incendiosss{
        width:45%;
    }
     #section7{
        height: 1000px;
    }
    ul.countdown{
        position: relative;
        margin-top:40px;
    }
    #Incendiosss,#Incendios,#Incendiosd,#Incendios1{
        margin-left:35%;
        margin-right: 0px;
        width:35%;
        margin-top:20px;
    }
    #imf,#ilf,#imf1{
        margin-top: -0px;
        margin-left: 35%;
        width:30%;
    }
    #st,#sts{
        font-size: 14px;
        margin-left:0px;
        margin-top:30px;
        box-sizing: border-box;
    }
    #Linkas,#Linkss{
        margin-right: 0px;
        margin-left: 30%;
        margin-top: -60px;
    }
    .corp{
        margin-top:50px;
    }
}
