
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alan+Sans:wght@300..900&display=swap');

:root{
   --main-color:rgb(196, 188, 181);
   --primary-color: #42668d;
   --white:#ffffff;
   --bg: #ffffff;
   --light-black:rgb(38, 32, 34);
   --box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
}

*{
   font-family: "Alan Sans", sans-serif;
   letter-spacing: -1px;
   margin:0; padding:0;
   box-sizing: border-box;
   outline: none; border:none;
   text-decoration: none;
   transition: .2s linear;
   font-weight: 400;
   
}

html{
   background-color: var(--bg);
   text-decoration: none;
   text-decoration-color: rgb(38, 32, 34);
   font-size: 64.5%;
   overflow-x: hidden;
   scroll-behavior: smooth;
   scroll-padding-top: 6rem;
   
}



html::-webkit-scrollbar{
   width: .8rem;
}

html::-webkit-scrollbar-track{
   background-color: var(--white);
}

html::-webkit-scrollbar-thumb{
   background-color: var(--primary-color);
   border-radius: 5rem;
}

body{

   margin: 0;
   overflow: hidden;
}

body.active{
  --primary-color:rgb(255, 255, 255);
  --light-black:#eee;
  --white:#333;
  --bg:#222;
  --box-shadow:0 .5rem 1.5rem rgba(0,0,0,.4);
}

section{
   padding: 3rem 9%;
}

.heading{
   font-family: "Great Vibes", cursive;
   text-align: center;
   color:var(--primary-color);
 
   margin-bottom: 2rem;
   font-size: 4rem;
   
}

.heading2{
   text-align: center;
   color:var(--primary-color);
   font-family: 'Great Vibes', cursive;
   margin-bottom: 4rem;
   font-size: 6rem;
   margin-top: 2rem;
}
.bt{
   
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 10px;
   text-align: center;
}

.bt2{
   min-height: 100vh;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 10px;
   
   text-align: center;
}
.bt h2{
   font-size: 2rem;
   padding: 10px;

}

.btn {
    display: inline-block;
    margin-top: 1rem;
    padding: .8rem 2.8rem;
    border-radius: 5rem;
    border-top-left-radius: 0;
    
    cursor: pointer;
    color: var(--main-color);
    font-size: 1.4rem;
    overflow: hidden;
    z-index: 0;
    position: relative;
  }




  .content .regalos img
  {
      width: 10%;
  }

  @media (max-width: 768px) {
   .content .regalos img
  {
      width: 35%;
  }
}
  
  .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--main-color);
    z-index: -1;
    -webkit-transition: .2s linear;
    transition: .2s linear;
    clip-path: circle(0% at 0% 5%);
  }
  
  .btn:hover::before {
     clip-path: circle(100%);
  }
  
  .btn:hover {
    color: var(--white);
  }

  .tex{
   display: flex;
   flex-direction: column;
   justify-content: center;
   text-align: center;
   align-items: center;
   color: #fff;
   font-size: 3.4rem;
   text-transform: uppercase;
   padding-top: 40px;
  }

  /*imagen*/

.crono{
   width: 100%;
   display: flex;
   justify-content: center;
   align-items: center;
}

@media (max-width: 768px) {
   .crono img{
      overflow: hidden;
      width: 110%;
      display: flex;
      justify-content: center;
      align-items: center;
   }
}



  .fondo4{
   height: 90vh;
   background-image:url(images/2.jpg);
   background-position: center;
   background-size: cover;
   background-repeat: no-repeat;
   transition: 1.3s ease-in-out;
   overflow-y: hidden;
}

.fondo5{
   height: 90vh;
   background-image: url(images/fondo5.jpg);
   background-position: center;
   background-size: cover;
   background-repeat: no-repeat;
   transition: 1.3s ease-in-out;
   overflow-y: hidden;
}

@media (max-width: 768px) {
   .fondo5{
      height: 90vh;
     /* :url(images/final.jpg);*/
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      transition: 1.3s ease-in-out;
      overflow-y: hidden;
   }
}

