@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --primary: #521478;
  --white: #ffffff;
  --gray: #e2e4e8;
  --gray-2: #f6f7fa;
  --gray-3: #55576b;
  --gray-4: #181b36;
}

* {
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -moz-tap-highlight-color: transparent;
}
* > * {
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -moz-tap-highlight-color: transparent;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  color: var(--gray-4);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  /* background: #000; */
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  background: var(--primary);
  width: 150px;
  height: 46px;
  border-radius: 6px;
  border: none;
  padding: 10px 16px;
  box-shadow: 0px 1px 1px 0px #00000014;
  font-weight: 500;
  font-size: 16px;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  transform: scale(0.95);
  transition: all 0.3s ease;
}
button:active {
  transform: scale(1);
  transition: all 0.3s ease;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

label {
  font-weight: 500;
}

select {
  height: 48px;
  width: 100%;
  /* border-color: var(--primary); */
  border: none;
  outline: none;
  padding: 0 10px;
  border-radius: 10px;
  font-size: 20px;
  background: var(--primary);
  color: var(--white);
}

#plan {
  color: var(--gray-4);
  background: var(--gray);
}

option {
  border: none;
  background: var(--gray);
  color: var(--gray-4);
  font-size: 18px;
}

header {
  background: var(--primary);
  height: 10vh;
  color: #ffffff;
  font-size: 16px;
  /* display: flex;
  align-items: center; */

  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

header .container {
  padding: 10px 20px;
}

header div a {
  display: block;
}

header div {
  height: 100%;
  /* background: green; */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  height: 45px;
  width: 160px;
}

.logo-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

nav ul {
  list-style: none;
  display: flex;
  /* display: none; */
  gap: 20px;
}
header .hamburger-menu {
  display: none;
}

@media screen and (max-width: 800px) {
  .stop-scroll {
    overflow: hidden;
  }

  header .container {
    /* display: none; */
    position: relative;
  }
  header nav {
    /* display: none; */
    position: absolute;
    /* background: #ffffff; */
    height: 100vh;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all 0.2s ease;
    z-index: 100;
  }
  header ul {
    font-size: 30px;
    background: #080808a8;
    /* background: #521478bb; */
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  header ul li:hover {
    /* color: var(--primary); */
    /* font-weight: 600; */
    transform: scale(1.1);
    border-bottom: 2px solid var(--white);
    transition: all 0.3s ease;
  }
  /* header ul li:active {
    color: var(--primary);
  } */

  header .hamburger-menu {
    display: block;
    /* background: #000; */
    display: flex;
    align-items: center;
    cursor: pointer;
    position: absolute;
    z-index: 1000;
    right: 20px;
  }

  header .hide-menu {
    transform: translateX(100%);
    transition: all 0.2s ease;
  }
  header .hide-icon {
    display: none;
  }
  .logo-container {
    width: 140px;
  }
}

@media screen and (max-width: 1200px) {
  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
  }
}
