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


@font-face {
  font-family: 'Quiche Display';
  src: url('https://s3.us-east-1.amazonaws.com/konsciousketo.com/fonts/quiche-display-bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('https://s3.us-east-1.amazonaws.com/konsciousketo.com/fonts/HelveticaNeueMedium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

header {
  background-color: #182742;
  z-index: 1000;
  position: sticky;
  top: 0;
}

footer {
  font-family: 'Fustat', sans-serif !important;
}

a:hover {
  cursor: pointer;
}

.font-Fustat {
  font-family: 'Fustat', sans-serif !important;
}

.sub-news-letter-bg {
  border-radius: 54px;
  background: linear-gradient(0deg, rgba(223, 218, 207, 0.20) 0%, rgba(223, 218, 207, 0.20) 100%), linear-gradient(0deg, #21304D 0%, #21304D 100%), #D2E78B;
}

.hamburger {
  position: relative;
  display: block;
  height: 17px;
  
  a.main-nav-toggle {
    display: block;
    width: 23px;
    height: 17px;
    left: 70px;
    top: 25px;
    
    &:after,
    &:before {
      content: '';
      position: absolute;
      top: 0;
      height: 0;
      border-bottom: 2px solid #CCE187;
      width: 100%;
      left: 0;
      right: 0;
      transition: all ease-out 0.3s;
    }
    
    &:after {
      top: 100%;
    }
    
    i {
      display: block;
      text-indent: 100%;
      overflow: hidden;
      white-space: nowrap;
      height: 2px;
      background-color: #CCE187;
      width: 100%;
      position: absolute;
      top: 50%;
      transition: all ease-out 0.1s;
    }
    
    &.active-menu {
      &:after {
        transform: rotate(-45deg);
        transform-origin: center;
        top: 50%;
      }
      
      &:before {
        transform: rotate(45deg);
        transform-origin: center;
        top: 50%
      }
      
      i {
        opacity: 0;
      }
    }
  }
}

.dropdown-bg {
  background: linear-gradient(180deg, rgba(35, 68, 107, 0.00) 18.11%, #23446B 100%), linear-gradient(0deg, rgba(33, 48, 77, 0.30) 0%, rgba(33, 48, 77, 0.30) 100%), #203455;
  background-blend-mode: normal, multiply, normal;
  backdrop-filter: blur(2.5px);
}

@media (min-width: 1024px) {
  #dropdown {
    display: none !important;
  }
}