.line{
   padding: 50px;
}

/* header */

.header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 9%;
  background: var(--white);
  box-shadow: var(--box-shadow);
  overflow-x: hidden;
}

.header .logo{
   font-size: 2.2rem;
   font-weight: bolder;
   color:var(--primary-color);
}

.header .logo i{
   color:var(--main-color);
   padding-right: .5rem;
}

.header .navbar a{
   font-size: 1.7rem;
   margin-left: 2rem;
   color:var(--primary-color);
  padding-block: 1.6rem;
  position: relative; 
  overflow: hidden;
}

.header .navbar a:hover{
   color: var(--main-color);
}

.header .navbar a::before {
   content: "";
   position: absolute;
   height: .3rem;
   border-block: 1px solid var(--main-color);
   bottom: .5rem;
   width: 100%;
   transform: scaleX(0);
   transform-origin: center;
   transition: 0.5s ease;
 }

 .header .navbar a:is(:hover, :focus)::before { 
   transform: scaleX(1); 
 }

.header .icons div{
   height:4.5rem;
   width:4.5rem;
   line-height:4.5rem;
   font-size: 2rem;
   border-radius: .5rem;
   margin-left: .5rem;
   cursor: pointer;
   color:var(--white);
   background: var(--main-color);
   text-align: center;
}
.header .icons div:hover{
   color: rgb(rgb(197, 182, 168));
   background: var(--primary-color);
}

#menu{
   display: none;
}
/*CRONO*/

.crono{
   width: 100%;
   display: flex;
   justify-content: center;
   align-items: center;
}

.crono2{
   width: 100%;
   display: flex;
   justify-content: center;
   align-items: center;
}

@media (max-width: 768px) {
   .crono img{
      
      overflow: hidden;
      width: 0%;
      display: flex;
      justify-content: center;
      align-items: center;
   }
}

@media (min-width: 768px) {
   .crono img{
      
      overflow: hidden;
      width: 110%;
      display: flex;
      justify-content: center;
      align-items: center;
   }
}

@media (min-width: 768px) {
   .crono2 img{
      overflow: hidden;
      width: 0%;
      display: flex;
      justify-content: center;
      align-items: center;
   }
}

@media (max-width: 768px) {
   .crono2 img{
      overflow: hidden;
      width: 110%;
      display: flex;
      justify-content: center;
      align-items: center;
   }
}
/* countdown*/
 .container .img {
   display: flex;
   justify-content: center;
   align-items: center;
  }
  .img img{
   width:120px;
   margin-bottom: 10px;
  }

.container .heading{
   color: var(--primary-color);
}

.container{
   
   max-width: 1200px;
   margin: 70px auto;
}
.container h1,
.container p{
   color:var(--light-black);
   text-align:center;
   padding:0px 0;    
}

.container h1{
   font-size: 10rem;
   font-weight: 400;
   letter-spacing: -1px;
}


.container h2{
   font-size: 7rem;
   padding-top: 45px;
   
}

.container p{
   font-size: 2em;

}


@media (max-width: 768px){
   .container h1{
   font-size: 6rem;
   font-weight: 400;
   
   padding-bottom: -20px;
}
.container h2{
   font-size: 4.5rem;
   padding-top: -51px;
   padding-bottom: 40px;
}
.container p{
   padding-bottom: -10px;
}
}
.center-abs{
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   position: absolute;

   border-radius: 50%;
   
   
}
.charts{
   display: flex;
   flex-wrap: wrap;
   
}
.chart {
 
   position: relative;
   width: 25%;
   height: 260px;
   
}

.chart h3 {
   color: var(--light-black);
   font-size: 2em;
   position: absolute;
   bottom: 10px;
   text-align: center;
   width: 100%;
   
   
}


.circle {
   width: 150px;
   height: 150px;
   border-radius: 50%;
   z-index: 1;
   border: 9px solid rgb(197, 182, 168);
   background-color: #fff;
   
}

