@charset "UTF-8";
/*Обнуление*/
@import url("https://fonts.googleapis.com/css2?family=Forum&family=Roboto:wght@100;300;400;500;700;900&display=swap");
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

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

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

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

button {
  cursor: pointer;
}

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

a,
a:visited {
  text-decoration: none;
  color: white;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

/*--------------------*/
:root {
  --bg-dark: #030303;
  --bg-gray: #bcbcbc;
  --bg-dark-gray: #939393;
  --dark-red: #710707;
  --font-gold: #9d8665;
  --font-gold-dark: #7e6c51;
  --font-gold-light: #D2B183;
  --font1: 80px;
  --font2: 32px;
}

html {
  scroll-behavior: smooth;
}

.dark-section {
  background: var(--bg-dark);
}

.container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 75px 20px;
}

@media (max-width: 1480px) {
  .container {
    max-width: 1024px;
    padding: 60px 20px;
  }
}

@media (max-width: 1023px) {
  .container {
    max-width: 768px;
    padding: 40px 20px;
  }
}

.title {
  font-family: Forum;
  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  line-height: 90px;
  letter-spacing: 5px;
  text-align: left;
  color: white;
  text-transform: uppercase;
}

@media (max-width: 1480px) {
  .title {
    font-size: 50px;
    line-height: 75px;
  }
}

@media (max-width: 1023px) {
  .title {
    font-size: 40px;
    line-height: 60px;
  }
}

@media (max-width: 767px) {
  .title {
    font-size: 28px;
    line-height: 40px;
  }
}

a {
  -webkit-transition: color ease 0.333s 0s;
  transition: color ease 0.333s 0s;
}

a:hover {
  color: var(--font-gold);
}

a:active {
  color: var(--font-gold-dark);
}

/*Header*/
.header {
  height: 150px;
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
}

.header__logo h1 {
  font-family: Forum;
  font-size: 28px;
  font-weight: 400;
  line-height: 31px;
  letter-spacing: 5px;
  text-transform: uppercase;
  background: url("../assets/svg/logo.svg") 0 0 no-repeat;
  padding-left: 75px;
}

@media (max-width: 1480px) {
  .header {
    height: 130px;
  }
}

@media (max-width: 1023px) {
  .header {
    height: 110px;
  }
  .header__logo h1 {
    margin-top: 10px;
  }
}

@media (max-width: 767px) {
  .header {
    height: 90px;
  }
  .header h1 {
    font-size: 16px;
    line-height: 18px;
    margin-top: 0px;
    background: url("../assets/svg/logo.svg") 0 -1px/29px 16px no-repeat;
    padding-left: 54px;
  }
}

.nav {
  width: 775px;
}

.nav__list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.nav__list ul li {
  margin-top: -10px;
  font-family: Roboto;
  font-size: 22px;
  line-height: 26px;
  letter-spacing: 2px;
  font-weight: 200;
}

.nav__list ul li:last-child {
  width: 102px;
}

.nav__img-container, .nav__footer {
  display: none;
}

@media (max-width: 1440px) {
  .nav {
    width: 640px;
  }
}

