@font-face {
  font-family: "Product Sans";
  src: local("Open Sans"), local("OpenSans"),
    url(https://fonts.gstatic.com/s/productsans/v5/HYvgU2fE2nRJvZ5JFAumwegdm0LZdjqr5-oayXSOefg.woff2) format("woff2");
}

::-webkit-scrollbar {
  width: 3px;
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #b9b9b9b9;
  border-radius: 3px;
}

html {
  scroll-behavior: smooth;
  height: 100%
}

body {
  background-color: black;
  color: white;
  margin: 0;
  height: 100%;
  overflow: overlay;
  font-family: 'Product Sans';
}

a {
  text-decoration: none;
}

.bg {
  background-image: url("img/background.png");
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
}

.cover {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding-left: 4%;
  padding-right: 4%;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
}

.heading {
  display: flex;
  text-align: center;
  font-size: 35px;
  font-weight: 200;
  color: white;
  padding: 1% 3% 1% 3%;
  border-radius: 15px;
  align-items: center;
  justify-content: center;
  background: #6060602b
}

.subheading {
  text-align: center;
  font-size: 20px;
  font-weight: 300;
  font-family: "Prompt";
}

.subheading a {
  color: #ff8a8a;
}

.subheading2 {
  margin-top: 20px;
  font-family: 'Prompt';
  font-size: 25px;
  letter-spacing: 12px;
}

.content {
  width: 100%;
  min-height: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  padding: 3% 10% 10% 10%;
  border-radius: 30px 30px 0px 0px;
  background: #282424;
}

.curve {
  border-radius: 30px 30px 0px 0px;
}

.container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 1.5%;
  border-radius: 20px;
  background: #181818;
  transition: 0.3s ease-out;
}

.title {
  font-size: 40px;
  color: white;
  font-weight: 600;
  text-align: center;
  margin-top: 12%;
}

.button {
  margin-top: 10%;
  margin-bottom: 10%;
  height: 35px;
  width: 35px;
  border-radius: 25px;
  font-family: "Prompt";
  font-weight: 500;
  font-size: 17px;
  color: #000000;
  background: #c7a3e5;
  transition: 0.2s ease-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.button img {
  height: 50%;
}

.footer {
  height: 10%;
  display: flex;
  box-sizing: border-box;
  background: #181818;
  align-items: center;
  justify-content: space-around;
  font-size: 110%;
  margin-bottom: 0;
}


/*Hover*/

.card:hover {
  transform: scale(1.1);
  background: #1f1f1f;
  transition: 0.3s ease-out;
}

.card:hover .button {
  color: black;
  background: linear-gradient(to right, #7bcfff, #8fffb8);
}

.subheading a:hover {
  color: #d95757
}


/* NAVBAR */

.logo {
  font-size: 30px;
  font-weight: 400;
  color: #ffbbee;
}

.logo:hover {
  color: #ce9ef8;
}

.navbar {
  z-index: 1;
  backdrop-filter: blur(4px);
  background-color: #282424a1;
  position: fixed;
  top: 0;
  display: flex;
  width: 100%;
  height: 8%;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  align-items: center;
  justify-content: space-between;
}

.navbar-b {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.navigate {
  display: flex;
  transition: 0.5s;
  margin: 0 0 0 0;
}

.navigate a {
  margin-left: 30px;
  font-size: 25px;
  flex-direction: row;
  color: #ffffff80;
}

.navigate a:hover {
  color: #ffffff;
}

.navigate .active {
  color: #ffffff;
}

.tg {
  display: flex;
  margin-left: 30px;
  align-items: center;
}

.tg img {
  height: 30px;
}



@media only screen and (max-width: 700px) {
  .navigate {
    display: none
  }
}

@media only screen and (min-width: 1030px) {

  .cover {
    align-items: center;
    justify-content: center;
  }

  .heading {
    text-align: center;
    font-size: 75px;
    font-weight: 600;
    letter-spacing: 2px;
  }

  .subheading {
    text-align: center;
    font-size: 30px;
  }

  .subheading2 {
    font-size: 35px;
  }

  .content {
    min-height: 90%;
    align-items: unset;
    border-radius: 0;
  }

  .curve {
    border-radius: 120px 120px 0px 0px
  }

  .container {
    flex-direction: row;
    justify-content: space-between;
  }

  .card {
    margin: 0.5%;
  }

  .title {
    font-size: 60px;
    margin-top: 15%;
  }

  .button {
    margin-top: 13%;
    margin-bottom: 13%;
    height: 45px;
    width: 45px;
    transition: 0.2s ease-out;
  }

  ::-webkit-scrollbar {
    width: 6px;
  }
}