* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #f6f7fa;
  overflow-x: hidden;
  font-family: 'Trebuchet MS', Arial, sans-serif;
}

.container {
  width: auto;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 480px) {
  .container {
    max-width: 450px;
  }
}
@media screen and (min-width: 575px) {
  .container {
    max-width: 540px;
  }
}
@media screen and (min-width: 768px) {
  .container {
    max-width: 730px;
  }
}
@media screen and (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media screen and (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1274px;
  }
}

.header {
  min-height: 100vh;
  padding-top: 48px;
}

.header__box {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 76px;
}

.header__box::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -50px;
  width: 356px;
  height: 356px;
  border-radius: 250px;
  background: linear-gradient(180deg, #3494e6 0%, #ec6ead 100%);
  filter: blur(80px);
  z-index: -1;
}

.header-auth {
  display: flex;
  justify-content: flex-end;
}

.header-auth__btn {
  cursor: pointer;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: none;
  border-radius: 10px;
  padding: 14px 21px;
  background-color: #fff;
  transition: opacity 0.3s ease;
}

.header-auth__btn span {
  font-size: clamp(16px, 4vw, 18px);
  font-weight: 400;
  background: linear-gradient(90deg, #579aff 11.17%, #574dcc 96.28%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header-auth__btn:hover {
  opacity: 0.8;
}

.header__content {
  display: flex;
  justify-content: space-between;
  gap: 140px;
}

.header__left {
  flex: 2;
  padding-top: 147px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.header__title {
  margin: 0;
  color: #303030;
  font-size: clamp(25px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.2;
}

.header__subtitle {
  margin: 0;
  font-size: clamp(18px, 4vw, 24px);
  color: #303030;
  font-weight: 400;
  max-width: 420px;
}

.header-slider {
  overflow: hidden;
  flex: 1.4;
  position: relative;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.swiper-container {
  width: 100%;
  height: auto;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header__right {
  width: 100%;
  padding: 57px;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.divider {
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  color: #8789a1;
  position: relative;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 29px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-inputs {
  display: flex;
  flex-direction: column;
  gap: 27px;
}

.form-group label {
  font-size: 18px;
  font-weight: 400;
  color: #303030;
  margin-bottom: 12px;
}

.form-group input {
  box-shadow: 0px 0px 10px 0px #261f7b0d inset;
  background-color: #f5f7f9;
  width: 100%;
  border-radius: 10px;
  font-size: 18px;
  color: #8789a1;
  padding: 15px;
  font-weight: 400;
  border: none;
}

.form-group input:focus {
  color: #000;
}

.password-input {
  position: relative;
}

.toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.toggle-password:hover {
  color: #333;
}

.submit-btn {
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  padding: 0.875rem 1.75rem 0.875rem;
  background-color: #4285f4;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.25rem;
  font-weight: 400;
  width: 100%;
  vertical-align: middle;
  align-items: center;
  border-radius: 0.5rem;
  gap: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: none;
  transition: all 0.6s ease;
}

.submit-btn .submit-icon {
  background-color: #fff;
  display: grid;
  position: absolute;
  left: 2px;
  place-items: center;
  width: 3rem;
  height: 90%;
  border-radius: 0.5rem;
}

.submit-btn span svg {
  width: 1.5rem;
  height: 1.5rem;
}

.submit-btn:hover {
  opacity: 0.8;
}

.terms {
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  margin: 0;
  font-size: 14px;
  color: #595b75;
  font-weight: 400;
  text-align: center;
  line-height: 1.5;
}

.streamers {
  position: relative;
  padding-top: 130px;
  overflow: hidden;
}

.streamers::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 520px;
  height: 520px;
  border-radius: 360px;
  background: linear-gradient(180deg, rgba(52, 148, 230, 0.2) 0%, rgba(236, 110, 173, 0.2) 100%);
  filter: blur(100px);
  z-index: -1;
}

.streamers-slider {
  width: 100%;
  height: 400px;
  margin: 0 auto;
  padding: 0;
  overflow: visible;
}

.streamers-slider .swiper-wrapper {
  align-items: center;
}

.streamers-slider .swiper-slide {
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0px 10px 30px 0px #0000000d;
  transition: all 0.3s ease;
}

.streamers-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-us {
  position: relative;
  border-radius: 60px;
  display: flex;
  flex-direction: column;
  gap: 43px;
  text-align: center;
  align-items: center;
  margin-top: 175px;
  padding: 65px;
  background-color: #fff;
  box-shadow: 0px 10px 30px 0px #0000000d;
}

.about-us::after {
  content: '';
  position: absolute;
  top: -90px;
  right: -90px;
  width: 217px;
  height: 217px;
  border-radius: 250px;
  background: linear-gradient(180deg, rgba(52, 148, 230, 0.5) 0%, rgba(236, 110, 173, 0.5) 100%);
  filter: blur(50px);
  z-index: -1;
}

.about-us__title {
  margin: 0;
  color: #303030;
  font-size: clamp(25px, 4vw, 56px);
  font-weight: 700;
}

.about-us__content {
  width: 50%;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  gap: 25px;
}

.about-us__content p {
  font-size: clamp(18px, 4vw, 20px);
  color: #303030;
  margin: 0;
  font-weight: 400;
}

.btn {
  text-decoration: none;
  padding: 20px 90px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 10px;
  box-shadow: 0px 20px 30px 0px #584fcd33;
  background: linear-gradient(90deg, #574dcc 0%, #579aff 100%);
  transition: 0.3s ease;
}

.btn:hover {
  opacity: 0.7;
}

.why-join {
  position: relative;
  padding-top: 170px;
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.why-join::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 720px;
  height: 720px;
  border-radius: 360px;
  background: linear-gradient(180deg, rgba(52, 148, 230, 0.2) 0%, rgba(236, 110, 173, 0.2) 100%);
  filter: blur(100px);
  z-index: -1;
}

.why-join::after {
  content: '';
  position: absolute;
  top: 100px;
  right: 20%;
  width: 470px;
  height: 470px;
  border-radius: 250px;
  background: linear-gradient(180deg, #3494e6 0%, #ec6ead 100%);
  filter: blur(100px);
  z-index: -1;
}

.why-join__title {
  font-size: clamp(25px, 4vw, 56px);
  margin: 0;
  font-weight: 700;
  color: #303030;
  text-align: center;
}

.why-join__block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}

.why-join__card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 40px;
  background-color: #fff;
  border-radius: 40px;
  box-shadow: 0px 10px 30px 0px #0000000d;
  height: 100%;
}

.why-join__box {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  min-height: 50px;
}

.why-join__box img {
  object-fit: contain;
  width: 36px;
  height: 36px;
}

.why-join__box h5 {
  flex: 1;
  margin: 0;
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 700;
  color: #303030;
}

.why-join__card p {
  font-size: clamp(16px, 4vw, 18px);
  font-weight: 400;
  color: #303030;
  margin: 0;
}

.here-you {
  position: relative;
  padding-top: 170px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.here-you::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 720px;
  height: 720px;
  border-radius: 360px;
  background: linear-gradient(180deg, rgba(52, 148, 230, 0.2) 0%, rgba(236, 110, 173, 0.2) 100%);
  filter: blur(100px);
  z-index: -1;
}

.here-you::after {
  content: '';
  position: absolute;
  top: 200px;
  left: 0;
  width: 217px;
  height: 217px;
  border-radius: 250px;
  background: linear-gradient(180deg, rgba(52, 148, 230, 0.5) 0%, rgba(236, 110, 173, 0.5) 100%);
  filter: blur(40px);
  z-index: -1;
}

.here-you__title {
  font-size: clamp(25px, 4vw, 56px);
  margin: 0;
  font-weight: 700;
  color: #303030;
  text-align: center;
}

.here-you__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.here-you__card {
  width: 60%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 35px 120px;
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0px 10px 30px 0px #0000000d;
}

.here-you__card img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.here-you__card h5 {
  flex: 1;
  font-weight: 400;
  font-size: clamp(16px, 4vw, 20px);
  margin: 0;
  color: #000;
}

.communication {
  padding-top: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 38px;
}

.communication-text {
  display: flex;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 25px;
  max-width: 70%;
}

.communication-text__title {
  font-size: clamp(25px, 4vw, 56px);
  margin: 0;
  font-weight: 700;
  color: #303030;
  text-align: center;
}

.communication-text__subtitle {
  max-width: 50%;
  font-weight: 400;
  font-size: clamp(18px, 4vw, 20px);
  margin: 0;
  color: #000;
}

.communication-slider {
  width: 100%;
  height: 300px;
  margin: 0 auto;
  padding: 0;
  overflow: visible;
}

.communication-slider .swiper-wrapper {
  align-items: center;
}

.communication-slider .swiper-slide {
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0px 10px 30px 0px #0000000d;
  transition: all 0.3s ease;
}

.communication-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dedicated-space {
  padding-top: 215px;
  display: flex;
  flex-direction: row;
  gap: 55px;
}

.dedicated-space__left {
  flex: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: start;
  gap: 35px;
}

.dedicated-space__title {
  font-size: clamp(25px, 4vw, 56px);
  margin: 0;
  font-weight: 700;
  color: #303030;
}

.dedicated-space__subtitle {
  font-weight: 400;
  font-size: clamp(18px, 4vw, 20px);
  margin: 0;
  color: #303030;
}

.dedicated-space__right {
  flex: 1;
  position: relative;
}

.dedicated-space__right::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 500px;
  height: 500px;
  border-radius: 250px;
  background: linear-gradient(180deg, #3494e6 0%, #ec6ead 100%);
  filter: blur(100px);
  z-index: -1;
}

.dedicated-space__img {
  position: relative;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.footer {
  padding: 95px 0;
  background-color: #fff;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer__column {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer__column h3 {
  margin: 0;
  color: #303030;
  font-size: clamp(16px, 4vw, 22px);
  font-weight: 700;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__contact a,
.footer__links a {
  color: #303030;
  text-decoration: none;
  font-size: clamp(18px, 4vw, 20px);
  font-weight: 400;
  transition: 0.3s ease;
}

.footer__contact a:hover,
.footer__links a:hover {
  opacity: 0.5;
}

.why-join__slider {
  display: none !important;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  overflow: visible;
}

.why-join__slider .swiper-wrapper {
  align-items: center;
}

.why-join__slider .swiper-slide {
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0px 10px 30px 0px #0000000d;
  transition: all 0.3s ease;
}

.image-mobile {
  display: none;
  position: relative;
  padding-top: 53px;
}

.image-mobile::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 250px;
  background: linear-gradient(180deg, #3494e6 0%, #ec6ead 100%);
  filter: blur(100px);
  z-index: -1;
}

.image-mobile img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 30px;
}

.header-right__mobile {
  display: none;
  position: relative;
}

.header-right__mobile::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 250px;
  background: linear-gradient(180deg, #3494e6 0%, #ec6ead 100%);
  filter: blur(100px);
  z-index: -1;
}

.header-right__mobile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-right__mobile .btn {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  display: flex;
  margin: 0 auto;
  justify-content: center;
}

.dedicated-mobile {
  display: none;
  flex-direction: column;
  gap: 40px;
  padding-top: 60px;
}

.dedicated-mobile__text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.dedicated-form {
  padding: 57px;
}

.dedicated-form__field {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.dedicated-form__label {
  font-size: 18px;
  color: #303030;
}

.dedicated-form__input {
  padding: 15px;
  width: 100%;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  color: #8789a1;
  background-color: #f5f7f9;
}

.dedicated-form__input:focus {
  color: #000;
}

.mydict-radio-group {
  display: flex;
  flex-wrap: nowrap;
  margin-top: 0.5rem;
  justify-content: center;
  width: 100%;
}

.mydict-radio {
  flex: 1 1 50%;
  display: flex;
}

.mydict-radio-label {
  display: block;
  cursor: pointer;
  background-color: #f5f7f9;
  padding: 15px 35px;
  font-size: 18px;
  border: 1px solid #fff;
  margin: 0;
  letter-spacing: 0.05em;
  color: #8789a1;
  text-align: center;
  width: 100%;
  transition: background-color 0.3s ease;
}

.mydict-radio:first-child .mydict-radio-label {
  border-radius: 6px 0 0 6px;
}

.mydict-radio:last-child .mydict-radio-label {
  border-radius: 0 6px 6px 0;
}

.mydict-radio-label:hover {
  background-color: #e7f0ff;
}

.mydict-radio-input {
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.mydict-radio-input:checked + .mydict-radio-label {
  background-color: #dee7ff;
  border: 1px solid #8789a1;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.mydict-radio-input:focus + .mydict-radio-label {
  outline: none;
}

.dedicated-form__checkbox {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  gap: 10px;
  font-size: 12px;
  line-height: 1.5;
}

.ui-checkbox {
  --primary-color: #1677ff;
  --secondary-color: #fff;
  --primary-hover-color: #4096ff;
  --checkbox-diameter: 20px;
  --checkbox-border-radius: 5px;
  --checkbox-border-color: #d9d9d9;
  --checkbox-border-width: 1px;
  --checkbox-border-style: solid;
  --checkmark-size: 1.2;
}

.ui-checkbox,
.ui-checkbox *,
.ui-checkbox *::before,
.ui-checkbox *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.ui-checkbox {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: var(--checkbox-diameter);
  height: var(--checkbox-diameter);
  border-radius: var(--checkbox-border-radius);
  background: #f5f7f9;
  border: var(--checkbox-border-width) var(--checkbox-border-style) var(--checkbox-border-color);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
}

.ui-checkbox::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-box-shadow: 0 0 0 calc(var(--checkbox-diameter) / 2.5) var(--primary-color);
  box-shadow: 0 0 0 calc(var(--checkbox-diameter) / 2.5) var(--primary-color);
  border-radius: inherit;
  opacity: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
  -o-transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
  transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
}

.ui-checkbox::before {
  top: 40%;
  left: 50%;
  content: '';
  position: absolute;
  width: 4px;
  height: 7px;
  border-right: 2px solid var(--secondary-color);
  border-bottom: 2px solid var(--secondary-color);
  -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(0);
  -ms-transform: translate(-50%, -50%) rotate(45deg) scale(0);
  transform: translate(-50%, -50%) rotate(45deg) scale(0);
  opacity: 0;
  -webkit-transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
  -o-transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
  transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
}

.ui-checkbox:hover {
  border-color: #f5f7f9;
}

.ui-checkbox:checked {
  background: var(--primary-color);
  border-color: transparent;
}

.ui-checkbox:checked::before {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
  -ms-transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
  transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
  -webkit-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
  -o-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
  transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
}

.ui-checkbox:active:not(:checked)::after {
  -webkit-transition: none;
  -o-transition: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  transition: none;
  opacity: 1;
}

.terms-link {
  text-decoration: none;
  color: #8789a1;
  font-size: 16px;
  font-weight: 400;
  transition: 0.3s ease;
}

.terms-link:hover {
  opacity: 0.5;
}

.dedicated-form__checkbox label {
  flex: 1;
  cursor: pointer;
  color: #8789a1;
  font-size: 16px;
  font-weight: 400;
}

.dedicated-form .btn {
  padding: 20px;
  width: 100%;
}

.lines-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin: 40px 0 20px;
}

.lines-pagination .swiper-pagination-bullet {
  width: 30px;
  height: 4px;
  background: #8789a1;
  border-radius: 2px;
  transition: background-color 0.3s ease, width 0.3s ease;
}

.lines-pagination .swiper-pagination-bullet-active {
  background-color: #5893fa;
}

.dedicated-slider {
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  margin-top: 40px;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1199px) {
  .header__content {
    gap: 50px;
  }

  .header__left {
    flex: 1.5;
  }
}

@media (max-width: 991px) {
  .header__content {
    display: block;
  }

  .header-slider {
    margin: 0 auto;
    margin-top: 50px;
  }

  .header__left {
    padding-top: 0;
    text-align: center;
    align-items: center;
  }

  .about-us__content {
    width: 100%;
  }

  .why-join__empty {
    display: none;
  }

  .why-join__block {
    grid-template-columns: repeat(2, 1fr);
  }

  .here-you__card {
    width: 100%;
  }

  .dedicated-space {
    flex-direction: column;
  }

  .dedicated-space__right {
    width: 70%;
    margin: 0 auto;
  }

  .footer__content {
    display: grid;
    justify-content: normal;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }

  .about-us::after {
    right: 0;
  }
}

@media (max-width: 767px) {
  .header {
    padding-top: 90px;
  }

  .header-auth {
    display: none;
  }

  .header__content {
    gap: 15px;
  }

  .header-slider {
    display: none !important;
  }

  .header-right__mobile {
    display: block;
  }

  .header__box::after {
    display: none;
  }

  .streamers::after {
    display: none;
  }

  .about-us::after {
    display: none;
  }

  .why-join::before {
    display: none;
  }

  .why-join::after {
    display: none;
  }

  .here-you::before {
    display: none;
  }

  .here-you::after {
    display: none;
  }

  .streamers {
    padding-top: 60px;
  }

  .about-us {
    border-radius: 20px;
    padding: 20px;
    margin-top: 60px;
  }

  .why-join {
    padding-top: 60px;
  }

  .why-join__block {
    display: none;
  }

  .why-join__slider {
    display: block !important;
  }

  .why-join__card {
    border-radius: 20px;
    padding: 23px;
  }

  .here-you {
    padding-top: 60px;
  }

  .here-you__box {
    gap: 20px;
  }

  .here-you__card {
    border-radius: 20px;
    padding: 30px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .dedicated-space {
    display: none;
  }

  .communication {
    padding-top: 60px;
  }

  .communication-text {
    max-width: 100%;
    align-items: start;
    text-align: start;
  }

  .communication-text__title {
    text-align: start;
  }

  .communication-text__subtitle {
    max-width: 100%;
  }

  .image-mobile {
    display: block;
  }

  .footer {
    padding: 50px 0;
    margin-top: 60px;
  }

  .btn {
    padding: 20px;
    width: 90%;
  }

  .dedicated-mobile {
    display: block !important;
  }
}

@media (max-width: 576px) {
  .footer__content {
    gap: 30px;
    grid-template-columns: repeat(1, 1fr);
  }

  .dedicated-form {
    padding: 30px;
    padding-bottom: 57px;
  }

  .header__right {
    padding: 30px;
    padding-bottom: 57px;
  }
}

@media (max-width: 479px) {
  .streamers-slider .swiper-slide {
    border-radius: 0;
  }

  .communication-slider .swiper-slide {
    border-radius: 0;
  }
}

@media (max-width: 340px) {
  .submit-btn {
    justify-content: end;
  }
}
