*{
  margin: 0px;
  padding: 0px;
}

/*Font*/
@font-face{
   font-family: STI;
   src: url(../font/South_Signature.otf);
}
/*Font*/

/*MOVEN*/
.izquierda {
	visibility:hidden;
}

.izquierd {
    animation-name: izquierd;
    -webkit-animation-name: izquierd;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    visibility: visible;
  }

@keyframes izquierd {
    0% {
      opacity: 0;
      transform: translateX(-70%);
    }
    100% {
      opacity: 1;
      transform: translateX(0%);
    }
  }
  @-webkit-keyframes izquierd {
    0% {
      opacity: 0;
      -webkit-transform: translateX(-70%);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateX(0%);
    }
  }


  .derecha {
  	visibility:hidden;
  }

  .derech {
      animation-name: derech;
      -webkit-animation-name: derech;
      animation-duration: 1s;
      -webkit-animation-duration: 1s;
      visibility: visible;
    }

  @keyframes derech {
      0% {
        opacity: 0;
        transform: translateX(70%);
      }
      100% {
        opacity: 1;
        transform: translateX(0%);
      }
    }
    @-webkit-keyframes derech {
      0% {
        opacity: 0;
        -webkit-transform: translateX(70%);
      }
      100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
      }
    }


    .abajo {
      visibility:hidden;
    }

    .abaj {
        animation-name: abaj;
        -webkit-animation-name: abaj;
        animation-duration: 1s;
        -webkit-animation-duration: 1s;
        visibility: visible;
      }

    @keyframes abaj {
        0% {
          opacity: 0;
          transform: translateY(70%);
        }
        100% {
          opacity: 1;
          transform: translateY(0%);
        }
      }
      @-webkit-keyframes abaj {
        0% {
          opacity: 0;
          -webkit-transform: translateY(70%);
        }
        100% {
          opacity: 1;
          -webkit-transform: translateY(0%);
        }
      }
/*MOVEN*/


/*TRANSITION*/
html {
  scroll-behavior: smooth;
	cursor:context-menu;
	}
/*TRANSITION*/

body{
	padding:0;
	margin:0;
  background: rgba(248, 249, 249, 1.0);
	position:relative;
	}

  h1,h2,h3,h4,h5,h6{
    	margin:0;
      font-family:inherit;
	 }

  p{
    margin: 0;
    font-size: 19px;
    line-height: 1em;
    letter-spacing: 1px;
   }

/*================MENU=====================*/
nav {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100px;
  padding: 10px 100px;
  box-sizing: border-box;
  transition: .5s;
	z-index: 20;
  background: rgba(0, 0, 0, 0.5);
}


#title{
	color: rgba(255, 255, 255, 1);
	list-style: none;
	font-size: 25px;
	}


/*Effect*/

nav.black{
  background: rgba(0, 0, 0, 1.0);
  height: 80px;
  padding: 10px 50px;
}

nav.black .logo img {
  margin-top: 5px;
  height: 50px;
}

nav.black ul li a{
      color: rgba(255, 255, 255, 1.0);
      line-height: 60px;
}

nav.black .dropdown-content a {
    line-height: 20px;
}
/*Effect*/

nav .logo{
  float: left;
}

nav .logo img {
  height: 70px;
  transition: .5s;
}

nav ul {
  float: right;;
  margin: 0px;
  padding: 0px;
  display: flex;
}

nav ul li {
  list-style: none;
}

nav ul li a {
  line-height: 90px;
  color: rgba(255, 255, 255, 1.0);
  margin-left: 10px;
  padding:  8px 17px;
  text-decoration: none;
  transition: .5s;
	font-size: 15px;
}

nav ul li a.active,
nav ul li a:hover{
  text-decoration: none;
   color: rgba(255, 255, 255, 1.0);
   border-bottom: 2px solid rgba(39, 174, 96,1.0);
}

/*Drop*/
.dropdown-content {
  display: none;
  position: absolute;
  background: rgba(0,0,0,1.0);
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 21;
}

