@tailwind base;
@tailwind components;
@tailwind utilities;

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&family=Oswald:wght@200;300;400;500;600;700&display=swap');

.text-primary {
  color: #00B8C0 !important;
}

.bg-primary {
  background-color: #00B8C0;
}

.border-primary {
  border-color: #00B8C0;
}

* {
  font-family: 'Open Sans', sans-serif;
  color: white;
}

.oswald,
.oswald * {
  font-family: 'Oswald', sans-serif;
}

.title strong {
  color: #00B8C0 !important;
}

.owl-nav {
  top: 0;
  width: 100%;
  margin: 0 !important;
}

.raw-text a {
  color: #00B8C0;
}
.raw-text a:hover {
  color: #00B8C095;
}
button.owl-prev,
button.owl-next {
  position: absolute;
  background: #ffffff30 !important;
  width: 130px;
  height: 130px;
  display: flex !important;
  border-radius: 50% !important;
  color: #000 !important;
  font-size: 40px !important;
  align-items: center;
  justify-content: center;
  align-content: center;
  transition: all 200ms ease-in-out;
}

button.owl-prev:hover,
button.owl-next:hover {
  background: #fff !important;
}

button.owl-prev {
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
}

button.owl-next {
  right: -40px;;
  top: 50%;
  transform: translateY(-50%);
}

#layout-header {
  background-color: transparent;
  transition: all 200ms ease-in-out;
}

#layout-header.headerUp {
  background-color: #232323;
  max-height: 60px !important;
}

#layout-header .logo {
  max-height: calc(100% - 50px);
}

#layout-header.headerUp .logo {
  max-height: calc(100% - 40px);
}