@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600&display=swap");

html,
body {
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  height: 100vh;
}

body {
  background-color: #17214e;
  position: relative;
  padding: 0 60px;
}

.bg-dark {
  background: #0e012a;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(
    90deg,
    hsla(187, 100%, 81%, 1) 26%,
    hsla(128, 71%, 82%, 1) 77%
  );

  background: -moz-linear-gradient(
    90deg,
    hsla(187, 100%, 81%, 1) 26%,
    hsla(128, 71%, 82%, 1) 77%
  );

  background: -webkit-linear-gradient(
    90deg,
    hsla(187, 100%, 81%, 1) 26%,
    hsla(128, 71%, 82%, 1) 77%
  );
  border: 1px solid #eeeeef;

  border-radius: 4px;
  background-clip: padding-box;
}

a:hover {
  color: rgb(250, 250, 250, 0.6) !important;
  transition: all ease 0.3s;
}

h1,
h3,
p {
  padding: 0;
  margin: 0;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

.container > section {
  max-width: 1200px;
}

#logo {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-mobile {
  display: none;
}

.logo img {
  width: 175px;
  height: 100px;
  pointer-events: none;
}

.hero-section {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
}

.hero-img img {
  width: 585px;
  height: 520px;
}

.hero-img-responsive {
  display: none;
}

.description {
  display: flex;
  flex-direction: column;
}

.slogan {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 16px;
}
.title {
  font-weight: 600;
  font-size: 56px;
  line-height: 64px;
  color: #ffffff;
  margin-bottom: 8px;
}
.suffix {
  font-weight: 400;
  font-size: 40px;
  line-height: 64px;
  color: #ffffff;
  margin-bottom: 32px;
}

.qr-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fafafa;
  box-shadow: 4px 10px 30px 5px rgba(158, 243, 255, 0.2);
  border-radius: 12px;
  padding: 16px;

  position: relative;
  overflow: hidden;
}

.qr-section .line:nth-child(1) {
  position: absolute;
  top: -4px;
  left: 4px;
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, #fff, #e41476);
  animation: animateOne 1s linear 2;
  opacity: 0;
  border-radius: 16px;
}

