/* Responsiveness design format*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

li,
a {
  cursor: pointer;
}

body {
  display: grid;
  grid-template-areas:
    "navbar"
    "content"
    "footer";
  grid-template-rows: auto 1fr auto;
  height: 100vh;
}

/* navbar */
#navbar {
  display: flex;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background: #333;
  color: #fff;
  padding: 10px;
  z-index: 1;
}

.logo-container,
.center,
.buttons {
  display: flex;
}

.logo-container {
  font-size: 24px;
  color: #F5F5DC;
  font-size: 40px;
  align-items: center;
}

.center {
  align-items: center;
}

.center ul {
  display: flex;
  justify-content: space-around;
  list-style: none;
  padding: 0;
}

.center ul li {
  position: relative;
}

.center ul li a {
  display: block;
  padding: 0 20px;
  color: white;
  text-decoration: none;
  font-size: 18px;
  text-align: center;
}

.dropdown-content {
  display: hide;
  position: absolute;
  background-color: gray;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  color: red;
  background-color: blue;

}

.dropdown:hover .dropdown-content {
  display: block;
}

.buttons {
  align-items: center;
  display: flex;
  gap: 20px;
}

.login {
  padding: 5px 15px;
  color: #00b894;
  border: 2px solid #00b894;
  border-radius: 5px;
  cursor: pointer;
}

.start-free {
  color: white;
  border: 2px solid #00b894;
  background-color: #00b894;
  padding: 5px 20px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

/* navbar */


/* content */

#content {
  grid-area: content;
  padding: 10px;
  display: grid;
  background-image: url("https://th.bing.com/th/id/R.b4dc61c421f0bc2ec32ca518dd2a4a85?rik=LWgZJkNo3qgkEA&riu=http%3a%2f%2favante.biz%2fwp-content%2fuploads%2fTwo-colours-wallpaper%2fTwo-colours-wallpaper19.jpg&ehk=li%2blV%2fp4kArUWndKK4SDAlkW5UPRGILwUHVYqKejNh0%3d&risl=&pid=ImgRaw&r=0");
  background-size: cover;
  background-repeat: no-repeat;
}

.grid-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
}

