/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Links */

a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type='submit'] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

input[type='file'] {
  max-width: 100%;
}

@font-face {
  font-family: 'Sora';
  src: url('/fontsALINSUN3/sora-variablefontALINSUN3.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
}
.headerALINSUN3 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
}

.headerALINSUN3__container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.headerALINSUN3__logo,
.headerALINSUN3__mobile-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.headerALINSUN3__logo-image {
  display: block;
  width: 244px;
  max-width: 100%;
  height: auto;
}

.headerALINSUN3__nav {
  display: flex;
  justify-content: center;
}

.headerALINSUN3__menu {
  display: flex;
  align-items: center;
  gap: 60px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.headerALINSUN3__menu-item {
  margin: 0;
  padding: 0;
}

.headerALINSUN3__menu-link,
.headerALINSUN3__ga-link {
  color: #fff6d5;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.headerALINSUN3__menu-link:hover,
.headerALINSUN3__ga-link:hover,
.headerALINSUN3__menu-link:focus-visible,
.headerALINSUN3__ga-link:focus-visible {
  opacity: 0.8;
}

.headerALINSUN3__actions {
  display: flex;
  align-items: center;
  gap: 34px;
}

.headerALINSUN3__help-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 12px 60px;
  border: 1px solid #4d4d4d;
  border-radius: 30px;
  background: #fffef8;
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease,
    transform 0.25s ease;
}

.headerALINSUN3__help-link:hover,
.headerALINSUN3__help-link:focus-visible {
  transform: translateY(-1px);
}

.headerALINSUN3__burger {
  position: relative;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  width: 46px;
  height: 46px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.headerALINSUN3__burger-line {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 10px;
  background: #fff6d5;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.headerALINSUN3__burger.is-active .headerALINSUN3__burger-line:nth-child(1) {
  transform: translateY(13px) rotate(45deg);
}

.headerALINSUN3__burger.is-active .headerALINSUN3__burger-line:nth-child(2) {
  opacity: 0;
}

.headerALINSUN3__burger.is-active .headerALINSUN3__burger-line:nth-child(3) {
  transform: translateY(-13px) rotate(-45deg);
}

.headerALINSUN3__overlay {
  position: fixed;
  inset: 0;
  z-index: 31;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.headerALINSUN3__overlay.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.headerALINSUN3__mobile {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 32;
  display: flex;
  flex-direction: column;
  width: min(380px, 100%);
  height: 100vh;
  padding: 18px 24px 36px;
  background: rgba(19, 17, 18, 0.96);
  backdrop-filter: blur(10px);
  transform: translateX(105%);
  transition: transform 0.35s ease;
}

.headerALINSUN3__mobile.is-active {
  transform: translateX(0);
}

.headerALINSUN3__mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 52px;
}

.headerALINSUN3__mobile-logo-image {
  display: block;
  width: 188px;
  max-width: 100%;
  height: auto;
}

.headerALINSUN3__mobile-close {
  position: relative;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 246, 213, 0.2);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.headerALINSUN3__mobile-close-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 2px;
  border-radius: 10px;
  background: #fff6d5;
}

.headerALINSUN3__mobile-close-line:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.headerALINSUN3__mobile-close-line:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.headerALINSUN3__mobile-nav {
  margin-top: 0;
}

.headerALINSUN3__mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.headerALINSUN3__mobile-item {
  margin: 0;
  padding: 0;
}

.headerALINSUN3__mobile-link {
  color: #fff6d5;
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
}

.headerALINSUN3__mobile-help-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 12px 32px;
  border-radius: 30px;
  background: #fffef8;
  color: #000000;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.heroALINSUN3 {
  min-height: 760px;
  padding-top: 104px;
  padding-bottom: 36px;
  background-image: url('/imagesALINSUN3/hero-man-1ALINSUN3.webp');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.heroALINSUN3__container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 48px;
  min-height: calc(760px - 104px - 36px);
}

.heroALINSUN3__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 726px;
  padding-top: 58px;
}

.heroALINSUN3__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 39px;
  padding: 6px 8px;
  border-radius: 2px;
  background: #e5f3f6;
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
}

.heroALINSUN3__title {
  margin: 54px 0 29px;
  color: #fff6d5;
  font-family: 'Sora', sans-serif;
  font-size: 62px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.06;
  text-transform: uppercase;
  letter-spacing: 0;
}

.heroALINSUN3__description {
  margin: 0;
  color: #fff6d5;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.33;
}

.heroALINSUN3__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 183px;
  min-height: 60px;
  margin-top: 42px;
  border: 1px solid #4d4d4d;
  border-radius: 30px;
  background: #fffef8;
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.heroALINSUN3__aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  max-width: 295px;
  padding-bottom: 134px;
}

.heroALINSUN3__aside-text {
  margin: 0;
  color: #fff6d5;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.36;
}

.heroALINSUN3__partners {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 14px 0 0;
  padding: 14px 0 0;
  border-top: 1px solid rgba(255, 246, 213, 0.75);
  list-style: none;
  width: 100%;
}

.heroALINSUN3__partners-item {
  display: flex;
  align-items: center;
}

.heroALINSUN3__partners-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.heroALINSUN3__partners-link:hover,
.heroALINSUN3__partners-link:focus-visible {
  opacity: 0.8;
}

.heroALINSUN3__partners-image {
  display: block;
  width: auto;
  max-width: 100%;
  height: 18px;
  object-fit: contain;
}

