* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
}
html {
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
.fa-solid {
  z-index: 0;
}
.fa-chart-simple {
  z-index: -1;
}
.fa-cloud-arrow-down {
  z-index: -1;
}
.fa-infinity {
  z-index: -1;
}
.fa-clock {
  z-index: -1;
}
.fa-medal {
  z-index: -1;
}
a {
  text-decoration: none;
  color: white;
}
#arrow i {
  display: inline-block;
  transition: all linear 0.1s;
}
#arrow:hover i {
  transform: translateX(35%);
}
@font-face {
  font-family: gotham-light;
  src: url(fonts/Gotham\ Light.otf);
}
@font-face {
  font-family: gotham-medium;
  src: url(fonts/Gotham\ Medium.otf);
}
@font-face {
  font-family: gotham-regular;
  src: url(fonts/Gotham\ Regular.otf);
}
@font-face {
  font-family: gotham-bold;
  src: url(fonts/Gotham\ Bold.otf);
}
@font-face {
  font-family: gotham-book;
  src: url(fonts/Gotham\ Book.otf);
}
@font-face {
  font-family: gotham-thin;
  src: url(fonts/Gotham\ Thin.otf);
}
@font-face {
  font-family: euclid-bold;
  src: url(fonts/Euclid\ Circular\ A\ Bold.ttf);
}
@font-face {
  font-family: euclid-light;
  src: url(fonts/Euclid\ Circular\ A\ Light.ttf);
}
@font-face {
  font-family: euclid-medium;
  src: url(fonts/Euclid\ Circular\ A\ Medium.ttf);
}
@font-face {
  font-family: euclid-regular;
  src: url(fonts/Euclid\ Circular\ A\ Regular.ttf);
}
@font-face {
  font-family: euclid-semibold;
  src: url(fonts/Euclid\ Circular\ A\ SemiBold.ttf);
}
body {
  font-family: gotham-light;
  width: 100%;
  background-color: rgb(0, 0, 0);
}
nav {
  background: black;
  height: 50px;
  width: 100%;
}
#logo {
  width: 3.1rem;
  margin-top: 0.2rem;
  margin-left: -1.7rem;
}
nav ul {
  float: right;
  margin-right: 20px;
  margin-top: -1.8rem;
}
nav ul li {
  display: inline-block;
  line-height: 80px;
  margin: 0 5px;
  text-align: left;
  padding-left: 1rem;
}
nav ul li a {
  color: white;
  font-size: 1rem;
  letter-spacing: 0px;
  padding: 7px 13px;
  border-radius: 3px;
  text-transform: uppercase;
  text-decoration: none;
}
.checkbtn {
  font-size: 28px;
  color: rgba(255,255,255,90%);
  float: right;
  line-height: 50px;
  margin-right: 40px;
  cursor: pointer;
  display: none;
}
.fa-bars-1 {
  font-size: 1rem;
  border-radius: 50%;
}
#check {
  display: none;
}
/*=== FAQs ===*/
.accordion {
  width: 90%;
  max-width: 1000px;
  margin: 2rem auto;
  padding-bottom: 3rem;
}
.accordion-item {
  background-color: unset;
  color: rgba(255,255,255,100%);
  margin: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,10%);
}
.accordion-item-header {
  padding: 0rem 5rem 0.5rem 0rem;
  min-height: 3.5rem;
  line-height: 1.28rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}
.accordion-item-header::after {
  content: "\002B";
  font-size: 2rem;
  position: absolute;
  right: 1rem;
}
.accordion-item-header.active::after {
  content: "\2212";
}
.accordion-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.accordion-item-body-content {
  padding: 1rem 1rem 1rem 0rem;
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.4rem;
  border-top: 1px solid;
  border-image: linear-gradient(to right, transparent, rgba(255,255,255,20%), transparent) 1;
}