span.text {
   z-index: 3;
   text-align: center;
   width: 100%;
   font-size: 4em;
   font-weight: 700;
   color: var(--light-black);
   
}

.outer {
   fill: transparent;
   stroke:rgb(101, 106, 148);
   stroke-width: 11;
   /* 2 * RadioCircle* Pi = stroke-dasharray */
   /* 2 * 70 * 3.1415 = 439.81 */
   stroke-dasharray: 439; /* set in js file */
   transform: rotate(270deg) translate(-150px, 0);
}

#countdown-content p{
   text-align: center;
   font-size: 2em;
   color:#fff;
   font-weight: 700;
   width: 100%;
}

@media (min-width: 480px) and (max-width: 768px) { 
   .chart{
       

       width: 20%;
   }
}
@media (max-width: 480px) { 
   .chart{
       display: grid;
       grid-template-columns: 10px 10px 10px 10px;
       width: 20%;
       height: 90%;
   }
   .circle {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      z-index: 1;
      border: 4px solid rgb(197, 182, 168);

   }

   span.text {
      z-index: 3;
      text-align: center;
      width: 117%;
      font-size: 2em;
      font-weight: 700;
      color: var(--light-black);
 
      
   }

   .center-abs{
      top: 10%;
      left: 100%;
      transform: translate(-50%, -50%);
      position: absolute;
   }

   .outer {
      display: none;
      fill: transparent;
      stroke:rgb(58, 49, 48);
      stroke-width: 2;
      /* 2 * RadioCircle* Pi = stroke-dasharray */
      /* 2 * 70 * 3.1415 = 439.81 */
      stroke-dasharray: 439; /* set in js file */
      transform: rotate(270deg) translate(-150px, 0);
   }

   .chart h3 {
      color: var(--light-black);
      font-size: 1.5em;
      position: absolute;
      bottom: -60px;
      text-align: center;
      width: 185%;
      
   }


}

/*UBIACION*/



.lore{
   
   
   
   display: flex;
   align-items: center;
   justify-content: center;
   flex-direction: column;
   position: relative;
   top: 180px;
}
.lore h3{
   
   font-size: 12rem;
   color: rgb(255, 255, 255);
   font-weight: 600;
   text-align: center;
   overflow-y: hidden;
   padding: 10px;
}
.lore h5{
   
   font-size: .5rem;
   text-align: center;
   color: white;
   font-weight: 200;
   overflow-y: hidden;

}


.btn{

   color: rgb(255, 255, 255);
   background-color:rgb(167, 140, 121);
   border-radius: 5px;
   font-weight: 600;
}

.fondo0{
   background-image: url(images/inicio.jpg);
   background-attachment: fixed;
   background-position: bottom center;
   background-repeat: no-repeat;
   background-size: cover;
}

.fondo{
   background-image: url(images/inicio2.jpg);
   background-attachment: fixed;
   background-position: bottom center;
   background-repeat: no-repeat;
   background-size: cover;
}

.fondo1{
   height: 50vh;
   background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.671)), url(images/salon.jpg);
   background-position: center;
   background-size: cover;
   background-repeat: no-repeat;
   transition: 1.3s ease-in-out;
   overflow-y: hidden;
}
.fondo1 h3{
   font-size: 3.5rem;
   
}
   


.fondo1 h5{
   font-size: 2rem;
   font-weight: 400;
   letter-spacing: -.5px;
   padding: 5px;
}


.fondo1:hover{
   transform:scale(1.1);
   overflow-y: hidden;
}

.fondo2:hover{
   transform:scale(1.1);
   overflow-y: hidden;
}


.fondo2{
   height: 50vh;
   background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.671)), url(images/iglesia.jpg);
   background-position: center;
   background-size: cover;
   background-repeat: no-repeat;
   transition: 1.3s ease-in-out;
   overflow-y: hidden;
}

.fondo2 h3{
   font-size: 3.5rem;
   
}
   