@media (max-width: 1280px) {
  .nav {
    position: relative;
    width: 0;
  }
  .nav__list {
    position: absolute;
    top: 88px;
    left: calc(-970px - calc(100vw - 670px) / 2);
    z-index: 10;
    width: 200px;
    opacity: 0;
    overflow: hidden;
    -webkit-transition: left 0.5s ease-out 0s, opacity 0.5s ease 0s;
    transition: left 0.5s ease-out 0s, opacity 0.5s ease 0s;
  }
  .nav__list ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .nav__list ul li {
    margin-top: 0px;
    display: inline-block;
    padding: 12.5px 0;
    font-size: 20px;
    font-weight: 300;
    line-height: 23px;
    width: 100px;
  }
  .nav__list ul li ::before {
    content: '›';
    position: relative;
    left: 121px;
    font-size: 30px;
    line-height: 0;
  }
  .nav__cross {
    position: absolute;
    width: 32px;
    height: 2px;
    background: #ffffff;
    right: 0px;
    -webkit-transition: right 0.25s ease 0s, -webkit-transform 0.25s ease 0s;
    transition: right 0.25s ease 0s, -webkit-transform 0.25s ease 0s;
    transition: transform 0.25s ease 0s, right 0.25s ease 0s;
    transition: transform 0.25s ease 0s, right 0.25s ease 0s, -webkit-transform 0.25s ease 0s;
  }
  .nav__cross button {
    position: absolute;
    top: -8px;
    width: 32px;
    height: 18px;
    background: none;
    cursor: pointer;
    z-index: 1;
    -webkit-transition: -webkit-transform 0.25s ease 0s;
    transition: -webkit-transform 0.25s ease 0s;
    transition: transform 0.25s ease 0s;
    transition: transform 0.25s ease 0s, -webkit-transform 0.25s ease 0s;
  }
  .nav__cross::before {
    content: '';
    position: absolute;
    width: 32px;
    height: 2px;
    background: white;
    top: 8px;
    -webkit-transition: -webkit-transform 0.25s ease 0s;
    transition: -webkit-transform 0.25s ease 0s;
    transition: transform 0.25s ease 0s;
    transition: transform 0.25s ease 0s, -webkit-transform 0.25s ease 0s;
  }
  .nav__cross::after {
    content: '';
    position: absolute;
    width: 32px;
    height: 2px;
    background: white;
    top: -8px;
    -webkit-transition: -webkit-transform 0.25s ease 0s;
    transition: -webkit-transform 0.25s ease 0s;
    transition: transform 0.25s ease 0s;
    transition: transform 0.25s ease 0s, -webkit-transform 0.25s ease 0s;
  }
  .nav__cross-checked {
    width: 33px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    right: -3px;
  }
  .nav__cross-checked button {
    position: absolute;
    top: -10px;
    width: 25px;
    height: 25px;
    background: none;
    cursor: pointer;
    z-index: 1;
    right: 3px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .nav__cross-checked::before {
    width: 33px;
    top: 0;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .nav__cross-checked::after {
    width: 33px;
    top: 0;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  .nav .show-burger {
    left: -959px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 1;
  }
}

@media (max-width: 1023px) {
  .nav__list {
    left: calc(-1500px - calc(100vw - 670px) / 2);
    margin-top: -33px;
    width: 768px;
    height: 861px;
    background: black;
    padding-left: 45px;
  }
  .nav__list ul {
    padding-top: 21px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .nav__list li {
    padding: 12.5px 0;
    font-size: 20px;
    font-weight: 300;
    line-height: 23px;
  }
  .nav .show-burger {
    left: -748px;
    display: block;
    opacity: 1;
  }
  .nav__img-container {
    pointer-events: none;
    width: 658px;
    padding: 24px 0 35px;
    margin-left: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
    border-bottom: 1px solid white;
  }
  .nav__footer {
    width: 658px;
    display: block;
    margin-left: 10px;
    padding-top: 35px;
  }
  .nav__footer-container {
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 340px;
  }
}

@media (max-width: 767px) {
  .nav__list {
    left: calc(-440px - 100vw - ((100vw - 380px) / 2));
    width: calc(100vw - 36px);
    margin-top: -42px;
    height: calc(861px - (742px - 100vw));
    padding-left: 25px;
  }
  .nav .show-burger {
    left: calc(-729px + (767px - 100vw));
  }
  .nav__img-container {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    max-width: 700px;
    width: calc(100% - 48px);
    padding: 24px 0 19px;
    gap: 13px;
  }
  .nav__img-item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 33.33%;
            flex: 1 1 33.33%;
  }
  .nav__img-item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 1;
  }
  .nav__footer {
    width: calc(100% - 48px);
    padding-top: 23px;
    height: 17.5vw;
    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-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
  .nav__footer-container {
    width: 83%;
    height: 100px;
  }
}

@media (max-width: 419px) {
  .nav__img-container {
    border-bottom: none;
  }
  .nav__footer {
    display: none;
  }
}

/*Header*/
/*Welcome section*/
.Welcome {
  overflow: hidden;
}

.Welcome__container {
  height: 810px;
  padding: 0 20px;
}

.Welcome__body {
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
}

.Welcome__column {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: opacity 0.4s ease 0s;
  transition: opacity 0.4s ease 0s;
  opacity: 1;
}

.Welcome__wallpaper {
  float: right;
  z-index: -3;
  max-width: 1000px;
  max-height: 750px;
}

.Welcome__wallpaper::before {
  position: absolute;
  content: '';
  top: -100px;
  left: 0;
  width: 100%;
  height: calc(101% + 100px);
  -webkit-box-shadow: inset 100px 0px 100px #000;
          box-shadow: inset 100px 0px 100px #000;
  z-index: 1;
}

.Welcome__title {
  padding-top: 150px;
}

.Welcome__text {
  color: white;
  font-family: Roboto;
  font-size: 28px;
  font-style: normal;
  font-weight: 300;
  line-height: 33px;
  letter-spacing: 2px;
  text-align: left;
  padding-top: 25px;
}

.Welcome__button {
  display: block;
  margin-top: 75px;
}

.Welcome__button span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: var(--dark-red);
  width: 360px;
  height: 75px;
  border-radius: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px 0;
  font-family: Roboto;
  font-size: 22px;
  font-style: normal;
  font-weight: 300;
  line-height: 26px;
  letter-spacing: 2px;
  cursor: pointer;
  color: white;
  -webkit-transition: background 0.75s ease 0s;
  transition: background 0.75s ease 0s;
}

.Welcome__button span:hover {
  background: var(--font-gold);
  color: white;
}

.Welcome__swiper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 600px;
  height: 120px;
  background: black;
}

@media (max-width: 1480px) {
  .Welcome__container {
    height: 585px;
  }
  .Welcome__wallpaper {
    max-width: 700px;
    max-height: 525px;
  }
  .Welcome__title {
    padding-top: 50px;
    line-height: 90px;
  }
  .Welcome__text {
    font-size: 24px;
    line-height: 28px;
  }
  .Welcome__button {
    margin-top: 50px;
  }
  .Welcome__button span {
    width: 300px;
    height: 60px;
    padding: 19px 0;
    font-size: 20px;
    line-height: 23px;
  }
  .Welcome__swiper {
    width: 700px;
  }
  .Welcome .hide-column {
    opacity: 0;
  }
}

@media (max-width: 1023px) {
  .Welcome__container {
    height: 861px;
  }
  .Welcome__column {
    position: static;
    top: 0;
    left: 0;
    -webkit-transition: opacity 0.4s ease 0s;
    transition: opacity 0.4s ease 0s;
    opacity: 1;
  }
  .Welcome__wallpaper {
    float: right;
    position: relative;
    z-index: -3;
    max-width: 1000px;
    max-height: 750px;
  }
  .Welcome__wallpaper::before {
    display: none;
  }
  .Welcome__wallpaper img {
    max-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .Welcome__title {
    padding-top: 0px;
    text-align: center;
    line-height: 60px;
  }
  .Welcome__text {
    font-size: 20px;
    line-height: 21px;
    text-align: center;
    margin-bottom: 50px;
  }
  .Welcome__button {
    display: none;
  }
  .Welcome__swiper {
    width: 100%;
    height: 100px;
    background: black;
  }
}

@media (max-width: 767px) {
  .Welcome__container {
    height: calc(861px - (742px - 100vw));
  }
  .Welcome__title {
    margin-top: 5px;
    line-height: 40px;
  }
  .Welcome__title span:first-child {
    padding-right: 6px;
  }
  .Welcome__title span:last-child {
    padding-left: 6px;
  }
  .Welcome__text {
    margin-bottom: 50px;
    font-size: 16px;
    line-height: 19px;
  }
  .Welcome__swiper {
    height: 80px;
  }
}

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

.carousel__item {
  display: none;
  position: relative;
  -webkit-animation: 0.5s ease-in-out 0s;
          animation: 0.5s ease-in-out 0s;
}

.carousel__item_active {
  display: block;
}

.carousel__item_next {
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
}

.carousel__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.to-left {
  -webkit-animation-name: left;
          animation-name: left;
}

.from-left {
  -webkit-animation-name: left;
          animation-name: left;
  animation-direction: reverse;
}

.to-right {
  -webkit-animation-name: right;
          animation-name: right;
  animation-direction: reverse;
}

.from-right {
  -webkit-animation-name: right;
          animation-name: right;
}

@-webkit-keyframes left {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}

@keyframes left {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}

@-webkit-keyframes right {
  0% {
    left: 100%;
  }
  100% {
    left: 0;
  }
}

@keyframes right {
  0% {
    left: 100%;
  }
  100% {
    left: 0;
  }
}

.swiper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.swiper__container {
  max-width: 470px;
  padding-left: 15px;
  width: 100%;
  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;
}

.swiper__count {
  color: white;
  margin-left: -5px;
  padding-right: 5px;
  font-family: Roboto;
  font-size: 22px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 1.6px;
  text-align: left;
}

.swiper__dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 180px;
  width: 100%;
  max-height: 16px;
  height: 100%;
}

.swiper__dot {
  width: 8.89%;
  height: 100%;
  background: white;
  -webkit-transition: background ease 0.333s 0s;
  transition: background ease 0.333s 0s;
  cursor: pointer;
}

.swiper__dot_selected {
  background: var(--font-gold-light);
}

.swiper__dot:hover {
  background: var(--font-gold);
}

.swiper__arrows {
  width: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.swiper__arrows button {
  background: none;
  width: 300px;
}

.swiper__btn-left {
  -webkit-transition: fill 0.5s ease 0s;
  transition: fill 0.5s ease 0s;
  cursor: pointer;
}

.swiper__btn-left svg {
  width: 30px;
  height: 8px;
}

.swiper__btn-left:hover svg path {
  fill: var(--font-gold);
}

.swiper__btn-right {
  -webkit-transition: fill 0.5s ease 0s;
  transition: fill 0.5s ease 0s;
  cursor: pointer;
}

.swiper__btn-right svg {
  width: 30px;
  height: 8px;
}

.swiper__btn-right:hover svg path {
  fill: var(--font-gold);
}

@media (max-width: 1480px) {
  .swiper__container {
    margin-left: 150px;
    max-width: 420px;
    width: 100%;
    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;
  }
  .swiper__count {
    font-size: 20px;
    letter-spacing: 1.6px;
    padding-right: 7px;
  }
  .swiper__dots {
    max-width: 160px;
    max-height: 12px;
  }
  .swiper__dot {
    width: 12px;
  }
}

@media (max-width: 1023px) {
  .swiper__container {
    margin-left: 0px;
  }
}

@media (max-width: 767px) {
  .swiper__container {
    max-width: 245px;
    margin: 0 auto;
  }
  .swiper__count {
    font-size: 16px;
    letter-spacing: 0px;
  }
  .swiper__dots {
    max-width: 75px;
    max-height: 7px;
  }
  .swiper__dot {
    width: 7px;
    height: 100%;
  }
  .swiper__arrows {
    width: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .swiper__btn-left svg {
    width: 20px;
    height: 8px;
  }
  .swiper__btn-right svg {
    width: 20px;
    height: 8px;
  }
}

/*Welcome section*/
/*Visiting section*/
.Visiting__title {
  color: var(--font-gold);
  position: relative;
  padding-bottom: 104px;
}

.Visiting__title::before {
  position: absolute;
  content: '';
  top: 114px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--dark-red);
}

@media (max-width: 1480px) {
  .Visiting__title {
    padding-bottom: 83px;
  }
  .Visiting__title::before {
    top: 95px;
  }
}

@media (max-width: 1023px) {
  .Visiting__title {
    padding-bottom: 62px;
  }
  .Visiting__title::before {
    top: 80px;
  }
}

@media (max-width: 767px) {
  .Visiting__title {
    padding-bottom: 63px;
  }
  .Visiting__title::before {
    top: 60px;
  }
}

.cards__container {
  display: -ms-grid;
  display: grid;
  -webkit-column-gap: 60px;
          column-gap: 60px;
  row-gap: 75px;
  -ms-grid-columns: (minmax(200px, 440px))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(200px, 440px));
}

.cards__card {
  display: block;
}

.cards__card:hover .cards__title::before {
  width: 100%;
}

.cards__img {
  padding-bottom: 24px;
}

.cards__img img {
  width: 100%;
  height: 100%;
}

.cards__title {
  position: relative;
  color: black;
  font-family: Forum;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 5px;
  text-align: left;
  text-transform: uppercase;
  padding-bottom: 23px;
}

.cards__title::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 0;
  width: 68.2%;
  background: var(--dark-red);
  height: 2px;
  -webkit-transition: width 1s ease 0.1s;
  transition: width 1s ease 0.1s;
}