/*=== SCREEN WIDTH MAX: 499PX ===*/
@media (max-width: 499px) {
  /*=== NAV ===*/
  nav {
    background: radial-gradient(ellipse at top, rgba(26, 93, 201,10%), transparent);
    height: 10rem;
    width: 100%;
  }
  #logo {
    margin-left: -3rem;
  }
  .checkbtn {
    display: block;
    position: relative;
    z-index: 999;
  }
  .fa-bars-1 {
    transition: all ease-in 0.08s;
    padding: 0.45rem 0.6rem;
    margin-right: -1.08rem;
  }
  .ul {
    position: absolute;
    width: 100%;
    height: 100vh;
    background: black;
    top: 0px;
    left: -100%;
    text-align: center;
    transition: all .5s;
    padding: 3.3rem 0 0 0;
  }
  nav ul li {
    display: block;
    margin: 30px 0;
    line-height: 30px;
  }
  nav ul li:first-child {
    padding-top: 1.3rem;
    border-top: 1px solid rgba(255,255,255,7%);
  }
  nav ul li a {
    font-size: 20px;
  }
  #check:checked ~ ul {
    left: 0;
  }
  #nav-plans {
    position: absolute;
    margin-top: 0.9rem;
    margin-left: -5rem;
    padding: 0.3rem 1rem;
    background: rgba(163, 177, 214,30%);
    border: 1px solid rgba(255,255,255,0%);
    border-radius: 100px;
    color: rgba(255,255,255,100%);
    transition: all ease-in 0.1s;
  }

  /*=== HEADER ===*/
  header {
    background: rgba(0,0,0,2%);
    margin-bottom: 3rem;
  }
  .header-container {
    display: block;
  }
  .first {
    padding: 0 1rem;
    max-width: 600px;
  }
  .header-2-internals {
    text-align: left;
  }
  .header-2-internals h2 {
    display: none;
  }
  .header-2-internals h1 {
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    line-height: 45px;
    font-weight: 700;
    color: white;
    max-width: 600px;
  }
  .header-2-internals p {
    line-height: 26px;
    color: rgb(203, 208, 223);
    font-weight: 400;
    font-size: 1rem;
    margin: 0 auto 2rem auto;
    font-family: 'Inter', sans-serif;
  }
  .header-2-internals:first-child {
    display: block;
    margin: 0 auto;
  }
  #faqs-button-1 {
    padding: 0.8rem 1rem;
    text-align: center;
    color: rgba(255,255,255,100%);
    background: unset;
    transition: all ease-in 0.1s;
    border-radius: 100px;
    border: unset;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    width: 60%;
    max-width: 500px;
    text-transform: uppercase;
    background-image: linear-gradient(to right, #f04916, #9903e4);
    cursor: pointer;
  }
  .or {
    display: block;
    margin: 1rem auto;
    text-align: left;
    color: white;
  }
  #faqs-button-2 {
    padding: 0.8rem 1rem;
    text-align: center;
    color: rgba(255,255,255,100%);
    background: unset;
    transition: all ease-in 0.1s;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    width: 80%;
    max-width: 500px;
    text-transform: uppercase;
    border: 1px solid #813ca4;
    background: unset;
    cursor: pointer;
  }
  .course-container {
    display: block;
    margin: 1rem auto 0 auto;
    text-align: left;
    color: rgb(203, 208, 223);
    width: 95%;
    font-size: 1.2rem;
    background: rgba(163, 177, 214,7%);
    border-radius: 10px;
    /*border-top: 1px solid;
    border-image: linear-gradient(to right, transparent, #9903e4, #9903e4, transparent) 1;*/
    border: unset;
  }
  .course-container h3 {
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 1.2px;
    font-weight: 500;
    padding-bottom: 1rem;
    border-bottom: 7px solid rgba(0,0,0,100%);
    padding: 1.5rem 0 1rem 2rem;
  }
  .course-container h4 {
    font-size: 1rem;
    font-weight: 400;
    padding-bottom: 1rem;
    line-height: 25px;
    padding: 1rem 2rem 1rem 2rem;
  }
  .course-container li {
    list-style: none;
    line-height: 45px;
    padding-left: 2rem;
  }
  .course-container i {
    display: block;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    position: absolute;
    margin-top: 0.78rem;
  }
  .fa-chart-simple {
    padding-left: 0.2rem;
  }
  .fa-clock {
    padding-left: 0.15rem;
  }
  .fa-medal {
    padding-left: 0.2rem;
  }
  .course-container h5 {
    font-size: 1rem;
    margin-left: 3rem;
    font-weight: 400;
  }
  .course-container li:last-child {
    padding-bottom: 2rem;
  }

  /*=== SECTION 1 ===*/
  #section-1 {
    background: black;
    display: block;
    margin: 1rem auto 0 auto;
  }
  #section-1 h2 {
    line-height: 43px;
    color: white;
    font-size: 2rem;
    display: block;
    margin: 7rem auto 1.3rem auto;
    text-align: center;
    padding: 0 2rem;
  }
  #section-1 h5 {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 28px;
    color: rgb(203, 208, 223, 100%);
    display: block;
    margin: 0 auto;
    text-align: center;
    width: 90%;
    max-width: 530px;
  }
  .container-1 {
    display: block;
    margin: 6rem auto 4rem auto;
  }
  .items {
    display: block;
    margin: 0 auto;
    max-width: 920px;
  }
  .items:first-child {
    width: 93%;  
  }
  .fa-gear {
    color: rgba(76, 207, 175,100%);
    background: rgba(76, 207, 175,10%);
    padding: 0.8rem;
    border-radius: 100px;
  }
  .container-1 h3 {
    margin: 1rem 0 1rem 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(76, 207, 175,100%);
  }
  .container-1 h4 {
    text-align: left;
    color: white;
    font-size: 1.9rem;
  }
  #section-1 .container-1 .items p {
    color: rgb(203, 208, 223);
  }
  #section-1 .container-1 .items .list-1 ul p {
    margin-top: 1rem;
    color: rgb(203, 208, 223);
    line-height: 28px;
    font-size: 1.2rem;
  }
  #section-1 .container-1 .items .list-1 ul {
    padding-top: 1rem;
  }
  #section-1 .container-1 .items .p-1 {
    margin-top: 1rem;
    color: rgb(203, 208, 223);
    line-height: 28px;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,20%);
    padding-bottom: 2rem;
    border-image: linear-gradient(to right, transparent, rgba(255, 255, 255, 20%), transparent) 1;
  }
  #pricing-button-1 {
    background: rgb(65, 176, 148);
    border: rgb(65, 176, 148);
    margin-top: 1.5rem;
    width: 200px;
  }
  #pricing-button-1:hover {
    background: rgb(50, 136, 115);
  }

  /*=== SECTION 2 ===*/
  #section-2 {
    background: black;
    margin-bottom: 6rem;
  }
  .container-2 {
    display: block;
    margin: 0 auto;
    margin-top: 5rem;
  }
  .fa-play {
    color: rgb(158, 124, 255);
    background: rgba(158, 124, 255, 15%);
    padding: 0.7rem 0.8rem;
    border-radius: 100px;
  }
  .container-2 h3 {
    margin: 1rem 0 1rem 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: rgb(158, 124, 255);
  }
  .container-2 h4 {
    text-align: left;
    color: white;
    font-size: 1.9rem;
  }
  .container-2 p {
    margin-top: 1rem;
    color: rgb(203, 208, 223);
    line-height: 28px;
    font-size: 1.2rem;
  }
  .fa-check-1 {
    color: rgba(76, 207, 175,100%);
    position: absolute;
    margin-top: 0.3rem;
  }
  #section-2 .container-2 .items .list-2 ul p {
    margin-top: 1rem;
    color: rgb(203, 208, 223);
    line-height: 28px;
    font-size: 1.2rem;
    margin-left: 2rem;
  }
  #section-2 .container-2 .items .price-wrap {
    line-height: 10px;
  }
  #section-2 .container-2 .items .price-wrap p:first-child {
    color: rgba(203, 208, 223, 60%);
    font-size: 1.1rem;
    padding: 0;
    margin-top: 2rem;
  }
  #section-2 .container-2 .items .price-wrap p:nth-child(2) {
    color: rgba(203, 208, 223, 100%);
    padding-top: 1rem;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
  }
  #section-2 .container-2 .items .price-wrap p:last-child {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 3px;
    color: black;
    background: rgba(76, 207, 175,100%);
    width: 7.7rem;
    line-height: 22px;
    margin-top: 1.5rem;
  }

  /*=== SECTION 3 ===*/
  #section-3 {
    margin-top: -0.2rem;
  }
  .fa-house-user {
    color: rgb(209, 114, 180);
    background: rgba(215, 86, 176, 0.15);
    padding: 0.8rem;
    border-radius: 100px;
  }
  .container-3 {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 920px;
  }
  .container-3 h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 1rem 0 1rem 0;
    color: rgb(207, 109, 177);
  }
  .container-3 h4 {
    text-align: left;
    color: white;
    font-size: 1.9rem;
  }
  #section-3 .container-3 .items-3 .list-3 ul p {
    margin-top: 1rem;
    color: rgb(203, 208, 223);
    line-height: 28px;
    font-size: 1.2rem;
  }

  /*=== TESTIMONIALS ===*/
  #testimonials {
    display: block;
    margin: 8rem auto 10rem auto;
  }
  .test-title {
    color: white;
    text-align: center;
    display: block;
    margin: 0 auto 2rem auto;
  }
  .test-title h3 {
    font-size: 0.8rem;
    color: rgb(158, 124, 255);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    padding-bottom: 1rem;
  }
  .test-title h2 {
    font-size: 1.7rem;
    width: 100%;
    max-width: 550px;
    text-align: center;
    display: block;
    margin: 0 auto;
    padding: 0 1rem;
  }
  .test-title p {
    color: rgba(203, 208, 223,70%);
    font-size: 1rem;
    width: 90%;
    text-align: center;
    display: block;
    margin: 0 auto;
    padding: 1rem 2rem 0 2rem;
  }
  .testimonial-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: rgba(163, 177, 214,7%);
    color: white;
    border-radius: 15px;
    margin: 3rem auto 0 auto;
    padding: 1.5rem;
    width: 90%;
    position: relative;
  }
  .testimonial-container:first-child {
    background: unset;
    padding: 0;
    margin: 0 auto;
  }
  .stars {
    font-size: 10px;
  }
  .testimonial {
    display: flex;
    align-items: center;
    text-align: left;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 26px;
    margin: 0;
  }
  .user {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .username {
    padding-bottom: 0.2rem;
  }
  .role {
    padding-bottom: 0.4rem;
    color: rgba(255,255,255,70%);
  }
  .user .user-image {
    border-radius: 50%;
    height: 50px;
    width: 50px;
    object-fit: cover;
  }
  .user .role {
    margin: 0;
    font-size: 12px;
  }
  .progress-dots {
    display: flex;
    position: absolute;
    margin: 0 auto;
    justify-content: center;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 120%;
    gap: 0.5rem;
  }
  .progress-dot {
    width: 10px;
    height: 10px;
    background-color: rgba(158, 124, 255,100%);
    border-radius: 50%;
  }
  .progress-dot.active {
    background-color: rgb(73, 57, 117);
  }
  .btn {
    position: absolute;
    top: -15%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(163, 177, 214,7%);
    border: 1px solid rgba(163, 177, 214,0%);
    border-radius: 50%;
    font-size: 10px;
    cursor: pointer;
    transition: 0.1s ease;
    color: white;
  }
  .btn:hover {
    background: unset;
    color: white;
    border: 1px solid rgba(42, 46, 57,80%);
  }
  #btn-prev {
    left: 150px;
  }
  #btn-next {
    right: 150px;
  }

  /*=== SECTION 4 ===*/
  .plans-container {
    display: block;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    margin-top: 6rem;
  }
  #plans .plans-container .plans-title {
    font-size: 2rem;
    letter-spacing: 0;
    font-weight: 600;
    text-align: center;
    display: block;
    margin: 0 auto;
    color: rgba(255,255,255,100%);
  }
  #plans .plans-container .first-para {
    width: 90%;
    line-height: 27px;
    max-width: 580px;
    font-size: 1.1rem;
    font-weight: 400;
    text-align: center;
    display: block;
    margin: 1rem auto 2rem auto;
    color: rgba(203, 208, 223,70%);
  }
  .ready-container {
    color: white;
    display: flex;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255,255,255,30%);
    border-radius: 10px;
    width: 60%;
    max-width: 390px;
    padding: 0.235rem 0.3rem 0.3rem 0.3rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .ready {
    padding: 0.5rem;
    border-radius: 5px;
    width: 100%;
  }
  .ready:first-child {
    background-color: rgba(42, 46, 57,70%);
    font-weight: 700;
  }
  .four-p {
    text-align: left;
    display: block;
    text-align: center;
    margin: 1rem auto 0 auto;
    font-family: 'Inter', sans-serif;
    line-height: 22px;
    font-size: .85rem;
    color: rgba(255,255,255,80%);
    width: 90%;
    max-width: 400px;
    transition: all ease-in 0.3s;
  }
  .four-p a:hover {
    color: rgba(255,255,255,80%);
  }
  .down-arrow {
    margin-bottom: 2rem;
  }
  .fa-arrow-down-long {
    color: #b2b5be;
    display: block;
    text-align: center;
    border: 1px solid #b2b5be;
    padding: 0.35rem 0.55rem;
    border-radius: 50%;
    font-size: 0.8rem;
    margin-top: 0.221rem;
  }
  .down-arrow {
    margin-bottom: 2rem;
  }
  .down-arrow button {
    background: unset;
    border: unset;
    display: flex;
    margin: 1rem auto;
    cursor: unset;
    color: white;
    background: #132042;
    border-radius: 9px;
    padding: 0rem 1rem;
  }
  .down-arrow button p {
    line-height: 33px;
    padding-right: 0rem;
    text-align: left;
  }
  .ready-container {
    color: white;
    display: flex;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255,255,255,30%);
    border-radius: 10px;
    width: 60%;
    max-width: 390px;
    padding: 0.235rem 0.3rem 0.3rem 0.3rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .ready {
    padding: 0.5rem;
    border-radius: 5px;
    width: 100%;
  }
  .ready:first-child {
    background-color: rgba(42, 46, 57,70%);
    font-weight: 700;
  }
  .four-h2 {
    text-align: center;
    display: block;
    margin: 0 auto;
    font-family: euclid-semibold;
    letter-spacing: -0.8px;
    line-height: 45px;
    font-size: 2.6rem;
    color: rgba(255,255,255,100%);
    margin-bottom: 1.5rem;
  }
  .four-p {
    text-align: left;
    display: block;
    text-align: center;
    margin: 1rem auto 0 auto;
    font-family: 'Inter', sans-serif;
    line-height: 22px;
    font-size: .85rem;
    color: rgba(255,255,255,80%);
    width: 90%;
    max-width: 400px;
    transition: all ease-in 0.3s;
  }
  .four-p a:hover {
    color: rgba(255,255,255,80%);
  }
  .fa-arrow-down-long {
    color: #b2b5be;
    display: block;
    text-align: center;
    border: 1px solid #b2b5be;
    padding: 0.35rem 0.55rem;
    border-radius: 50%;
    font-size: 0.8rem;
    margin-top: 0.221rem;
  }
  .down-arrow {
    margin-bottom: 2rem;
  }
  .down-arrow button {
    background: unset;
    border: unset;
    display: flex;
    margin: 1rem auto;
    cursor: unset;
    color: white;
    background: #132042;
    border-radius: 9px;
    padding: 0rem 1rem;
  }
  .down-arrow button p {
    line-height: 33px;
    padding-right: 0rem;
  }
  .container-aft-3 {
    display: block;
    margin: 2rem auto 0 auto;
  }
  .container-aft-3 h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.7rem;
    font-family: 'Inter', sans-serif;
  }
  .anchor {
    color: rgba(12, 14, 20,100%);
  }
  .container {
    margin: 0 auto;
    padding: 0;
    margin-top: 0rem;
    overflow-x: scroll;
  }
  .container::-webkit-scrollbar {
    display: none;
  }
  .panel {
    background-color: unset;
    border-radius: 25px;
    width: 69rem;
    z-index: 10;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
  .panel::-webkit-scrollbar {
    display: none;
  }
  .pricing-table {
    color: rgba(255,255,255,10%);
    display: flex;
    flex-direction: row;
  }
  #verified {
    width: 1.2rem;
  }
  .pricing-plan {
    color: rgba(255,255,255,10%);
    padding: 25px;
    min-width: 17rem;
  }
  .pricing-plan::-webkit-scrollbar {
    display: none;
  }
  .pricing-plan:first-child {
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    border-left: 1px solid rgba(255,255,255,0%);
  }
  .pricing-plan:nth-child(2) {
    border-radius: 25px;
    background: rgba(26, 93, 201, 10%);
  }
  .pricing-plan:last-child {
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
  }
  .prices {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    color: rgba(255,255,255,100%);
  }
  .pricing-plan .span {
    color: rgba(255,255,255,50%);
    font-size: 0.8rem;
  }
  .pricing-plan {
    color: rgba(255,255,255,10%);
    width: 10rem;
    border-right: 1px solid rgba(255,255,255,0%);
    border-top: 1px solid rgba(255,255,255,0%);
    border-bottom: 1px solid rgba(255,255,255,0%);
  }
  .pricing-img {
    margin-bottom: 25px;
    max-width: 100%;
  }
  .pricing-header {
    color: rgba(255,255,255,100%);
    font-size: 1.9rem;
    font-weight: 500;
    letter-spacing: 0.7px;
    text-align: center;
    padding-bottom: 1.4rem;
    padding-top: 1.6rem;
  }
  .pricing-plan h4 {
    font-size: 0.9rem;
    font-weight: 200;
    line-height: 22px;
    color: rgba(255,255,255,100%);
    text-align: center;
    margin-top: -0.9rem;
    padding-bottom: 1.2rem;
    font-family: 'Inter', sans-serif;
  }
  .prices {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1.6rem;
  }
  .pricing-features {
    color: rgba(255,255,255,60%);
    font-weight: 500;
    letter-spacing: 1px;
    padding-right: 1rem;
  }
  .pricing-features-item {
    font-size: 12px;
    line-height: 1.5;
    padding: 10px 0;
    text-align: left;
  }
  .pricing-price {
    color: #016FF9;
    display: block;
    font-size: 32px;
    font-weight: 700;
  }
  .pricing-button {
    border: 1px solid rgba(41, 98, 255,100%);
    border-radius: 8px;
    color: rgba(255, 255, 255,100%);
    background: rgba(41, 98, 255,100%);
    display: inline-block;
    width: 100%;
    padding: 10px 35px;
    text-decoration: none;
    transition: all 150ms ease-in-out;
    text-align: center;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.4px;
    margin-bottom: 1.5rem;
    cursor: unset;
    font-family: 'Inter', sans-serif;
  }
  .pricing-button:hover,
  .pricing-button:focus {
    background-color: rgb(30, 73, 190);
    border: 1px solid rgb(30, 73, 190);
    color: white;
  }
  .pricing-plan h5 {
    font-size: 0.95rem;
    font-weight: 500;
    text-align: left;
    margin-bottom: 0.9rem;
    color: rgba(255,255,255,100%);
    line-height: 22px;
  }
  .pricing-button.is-featured {
    background-color: rgba(41, 98, 255,30%);
    color: #fff;
  }
  .pricing-button.is-featured:hover,
  .pricing-button.is-featured:active {
    background-color: #269aff;
  }
  .pricing-features i {
    position: relative;
    margin-top: 0.17rem;
  }
  .pricing-features li {
    list-style: none;
    color: rgba(255,255,255,90%);
  }
  .pricing-features p {
    margin-left: 1.2rem;
    margin-top: -1.15rem;
    letter-spacing: 0px;
    color: rgba(255,255,255,80%);
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
  }

  /*=== SECTION 5 ===*/
  #section-5 h2 {
    text-align: center;
    display: block;
    margin: 5rem auto 3rem auto;
    letter-spacing: -0.8px;
    line-height: 49px;
    font-size: 2rem;
    color: rgba(255,255,255,100%);
  }
  #test-a:hover {
    color: white;
  }
  
  /*=== FOOTER ===*/ 
  footer {
    display: block;
    margin: 0 auto;
    text-align: center;
    color: rgba(255,255,255,70%);
    padding: 2rem;
    background: radial-gradient(ellipse at bottom, rgb(3, 14, 30), black);
    border-top: 1px solid rgba(255,255,255,2%);
  }
  .footer-items {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    gap: 1rem;
    padding-bottom: 1rem;
  }
  .footer-items a h3 {
    font-size: 0.9rem;
    font-weight: 400;
    transition: all ease-in 0.12s;
  }
  .footer-items a h3:hover {
    color: rgba(255,255,255,70%);
  }
  footer h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
  }
  .policies {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    gap: 1rem;
    padding-top: 1rem;
  }
  .policies a {
    color: rgba(255,255,255,60%);
    text-decoration: underline;
  }
  .policies a h5 {
    font-weight: 400;
  }
}

