* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
  .Salir{
	font-size: 20px;
	text-decoration: none;
	font-weight: bold;
    color: rgba(255, 255, 255, 0.891);
   padding: px;
}
  
  .container {
    max-width: 90%;
    margin: auto;
  }
  
  li {
    list-style: none;
  }
  
  a {
    text-decoration: none;
    transition: 0.5s;
  }
  
  .flex {
    display: flex;
  }
  
  .flex1 {
    display: flex;
    justify-content: space-between;
  }

  .flex1 .scoial a {
    padding: 10px;
    color: #08016e;
    background-color: hwb(210 85% 14% / 0.521);
    margin-right: 35px;
    border-radius: 65%;
  }
  
  /*-------------head--------- */
  .head {
    height: 10vh;
    line-height: 10vh;
  }
  
  .head i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    line-height: 30px;
    background: #FAF3E7;
    text-align: center;
    color: #08016e;
  }
  
  .head img {
    margin-top: 10px;
  }
  
  /*-------------head--------- */
  /*-------------header--------- */
  header {
    background: #00182b;
    padding: 15px 0 15px 0;
    color: white;
  }
  
  .navbar {
    display: flex;
    align-items: center;
  }
  
  .hamburger {
    display: none;
  }
  
  .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.5s ease-in-out;
    background: white;
  }
  
  .nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  header ul {
    padding: 0 20px 0 0;
  }
  
  header li {
    margin-right: 30px;
  }
  
  header ul li a {
    font-size: 15px;
    color: white;
    text-transform: uppercase;
    font-weight: 500;
    transition: 0.5s;
  }
  
  header ul li a:hover {
    color: #000;
  }
  
  header .head_contact {
    position: relative;
  }
  
  header .head_contact i {
    position: absolute;
    top: -29px;
    left: -70%;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    background: white;
    color: #08016e;
    border-radius: 50%;
    transform: rotate(-45deg);
    border: 5px solid #ECE3D2;
    font-size: 30px;
  }
  
  header .sticky_logo {
    display: none;
  }
  
  header.sticky .sticky_logo {
    display: block;
    width: 50px;
    height: 50px;
    margin-top: -10px;
  }
  
  header.sticky {
    z-index: 9999;
    position: fixed;
    width: 100%;
    background: #313538;
    transition: 0.5s;
    height: 12vh;
    transition: 0.5s;
    top: 0;
    padding: 30px 0 0 0;
  }
  
  header.sticky ul li a {
    color: white;
  }
  
  @media only screen and (max-width:1000px) {
  
    /*------------head------------*/
    .header .head_contact,
    .logo {
      display: none;
    }
  
    /*------------head------------*/
    header.sticky {
      height: 8vh;
    }
  
    header.sticky .nav-menu {
      background: #313538;
    }
  
    .navbar {
      height: 5vh;
      justify-content: space-between;
    }
  
    .nav-menu {
      position: fixed;
      left: -100%;
      top: 11rem;
      flex-direction: column;
      background:#313538;
      width: 100%;
      border-radius: 10px;
      text-align: center;
      transition: 0.3s;
      z-index: 99;
    }
  
    header.sticky .nav-menu {
      top: 5rem;
    }
  
    header ul li a {
      color: white;
    }
  
    .nav-menu.active {
      left: 0;
    }
  
    header li {
      margin: 2.5rem 0;
    }
  
    .hamburger {
      display: block;
      cursor: pointer;
    }
  
    .hamburger.active .bar:nth-child(2) {
      opacity: 0;
    }
  
    .hamburger.active .bar:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }
  
    .hamburger.active .bar:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }
  }
  
  /*------------home------------*/
  .grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 30px;
  }
  
  .home {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5)), url("coexel.jpg");
    height: 100vh;
    background-color: rgba(0,0,0,0.6);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
  }
  .home .container{
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 200px;
  }
  .home .container h1{
   display: flex;
   font-family: Roboto;
   font-size: 60px;
   margin-right: 600px;
  }
  .lista{
   margin-left: 260px;
   font-size: 60px;
   font-family: Roboto;
  
  }
  @keyframes roll{
   0%{
     opacity: 0;
     transform: translate3d(0, -70%, 0);
   }
   2.5%, 25%{
     opacity: 1;
     transform: translateZ(0);
   }
   27.5%, 100%{
     opacity: 0;
     transform: translate3d(0, 70%, 0);
   }
  }
  .lista{
   position: absolute;
   animation: roll 6s ease 1s infinite backwards;
  }
  .lista:nth-child(1){
   animation-delay: 0s;
   opacity: 0;
  }
  .lista:nth-child(2){
   animation-delay: 3s;
   opacity: 0;
  }
  
  .home .content {
    text-align: left;
    color: black;
    margin-top: 7%;
  }
  
  .home .box {
    background: white;
    padding: 30px;
  }
  
  .home input {
    margin-top: 10px;
  }
  
  input {
    border: none;
    outline: none;
  }
  
  button {
    background: #CC8C18;
    color: white;
    padding: 10px 20px;
    outline: none;
    border: none;
    border-radius: 30px;
  }
  
  button i {
    margin-left: 20px;
    font-size: 25px;
  }
  
  button span {
    margin-top: 5px;
  }


  
  /*------------home------------*/
  /*------------about------------*/
  .top {
    margin-top: 80px;
  }
  
  .mtop {
    margin-top: 40px;
  }
  
  .heading {
    text-align: center;
  }
  
  .heading h5 {
    font-weight: 500;
    letter-spacing: 5px;
    color: #ad0909d2;
    padding-top: 20px;
    font-size: 18px;
    font-weight: bold;
  }
  
  .heading h2 {
    color: #24416B;
    font-size: 45px;
    font-family: serif;
    font-weight: bold;
    margin: 10px 0 20px 0;
  }
  
  .left, .right {
    width: 50%;
  }
  
  h3 {
    font-size: 35px;
    font-family: serif;
    color: #24416B;
    margin-bottom: 20px;
  }
  
  .about .left {
    padding: 20px;
  }
  
  p {
    line-height: 30px;
    color: #080808;
    margin-bottom: 20px;
    font-size: 20px;
  }
  
  .about {
    position: relative;
    padding-bottom: 70px;
  }
  
  .about .right {
    position: relative;
  }
  
  .about .right::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background:#073c9e;
    width: 92%;
    height: 61vh;
    z-index: -1;
    margin: 50px;
  }
  
  .about::after {
    content: '';
    position: absolute;
    top: -5%;
    left: 0;
    background-image: url("../image/line1.png");
    background-size: cover;
    background-repeat: no-repeat;
    height: 50px;
    width: 100%;
  }
  
  .about::before {
    content: '';
    position: absolute;
    bottom: -5%;
    left: 0;
    background-image: url("../image/line2.png");
    background-size: cover;
    background-repeat: no-repeat;
    height: 50px;
    width: 100%;
  }
  
  /*------------about------------*/
  
  /*------------wrapper2------------*/
  .wrapper2 {
    position: relative;
    text-align: center;
  }
  
  .wrapper2 .grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .wrapper2 .box {
    box-shadow: 0 0 20px 3px rgb(0 0 0 / 5%);
    padding: 10px;
    transition: 0.5s;
  }
  
  .wrapper2 i {
    margin: 10px 0 15px 0;
    color: #CC8C18;
    font-size: 30px;
  }
  
  .wrapper2 h3 {
    font-size: 20px;
  }
  
  .wrapper2 span {
    padding: 10px;
    background: #F5E8D1;
    color: #CC8C18;
    border-radius: 50%;
  }
  
  .wrapper2 .box:hover {
    background: #08016e;
    cursor: pointer;
  }
  
  .wrapper2 .box:hover span {
    background: #ffffff;
  }
  
  .wrapper2 .box:hover p,
  .wrapper2 .box:hover h3,
  .wrapper2 .box:hover i {
    color: white;
  }
  
  
  
  /*------------wrapper2------------*/
  /*------------room------------*/
  .room {
    margin-bottom: 50px;
    position: relative;
  }
  
  .grid2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
  }
  
  .room img {
    width: 100%;
    height: 100%;
    margin-left: 20px;
  }
  
  .room h3 {
    margin: 0;
    padding: 0;
  }
  
  /*------------room------------*/
  
  /*------------offer------------*/
  .offer img {
    width: 100%;
    height: 100%;
  }
  
  .offer .right {
    padding: 20px;
    margin: 20px;
    box-shadow: 0 0 20px 3px rgb(0 0 0 / 5%);
  }
  
  .offer .content h4 {
    font-size: 20px;
    color: #627795;
    font-family: serif;
  }
  
  .offer .rate i {
    font-size: 13px;
    color: #CC8C18;
    margin: 10px 10px 20px 0;
  }
  
  .offer .content h5 {
    color: #627795;
    margin-bottom: 10px;
  }
  
  .offer .box {
    transition: 0.5s;
  }
  
  .offer .box:hover {
    transform: translateY(-10px);
  } */
  
  /*------------offer------------*/
  /*------------area------------*/
  .area img {
    margin: 0px 0 20px 80px;
  }
  
  .area ul li {
    display: inline-block;
    font-weight: 500;
    color: #5c646e;
    margin-right: 20px;
    margin-bottom: 20px;
  }
  
  .area .left {
    position: relative;
  }
  
 
  
  /*------------area------------*/
  /*------------offer2------------*/
  .offer2 .heading {
    padding-top: 10%;
    text-align: center;
  }
  
  .offer2 .heading h3 {
    color: white;
  }
  
  
  .offer2.timer {
    padding-top: 0%;
  }
  
  .offer2.wrapper .container {
    max-width: 85%;
    margin: auto;
  }
  
  .offer2 .box {
    background: white;
    padding: 30px;
    text-align: left;
    transition: 0.5s;
  }
  
  .offer2 .box:hover {
    transform: translateY(-10px);
    cursor: pointer;
  }
  
  .offer2 .box h5 {
    color: #CC8C18;
    text-align: left;
    font-weight: 400;
    list-style: 5px;
    word-spacing: 10px;
  }
  
  .offer2 .box h3 {
    font-size: 20px;
    margin: 10px 0 10px 0;
  }
  
  .offer2 label {
    color: #CC8C18;
  }
  
  .offer2 .grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .offer2 .flex i {
    margin: 0 20px 20px 0;
    font-weight: 400;
    color: #5c646e;
  }
  
  /*------------offer2------------*/
  /*------------customer------------*/
  .customer .mtop {
    padding: 30px;
    max-width: 60%;
    margin: auto;
    text-align: center;
    box-shadow: 0 0 20px 3px rgb(0 0 0 / 5%);
  }
  
  .customer i {
    color: #CC8C18;
    font-size: 13px;
  }
  
  .customer .item h3 {
    font-size: 20px;
  }
  
  .customer img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
  }
  
  .customer .admin {
    justify-content: center;
  }
  
  .customer .admin h3 {
    margin: 0;
  }
  
  .customer .text {
    margin: 10px;
  }
  
  .customer span {
    opacity: 0.7;
  }
  
  /*------------customer------------*/
  /*------------gallary------------*/
  .galeria{
    margin-top: 150px;
    width: 100%;
    height: 600px;
    overflow: hidden;
  }
  .galeria ul{
    display: flex;
    animation: cambio 15s infinite alternate linear;
    width: 400%;
  
  }
  .galeria li{
    width: 400px;
    list-style: none;
  }
  .galeria img{
    width: 100%;
    height: 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: -250%;}
    100%{margin-left: -250%;}
  }
  
  /*------------gallary------------*/
  
  /*------------footer------------*/
  footer {
    background: black;
    color: white;
    padding: 30px;
  }
  
  .subscribe {
    text-align: center;
    max-width: 50%;
    margin: auto;
  }
  
  .subscribe input {
    width: 100%;
    border-radius: 50px;
    margin-right: 30px;
    padding: 10px;
  }
  
  footer .grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  footer .content h2 {
    margin-bottom: 20px;
    font-size: 23px;
  }
  
  footer li {
    margin-bottom: 15px;
    opacity: 0.5;
  }
  
  footer li i {
    font-size: 13px;
    margin-right: 10px;
  }
  
  footer .content h3 {
    font-size: 20px;
    color: white;
    margin: 0;
  }
  
  footer .content .icon i {
    font-size: 25px;
    margin-right: 20px;
  }
  
  footer .social i {
    padding: 10px;
    background: grey;
    margin-right: 10px;
    border-radius: 50%;
  }
  
  footer .content {
    padding-top: 60px;
    padding-bottom: 50px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
  }
  
  /*------------footer------------*/
  @media only screen and (max-width:768px) {
  
    /*------------home------------*/
    footer .grid,
    .blog .grid,
    .offer2 .grid,
    .wrapper2 .content,
    .grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .home h1 {
      font-size: 100px;
    }
  
    .home {
      height: 80vh;
    }
  
    .home .grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(2, auto);
      grid-gap: 15px;
    }
  
    .home .box:nth-last-child(1) {
      grid-column-start: 1;
      grid-column-end: 3;
      grid-row-start: 3;
      grid-row-end: 3;
    }
  
    /*------------home------------*/
    /*------------about------------*/
    .left, .right {
      width: 100%;
    }
  
    .area .content,
    .room .content,
    .about .content {
      flex-direction: column;
    }
  
    .wrapper2::after,
    .area .left::after,
    .timer.about::before,
    .timer.about::after,
    .about .right::after,
    .about::before,
    .about::after {
      display: none;
    }
  
    /*------------about------------*/
    /*------------wrapper------------*/
    .wrapper .container {
      max-width: 80%;
      margin: auto;
    }
  
    /*------------wrapper2------------*/
    /*------------room------------*/
    .room img {
      margin: 0;
      margin-top: 50px;
    }
  
    /*------------room------------*/
    /*------------timer------------*/
    .timer.wrapper {
      height: 50vh;
    }
  
    /*------------timer------------*/
    /*------------offer------------*/
    .offer .box {
      flex-direction: column;
    }
  
    .offer .right {
      margin: 0px;
    }
  
    /*------------offer------------*/
    /*------------area------------*/
    .area img {
      margin: 0px;
      width: 100%;
    }
  
    /*------------area------------*/
    /*------------offer2------------*/
    .offer2.wrapper {
      height: 100vh;
    }
  
    /*------------offer2------------*/
    /*------------customer------------*/
    .customer .mtop {
      max-width: 100%;
    }
  
    /*------------customer------------*/
    /*------------footer------------*/
    .subscribe {
      max-width: 100%;
    }
  
    /*------------footer------------*/
  }
  
  @media only screen and (max-width:2012px) {
    .header.sticky {
      height: 10vh;
    }
  
    .header.sticky .sticky_logo {
      width: auto;
      height: auto;
    }
  
    .header.sticky .nav-menu {
      top: 4rem;
    }
  
    .nav-menu {
      top: 12rem;
    }
  
    .head {
      height: 20vh;
      line-height: auto;
      text-align: center;
    }
  
    .head .container {
      flex-direction: column;
    }
  
    .home h1 {
      font-size: 70px;
    }
  
    .grid2,
    footer .grid,
    .blog .grid,
    .offer2 .grid,
    .wrapper2 .content,
    .grid {
      grid-template-columns: repeat(1, 1fr);
    }
  
    .home {
      height: 140vh;
    }
  
    .home .grid {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      grid-template-rows: repeat(1, auto);
      grid-gap: 15px;
    }

   
    
  
   