@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

@font-face {
 font-family: 'lux';
 src: url('fonts/Kugile_Demo.ttf') format('truetype');
}

@font-face {
 font-family: 'body';
 src: url('fonts/medino.regular.otf') format('truetype');
}


* {
 margin: 0px;
 padding: 0px;
 box-sizing: border-box;
 font-family: 'Times New Roman', Times, serif, sans-serif;
}

body {
 position: relative;
 background-color: #ffefef;
}

.bd {
 font-family: body;
}

.bg-bg {
 background-color: #ffefef;
}

.lux {
 font-family: 'lux';
}

p {
 margin: 0px;
}

.hero {
 padding-top: 200px;
 padding-bottom: 100px;
 background-image: url(../img/bg/hero.jpg);
 background-size: cover;
 background-position: center;
 color: #fff;
}

.row {
 margin: 0px;
 padding: 0px;
}

.whatsapp_box {
 position: fixed;
 bottom: 20px;
 right: 20px;
 z-index: 999;
 width: 90px;
 height: 90px;
 background-color: var(--bs-primary);
 color: #fff;
 border-radius: 50%;
 display: flex;
 justify-content: center;
 align-items: center;
 box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
 cursor: pointer;
 border: 4px solid #fff;
 transition: all 0.3s ease;
 -webkit-animation: rotate-in-center 1s linear infinite alternate-reverse both;
 animation: rotate-in-center 1s linear infinite alternate-reverse both;
}


@-webkit-keyframes rotate-in-center {
 0% {
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg);
  opacity: 0;
 }

 100% {
  -webkit-transform: rotate(0);
  transform: rotate(0);
  opacity: 1;
 }
}

@keyframes rotate-in-center {
 0% {
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg);
  opacity: 0;
 }

 100% {
  -webkit-transform: rotate(0);
  transform: rotate(0);
  opacity: 1;
 }
}

@media (max-width: 568px) {
 .hero {
  padding-top: 100px;
 }
}