/**Beginning of Pricing-tags**/
.wrapper {
  max-width: 1090px;
  width: 100%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.wrapper .table {
  background: #fff;
  width: calc(33% - 20px);
  padding: 30px 30px;
  position: relative;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.table .price-section {
  display: flex;
  justify-content: center;
}

.table .price-area {
  height: 120px;
  width: 120px;
  border-radius: 50%;
  padding: 2px;
}

.price-area .inner-area {
  height: 100%;
  width: 100%;
  border-radius: 50%;
  border: 3px solid #fff;
  line-height: 117px;
  text-align: center;
  color: #fff;
  position: relative;
}

.price-area .inner-area .text {
  font-size: 25px;
  font-weight: 400;
  position: absolute;
  top: -10px;
  left: 17px;
}

.price-area .inner-area .price {
  font-size: 45px;
  font-weight: 500;
  margin-left: 16px;
}

.table .package-name {
  width: 100%;
  height: 2px;
  margin: 35px 0;
  position: relative;
}

.table .package-name::before {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 25px;
  font-weight: 500;
  background: #fff;
  padding: 0 15px;
  transform: translate(-50%, -50%);
}

.table .features li {
  margin-bottom: 15px;
  list-style: none;
  display: flex;
  justify-content: space-between;
}

.features li .list-name {
  font-size: 17px;
  font-weight: 400;
}

.features li .icon {
  font-size: 15px;
}

.features li .icon.check {
  color: #2db94d;
}

.features li .icon.cross {
  color: #cd3241;
}

.table .btn {
  width: 100%;
  display: flex;
  margin-top: 35px;
  justify-content: center;
}

.table .btn button {
  width: 80%;
  height: 50px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  border: none;
  outline: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.table .btn button:hover {
  border-radius: 5px;
}

.basic .features li::selection {
  background: #ffd861;
}

.basic ::selection,
.basic .price-area,
.basic .inner-area {
  background: #ffd861;
}

.basic .btn button {
  border: 2px solid #ffd861;
  background: #fff;
  color: #ffd861;
}

.basic .btn button:hover {
  background: #ffd861;
  color: #fff;
}

.premium ::selection,
.premium .price-area,
.premium .inner-area,
.premium .btn button {
  background: #a26bfa;
}

.premium .btn button:hover {
  background: #833af8;
}

.ultimate ::selection,
.ultimate .price-area,
.ultimate .inner-area {
  background: #43ef8b;
}

.ultimate .btn button {
  border: 2px solid #43ef8b;
  color: #43ef8b;
  background: #fff;
}

.ultimate .btn button:hover {
  background: #43ef8b;
  color: #fff;
}

.basic .package-name {
  background: #ffecb3;
}

.premium .package-name {
  background: #d0b3ff;
}

.ultimate .package-name {
  background: #baf8d4;
}

.basic .package-name::before {
  content: "Basic";
}

.premium .package-name::before {
  content: "Premium";
  font-size: 24px;
}

.ultimate .package-name::before {
  content: "Ultimate";
  font-size: 24px;
}

::selection {
  color: #fff;
}

.table .ribbon {
  width: 150px;
  height: 150px;
  position: absolute;
  top: -10px;
  left: -10px;
  overflow: hidden;
}

.table .ribbon::before,
.table .ribbon::after {
  position: absolute;
  content: "";
  z-index: -1;
  display: block;
  border: 7px solid #4606ac;
  border-top-color: transparent;
  border-left-color: transparent;
}

.table .ribbon::before {
  top: 0px;
  right: 15px;
}

.table .ribbon::after {
  bottom: 15px;
  left: 0px;
}

.table .ribbon span {
  position: absolute;
  top: 30px;
  right: 0;
  transform: rotate(-45deg);
  width: 200px;
  background: #a26bfa;
  padding: 10px 0;
  color: #fff;
  text-align: center;
  font-size: 17px;
  text-transform: uppercase;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.12);
}

/**End of Pricing-tags**/


/**Beginning of column-direction**/

.column-direction {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.column {
  background-color: rgb(209, 215, 220);
  margin-bottom: 10px;
  color: black;
  border-radius: 9px;
  padding: 20px;
  width: 80%;
  /* Adjust as needed */
  display: flex;
  justify-content: space-between;
}

h1 {
  margin-bottom: 20px;
}

p {
  font-weight: lighter;
}

.right {
  padding-top: 10px;
}

.right h3 {
  font-weight: 1000;
  font-size: 1.2rem;
}

.left a {
  text-decoration: none;
  color: black;
}

.left i {
  font-size: .75rem;
}


/**End of column-direction**/

/**Beginning of blue-container**/

.blue-container {
  margin-top: 20px;
  justify-content: space-between;
  background-color: lightskyblue;
  width: 55%;
  padding: 50px 0 50px 15px;
}

h4 {
  color: black;
  font-size: 1.5rem;
}

h4 span {
  color: #00b894;
}

.blue-container button {
  color: white;
  border: 2px solid #00b894;
  background-color: #00b894;
  padding: 10px 40px;
  font-weight: bold;
}

/**End of blue-container**/

/**Beginning of Questions**/
.questions {
  margin: 20px 0;
}

.questions h1 {
  text-align: center;
  color: #00b894;
}

.selects {
  display: grid;
  gap: 10px 0;
}

#dropdown {
  border-radius: 5px;
  border: none;
  font-size: 1.3rem;
  color: black;
}

option {
  font-style: italic;
  font-weight: 300;
  font-size: 15px;
}

/**End of Questions**/


/* content */


/* footer */

footer {
  grid-area: footer;
  background-color: #F5F5DC;
}

.footer {
  color: black;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  padding: 10px;
}

.row {
  background-color: lightblue;
  border-radius: 10px;
}

.bonsai {
  padding-left: 20px;
}

.space {
  padding-top: 20px;
}

.footer h2 {
  color: #333;
  padding-bottom: 20px;
}

.footer ul {
  list-style-type: none;
  padding: 0;
}

.footer ul li {
  padding: 5px 0;
}

.last {
  padding-top: 20px;
}

#template {
  padding-bottom: 15px;

}

#last-dropdowns,
#comparisons {
  border: none;
  background-color: transparent;
  padding: 5px 0 5px 0;
  font-size: .9rem;
}

#pricing {
  color: #00b894;
}

.black {
  display: flex;
  justify-content: right;
  padding-right: 20px;
  background-color: #F5F5DC;
}

.black span {
  font-size: large;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

/* footer */

@media (max-width: 1020px) {
  .wrapper .table {
    width: calc(50% - 20px);
    margin-bottom: 40px;
  }

  .column {
    flex-direction: column;
  }
}


@media (max-width: 900px) {
  .center ul li a {
    padding: 5px 7px;
  }

  .column {
    width: 90%;
  }

  .footer {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 690px) {
  #navbar {
    flex-direction: column;
    align-items: center;
  }

  .logo-container,
  .center,
  .buttons {
    justify-content: space-around;
    width: 100%;
  }

  .center ul {
    flex-direction: column;
  }

  .center ul li a {
    padding: 5px 25px;
  }

  .wrapper .table {
    width: 100%;
  }

  .column {
    width: 100%;
  }

  #dropdown {
    font-size: 15px;
  }

  option {
    font-size: 10px
  }

  h1 {
    font-size: 18px;
  }

  .footer {
    justify-content: center;
    grid-template-columns: 1fr;
  }

  .row {
    padding-bottom: 40px;
  }
}

/* Responsiveness design format*/