* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  color: #444;
}
body {
  background-color: #2ecc71;
  height: 100%;

}
/* head */

.menu-btn {
  
  font-size: 23px;
  cursor: pointer;
  display: none;
}

.navbar {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 5%;
  padding-left: 2%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
  height: 80px;
  z-index: 999;
}

.navbar .logo {
  width: 150px;
  height: 80px;
}
.navbar .logo img {
  width: 150px;
  height: inherit;
}

.navbar .menu li {
  list-style: none;
  display: inline-block;
}

.navbar .menu li a {
  display: block;
  margin-left: 20px;
  border-bottom: 4px solid transparent;
  text-decoration: none;
  font-size: 20px;
  font-size: 20px;
  font-weight: bold;
  padding: 6px 13px;
  border-radius: 3px;
  color: #fff;

}

.navbar .menu li a.active,
.navbar .menu li a:hover {
  background-color: white;
  color: #27ae60;
}

.navbar .menu li a i {
  color: #055423;
}
.navbar .menu li a i:hover {
  color: #055423;
}
#content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  margin-top: 80px;
}
#mainhead{
  font-size: 2.5rem;
  margin-top: 40px;
  text-align: center;
  font-weight: bold;
  color: #fff;

}
.container {
  display: flex;
  width: 80%;
  border: 1px solid #ccc;
  border-radius: 7px;
  color: white;
  background-color: black;
  background: white;
}
hr{
    border: 1px solid #ccc; 
    margin: 0 15px;
}
.left {
  width: 25%;
  font-weight: bold;
}
.left h1 {
  padding: 30px 20px;
  color: #27ae71;

}
.methods {
  padding: 10px 0;
}
.methods div {
  padding: 7px 20px;
  cursor: pointer;
  font-size: 15px;
}
.methods div:hover {
  box-shadow: 0 0 10px rgba(172, 255, 47, 0.196);
}
.methods div::after {
  content: "";
  display: inline-block;
  color: #27ae71;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 4px 0 4px 4px;
  border-left-color: var(-fondy-success);
  margin-left: 10px;
}
.fa-solid {
  margin-right: 10px;
  font-size: 22px;
  color: #aaa;
}
.center {
  width: 50%;
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
  height: 70vh;
}
.center h1{
    text-align: center;
    line-height: 90px;
    color: #27ae71;
}
.center a {
  width: 100%;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.right {
  width: 25%;
}
.right h1 {
  padding: 30px 20px;
  font-weight: bold;
  color: #27ae71;

}
.details {
  padding: 20px 20px;
}
.right a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}
.card-details {
  padding: 20px 80px;
  display: none;
}
.card-details2 {
  padding: 20px 80px;
  display: none;
}
.card-details3 {
  padding: 20px 80px;
  display: none;
}
.active {
  display: block;
}
.card-details .c-number {
  width: 100%;
  border: 1px solid #aaa;
  border-radius: 3px;
  padding: 0 12px;
  margin-top: 10px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-details2 .c-number {
  width: 100%;
  border: 1px solid #aaa;
  border-radius: 3px;
  padding: 0 12px;
  margin-top: 10px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-details3 .c-number {
  width: 100%;
  border: 1px solid #aaa;
  border-radius: 3px;
  padding: 0 12px;
  margin-top: 10px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
input {
  border: none;
  border-radius: 3px;
  outline: 2px;
}

.c-details {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin: 20px 0;
}
.cc-exp {
  border: 1px solid #aaa;
  border-radius: 3px;
  height: 50px;
  margin-top: 10px;
  padding: 12px;
  width: 150px;
}
.c-details .cvv-box {
  border: 1px solid #aaa;
  margin-top: 10px;
  padding: 12px;
  height: 50px;
  border-radius: 3px;
  display: flex;
  justify-content: space-between;
  width: 108px;
}
.cc-cvv {
  width: 60px;
}
.email input {
  width: 100%;
  border: 1px solid #aaa;
  border-radius: 3px;
  padding: 12px;
  height: 50px;
  margin-top: 10px;
}
button {
  width: 100%;
  border: none;
  height: 50px;
  border-radius: 3px;
  margin-top: 30px;
  font-size: 18px;
  color: #fff;
  background-color: #2ecc71;
  transition: 0.5s;
}
button:hover {
  box-shadow: 0 0 0 4px #fff, 0 0 0 8px #27ae60;
  cursor: pointer;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .menu-btn {
    display: block;
    z-index: 999;
  }

  .menu-btn i.active::before {
    content: "\f00d";
  }

  .navbar {
    width: 100%;
    height: 50px;
  }
  .navbar .logo {
    width: 120px;
    height: inherit;
    margin-left: 15px;
  }
  .navbar .logo img {
    height: inherit;
    width: inherit;
  }

  .navbar .menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    width: 100%;
    left: -100%;
    top: -16px;
    bottom: 0;
    background-color: #055423;
    text-align: center;
    transition: all 0.3s ease;
  }
  .navbar .menu.active {
    padding: 0;
    padding-top: 80px;
    left: 0;
  }

  .navbar .menu li {
    margin-top: 20px;
    display: flex;
    justify-content: center;
  }

  .navbar .menu li a {
    margin: 10px 0;
    font-size: 25px;
  }
  .container {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin-top: 20px;
   
  }
  .left {
    width: 100%;
    text-align: center;
  }
  .center {
    width: 100%;

  }
  .right {
    text-align: center;
    width: 100%;
  }
  .right a {
    display: none;
  }
}

@media only screen and (min-width: 481px) and (max-width: 768px) {
  .menu-btn {
    display: block;
    z-index: 999;
  }

  .menu-btn i.active::before {
    content: "\f00d";
  }

  .navbar {
    width: 100%;
    height: 50px;
  }
  .navbar .logo {
    width: 120px;
    height: inherit;
    margin-left: 15px;
  }
  .navbar .logo img {
    height: inherit;
    width: inherit;
  }

  .navbar .menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    width: 100%;
    left: -100%;
    top: -16px;
    bottom: 0;
    background-color: #055423;
    text-align: center;
    transition: all 0.3s ease;
  }
  .navbar .menu.active {
    padding: 0;
    padding-top: 80px;
    left: 0;
  }

  .navbar .menu li {
    margin-top: 20px;
    display: flex;
    justify-content: center;
  }

  .navbar .menu li a {
    margin: 10px 0;
    font-size: 25px;
  }
  .container {
    display: flex;
    flex-direction: column;
    width: 80%;
    height: 100%;
    margin-top: 20px;
   
  }
  .left {
    width: 100%;
    text-align: center;
  }
  .center {
    width: 100%;
    height: 100%;

  }
  .right {
    text-align: center;
    width: 100%;
    margin-top: 50px;
  }
  .right a {
    display: none;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1028px) {
  .menu-btn {
    display: block;
    z-index: 999;
  }

  .menu-btn i.active::before {
    content: "\f00d";
  }

  .navbar {
    width: 100%;
    height: 70px;
  }
  .navbar .logo {
    width: 120px;
    height: inherit;
    margin-left: 15px;
  }
  .navbar .logo img {
    height: inherit;
    width: inherit;
  }

  .navbar .menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    width: 100%;
    left: -100%;
    bottom: 0;
    background-color: #055423;
    text-align: center;
    transition: all 0.3s ease;
  }
  .navbar .menu.active {
    padding: 0;
    padding-top: 80px;
    left: 0;
  }

  .navbar .menu li {
    margin-top: 20px;
    display: flex;
    justify-content: center;
  }

  .navbar .menu li a {
    margin: 10px 0;
    font-size: 25px;
  }
  body{
    height: 100%;
  }

  .container {
    display: flex;
    flex-direction: column;
    width: 80%;
    height: 100%;
    margin-top: 20px;
   
  }
  .left {
    width: 100%;
    text-align: center;
  }
  .center {
    width: 100%;
    height: 100%;
  }
  .right {
    text-align: center;
    width: 100%;
    margin-top: 50px;
  }
  .right a {
    display: none;
  }
}