.fondo2 h5{
   font-size: 2rem;
   font-weight: 400;
   letter-spacing: -.5px;
   padding: 5px;
}



/*barra*/
.barra{
   width: 100%;
   height: 100px;
   display: flex;
   align-items: center;
   text-align: center;
   justify-content: center;
  
   background-color: #002750;
   font-size: 1.7rem;
   
}

.barra h3{
   color: white;
   
   font-size: 3rem;
   font-weight: 600;
   
}

@media (max-width: 768px) { 
   .barra{
      max-width: 100%;
      padding: 3px;
      font-size: 1.3rem;
      overflow-x: hidden;
   }

   .barra h3{

   }

}
/* home */

.home{
    min-height: 100vh;
    display: flex;
    align-items: center;
   justify-content: center;
    background:url(images/home.jpg) no-repeat;
    background-size: cover;
    background-position: bottom center;
    background-attachment: fixed;
    
}

@media (max-width: 768px) { 
   .home{
      min-height: 100vh;
      display: flex;
      align-items: center;
     justify-content: center;
      background:url(images/inicio.jpg) no-repeat;
      background-size: cover;
      background-position: bottom center;
      background-attachment: fixed;
  }

}

.home .content{
  text-align: center;
}

.home .content h3 {
    font-size: 6rem;
    text-transform: uppercase;
    font-weight: normal;
    color:#fff;
    padding-bottom: 3.5rem;
}

.love{
   width: 300px;
   transition: ease-in-out 0.5s;
}

.love:hover{
   transform: scale(1.1);
}

 /* end */

 .about .row{
    display: flex;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .about .row .image {
    flex: 1 1 40rem;
  }
  
  .about .row .image img {
    width: 100%;
  }
  
  .about .row .content {
    flex: 1 1 40rem;
  }
  
  .about .row .content h3 {
    font-size: 3.5rem;
    color: var(--main-color);
  }
  
  .about .row .content p {
    font-size: 1.6rem;
    color: var(--light-black);
    padding: 2rem 0;
    line-height: 2;
  }

  /* end */

  /* service */
 
 .services .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(40rem, 3fr));
    gap:3.5rem;
 }
 
 .services .box-container .box{
    text-align: center;
    padding: 4rem;
    background-color: #ffffff00;
    box-shadow: var(--box-shadow);
    border-radius: 5rem;
 }
 
 .services .box-container .box img{
    margin: 0.1rem 0;
    height: 15rem;
    transition: 500ms ease;
 }

 .services .box-container .box:hover img{
    transform: scale(-1) rotate(180deg);
 }
 
 .services .box-container .box h3{
    font-size: 3rem;
    padding:1rem 0;
    color:var(--primary-color);
 }
 .services .box-container .box h4{
   font-size: 2.5rem;
   color: var(--primary-color);
 }
 
 .services .box-container .box p{
    font-size: 1.5rem;
    color:var(--light-black);
    line-height: 2;
 }

 @media (max-width: 768px) { 
   .services .box-container{
      display: grid;
      grid-template-columns: repeat(minmax(10rem, 3fr));
      gap:2.5rem;
   }
}
 /* end */

/* pricing */

 .plan .box-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6rem;
}

.plan .box-container .box{
    background:var(--white);
    width:30rem;
    height: 38rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    position: relative;
}

.plan .box-container .box:hover{
    transform: scale(1.05);
}

.plan .box-container .box .title{
    font-size: 2.5rem;
    background:var(--main-color);
    clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
    color: var(--white);
    padding:1rem 0;
}

.plan .box-container .box .price{
    font-size: 4rem;
    color:var(--light-black);
    padding-top:1rem;
}

.plan .box-container .box .price span{
    font-size: 2.5rem;
}

.plan .box-container .box .month{
    font-size: 1.4rem;
    color:var(--light-black);
}

.plan .box-container .box ul{
    margin:2rem 6rem;
    list-style: none;
}

.plan .box-container .box ul li{
    text-align: left;
    padding:.5rem;
    font-size: 1.5rem;
    color:var(--light-black);
}

