:root {
  box-sizing: border-box;
}

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

html{
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #545454;
  color: #FFF;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
figure {
  padding: 0;
  margin: 0;
}

ul {
  list-style-type: none;
}

a {
  font-family: inherit;
  text-decoration: none;
}

button,
input[type='submit'] {
  padding: 0;
  margin: 0;
  color: inherit;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: none;
}

.button {
  display: flex;
  padding: 16px 80px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  background: #EAE12A;

  color: #000;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
}

.container {
  max-width: 1223px;
  margin: 0 auto;
}

/* toplina */
.topline {
  /* Topline Block */
  --topline-bg-color: #000;

  /* Logo */
  --topline-logo-width: 126px;
  --topline-logo-height: 24px;
  --topline-logo-width-mobile: 126px;
  --topline-logo-height-mobile: 24px;

  background-color: var(--topline-bg-color);
}

.topline__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1920px;
  padding: 6px 15px;
}

.topline__logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.topline__logo-img {
  width: var(--topline-logo-width);
  height: var(--topline-logo-height);
  object-fit: contain;
}

@media (max-width: 576px) {
  .topline__logo-img {
    width: var(--topline-logo-width-mobile);
    height: var(--topline-logo-height-mobile);
  }
}

#panelcontainer {
  height: 32px;
}

/* ################  */

/* main */

.main__inner {}

.main__blocks {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 55px;
}

@media (max-width:1080px) {
  .main__blocks {
    padding-bottom: 0px;
  }
}

.main__block {
  border-radius: 30px;
}

.main__block:nth-child(1) {
  width: 50%;

  padding-left: 38px;
  padding-right: 68px;
  padding-top: 42px;
  padding-bottom: 59px;

  background-color: #F6F6F6;
  color: #000;
  order: 1;
}

@media (max-width:700px) {
  .main__block:nth-child(1) {
    padding: 42px 26px;
  }
}

.main__block:nth-child(2) {
  width: 50%;
  background-image: url(../img/main/Synytsina.svg);
  background-repeat: no-repeat;
  background-position: center;
  order: 2;
}

.main__block-speaker {
  width: 35%;
  height: 75%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  margin-left: auto;
}

@media (max-width:1080px) {
  .main__block-speaker {
    display: none;
  }
}

.main__block:nth-child(3),
.main__block:nth-child(4),
.main__block:nth-child(5),
.main__block:nth-child(6),
.main__block:nth-child(7),
.main__block:nth-child(8) {
  width: 25%;
  padding-left: 37px;
  padding-right: 12px;
  padding-top: 42px;
  padding-bottom: 30px;
}

.main__block:nth-child(3) {
  order: 3;
}

.main__block:nth-child(4) {
  order: 4;
}

.main__block:nth-child(5) {
  order: 5;
}

.main__block:nth-child(6) {
  order: 6;
}

.main__header {
  display: flex;
  justify-content: space-between;
}

.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
}

@media (max-width:550px) {
  .nav__links {
    display: none;
  }
}

.nav__links>li:nth-child(1) {
  border-radius: 20px;
  background: #648c27;
  padding: 8px 0px;

  font-weight: 400;
  font-size: 13px;
  line-height: 130%;
  color: white;
}

.nav__links>li:nth-child(2) {
  border-radius: 20px;
  background: #858483;
  padding: 8px 0px;

  font-weight: 400;
  font-size: 13px;
  line-height: 130%;
  color: white;
}

.nav__links > li > a{
  color: white;
  padding: 8px 20px;
  width: 100%;
  height: 100%;
}

.main-title {
  color: #648C27;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  padding-top: 59px;
}

@media (max-width:1280px) {
  .main-title {
    font-size: 32px;
  }
}

@media (max-width:1080px) {
  .main-title {
    font-size: 28px;
  }
}

@media (max-width:550px) {
  .main-title {
    font-size: 22px;
  }
}

