@charset "UTF-8";
@font-face {
  font-family: "saol_displayregular";
  src: url("../fonts/saoldisplay-regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "TT Firs Neue Light";
  src: url("../fonts/TTFirsNeue-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "TT Firs Neue Regular";
  src: url("../fonts/TTFirsNeue-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "TT Firs Neue Bold";
  src: url("../fonts/TTFirsNeue-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "TT Firs Neue DemiBold";
  src: url("../fonts/TTFirsNeue-DemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "TT Firs Neue ExtraBold";
  src: url("../fonts/TTFirsNeue-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
}
.container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 0px;
}
@media screen and (max-width: 1280px) {
  .container {
    padding: 0 15px;
  }
}

/* Указываем box sizing */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
  padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: "TT Firs Neue Regular";
  color: #121212;
  overflow-x: hidden;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class] {
  list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Упрощаем работу с изображениями */
img {
  max-width: 100%;
  display: block;
}

/* Указываем понятную периодичность в потоке данных у article*/
article > * + * {
  margin-top: 1em;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  font: inherit;
}

.header {
  background: #121212;
  color: #fff;
  padding: 15px 0;
  position: fixed;
  width: 100%;
  z-index: 100;
  top: 0;
  left: 0;
}

.top__line {
  border-bottom: 1px solid rgba(250, 250, 250, 0.06);
  padding-bottom: 6.46px;
}
@media screen and (max-width: 1024px) {
  .top__line {
    display: none;
  }
}

.line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.line__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.adress {
  font-family: "Open Sans";
  font-weight: 300;
  text-transform: uppercase;
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 42px;
}
.adress::before {
  content: "";
  min-width: 14px;
  min-height: 17px;
  background: url("../img/adr__ico.svg") no-repeat;
  display: block;
  margin-right: 12px;
}

.work {
  font-family: "Open Sans";
  font-weight: 300;
  text-transform: uppercase;
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.work::before {
  content: "";
  min-width: 21px;
  min-height: 22px;
  background: url("../img/time__ico.svg") no-repeat;
  display: block;
  margin-right: 12px;
}

.line__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__tel {
  font-family: "Open Sans";
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 100%;
  margin-right: 42px;
}
.header__tel::before {
  content: "";
  min-width: 16px;
  min-height: 16px;
  background: url("../img/tel__ico.svg") no-repeat;
  display: block;
  margin-right: 8.17px;
}
.header__tel:hover {
  opacity: 0.6;
}

.header__mail {
  font-family: "Open Sans";
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 100%;
}
.header__mail::before {
  content: "";
  min-width: 17px;
  min-height: 13px;
  background: url("../img/mail__ico.svg") no-repeat;
  display: block;
  margin-right: 8.17px;
}
.header__mail:hover {
  opacity: 0.6;
}

.bottom__line {
  padding-top: 8.98px;
}
@media screen and (max-width: 1024px) {
  .bottom__line {
    padding: 0;
  }
}

.header__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top-menu .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.top-menu .menu .menu-item {
  margin-right: 51.8px;
}
.top-menu .menu .menu-item a {
  font-family: "Raleway";
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
.top-menu .menu .menu-item a:hover {
  color: #DA7E2E;
}
.top-menu .menu .current-menu-item a {
  color: #DA7E2E;
}

.button {
  border: 1px solid #FFFFFF;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  text-decoration: none;
  color: #fff;
  font-family: "TT Firs Neue DemiBold";
  padding: 15px 47px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
.button:hover {
  border: 1px solid #DA7E2E;
  color: #DA7E2E;
}

.burger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 30px;
  height: 30px;
  position: relative;
}
.burger span {
  width: 30px;
  height: 2px;
  margin-bottom: 4px;
  background: #fff;
  display: block;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
.burger span:nth-last-child(1) {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.burger__opened span {
  position: absolute;
  margin-bottom: 0;
}
.burger__opened span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.burger__opened span:nth-child(2) {
  opacity: 0;
}
.burger__opened span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.mobile__menu {
  background: #121212;
  position: fixed;
  top: 85px;
  left: 0;
  width: 80%;
  height: 100%;
  z-index: 1000;
  padding: 30px 15px;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  -webkit-transform: translate(-150%, 0);
          transform: translate(-150%, 0);
}
.mobile__menu .top-menu {
  margin-bottom: 30px;
}
.mobile__menu .top-menu .menu {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.mobile__menu .top-menu .menu .menu-item {
  margin-right: 0;
  margin-bottom: 10px;
}
.mobile__menu .top-menu .menu .menu-item:nth-last-child(1) {
  margin-bottom: 0;
}
.mobile__menu .line {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #fff;
}
.mobile__menu .line__left {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 30px;
}
.mobile__menu .adress {
  margin-bottom: 10px;
}
.mobile__menu .line__right {
  margin-bottom: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.mobile__menu .header__tel {
  margin-bottom: 10px;
}

.mobile__menu__opened {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.lang__arrow {
  margin-left: 6px;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}

.current__lang {
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.rotate {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.lang__hover {
  background: #e5f3ff;
  -webkit-transition: 0.3s ease 0s;
  transition: 0.3s ease 0s;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  z-index: 2;
}
.lang__hover li a {
  text-decoration: none;
  color: #000;
  padding: 5px 10px;
  font-weight: bold;
}

.opened {
  -webkit-transform: translate(0px, 0px);
          transform: translate(0px, 0px);
  opacity: 1;
  visibility: visible;
}

.line__right2 {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .line__right2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.section1 {
  margin-top: 150px;
  margin-bottom: 100px;
}
.section1 .form__button {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 1024px) {
  .section1 {
    margin-bottom: 60px;
  }
}

.swiper4 {
  overflow: hidden;
  position: relative;
}

.section1__txt1 {
  font-size: 62px;
  line-height: 65px;
  font-family: "TT Firs Neue ExtraBold";
  margin-bottom: 25px;
}
.section1__txt1 span {
  font-family: "saol_displayregular";
  font-style: italic;
}
@media screen and (max-width: 1024px) {
  .section1__txt1 {
    font-size: 32px;
    line-height: 35px;
  }
}

.section1__txt3 {
  font-size: 16px;
  line-height: 21px;
  font-family: "TT Firs Neue Light";
  margin-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  .section1__txt3 {
    margin-bottom: 35px;
  }
}

.swiper-pagination-bullet {
  opacity: 1;
  background: rgba(250, 250, 250, 0.12);
}

.swiper-pagination-bullet-active {
  background: #fff;
}

.section2 {
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .section2 {
    margin-bottom: 60px;
  }
}

.section2__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .section2__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.section2__left {
  width: 40%;
}
@media screen and (max-width: 1024px) {
  .section2__left {
    width: 100%;
    margin-bottom: 30px;
  }
}

.section2__right {
  width: 55%;
}
@media screen and (max-width: 1024px) {
  .section2__right {
    width: 100%;
  }
}

.section2__txt1 {
  font-family: "saol_displayregular";
  font-size: 31px;
  margin-bottom: 30px;
  font-style: italic;
}
@media screen and (max-width: 1024px) {
  .section2__txt1 {
    font-size: 24px;
  }
}

.section2__txt2 {
  font-family: "TT Firs Neue ExtraBold";
  font-size: 44px;
  line-height: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .section2__txt2 {
    font-size: 34px;
    line-height: 30px;
  }
}

.section2__txt3 p {
  font-size: 16px;
  line-height: 21px;
  font-family: "TT Firs Neue Light";
  margin-bottom: 30px;
}
.section2__txt3 p:nth-last-child(1) {
  margin-bottom: 0;
}

.section5 {
  margin-top: 100px;
}
@media screen and (max-width: 1024px) {
  .section5 {
    margin-top: 60px;
  }
}

.swiper3 {
  overflow: hidden;
}

.rev__arrows {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 35px;
}
.rev__arrows .swiper-button-prev2 {
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  width: 38px;
  height: 38px;
  opacity: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  background: rgba(18, 18, 18, 0.54);
  border-radius: 100px;
}
.rev__arrows .swiper-button-prev2::before {
  content: "";
  -webkit-mask-image: url("../img/arrow__left.svg");
          mask-image: url("../img/arrow__left.svg");
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  min-width: 8px;
  min-height: 14px;
  display: block;
  background: #fff;
}
.rev__arrows .swiper-button-next2 {
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  width: 38px;
  height: 38px;
  opacity: 1;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(18, 18, 18, 0.54);
  border: 1px solid transparent;
  border-radius: 100px;
}
.rev__arrows .swiper-button-next2::before {
  content: "";
  -webkit-mask-image: url("../img/arrow__left.svg");
          mask-image: url("../img/arrow__left.svg");
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  min-width: 8px;
  min-height: 14px;
  display: block;
  background: #fff;
}
.rev__arrows .swiper-button-disabled {
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 0;
  width: 38px;
  height: 38px;
  opacity: 1;
  cursor: pointer;
  border: 1px solid rgba(18, 18, 18, 0.54) !important;
  background: #fff;
  border-radius: 100px;
}
.rev__arrows .swiper-button-disabled::before {
  background: rgba(18, 18, 18, 0.54);
}

.rev a {
	text-decoration:none;
	color: #121212;
}

.swiper3__button {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.single__page h1 {
  margin-bottom: 30px;
}
.single__page h2 {
  margin-bottom: 20px;
}
.single__page h3 {
  margin-bottom: 20px;
}
.single__page p {
  margin-bottom: 20px;
}

.events {
  margin-top: 150px;
}
@media screen and (max-width: 1024px) {
  .events {
    margin-top: 130px;
  }
}

.event__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .event__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.event__left {
  width: 45%;
}
.event__left .form__button {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 250px;
}
@media screen and (max-width: 1024px) {
  .event__left {
    width: 100%;
    margin-bottom: 30px;
  }
}

.event__right {
  width: 53%;
}
.event__right p {
  font-size: 16px;
  line-height: 21px;
  margin-bottom: 30px;
  font-family: "TT Firs Neue Light";
}
.event__right p:nth-last-child(1) {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .event__right {
    width: 100%;
  }
}

.event__title {
  font-family: "TT Firs Neue ExtraBold";
  font-size: 42.58px;
  line-height: 45.4px;
  color: #121212;
  margin-bottom: 32px;
}
@media screen and (max-width: 1024px) {
  .event__title {
    font-size: 32px;
    line-height: 35px;
  }
}

.event__adr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "TT Firs Neue Light";
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.event__adr::before {
  content: "";
  min-width: 22px;
  min-height: 20px;
  background: url("../img/event__adr.svg") no-repeat center;
  margin-right: 15px;
}

.event__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "TT Firs Neue Light";
  font-size: 16px;
  margin-bottom: 50px;
}
.event__date::before {
  content: "";
  min-width: 22px;
  min-height: 20px;
  background: url("../img/event__calendar.svg") no-repeat center;
  margin-right: 15px;
}

.event__img {
  margin-top: 80px;
}
.event__img img {
  height: 485px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .event__img img {
    height: auto;
  }
}
@media screen and (max-width: 1024px) {
  .event__img {
    margin-top: 40px;
  }
}

.maestro {
  margin-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .maestro {
    margin-top: 60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.maestro__left {
  width: 40%;
}
.maestro__left h2 {
  font-family: "TT Firs Neue ExtraBold";
  font-size: 42.58px;
  line-height: 45.4px;
  color: #121212;
  margin-bottom: 32px;
}
.maestro__left p {
  font-size: 16px;
  line-height: 21px;
  margin-bottom: 30px;
  font-family: "TT Firs Neue Light";
}
.maestro__left p:nth-last-child(1) {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .maestro__left {
    width: 100%;
    margin-bottom: 30px;
  }
  .maestro__left h2 {
    font-size: 32px;
    line-height: 35px;
  }
}

.maestro__right {
  width: 55%;
}
.maestro__right img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .maestro__right {
    width: 100%;
  }
}

.program {
  margin-top: 100px;
}
@media screen and (max-width: 1024px) {
  .program {
    margin-top: 60px;
  }
}

.program__title {
  font-size: 62.58px;
  line-height: 65.4px;
  font-family: "TT Firs Neue ExtraBold";
  margin-bottom: 58px;
}
@media screen and (max-width: 1024px) {
  .program__title {
    font-size: 32px;
    line-height: 35px;
    margin-bottom: 30px;
  }
}

.question__item {
  padding-bottom: 39px;
  border-bottom: 1px solid #000;
  cursor: pointer;
  margin-bottom: 30px;
}

.active .question__right {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.question__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.question__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 90%;
}

.question__right {
  background: url("../img/arrow__botoom.svg") no-repeat;
  width: 19px;
  height: 11px;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}

.question__number {
  font-family: "TT Firs Neue Regular";
  font-size: 20px;
  font-weight: 500;
  width: 10%;
}
@media screen and (max-width: 1024px) {
  .question__number {
    font-size: 18px;
  }
}

.question__name {
  font-family: "TT Firs Neue Regular";
  font-size: 20px;
  font-weight: 500;
  width: 90%;
}
@media screen and (max-width: 1024px) {
  .question__name {
    font-size: 18px;
  }
}

.question__hidden {
  font-size: 16px;
  line-height: 21px;
  margin-top: 30px;
  font-family: "TT Firs Neue Light";
}

.program__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.program__button .form__button {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 240px;
}

.reviews {
  margin-top: 130px;
}
@media screen and (max-width: 1024px) {
  .reviews {
    margin-top: 60px;
  }
}

.review__txt1 {
  margin-bottom: 23px;
  font-family: "saol_displayregular";
  font-size: 31px;
  font-style: italic;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .review__txt1 {
    font-size: 24px;
  }
}

.review__txt2 {
  font-family: "TT Firs Neue ExtraBold";
  font-size: 44px;
  line-height: 40px;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .review__txt2 {
    font-size: 34px;
    line-height: 30px;
  }
  .review__txt2 br {
    display: none;
  }
}

.rev__arrows {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 35px;
}
.rev__arrows .swiper-button-prev {
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  width: 38px;
  height: 38px;
  opacity: 1;
  margin-right: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  background: rgba(18, 18, 18, 0.54);
  border-radius: 100px;
}
.rev__arrows .swiper-button-prev::before {
  content: "";
  -webkit-mask-image: url("../img/arrow__left.svg");
          mask-image: url("../img/arrow__left.svg");
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  min-width: 8px;
  min-height: 14px;
  display: block;
  background: #fff;
}
.rev__arrows .swiper-button-next {
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  width: 38px;
  height: 38px;
  opacity: 1;
  cursor: pointer;
  background: rgba(18, 18, 18, 0.54);
  border: 1px solid transparent;
  border-radius: 100px;
}
.rev__arrows .swiper-button-next::before {
  content: "";
  -webkit-mask-image: url("../img/arrow__left.svg");
          mask-image: url("../img/arrow__left.svg");
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  min-width: 8px;
  min-height: 14px;
  display: block;
  background: #fff;
}
.rev__arrows .swiper-button-disabled {
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 0;
  width: 38px;
  height: 38px;
  opacity: 1;
  cursor: pointer;
  border: 1px solid rgba(18, 18, 18, 0.54) !important;
  background: #fff;
  border-radius: 100px;
}
.rev__arrows .swiper-button-disabled::before {
  background: rgba(18, 18, 18, 0.54);
}

.rev {
  background: transparent;
  padding: 30px 24px;
  color: #121212;
  border: 1px solid #000;
}

.review__content {
  font-family: "Raleway";
  font-size: 18px;
  line-height: 24px;
  font-style: italic;
  margin-bottom: 30px;
}

.review__name {
  font-family: "Raleway";
  font-size: 18px;
  font-weight: bold;
}

.rev__arrows {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 35px;
}
.rev__arrows .swiper-button-prev1 {
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  width: 38px;
  height: 38px;
  opacity: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  background: rgba(18, 18, 18, 0.54);
  border-radius: 100px;
}
.rev__arrows .swiper-button-prev1::before {
  content: "";
  -webkit-mask-image: url("../img/arrow__left.svg");
          mask-image: url("../img/arrow__left.svg");
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  min-width: 8px;
  min-height: 14px;
  display: block;
  background: #fff;
}
.rev__arrows .swiper-button-next1 {
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  width: 38px;
  height: 38px;
  opacity: 1;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(18, 18, 18, 0.54);
  border: 1px solid transparent;
  border-radius: 100px;
}
.rev__arrows .swiper-button-next1::before {
  content: "";
  -webkit-mask-image: url("../img/arrow__left.svg");
          mask-image: url("../img/arrow__left.svg");
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  min-width: 8px;
  min-height: 14px;
  display: block;
  background: #fff;
}
.rev__arrows .swiper-button-disabled {
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 0;
  width: 38px;
  height: 38px;
  opacity: 1;
  cursor: pointer;
  border: 1px solid rgba(18, 18, 18, 0.54) !important;
  background: #fff;
  border-radius: 100px;
}
.rev__arrows .swiper-button-disabled::before {
  background: rgba(18, 18, 18, 0.54);
}

.swiper2 {
  overflow: hidden;
}
.swiper2 .swiper-slide img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.photos {
  margin-top: 125px;
}
@media screen and (max-width: 1024px) {
  .photos {
    margin-top: 60px;
  }
}

.photos__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 75px;
}
.photos__header .rev__arrows {
  margin-bottom: 0;
  margin-left: 50px;
}
@media screen and (max-width: 1024px) {
  .photos__header .rev__arrows {
    margin-left: 0;
  }
}
.photos__header .review__txt1 {
  text-align: left;
}
.photos__header .review__txt2 {
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .photos__header {
    margin-top: 30px;
    margin-bottom: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.photos__left {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .photos__left {
    width: 100%;
    margin-bottom: 30px;
  }
}

.photos__right {
  width: 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .photos__right {
    margin-top: 30px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
}

.fix__button {
  position: fixed;
  bottom: 20px;
  left: 0;
  width: 100%;
  z-index: 1;
  display: none;
}

.hide {
  display: block;
}

.events__title {
  font-family: "TT Firs Neue ExtraBold";
  font-size: 62.58px;
  line-height: 65.4px;
  margin-bottom: 65px;
}
@media screen and (max-width: 1024px) {
  .events__title {
    font-size: 32px;
    line-height: 35px;
  }
}

.events__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 18px 1fr;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 18px;
  grid-row-gap: 80px;
}
@media screen and (max-width: 1024px) {
  .events__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.event__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-decoration: none;
  color: #121212;
}
.event__item:hover .portfolio__title {
  color: #DA7E2E;
}
.event__item .portfolio__img {
  margin-bottom: 24px;
  position: relative;
}
@media screen and (max-width: 1024px) {
.event__item .portfolio__img {
  display: none;
}
}

.bl {
	margin-bottom: 24px;
}

.event__item .portfolio__img img {
  height: 340px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
.event__item .event__adr {
  margin-bottom: 10px;
}
.event__item .event__date {
  margin-bottom: 24px;
}
.event__item .portfolio__title {
  font-size: 20px;
  line-height: 24px;
  font-family: "TT Firs Neue Bold";
  margin-bottom: 24px;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
.event__item .desc {
  font-size: 16px;
  line-height: 21px;
  font-family: "TT Firs Neue Light";
}
.event__item .k {
  position: absolute;
  left: 0;
  top: -22px;
  width: 141px;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "TT Firs Neue Regular";
  font-family: 500;
  color: #fff;
}

.ac {
  background: #DA7E2E;
}

.pa {
  background: #979797;
}

.screen-reader-text {
  display: none;
}

.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav-links .next1 {
  border: 1px solid #E0E0E0;
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 3px;
}
.nav-links .next1::before {
  content: "";
  min-width: 9px;
  min-height: 13px;
  background: url("../img/right.svg") no-repeat center;
  display: block;
}
.nav-links .back1 {
  border: 1px solid #E0E0E0;
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 3px;
}
.nav-links .back1::before {
  content: "";
  min-width: 9px;
  min-height: 13px;
  background: url("../img/left.svg") no-repeat center;
  display: block;
}
.nav-links .page-numbers {
  width: 32px;
  height: 32px;
  background: transparent;
  border: 1px solid #E0E0E0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #000;
  text-decoration: none;
  margin-right: 8px;
}
.nav-links .current {
  width: 32px;
  height: 32px;
  background: #DA7E2E;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
}

.pagination {
  margin-top: 70px;
}
@media screen and (max-width: 1024px) {
  .pagination {
    margin-bottom: 35px;
  }
}

.event__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .event__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.form__button2 {
  outline: none;
  border: none;
  cursor: pointer;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #DA7E2E;
  color: #fff;
  font-family: "TT Firs Neue Regular";
  padding: 24px 42px;
  text-decoration: none;
  text-align: center;
  margin-left: 10px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.form__button2:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1024px) {
  .form__button2 {
    margin-left: 0;
    margin-top: 20px;
  }
}

.event__main__photo {
  display: block;
}
@media screen and (max-width: 1024px) {
  .event__main__photo {
    display: none;
  }
}

.event__photo__mobile {
  display: none;
}
@media screen and (max-width: 1024px) {
  .event__photo__mobile {
    display: block;
    width: 100%;
  }
}

.past {
  margin-top: 100px;
}

.gallery__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 19px 1fr 19px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 19px;
  grid-row-gap: 19px;
}
@media screen and (max-width: 1024px) {
  .gallery__row {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 600px) {
  .gallery__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.gallery__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.gallery__title {
  position: relative;
  color: #121212;
  font-family: "TT Firs Neue Regular";
  font-size: 18px;
  padding: 0 20px;
  padding-left: 0;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  text-align: left;
}

.gallery__img {
  width: 100%;
}
.gallery__img img {
  height: 342px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.eye {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}
.eye::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.44);
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  opacity: 0;
}
.eye::after {
  content: "";
  width: 42px;
  height: 41px;
  background: url("../img/eye.svg") no-repeat;
  display: block;
  position: absolute;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  opacity: 0;
}
.eye:hover::before {
  opacity: 1;
}
.eye:hover::after {
  opacity: 1;
}

.reviews__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-column-gap: 12px;
  grid-row-gap: 30px;
}
@media screen and (max-width: 1024px) {
  .reviews__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

#cont {
  margin-top: 100px;
}

.footer {
  background: #121212;
  color: #fff;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .footer {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.footer__row1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .footer__row1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.row1__left {
  width: 33%;
}
@media screen and (max-width: 1024px) {
  .row1__left {
    width: 100%;
    margin-bottom: 30px;
  }
}

.row1__right {
  width: 65%;
}
@media screen and (max-width: 1024px) {
  .row1__right {
    width: 100%;
  }
}

.row1__left__title {
  font-family: "saol_displayregular";
  font-size: 31px;
  font-style: italic;
  margin-bottom: 150px;
}
@media screen and (max-width: 1024px) {
  .row1__left__title {
    margin-bottom: 30px;
  }
}

.cont__block {
  margin-bottom: 30px;
}

.cont__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Raleway";
  color: rgba(242, 242, 242, 0.66);
  font-size: 22.27px;
}
.cont__name a {
  text-decoration: none;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  color: #fff;
  margin-left: 10px;
}
.cont__name a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 600px) {
  .cont__name {
    font-size: 18px;
  }
}

.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.social__link {
  margin-right: 13.61px;
}
.social__link:nth-last-child(1) {
  margin-right: 0;
}

.form__title {
  font-family: "TT Firs Neue ExtraBold";
  font-size: 24px;
  line-height: 24.3px;
  margin-bottom: 66px;
}
@media screen and (max-width: 1024px) {
  .form__title {
    font-size: 24px;
    line-height: 20.3px;
    margin-bottom: 30px;
  }
}

.form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .form__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.form__input {
  width: 45%;
  margin-bottom: 46px;
}
@media screen and (max-width: 1024px) {
  .form__input {
    width: 100%;
    margin-bottom: 30px;
  }
}
.form__input input {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(250, 250, 250, 0.35);
  background: transparent;
  outline: none;
  border-radius: none;
  font-family: "TT Firs Neue Light";
  font-size: 15px;
  color: rgba(250, 250, 250, 0.66);
  padding-bottom: 17px;
}
.form__input input::-webkit-input-placeholder {
  font-family: "TT Firs Neue Light";
  font-size: 15px;
  color: rgba(250, 250, 250, 0.66);
}
.form__input input::-moz-placeholder {
  font-family: "TT Firs Neue Light";
  font-size: 15px;
  color: rgba(250, 250, 250, 0.66);
}
.form__input input:-ms-input-placeholder {
  font-family: "TT Firs Neue Light";
  font-size: 15px;
  color: rgba(250, 250, 250, 0.66);
}
.form__input input::-ms-input-placeholder {
  font-family: "TT Firs Neue Light";
  font-size: 15px;
  color: rgba(250, 250, 250, 0.66);
}
.form__input input::placeholder {
  font-family: "TT Firs Neue Light";
  font-size: 15px;
  color: rgba(250, 250, 250, 0.66);
}
.form__input textarea {
  width: 100%;
  border-bottom: 1px solid rgba(250, 250, 250, 0.35);
  background: transparent;
  outline: none;
  border-radius: none;
  font-family: "TT Firs Neue Light";
  font-size: 15px;
  color: rgba(250, 250, 250, 0.66);
  padding: 24px 44px;
  overflow: hidden;
}
.form__input textarea::-webkit-input-placeholder {
  font-family: "TT Firs Neue Light";
  font-size: 15px;
  color: rgba(250, 250, 250, 0.66);
}
.form__input textarea::-moz-placeholder {
  font-family: "TT Firs Neue Light";
  font-size: 15px;
  color: rgba(250, 250, 250, 0.66);
}
.form__input textarea:-ms-input-placeholder {
  font-family: "TT Firs Neue Light";
  font-size: 15px;
  color: rgba(250, 250, 250, 0.66);
}
.form__input textarea::-ms-input-placeholder {
  font-family: "TT Firs Neue Light";
  font-size: 15px;
  color: rgba(250, 250, 250, 0.66);
}
.form__input textarea::placeholder {
  font-family: "TT Firs Neue Light";
  font-size: 15px;
  color: rgba(250, 250, 250, 0.66);
}
.form__input:nth-child(5) {
  width: 100%;
}

.form__button {
  outline: none;
  border: none;
  cursor: pointer;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #DA7E2E;
  color: #fff;
  font-family: "TT Firs Neue Regular";
  padding: 24px 42px;
  text-decoration: none;
}
.form__button:hover {
  opacity: 0.7;
}

.footer__bottom {
  margin-top: 75px;
  border-top: 1px solid rgba(250, 250, 250, 0.5);
  padding-top: 37px;
}

.bottom__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .bottom__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.footer__links a {
  font-family: "TT Firs Neue Light";
  font-size: 16px;
  color: rgba(250, 250, 250, 0.66);
  text-decoration: none;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  margin-right: 40px;
}
.footer__links a:nth-last-child(1) {
  margin-right: 0;
}
.footer__links a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 1024px) {
  .footer__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 30px;
  }
}