.cards__text {
  color: black;
  font-family: Roboto;
  font-size: 22px;
  font-style: normal;
  font-weight: 200;
  line-height: 26px;
  letter-spacing: 0em;
  text-align: left;
  padding-bottom: 10px;
}

.cards__subtext {
  color: black;
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 200;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: left;
}

@media (max-width: 1480px) {
  .cards__container {
    display: -ms-grid;
    display: grid;
    -webkit-column-gap: 108px;
            column-gap: 108px;
    row-gap: 58px;
    -ms-grid-columns: (minmax(120px, 330px))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(120px, 330px));
    width: 768px;
    margin: 0 auto;
  }
  .cards__card {
    display: block;
  }
  .cards__img {
    padding-bottom: 26px;
  }
  .cards__title {
    font-size: 28px;
    line-height: 31px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding-bottom: 23px;
  }
  .cards__title::before {
    top: 41.5px;
    width: 45.5%;
  }
  .cards__text {
    font-size: 20px;
    line-height: 23px;
    padding-bottom: 11px;
  }
  .cards__subtext {
    font-size: 16px;
    line-height: 19px;
  }
}

@media (max-width: 1023px) {
  .cards__container {
    display: -ms-grid;
    display: grid;
    -webkit-column-gap: 56px;
            column-gap: 56px;
    row-gap: 37px;
    -ms-grid-columns: (minmax(100px, 280px))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(100px, 280px));
    width: 616px;
    margin: 0 auto;
    padding-bottom: 40px;
  }
  .cards__title {
    font-size: 22px;
    line-height: 24px;
  }
  .cards__title::before {
    top: 33px;
    width: 53.5%;
  }
  .cards__text {
    padding-bottom: 9px;
    font-size: 18px;
    line-height: 21px;
  }
  .cards__subtext {
    font-size: 16px;
    line-height: 19px;
  }
}

@media (max-width: 767px) {
  .cards__container {
    row-gap: 39.5px;
    -ms-grid-columns: (minmax(120px, 280px))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(120px, 280px));
    max-width: 280px;
    width: auto;
    margin: 0 auto;
    padding-bottom: 0;
  }
  .cards__title {
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 5px;
  }
  .cards__title::before {
    top: 29px;
    width: 54%;
  }
  .cards__text {
    font-size: 16px;
    line-height: 19px;
  }
  .cards__subtext {
    font-size: 16px;
    line-height: 19px;
  }
  .cards__img {
    padding-bottom: 24px;
  }
}

.google-louvre {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/*Visiting section*/
/*Explore section*/
.Explore__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.Explore__content {
  padding-right: 63px;
}

.Explore__title {
  padding-bottom: 102px;
  position: relative;
}

.Explore__title::before {
  position: absolute;
  content: '';
  top: 115px;
  left: 0;
  width: 100.4%;
  height: 3px;
  background: var(--dark-red);
}

.Explore__text {
  color: white;
  font-family: Roboto;
  font-size: 22px;
  font-style: normal;
  font-weight: 300;
  line-height: 39px;
  letter-spacing: 0em;
  text-align: left;
  padding-bottom: 24px;
}

.Explore__text span {
  color: var(--font-gold);
}

.Explore__img {
  margin-top: 15px;
  width: 100%;
  max-width: 720px;
  aspect-ratio: 36 / 35;
}

@media (max-width: 1480px) {
  .Explore__container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .Explore__content {
    padding-right: 0px;
    margin-bottom: 60px;
  }
  .Explore__title {
    padding-bottom: 85px;
  }
  .Explore__title::before {
    top: 95px;
    width: 100%;
  }
  .Explore__text {
    font-size: 20px;
    padding-bottom: 2px;
    line-height: 35px;
  }
  .Explore__text:last-child {
    display: none;
  }
  .Explore__img {
    width: 100%;
    max-width: 720px;
    height: 100%;
    margin: 0 auto;
  }
  .Explore__img img {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 1023px) {
  .Explore__content {
    width: 100%;
    margin-bottom: 0px;
  }
  .Explore__title {
    padding-bottom: 63px;
  }
  .Explore__title::before {
    top: 80px;
  }
  .Explore__text {
    display: none;
  }
  .Explore__img {
    max-width: 728px;
    max-height: 705px;
  }
}

@media (max-width: 767px) {
  .Explore__title {
    padding-bottom: 62px;
  }
  .Explore__title::before {
    top: 60px;
  }
}

.slider {
  position: relative;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: url("../assets/img/explore-slider/after.webp") 0 center/100% no-repeat;
  overflow: hidden;
}

.slider input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  width: 100%;
  z-index: 1000;
}

.slider input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 1px;
  height: 100%;
  cursor: pointer;
}

.slider input::-ms-thumb {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background: none;
  border: none;
}

.slider input::-moz-range-thumb {
  appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  background: none;
  border: none;
}

.slider__before {
  position: absolute;
  left: 0;
  width: 61.1%;
  height: 100%;
  background: url("../assets/img/explore-slider/before.webp") 0 center/auto 100% no-repeat;
}

.slider__slider {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  width: 39px;
  height: 39px;
  border-radius: 50%;
  border: 5px solid white;
  cursor: pointer;
}

.slider__slider::before {
  content: '';
  position: absolute;
  top: -336px;
  right: 12.1px;
  height: 336px;
  width: 5px;
  background: white;
  cursor: pointer;
}

.slider__slider::after {
  content: '';
  position: absolute;
  top: 31px;
  right: 12.1px;
  height: 336px;
  width: 5px;
  background: white;
  cursor: pointer;
}

/*Explore section*/
/*Video section*/
.Video__container {
  padding-bottom: 55px;
}

.Video__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 74px;
}

.Video__title-container {
  min-width: 650px;
}

.Video__title {
  color: var(--font-gold);
}

.Video__content {
  margin-top: 5px;
  font-family: Roboto;
  font-size: 22px;
  font-style: normal;
  font-weight: 300;
  line-height: 39px;
  letter-spacing: 0em;
  text-align: left;
  padding-left: 70px;
}

.Video__core {
  overflow: hidden;
  aspect-ratio: 1440 / 735;
  margin-bottom: 38px;
  position: relative;
}

