  
body {
  margin:0px !important;
  width: 100vw;
  height: 100vh;
  background-image: url('bg.jpg');
  /* background-color: #120700a1; */
  background-blend-mode: color;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  color: white;
  text-align: center;
  overflow: hidden;
  
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: 'Inter', sans-serif;
}

.desktop{
  position: absolute;
  right:10%;
  top:15%;
  border-radius:12px;
  padding:40px;
  background-color: rgb(255 255 255 / 5%);
  box-shadow: 0px 10px 16px 8px rgba(0,0,0,0.1);
  
}

.main_title{
  text-transform: uppercase;
  font-size: 3rem;
  color:#fff;
  text-shadow: 2px 2px 4px rgb(32 10 0);
  margin-bottom:4px;

}

.divider{
  width:30%;
  border-bottom: 1px solid #f7f7f7;
}
.address p{
  margin-top:4px;
  margin-bottom:6px;
  text-shadow: 2px 2px 4px rgba(32, 10, 0, 0.233);
  font-size:15px;

}


.link{
  color:#ffc086;
  text-decoration: none;
  text-shadow: 2px 2px 4px rgba(32, 10, 0, 0.233);

  }

.sub_title{
  color:#ffac5f;
  font-size: 22px;
  text-shadow: 2px 2px 4px rgba(32, 10, 0, 0.233);
  margin:10px;
  border-top:2px solid;
  border-bottom:2px solid;
  padding-top:12px;
  padding-bottom:12px;

}

.whatsapp{
  position: fixed;
  bottom:20px;
  right:50px;
  cursor: pointer;

}
.whatsapp img{
  width: 70px;
}

.logo{
  width:300px;
  mix-blend-mode: screen;
}

.mobile{display:none}

.chat{
  position:fixed;
  bottom:10%;
  left:50%;
  transform: translateX(-50%);
  width:300px;
  height:70px;
}

@media (max-width: 500px) {
  .desktop{display:none}
  .mobile{display:block;width: 100%;height:100%}

  body{
  width:100%;
  overflow: hidden;
  background-image: url('bg_full.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: inherit;
  }


  .bg_mobile{
    height: 100%;
    width: auto;
    position: fixed;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
  }
}