/*=== SCREEN WIDTH: 500PX - 1000PX ===*/
@media (min-width: 500px) and (max-width: 1000px) {
  /*=== NAV ===*/
  nav {
    background: radial-gradient(ellipse at top, rgba(26, 93, 201,10%), transparent);
    height: 10rem;
    width: 104%;
  }
  #logo {
    margin-left: -3rem;
  }
  .checkbtn {
    display: block;
    position: relative;
    z-index: 999;
  }
  .fa-bars-1 {
    transition: all ease-in 0.08s;
    padding: 0.45rem 0.6rem;
  }
  .ul {
    position: absolute;
    width: 100%;
    height: 100vh;
    background: black;
    top: 0px;
    left: -100%;
    text-align: center;
    transition: all .5s;
    padding: 3.3rem 0 0 0;
  }
  nav ul li {
    display: block;
    margin: 30px 0;
    line-height: 30px;
  }
  nav ul li:first-child {
    padding-top: 1.3rem;
    border-top: 1px solid rgba(255,255,255,7%);
  }
  nav ul li a {
    font-size: 20px;
  }
  #check:checked ~ ul {
    left: 0;
  }
  #nav-plans {
    position: absolute;
    margin-top: 0.9rem;
    margin-left: -5rem;
    padding: 0.3rem 1rem;
    background: rgba(163, 177, 214,30%);
    border: 1px solid rgba(255,255,255,0%);
    border-radius: 100px;
    color: rgba(255,255,255,100%);
    transition: all ease-in 0.1s;
  }

  /*=== HEADER ===*/
  header {
    background: rgba(0,0,0,2%);
    margin-bottom: 3rem;
  }
  .header-container {
    display: block;
  }
  .first {
    padding: 0 1rem;
    max-width: 600px;
  }
  .header-2-internals {
    text-align: left;
  }
  .header-2-internals h2 {
    display: none;
  }
  .header-2-internals h1 {
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    line-height: 45px;
    font-weight: 700;
    color: white;
    max-width: 600px;
  }
  .header-2-internals p {
    line-height: 26px;
    color: rgb(203, 208, 223);
    font-weight: 400;
    font-size: 1rem;
    margin: 0 auto 2rem auto;
    font-family: 'Inter', sans-serif;
  }
  .header-2-internals:first-child {
    display: block;
    margin: 0 auto;
  }
  #faqs-button-1 {
    padding: 0.8rem 1rem;
    text-align: center;
    color: rgba(255,255,255,100%);
    background: unset;
    transition: all ease-in 0.1s;
    border-radius: 100px;
    border: unset;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    width: 50%;
    max-width: 500px;
    text-transform: uppercase;
    background-image: linear-gradient(to right, #d73d0e, #9903e4);
    cursor: pointer;
  }
  .or {
    display: block;
    margin: 1rem auto;
    text-align: left;
    color: white;
  }
  #faqs-button-2 {
    padding: 0.8rem 1rem;
    text-align: center;
    color: rgba(255,255,255,100%);
    background: unset;
    transition: all ease-in 0.1s;
    border-radius: 100px;
    border: unset;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    width: 80%;
    max-width: 500px;
    text-transform: uppercase;
    border: 1px solid #813ca4;
    background: unset;
    cursor: pointer;
  }
  .course-container {
    display: block;
    margin: 1rem auto 0 auto;
    text-align: left;
    color: rgb(203, 208, 223);
    width: 95%;
    font-size: 1.2rem;
    background: rgba(163, 177, 214,7%);
    border-radius: 10px;
       /*border-top: 1px solid;
    border-image: linear-gradient(to right, transparent, #9903e4, #9903e4, transparent) 1;*/
    border: unset;
  }
  .course-container h3 {
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 1.2px;
    font-weight: 500;
    padding-bottom: 1rem;
    border-bottom: 7px solid rgba(0,0,0,100%);
    padding: 1.5rem 0 1rem 2rem;
  }
  .course-container h4 {
    font-size: 0.9rem;
    font-weight: 400;
    padding-bottom: 1rem;
    line-height: 25px;
    padding: 1rem 2rem 1rem 2rem;
  }
  .course-container li {
    list-style: none;
    line-height: 45px;
    padding-left: 2rem;
  }
  .course-container i {
    display: block;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    position: absolute;
    margin-top: 0.78rem;
  }
  .fa-chart-simple {
    padding-left: 0.2rem;
  }
  .fa-clock {
    padding-left: 0.15rem;
  }
  .fa-medal {
    padding-left: 0.2rem;
  }
  .course-container h5 {
    margin-left: 3rem;
    font-weight: 400;
  }
  .course-container li:last-child {
    padding-bottom: 2rem;
  }

  /*=== SECTION 1 ===*/
  #section-1 {
    background: black;
    display: block;
    margin: 1rem auto 0 auto;
  }
  #section-1 h2 {
    line-height: 43px;
    color: white;
    font-size: 2.1rem;
    display: block;
    margin: 7rem auto 1.3rem auto;
    text-align: center;
    padding: 0 2rem;
  }
  #section-1 h5 {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 28px;
    color: rgb(203, 208, 223, 100%);
    display: block;
    margin: 0 auto;
    text-align: center;
    width: 90%;
    max-width: 530px;
  }
  .container-1 {
    display: block;
    margin: 6rem auto 4rem auto;
  }
  .items {
    display: block;
    margin: 0 auto;
    max-width: 920px;
  }
  .items:first-child {
    width: 93%;  
  }
  .fa-gear {
    color: rgba(76, 207, 175,100%);
    background: rgba(76, 207, 175,10%);
    padding: 0.8rem;
    border-radius: 100px;
  }
  .container-1 h3 {
    margin: 1rem 0 1rem 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(76, 207, 175,100%);
  }
  .container-1 h4 {
    text-align: left;
    color: white;
    font-size: 1.9rem;
  }
  #section-1 .container-1 .items .list-1 ul p {
    margin-top: 1rem;
    color: rgb(203, 208, 223);
    line-height: 28px;
    font-size: 1.2rem;
  }
  #section-1 .container-1 .items .list-1 ul {
    padding-top: 1rem;
  }
  #section-1 .container-1 .items .p-1 {
    margin-top: 1rem;
    color: rgb(203, 208, 223);
    line-height: 28px;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,20%);
    padding-bottom: 2rem;
    border-image: linear-gradient(to right, transparent, rgba(255, 255, 255, 20%), transparent) 1;
  }
  #pricing-button-1 {
    background: rgb(65, 176, 148);
    border: rgb(65, 176, 148);
    margin-top: 1.5rem;
    width: 200px;
  }
  #pricing-button-1:hover {
    background: rgb(50, 136, 115);
  }

  /*=== SECTION 2 ===*/
  #section-2 {
    background: black;
    margin-bottom: 6rem;
    max-width: 900px;
  }
  .container-2 {
    display: block;
    margin: 0 auto;
  }
  .fa-play {
    color: rgb(158, 124, 255);
    background: rgba(158, 124, 255, 15%);
    padding: 0.7rem 0.8rem;
    border-radius: 100px;
  }
  .container-2 h3 {
    margin: 1rem 0 1rem 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: rgb(158, 124, 255);
  }
  .container-2 h4 {
    text-align: left;
    color: white;
    font-size: 1.9rem;
  }
  .container-2 p {
    margin-top: 1rem;
    color: rgb(203, 208, 223);
    line-height: 28px;
    font-size: 1.2rem;
  }
  .fa-check-1 {
    color: rgba(76, 207, 175,100%);
    position: absolute;
    margin-top: 0.3rem;
  }
  #section-2 .container-2 .items .list-2 ul p {
    margin-top: 1rem;
    color: rgb(203, 208, 223);
    line-height: 28px;
    font-size: 1.2rem;
    margin-left: 2rem;
  }
  #section-2 .container-2 .items .price-wrap {
    line-height: 10px;
  }
  #section-2 .container-2 .items .price-wrap p:first-child {
    color: rgba(203, 208, 223, 60%);
    font-size: 1.1rem;
    padding: 0;
    margin-top: 2rem;
  }
  #section-2 .container-2 .items .price-wrap p:nth-child(2) {
    color: rgba(203, 208, 223, 100%);
    padding-top: 1rem;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
  }
  #section-2 .container-2 .items .price-wrap p:last-child {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 3px;
    color: black;
    background: rgba(76, 207, 175,100%);
    width: 7.7rem;
    line-height: 22px;
    margin-top: 1.5rem;
  }

  /*=== SECTION 3 ===*/
  #section-3 {
    max-width: 700px;
    margin-bottom: 5rem;
  }
  .fa-house-user {
    color: rgb(209, 114, 180);
    background: rgba(215, 86, 176, 0.15);
    padding: 0.8rem;
    border-radius: 100px;
  }
  .container-3 {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 920px;
  }
  .container-3 h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 1rem 0 1rem 0;
    color: rgb(207, 109, 177);
  }
  .container-3 h4 {
    text-align: left;
    color: white;
    font-size: 1.9rem;
  }
  #section-3 .container-3 .items-3 .list-3 ul p {
    margin-top: 1rem;
    color: rgb(203, 208, 223);
    line-height: 28px;
    font-size: 1.2rem;
  }

  /*=== TESTIMONIALS ===*/
  #testimonials {
    display: block;
    margin: 8rem auto 10rem auto;
  }
  .test-title {
    color: white;
    text-align: center;
    display: block;
    margin: 0 auto 2rem auto;
  }
  .test-title h3 {
    font-size: 0.8rem;
    color: rgb(158, 124, 255);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    padding-bottom: 1rem;
  }
  .test-title h2 {
    font-size: 1.7rem;
    width: 90%;
    max-width: 550px;
    text-align: center;
    display: block;
    margin: 0 auto;
    padding: 0 1rem;
  }
  .test-title p {
    color: rgba(203, 208, 223,70%);
    font-size: 1rem;
    width: 90%;
    text-align: center;
    display: block;
    margin: 0 auto;
    padding: 1rem 2rem 3rem 2rem;
  }
  .testimonial-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: rgba(163, 177, 214,7%);
    color: white;
    border-radius: 15px;
    margin: 3rem auto 0 auto;
    padding: 1.5rem;
    width: 90%;
    position: relative;
  }
  .testimonial-container:first-child {
    background: unset;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .testimonial-container:nth-child(2) {
    margin-top: 0;
  }
  .stars {
    font-size: 10px;
  }
  .testimonial {
    display: flex;
    align-items: center;
    text-align: left;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 26px;
    margin: 0;
  }
  .user {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .username {
    padding-bottom: 0.2rem;
  }
  .role {
    padding-bottom: 0.4rem;
    color: rgba(255,255,255,70%);
  }
  .user .user-image {
    border-radius: 50%;
    height: 50px;
    width: 50px;
    object-fit: cover;
  }
  .user .role {
    margin: 0;
    font-size: 12px;
  }
  .progress-dots {
    display: flex;
    position: absolute;
    margin: 0 auto;
    justify-content: center;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 120%;
    gap: 0.5rem;
  }
  .progress-dot {
    width: 10px;
    height: 10px;
    background-color: rgba(158, 124, 255,100%);
    border-radius: 50%;
  }
  .progress-dot.active {
    background-color: rgb(73, 57, 117);
  }
  .btn {
    position: absolute;
    top: -15%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(163, 177, 214,7%);
    border: 1px solid rgba(163, 177, 214,0%);
    border-radius: 50%;
    font-size: 10px;
    cursor: pointer;
    transition: 0.1s ease;
    color: white;
  }
  .btn:hover {
    background: unset;
    color: white;
    border: 1px solid rgba(42, 46, 57,80%);
  }
  #btn-prev {
    left: 180px;
  }
  #btn-next {
    right: 180px;
  }

  /*=== SECTION 4 ===*/
  .plans-container {
    display: block;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
  }
  #plans .plans-container .plans-title {
    font-size: 2rem;
    letter-spacing: 0;
    font-weight: 600;
    text-align: center;
    display: block;
    margin: 10rem auto 0 auto;
    color: rgba(255,255,255,100%);
  }
  #plans .plans-container .first-para {
    width: 90%;
    line-height: 27px;
    max-width: 580px;
    font-size: 1.1rem;
    font-weight: 400;
    text-align: center;
    display: block;
    margin: 1rem auto 2rem auto;
    color: rgba(203, 208, 223,70%);
  }
  .ready-container {
    color: white;
    display: flex;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255,255,255,30%);
    border-radius: 10px;
    width: 60%;
    max-width: 390px;
    padding: 0.235rem 0.3rem 0.3rem 0.3rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .ready {
    padding: 0.5rem;
    border-radius: 5px;
    width: 100%;
  }
  .ready:first-child {
    background-color: rgba(42, 46, 57,70%);
    font-weight: 700;
  }
  .four-p {
    text-align: left;
    display: block;
    text-align: center;
    margin: 1rem auto 0 auto;
    font-family: 'Inter', sans-serif;
    line-height: 22px;
    font-size: .85rem;
    color: rgba(255,255,255,80%);
    width: 90%;
    max-width: 400px;
    transition: all ease-in 0.3s;
  }
  .four-p a:hover {
    color: rgba(255,255,255,80%);
  }
  .down-arrow {
    margin-bottom: 2rem;
  }
  .fa-arrow-down-long {
    color: #b2b5be;
    display: block;
    text-align: center;
    border: 1px solid #b2b5be;
    padding: 0.35rem 0.55rem;
    border-radius: 50%;
    font-size: 0.8rem;
    margin-top: 0.221rem;
  }
  .down-arrow {
    margin-bottom: 2rem;
  }
  .down-arrow button {
    background: unset;
    border: unset;
    display: flex;
    margin: 1rem auto;
    cursor: unset;
    color: white;
    background: #132042;
    border-radius: 9px;
    padding: 0rem 1rem;
  }
  .down-arrow button p {
    line-height: 33px;
    padding-right: 1rem;
    text-align: left;
  }
  .ready-container {
    color: white;
    display: flex;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255,255,255,30%);
    border-radius: 10px;
    width: 60%;
    max-width: 390px;
    padding: 0.235rem 0.3rem 0.3rem 0.3rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .ready {
    padding: 0.5rem;
    border-radius: 5px;
    width: 100%;
  }
  .ready:first-child {
    background-color: rgba(42, 46, 57,70%);
    font-weight: 700;
  }
  .four-h2 {
    text-align: center;
    display: block;
    margin: 0 auto;
    font-family: euclid-semibold;
    letter-spacing: -0.8px;
    line-height: 45px;
    font-size: 2.6rem;
    color: rgba(255,255,255,100%);
    margin-bottom: 1.5rem;
  }
  .four-p {
    text-align: left;
    display: block;
    text-align: center;
    margin: 1rem auto 0 auto;
    font-family: 'Inter', sans-serif;
    line-height: 22px;
    font-size: .85rem;
    color: rgba(255,255,255,80%);
    width: 90%;
    max-width: 400px;
    transition: all ease-in 0.3s;
  }
  .four-p a:hover {
    color: rgba(255,255,255,80%);
  }
  .fa-arrow-down-long {
    color: #b2b5be;
    display: block;
    text-align: center;
    border: 1px solid #b2b5be;
    padding: 0.35rem 0.55rem;
    border-radius: 50%;
    font-size: 0.8rem;
    margin-top: 0.221rem;
  }
  .down-arrow {
    margin-bottom: 2rem;
  }
  .down-arrow button {
    background: unset;
    border: unset;
    display: flex;
    margin: 1rem auto;
    cursor: unset;
    color: white;
    background: #132042;
    border-radius: 9px;
    padding: 0rem 1rem;
  }
  .down-arrow button p {
    line-height: 33px;
    padding-right: 0rem;
  }
  .container-aft-3 {
    display: block;
    margin: 2rem auto 0 auto;
  }
  .container-aft-3 h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.7rem;
    font-family: 'Inter', sans-serif;
  }
  .anchor {
    color: rgba(12, 14, 20,100%);
  }
  .container {
    margin: 0 auto;
    padding: 0;
    margin-top: 0rem;
    overflow-x: scroll;
  }
  .container::-webkit-scrollbar {
    display: none;
  }
  .panel {
    background-color: unset;
    border-radius: 25px;
    width: 69rem;
    z-index: 10;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
  .panel::-webkit-scrollbar {
    display: none;
  }
  .pricing-table {
    color: rgba(255,255,255,10%);
    display: flex;
    flex-direction: row;
  }
  #verified {
    width: 1.2rem;
  }
  .pricing-plan {
    color: rgba(255,255,255,10%);
    padding: 25px;
    min-width: 17rem;
  }
  .pricing-plan::-webkit-scrollbar {
    display: none;
  }
  .pricing-plan:nth-child(2) {
    border-radius: 25px;
    background: rgba(26, 93, 201, 10%);
  }
  .pricing-plan:first-child {
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    border-left: 1px solid rgba(255,255,255,0%);
  }
  .pricing-plan:last-child {
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
  }
  .prices {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    color: rgba(255,255,255,100%);
  }
  .pricing-plan .span {
    color: rgba(255,255,255,50%);
    font-size: 0.8rem;
  }
  .pricing-plan {
    color: rgba(255,255,255,10%);
    width: 10rem;
    border-right: 1px solid rgba(255,255,255,0%);
    border-top: 1px solid rgba(255,255,255,0%);
    border-bottom: 1px solid rgba(255,255,255,0%);
  }
  .pricing-img {
    margin-bottom: 25px;
    max-width: 100%;
  }
  .pricing-header {
    color: rgba(255,255,255,100%);
    font-size: 1.9rem;
    font-weight: 500;
    letter-spacing: 0.7px;
    text-align: center;
    padding-bottom: 1.4rem;
    padding-top: 1.6rem;
  }
  .pricing-plan h4 {
    font-size: 0.9rem;
    font-weight: 200;
    line-height: 22px;
    color: rgba(255,255,255,100%);
    text-align: center;
    margin-top: -0.9rem;
    padding-bottom: 1.2rem;
    font-family: 'Inter', sans-serif;
  }
  .prices {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1.6rem;
  }
  .pricing-features {
    color: rgba(255,255,255,60%);
    font-weight: 500;
    letter-spacing: 1px;
    padding-right: 1rem;
  }
  .pricing-features-item {
    font-size: 12px;
    line-height: 1.5;
    padding: 10px 0;
    text-align: left;
  }
  .pricing-price {
    color: #016FF9;
    display: block;
    font-size: 32px;
    font-weight: 700;
  }
  .pricing-button {
    border: 1px solid rgba(41, 98, 255,100%);
    border-radius: 8px;
    color: rgba(255, 255, 255,100%);
    background: rgba(41, 98, 255,100%);
    display: inline-block;
    width: 100%;
    padding: 10px 35px;
    text-decoration: none;
    transition: all 150ms ease-in-out;
    text-align: center;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.4px;
    margin-bottom: 1.5rem;
    cursor: unset;
    font-family: 'Inter', sans-serif;
  }
  .pricing-button:hover,
  .pricing-button:focus {
    background-color: rgb(30, 73, 190);
    border: 1px solid rgb(30, 73, 190);
    color: white;
  }
  .pricing-plan h5 {
    font-size: 0.95rem;
    font-weight: 500;
    text-align: left;
    margin-bottom: 0.9rem;
    color: rgba(255,255,255,100%);
    line-height: 22px;
  }
  .pricing-button.is-featured {
    background-color: rgba(41, 98, 255,30%);
    color: #fff;
  }
  .pricing-button.is-featured:hover,
  .pricing-button.is-featured:active {
    background-color: #269aff;
  }
  .pricing-features i {
    position: relative;
    margin-top: 0.17rem;
  }
  .pricing-features li {
    list-style: none;
    color: rgba(255,255,255,90%);
  }
  .pricing-features p {
    margin-left: 1.2rem;
    margin-top: -1.15rem;
    letter-spacing: 0px;
    color: rgba(255,255,255,80%);
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
  }

  /*=== SECTION 5 ===*/
  #section-5 h2 {
    text-align: center;
    display: block;
    margin: 5rem auto 3rem auto;
    letter-spacing: -0.8px;
    line-height: 49px;
    font-size: 2.3rem;
    color: rgba(255,255,255,100%);
  }
  #test-a:hover {
    color: white;
  }
  
  /*=== FOOTER ===*/ 
  footer {
    display: block;
    margin: 0 auto;
    text-align: center;
    color: rgba(255,255,255,70%);
    padding: 2rem;
    background: radial-gradient(ellipse at bottom, rgb(3, 14, 30), black);
    border-top: 1px solid rgba(255,255,255,2%);
  }
  .footer-items {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    gap: 1rem;
    padding-bottom: 1rem;
  }
  .footer-items a h3 {
    font-size: 0.9rem;
    font-weight: 400;
    transition: all ease-in 0.12s;
  }
  .footer-items a h3:hover {
    color: rgba(255,255,255,70%);
  }
  footer h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
  }
  .policies {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    gap: 1rem;
    padding-top: 1rem;
  }
  .policies a {
    color: rgba(255,255,255,60%);
    text-decoration: underline;
  }
  .policies a h5 {
    font-weight: 400;
  }
}