.main-subtitle {
  color: var(--Text-secondary, #444);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  padding-top: 26px;
  padding-bottom: 36px;
}

@media (max-width:550px) {
  .main-subtitle {
    font-size: 18px;
  }
}

.main__block>button {
  padding: 16px 80px;
}

.main__block:nth-child(3) {
  background-color: #729F2D;
}

.main__block:nth-child(3)>p {
  color: #FFF;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  /* 49.4px */
}

.main__block:nth-child(3)>p>span {
  color: #FFF;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
}

.main__block:nth-child(4) {
  background-image: url(../img/main/Popova.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.main__block:nth-child(5) {
  background: #858483;
  padding-right: 28px;
  padding-left: 42px;
}

.main__block-title {
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
}

.main__block-subtitle {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  padding-top: 12px;
}

@media (max-width:550px) {
  .main__block-title {
    font-size: 18px;
  }

  .main__block-subtitle {
    font-size: 14px;
    line-height: 114%;
    padding-top: 4px;
  }
}

@media (max-width:400px) {
  .main__block-title {
    font-size: 16px;
  }

  .main__block-subtitle {
    font-size: 12px;
    line-height: 114%;
    padding-top: 4px;
  }
}

.main__block:nth-child(6) {
  color: black;
  background-color: #FFF;
}

.main__block:nth-child(7) {
  width: 25%;
  background-color: #FFF;
  color: black;
  order: 7;
  display: none;
}

@media (max-width: 1080px) {
  .main__block:nth-child(7) {
    display: block;
  }
}

.main__block:nth-child(8) {
  width: 25%;
  background-color: #858483;
  color: #FFF;
  order: 8;
  display: none;
}

@media (max-width: 1080px) {
  .main__block:nth-child(8) {
    display: block;
  }
}

.main__block:nth-child(8)>p {
  font-weight: 600;
  font-size: 32px;
  line-height: 136%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

@media (max-width:1080px) {
  .main__block:nth-child(1) {
    width: 100%;
  }

  .main__block:nth-child(2),
  .main__block:nth-child(3),
  .main__block:nth-child(4),
  .main__block:nth-child(5),
  .main__block:nth-child(6),
  .main__block:nth-child(7),
  .main__block:nth-child(8) {
    padding-left: 32px;
    padding-right: 32px;
    padding-top: 22px;
    padding-bottom: 22px;
    width: 50%;
  }

  .main__block:nth-child(2) {
    order: 4;
    background-size: cover;
  }

  /* блок 10 апреля */
  .main__block:nth-child(3) {
    order: 2;
  }

  .main__block:nth-child(3)>p {
    font-size: 32px;
  }

  .main__block:nth-child(3)>p>span {
    font-size: 22px;
  }

  /*****************************/

  .main__block:nth-child(4) {
    order: 7;
  }

  .main__block:nth-child(5) {
    order: 6;
  }

  .main__block:nth-child(6) {
    display: none;
  }

  /* Блок анастасии */

  .main__block:nth-child(7) {
    order: 5;
    padding: 22px;
    padding-left: 28px;
  }

  /***********/
  .main__block:nth-child(8) {
    order: 3;
  }

  .main__block:nth-child(8)>p {
    font-size: 28px;
  }
}

@media (max-width:550px) {

  .main__block:nth-child(3),
  .main__block:nth-child(4),
  .main__block:nth-child(5),
  .main__block:nth-child(6),
  .main__block:nth-child(7),
  .main__block:nth-child(8) {
    padding: 32px 16px;
  }

  .main__block:nth-child(3)>p {
    font-size: 24px;
  }

  .main__block:nth-child(3)>p>span {
    font-size: 14px;
  }

  .main__block:nth-child(8)>p {
    font-size: 24px;
  }
}


.main__button {
  display: flex;
  margin: 0 auto;
  width: 100%;
  max-width: 358px;

  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
}

@media (max-width:550px) {
  .main__button {
    max-width: 254px;
    padding: 16px 0px;
  }
}

@media (max-width:1080px) {
  .button__hidden {
    display: none;
  }
}

/* ##### */

/* program */
.program {
  padding-top: 64px;
}

@media (max-width:1080px) {
  .program {
    padding-top: 0px;
  }
}

.program__inner {
  display: flex;
  padding-bottom: 54px;
}

@media (max-width:1080px) {
  .program__inner {
    flex-direction: column;
    align-items: center;
  }
}

.program__info {
  width: 50%;
  background-color: #729f2d;
  color: white;
  border-radius: 30px;
}

@media (max-width:1080px) {
  .program__info {
    width: 100%;
  }
}

.program__info-title {
  font-weight: 600;
  font-size: 38px;
  line-height: 130%;
  padding: 30px 36px;
}

@media (max-width:1080px) {
  .program__info-title {
    text-align: center;
  }
}

.program__info-block {
  display: flex;
}

@media (max-width:700px) {
  .program__info-block {
    flex-direction: column;
  }
}

.program__info-left,
.program__info-right {
  border-radius: 30px;
  background: #648c27;
  width: 50%;
  padding: 28px 28px;
}

@media (max-width:700px) {

  .program__info-left,
  .program__info-right {
    width: 100%;
    border-radius: 0px;
  }

  .program__info-left {
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
  }

  .program__info-right {
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
  }
}

.info-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
}

.info-text--bottom {
  height: 50%;
  display: flex;
  align-items: end;

  padding-bottom: 12px;
}

.info-line {
  width: 68px;
  height: 1px;
  background-color: white;
  margin: 12px 0px;
}

.program__question {
  width: 50%;
  background-color: #f6f6f6;
  color: #000;
  border-radius: 30px;
  padding: 42px 38px;
  padding-bottom: 0px;
}

@media (max-width:1080px) {
  .program__question {
    width: 100%;
    padding-bottom: 16px;
  }
}

.question--title {
  font-weight: 500;
  font-size: 22px;
  line-height: 130%;
  color: black;
  padding-bottom: 40px;
}

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

.question__input {
  border: 1px solid #b3afaf;
  border-radius: 7px;
  padding: 16px 24px;
  width: 100%;
  max-width: 533px;
  height: 55px;

  background: white;

  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
}

@media (max-width:1080px) {
  .question__input-container {
    display: flex;
    justify-content: center;
  }
}

.question__button {
  background: #648c27;

  border-radius: 20px;
  padding: 16px 40px;
  max-width: 260px;

  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: white;
}

@media (max-width:1080px) {
  .question__button {
    display: flex;
    margin: 0 auto;
  }
}

/***********/

/* vip */
.vip {
  padding-top: 46px;
}

.vip--title {
  font-weight: 600;
  font-size: 38px;
  line-height: 130%;
  color: white;
}

@media (max-width:1080px) {
  .vip--title {
    display: flex;
    justify-content: center;
    padding: 0 32px;
  }
}

.vip--subtitle {
  font-size: 22px;
  line-height: 173%;
}

@media (max-width:1080px) {
  .vip--subtitle {
    display: flex;
    justify-content: center;
    padding: 0 32px;
  }
}

@media (max-width:550px) {
  .vip--title {
    padding: 0 32px;
    font-size: 22px;
    line-height: 145%;
  }

  .vip--subtitle {
    padding: 0 32px;
    font-size: 16px;
    line-height: 175%;
  }
}

.vip__container {
  background-image: url(../img/vip/vipBg.png);
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;

  border-radius: 30px;
  padding: 51px 59px;
}

@media (max-width:1080px) {
  .vip__container {
    background-image: none;
    padding: 51px 0px;
    align-items: center;
  }
}

@media (max-width:550px) {
  .vip__container {
    background-image: none;
    padding: 32px 0px;
    align-items: center;
  }
}

.vip__blocks {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.vip__block {
  border-radius: 30px;
  max-width: 545px;
  height: 184px;

  backdrop-filter: blur(4px);
  box-shadow: 0 4px 64px 0 rgba(195, 167, 94, 0.15);
  background: #858483;
}

.vip__blocks a:nth-of-type(3) {
  margin-bottom: 32px;
}

.vip__block>p {
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 38px;
  padding-right: 38px;

  font-weight: 600;
  font-size: 22px;
  line-height: 130%;
  color: white;
  text-decoration: underline;
}

@media (max-width:1080px) {
  .vip__block>p {
    justify-content: center;
  }
}

@media (max-width:550px) {
  .vip__block>p {
    font-size: 18px;
  }
}

.vip__button {
  display: flex;
  margin: 0 auto;

  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
}

@media (max-width:550px) {
  .vip__button {
    max-width: 254px;
    padding: 16px 0px;
    width: 100%;
  }
}

/*******/

/* callback */

.callback {
  /* Callback Block */
  --callback-offset-top: 80px;
  --callback-offset-bottom: 80px;
  --callback-offset-top-mobile: 60px;
  --callback-offset-bottom-mobile: 60px;
  --callback-all-texts-color: inherit;
  --callback-bg-color: inherit;

  /* Logo Image */
  --callback-logo-width: 200px;
  --callback-logo-height: 50px;
  --callback-logo-width-mobile: 150px;
  --callback-logo-height-mobile: 30px;

  /* Title */
  --callback-title-fz: 24px;
  --callback-title-fw: 500;
  --callback-title-fz-mobile: 22px;
  --callback-title-fw-mobile: 500;

  /* Decoration Image */
  --callback-picture-width: 300px;
  --callback-picture-height: 300px;
  --callback-picture-width-mobile: 300px;
  --callback-picture-height-mobile: 300px;

  /* Button */
  --callback-button-fz: 18px;
  --callback-button-fw: 400;
  --callback-button-fz-mobile: 16px;
  --callback-button-fw-mobile: 400;
  --callback-button-color: #fff;

  /* Legal Text */
  --callback-legal-fz: 14px;
  --callback-legal-fw: 400;
  --callback-legal-fz-mobile: 14px;
  --callback-legal-fw-mobile: 400;

  color: var(--callback-all-texts-color);
  background-color: var(--callback-bg-color);
}

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

.callback__inner-text {
  width: 50%;
  font-weight: 600;
  font-size: 38px;
  line-height: 137%;

  display: flex;
  align-items: center;
}

.callback__inner-text2 {
  font-weight: 600;
  font-size: 38px;
}

@media (max-width:1080px) {
  .callback__inner-text {
    display: none;
  }
}

.mobile__tg {
  padding: 34px 28px;
  background-color: #fff;
  border-radius: 30px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  display: none;
}

@media (max-width:1080px) {
  .mobile__tg {
    display: flex;
  }
}

.mobile__tg>button {
  padding: 16px 0px;
}

.mobile__tg-text {
  padding-bottom: 22px;
  font-weight: 600;
  font-size: 22px;
  line-height: 145%;
  color: #000;
  text-align: center;
}

@media (max-width:1080px) {
  .callback__inner-img {
    width: 90%;
    display: flex;
  }
}

.callback__container {
  padding-top: var(--callback-offset-top);
  padding-bottom: var(--callback-offset-bottom);
  background-color: #858483;
  border-radius: 30px;
  padding: 61px 40px;
}

@media (max-width: 576px) {
  .callback__container {
    padding-top: var(--callback-offset-top-mobile);
    padding-bottom: var(--callback-offset-bottom-mobile);
    padding: 61px 20px;
  }
}

.callback__upper {
  display: flex;
  padding-bottom: 30px;
}

@media (max-width: 768px) {
  .callback__upper {
    flex-direction: column-reverse;
  }
}

.callback__upper-left {
  width: 50%;
}

@media (max-width: 768px) {
  .callback__upper-left {
    width: 100%;
  }
}

.callback__title {
  height: 100%;
  padding: 0 32px;
  display: flex;
  align-items: center;
  font-size: var(--callback-title-fz);
  font-weight: var(--callback-title-fw);
  line-height: 150%;
}

@media (max-width: 576px) {
  .callback__title {
    font-size: 18px;
    font-weight: var(--callback-title-fw-mobile);
    padding: 0;
  }
}

.callback__subtitle {
  font-weight: 400;
  font-size: 22px;
  line-height: 130%;
  padding-bottom: 28px;
}

@media (max-width:576px) {
  .callback__subtitle {
    font-size: 16px;
  }
}

.callback__upper-right {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
}

@media (max-width: 768px) {
  .callback__upper-right {
    width: 100%;
  }
}

.callback__picture-img {
  object-fit: contain;
}

@media (max-width: 576px) {
  .callback__picture-img {
    width: var(--callback-picture-width-mobile);
    height: var(--callback-picture-height-mobile);
  }
}

.callback__form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(261px, 1fr));
  gap: 20px;
  margin-bottom: 14px;
}

.callback__form--hidden {
  display: none;
}

.callback__input {
  padding: 14px 22px;
  font-size: 18px;
  border: 1px solid #222222;
  border-radius: 20px;
}

.callback__input::placeholder {
  color: #a7a9ac;
}

.callback__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
}

@media (max-width: 576px) {
  .callback__button {
    font-size: var(--callback-button-fz-mobile);
    font-weight: var(--callback-button-fw-mobile);
  }
}

.callback__legal {
  font-size: var(--callback-legal-fz);
  font-weight: var(--callback-legal-fw);
}

@media (max-width: 576px) {
  .callback__legal {
    font-size: var(--callback-legal-fz-mobile);
    font-weight: var(--callback-legal-fw-mobile);
    text-align: center;
  }
}

.callback__legal--hidden {
  display: none;
}

.callback__legal-link {
  color: inherit;
  text-decoration: underline;
}

.callback__message {
  display: none;
  margin-top: 14px;
  margin-bottom: 14px;
}

.callback__message--visible {
  display: block;
}

.callback__message--success {
  font-size: 28px;
  color: #5fd371;
}

.callback__message--error {
  font-size: 20px;
  color: #dc291e;
}

/***********/

/* footer */

.footer {
  /* Footer Block */
  --footer-offset-top: 80px;
  --footer-offset-bottom: 80px;
  --footer-offset-top-mobile: 60px;
  --footer-offset-bottom-mobile: 60px;
  --footer-all-text-color: inherit;
  --footer-bg-color: inherit;

  /* Logo Image 1 */
  --footer-logo-img-1-width: 110px;
  --footer-logo-img-1-height: 40px;
  --footer-logo-img-1-width-mobile: 110px;
  --footer-logo-img-1-height-mobile: 40px;

  /* Logo Image 2 */
  --footer-logo-img-2-width: 110px;
  --footer-logo-img-2-height: 40px;
  --footer-logo-img-2-width-mobile: 110px;
  --footer-logo-img-2-height-mobile: 40px;

  /* Copyright Text */
  --footer-copy-fz: 16px;
  --footer-copy-fw: 400;
  --footer-copy-fz-mobile: 16px;
  --footer-copy-fw-mobile: 400;

  /* Legal Text */
  --footer-legal-fz: 16px;
  --footer-legal-fw: 400;
  --footer-legal-fz-mobile: 16px;
  --footer-legal-fw-mobile: 400;

  /* Phone Number Link */
  --footer-tel-fz: 20px;
  --footer-tel-fw: 700;
  --footer-tel-fz-mobile: 20px;
  --footer-tel-fw-mobile: 700;

  /* Phone Call Info Text */
  --footer-info-fz: 16px;
  --footer-info-fw: 400;
  --footer-info-fz-mobile: 16px;
  --footer-info-fw-mobile: 400;

  /* Social Images */
  --footer-socials-img-size: 32px;
  --footer-socials-img-size-mobile: 32px;

  color: var(--footer-all-text-color);
  background-color: var(--footer-bg-color);
}

.footer__container {
  padding-top: var(--footer-offset-top);
  padding-bottom: var(--footer-offset-bottom);
  padding-left: 16px;
}

@media (max-width: 576px) {
  .footer__container {
    padding-top: var(--footer-offset-top-mobile);
    padding-bottom: var(--footer-offset-bottom-mobile);
  }
}

.footer__upper {
  display: flex;
  flex-wrap: wrap;
  column-gap: 40px;
  padding-bottom: 34px;
}

@media (max-width: 576px) {
  .footer__upper {
    row-gap: 10px;
    padding-bottom: 20px;
  }
}

.footer__logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 576px) {
  .footer__logo-link {
    margin: 16px;
    margin-left: 0;
  }
}

