/**************************/
/* HEADER */
/**************************/

.header {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
  background-color: #0c3469;
  border-bottom: 0.1rem solid #ffffff2c;

  /* Sticky header */
  margin: 0 auto;
  height: 9.6rem;
  padding: 0 4.8rem;
  z-index: 0;
}

.radyx-logo-container {
  gap: 9.6rem;
}

.logos {
  padding: 1.8rem 0 0 0;
  display: flex;
  align-items: center;
}

header .radyx-logo {
  text-decoration: none;
  color: #fff;
}
.radyx-logo {
  font-size: 3.2rem;
  font-family: "Libre Barcode 39 Text", cursive;
}

.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6.4rem;
}

.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 1.4rem;
  transition: all 0.3s;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #83f9ff;
}

.language-picker-container {
  display: flex;
}

.form-select {
  font-family: "Red Hat Display", sans-serif;
  padding: 0;
  width: auto;
  font-size: 1.4rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  background-color: #0c3469;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: all 0.3s;
}

.form-select:hover {
  cursor: pointer;
  color: #83f9ff;
}

.logos img {
  height: 2.4rem;
  padding: 0 2.4rem 0 0;
  margin: 0 auto;
}

.logo3 img {
  height: 3.2rem;
  left: -0.4rem;
  position: relative;
}
.gb {
  height: 2rem;
  width: 2.4rem;
  border-radius: 50%;
  box-shadow: 0 0 0.8rem #feffb278;
}

/* MOBILE */
.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;

  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #fff;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}

/* STICKY NAVIGATION */
.sticky .header {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 9.6rem;
  padding-top: 0;
  padding-bottom: 0;
  background-color: #0c3469;
  z-index: 999;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}

.sticky .section-hero {
  margin-top: 9.6rem;
}

/**************************/
/* HERO SECTION */
/**************************/

.section-hero {
  padding: 8rem 0 0 0;
}

.hero {
  max-width: 130rem;
  margin: 0 auto;
  padding: 2.4rem 4.8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9.6rem;
  align-items: center;
  justify-content: space-evenly;
  background-color: #fff;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.15);
  border-radius: 2.4rem;
}