/*=== SCREEN MIN-WIDTH: 775PX ===*/
@media (min-width: 775px) {
  /*=== SECTION 1 ===*/
  .container-1 {
    display: block;
    margin: 5rem auto 4rem auto;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1000px;
  }
  
  /*=== SECTION 2 ===*/
  .container-2 {
    display: block;
    margin: 0 auto;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1000px;
  }
  .items-images-2 {
    margin-left: -2rem;
    width: 50%;
  }

  /*=== TESTIMONIALS ===*/
  .test-title h2 {
    font-size: 2rem;
  }
  .testimonial-container {
    width: 90%;
    max-width: 600px;
  }
  .btn {
    position: absolute;
    top: 30%;
    transform: translateY(50%);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(163, 177, 214,7%);
    border: 1px solid rgba(163, 177, 214,0%);
    border-radius: 50%;
    font-size: 10px;
    cursor: pointer;
    transition: 0.1s ease;
    color: white;
  }
  #btn-prev {
    left: -50px;
  }
  #btn-next {
    right: -50px;
  }

  /*=== SECTION 3 ===*/
  .container {
    display: block;
    margin: 0 auto;
  }
  .pricing-table {
    color: rgba(255,255,255,10%);
    display: flex;
    flex-direction: row;
    margin: 0 auto;
  }

  /*=== SECTION 4 ===*/
  .accordion {
    max-width: 600px;
  }
}

