*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Josefin Sans", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
body {
  background-color: #121212;
  color: #bfb170;
  overflow-x: hidden;
}
a{
  text-decoration: none;
  color: #bfb170;
}

.navbar {
  position: relative;
  z-index: 1100;
  background-color: #121212;
}

.hamburger {
  width: 30px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background-color: #bfb170;
  transition: 0.4s;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-color: #121212;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transform: perspective(1000px) rotateX(90deg);
  z-index: 1050;
}

.fullscreen-menu.show {
  visibility: visible;
}

.fullscreen-menu.open {
  animation: flipInX 0.6s ease forwards;
}

.fullscreen-menu.close {
  animation: flipOutX 0s ease forwards;
}

@keyframes flipInX {
  0% {
    transform: perspective(1000px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(1000px) rotateX(-20deg);
    opacity: 1;
  }
  60% {
    transform: perspective(1000px) rotateX(10deg);
  }
  80% {
    transform: perspective(1000px) rotateX(-5deg);
  }
  100% {
    transform: perspective(1000px) rotateX(0deg);
    opacity: 1;
  }
}

@keyframes flipOutX {
  0% {
    transform: perspective(1000px) rotateX(0deg);
    opacity: 1;
  }
  40% {
    transform: perspective(1000px) rotateX(-20deg);
  }
  100% {
    transform: perspective(1000px) rotateX(90deg);
    opacity: 0;
  }
}

.fullscreen-menu ul {
  list-style: none;
  padding: 0;
}

.fullscreen-menu ul li {
  margin: 20px 0;
}

.fullscreen-menu ul li a {
  font-size: 2rem;
  color: #bfb170;
  text-decoration: none;
}

.fullscreen-menu ul li a:hover {
  color: #fff;
}
.card-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.card-icon-content {
  background-color: #5a543800;
  border-radius: 15px;
  border: 1px solid #bfb17030;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.card-icon-inner {

}

.card-icon-container {
  position: relative;
  text-align: center;
  padding: 35px;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.88)); /* Gradient background */
  border-radius: 15px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.card-icon-container:hover {
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0));
  background-color: #bfb170;
}

.card-icon-icon {
  margin-bottom: 15px;
}

.icon {
  display: inline-block;
  font-family: 'remixicon';
  font-size: 3rem;
  color: #bfb170;
  font-size: 60px;
}
.card-icon-container:hover .icon{
  color: #191919;
}

.card-icon-title .card-headline {
  font-size: 18px;
  color: #bfb170;
  font-weight: 600;
}

.card-headline-text {
/*    color: var(--hover-secondary-color, #ff5733);*/
transition: color 0.3s ease;
}

.card-icon-container:hover .card-headline-text {
  color: #191919;
}
.get_demo{
  background-color: #bfb170;
  padding: 22px 32px;
  color: #191919;
  text-decoration: none;
  font-size: 16px;
}
.get_demo:hover {
  filter: brightness(1.15);
  color: var(#191919, var(#ffff));
  background: var(#bfb170, var(#191919));
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
/*
.get_demo_text{
  color: #dfdcd0;
}*/
.email input {
  background: none;
  border: none;
  color: #191919;
  border-bottom: 2px solid #191919;
  font-size: 25px;
  padding: 20px;
  margin-right: 10px;
  width: 800px;
}
.email_button input{
  padding: 15px;
  border: 2px solid #191919;
  font-size: 25px;
/*  border-radius: 2px;*/
}
::placeholder {
  color: #191919;
  opacity: 1; /* Firefox */
}
.get_demo {
  text-decoration: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 5px;
}
.bt_bb_button_text {
  font-size: 18px;
}

.custom-modal {
            background-color: #1a1a1a;
            border: 1px solid #333;
            border-radius: 12px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
            width: 100%;
        }

        .dark-input {
            background-color: #2a2a2a;
            border: 1px solid #444;
            color: #fff;
            border-radius: 6px;
        }

        .dark-input::placeholder {
            color: #aaa;
        }

        .dark-input:focus {
            border-color: #ffc107;
            box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
            background-color: #2f2f2f;
            color: #fff;
        }


        .modal.fade .modal-dialog {
            transition: transform 0.3s ease-out;
            transform: translateY(-20px);
        }

        .modal.show .modal-dialog {
            transform: translateY(0);
        }
        .flip-card {
          background-color: transparent;

          height: 300px;
          perspective: 1000px;
      }

      .flip-card-inner {
          position: relative;
          width: 100%;
          height: 100%;
          text-align: center;
          transition: transform 0.6s;
          transform-style: preserve-3d;
          box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
      }

      .flip-card:hover .flip-card-inner {
          transform: rotateY(180deg);
      }

      .flip-card-front, .flip-card-back {
          position: absolute;
          width: 100%;
          height: 100%;
          -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
          border-radius: 1px solid #bfb170;
      }

      .flip-card-front {
          background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.88));
          text-align: center;
          padding: 35px;
          border-radius: 15px;
          border-radius: 1px solid #bfb170;
          transition: background-color 0.3s ease, transform 0.3s ease;
          color: black;
      }

      .flip-card-back {
          background-color: #bfb170;
          color: #191919;
          transform: rotateY(180deg);
          border-radius: 15px;
      }