.dropdown-content a {
  color: rgba(255,255,255,1.0);
  text-decoration: none;
  display: block;
  text-align: left;
  line-height: 25px;
}

.dropdown-content a:hover {
  background-color: rgba(0, 0, 0, 0.0);
}

/* click Drop*/
.dropdown:hover .dropdown-content {
   display: block;
  }
/*Drop*/

/*resposive menu*/
.responsive_bar{
  display: none;
}
 @media (max-width: 1100px){
   .responsive_bar{
     display: block;
     width: 100%;
     height: 60px;
     background: rgba(0, 0, 0, 1.0);
     position: fixed;
     top: 0px;
     left: 0px;
     padding: 5px 20px;
     box-sizing: border-box;
     z-index: 21;
   }

   .responsive_bar .logo img {
      float: left;
      height: 40px;
      margin-top: 5px;
   }

   .responsive_bar .menu h4 {
     float: right;
     color: rgba(255, 255, 255, 1.0);
     margin: 0px;
     padding: 0px;
     line-height: 50px;
     cursor: pointer;
   }

   nav {
     height: 50px;
   }

   nav.black{
     background: rgba(0, 0, 0, 1.0);
     height: 50px;
     padding: 0px;
   }

   nav .logo{
     display: none;
   }

   nav ul {
       position: absolute;
       width: 100%;
       top: 60px;
       left: 0px;
       background: rgba(0, 0, 0, 1.0);
       float: none;
       display: none;
   }

   nav ul.active{
     display: block;
   }

   nav ul li {
     width: 100%;
   }

   nav ul li a {
     display: block;
     padding: 0px;
     width: 100%;
     text-align: center;
     line-height:  30px !important;
     color: rgba(255, 255, 255, 1.0);
   }

   .dropdown-content {
       min-width: 100%;
       }

   .dropdown-content a {
      text-align: center;
     }

     .dropdown.listo {
        display: block;
       }
}

/*=======================MENU/*=======================

/*=======================STYLE CAROUSEL=============================*/
  .carousel {
    margin-bottom: 0rem;
    }

/*.video{
    width: 100%;
    height: 200px;
}*/

  .carousel-caption {
    top: 35%;
    bottom: 11rem;
    z-index: 10;
  	color: rgba(255, 255, 255, 1.0);
  }

  #color1 {
    color: rgba(255, 255, 255, 1.0);
  	font-size: 1.5vw;
  	font-family:;
      	}

        #color2 {
          color: rgba(255, 255, 255, 1.0);
        	font-size: 1.5vw;
        	font-family:;
            	}

              #color3 {
                color: rgba(255, 255, 255, 1.0);
              	font-size: 1.5vw;
              	font-family:;
                  	}

    #color-one{
      color: rgba(255, 255, 255, 1.0);
      font-family:inherit;
      font-size: 70px;
    }

    .button{
      border: 1px solid rgba(255, 255, 255, 1.0);
      padding: 10px;
    }

  .carousel-item {
    height: 40rem;

  }

  .carousel-item > img {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    height: 40rem;
  	/*-webkit-filter: grayscale(100%);
    filter: grayscale(100%);*/
  }


  @media all and (max-width : 830px) {
  	#color1 {
  	  	font-size:10px;
  		}

      #color2 {
    	  	font-size:10px;
    		}

        #color3 {
      	  	font-size:10px;
      		}

          #color-one{
            font-size: 45px;
          }

			.carousel-caption {
				top: 20%;
			}

      .carousel-item{
        height: 350px;
      }
  }

  /*ASPEL*/
@media all and (max-width : 2000px) {
  #aspel{
    margin-top: -5%;
    width: 68%;
    height: 320px;
  }
    }

@media all and (max-width : 1400px) {
  #aspel{
    margin-top: -9%;
    width: 68%;
    height: 250px;
  }
    }

  @media all and (max-width : 830px) {
     #aspel{
        width: 80%;
       height: 100px;
       margin-top: 18%;
     }

     #color1 {
     margin-top: 0px;
     font-size: 10px;
   	     	}
  }
  /*ASPEL*/


  /*STI y Aspel*/
   #color2 {
  margin-top: 30px;
       }