.footer__logo-img {
  object-fit: contain;
}

@media (max-width: 576px) {
  .footer__logo-img--1 {
    width: var(--footer-logo-img-1-width-mobile);
    height: var(--footer-logo-img-1-height-mobile);
  }
}

@media (max-width: 576px) {
  .footer__logo-img--2 {
    width: var(--footer-logo-img-2-width-mobile);
    height: var(--footer-logo-img-2-height-mobile);
  }
}

.footer__lower {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
}

@media (max-width: 576px) {
  .footer__lower {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .footer__left {
    padding-bottom: 30px;
  }
}

.footer__copy {
  margin-bottom: 20px;
  font-size: var(--footer-copy-fz);
  font-weight: var(--footer-copy-fw);
}

@media (max-width: 576px) {
  .footer__copy {
    margin-bottom: 14px;
    font-size: var(--footer-copy-fz-mobile);
    font-weight: var(--footer-copy-fw-mobile);
  }
}

.footer__legal {
  display: flex;
  gap: 16px;
  font-size: var(--footer-legal-fz);
  font-weight: var(--footer-legal-fw);
  line-height: 130%;
}

@media (max-width: 576px) {
  .footer__legal {
    font-size: var(--footer-legal-fz-mobile);
    font-weight: var(--footer-legal-fw-mobile);
    flex-direction: column;
  }
}

.footer__legal-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__central {
  align-self: flex-start;
}

.footer__tel {
  display: block;
  margin-bottom: 18px;
  font-size: var(--footer-tel-fz);
  font-weight: var(--footer-tel-fw);
  color: inherit;
}

@media (max-width: 576px) {
  .footer__tel {
    margin-bottom: 14px;
    font-size: var(--footer-tel-fz-mobile);
    font-weight: var(--footer-tel-fw-mobile);
  }
}

.footer__info-text {
  margin-bottom: 30px;
  font-size: var(--footer-info-fz);
  font-weight: var(--footer-info-fw);
}

@media (max-width: 576px) {
  .footer__info-text {
    font-size: var(--footer-info-fz-mobile);
    font-weight: var(--footer-info-fw-mobile);
  }
}

.footer__right {
  align-self: flex-start;
}

@media (max-width: 576px) {
  .footer__right {
    justify-content: flex-start;
  }
}

.footer__socials-list {
  display: flex;
  gap: 20px;
}

.footer__socials-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__socials-img {
  display: block;
  width: var(--footer-socials-img-size);
  height: var(--footer-socials-img-size);
  object-fit: contain;
}

@media (max-width: 576px) {
  .footer__socials-img {
    width: var(--footer-socials-img-size-mobile);
    height: var(--footer-socials-img-size-mobile);
  }
}

/****************/

/* Modal */

.modal {
  /* Modal Block */
  --modal-all-texts-color: #000;
  --modal-bg-color: #fff;

  /* Image */
  --modal-img-width: 40px;
  --modal-img-height: 40px;
  --modal-img-width-mobile: 40px;
  --modal-img-height-mobile: 40px;

  /* Title */
  --modal-title-fz: 32px;
  --modal-title-fw: 700;
  --modal-title-fz-mobile: 32px;
  --modal-title-fw-mobile: 700;

  /* Text */
  --modal-text-fz: 18px;
  --modal-text-fw: 400;
  --modal-text-fz-mobile: 18px;
  --modal-text-fw-mobile: 400;

  /* Close Button */
  --modal-close-button-color: #000;

  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding-right: 15px;
  padding-left: 15px;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal--visible {
  display: flex;
}

.modal__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 640px;
  padding: 150px 80px;
  color: var(--modal-all-texts-color);
  text-align: center;
  background-color: var(--modal-bg-color);
}

@media (max-width: 768px) {
  .modal__inner {
    width: 90%;
    padding: 100px 40px;
  }
}

@media (max-width: 576px) {
  .modal__inner {
    width: 100%;
  }
}

.modal__img {
  width: var(--modal-img-width);
  height: var(--modal-img-height);
  margin-bottom: 20px;
  object-fit: contain;
}

@media (max-width: 576px) {
  .modal__img {
    width: var(--modal-img-width-mobile);
    height: var(--modal-img-height-mobile);
  }
}

.modal__title {
  margin-bottom: 20px;
  font-size: var(--modal-title-fz);
  font-weight: var(--modal-title-fw);
}

@media (max-width: 576px) {
  .modal__title {
    font-size: var(--modal-title-fz-mobile);
    font-weight: var(--modal-title-fw-mobile);
  }
}

.modal__text {
  font-size: var(--modal-text-fz);
  font-weight: var(--modal-text-fw);
}

@media (max-width: 576px) {
  .modal__text {
    font-size: var(--modal-text-fz-mobile);
    font-weight: var(--modal-text-fw-mobile);
  }
}

.modal__close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-color: var(--modal-close-button-color);
  border-style: solid;
  border-width: 2px;
  border-radius: 50%;
}