.Video__core video {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

@media (max-width: 1480px) {
  .Video__container {
    padding-bottom: 40px;
  }
  .Video__core {
    aspect-ratio: 984 / 504;
  }
  .Video__header {
    padding-bottom: 40px;
  }
  .Video__content {
    display: none;
  }
  .Video__title-container {
    min-width: auto;
  }
}

@media (max-width: 1023px) {
  .Video__container {
    padding-bottom: 62px;
  }
  .Video__core {
    aspect-ratio: 1440 / 754;
    margin-bottom: 20px;
  }
  .Video__header {
    padding-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .Video__container {
    padding-bottom: 20px;
  }
  .Video__title {
    line-height: 35px;
  }
  .Video__core {
    aspect-ratio: 380 / 226;
    margin-bottom: 40px;
  }
}

.controls {
  position: absolute;
  bottom: 0;
  left: 0;
  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;
  width: 100%;
  height: 85px;
  background: black;
  padding: 0 5px;
  z-index: 1000;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.4s ease-in-out 0s, -webkit-transform 0.4s ease-in-out 0s;
  transition: opacity 0.4s ease-in-out 0s, -webkit-transform 0.4s ease-in-out 0s;
  transition: transform 0.4s ease-in-out 0s, opacity 0.4s ease-in-out 0s;
  transition: transform 0.4s ease-in-out 0s, opacity 0.4s ease-in-out 0s, -webkit-transform 0.4s ease-in-out 0s;
  opacity: 0.9;
}

.controls__hide {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
}

.controls div,
.controls button {
  margin: 0 25px;
  cursor: pointer;
  background: none;
}

.controls__big-play {
  background: none;
  position: absolute;
  top: 0;
  left: 0;
  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;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 0.2s ease 0s;
  transition: opacity 0.2s ease 0s;
  opacity: 0.9;
}

.controls__big-play svg {
  -webkit-transform: translate(0, -20%);
          transform: translate(0, -20%);
  width: 220px;
  height: 220px;
}

.controls__big-play svg rect {
  width: 220px;
  height: 220px;
}

.controls__big-play.big-play_hide {
  opacity: 0;
}

.controls__speed {
  position: absolute;
  display: block;
  background: rgba(0, 0, 0, 0.7);
  left: 50%;
  top: 70%;
  width: 50px;
  height: 32px;
  -webkit-transition: opacity 0.5s ease-in-out 0s;
  transition: opacity 0.5s ease-in-out 0s;
  font-size: 22px;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  color: white;
  text-align: center;
  padding-top: 5px;
  border-radius: 10%;
  opacity: 0;
}

.controls__speed-animation {
  opacity: 1;
}

.controls__play svg {
  width: 23px;
  height: 31px;
}

.controls__progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.controls__progress input {
  width: 100%;
  cursor: pointer;
  -webkit-appearance: none;
  height: 8px;
  background: -webkit-linear-gradient(left, var(--dark-red) 0%, var(--dark-red) 54%, #c4c4c4 54%, #c4c4c4 100%);
}

.controls__progress input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  background: white;
  border-radius: 50%;
}

.controls__progress input::-moz-range-thumb {
  -moz-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  background: white;
  border-radius: 50%;
}

.controls__volume svg {
  width: 36px;
  height: 30px;
}

.controls__volume-progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 155px;
}

.controls__volume-progress input {
  cursor: pointer;
  width: 155px;
  -webkit-appearance: none;
  height: 8px;
  background: -webkit-linear-gradient(left, var(--dark-red) 0%, var(--dark-red) 45%, #c4c4c4 45%, #c4c4c4 100%);
}

.controls__volume-progress input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  background: white;
  border-radius: 50%;
}

.controls__volume-progress input::-moz-range-thumb {
  -moz-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  background: white;
  border-radius: 50%;
}

.controls__fullscreen svg {
  width: 36px;
  height: 36px;
}

@media (max-width: 1480px) {
  .controls {
    height: 60px;
    padding: 0 25px;
  }
  .controls div,
  .controls button {
    margin: 0 15px;
  }
  .controls__big-play svg {
    width: 152px;
    height: 152px;
  }
  .controls__play svg {
    width: 23px;
    height: 31px;
  }
  .controls__progress input {
    height: 5px;
  }
  .controls__progress input::-webkit-slider-thumb {
    width: 13px;
    height: 13px;
  }
  .controls__volume svg {
    width: 26px;
    height: 20px;
  }
  .controls__volume-progress {
    width: 143px;
  }
  .controls__volume-progress input {
    width: 143px;
    height: 5px;
  }
  .controls__volume-progress input::-webkit-slider-thumb {
    width: 13px;
    height: 13px;
  }
  .controls__fullscreen svg {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 1023px) {
  .controls {
    height: 50px;
    padding: 0 12.5px;
  }
  .controls div,
  .controls button {
    margin: 0 17.5px;
  }
  .controls__big-play svg {
    -webkit-transform: translate(0, -33.333%);
            transform: translate(0, -33.333%);
    width: 80px;
    height: 80px;
  }
  .controls__progress {
    position: absolute;
    top: -5px;
  }
  .controls__volume-progress {
    width: 100%;
  }
  .controls__volume-progress input {
    width: 100%;
  }
  .controls__volume svg {
    width: 27px;
    height: 21px;
  }
  .controls__play svg {
    width: 23px;
    height: 29px;
  }
  .controls__fullscreen svg {
    width: 27px;
    height: 27px;
  }
}

@media (max-width: 767px) {
  .controls {
    height: 50px;
    padding: 0 5px;
  }
  .controls div,
  .controls button {
    margin: 0 15px;
    padding-top: 2.5px;
  }
  .controls div {
    padding-top: 0;
  }
  .controls__big-play svg {
    -webkit-transform: translate(0, -53.333%);
            transform: translate(0, -53.333%);
    width: 50px;
    height: 50px;
  }
  .controls__speed {
    top: 60%;
    width: 30px;
    height: 20px;
    font-size: 14px;
    padding-top: 3px;
  }
  .controls__progress {
    position: absolute;
    top: -4px;
  }
  .controls__progress input {
    height: 4px;
  }
  .controls__progress input::-webkit-slider-thumb {
    width: 10px;
    height: 10px;
  }
  .controls__volume-progress input {
    height: 4px;
  }
  .controls__volume-progress input::-webkit-slider-thumb {
    width: 10px;
    height: 10px;
  }
  .controls__volume svg {
    width: 18px;
    height: 14px;
  }
  .controls__play svg {
    width: 13px;
    height: 17px;
  }
  .controls__fullscreen svg {
    width: 18px;
    height: 18px;
  }
}

.switch {
  overflow: hidden;
}

.switch__videos {
  position: relative;
  width: 1976px;
  left: -494px;
  display: -ms-grid;
  display: grid;
  -webkit-column-gap: 42px;
          column-gap: 42px;
  -ms-grid-columns: (452px)[5];
      grid-template-columns: repeat(5, 452px);
  margin-bottom: 25px;
}

.switch__video {
  aspect-ratio: 452 / 254;
}

.switch__video iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.switch__step_right {
  left: -988px;
  -webkit-transition: left 0.5s ease-in-out 0s;
  transition: left 0.5s ease-in-out 0s;
}

.switch__step_left {
  left: 0;
  -webkit-transition: left 0.5s ease-in-out 0s;
  transition: left 0.5s ease-in-out 0s;
}

.switch__swiper {
  position: relative;
  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: center;
      -ms-flex-align: center;
          align-items: center;
}

.switch__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 200px;
  cursor: pointer;
}

.switch__arrows button {
  background: none;
  font-size: 28px;
  color: #999999;
}

.switch__arrows_left:hover {
  color: var(--dark-red);
}

.switch__arrows_right:hover {
  color: var(--dark-red);
}

.switch__dots {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 140px;
  top: -20px;
}

.switch__dot {
  background: #999999;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  -webkit-transition: background 0.5s ease 0s;
  transition: background 0.5s ease 0s;
  cursor: pointer;
}

.switch__dot:hover {
  background: var(--dark-red);
}

.switch__dot_active {
  background: #333333;
}

@media (max-width: 1480px) {
  .switch__videos {
    -ms-grid-columns: (300px)[5];
        grid-template-columns: repeat(5, 300px);
    left: -342px;
  }
  .switch__step_right {
    left: -684px;
  }
}

@media (max-width: 1023px) {
  .switch__videos {
    left: -374px;
    -ms-grid-columns: (354px)[5];
        grid-template-columns: repeat(5, 354px);
    -webkit-column-gap: 20px;
            column-gap: 20px;
    margin-bottom: 6px;
  }
  .switch__video {
    aspect-ratio: 354 / 199;
  }
  .switch__video:last-child {
    display: none;
  }
  .switch__step_right {
    left: -748px;
  }
  .switch__arrows {
    width: 190px;
  }
  .switch__dots {
    width: 130px;
    top: -18px;
  }
  .switch__dot {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 767px) {
  .switch__videos {
    margin-bottom: 23px;
    left: calc(-374px + (384px - 50vw));
    -ms-grid-columns: (calc(354px - (384px - 50vw)))[5];
        grid-template-columns: repeat(5, calc(354px - (384px - 50vw)));
  }
  .switch__step_right {
    left: calc(-748px + (768px - 100vw));
  }
  .switch__dots {
    width: 120px;
    top: -18px;
  }
  .switch__dot {
    width: 8px;
    height: 8px;
  }
  .switch__arrows {
    width: 180px;
  }
  .switch__arrows button {
    font-size: 20px;
    line-height: 32px;
  }
}

/*Video section*/
/*Gallery section*/
.animation-item {
  -webkit-transform: translate(0, 12%);
          transform: translate(0, 12%);
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in 0s, -webkit-transform 0.5s ease-out 0s;
  transition: opacity 0.5s ease-in 0s, -webkit-transform 0.5s ease-out 0s;
  transition: transform 0.5s ease-out 0s, opacity 0.5s ease-in 0s;
  transition: transform 0.5s ease-out 0s, opacity 0.5s ease-in 0s, -webkit-transform 0.5s ease-out 0s;
}

.animation-item_active {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

.Gallery__container {
  position: relative;
  overflow: hidden;
  height: 2200px;
}

.Gallery__container::before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: inset 0 -175px 175px #000;
          box-shadow: inset 0 -175px 175px #000;
  z-index: 1;
}

.Gallery__title {
  padding-bottom: 75px;
}

.Gallery__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 36px;
          column-gap: 36px;
}

.Gallery__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 24px;
}