/*=== SCREEN WIDTH MAX: 952PX ===*/
@media (max-width: 952px) {
  label.logo{
    font-size: 30px;
    padding-left: 50px;
  }
  nav ul li a{
    font-size: 15px;
  }
}

/*=== SCREEN MIN-WIDTH: 952PX ===*/
@media (min-width: 952px) {
  /*=== NAV ===*/
  nav {
    display: block;
    margin: 0 auto;
    max-width: 1000px;
  }
  label.logo{
    font-size: 30px;
    padding-left: 50px;
  }
  nav ul li a{
    font-size: 15px;
  }

  /*=== HEADER ===*/
  header {
    background: rgba(0,0,0,2%);
  }
  .header-container {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 100%;
    max-width: 1000px;
  }
  .header-2-internals {
    display: block;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
  }
  .header-2-internals:first-child {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 450px;
  }
  #faqs-button-1 {
    width: 60%;
  }

  #faqs-button-2 {
    width: 80%;
  }
  .course-container {
    margin: 0;
    width: 20rem;
  }
  .first {
    padding: 0;
  }

  /*=== SECTION 3 ===*/
  #section-3 {
    max-width: 650px;
  }
  .items-3 {
    width: 97%;
    display: block;
    margin: 0 auto;
  }

  /*=== TESTIMONIAL ===*/
  #testimonials {
    display: none;
  }
}