.hero-description {
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.hero-description2 {
  font-size: 1.8rem;

  margin-bottom: 1.9rem;
}

.hero-slogan {
  font-size: 5.2rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 3.2rem;
  color: #333;
}

.highlight {
  font-weight: 900;
  color: #251dde;
}

.app-store-badge {
  width: 92%;
  transition: all 0.3s ease-in-out;
}

.app-store-badge:hover {
  transform: scale(1.1);
  box-shadow: 0 2rem 6.4rem rgba(0, 0, 0, 0.065);
}

.hero-img-box {
  position: relative;
}

.hero-img {
  width: 100%;
  display: block;
}

.barcode {
  position: relative;
  display: flex;
  justify-content: center;
}

.barcode-img {
  width: 60%;
  padding: 0 0 2.4rem 0;
}

.barcode-img:hover {
  animation-name: spin;
  animation-duration: 5000ms;
  animation-iteration-count: 1;
  animation-timing-function: linear;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.app-store {
  display: flex;
  padding: 3.2rem 0;
}

.app-store img {
  height: 4.8rem;
}

/**************************/
/* TESTIMONIALS SECTION */
/**************************/

.section-testimonials {
  background: linear-gradient(180deg, #0c3469, #4f7fbd);
  display: grid;
  justify-content: center;
  align-items: center;
  padding: 4.8rem 0 0 0;
}

.testimonials-container {
  padding: 4.8rem 9.6rem 9.6rem 9.6rem;
}

.heading-testimonial {
  display: flex;
  justify-content: center;
  font-size: 4.4rem;
  line-height: 1.2;
  margin-bottom: 9.6rem;
  color: #fff;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 4.8rem;
  column-gap: 8rem;
}

.testimonial-img {
  width: 6.4rem;
  border-radius: 50%;
  margin-bottom: 1.2rem;
}

.testimonial-text {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 1.6rem;
  color: #fff;
}

.testimonial-name {
  font-style: italic;
  font-size: 1.4rem;
  color: #fff;
}

.testimonial-icon {
  color: #fff;
  width: 3.2rem;
  height: 3.2rem;
  padding: 0 0 2.4rem 0;
}

/**************************/
/* PRICING SECTION */
/**************************/

.section-pricing {
  padding: 9.6rem 0 4.8rem 0;
}

.pricing-plan {
  border-radius: 11px;
  width: 100%;
}

.pricing-plan--demo {
  padding: 4.6rem;
  background-color: #fff;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.15);
}

.pricing-plan--basic {
  justify-self: end;
  padding: 4.6rem;
  background-color: #5e59ff;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.15);
}

.pricing-plan--premium {
  padding: 4.6rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #000, #ffdd00);
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.15);
}

.pricing-plan--premium::after {
  content: "Best value";
  position: absolute;
  top: 6%;
  right: -18%;

  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 700;
  color: #000;
  background-color: #ffdd00;
  padding: 0.8rem 8rem;
  transform: rotate(45deg);
}

.plan-header-demo {
  text-align: center;
  margin-bottom: 4.8rem;
}

.plan-name-demo {
  color: #333;
  font-weight: 600;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.75;
  margin-bottom: 3.2rem;
}

.plan-price-demo {
  font-size: 6.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1.6rem;
}

.plan-price-demo span {
  font-size: 3rem;
  font-weight: 500;
  margin-right: 0.8rem;
}

.plan-text-demo {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #333;
}

.list-item-demo {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  line-height: 1.2;
}

.list-item-demo span {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #333;
}

.plan-header {
  text-align: center;
  margin-bottom: 4.8rem;
}

.plan-name {
  color: #fff;
  font-weight: 600;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.75;
  margin-bottom: 3.2rem;
}

.plan-price {
  font-size: 6.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.6rem;
}

.plan-price span {
  font-size: 3rem;
  font-weight: 500;
  margin-right: 0.8rem;
}

span.per-month {
  font-size: 3.2rem;
  font-weight: 400;
}

.plan-text {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #fff;
}

.list-item span {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #fff;
}

.plan-sing-up-demo {
  text-align: center;
  margin-top: 9.6rem;
}

.plan-sing-up {
  text-align: center;
  margin-top: 4.8rem;
}

.plan-details {
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: center;
}

/**************************/
/* FEATURES SECTION */
/**************************/

.section-feature {
  background-color: #befcff;
  padding: 9.6rem 0 2.4rem 0;
}

.feature-icon {
  color: #83f9ff;
  height: 3.2rem;
  width: 3.2rem;
  background-color: #251dde;
  margin-bottom: 3.2rem;
  padding: 1.6rem;
  border-radius: 50%;
}

.feature-title {
  font-size: 2.4rem;
  color: #333;
  font-weight: 700;
  margin-bottom: 1.6rem;
  text-align: center;
}

.feature-text {
  font-size: 1.8rem;
  line-height: 1.8;
}

/**************************/
/* FEEDBACK SECTION */
/**************************/

.section-feedback {
  padding: 0 0 9.6rem;
}

.feedback {
  display: flex;
  justify-content: center;
  background-color: #fff;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.15);
  border-radius: 2.4rem;
  overflow: hidden;
}

.feedback-text-box {
  padding: 4.8rem 6.4rem;
}

.feedback .heading-secondary {
  color: #333;
  margin-bottom: 3.2rem;
}

.feedback-text {
  display: flex;
  justify-content: center;
  font-size: 2.4rem;
  line-height: 1.8;
  margin-bottom: 4.8rem;
}

.feedback-button-container {
  display: flex;
  justify-content: center;
}

/**************************/
/* FOOTER */
/**************************/

.footer {
  padding: 6.4rem 0 0 0;
  border-top: 1px solid #eee;
  background-color: #0c3469;
  background: linear-gradient(180deg, #4f7fbd, #0c3469);
}

.grid--footer {
  grid-template-columns: 2fr 2fr 1fr 1fr 1fr;
  margin-bottom: 4.8rem;
}

.logo-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: block;
  margin-bottom: 3.2rem;
  color: #effcff;
  font-size: 1.8rem;
  font-weight: 500;
}

.social-links {
  list-style: none;
  display: flex;
  gap: 3.2rem;
}

.social-icon {
  height: 2.4rem;
  width: 2.4rem;
}

.copyright {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #effcff;
  margin-top: auto;
}

.footer-heading {
  text-decoration: underline;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 4rem;
  color: #effcff;
}

.contacts {
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.6;
}

.address {
  margin-bottom: 2.4rem;
  color: #effcff;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  font-size: 1.6rem;
  color: #fff;
  transition: all 0.3s;
}

.footer-link:hover,
.footer-link:active {
  color: #83f9ff;
}

.author {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.8rem 0 1.8rem 0;
}

.author p {
  font-size: 1.4rem;
  color: #b8b8b8;
}

a.author-link:link,
a.author-link:visited {
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0 0 0 0.4rem;
  color: #b8b8b8;
  transition: all 0.3s;
}

a.author-link:hover,
a.author-link:active {
  color: #83f9ff;
}

.pulse-logo {
  max-height: 4.8rem;
}

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