@import "tailwindcss";
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
// <weight>: Use a value from 100 to 900
// <uniquifier>: Use a unique and descriptive class name

.outfit-heavy {
  font-weight: 900;
  font-style: normal;
}
@theme {
  --font-outfit: "Outfit", "sans-serif"; 
}

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #efefef;
}

body::selection {
  background-color: #dd6724;
  color: #ffffff;
}

.wave-wrapper {
  position: relative;
  height: 100vh;
  overflow: hidden;
}



.wave {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
}

.wave path {
  animation: none;
}

swiper-container {
  width: 100%;
  height: 100%;
}

swiper-slide {
  //text-align: center;
  font-size: 18px;
  //background: #444;
  display: flex;
  justify-content: center;
  align-items: center;
}

h2{
  font-weight: 600;
}
p, ul{
  font-weight: 200;
}

.btn-wave {
  position: relative;
  overflow: hidden;
  color: #e2640f;
  border: 1px solid #e2640f;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-family: 'Outfit', sans-serif;
  transition: color 0.3s ease;
  background-color: transparent;  
}

.btn-wave:hover {
  color: white;
}

.btn-wave svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 200%;
  z-index: 0;
  transform: translateY(100%);
  transition: transform 0.9s ease;
  pointer-events: none;

}

.btn-wave:hover svg {
  transform: translateY(0);
}

.btn-wave span {
  position: relative;
  z-index: 10;
}
strong{
  color: #dd6724;
}