.Gallery__column_left {
  margin-top: 50px;
}

.Gallery__column_center .animation-item {
  -webkit-transition: opacity 0.5s ease-in 0.16s, -webkit-transform 0.5s ease-out 0.16s;
  transition: opacity 0.5s ease-in 0.16s, -webkit-transform 0.5s ease-out 0.16s;
  transition: transform 0.5s ease-out 0.16s, opacity 0.5s ease-in 0.16s;
  transition: transform 0.5s ease-out 0.16s, opacity 0.5s ease-in 0.16s, -webkit-transform 0.5s ease-out 0.16s;
}

.Gallery__column_right {
  margin-top: 50px;
}

.Gallery__column_right .animation-item {
  -webkit-transition: opacity 0.5s ease-in 0.32s, -webkit-transform 0.5s ease-out 0.32s;
  transition: opacity 0.5s ease-in 0.32s, -webkit-transform 0.5s ease-out 0.32s;
  transition: transform 0.5s ease-out 0.32s, opacity 0.5s ease-in 0.32s;
  transition: transform 0.5s ease-out 0.32s, opacity 0.5s ease-in 0.32s, -webkit-transform 0.5s ease-out 0.32s;
}

.Gallery__art {
  max-width: 456px;
  max-height: 100%;
}

.Gallery__art img {
  width: 100%;
}

@media (max-width: 1480px) {
  .Gallery__container {
    height: 1460px;
  }
  .Gallery__container::before {
    -webkit-box-shadow: inset 0 -125px 125px #000;
            box-shadow: inset 0 -125px 125px #000;
  }
  .Gallery__title {
    padding-bottom: 59px;
  }
}

@media (max-width: 1023px) {
  .Gallery__container {
    height: 1220px;
  }
  .Gallery__container::before {
    -webkit-box-shadow: inset 0 -100px 100px #000;
            box-shadow: inset 0 -100px 100px #000;
  }
  .Gallery__title {
    padding-bottom: 40px;
  }
  .Gallery__content {
    -webkit-column-gap: 24px;
            column-gap: 24px;
  }
  .Gallery__column {
    row-gap: 24px;
  }
  .Gallery__column_right {
    display: none;
  }
  .Gallery__column_left {
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .Gallery__container {
    height: 757px;
  }
  .Gallery__container::before {
    -webkit-box-shadow: inset 0 -75px 75px #000;
            box-shadow: inset 0 -75px 75px #000;
  }
}

/*Gallery section*/
/*Tickets section*/
.Tickets {
  position: relative;
}

.Tickets__title {
  color: var(--font-gold);
  position: relative;
  padding-bottom: 102px;
}

.Tickets__title::before {
  position: absolute;
  content: '';
  top: 114px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--dark-red);
}

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

.Tickets__wallpaper {
  min-width: 720px;
  height: 550px;
}

.Tickets__wallpaper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.Tickets__ticket {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 60px;
}

.Tickets__type h5 {
  font-family: Roboto;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 33px;
  letter-spacing: 0em;
  text-align: left;
  padding-bottom: 50px;
}

.Tickets__amount h5 {
  font-family: Roboto;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 33px;
  letter-spacing: 0em;
  text-align: right;
  padding-bottom: 25px;
}

.Tickets__buy-btn {
  position: relative;
  width: 175px;
  height: 50px;
  background: black;
  overflow: hidden;
  -webkit-transition: background 0.75s ease 0s, color 0.75s ease 0s;
  transition: background 0.75s ease 0s, color 0.75s ease 0s;
  cursor: pointer;
  z-index: 3;
  font-family: Roboto;
  font-size: 22px;
  font-weight: 300;
  line-height: 53px;
  letter-spacing: 2px;
  text-align: center;
  color: white;
}

.Tickets__buy-btn:hover {
  background: var(--font-gold);
  color: black;
}

.Tickets__buy-btn span {
  position: absolute;
  background: var(--dark-red);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
  border-radius: 50%;
  -webkit-animation: animate 0.75s linear 1;
          animation: animate 0.75s linear 1;
}

@-webkit-keyframes animate {
  0% {
    width: 0px;
    height: 0px;
  }
  100% {
    width: 350px;
    height: 350px;
  }
}

@keyframes animate {
  0% {
    width: 0px;
    height: 0px;
  }
  100% {
    width: 350px;
    height: 350px;
  }
}