.plan .box-container .box ul li i{
    color: var(--white);
    padding: .5rem;
    margin-right: 1rem;
    background: var(--main-color);
    border-radius: 50%;
}

.plan .box-container .box ul li i.fa-times{
   padding: .5rem .7rem;
}

.plan .box-container .box .btn {
    position: absolute;
    bottom: -2rem;
    right: 2rem;
    background: var(--white);
  }

  /* end */

  /* gallery */

  .gallery{
   background-image: url(images/inicio2.jpg);
   background-attachment: fixed;
   background-position: bottom center;
   background-repeat: no-repeat;
   background-size: cover;
  }

  .gallery .gallery-slider .swiper-slide{
    overflow: hidden;
    border-radius: .5rem;
    height: 50rem;
    width:35rem;
}

.gallery .gallery-slider .swiper-slide img{
    height:100%;
    width:100%;
    object-fit: cover;
}

  /* end */

  /* review */

.review .review-slider{
   box-shadow: var(--box-shadow);
}

.review .review-slider .slide{
   background: var(--white);
    border-radius: .5rem;
    text-align: center;
    padding: 3rem;
}

.review .review-slider .slide img{
    height: 10rem;
    width: 10rem;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: .5rem;
}

.review .review-slider .slide h3{
    font-size: 2.5rem;
    color:var(--primary-color);
}

.review .review-slider .slide p{
    font-size: 1.6rem;
    color:var(--primary-color);
    line-height: 1.7;
    padding: 1rem 0;
}

.review .review-slider .slide .stars{
    padding: 1rem 0;
    padding-bottom: 1.5rem;
}

.review .review-slider .slide .stars i{
    font-size: 2rem;
    color:var(--main-color);
}

.swiper-pagination-bullet-active{
    background: var(--main-color);
}

/* end */

/* team */

.team h1{
   text-align: center;
}
.team .codigo {
   margin: 0;
   width: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
}

.team .codigo img{
   margin: 20px;
   width: 15%;
}

@media (max-width: 768px){
   .team .codigo img{
      margin: 10px;
      padding: 0;
      width: 50%;
   }
}



.team .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap:1.5rem;
 }
 
 .team .box-container .box{
    border-radius: .5rem;
    background: var(--white);
    padding:2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
 }
 
 .team .box-container .box img{
    border-radius:10%;
    height: 15rem;
    width: 15rem;
    object-fit: cover;
    margin-bottom: 1rem;
 }
 
 .team .box-container .box h3{
    font-size: 2.5rem;
    font-weight: 600;
    color:var(--primary-color);
 }
 
 .team .box-container .box p{
    font-size: 1.6rem;
    color:#000;
 }
 
 .team .box-container .box .share{
    margin-top: .5rem;
 }
 
 .team .box-container .box .share a{
    height: 4rem;
    width: 4rem;
    line-height: 4rem;
    font-size: 1.7rem;
    background: var(--primary-color);
    border-radius: .5rem;
    color:var(--white);
    margin: .5rem 0;
 }
 
 .team .box-container .box .share a:hover{
    background: var(--main-color);
 }

 .team p {
   text-align: center;
   font-size: 2rem;
 }

 /* RESERVA */



/**CONFIURMACIÓN*/

.text{
   padding: 30px;
   text-align: center;
   font-size: 2rem;
   font-weight: 400;
   color: #000000;   
}

.mesa2{
   
   display: flex;
   flex-direction: row;
   justify-content: space-around;
   width: 100%;
}

.item2{    
   width: 300px;
   height: 100px;
   border-radius: 15px;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   padding: 15px;
   text-align: center;
   cursor: pointer;
}



/* footer */

