 .packages {
    margin: 20px;
    width: 300px;
    padding-bottom: 1.5em;
    height: 100%;
    background-color: #1e2321;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 5px;
    border: 1px solid #33333352;
    box-shadow: 2px 0 10px 0 rgb(0 0 0 / 50%);
    transition: background 0.3s,border 0.3s,border-radius 0.3s,box-shadow 0.3s;
    flex-wrap: wrap;
    color: #f4f4f4;
  }
  
  h1,
  h2 {
    font-size: 2.2em;
  }
  
  .list li {
    font-size: 20px;
    list-style: none;
    border-bottom: 1px solid #121212;
    padding-inline-start: 0;
    border-width: 1px;
    padding: 3px;
    text-align: left;
  }
  
  .first {
    margin-top: 40px;
    border-top: 1px solid #f4f4f4;
  }
  
  .list {
    width: 80%;
  }
  
  ol,
  ul {
    padding: 0;
  }
  
  .top {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  input,
  label {
    display: inline-block;
    vertical-align: middle;
    margin: 10px 0;
  }
  
  .button {
    padding: 10px 30px;
    text-decoration: none;
    font-size: 1.4em;
    margin: 15px 15px;
    border-radius: 50px;
    color: #f4f4f4;
    transition: all 0.3s ease 0s;
  }
  
  .button:hover {
    transform: scale(1.2);
  }
  
  .button1 {
    background-color: #00cc99;
    box-shadow: 0 0 10px 0 #00cc9957 inset, 0 0 20px 2px #00cc993d
  }
  
  .button2 {
    background-color: #ff007c;
    box-shadow: 0 0 10px 0 #ff007c29 inset, 0 0 20px 2px #ff007c26
  }
  
  .button3 {
    background-color: #ffae42;
    box-shadow: 0 0 10px 0 #ffae4238 inset, 0 0 20px 2px #ffae422b;
  }
  
  .switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
  }
  
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1e2321;
    -webkit-transition: 0.4s;
  
    box-shadow: 2px 6px 25px #1e2321;
    transform: translate(0px, 0px);
    transition: 0.6s ease transform, 0.6s box-shadow;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  
  input:checked + .slider {
    background-color: #50bfe6;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #50bfe6;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }
  
  .package-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  .profile-card-6 {
    max-width: 100%;
    background-color: #FFF;
    border-radius: 5px;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    margin: 10px auto;
    cursor: pointer;
    height:400px
}
.profile-card-6 img {
    transition: all 0.15s linear;
    width:100%;
    border: 2px solid goldenrod;
}
.profile-card-6 .profile-name {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 25px;
    font-weight: bold;
    padding: 35px 58px;
    background: linear-gradient(140deg, rgba(0, 0, 0, 0.4) 50%, rgba(255, 255, 0, 0) 50%);
    transition: all 0.15s linear;
}
.profile-card-6 .profile-position {
    position: absolute;
    color: rgba(255, 255, 255, 0.4);
    left: 30px;
    top: 100px;
    transition: all 0.15s linear;
}
.profile-card-6 .profile-overview {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 50%, rgba(255, 255, 0, 0));
    padding: 50px 0px 20px 0px;
    transition: all 0.15s linear;
}
.profile-card-6 .profile-overview h3 {
    font-weight: bold;
}
.profile-card-6 .profile-overview p {
    color: rgba(255, 255, 255, 0.7);
}
.profile-card-6:hover img {
    filter: brightness(80%);
}
.profile-card-6:hover .profile-name {
    padding-left: 25px;
    padding-top: 20px;
}
.profile-card-6:hover .profile-position {
    left: 40px;
}
.profile-card-6:hover .profile-overview {
    padding-bottom: 25px;
}
.center_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.profile-name span{
    position: absolute;
        right: 15%;
        top: 8%;
}