@keyframes animateOne {
  0% {
    transform: translateX(-100%);
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}

.qr-section .line:nth-child(2) {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, #fff, #e41476);
  animation: animateTwo 0.8s linear 1;
  animation-delay: 0.5s;
  opacity: 0;
  border-radius: 16px;
}

@keyframes animateTwo {
  0% {
    opacity: 1;
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
    opacity: 0;
  }
}

.qr-section .line:nth-child(3) {
  position: absolute;
  bottom: -4px;
  right: 4px;
  width: 100%;
  height: 6px;
  background: linear-gradient(to left, #fff, #e41476);
  animation: animateThree 1s linear 2;
  opacity: 0;
  border-radius: 16px;
}

@keyframes animateThree {
  0% {
    opacity: 1;
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
    opacity: 0;
  }
}

.qr-section .line:nth-child(4) {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 6px;
  height: 100%;
  background: linear-gradient(to top, #fff, #e41476);
  animation: animateFour 0.8s linear 1;
  animation-delay: 0.5s;
  opacity: 0;
  border-radius: 16px;
}

@keyframes animateFour {
  0% {
    opacity: 1;
    transform: translateY(100%);
  }
  100% {
    transform: translateY(-100%);
    opacity: 0;
  }
}

.qr-section img {
  width: 108px;
  height: 108px;
}

.qr-code {
  width: 108px;
  height: 108px;
  user-select: none;
  pointer-events: none;
}

.download-app {
  display: none;
}

.download-text {
  color: #0e012a;
  font-size: 20px;
  line-height: 30px;
  margin-right: 24px;
}

.download-text span {
  font-weight: 600;
}

.actions {
  display: flex;
  width: 100%;
  width: 1080px;
  align-items: center;
  justify-content: space-between;
  margin: 96px auto 0;
}

.action {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 275px;
  position: relative;
}

.action:not(:last-child):before {
  width: 1px;
  height: 64px;
  background-color: rgba(250, 250, 250, 0.6);
  position: absolute;
  right: -75px;
  top: 48px;
  content: "";
}

.action-icon {
  width: 32px;
  height: 32px;
  pointer-events: none;
  user-select: none;
}
.action-title {
  font-size: 24px;
  line-height: 24px;
  text-align: center;
  color: #fafafa;
  margin: 16px 0 12px;
  font-weight: 300;
}

.action-description {
  text-align: center;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #fafafa;
}

.photo-gallery {
  position: relative;
  margin: 100px auto 0;
}

.row {
  width: 100%;
  display: flex;
  flex-direction: column;
  width: 960px;
  margin: 0 auto;
}

.row-images-mobile {
  display: none;
}
.row-images {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 40px;
}

.row-image img {
  transition: transform 0.4s;
}

.row-image:hover img {
  transform: scale(1.05);
  transform-origin: 50% 50%;
}

.row-images img {
  width: 150px;
  height: 150px;
  object-fit: cover;
}

.row-keywords {
  margin-bottom: 48px;
}

.row-keywords ul {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0;
}

.row-keywords ul li {
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: #fafafa;
  display: flex;
  margin: 0 4px;
}

.row-keywords > ul > li:not(:last-child):after {
  content: "• ";
  margin-left: 8px;
}

.contact {
  width: 100%;
  height: 136px;
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    90.02deg,
    rgba(255, 255, 255, 0) 20.57%,
    rgba(255, 255, 255, 0.055459) 51.78%,
    rgba(255, 255, 255, 0) 74.52%
  );
}

.contact span {
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  color: #ffffff;
}

.contact .social-media-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}

.agreements {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 32px;
}

.agreements a {
  margin-right: 16px;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  text-decoration-line: underline;
  color: #fafafa;
}

.section-title {
  font-weight: 600;
  font-size: 32px;
  line-height: 64px;
  text-align: center;
  color: #fafafa;
  margin-bottom: 40px;
}

.circle1,
.circle2,
.circle3 {
  pointer-events: none;
  z-index: -1;
}

.circle1 {
  position: absolute;
  top: 0;
  left: 0;
}
.circle2 {
  position: absolute;
  top: 0;
  right: 0;
}
.circle3 {
  position: absolute;
  left: 0;
  bottom: -72px;
}

/* TABLET RESOLUTIONS */
@media (min-width: 768px) and (max-width: 1120px) {
  body {
    padding: 0 30px;
  }
  .container {
    width: 100%;
    max-width: unset;
  }

  .logo-mobile {
    display: none;
  }

  .hero-section {
    gap: 40px;
  }

  .hero-img {
    display: none !important;
  }

  .hero-img-responsive {
    display: block;
    width: 315px;
    height: 400px;
  }

  .hero-img-responsive img {
    width: 315px;
    height: 400px;
    object-fit: cover;
  }

  .slogan {
    font-weight: 300;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 2px;
  }
  .title {
    font-weight: 600;
    font-size: 32px;
    line-height: 34px;
  }
  .suffix {
    font-weight: 300;
    font-size: 20px;
    line-height: 20px;
  }
  .qr-section {
    display: none;
  }

  .download-app {
    display: block;
    width: 100px;
  }
  .section-title {
    font-weight: 400;
    font-size: 20px;
    line-height: 64px;
    margin-bottom: 24px;
  }
  .photo-gallery {
    margin-top: 64px;
  }

  .actions {
    width: 730px;
  }

  .action {
    width: 200px;
  }

  .action:not(:last-child):before {
    right: -35px;
  }

  .row {
    width: 100%;
  }

  .row-images {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-gap: 16px;
    margin: 0 auto;
  }

  .row-images img {
    width: 130px;
    height: 130px;
    object-fit: cover;
  }

  .row-keywords ul li {
    font-weight: 300;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    display: flex;
    margin: 0 4px;
  }
  .circle3 {
    top: -100px;
    left: -72px;
  }
}

/* MOBILE RESOLUTIONS */
@media screen and (max-width: 767px) {
  body {
    padding: 0 24px;
  }

  #logo {
    height: 72px;
    padding: 24px 0;
  }

  .logo img {
    width: 114px;
    height: 32px;
  }

  .logo-desktop {
    display: none;
  }

  .logo-mobile {
    display: block;
  }

  .hero-section {
    flex-direction: column-reverse;
    gap: 0;
  }

  .hero-img {
    display: none;
  }

  .hero-img-responsive {
    display: block;
    margin-top: 32px;
  }

  .hero-img-responsive img {
    width: 100%;
    height: 100%;
  }

  .description {
    width: 100%;
    display: flex;
    align-items: center;
  }

  .qr-section {
    width: 100%;
    margin: 0 auto;
  }

  .download-app a {
    display: flex;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
  }

  .slogan {
    font-weight: 300;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 2px;
  }
  .title {
    font-weight: 600;
    font-size: 32px;
    line-height: 34px;
  }
  .suffix {
    font-weight: 300;
    font-size: 20px;
    line-height: 20px;
  }

  .qr-section {
    display: none;
  }

  .download-app {
    display: block;
    width: 100px;
  }

  .actions {
    width: 100%;
    flex-direction: column;
    margin: 48px 0 0;
  }

  .action:not(:last-child):before {
    display: none;
  }

  .action::after,
  .action::before {
    width: 64px;
    height: 1px;
    background-color: rgba(250, 250, 250, 0.6);
    position: absolute;
    right: 50%;
    top: -32px;
    transform: translate(50%, 50%);
    content: "";
  }

  .action {
    margin-bottom: 64px;
  }

  .photo-gallery {
    margin: 0;
  }

  .section-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
  }

  .row {
    width: 100%;
    align-items: center;
    justify-content: center;
  }

  .row-images-mobile {
    display: block;
  }
  .row-images-desktop {
    display: none;
  }

  .row-images {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;

    grid-gap: 16px;
    margin: 0 auto;
  }

  .row > :nth-last-of-type(2) {
    display: flex;
    justify-content: center;
  }

  .row-images img {
    width: 93px;
    height: 93px;
  }
  .row-keywords {
    margin: 24px 0;
  }

  .row-keywords ul {
    margin: 0;
  }

  .row-keywords ul li {
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0;
    margin: 0 2px;
  }

  .contact span {
    font-size: 20px;
    font-weight: 300;
  }

  .circle1,
  .circle2,
  .circle3 {
    display: none;
  }
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.tabs label {
  order: 1;
  display: block;
  padding: 0;
  margin: 0 36px;
  cursor: pointer;
  color: #fafafa;
  opacity: 0.5;
  padding-bottom: 5px;
  text-decoration: none;
  transition: opacity ease 0.2s;

  border-bottom: 3px solid #7b61ff;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
}
.tabs .tab {
  order: 99;
  flex-grow: 1;
  width: 100%;
  display: none;
  padding: 1rem;
}
.tabs input[type="radio"] {
  display: none;
}
.tabs input[type="radio"]:checked + label {
  /* background: #fff; */
  opacity: 1;
}
.tabs input[type="radio"]:checked + label + .tab {
  display: block;
}

.tab,
.tab h4,
.tab p,
.tab ul,
.tab ul li {
  margin: 0;
  color: #fafafa;
  font-weight: 200;
  font-size: 16px;
  line-height: 24px;
  text-shadow: none;
  margin-bottom: 16px;
}

.tab a {
  cursor: pointer;
  pointer-events: unset;
  text-decoration: none;
  color: #fafafa;
  font-weight: 600;
}

@media (max-width: 768px) {
  .tabs label {
    width: 50%;
    margin: 0;
    font-size: 14px;
  }
}