.footer{
   background: #000000;
  display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   margin: 0;
   padding: 0;
   padding-bottom: 30px;
   padding-top: 15px;
 }

 .footer .icof{
   display: flex;
   justify-content: center;
   align-items: center;
   width: 100%;
   
 }

 .footer .icof img{
   width: 190px;
 }

 @media(min-width: 29px){
   .footer .icof img{
   width: 60px;
 }
 }
 .footer .logon{
display: flex;
   justify-content: center;
   align-items: center;
   width: 100%;
 }

 .footer .logon img{

   width: 130px;
 }

 .footer .text{
   padding: 5px;
   
 }

 .footer .text h1{
   color: white;
   font-size: 2rem;
   text-align: center;
   font-weight: 400;
   
 }

 .footer .text h3{
   font-size: .7rem;
   text-align: center;
   color: white;
   font-weight: 200;
   letter-spacing: 4px;
 }

/* end */

/* media query */

@media (max-width:991px){

   html{
      font-size: 55%;
   }
 
   .header{
     padding: 2rem 5rem;
   }

   section {
      padding: 3rem;
    }
 
}

@media (max-width: 768px) {

   #menu {
     display: inline-block;
   }
   .header .navbar {
     position: absolute;
     top: 99%;
     left: 0;
     right: 0;
     background: var(--bg);
     clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
   }
   
   .header .navbar.active {
     clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
   }

   .header .navbar a{
      display: flex;
        background:var(--white);
        border-radius: .5rem;
        padding:1.3rem;
        margin:1.3rem;
        font-size: 2rem;
        justify-content: center;
   }

   .home .content h3{
      font-size: 4rem;
  }

}

@media (max-width:450px){

   html{
       font-size: 50%;
   }
}


/**FORMULARIO**/

.content2 {
   display: flex;
   justify-content: center;
   align-items: center;
   
   
}


.contact-wrapper > * {
    width: 40vh;
    padding: 1em;
}

.contact-wrapper .caja{
   width: 100%;
   font-size: 2rem;
   
   font-weight: 800;
   margin-top: 3rem;
   margin-bottom: 3rem;
   padding: 1.2rem;
   border: solid #000000 1px;
}

.contact-wrapper h3{
   color: var(--primary-color);
   text-align: center;
   font-family: "Great Vibes", cursive;
   font-size: 5.8rem;
   font-weight: 400;
}

.contact-wrapper p{
   font-size: 2rem;
   font-weight: 400;
   text-align: center;
}

.contact-wrapper h4{
   font-size: 2.4rem;
   text-align: center;
   font-weight: 800;
}

.contact-form {
    
    background: #ffffff;
}

.contact-form .block {
   padding-top: 50px;
   border-radius: 10px;
   
  
}

.contact-form .btn{
   color: #fff;
}
.contact-form form label {
    display: block;
    font-weight: 600;
    
}

.contact-form form p {
   font-size: 2.1rem;
    margin: 0;
    padding: .1em;
}

.contact-form form input{
   margin-bottom: 40px;
}



.contact-form form button,
.contact-form form input,
.contact-form form textarea {
    width: 100%;
    
    
    border: none;
    background: none;
    outline: 0;
    color: #000000;
    border-bottom: 1px solid var(--primary-color);
    font-size: 2rem;
}

.contact-form form button {
    background: var(--primary-color);
    border: 0;
    border-radius: 10px;
    text-transform: uppercase;
    padding: 1em;
}

.contact-form form button:hover,
.contact-form form button:focus {
    background: var(--primary-color);
    
    color: #ffffff;
    transition: background-color 1s ease-out;
    outline: 0;
}

/* CONTACT INFO */
.contact-info {
    background: #000;
}

.contact-info h4, .contact-info ul, .contact-info p {
    text-align: center;
    margin: 0 0 1rem 0;
    
}

/* LARGE SIZE */
@media(min-width: 700px) {
    body {
        padding: 0;
    }

    .content2{
   display: flex;
   justify-content: center;
   align-items: center;
   width: 100%;
   overflow: hidden;
    }
   
    .contact-wrapper > * {
        padding: 2em;
    }
    .contact-info h4,
    .contact-info ul,
    .contact-info p {
        text-align: left;
        
    }
}


 