@media all and (max-width : 2000px) {
  #aspelSTI{
    margin-top: -9%;
    width: 65%;
    height: 370px;
  }
    }

@media all and (max-width : 1400px) {
  #aspelSTI{
    margin-top: -9%;
    width: 68%;
    height: 300px;
  }
    }

  @media all and (max-width : 830px) {
     #aspelSTI{
       width: 100%;
       height: 170px;
       margin-top: 2%;
     }

     #color2 {
     margin-top: 10px;
   	     	}
  }
  /*STI y Aspel*/




  /*Aspel LOGO*/
#btn_Banner{
       margin-top: 20px;
      font-weight: bold;
     }

 @media all and (max-width : 2000px) {
  #aspelLOGO{
    margin-top: -5%;
    width: 68%;
    height: 320px;
  }
    }

@media all and (max-width : 1400px) {
  #aspelLOGO{
    margin-top: -9%;
    width: 68%;
    height: 250px;
  }
    }


  @media all and (max-width : 830px) {
     #aspelLOGO{
       width: 80%;
       height: 100px;
       margin-top: 10%;
     }

     #btn_Banner{
       font-size: 10px;
     }

  }
  /*Aspel LOGO*/
  /*=========STYLE CAROUSEL/==========*/



  	/*=========Section1==========*/
    #Servicios{
      width: 100%;
      height: 50px;
      background:rgba(208, 211, 212,1.0);
      border: 0px solid rgba(0, 0, 0, 1.0);
    }

    .info-text {
         outline: none;
  	    width: 100%;
        height: 200px;
  	    border: none;
  	    background: none;
  	    letter-spacing: 1px;
  			background:rgba(208, 211, 212,1.0);
        border: 0px solid rgba(0, 0, 0, 1.0);
        text-align: center;
        font-size: 16px;
      letter-spacing: .1px;
      line-height: 20px;
  		}


  	.info-text p {
  	    text-align: center;
  	}

  	.info-text h3 {
        margin-top: 40px;
  	    text-align: center;

  	}

    .text-center{
      color: #666;
      font-family:inherit;
      text-align: center;
    }

  	#coloinfo{
  	  color: #666;
  	}

    @media (max-width: 600px){
      .py-lg{
        text-align: center;
        margin-top:0px;
        margin-left: 0px;
      }
    }
  	/*=========Section1==========*/


    /*=========Section2==========*/
    #section2{
      margin-top: 5%;
    }

    .cards{
      width: 100%;
      height: 250px;
    }

    .btn-outline-success{
      border-radius: 20px;
    }

    .card__body{
      height: 270px;
    }

    .card__body h5 {
      text-align: justify;
      padding: 15px;
      font-size: 18px;
      color: #222;
      letter-spacing: 1px;
      text-transform:none;
      font-family: inherit;
      font-weight: bold;
    }

    .card__body p {
      text-align: justify;
      font-size: 15px;
      letter-spacing: .1px;
      line-height: 20px;
      color: #666;
      padding-top: 0px;
      padding-left: 18px;
      padding-right: 18px;
      font-family: inherit;
    }

    .card__body span {
      margin: 5px;
    }

    @media (max-width: 1000px){

      .card__body{
        height: 270px;
      }

    }

    @media(max-width: 750px){

      #margin_section2{
        margin-top: 10%;
      }

      .card__body{
        height: 220px;
      }

    }
    /*=========Section2==========*/



    /*=========Banner Producto==========*/
     #Productos {
     width: 100%;
        height: 60px;
         margin-top: 50px;
     }

  .banner_one{
    background-image: url(../img/Fondo/22.jpg);
    width: 100%;
    height: 200px;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
    margin-top: 0px;
    }

  .banner_one div {
    background: rgba(121, 125, 127, 0.7);
    font-size: 35px;
    height: 100%;
    width: 100%;
    padding: 3%;
    color: rgba(255, 255, 255, 1.0);
  }

   .contenedor_banner h3 {
       margin: 60px;
       color: rgba(255,255,255,1.0);
       font-weight:bold;
    }

 .contenedor_banner p {
     color: rgba(255,255,255,1.0);
     }

    .contenedor_banner hr {
     background: rgba(255,255,255,1.0);
   }

