@tailwind base;
@tailwind components;
@tailwind utilities;
.header-shadow {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
@font-face {
  font-family: "canela";
  src: url("../assets/fonts/CanelaDeckFamily/CanelaDeck-Regular-Trial.otf");
}
@import url("https://fonts.googleapis.com/css2?family=Lobster&display=swap");
/* Opensans */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
/* Font Libre */
@import url("https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,100..900;1,100..900&display=swap");

/* Font philosopher */
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&display=swap");

/* Font Roboto */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

.gradient {
  background: linear-gradient(90deg, #d53369 0%, #daae51 100%);
}
.gradientTwo {
  background: linear-gradient(90deg, #8c33d5 0%, #1e399a 100%);
}
.card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.quote::before {
  width: 40px;
  height: 40px;
  top: 0px;
  left: 0px;
  content: url("../assets/images/svgs/quote.svg");
  position: absolute;
  width: var(--size-s);
  height: var(--size-s);
  /* rotate: n   ; */
}
.quote::after {
  width: 40px;
  height: 40px;
  bottom: 0px;
  right: 0px;
  rotate: 180deg;
  content: url("../assets/images/svgs/quote.svg");
  position: absolute;
  width: var(--size-s);
  height: var(--size-s);
  /* rotate: n   ; */
}
@font-face {
  font-family: "canela";
  src: url("../fonts/CanelaDeckFamily/CanelaDeck-Regular-Trial.otf");
}

@font-face {
  font-family: "trade-ghtic";
  src: url("../fonts/trad-ghothic.ttf") format("truetype");
}
.font-canela {
  font-family: Canela, sans-serif;
}
.video {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
@media (min-aspect-ratio: 16/9) {
  .video {
    width: 100%;
    height: auto;
  }
}
@media (max-aspect-ratio: 16/9) {
  .video {
    width: auto;
    height: 100%;
  }
}

.shadow-card {
  box-shadow: 5px 6px 0px -1px rgba(207, 207, 207, 0.75);
  -webkit-box-shadow: 3px 3px 0px -1px rgba(207, 207, 207, 0.75);
  -moz-box-shadow: 5px 6px 0px -1px rgba(207, 207, 207, 0.75);
}
.card-hidden {
  opacity: 0;
  filter: blur(2px);
  transition: all 0.5s ease-in;
  transform: translateY(20px);
}
.show {
  filter: blur(0);
  opacity: 1;
  transform: translateY(0);
}

@media (prefer-reduced-motion) {
  .card-hidden {
    transition: none;
  }
}

/* Accordian start */
.accordion button {
  color: #ffffff;
  cursor: pointer;

  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: background-color 0.6s ease;
  font-size: 18px;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.accordion button:after {
  content: "\002B"; /* Unicode character for "+" sign */
  color: #ffffff;
  float: right;
  margin-left: 5px;
}

.accordion [aria-expanded="true"]:after {
  content: "\2212"; /* Unicode character for "-" sign */
  color: #ffffff;
  float: right;
  margin-left: 5px;
}
/* Dropdown Start */
.dropbtn {
  background-color: transparent;
  color: rgb(0, 0, 0);
  min-width: 300px;
  font-size: 13px;
  border: 1px solid #808080;
  text-align: start;
  padding-inline: 6px;
  border-radius: 4px;
}

.dropdown {
  position: relative;
  min-width: 300px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #000000;
  min-width: 300px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  font-size: 13px;
  padding-block: 4px;
  padding-inline: 4px;
  text-decoration: none;
  display: block;
  min-width: 300px;
}

.dropdown:hover .dropdown-content {
  display: flex;
  flex-direction: column;
  min-width: 300px;
}

.dropdown:hover .dropbtn {
  font-size: 13px;
  background-color: transparent;
  border: 1px solid gray;
}
/* Dropdown End */

/* CSS Background Animation Start */
.link-background {
  z-index: 1;
}

.link-background::after {
  content: "";
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateX(-100%);
  transition: transform 600ms cubic-bezier(0, 0.7, 0.6, 1);
}

.link-background:hover::after {
  transform: translateX(0);
}
/* CSS Background Animation End */

/* Input search */
.hidden-toggle {
  display: none;
}
#toggleDiv {
  transition: all 0.5s ease-in-out;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
}

#toggleDiv.show {
  opacity: 1;
  max-height: 1000px; /* Set to a value large enough to show the content */
}
.gradient-back {
  background: rgb(216, 231, 32);
  background: rgb(55, 60, 196);
  background: linear-gradient(
    90deg,
    rgba(55, 60, 196, 0.9780287114845938) 15%,
    rgba(173, 64, 95, 1) 51%,
    rgba(80, 85, 226, 1) 93%
  );
}
.border-background {
  background: rgb(131, 58, 180);
  background: linear-gradient(
    16deg,
    rgba(131, 58, 180, 1) 0%,
    rgba(253, 29, 29, 1) 50%,
    rgba(252, 176, 69, 1) 100%
  );
}

/* Infine scroll start */

.scroll > div {
  animation: animate 8s linear infinite;
}

.scroll:hover > div {
  animation-play-state: paused;
}

@keyframes animate {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(-100%);
  }
}

.no-scrollbar ::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Ifinite scroll End */

/* Mega menu start*/
.mega-menu {
  display: none;
  left: 0;
  position: absolute;
  text-align: left;
  width: 100%;
}

/* #hoverable Class Styles
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
.hoverable {
  position: static;
}

.hoverable > a:after {
  content: "\25BC";
  font-size: 10px;
  padding-left: 6px;
  position: relative;
  top: -1px;
}

.hoverable:hover .mega-menu {
  display: block;
}

/* #toggle Class Styles
  –––––––––––––––––––––––––––––––––––––––––––––––––– */

.toggleable > label:after {
  content: "\25BC";
  font-size: 10px;
  padding-left: 6px;
  position: relative;
  top: -1px;
}

.toggle-input {
  display: none;
}
.toggle-input:not(checked) ~ .mega-menu {
  display: none;
}

.toggle-input:checked ~ .mega-menu {
  display: block;
}

.toggle-input:checked ~ label:after {
  content: "\25B2";
  font-size: 10px;
  padding-left: 6px;
  position: relative;
  top: -1px;
}
/* Mega Mnu End */