/*=== SCREEN WIDTH: 1001PX - 5000PX ===*/
@media (min-width: 1001px) and (max-width: 5000px) {
  /*=== NAV ===*/
  nav {
    display: block;
    margin: 1.85rem auto 0 auto;
    max-width: 1050px;
  }
  nav ul li {
    line-height: 115px;
  }

  /*=== HEADER ===*/
  header {
    background: rgba(0,0,0,2%);
    margin-top: 10rem;
    margin-bottom: 3rem;
  }
  .header-container {
    display: flex;
    max-width: 1200px;
  }
  .first {
    padding: 0 0rem;
  }
  .header-2-internals {
    text-align: left;
  }
  .header-2-internals h2 {
    display: none;
  }
  .header-2-internals h1 {
    margin-bottom: 1.5rem;
    font-size: 2.4rem;
    line-height: 45px;
    font-weight: 700;
    color: white;
    max-width: 600px;
  }
  .header-2-internals p {
    line-height: 27px;
    color: rgb(203, 208, 223);
    font-weight: 400;
    font-size: 1.1rem;
    margin: 0 auto 2rem auto;
    font-family: 'Inter', sans-serif;
    width: 34rem;
  }
  .header-2-internals:first-child {
    display: block;
    margin: 0 auto;
  }
  #faqs-button-1 {
    padding: 0.8rem 1rem;
    text-align: center;
    color: rgba(255,255,255,100%);
    background: unset;
    transition: all ease-in 0.1s;
    border-radius: 100px;
    border: unset;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    width: 15rem;
    text-transform: uppercase;
    background-image: linear-gradient(to right, #f04916, #9903e4);
    cursor: pointer;
  }
  .or {
    display: block;
    margin: 1rem auto;
    text-align: left;
    color: white;
    font-size: 1.2rem;
  }
  #faqs-button-2 {
    padding: 0.8rem 1rem;
    text-align: center;
    color: rgba(255,255,255,100%);
    background: unset;
    transition: all ease-in 0.1s;
    border-radius: 100px;
    border: unset;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    width: 20rem;
    text-transform: uppercase;
    border: 1px solid #813ca4;
    background: unset;
    cursor: pointer;
  }
  .course-container {
    display: block;
    margin: 1rem auto 0 auto;
    text-align: left;
    color: rgb(203, 208, 223);
    width: 20rem;
    font-size: 1.2rem;
    background: rgba(163, 177, 214,7%);
    border-radius: 10px;
   /*border-top: 1px solid;
    border-image: linear-gradient(to right, transparent, #9903e4, #9903e4, transparent) 1;*/
    border: unset;
  }
  .course-container h3 {
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 1.2px;
    font-weight: 500;
    padding-bottom: 1rem;
    border-bottom: 7px solid rgba(0,0,0,100%);
    padding: 1.5rem 0 1rem 2rem;
  }
  .course-container h4 {
    font-size: 0.9rem;
    font-weight: 400;
    padding-bottom: 1rem;
    line-height: 25px;
    padding: 1rem 2rem 1rem 2rem;
  }
  .course-container li {
    list-style: none;
    line-height: 45px;
    padding-left: 2rem;
  }
  .course-container i {
    display: block;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    position: absolute;
    margin-top: 0.78rem;
  }
  .fa-chart-simple {
    padding-left: 0.2rem;
  }
  .fa-clock {
    padding-left: 0.15rem;
  }
  .fa-medal {
    padding-left: 0.2rem;
  }
  .course-container h5 {
    margin-left: 3rem;
    font-weight: 400;
  }
  .course-container li:last-child {
    padding-bottom: 2rem;
  }

  /*=== SECTION 1 ===*/
  #section-1 {
    background: black;
    display: block;
    margin: 1rem auto 0 auto;
    width: 87%;
  }
  #section-1 h2 {
    line-height: 43px;
    color: white;
    font-size: 2.1rem;
    display: block;
    margin: 7rem auto 1.3rem auto;
    text-align: center;
    padding: 0 2rem;
  }
  #section-1 h5 {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 28px;
    color: rgb(203, 208, 223, 100%);
    display: block;
    margin: 0 auto;
    text-align: center;
    width: 90%;
    max-width: 530px;
  }
  .container-1 {
    display: block;
    margin: 6rem auto 4rem auto;
  }
  .items {
    display: block;
    margin: 0 auto;
  }
  .items-1 {
    width: 98%;  
  }
  .fa-gear {
    color: rgba(76, 207, 175,100%);
    background: rgba(76, 207, 175,10%);
    padding: 0.8rem;
    border-radius: 100px;
  }
  .container-1 h3 {
    margin: 1rem 0 1rem 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(76, 207, 175,100%);
  }
  .container-1 h4 {
    text-align: left;
    color: white;
    font-size: 1.9rem;
  }
  #section-1 .container-1 .items .list-1 ul p {
    margin-top: 1rem;
    color: rgb(203, 208, 223);
    line-height: 28px;
    font-size: 1.2rem;
  }
  #section-1 .container-1 .items .list-1 ul {
    padding-top: 1rem;
  }
  #section-1 .container-1 .items .p-1 {
    margin-top: 1rem;
    color: rgb(203, 208, 223);
    line-height: 28px;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,20%);
    padding-bottom: 2rem;
    border-image: linear-gradient(to right, transparent, rgba(255, 255, 255, 20%), transparent) 1;
  }
  #pricing-button-1 {
    background: rgb(65, 176, 148);
    border: rgb(65, 176, 148);
    margin-top: 1.5rem;
    width: 200px;
  }
  #pricing-button-1:hover {
    background: rgb(50, 136, 115);
  }

  /*=== SECTION 2 ===*/
  #section-2 {
    background: black;
    margin-bottom: 6rem;
  }
  .container-2 {
    display: block;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    width: 86%;
  }
  .items-2 {
    display: block;
    margin: 0 auto;
    width: 100%;
  }
  .fa-play {
    color: rgb(158, 124, 255);
    background: rgba(158, 124, 255, 15%);
    padding: 0.7rem 0.8rem;
    border-radius: 100px;
  }
  .container-2 h3 {
    margin: 1rem 0 1rem 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: rgb(158, 124, 255);
  }
  .container-2 h4 {
    text-align: left;
    color: white;
    font-size: 1.9rem;
  }
  .container-2 p {
    margin-top: 1rem;
    color: rgb(203, 208, 223);
    line-height: 28px;
    font-size: 1.2rem;
  }
  .fa-check-1 {
    color: rgba(76, 207, 175,100%);
    position: absolute;
    margin-top: 0.3rem;
  }
  #section-2 .container-2 .items .list-2 ul p {
    margin-top: 1rem;
    color: rgb(203, 208, 223);
    line-height: 28px;
    font-size: 1.2rem;
    margin-left: 2rem;
  }
  #section-2 .container-2 .items .price-wrap {
    line-height: 10px;
  }
  #section-2 .container-2 .items .price-wrap p:first-child {
    color: rgba(203, 208, 223, 60%);
    font-size: 1.1rem;
    padding: 0;
    margin-top: 2rem;
  }
  #section-2 .container-2 .items .price-wrap p:nth-child(2) {
    color: rgba(203, 208, 223, 100%);
    padding-top: 1rem;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
  }
  #section-2 .container-2 .items .price-wrap p:last-child {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 3px;
    color: black;
    background: rgba(76, 207, 175,100%);
    width: 7.7rem;
    line-height: 22px;
    margin-top: 1.5rem;
  }

  /*=== SECTION 3 ===*/
  #section-3 {
    display: block;
    margin: 0 auto;
    max-width: none;
    margin-bottom: 5.5rem;
  }
  .items-3 {
    width: 100%;
  }
  .fa-house-user {
    color: rgb(209, 114, 180);
    background: rgba(215, 86, 176, 0.15);
    padding: 0.8rem;
    border-radius: 100px;
  }
  .container-3 {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 1000px;
  }
  .container-3 h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 1rem 0 1rem 0;
    color: rgb(207, 109, 177);
  }
  .container-3 h4 {
    text-align: left;
    color: white;
    font-size: 1.9rem;
  }
  #section-3 .container-3 .items-3 .list-3 ul p {
    margin-top: 1rem;
    color: rgb(203, 208, 223);
    line-height: 28px;
    font-size: 1.2rem;
  }

  /*=== TESTIMONIALS ===*/
  #testimonials {
    display: none;
  }

  /*=== SECTION 4 ===*/
  .plans-container {
    display: block;
    margin: 0 auto;
  }
  #plans .plans-container .plans-title {
    font-size: 2rem;
    letter-spacing: 0;
    font-weight: 600;
    text-align: center;
    display: block;
    margin: 10rem auto 0 auto;
    color: rgba(255,255,255,100%);
  }
  #plans .plans-container .first-para {
    width: 90%;
    line-height: 27px;
    max-width: 580px;
    font-size: 1.1rem;
    font-weight: 400;
    text-align: center;
    display: block;
    margin: 1rem auto 2rem auto;
    color: rgba(203, 208, 223,70%);
  }
  .ready-container {
    color: white;
    display: flex;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255,255,255,30%);
    border-radius: 10px;
    width: 60%;
    max-width: 390px;
    padding: 0.235rem 0.3rem 0.3rem 0.3rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .ready {
    padding: 0.5rem;
    border-radius: 5px;
    width: 100%;
  }
  .ready:first-child {
    background-color: rgba(42, 46, 57,70%);
    font-weight: 700;
  }
  .four-p {
    text-align: left;
    display: block;
    text-align: center;
    margin: 1rem auto 0 auto;
    font-family: 'Inter', sans-serif;
    line-height: 22px;
    font-size: .85rem;
    color: rgba(255,255,255,80%);
    width: 90%;
    max-width: 400px;
    transition: all ease-in 0.3s;
  }
  .four-p a:hover {
    color: rgba(255,255,255,80%);
  }
  .down-arrow {
    margin-bottom: 2rem;
  }
  .fa-arrow-down-long {
    color: #b2b5be;
    display: block;
    text-align: center;
    border: 1px solid #b2b5be;
    padding: 0.35rem 0.55rem;
    border-radius: 50%;
    font-size: 0.8rem;
    margin-top: 0.221rem;
  }
  .down-arrow {
    margin-bottom: 2rem;
  }
  .down-arrow button {
    background: unset;
    border: unset;
    display: flex;
    margin: 1rem auto;
    cursor: unset;
    color: white;
    background: #132042;
    border-radius: 9px;
    padding: 0rem 1rem;
  }
  .down-arrow button p {
    line-height: 33px;
    padding-right: 1rem;
    text-align: left;
  }
  .ready-container {
    color: white;
    display: flex;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255,255,255,30%);
    border-radius: 10px;
    width: 60%;
    max-width: 390px;
    padding: 0.235rem 0.3rem 0.3rem 0.3rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .ready {
    padding: 0.5rem;
    border-radius: 5px;
    width: 100%;
  }
  .ready:first-child {
    background-color: rgba(42, 46, 57,70%);
    font-weight: 700;
  }
  .four-h2 {
    text-align: center;
    display: block;
    margin: 0 auto;
    font-family: euclid-semibold;
    letter-spacing: -0.8px;
    line-height: 45px;
    font-size: 2.6rem;
    color: rgba(255,255,255,100%);
    margin-bottom: 1.5rem;
  }
  .four-p {
    text-align: left;
    display: block;
    text-align: center;
    margin: 1rem auto 0 auto;
    font-family: 'Inter', sans-serif;
    line-height: 22px;
    font-size: .85rem;
    color: rgba(255,255,255,80%);
    width: 90%;
    max-width: 400px;
    transition: all ease-in 0.3s;
  }
  .four-p a:hover {
    color: rgba(255,255,255,80%);
  }
  .fa-arrow-down-long {
    color: #b2b5be;
    display: block;
    text-align: center;
    border: 1px solid #b2b5be;
    padding: 0.35rem 0.55rem;
    border-radius: 50%;
    font-size: 0.8rem;
    margin-top: 0.221rem;
  }
  .down-arrow {
    margin-bottom: 2rem;
  }
  .down-arrow button {
    background: unset;
    border: unset;
    display: flex;
    margin: 1rem auto;
    cursor: unset;
    color: white;
    background: #132042;
    border-radius: 9px;
    padding: 0rem 1rem;
  }
  .down-arrow button p {
    line-height: 33px;
    padding-right: 0rem;
  }
  .container-aft-3 {
    display: block;
    margin: 2rem auto 0 auto;
  }
  .container-aft-3 h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.7rem;
    font-family: 'Inter', sans-serif;
  }
  .anchor {
    color: rgba(12, 14, 20,100%);
  }
  .container {
    margin: 0 auto;
    overflow-x: scroll;
  }
  .container::-webkit-scrollbar {
    display: none;
  }
  .panel {
    background-color: unset;
    border-radius: 25px;
    width: 69rem;
    z-index: 10;
    display: block;
    margin: 0 auto;
  }
  .panel::-webkit-scrollbar {
    display: none;
  }
  .pricing-table {
    color: rgba(255,255,255,10%);
    display: flex;
    flex-direction: row;
  }
  #verified {
    width: 1.2rem;
  }
  .pricing-plan {
    color: rgba(255,255,255,10%);
    padding: 25px;
    min-width: 17rem;
  }
  .pricing-plan::-webkit-scrollbar {
    display: none;
  }
  .pricing-plan:first-child {
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    border-left: 1px solid rgba(255,255,255,0%);
  }
  .pricing-plan:nth-child(2) {
    border-radius: 25px;
    background: rgba(26, 93, 201, 10%);
  }
  .pricing-plan:last-child {
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
  }
  .prices {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    color: rgba(255,255,255,100%);
  }
  .pricing-plan .span {
    color: rgba(255,255,255,50%);
    font-size: 0.8rem;
  }
  .pricing-plan {
    color: rgba(255,255,255,10%);
    width: 10rem;
    border-right: 1px solid rgba(255,255,255,0%);
    border-top: 1px solid rgba(255,255,255,0%);
    border-bottom: 1px solid rgba(255,255,255,0%);
  }
  .pricing-img {
    margin-bottom: 25px;
    max-width: 100%;
  }
  .pricing-header {
    color: rgba(255,255,255,100%);
    font-size: 1.9rem;
    font-weight: 500;
    letter-spacing: 0.7px;
    text-align: center;
    padding-bottom: 1.4rem;
    padding-top: 1.6rem;
  }
  .pricing-plan h4 {
    font-size: 0.9rem;
    font-weight: 200;
    line-height: 22px;
    color: rgba(255,255,255,100%);
    text-align: center;
    margin-top: -0.9rem;
    padding-bottom: 1.2rem;
    font-family: 'Inter', sans-serif;
  }
  .prices {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1.6rem;
  }
  .pricing-features {
    color: rgba(255,255,255,60%);
    font-weight: 500;
    letter-spacing: 1px;
    padding-right: 1rem;
  }
  .pricing-features-item {
    font-size: 12px;
    line-height: 1.5;
    padding: 10px 0;
    text-align: left;
  }
  .pricing-price {
    color: #016FF9;
    display: block;
    font-size: 32px;
    font-weight: 700;
  }
  .pricing-button {
    border: 1px solid rgba(41, 98, 255,100%);
    border-radius: 8px;
    color: rgba(255, 255, 255,100%);
    background: rgba(41, 98, 255,100%);
    display: inline-block;
    width: 100%;
    padding: 10px 35px;
    text-decoration: none;
    transition: all 150ms ease-in-out;
    text-align: center;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.4px;
    margin-bottom: 1.5rem;
    cursor: unset;
    font-family: 'Inter', sans-serif;
  }
  .pricing-button:hover,
  .pricing-button:focus {
    background-color: rgb(30, 73, 190);
    border: 1px solid rgb(30, 73, 190);
    color: white;
  }
  .pricing-plan h5 {
    font-size: 0.95rem;
    font-weight: 500;
    text-align: left;
    margin-bottom: 0.9rem;
    color: rgba(255,255,255,100%);
    line-height: 22px;
  }
  .pricing-button.is-featured {
    background-color: rgba(41, 98, 255,30%);
    color: #fff;
  }
  .pricing-button.is-featured:hover,
  .pricing-button.is-featured:active {
    background-color: #269aff;
  }
  .pricing-features i {
    position: relative;
    margin-top: 0.17rem;
  }
  .pricing-features li {
    list-style: none;
    color: rgba(255,255,255,90%);
  }
  .pricing-features p {
    margin-left: 1.2rem;
    margin-top: -1.15rem;
    letter-spacing: 0px;
    color: rgba(255,255,255,80%);
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
  }

  /*=== SECTION 5 ===*/
  #section-5 h2 {
    text-align: center;
    display: block;
    margin: 5rem auto 3rem auto;
    letter-spacing: -0.8px;
    line-height: 49px;
    font-size: 2.3rem;
    color: rgba(255,255,255,100%);
  }
  #test-a:hover {
    color: white;
  }
  
  /*=== FOOTER ===*/ 
  footer {
    display: block;
    margin: 0 auto;
    text-align: center;
    color: rgba(255,255,255,70%);
    padding: 2rem;
    background: radial-gradient(ellipse at bottom, rgb(3, 14, 30), black);
    border-top: 1px solid rgba(255,255,255,2%);
  }
  .footer-items {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    gap: 1rem;
    padding-bottom: 1rem;
  }
  .footer-items a h3 {
    font-size: 0.9rem;
    font-weight: 400;
    transition: all ease-in 0.12s;
  }
  .footer-items a h3:hover {
    color: rgba(255,255,255,70%);
  }
  footer h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
  }
  .policies {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    gap: 1rem;
    padding-top: 1rem;
  }
  .policies a {
    color: rgba(255,255,255,60%);
    text-decoration: underline;
  }
  .policies a h5 {
    font-weight: 400;
  }

}