@media screen and (max-width: 550px) {
   .banner_one {
        height: 200px;
    }
}

    /*=========Banner Producto==========*/


    /*=================TAB==================*/
    .tabset{
     margin-top: 20px;
     }

    .tabset > input[type="radio"] {
    position: absolute;
    left: -200vw;
    }

    .tabset .tab-panel {
    display: none;
    }

    .tabset > input:first-child:checked ~ .tab-panels > .tab-panel:first-child,
    .tabset > input:nth-child(3):checked ~ .tab-panels > .tab-panel:nth-child(2),
    .tabset > input:nth-child(5):checked ~ .tab-panels > .tab-panel:nth-child(3),
    .tabset > input:nth-child(7):checked ~ .tab-panels > .tab-panel:nth-child(4),
    .tabset > input:nth-child(9):checked ~ .tab-panels > .tab-panel:nth-child(5),
    .tabset > input:nth-child(11):checked ~ .tab-panels > .tab-panel:nth-child(6),
    .tabset > input:nth-child(13):checked ~ .tab-panels > .tab-panel:nth-child(7){
    display: block;
    }

    .tabset > label {
    position: relative;
    display: inline-block;
    padding: 15px 45px 20px;/*45 padding entre titulos*/
    border: 0px solid transparent;
    border-bottom: 0;
    cursor: pointer;
    font-weight: 400;
    line-height: 19px;
    color: #666;

    }

    .tabset > label::after {
    content: "";
    position: absolute;
    left: 20px;
    bottom: 19px;
    width: 180px;/*tamaño de linea de titulo*/
    height: 2px;
    background: #8d8d8d;
    }

    .tabset > label:hover,
    .tabset > input:focus + label {
    color: #06c;
    }

    .tabset > label:hover::after,
    .tabset > input:focus + label::after,
    .tabset > input:checked + label::after {
    background: rgba(39, 174, 96,1.0);
    }

    .tabset > input:checked + label {
    border-color: #ccc;
    border-bottom: 0px solid #fff;
    margin-bottom: 7px;/*tamaño de linea generl de los titulo*/
    }

    .tab-panel {
    padding: 30px 0;
    border-top: 1px solid #ccc;
    margin-top: -20px;
      }

    .tabset {
    max-width: 65em;
    border: 0px solid rgba(0, 0, 0, 1.0);
    }
    /*=================TAB==================*/


    /*=========Tarjeta Giratoria==========*/
     #col{
          border: 0px solid rgba(17, 122, 101, 1.0);
          margin: 15px;
       }

       #swivel_card{
           border: 0px solid rgba(125, 60, 152, 1.0);
       }

    .swivel-card {
      border: 0px solid rgba(0, 0, 0, 1.0);
      background-color: transparent;
      width: 240px;
      height: 340px;
      perspective: 1000px;
      margin: auto;
    }

    .swivel-card-inner {
      margin: 0px;
      position: relative;
      width: 100%;
      height: 100%;
      text-align: center;
      transition: transform 0.6s;
      transform-style: preserve-3d;
      box-shadow: 0 16px 32px 0 rgba(0,0,0,0.4);
      border-radius: 10px;
      }

    .swivel-card:hover .swivel-card-inner {
      transform: rotateY(180deg);
    }

    .swivel-card-front, .swivel-card-back {
      position: absolute;
      width: 100%;
      height: 100%;
      backface-visibility: hidden;
    }

    .swivel-card-front {
      /*background-color: rgba(171, 235, 198, 1.0);*/
      font-size: 15px;
      letter-spacing: .5px;
      line-height: 28px;
      color: #666;
      border: 0px solid rgba(125, 60, 152, 1.0);
      border-radius: 10px;
      border-left: 2px solid rgba(25, 111, 61, 1.0);
      font-family: inherit;
    }

    .swivel-card-front img {
      margin-top: 7px;
    }

    .swivel-card-front p {
      margin: 15px;

    }

    .swivel-card-back {
      background-color: rgba(44, 62, 80, 1.0);
      font-size: 15px;
      letter-spacing: .5px;
      line-height: 28px;
      color: rgba(255,255,255,1.0);
      transform: rotateY(180deg);
      border-radius: 10px;
      border-right:2px solid rgba(25, 111, 61, 1.0);
    }

    .swivel-card-back span {
      color: rgba(255, 45, 0, 1.0);
      font-size: 15px;
    }

    .swivel-card-back p {
      margin: 15px;
      font-family: inherit;
      font-size: 12px;
      text-align: left;
    }

    .swivel-card-back h5 {
      margin-top: 30px;
      color: rgba(255,255,255,1.0);
    }

    .swivel-card-back a{
      text-decoration: none;
      color: rgba(255, 255, 255, 1.0);
    }

    .swivel-card-back a:hover{
      color: rgba(255, 255, 255, 1.0)
    }
  /*=========Tarjeta Giratoria==========*/


  /*===============Banner Contact===============*/
  #Contacto{
  width: 100%;
  height: 55px;
  }

  .banner_four{
    background-image: url(../img/SectionImages/contacto.jpg);
    width: 100%;
    height: 200px;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
    margin-top:0px;
    }

  .banner_four div {
    background: rgba(121, 125, 127, 0.7);
    font-size: 35px;
    height: 100%;
    padding: 3%;
    color: rgba(255, 255, 255, 1.0);
  }

  .contactbanner{
    width: 100px;
    height:100px;
  }
  /*===============Banner Contact===============*/


  /*===============CONTACT===============*/
      #myVideo{
        width: 100%;
        border-radius: 10px;
        border-left: 3px solid rgba(23, 165, 137,1.0);
        box-shadow: 7px 7px 20px 0 rgba(0, 0, 0, 0.5);
      }

      .contact{
      margin-top: 0px;
      }

      .col-lg-6{
        border: 1px solid rgba(0, 0, 0, 1.0);
      }

    .contact-left span {
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 2px;
        color: #03A9F4;
        font-size: 16px;
        padding-left: 10px;
    }

    .contact-left h3 {
      text-align:left;
      font-size: 18px;
      color: #222;
      letter-spacing: 1px;
      text-transform: capitalize;
      font-family: inherit;
      font-weight: bold;
    }

    .text_icon p{
      margin-top: 15px;
      text-align:left;
      font-size: 15px;
      letter-spacing: .1px;
      line-height: 20px;
      color: #666;
      font-family: inherit;
    }

    .contact select{
    width: 100%;
    margin-bottom: 15px;
    padding: 5px 10px;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    color: #777;
    }

    .contact input[type="text"], .contact input[type="email"],.contact input[type="tel"],.contact textarea {
        display: block;
        width: 100%;
        margin-bottom: 15px;
        padding: 12px 20px;
        outline: none;
        font-size: 16px;
        font-weight: 400;
        color: #777;
        background-color: transparent;
        background-image: none;
        letter-spacing: 1px;
        -webkit-appearance: none;
        transition: .3s ease-in-out;
        border: 1px solid rgba(0,0,0,1.0);
        border-radius: 7px;
        border-left: 2px solid rgba(30, 132, 73,1.0);
        border-bottom:  1px solid rgba(30, 132, 73,1.0);
    }
    .contact textarea {
        height: 120px;
    }

    .contact button.btn {
        background: rgba(35, 155, 86,1.0);
        font-size: 17px;
        display: inline-block;
        color: #fff;
        border: none;
        padding: 12px 40px;
        letter-spacing: 2px;
        margin-top: 0px;
        cursor: pointer;
        border-radius: 4px;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        -ms-border-radius: 4px;
        -o-border-radius: 4px;
    }


    .contact-info{
      margin-top: 5px;
    }

    .map iframe {
        min-height: 22em;
        border: none;
        background: #e8eaec;
        padding: 0.4em;
        width: 100%;
        height: 300px;
        box-shadow: 7px 7px 20px 0 rgba(0, 0, 0, 0.5);
    }


    @media screen and (max-width: 991px) {
      .map {
            margin-bottom: 1em;
        }

    }

    @media(max-width:1000px) {
      .contact-info{
        margin-top: 0px;
      }
    }

    @media(max-width:414px) {
    	.contact input[type="text"], .contact input[type="email"], .contact select, .contact textarea {
    		font-size: 14px;
    	}
    	.contact button.btn {
    		font-size: 16px;
    		padding: 10px 35px;
    		letter-spacing: 1px;
    	}
      .contact-info, p{
        font-size: 0.9em;
      }

      .about-text{
        margin-left:0px;
      }
    }

    #contact_icon{
    	width: 30px;
    	height: 30px;
    	box-shadow: 0px 0px 0px 0 rgba(0, 0, 0, 0);
      margin: 5px;
    }
    /*=========CONTACT/==========*/



  /*==================Footer One===================*/

  .footer {
    clear: both;
      background: rgba(236, 240, 241,1.0);
      margin-top: -7px;
      border: 0px solid rgba(0, 0, 0, 1.0);
  }

  .logo_footer{
    width: 65%;
    height: 130px;
    margin: 5px;
    margin-left: 1px;
  }
  /*
  .footer-grids:nth-child(2) {
      border-left: 1px solid #404040;
      border-right: 1px solid #404040;
  }
  */
  .footer-section {
  	border: 0px solid rgba(0, 0, 0, 1.0);
  }

  .footer-section a {
  	padding: 0;
  }

  .footer-section p {
    line-height: 20px;
  	font-size: 13px;
    letter-spacing: .5px;
    color: #666;
   }

   #color_footer{
     color: rgba(0, 0, 0, 1.0);
   }

   .margin{
     margin-top: 1px;
   }

   .margin img{
     width: 30px;
     height: 30px;
     margin-top: 7px;
   }

   #h6 h6{
     color: rgba(0, 0, 0, 1.0);
   }

   @media screen and (max-width: 991px) {
     .logo_footer{
       width: 45%;
       height: 120px;
       }
   }

   @media screen and (max-width: 330px) {
     .logo_footer{
       width: 80%;
       height: 120px;
       }
   }
  /*==================Footer One===================*/

  /*===================Footer Two=================*/
  footer{
    clear: both;
    background: rgba(208, 211, 212,1.0);
    border: 0px solid rgba(0, 0, 0, 1.0);

  }

  .sti{
  width: 30px;
  height: 30px;
  }

  h2.logo_STI a {
      font-size: .9em;
      padding: 0;
      margin: 0;
      text-transform: capitalize;
      letter-spacing: 1px;
      position: relative;
      font-weight: 100;
      text-decoration: none;
    }

  .left{
    text-align: left;
  }
  .footer_copy{
    text-align: center;
  }

  footer p a{
    line-height: 1px;
    font-size: 13px;
    letter-spacing: .5px;
    }

  footer p a:hover{
    line-height: 1px;
  	font-size: 13px;
    letter-spacing: .5px;
    color: rgba(29, 131, 72,1.0);
  }

  #copy{
    line-height: 1px;
    font-size: 13px;
    letter-spacing: .5px;
    color: #666;
    font-family: STI;
      font-weight: bold;
  }

  @media screen and (max-width: 330px) {
    #copy{
      display: none;
    }

    .footer_copy h2 {
    font-size: 25px;
    }

  }
  /*===================Footer Two=================*/

  /*===================Home=================*/
          .fa-chevron-circle-up{
        			position:fixed;
              left: 90%;
        			top:500px;
        			z-index:3000;
              font-size: 35px;
             color: #666;
            }

            @media screen and (max-width: 550px) {
              .fa-chevron-circle-up{
              			left:85%;
              			  }
            }



     #contingencia img {
              position:fixed;
              left: 3%;
        	  top:440px;
              z-index:3000;
              font-size: 35px;
              width: 60px;
              height: 60px;
            }