/* TABLET */
@media (max-width: 1199px) {
  .headerALINSUN3__container {
    gap: 18px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .headerALINSUN3__logo-image {
    width: 210px;
  }

  .headerALINSUN3__menu {
    gap: 34px;
  }

  .headerALINSUN3__actions {
    gap: 22px;
  }

  .headerALINSUN3__help-link {
    padding-right: 34px;
    padding-left: 34px;
  }

  .heroALINSUN3 {
    min-height: 900px;
    padding-top: 110px;
    padding-bottom: 48px;
    background-position: center center;
  }

  .heroALINSUN3__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 42px;
    min-height: auto;
  }

  .heroALINSUN3__content {
    max-width: 700px;
    padding-top: 36px;
  }

  .heroALINSUN3__title {
    margin-top: 34px;
    margin-bottom: 24px;
    font-size: 54px;
    line-height: 1.08;
  }

  .heroALINSUN3__description {
    font-size: 17px;
    line-height: 1.42;
  }

  .heroALINSUN3__button {
    margin-top: 30px;
  }

  .heroALINSUN3__aside {
    max-width: 100%;
    padding-bottom: 0;
  }

  .heroALINSUN3__aside > div,
  .heroALINSUN3__aside {
    width: 100%;
  }

  .heroALINSUN3__aside-text {
    max-width: 560px;
    font-size: 16px;
    line-height: 1.45;
  }

  .heroALINSUN3__partners {
    gap: 28px;
    padding-top: 16px;
    margin-top: 18px;
  }

  .heroALINSUN3__partners-image {
    height: 20px;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .headerALINSUN3__container {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 16px;
    padding-top: 22px;
    padding-bottom: 0;
  }

  .headerALINSUN3__nav,
  .headerALINSUN3__ga-link,
  .headerALINSUN3__help-link {
    display: none;
  }

  .headerALINSUN3__actions {
    gap: 0;
  }

  .headerALINSUN3__burger {
    display: inline-flex;
    width: 38px;
    height: 38px;
    gap: 7px;
  }

  .headerALINSUN3__burger-line {
    height: 3px;
  }

  .headerALINSUN3__logo-image {
    width: 171px;
  }

  .heroALINSUN3 {
    min-height: 820px;
    padding-top: 92px;
    padding-bottom: 22px;
    background-position: center top;
  }

  .heroALINSUN3__container {
    gap: 24px;
  }

  .heroALINSUN3__content {
    max-width: 100%;
    padding-top: 56px;
  }

  .heroALINSUN3__badge {
    min-height: 37px;
    padding: 6px 8px;
    font-size: 18px;
  }

  .heroALINSUN3__title {
    margin: 28px 0 18px;
    font-size: 32px;
    line-height: 1.08;
    text-align: left;
  }

  .heroALINSUN3__description {
    font-size: 16px;
    line-height: 1.3;
  }

  .heroALINSUN3__button {
    width: 100%;
    min-height: 58px;
    margin-top: 22px;
    font-size: 14px;
  }

  .heroALINSUN3__aside {
    align-items: flex-start;
  }

  .heroALINSUN3__aside-text {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.33;
  }

  .heroALINSUN3__partners {
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
    padding-top: 12px;
  }

  .heroALINSUN3__partners-item {
    flex: 1 1 0;
    justify-content: center;
  }

  .heroALINSUN3__partners-link {
    width: 100%;
  }

  .heroALINSUN3__partners-image {
    height: 16px;
  }

  .headerALINSUN3__mobile {
    padding: 22px 20px 32px;
  }

  .headerALINSUN3__mobile-top {
    margin-bottom: 44px;
  }

  .headerALINSUN3__mobile-logo-image {
    width: 171px;
  }

  .headerALINSUN3__mobile-menu {
    gap: 20px;
  }

  .headerALINSUN3__mobile-link {
    font-size: 22px;
  }

  .headerALINSUN3__mobile-help-link {
    width: 100%;
    min-height: 58px;
    font-size: 16px;
  }
}

.slots-trapALINSUN3 {
  padding: 40px 0;
  background: #ffffff;
}

.slots-trapALINSUN3__box {
  display: grid;
  grid-template-columns: minmax(280px, 318px) 1fr;
  gap: 0;
  align-items: stretch;
  padding: 30px;
  border-radius: 12px;
  background: #e5f3f6;
}

.slots-trapALINSUN3__title {
  margin: 0;
  max-width: 318px;
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.slots-trapALINSUN3__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.slots-trapALINSUN3__item {
  display: flex;
  align-items: center;
  min-height: 122px;
  padding: 0 34px;
}

.slots-trapALINSUN3__item:not(:last-child) {
  border-right: 1px solid rgba(77, 77, 77, 0.45);
}

.slots-trapALINSUN3__text {
  display: block;
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

/* tablet */
@media (max-width: 1024px) {
  .slots-trapALINSUN3__box {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .slots-trapALINSUN3__title {
    max-width: 100%;
  }

  .slots-trapALINSUN3__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .slots-trapALINSUN3__item {
    min-height: 86px;
    padding: 0 24px;
  }

  .slots-trapALINSUN3__item:nth-child(odd) {
    border-right: 1px solid rgba(77, 77, 77, 0.45);
  }

  .slots-trapALINSUN3__item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(77, 77, 77, 0.45);
  }

  .slots-trapALINSUN3__item:not(:last-child) {
    border-right: none;
  }

  .slots-trapALINSUN3__item:nth-child(odd) {
    border-right: 1px solid rgba(77, 77, 77, 0.45);
  }
}

/* mobile */
@media (max-width: 767px) {
  .slots-trapALINSUN3 {
    padding: 28px 0;
  }

  .slots-trapALINSUN3__box {
    display: block;
    padding: 30px;
    border-radius: 12px;
  }

  .slots-trapALINSUN3__title {
    margin-bottom: 26px;
    color: #4d4d4d;
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
  }

  .slots-trapALINSUN3__list {
    display: flex;
    flex-direction: column;
  }

  .slots-trapALINSUN3__item {
    min-height: auto;
    padding: 0 0 14px;
    display: block;
  }

  .slots-trapALINSUN3__item:not(:last-child) {
    margin-bottom: 14px;
    border-right: none;
    border-bottom: 1px solid rgba(77, 77, 77, 0.65);
  }

  .slots-trapALINSUN3__text {
    color: #4d4d4d;
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
  }
}

.text-sectionALINSUN3 {
  padding: 40px 0 60px;
  background: #ffffff;
}

.text-sectionALINSUN3__wrapper {
  max-width: 1280px;
}

.text-sectionALINSUN3__title {
  margin: 0 0 32px;
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.text-sectionALINSUN3__subtitle {
  margin: 32px 0 20px;
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.text-sectionALINSUN3__text {
  margin: 0 0 20px;
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.text-sectionALINSUN3__list {
  margin: 0 0 20px;
  padding-left: 22px;
  list-style: disc;
}

.text-sectionALINSUN3__item {
  margin-bottom: 16px;
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  list-style-type: disc;
}

.text-sectionALINSUN3__item:last-child {
  margin-bottom: 0;
}

.text-sectionALINSUN3__item strong {
  font-weight: 600;
}

/* tablet */
@media (max-width: 1024px) {
  .text-sectionALINSUN3 {
    padding: 36px 0 52px;
  }

  .text-sectionALINSUN3__title {
    margin-bottom: 28px;
    font-size: 24px;
  }

  .text-sectionALINSUN3__subtitle {
    margin: 28px 0 18px;
    font-size: 20px;
  }

  .text-sectionALINSUN3__text,
  .text-sectionALINSUN3__item {
    font-size: 16px;
  }
}

/* mobile */
@media (max-width: 767px) {
  .text-sectionALINSUN3 {
    padding: 28px 0 40px;
  }

  .text-sectionALINSUN3__title {
    margin-bottom: 24px;
    font-size: 20px;
  }

  .text-sectionALINSUN3__subtitle {
    margin: 24px 0 16px;
    font-size: 16px;
  }

  .text-sectionALINSUN3__text,
  .text-sectionALINSUN3__item {
    font-size: 16px;
  }

  .text-sectionALINSUN3__list {
    padding-left: 18px;
  }

  .text-sectionALINSUN3__item {
    margin-bottom: 14px;
  }
}

.story-blockALINSUN3 {
  padding: 40px 0 56px;
  background: #ffffff;
}

.story-blockALINSUN3__grid {
  display: grid;
  grid-template-columns: minmax(320px, 498px) minmax(320px, 1fr);
  gap: 30px;
  align-items: start;
}

.story-blockALINSUN3__media {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.story-blockALINSUN3__title {
  margin: 0 0 28px;
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.story-blockALINSUN3__image-box {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.story-blockALINSUN3__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.story-blockALINSUN3__content {
  display: block;
}

.story-blockALINSUN3__subtitle {
  margin: 0 0 14px;
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.story-blockALINSUN3__subtitle:not(:first-child) {
  margin-top: 26px;
}

.story-blockALINSUN3__text {
  margin: 0 0 18px;
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.story-blockALINSUN3__text:last-child {
  margin-bottom: 0;
}

/* tablet */
@media (max-width: 1024px) {
  .story-blockALINSUN3 {
    padding: 36px 0 48px;
  }

  .story-blockALINSUN3__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .story-blockALINSUN3__media {
    max-width: 640px;
  }

  .story-blockALINSUN3__title {
    margin-bottom: 24px;
  }

  .story-blockALINSUN3__image-box {
    max-width: 640px;
  }
}

/* mobile */
@media (max-width: 767px) {
  .story-blockALINSUN3 {
    padding: 28px 0 36px;
  }

  .story-blockALINSUN3__grid {
    gap: 18px;
  }

  .story-blockALINSUN3__title {
    margin-bottom: 18px;
    font-size: 20px;
  }

  .story-blockALINSUN3__image-box,
  .story-blockALINSUN3__image {
    border-radius: 12px;
    height: 200px;
  }

  .story-blockALINSUN3__subtitle {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .story-blockALINSUN3__subtitle:not(:first-child) {
    margin-top: 18px;
  }

  .story-blockALINSUN3__text {
    margin-bottom: 14px;
    font-size: 16px;
  }
}

.tickerALINSUN3 {
  overflow: hidden;
  background: #fff6d5;
  padding: 18px 0;
}

.tickerALINSUN3__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: tickerMoveALINSUN3 24s linear infinite;
  will-change: transform;
}

.tickerALINSUN3__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.tickerALINSUN3__item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  padding-right: 56px;
}

.tickerALINSUN3__icon {
  display: block;
  width: 27px;
  height: 24px;
  flex-shrink: 0;
  object-fit: contain;
}

.tickerALINSUN3__text {
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  white-space: nowrap;
}

@keyframes tickerMoveALINSUN3 {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.tickerALINSUN3:hover .tickerALINSUN3__track {
  animation-play-state: paused;
}

@media (max-width: 767px) {
  .tickerALINSUN3 {
    padding: 14px 0;
  }

  .tickerALINSUN3__item {
    gap: 10px;
    padding-right: 36px;
  }

  .tickerALINSUN3__icon {
    width: 22px;
    height: 20px;
  }

  .tickerALINSUN3__text {
    font-size: 16px;
  }
}

.bridge-infoALINSUN3 {
  padding: 40px 0 56px;
  background: #ffffff;
}

.bridge-infoALINSUN3__grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 456px);
  gap: 32px;
  align-items: start;
}

.bridge-infoALINSUN3__content {
  min-width: 0;
}

.bridge-infoALINSUN3__title {
  margin: 0 0 28px;
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.bridge-infoALINSUN3__subtitle {
  margin: 28px 0 16px;
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.bridge-infoALINSUN3__text {
  margin: 0 0 18px;
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.bridge-infoALINSUN3__list {
  margin: 0 0 18px;
  padding-left: 22px;
}

.bridge-infoALINSUN3__item {
  margin-bottom: 16px;
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.bridge-infoALINSUN3__item:last-child {
  margin-bottom: 0;
}

.bridge-infoALINSUN3__aside {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bridge-infoALINSUN3__image-box {
  overflow: hidden;
  border-radius: 12px;
}

.bridge-infoALINSUN3__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.bridge-infoALINSUN3__note {
  border-radius: 12px;
  background: #fff6d5;
  padding: 20px 18px;
}

.bridge-infoALINSUN3__note-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.bridge-infoALINSUN3__note-icon {
  display: block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  object-fit: contain;
}

.bridge-infoALINSUN3__note-title {
  margin: 0;
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.bridge-infoALINSUN3__note-text {
  margin: 0;
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* tablet */
@media (max-width: 1024px) {
  .bridge-infoALINSUN3 {
    padding: 36px 0 48px;
  }

  .bridge-infoALINSUN3__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .bridge-infoALINSUN3__aside {
    max-width: 520px;
  }

  .bridge-infoALINSUN3__title {
    margin-bottom: 24px;
  }

  .bridge-infoALINSUN3__subtitle {
    margin: 24px 0 14px;
  }
}

/* mobile */
@media (max-width: 767px) {
  .bridge-infoALINSUN3 {
    padding: 28px 0 36px;
  }

  .bridge-infoALINSUN3__grid {
    gap: 20px;
  }

  .bridge-infoALINSUN3__title {
    margin-bottom: 20px;
    font-size: 20px;
  }

  .bridge-infoALINSUN3__subtitle {
    margin: 20px 0 12px;
    font-size: 16px;
  }

  .bridge-infoALINSUN3__text,
  .bridge-infoALINSUN3__item,
  .bridge-infoALINSUN3__note-text {
    font-size: 16px;
  }

  .bridge-infoALINSUN3__list {
    padding-left: 18px;
  }

  .bridge-infoALINSUN3__item {
    margin-bottom: 14px;
  }

  .bridge-infoALINSUN3__aside {
    gap: 10px;
  }

  .bridge-infoALINSUN3__note {
    padding: 18px 16px;
  }

  .bridge-infoALINSUN3__note-head {
    margin-bottom: 12px;
  }

  .bridge-infoALINSUN3__note-title {
    font-size: 16px;
  }

  .bridge-infoALINSUN3__note-icon {
    width: 20px;
    height: 20px;
  }
}

.quiz-checkALINSUN3 {
  padding: 40px 0 56px;
  background: #ffffff;
}

.quiz-checkALINSUN3__grid {
  display: grid;
  grid-template-columns: minmax(320px, 456px) minmax(320px, 1fr);
  gap: 26px;
  align-items: start;
}

.quiz-checkALINSUN3__media {
  min-width: 0;
}

.quiz-checkALINSUN3__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.quiz-checkALINSUN3__content {
  min-width: 0;
}

.quiz-checkALINSUN3__title {
  margin: 0 0 24px;
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.quiz-checkALINSUN3__text {
  margin: 0 0 18px;
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.quiz-checkALINSUN3__quiz {
  margin-top: 18px;
  border-radius: 12px;
  background: #e5f3f6;
  padding: 26px 28px 28px;
}

.quiz-checkALINSUN3__quiz[hidden],
.quiz-checkALINSUN3__result[hidden] {
  display: none !important;
}

.quiz-checkALINSUN3__steps {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.quiz-checkALINSUN3__step {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #6b6b6b;
  background: transparent;
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  cursor: pointer;
  transition: 0.25s ease;
}

.quiz-checkALINSUN3__step.is-active {
  background: #d7e7eb;
}

.quiz-checkALINSUN3__step.is-complete {
  background: #4d4d4d;
  border-color: #4d4d4d;
  color: #ffffff;
}

.quiz-checkALINSUN3__step.is-locked {
  opacity: 0.45;
  cursor: not-allowed;
}

.quiz-checkALINSUN3__question {
  margin: 0 0 18px;
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.quiz-checkALINSUN3__answers {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.quiz-checkALINSUN3__answer {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  cursor: pointer;
}

.quiz-checkALINSUN3__answer input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.quiz-checkALINSUN3__radio {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #5a5a5a;
  background: transparent;
  display: inline-block;
  flex-shrink: 0;
  transition: 0.2s ease;
}

.quiz-checkALINSUN3__answer input:checked + .quiz-checkALINSUN3__radio {
  background: #5a5a5a;
}

.quiz-checkALINSUN3__answer-text {
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.quiz-checkALINSUN3__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
}

.quiz-checkALINSUN3__back {
  border: none;
  background: transparent;
  padding: 0;
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration: underline;
  text-underline-offset: 5px;
  cursor: pointer;
}

.quiz-checkALINSUN3__back:disabled {
  opacity: 0.45;
  cursor: default;
}

.quiz-checkALINSUN3__next {
  min-width: 144px;
  min-height: 42px;
  padding: 10px 26px;
  border-radius: 30px;
  border: 1px solid #6b6b6b;
  background: transparent;
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  cursor: pointer;
  transition: 0.25s ease;
}

.quiz-checkALINSUN3__next:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.quiz-checkALINSUN3__result {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 320px;
  gap: 36px;
  align-items: center;
  margin-top: 22px;
}

.quiz-checkALINSUN3__result-card {
  border-radius: 12px;
  background: #fff6d5;
  padding: 34px 24px 28px;
  text-align: center;
}

.quiz-checkALINSUN3__result-status {
  margin: 0 0 22px;
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.quiz-checkALINSUN3__result-text {
  margin: 0 0 24px;
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.quiz-checkALINSUN3__result-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 222px;
  min-height: 50px;
  padding: 12px 30px;
  border-radius: 30px;
  border: 1px solid #6b6b6b;
  background: #fffef8;
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
}

.quiz-checkALINSUN3__result-scale {
  margin: 0;
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

/* tablet */
@media (max-width: 1024px) {
  .quiz-checkALINSUN3 {
    padding: 36px 0 48px;
  }

  .quiz-checkALINSUN3__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .quiz-checkALINSUN3__media {
    max-width: 560px;
  }

  .quiz-checkALINSUN3__quiz {
    max-width: 560px;
  }

  .quiz-checkALINSUN3__result {
    grid-template-columns: 1fr;
    max-width: 560px;
    gap: 22px;
  }
}

/* mobile */
@media (max-width: 767px) {
  .quiz-checkALINSUN3 {
    padding: 28px 0 36px;
  }

  .quiz-checkALINSUN3__grid {
    gap: 18px;
  }

  .quiz-checkALINSUN3__title {
    margin-bottom: 18px;
    font-size: 20px;
  }

  .quiz-checkALINSUN3__text {
    margin-bottom: 14px;
    font-size: 16px;
  }

  .quiz-checkALINSUN3__quiz {
    padding: 18px 18px 20px;
    border-radius: 12px;
  }

  .quiz-checkALINSUN3__steps {
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 18px;
  }

  .quiz-checkALINSUN3__step {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .quiz-checkALINSUN3__question {
    margin-bottom: 16px;
    font-size: 16px;
    text-align: center;
  }

  .quiz-checkALINSUN3__answers {
    gap: 10px;
  }

  .quiz-checkALINSUN3__answer-text {
    font-size: 16px;
  }

  .quiz-checkALINSUN3__controls {
    margin-top: 24px;
  }

  .quiz-checkALINSUN3__back,
  .quiz-checkALINSUN3__next {
    font-size: 16px;
  }

  .quiz-checkALINSUN3__next {
    min-width: 144px;
    min-height: 42px;
  }

  .quiz-checkALINSUN3__result-card {
    padding: 24px 18px 22px;
  }

  .quiz-checkALINSUN3__result-status {
    margin-bottom: 16px;
    font-size: 16px;
  }

  .quiz-checkALINSUN3__result-text,
  .quiz-checkALINSUN3__result-scale {
    font-size: 16px;
  }

  .quiz-checkALINSUN3__result-btn {
    min-width: 170px;
    min-height: 46px;
    font-size: 16px;
  }
}

.door-blockALINSUN3 {
  padding: 40px 0 56px;
  background: #ffffff;
}

.door-blockALINSUN3__grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 560px);
  gap: 34px;
  align-items: start;
}

.door-blockALINSUN3__content {
  min-width: 0;
}

.door-blockALINSUN3__title {
  margin: 0 0 28px;
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.door-blockALINSUN3__subtitle {
  margin: 28px 0 16px;
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.door-blockALINSUN3__text {
  margin: 0 0 18px;
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.door-blockALINSUN3__list {
  margin: 0 0 18px;
  padding-left: 22px;
}

.door-blockALINSUN3__item {
  margin-bottom: 10px;
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.door-blockALINSUN3__item:last-child {
  margin-bottom: 0;
}

.door-blockALINSUN3__media {
  min-width: 0;
}

.door-blockALINSUN3__image-box {
  overflow: hidden;
  border-radius: 12px;
}

.door-blockALINSUN3__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* tablet */
@media (max-width: 1024px) {
  .door-blockALINSUN3 {
    padding: 36px 0 48px;
  }

  .door-blockALINSUN3__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .door-blockALINSUN3__media {
    max-width: 560px;
  }

  .door-blockALINSUN3__title {
    margin-bottom: 24px;
  }

  .door-blockALINSUN3__subtitle {
    margin: 24px 0 14px;
  }
}

/* mobile */
@media (max-width: 767px) {
  .door-blockALINSUN3 {
    padding: 28px 0 36px;
  }

  .door-blockALINSUN3__grid {
    gap: 20px;
  }

  .door-blockALINSUN3__title {
    margin-bottom: 20px;
    font-size: 20px;
  }

  .door-blockALINSUN3__subtitle {
    margin: 20px 0 12px;
    font-size: 16px;
  }

  .door-blockALINSUN3__text,
  .door-blockALINSUN3__item {
    font-size: 16px;
  }

  .door-blockALINSUN3__list {
    padding-left: 18px;
  }

  .door-blockALINSUN3__item {
    margin-bottom: 8px;
  }
}

.steps-gaALINSUN3 {
  padding: 40px 0 56px;
  background: #ffffff;
}

.steps-gaALINSUN3__title {
  margin: 0 0 32px;
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.steps-gaALINSUN3__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: 22px;
}

.steps-gaALINSUN3__card {
  min-width: 0;
  padding: 34px;
  border-radius: 12px;
  background: #e5f3f6;
}

.steps-gaALINSUN3__icon {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 26px;
}

.steps-gaALINSUN3__card-title {
  margin: 0 0 14px;
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.steps-gaALINSUN3__text {
  margin: 0 0 26px;
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.steps-gaALINSUN3__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-gaALINSUN3__item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.steps-gaALINSUN3__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 300px;
  border: 1px solid #4d4d4d;
  background: #fff6d5;
  color: #4d4d4d;
  text-align: center;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.steps-gaALINSUN3__item-text {
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

/* tablet */
@media (max-width: 1024px) {
  .steps-gaALINSUN3 {
    padding: 36px 0 48px;
  }

  .steps-gaALINSUN3__grid {
    gap: 18px;
  }

  .steps-gaALINSUN3__card {
    padding: 28px;
  }
}

/* mobile */
@media (max-width: 767px) {
  .steps-gaALINSUN3 {
    padding: 28px 0 36px;
  }

  .steps-gaALINSUN3__title {
    margin-bottom: 14px;
    font-size: 20px;
  }

  .steps-gaALINSUN3__grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .steps-gaALINSUN3__card {
    padding: 20px;
  }

  .steps-gaALINSUN3__icon {
    width: 46px;
    height: 46px;
    margin-bottom: 22px;
  }

  .steps-gaALINSUN3__card-title {
    margin-bottom: 14px;
    font-size: 16px;
  }

  .steps-gaALINSUN3__text {
    margin-bottom: 22px;
    font-size: 16px;
  }

  .steps-gaALINSUN3__list {
    gap: 10px;
  }

  .steps-gaALINSUN3__item {
    gap: 10px;
    align-items: flex-start;
  }

  .steps-gaALINSUN3__num {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    font-size: 16px;
  }

  .steps-gaALINSUN3__item-text {
    font-size: 16px;
    line-height: 1.2;
  }
}

.faqALINSUN3 {
  padding: 40px 0 56px;
  background: #ffffff;
}

.faqALINSUN3__head {
  margin-bottom: 28px;
}

.faqALINSUN3__title {
  margin: 0 0 14px;
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.faqALINSUN3__desc {
  margin: 0;
  max-width: 920px;
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.faqALINSUN3__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faqALINSUN3__item {
  border-radius: 12px;
  background: #e5f3f6;
  overflow: hidden;
}

.faqALINSUN3__item-title {
  margin: 0;
}

.faqALINSUN3__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.faqALINSUN3__question {
  display: block;
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.faqALINSUN3__icon {
  position: relative;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.faqALINSUN3__icon::before,
.faqALINSUN3__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 10px;
  height: 2px;
  border-radius: 2px;
  background: #4d4d4d;
  transition: 0.25s ease;
}

.faqALINSUN3__icon::before {
  left: 4px;
  transform: translateY(-50%) rotate(45deg);
}

.faqALINSUN3__icon::after {
  right: 4px;
  transform: translateY(-50%) rotate(-45deg);
}

.faqALINSUN3__trigger[aria-expanded='true'] .faqALINSUN3__icon::before {
  transform: translateY(-50%) rotate(-45deg);
}

.faqALINSUN3__trigger[aria-expanded='true'] .faqALINSUN3__icon::after {
  transform: translateY(-50%) rotate(45deg);
}

.faqALINSUN3__panel {
  padding: 0 24px 24px;
}

.faqALINSUN3__panel[hidden] {
  display: none;
}

.faqALINSUN3__answer {
  margin: 0;
  max-width: 1120px;
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* tablet */
@media (max-width: 1024px) {
  .faqALINSUN3 {
    padding: 36px 0 48px;
  }

  .faqALINSUN3__head {
    margin-bottom: 24px;
  }

  .faqALINSUN3__trigger {
    padding: 20px 22px;
  }

  .faqALINSUN3__panel {
    padding: 0 22px 22px;
  }
}

/* mobile */
@media (max-width: 767px) {
  .faqALINSUN3 {
    padding: 28px 0 36px;
  }

  .faqALINSUN3__head {
    margin-bottom: 20px;
  }

  .faqALINSUN3__title {
    margin-bottom: 12px;
    font-size: 20px;
  }

  .faqALINSUN3__desc {
    font-size: 16px;
    line-height: 1.35;
  }

  .faqALINSUN3__list {
    gap: 10px;
  }

  .faqALINSUN3__trigger {
    align-items: flex-start;
    padding: 18px 16px;
    gap: 14px;
  }

  .faqALINSUN3__question {
    font-size: 16px;
    line-height: 1.15;
  }

  .faqALINSUN3__icon {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    margin-top: 2px;
  }

  .faqALINSUN3__icon::before,
  .faqALINSUN3__icon::after {
    width: 9px;
  }

  .faqALINSUN3__icon::before {
    left: 2px;
  }

  .faqALINSUN3__icon::after {
    right: 2px;
  }

  .faqALINSUN3__panel {
    padding: 0 16px 18px;
  }

  .faqALINSUN3__answer {
    font-size: 16px;
    line-height: 1.35;
  }
}

.cta-stepALINSUN3 {
  padding: 40px 0 56px;
  background: #ffffff;
}

.cta-stepALINSUN3__box {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: url('/imagesALINSUN3/man-stepbystepALINSUN3.webp') center / cover
    no-repeat;
  min-height: 194px;
  padding: 32px 30px;
}

.cta-stepALINSUN3__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.cta-stepALINSUN3__title {
  margin: 0 0 12px;
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.cta-stepALINSUN3__text {
  margin: 0 0 28px;
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 760px;
}

.cta-stepALINSUN3__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 188px;
  min-height: 44px;
  padding: 12px 32px;
  border-radius: 30px;
  border: 1px solid #4d4d4d;
  background: #fffef8;
  color: #4d4d4d;
  text-align: center;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
}

/* tablet */
@media (max-width: 1024px) {
  .cta-stepALINSUN3 {
    padding: 36px 0 48px;
  }

  .cta-stepALINSUN3__box {
    min-height: 210px;
    padding: 28px 24px;
    background-position: center right;
  }

  .cta-stepALINSUN3__content {
    max-width: 620px;
  }

  .cta-stepALINSUN3__title {
    font-size: 24px;
  }
}

/* mobile */
@media (max-width: 767px) {
  .cta-stepALINSUN3 {
    padding: 28px 0 36px;
  }

  .cta-stepALINSUN3__box {
    min-height: auto;
    padding: 20px;
    background-position: center center;
    background-size: cover;
  }

  .cta-stepALINSUN3__content {
    max-width: 100%;
  }

  .cta-stepALINSUN3__title {
    margin-bottom: 12px;
    font-size: 20px;
  }

  .cta-stepALINSUN3__text {
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 1.35;
  }

  .cta-stepALINSUN3__link {
    width: 100%;
    min-width: 100%;
    min-height: 42px;
    padding: 12px 20px;
  }
}

.disclaimerALINSUN3 {
  padding: 40px 0 56px;
  background: #ffffff;
}

.disclaimerALINSUN3__box {
  padding: 34px 34px 32px;
  border-radius: 12px;
  background: #e5f3f6;
}

.disclaimerALINSUN3__title {
  margin: 0 0 16px;
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.disclaimerALINSUN3__text {
  margin: 0;
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* tablet */
@media (max-width: 1024px) {
  .disclaimerALINSUN3 {
    padding: 36px 0 48px;
  }

  .disclaimerALINSUN3__box {
    padding: 28px 28px 26px;
  }
}

/* mobile */
@media (max-width: 767px) {
  .disclaimerALINSUN3 {
    padding: 28px 0 36px;
  }

  .disclaimerALINSUN3__box {
    padding: 20px;
  }

  .disclaimerALINSUN3__title {
    margin-bottom: 12px;
    font-size: 20px;
  }

  .disclaimerALINSUN3__text {
    font-size: 16px;
    line-height: 1.35;
  }
}

.footerALINSUN3 {
  padding: 40px 0 56px;
  background: #e5f3f6;
}

.footerALINSUN3__container {
  display: grid;
  grid-template-columns: minmax(320px, 520px) 1fr;
  gap: 40px;
  align-items: start;
}

.footerALINSUN3__info {
  min-width: 0;
}

.footerALINSUN3__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 18px;
}

.footerALINSUN3__logo-image {
  display: block;
  width: 160px;
  max-width: 100%;
  height: auto;
}

.footerALINSUN3__age {
  margin: 0 0 10px;
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 54px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

.footerALINSUN3__title {
  margin: 0 0 14px;
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.footerALINSUN3__text {
  margin: 0;
  max-width: 470px;
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25;
}

.footerALINSUN3__navs {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 48px;
  justify-content: end;
  padding-top: 28px;
}

.footerALINSUN3__nav-title {
  margin: 0 0 18px;
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.footerALINSUN3__list {
  margin: 0;
  padding-left: 24px;
  list-style: disc;
}

.footerALINSUN3__item {
  margin-bottom: 12px;
  list-style-type: disc;
}

.footerALINSUN3__item:last-child {
  margin-bottom: 0;
}

.footerALINSUN3__link {
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
}

.footerALINSUN3__link:hover,
.footerALINSUN3__link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* tablet */
@media (max-width: 1024px) {
  .footerALINSUN3 {
    padding: 36px 0 48px;
  }

  .footerALINSUN3__container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footerALINSUN3__navs {
    justify-content: start;
    padding-top: 0;
  }
}

/* mobile */
@media (max-width: 767px) {
  .footerALINSUN3 {
    padding: 28px 0 36px;
  }

  .footerALINSUN3__container {
    gap: 26px;
  }

  .footerALINSUN3__logo {
    margin-bottom: 16px;
  }

  .footerALINSUN3__logo-image {
    width: 150px;
  }

  .footerALINSUN3__age {
    margin-bottom: 12px;
    font-size: 42px;
  }

  .footerALINSUN3__title {
    margin-bottom: 12px;
    font-size: 20px;
  }

  .footerALINSUN3__text {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.25;
  }

  .footerALINSUN3__navs {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 20px;
  }

  .footerALINSUN3__nav-title {
    margin-bottom: 14px;
    font-size: 20px;
  }

  .footerALINSUN3__list {
    padding-left: 20px;
  }

  .footerALINSUN3__item {
    margin-bottom: 10px;
  }

  .footerALINSUN3__link {
    font-size: 16px;
    line-height: 1.25;
  }
}

.heroALINSUN3.hero-about-us {
  background-image: url('/imagesALINSUN3/hero-man-2ALINSUN3.webp');
}

.focus-blockALINSUN3 {
  padding: 40px 0 56px;
  background: #ffffff;
}

.focus-blockALINSUN3__grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
  gap: 26px;
  align-items: stretch;
}

.focus-blockALINSUN3__content,
.focus-blockALINSUN3__media {
  min-width: 0;
}

.focus-blockALINSUN3__box {
  height: 100%;
  padding: 26px 24px;
  border-radius: 12px;
  background: #e5f3f6;
}

.focus-blockALINSUN3__item:not(:last-child) {
  margin-bottom: 18px;
}

.focus-blockALINSUN3__subtitle {
  margin: 0 0 8px;
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.focus-blockALINSUN3__text {
  margin: 0;
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.focus-blockALINSUN3__image-box {
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.focus-blockALINSUN3__image {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.focus-blockALINSUN3__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* tablet */
@media (max-width: 1024px) {
  .focus-blockALINSUN3 {
    padding: 36px 0 48px;
  }

  .focus-blockALINSUN3__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .focus-blockALINSUN3__box {
    padding: 24px 22px;
  }

  .focus-blockALINSUN3__image-box {
    max-width: 640px;
  }

  .focus-blockALINSUN3__image {
    height: auto;
    aspect-ratio: 16 / 10;
  }
}

/* mobile */
@media (max-width: 767px) {
  .focus-blockALINSUN3 {
    padding: 28px 0 36px;
  }

  .focus-blockALINSUN3__grid {
    gap: 16px;
  }

  .focus-blockALINSUN3__box {
    padding: 18px 16px;
  }

  .focus-blockALINSUN3__item:not(:last-child) {
    margin-bottom: 14px;
  }

  .focus-blockALINSUN3__subtitle {
    margin-bottom: 6px;
    font-size: 16px;
  }

  .focus-blockALINSUN3__text {
    font-size: 16px;
    line-height: 1.3;
  }

  .focus-blockALINSUN3__image {
    height: auto;
    aspect-ratio: 16 / 10;
  }
}

.about-noteALINSUN3 {
  padding: 40px 0 56px;
  background: #ffffff;
}

.about-noteALINSUN3__box {
  padding: 30px 32px;
  border-radius: 12px;
  background: #e5f3f6;
}

.about-noteALINSUN3__item:not(:last-child) {
  margin-bottom: 28px;
}

.about-noteALINSUN3__title {
  margin: 0 0 14px;
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.about-noteALINSUN3__text {
  margin: 0;
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* tablet */
@media (max-width: 1024px) {
  .about-noteALINSUN3 {
    padding: 36px 0 48px;
  }

  .about-noteALINSUN3__box {
    padding: 26px 24px;
  }

  .about-noteALINSUN3__item:not(:last-child) {
    margin-bottom: 24px;
  }
}

/* mobile */
@media (max-width: 767px) {
  .about-noteALINSUN3 {
    padding: 28px 0 36px;
  }

  .about-noteALINSUN3__box {
    padding: 20px 16px;
  }

  .about-noteALINSUN3__item:not(:last-child) {
    margin-bottom: 20px;
  }

  .about-noteALINSUN3__title {
    margin-bottom: 12px;
    font-size: 20px;
  }

  .about-noteALINSUN3__text {
    font-size: 16px;
    line-height: 1.35;
  }
}

.heroALINSUN3.hero-contact-us {
  background-image: url('/imagesALINSUN3/hero-man-3ALINSUN3.webp');
}

.contacts-helpALINSUN3 {
  padding: 40px 0 56px;
  background: #ffffff;
}

.contacts-helpALINSUN3__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: 26px;
}

.contacts-helpALINSUN3__card {
  padding: 18px 24px;
  border-radius: 12px;
  background: #e5f3f6;
}

.contacts-helpALINSUN3__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contacts-helpALINSUN3__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contacts-helpALINSUN3__item:not(:last-child) {
  margin-bottom: 14px;
}

.contacts-helpALINSUN3__icon {
  display: block;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  flex: 0 0 22px;
  object-fit: contain;
}

.contacts-helpALINSUN3__item-content {
  min-width: 0;
}

.contacts-helpALINSUN3__label,
.contacts-helpALINSUN3__link,
.contacts-helpALINSUN3__note {
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-style: normal;
  line-height: 1.3;
}

.contacts-helpALINSUN3__label {
  font-weight: 700;
}

.contacts-helpALINSUN3__link {
  font-weight: 700;
  text-decoration: none;
  word-break: break-word;
}

.contacts-helpALINSUN3__note {
  font-weight: 400;
}

.contacts-helpALINSUN3__link:hover,
.contacts-helpALINSUN3__link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contacts-helpALINSUN3__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* tablet */
@media (max-width: 1024px) {
  .contacts-helpALINSUN3 {
    padding: 36px 0 48px;
  }

  .contacts-helpALINSUN3__grid {
    gap: 20px;
  }

  .contacts-helpALINSUN3__card {
    padding: 18px 20px;
  }
}

/* mobile */
@media (max-width: 767px) {
  .contacts-helpALINSUN3 {
    padding: 28px 0 36px;
  }

  .contacts-helpALINSUN3__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contacts-helpALINSUN3__card {
    padding: 18px 16px;
  }

  .contacts-helpALINSUN3__item {
    gap: 10px;
  }

  .contacts-helpALINSUN3__item:not(:last-child) {
    margin-bottom: 16px;
  }

  .contacts-helpALINSUN3__icon {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }

  .contacts-helpALINSUN3__label,
  .contacts-helpALINSUN3__link,
  .contacts-helpALINSUN3__note {
    font-size: 16px;
    line-height: 1.25;
  }
}

.heroALINSUN3 .hero-disclaimer {
  background-image: url('/imagesALINSUN3/hero-man-4ALINSUN3.webp');
}

.terms {
  padding: 40px 0;
}
.terms-blue {
  border-radius: 12px;
  background: var(--Light_blue, #e5f3f6);
  padding: 30px;
}

.terms h2 {
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.terms p {
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 10px;
}

.terms ul {
  list-style: disc;
  margin-bottom: 10px;
}

.terms ul li {
  color: #4d4d4d;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  list-style-type: disc;

  margin-left: 20px;
}

@media (max-width: 780px) {
  .terms-blue {
    padding: 20px;
  }

  .terms h2 {
    color: #4d4d4d;
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
  }

  .terms p {
    font-size: 16px;
  }

  .terms ul li {
    font-size: 16px;
  }
}

.heroALINSUN3.hero-privacy-us {
  background-image: url('/imagesALINSUN3/hero-man-5ALINSUN3.webp');
}

.heroALINSUN3.hero-terms-us {
  background-image: url('/imagesALINSUN3/hero-man-6ALINSUN3.webp');
}

.heroALINSUN3.hero-resp-us {
  background-image: url('/imagesALINSUN3/hero-man-7ALINSUN3.webp');
}