.Tickets__total {
  font-family: Roboto;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 33px;
  letter-spacing: 1.65px;
  text-align: right;
  display: block-inline;
  max-width: 150px;
  margin-left: auto;
  padding: 40px 0 60px 0;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

@media (max-width: 1480px) {
  .Tickets__title {
    padding-bottom: 82px;
  }
  .Tickets__title::before {
    top: 94px;
  }
  .Tickets__wallpaper {
    min-width: 700px;
    height: 440px;
  }
  .Tickets__ticket {
    padding-left: 80px;
  }
  .Tickets__type {
    display: none;
  }
  .Tickets__amount h5 {
    text-align: left;
    padding-bottom: 29px;
  }
  .Tickets__total {
    margin: -5px 0 0;
    padding: 0px 0 70px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

@media (max-width: 1023px) {
  .Tickets__title {
    padding-bottom: 64px;
  }
  .Tickets__title::before {
    top: 80px;
  }
  .Tickets__wallpaper {
    min-width: 444px;
    height: 340px;
  }
  .Tickets__ticket {
    padding-left: 60px;
  }
  .Tickets__amount h5 {
    padding-bottom: 37px;
  }
  .Tickets__total {
    padding: 20px 0 40px 0;
  }
}

@media (max-width: 767px) {
  .Tickets__ticket {
    width: 100%;
    padding-left: 0;
  }
  .Tickets__title {
    padding-bottom: 62px;
  }
  .Tickets__title::before {
    top: 60px;
  }
  .Tickets__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .Tickets__wallpaper {
    min-width: auto;
    height: auto;
  }
  .Tickets__wallpaper img {
    aspect-ratio: 380 / 160;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .Tickets__amount {
    margin-top: 40px;
    margin: 40px auto 0 auto;
  }
  .Tickets__amount h5 {
    text-align: center;
    padding-bottom: 20px;
    font-size: 16px;
    line-height: 19px;
  }
  .Tickets__total {
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    margin: 0;
    width: auto;
    letter-spacing: 0.5px;
  }
  .Tickets__buy-btn {
    line-height: 50px;
    font-size: 16px;
  }
}

.radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  font-family: Roboto;
  font-size: 22px;
  font-style: normal;
  font-weight: 300;
  line-height: 26px;
  letter-spacing: 0em;
  margin-bottom: 25px;
  -webkit-transition: color ease 0.333s 0s;
  transition: color ease 0.333s 0s;
}

.radio:hover {
  color: var(--font-gold);
}

.radio__circle {
  display: block;
  width: 17px;
  height: 17px;
  border: 2px solid black;
  border-radius: 50%;
  margin-right: 23.5px;
  padding: 2px;
}

.radio__circle::before {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  background: black;
  border-radius: 50px;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 0.15s;
  transition: -webkit-transform 0.15s;
  transition: transform 0.15s;
  transition: transform 0.15s, -webkit-transform 0.15s;
}

.radio__input {
  display: none;
}

.radio__input:checked + .radio__circle::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.form h6 {
  display: block-inline;
  width: 150px;
  font-family: Roboto;
  font-size: 22px;
  font-style: normal;
  font-weight: 300;
  line-height: 26px;
  letter-spacing: 0em;
  padding-bottom: 14px;
  margin-left: auto;
}

.form__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 150px;
  height: 50px;
  border: 3px solid #000;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: auto;
  margin-bottom: 10px;
}

.form__input {
  width: 90px;
  font-family: Roboto;
  font-size: 22px;
  font-style: normal;
  font-weight: 300;
  line-height: 26px;
  letter-spacing: 0em;
  text-align: center;
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}

.form__input::-webkit-outer-spin-button, .form__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}

.form__button {
  font-size: 36px;
  background: none;
  width: 14px;
}

@media (max-width: 1480px) {
  .form h6 {
    width: 175px;
    padding-bottom: 10px;
  }
  .form__container {
    width: 175px;
    margin-bottom: 29px;
  }
  .form__input {
    width: 102px;
  }
}

@media (max-width: 1023px) {
  .form__container {
    margin-bottom: 25px;
  }
}

@media (max-width: 767px) {
  .form h6 {
    font-size: 16px;
    line-height: 19px;
    padding-bottom: 16px;
  }
  .form__container {
    margin-bottom: 19px;
  }
}

/*Tickets section*/
/*Tickets form*/
.tickets-form {
  font-family: Roboto;
  font-style: normal;
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 4;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  -webkit-transition: left ease 0.5s 0s;
  transition: left ease 0.5s 0s;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.tickets-form__cross {
  top: 30px;
  right: 30px;
  width: 25px;
  height: 25px;
  position: absolute;
  cursor: pointer;
}

.tickets-form__container {
  display: none;
  max-width: 1440px;
  width: 100%;
  max-height: 845px;
  height: 100%;
  background: white;
  padding: 91px 235px 91px 235px;
  pointer-events: auto;
  position: relative;
  overflow-y: auto;
}

.tickets-form__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  width: 100%;
  max-height: 100%;
  height: 100%;
  -webkit-column-gap: 40px;
          column-gap: 40px;
}

.tickets-form__left {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 43%;
          flex: 1 1 43%;
  min-width: 400px;
}

.tickets-form__right {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 57%;
          flex: 1 1 57%;
  min-width: 530px;
}

@media (max-width: 1480px) {
  .tickets-form__container {
    max-width: 1024px;
    max-height: 768px;
    padding: 75px 27px 20px 27px;
  }
  .tickets-form__cross {
    top: 30px;
    right: 30px;
    width: 25px;
    height: 25px;
    position: absolute;
    cursor: pointer;
  }
}

@media (max-width: 1023px) {
  .tickets-form__container {
    max-width: 590px;
    max-height: 1479px;
    padding: 80px 30px 40px 30px;
  }
  .tickets-form__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .tickets-form__cross {
    top: 30px;
    right: 30px;
    width: 25px;
    height: 25px;
    position: absolute;
    cursor: pointer;
  }
}

@media (max-width: 767px) {
  .tickets-form__container {
    max-width: 420px;
    max-height: 1754px;
    padding: 80px 30px 50px 30px;
  }
  .tickets-form__left {
    min-width: 260px;
  }
  .tickets-form__right {
    min-width: 260px;
  }
}

.left-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.left-form .form-warning {
  -webkit-box-shadow: 0 0 7px red;
          box-shadow: 0 0 7px red;
}

.left-form select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url("../assets/svg/arrow.svg") no-repeat calc(100% - 14px);
}

.left-form input,
.left-form select {
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0em;
}

.left-form input[type="text"],
.left-form input[type="date"],
.left-form input[type="time"],
.left-form input[type="email"],
.left-form input[type="tel"],
.left-form select {
  height: 100%;
  width: 100%;
}

.left-form input[type="text"]::-webkit-input-placeholder,
.left-form input[type="date"]::-webkit-input-placeholder,
.left-form input[type="time"]::-webkit-input-placeholder,
.left-form input[type="email"]::-webkit-input-placeholder,
.left-form input[type="tel"]::-webkit-input-placeholder,
.left-form select::-webkit-input-placeholder {
  color: black;
}

.left-form__logo svg {
  width: 85px;
  height: 42px;
}

.left-form__title {
  color: var(--font-gold);
  font-family: Forum;
  font-size: 50px;
  font-weight: 400;
  line-height: 49px;
  letter-spacing: 0em;
  text-align: left;
}

.left-form__subtitle {
  color: var(--dark-red);
  font-size: 18px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 0em;
  text-align: left;
  position: relative;
  padding-bottom: 55px;
}

.left-form__subtitle::before {
  position: absolute;
  content: '';
  top: 27px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--dark-red);
}

.left-form__date-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 20px;
          column-gap: 20px;
}

.left-form__entry-ticket {
  border: 1px solid #000;
}

@media (max-width: 1023px) {
  .left-form {
    margin-bottom: 51px;
  }
  .left-form__subtitle {
    padding-bottom: 35px;
  }
  .left-form__date-time {
    -webkit-column-gap: 28px;
            column-gap: 28px;
  }
}