#contingencia img{
	-webkit-transform: scale(1,1);
	-webkit-transition-timing-function:ease-out;
	-webkit-transition-duration:1800ms;
	-moz-transform:scale(1,1);
	-moz-transition-timing-function:ease-out;
	-moz-transition-duration:950ms;
}

#contingencia img:hover{
	-webkit-transform: scale(1.3,1.3);
	-webkit-transition-timing-function:ease-out;
	-webkit-transition-duration:1800ms;
	-moz-transform: scale(1.3,1.3);
	-moz-transition-timing-function:ease-out;
	-moz-transition-duration:800ms;

	}
          #contingencia #important {
              position:fixed;
              left: 3%;
        	    top:500px;
              z-index:3000;
              font-weight: bold;
              font-size: 18px;
              color: rgba(255, 24, 0, 1.0);
              /*box-shadow: 0 16px 32px 0 rgba(87, 35, 100, 1.0);*/
              }

              #contingencia #Home {
                  position:fixed;
                  left: 3%;
            	    top:520px;
                  z-index:3000;
                  font-weight: bold;
                  font-size: 18px;
                  color: rgba(255, 24, 0, 1.0);
                  /*box-shadow: 0 16px 32px 0 rgba(87, 35, 100, 1.0);*/
                  }


            @media screen and (max-width: 550px) {
              #contingencia {
              			left:8%;
              			  }
            }

  /*===================Home=================*/