.modal__close-button::before {
  position: absolute;
  top: 47%;
  left: 18%;
  width: 20px;
  height: 2px;
  content: '';
  background-color: var(--modal-close-button-color);
  transform: rotate(45deg);
}

.modal__close-button::after {
  position: absolute;
  top: 47%;
  left: 18%;
  width: 20px;
  height: 2px;
  content: '';
  background-color: var(--modal-close-button-color);
  transform: rotate(135deg);
}

/**********/
.hidden {
  display: none;
}

.success_reg {
  color: #26af37;
  display: flex;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

@media (max-width:550px) {
  .success_reg {
    font-size: 22px;
  }
}

.autoresize{
  resize: none;
  overflow-y: hidden;
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
}

.stream__title{
  font-weight: 600;
  font-size: 48px;
  line-height: 130%;
  color: white;
  text-align: center;
  padding-top: 32px;
  padding-bottom: 32px;
}

@media (max-width:1080px) {
  .stream__title{
    font-size: 28;
  }
}

@media (max-width:550px) {
  .stream__title{
    font-size: 22px;
  }
}

.stream__container{
  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  padding-bottom: 32px;
}

.translation__chat {
  margin: 0 auto;
  padding-bottom: 32px;
}

@media screen and (max-width: 450px) {
  .translation__frame{
    max-width: 360px;
  }
}
.translation__frame {
  width: 1000px;
  height: 550px;
  border: 1px solid #b3b3b3;
}

@media screen and (max-width: 450px) {
  .translation__frame {
    height: 300px;
  }
}

/*********/