@media (max-width: 767px) {
  .left-form__title {
    font-size: 32px;
    line-height: 30px;
  }
  .left-form__date-time {
    display: block;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-column-gap: 20px;
            column-gap: 20px;
  }
}

.input-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid black;
  height: 45px;
  text-align: center;
  position: relative;
}

.input-container__date, .input-container__time {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
}

.input-container__date input, .input-container__time input {
  max-width: 136px;
}

.input-container__date input::-webkit-calendar-picker-indicator, .input-container__time input::-webkit-calendar-picker-indicator {
  margin: 0;
  padding: 0;
  background: url("../assets/svg/arrow.svg") no-repeat left;
}

.input-container__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 43px;
  width: 43px;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 1023px) {
  .input-container__date input, .input-container__time input {
    max-width: 195px;
  }
}

@media (max-width: 767px) {
  .input-container__time input {
    max-width: 304px;
  }
  .input-container__date {
    margin-bottom: 20px;
  }
  .input-container__date input {
    max-width: 307px;
  }
}

.date-input {
  padding-top: 6px;
  color: black;
  position: absolute;
  top: 8px;
  left: 43px;
  width: 112px;
  height: 27px;
  background: white;
  text-align: left;
  font-size: 18px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 0em;
  text-align: left;
}

@media (max-width: 767px) {
  .date-input {
    top: 10px;
  }
}

.time-input {
  padding-top: 6px;
  color: black;
  position: absolute;
  top: 8px;
  left: 43px;
  width: 112px;
  height: 27px;
  background: white;
  text-align: left;
  font-size: 18px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 0em;
  text-align: left;
}

@media (max-width: 767px) {
  .time-input {
    top: 10px;
  }
}

.entry-ticket {
  padding: 8.5px 13px 0px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0em;
  text-align: left;
}

.entry-ticket__title {
  color: var(--font-gold);
  line-height: 20px;
  font-family: Forum;
  position: relative;
  padding-bottom: 15px;
}

.entry-ticket__title::before {
  position: absolute;
  content: '';
  top: 24px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--dark-red);
}

.entry-ticket__content {
  line-height: 26px;
  font-family: Roboto;
}

.entry-ticket__buy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 6px;
}

.entry-ticket__count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 105px;
  height: 25px;
  border: 1px solid #000;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: auto;
  margin-bottom: 13.3px;
}

.entry-ticket__button {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 33.333%;
          flex: 1 1 33.333%;
  background: black;
  width: 100%;
  color: white;
}

.entry-ticket__input {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 33.333%;
          flex: 1 1 33.333%;
  width: 33.333%;
  font-size: 18px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: center;
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}

.entry-ticket__input::-webkit-outer-spin-button, .entry-ticket__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}

.right-form {
  position: relative;
  border: 1px solid var(--bg-dark);
  padding: 25px 30px 26px;
}

.right-form__img {
  display: block;
  float: right;
}

.right-form__title {
  font-size: 32px;
  font-weight: 500;
  line-height: 38px;
  letter-spacing: 0em;
  text-align: left;
}

.right-form__subtitle {
  font-size: 22px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0em;
  text-align: left;
  color: var(--dark-red);
  margin-bottom: 5px;
}

.right-form__timetable {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 300;
  line-height: 27px;
}

.right-form__timetable svg {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 15px;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 10px;
}

.right-form__card-container {
  position: relative;
}

.right-form__button {
  width: 220px;
  height: 45px;
  background: var(--dark-red);
  position: absolute;
  right: 30px;
  bottom: 26px;
  font-family: Roboto;
  font-size: 22px;
  font-weight: 400;
  line-height: 26px;
  color: white;
  padding-top: 5px;
}

@media (max-width: 1023px) {
  .right-form {
    padding: 25px 14px 25px;
  }
  .right-form__card-container {
    padding-bottom: 100px;
  }
  .right-form__button {
    font-size: 20px;
    line-height: 23px;
    right: 14px;
    bottom: 25px;
    padding-top: 0px;
  }
}

@media (max-width: 767px) {
  .right-form__card-container {
    padding-bottom: 85px;
  }
  .right-form__img {
    display: block;
    float: right;
    width: 120px;
    height: 96px;
  }
}

.full-price {
  margin-bottom: 10px;
}

.full-price__body {
  padding-bottom: 8px;
  margin-bottom: 11px;
  border-bottom: 2px solid var(--dark-red);
  font-size: 22px;
  font-weight: 400;
  line-height: 31px;
}

.full-price__buy {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

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

.full-price__black-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 32px;
  height: 20px;
  background: black;
  color: #A4A4A3;
  font-size: 18px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  -ms-flex-item-align: center;
      align-self: center;
  margin-right: 10px;
  padding-top: 4px;
}

.full-price__total {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 32px;
  line-height: 38px;
}

.full-price__text {
  font-weight: 400;
}

.full-price__big-price {
  font-weight: 500;
}

@media (max-width: 1023px) {
  .full-price {
    padding-bottom: 4px;
  }
}

.form-card {
  position: relative;
  z-index: 7;
  width: 360px;
  height: 211px;
  background: var(--bg-gray);
  padding: 15px 20px;
  border-radius: 3px;
}

.form-card p {
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  margin-bottom: 3.5px;
}

.form-card input,
.form-card select {
  margin-bottom: 11px;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  padding-left: 6px;
}

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

s .form-card__imgs {
  padding-left: 10px;
  width: auto;
  height: 100%;
  padding-top: 19px;
  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-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}

s .form-card__imgs img {
  margin-bottom: 15px;
}

s .form-card__imgs img:first-child {
  width: 56px;
  height: 18px;
}

s .form-card__imgs img:last-child {
  width: 56px;
  height: 32px;
}

.form-card__card-number input {
  width: 215px;
  height: 35px;
}

.form-card__date-time select {
  width: 100px;
  height: 35px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: white url("../assets/svg/Arrows.svg") right no-repeat;
}

.form-card__selects {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
          column-gap: 15px;
}

.form-card__cardholder-name input {
  width: 320px;
  height: 35px;
}

@media (max-width: 767px) {
  .form-card {
    width: 100%;
    max-width: 330px;
    height: 209px;
    padding: 15px 20px;
    margin-bottom: 25px;
  }
  .form-card p {
    font-size: 11px;
    line-height: 13px;
    margin-bottom: 5px;
  }
  .form-card input,
  .form-card select {
    padding-left: 11px;
  }
  .form-card__cardholder-name input {
    max-width: 290px;
    width: 100%;
    height: 35px;
  }
  .form-card__card-number input {
    width: 100%;
    max-width: 215px;
  }
  .form-card__date-time select {
    width: 100%;
    max-width: 100px;
  }
  .form-card__content {
    width: 100%;
  }
}

.form-card2 {
  position: absolute;
  z-index: 6;
  background: var(--bg-dark-gray);
  padding: 15px 0;
  top: 30px;
  right: 0;
  border-radius: 3px;
  width: 360px;
  height: 211px;
}

.form-card2__black-line {
  margin-top: 10px;
  width: 100%;
  height: 45px;
  background: var(--bg-dark);
}

.form-card2__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  padding: 15px 20px;
}

.form-card2__cvc-cvv {
  width: 75px;
  font-weight: 400;
  line-height: 12px;
}

.form-card2__cvc-cvv h6 {
  font-size: 12px;
  padding: 0 0 8px 9px;
}

.form-card2__cvc-cvv input {
  width: 75px;
  height: 35px;
  padding: 0 0 8px 9px;
}

.form-card2__cvc-cvv p {
  display: block;
  font-size: 10px;
  padding: 6px 0 0 9px;
}