/*========
  nav.black ul a{
        color: rgba(255, 255, 255, 1.0);
        line-height: 45px;
  }

  nav ul a {
    line-height: 90px;
    color: rgba(255, 255, 255, 1.0);
    margin-left: 10px;
    padding:  8px 17px;
    text-decoration: none;
    transition: .5s;
  	font-size: 15px;
  }

    nav ul a:hover{
    text-decoration: none;
     color: rgba(255, 255, 255, 1.0);
     border-bottom: 2px solid rgba(39, 174, 96,1.0);
      }

 @media (max-width: 1100px){

      nav ul a {
        display: block;
        padding: 0px;
        width: 100%;
        text-align: center;
        line-height:  30px !important;
        color: rgba(255, 255, 255, 1.0);
      }
  }

  =======*/

/*=====Anuncio=====*/
.modal{
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  position:fixed;
  top: 0;
  left: 0;
  display: flex;

  animation: modal 1s 2s forwards;
  visibility: hidden;
  opacity: 0px;
}

.contenido{
  margin: auto;
  width: 60%;
  height: 60%;
  text-align: center;
  color: rgba(255, 255, 255, 1.5);
  background: rgba(87, 35, 100, 1.0);
  border-radius: 10px;
}

.contenido h3 {
  margin: 5px;
   font-size: 2vw;
   font-weight:bold;
}

.contenido a {
  text-decoration: none;
  color: rgba(255, 24, 0, 1.0);
}

.contenido a:hover {
  text-decoration: none;
  color: rgba(255, 255, 255, 1.0);
}

@media (max-width: 700px){
  .contenido h3{
  font-size: 3.2vw;
     }

    .contenido{
     margin-top: auto;
     width: 60%;
     height: 30%;
    }
}


#close{
  display: none;
}

#close + label {
  position: fixed;
  color: rgba(255, 255, 255, 1.0);
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  z-index: 3000;
  background: rgba(255, 24, 0, 1.0);
  height: 30px;
  width: 30px;
  line-height: 28px;
  border-radius: 50%;
  right: 30px;
  top: 30px;
  cursor: pointer;
  animation: modal 1s 2s forwards;
  visibility: hidden;
  opacity: 0px;
}

#close:checked + label, #close:checked ~ .modal {
  display: none;
}

#home_office{
  width: 70%;
  height: 75%;
  margin: auto;
}

@keyframes modal {
  100% {
    visibility: visible;
    opacity: 1;
  }
}
/*=====Anuncio=====*/