@media (max-width: 767px) {
  .form-card2 {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 330px;
    height: 209px;
  }
  .form-card2__cvc-cvv {
    line-height: 13px;
  }
  .form-card2__cvc-cvv h6 {
    font-size: 13px;
    padding: 0 0 8px 9px;
  }
  .form-card2__cvc-cvv input {
    width: 75px;
    height: 35px;
    padding: 0 0 8px 9px;
  }
  .form-card2__cvc-cvv p {
    display: block;
    font-size: 9px;
    padding: 5px 0 0 15px;
    line-height: 11px;
  }
}

.shadow-bg {
  position: fixed;
  z-index: 3;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0);
  -webkit-transition: background ease 0.5s 0s;
  transition: background ease 0.5s 0s;
}

/*Tickets form*/
/*Parallax section*/
.parallax {
  background: url("../assets/img/parallax.webp") center/cover no-repeat;
  background-attachment: fixed;
  height: 400px;
  width: 100%;
}

@media (max-width: 1023px) {
  .parallax {
    height: 300px;
  }
}

/*Parallax section*/
/*Contacts section*/
.Contacts__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.Contacts__title {
  color: var(--font-gold);
  position: relative;
  padding-bottom: 103px;
}

.Contacts__title::before {
  position: absolute;
  content: '';
  top: 114px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--dark-red);
}

.Contacts__contact {
  padding-right: 200px;
}

.Contacts__contact h5 {
  font-family: Roboto;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 33px;
  letter-spacing: 0em;
  text-align: left;
  padding-bottom: 50px;
}

.Contacts__contact p {
  font-family: Roboto;
  font-size: 22px;
  font-style: normal;
  font-weight: 300;
  line-height: 26px;
  letter-spacing: 0em;
  text-align: left;
  padding-bottom: 25px;
}

.Contacts__contact p a {
  color: black;
}

.Contacts__location {
  width: 960px;
  height: 620px;
}

@media (max-width: 1480px) {
  .Contacts__title {
    padding-bottom: 83px;
  }
  .Contacts__title::before {
    top: 95px;
  }
  .Contacts__contact {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 29.5%;
            flex: 1 1 29.5%;
    padding-right: 0px;
  }
  .Contacts__contact h5 {
    font-size: 24px;
    line-height: 28px;
    padding-bottom: 35px;
  }
  .Contacts__contact p {
    font-size: 20px;
    line-height: 23px;
    padding-bottom: 15px;
  }
  .Contacts__location {
    width: 694px;
    height: 454px;
  }
  .Contacts__location img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media (max-width: 1023px) {
  .Contacts__container {
    padding-bottom: 69px;
  }
  .Contacts__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .Contacts__title {
    padding-bottom: 62px;
  }
  .Contacts__title::before {
    top: 80px;
  }
  .Contacts__contact {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 29.5%;
            flex: 1 1 29.5%;
    padding-right: 0px;
    margin-bottom: 25px;
  }
  .Contacts__contact h5 {
    font-size: 20px;
    line-height: 23px;
    padding-bottom: 40px;
  }
  .Contacts__contact p {
    font-size: 18px;
    line-height: 21px;
    padding-bottom: 15px;
  }
  .Contacts__location {
    width: 728px;
    height: 476px;
  }
  .Contacts__location img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media (max-width: 767px) {
  .Contacts__container {
    padding-bottom: 42px;
  }
  .Contacts__title::before {
    top: 59px;
  }
  .Contacts__contact h5 {
    font-size: 16px;
    line-height: 19px;
  }
  .Contacts__contact p {
    font-size: 16px;
    line-height: 19px;
  }
  .Contacts__location {
    width: auto;
    height: 248px;
  }
}

/*Contacts section*/
/*Footer*/
.footer {
  overflow: hidden;
}

.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 20px;
}

.footer__menu {
  height: 268px;
  padding-top: 87px;
  border-bottom: 3px solid white;
}

.footer__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 23.6%;
          flex: 0 0 23.6%;
  padding-right: 30px;
}

.footer__logo h6 {
  font-family: Forum;
  font-size: 28px;
  font-weight: 400;
  line-height: 31px;
  letter-spacing: 5px;
  text-transform: uppercase;
  background: url("../assets/svg/logo.svg") 0 0 no-repeat;
  padding-left: 75px;
}

.footer__nav {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 36.8%;
          flex: 0 0 36.8%;
}

.footer__links {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 39.6%;
          flex: 0 0 39.6%;
  position: relative;
  height: 123px;
}

.footer__links-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 340px;
}

.footer__link {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  width: 48px;
  height: 48px;
  padding: 13.5px;
  border: 1px solid white;
  border-radius: 50%;
  -webkit-transition: border ease 0.5s 0s;
  transition: border ease 0.5s 0s;
}

.footer__link > svg path {
  -webkit-transition: fill ease 0.5s 0s;
  transition: fill ease 0.5s 0s;
}

.footer__link:hover,
.footer__link:hover > svg path {
  border: 1px solid var(--font-gold);
  fill: var(--font-gold);
}

.footer__body {
  height: 124px;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-family: Roboto;
  font-size: 22px;
  font-style: normal;
  font-weight: 200;
  line-height: 22px;
  letter-spacing: 2px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
}

.footer__body p {
  display: inline-block;
}

@media (max-width: 1480px) {
  .footer__menu {
    height: 246px;
    padding-top: 61px;
  }
  .footer__logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 23.6%;
            flex: 0 0 23.6%;
    padding-right: 39px;
  }
  .footer__nav {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 44%;
            flex: 0 0 44%;
  }
  .footer__links {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 31.7%;
            flex: 0 0 31.7%;
    height: 131px;
  }
}

@media (max-width: 1023px) {
  .footer__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer__menu {
    height: 308px;
    padding-top: 48px;
  }
  .footer__logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    padding-right: 0px;
  }
  .footer__nav {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 72%;
            flex: 0 0 72%;
  }
  .footer__links {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 87.6%;
            flex: 0 0 87.6%;
    height: 60px;
  }
  .footer__body {
    height: 103px;
  }
}

@media (max-width: 767px) {
  .footer__menu {
    height: 297px;
    padding-top: 41px;
    border-bottom: 2px solid white;
  }
  .footer__logo h6 {
    font-size: 16px;
    line-height: 18px;
    background: url("../assets/svg/logo.svg") 0 -1px/29px 16px no-repeat;
    padding-left: 49px;
  }
  .footer__nav {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 123.5%;
            flex: 0 0 123.5%;
  }
  .footer__body {
    height: 103px;
    font-size: 16px;
  }
  .footer__body p:nth-child(2) {
    display: none;
  }
  .footer__links {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 84.3%;
            flex: 0 0 84.3%;
    width: 100%;
    height: 57px;
  }
  .footer__links-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 62vw;
  }
}

.footer-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 170px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer-nav__list li {
  display: inline-block;
  font-family: Roboto;
  font-size: 22px;
  font-style: normal;
  font-weight: 200;
  line-height: 26px;
  letter-spacing: 2px;
  text-align: left;
  margin-bottom: 26px;
}

@media (max-width: 1480px) {
  .footer-nav__list {
    padding-top: 5px;
    height: 160px;
  }
  .footer-nav__list li {
    margin-bottom: 25px;
  }
}

@media (max-width: 1023px) {
  .footer-nav__list {
    padding-top: 5px;
    height: 160px;
  }
  .footer-nav__list li {
    margin-bottom: 20px;
    font-size: 18px;
    padding-left: 99px;
  }
}

@media (max-width: 767px) {
  .footer-nav__list {
    margin-top: 40px;
    padding-top: 0px;
    height: 100px;
  }
  .footer-nav__list li {
    width: auto;
    padding-left: 0px;
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 30px;
  }
}

/*Footer*/
