@font-face {
  font-family: "Ubuntu";
  src: url("Ubuntu.eot");
  src: url("./assets/fonts/Ubuntu.eot?#iefix") format("embedded-opentype"),
    url("./assets/fonts/Ubuntu.woff2") format("woff2"),
    url("./assets/fonts/Ubuntu.woff") format("woff"),
    url("./assets/fonts/Ubuntu.ttf") format("truetype"),
    url("./assets/fonts/Ubuntu.svg#Ubuntu") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Ubuntu Condensed";
  src: url("./assets/fonts/UbuntuCondensed-Regular.eot");
  src: url("./assets/fonts/UbuntuCondensed-Regular.eot?#iefix")
      format("embedded-opentype"),
    url("./assets/fonts/UbuntuCondensed-Regular.woff2") format("woff2"),
    url("./assets/fonts/UbuntuCondensed-Regular.woff") format("woff"),
    url("./assets/fonts/UbuntuCondensed-Regular.ttf") format("truetype"),
    url("./assets/fonts/UbuntuCondensed-Regular.svg#UbuntuCondensed-Regular")
      format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Ubuntu Light";
  src: url("./assets/fonts/Ubuntu-Light.eot");
  src: url("./assets/fonts/Ubuntu-Light.eot?#iefix") format("embedded-opentype"),
    url("./assets/fonts/Ubuntu-Light.woff2") format("woff2"),
    url("./assets/fonts/Ubuntu-Light.woff") format("woff"),
    url("./assets/fonts/Ubuntu-Light.ttf") format("truetype"),
    url("./assets/fonts/Ubuntu-Light.svg#Ubuntu-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scrollbar-width: thin;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  font-family: "Ubuntu";
  font-weight: 400;
}

img {
  object-fit: cover;
  -o-object-fit: cover;
  width: 100%;
  min-width: 0;
}

body {
  font-family: "Ubuntu";
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  overflow-x: hidden !important;
  background-color: var(--site-black);
}

:root {
  --site-black: #050505;
  --site-white: #f5f5f5;
  --site-red: #4c0f0f;
  --site-purple: #490f4c;
  --site-green: #0f4c39;
  --site-blue: #0f1d4c;
  --site-brown: #4c260f;
  --primary-inline-padding: 20px;
  --primary-black: #000000;
}
.container {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  padding-inline: var(--primary-inline-padding);
}
.hero-section {
  background-color: var(--site-black);
  overflow-x: hidden;
}
/* hero styles start */

.site-header {
  padding-top: 20px;
  padding-bottom: 20px;
  min-height: 100px;
  transition: 0.3s;
}

.site-header.expanded {
  min-height: 300px;
}

.site-header .site-nav a {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 100;
}
.site-header .site-nav a span {
  color: rgba(245, 245, 245, 0.5);
  text-transform: uppercase;
  font-size: 22px;
  font-family: "Ubuntu";
  font-weight: 400;
  position: absolute;
  bottom: -80px;
}
.site-header .site-nav .site-nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.site-header .site-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.3s ease;
  gap: 20px;
  width: 100%;
  position: relative;
}

.site-header .site-nav-list img {
  transition: 0.3s;
  width: 100%;
  max-width: 296px;
  height: 42px;
  object-position: center;
  display: block;
  transition: height 0.3s ease;
  transition: 0.3s;
  position: absolute;
  transform: translateX(0);
  overflow-x: hidden !important;
}
.site-header .site-nav-list .site-nav-item:hover img {
  height: 279px;
  position: absolute;
  transform: translateX(0);
  height: 279px;
}
.site-header .site-nav-list .site-nav-item:hover a span {
  transform: translateY(237px);
  transition: 0.3s;
}

.hero-section .hero-wrapper {
  position: relative;
}

.new-bg-img {
  max-width: 533px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 1;
}

.hero-wrapper .name-text-wrapper * ,
.hero-wrapper .hero-bottom-wrapper{
z-index: 2;
}
.hero-section .hero-wrapper {
  padding-top: 40px;
  padding-bottom: 80px;
  /* background-image: url(""); */
  background-repeat: no-repeat;
  background-position: center;
}

.hero-wrapper .name-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 120px;
}
.hero-wrapper .name-text-wrapper span {
  font-family: "Ubuntu Condensed";
  font-weight: 400;
  /* font-size: 207px; */
  font-size: clamp(80px, 10.78vw, 207px);

  letter-spacing: -5px;
  color: var(--site-white);
  text-transform: uppercase;
  height: 143px;
  display: flex;
  align-items: center;
}

.hero-wrapper .name-text-wrapper span:nth-child(1) {
  align-self: start;
}
.hero-wrapper .name-text-wrapper span:nth-child(2) {
  align-self: center;
}
.hero-wrapper .name-text-wrapper span:nth-child(3) {
  align-self: end;
}

.hero-bottom-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-top: 80px;
}

.hero-bottom-wrapper a,
.hero-bottom-wrapper span {
  color: rgba(245, 245, 245, 0.5);
  font-size: 22px;
  text-transform: uppercase;
  cursor: pointer;
}

/* hero styles end */

/* telegram section styles start */
.telegram-section {
  background-color: var(--site-black);
  padding-top: 40px;
  padding-bottom: 90px;
}

.telegram-section .container {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.telegram-left-box {
  max-width: 48.438vw;
}
.telegram-left-box p {
  font-family: "Ubuntu";
  color: var(--site-white);
  line-height: 120%;
  opacity: 0.7;
  font-size: 34px;
  margin-bottom: 16px;
  text-indent: 30px;
}

.telegram-right-box {
  width: 31.875vw;
}

.telegram-right-box img {
  width: 100%;
}

.tele_follow_btn {
  background-color: rgba(245, 245, 245, 0.8);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  margin-top: 60px;
}

.tele_follow_btn span {
  font-family: "Ubuntu";
  font-weight: 600;
  letter-spacing: 4%;
  text-transform: uppercase;
  color: var(--site-black);
}

/* telegram section styles end */

/* portrait section styles start */

.portrait-section {
  background-color: var(--site-black);
  padding-top: 120px;
}

.portrait-section img {
  height: 484px !important;
}
.portrait-section .gallery-right-double img {
  max-height: 484px;
}

.portrait-section .gallery-left-double {
  display: flex;
  align-items: center;
  gap: 20px;
}

.portrait-section .gallery-right-double {
  width: 100%;
}

.portrait-section .gallery-right-double img {
  min-width: 100%;
}

.portrait-section .gallery-left-part {
  width: 48.333vw;
}

.portrait-section .gallery-right-part {
  width: 48.438vw;
}
.portrait-section .gallery-left-double img {
  min-width: calc(50% - 10px);
}
.portrait-section .gallery-left-double img:last-child {
  object-position: bottom;
}
.portrait-section .container {
  display: block;
  padding-block: 40px;
}

.title-wrapper h2 {
  text-transform: uppercase;
  font-family: "Ubuntu Condensed";
  color: var(--site-white);
  font-weight: 400;
  font-size: 44px;
}

.gallery.web {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
}

.gallery.web img {
  width: 100%;
  height: 100%;
}
.gallery-left-part {
  display: flex;
  flex-direction: column;
  width: 56.667vw;
  gap: 20px;
}

.gallery-right-part {
  display: flex;
  width: 40.156vw;
  gap: 20px;
}

.gallery-right-double {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.gallery-left-part .gallery-left-top {
  display: flex;
  gap: 20px;
}
/* portrait section styles end */

/*love section styles start */
.love-section {
  background-color: var(--site-red);
  padding-block: 40px;
}
.love-section img {
  height: 484px !important;
}

.love-section .gallery-left-double {
  display: flex;
  align-items: center;
  gap: 20px;
}

.love-section .gallery-right-single {
  width: 60%;
}
.love-section .gallery-right-single img {
  height: 100% !important;
}
/*love section styles end */

/* First form styles start */
.first-form-section {
  background-color: var(--site-black);
  padding-block: 120px;
  display: flex;
  justify-content: center;
}

.first-form-title-wrapper h2 {
  font-size: 44px;
  text-align: center;
  line-height: 110%;
}

.first-form-section .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 932px;
}

.first-form_form-wrapper {
  background-color: var(--site-red);
  padding-top: 31px;
  padding-bottom: 40px;
  padding-inline: 140px;
  width: 100%;
}
.first-form_form-wrapper form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 15px;
}

.first-form_form-wrapper form input,
.first-form_form-wrapper form textarea,
.site-footer form input,
.site-footer form textarea {
  width: 100%;
  border: none;
  outline: none;
  border-bottom: 0.8px solid var(--site-white);
  background-color: transparent;
  padding-block: 14px;
  font-family: "Ubuntu Light";
  font-weight: 300;
  font-size: 20px;
  letter-spacing: -2%;
  color: rgba(245, 245, 245, 0.5);
  resize: none;
}

.site-footer form input[name="fullname"] {
  margin-bottom: 14px;
}
.first-form_form-wrapper form textarea {
  height: 50px;
  overflow: hidden;
  margin-top: 29px;
}

.first-form-btn {
  width: 100%;
  padding: 16px;
  margin-top: 120px;
  cursor: pointer;
  background-color: rgba(245, 245, 245, 0.6);
  border: none;
  outline: none;
  transition: 0.3s;
}

.first-form-btn:hover {
  background-color: var(--site-white);
}
.first-form-btn span {
  font-family: "Ubuntu";
  font-weight: 600;
  font-size: 20px;
  color: var(--site-black);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
/* First form styles end */

/* footer styles start */
.site-footer {
  background-color: var(--site-red);
  padding-block: 20px;
}

.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: calc(100vh - 80px);
  height: 100%;
}

.site-footer .footer-left-wrapper,
.site-footer .footer-right-wrapper {
  border: 0.8px solid var(--site-white);
  height: 100%;
  min-height: 915px;
  max-height: 915px;
  padding: 20px;
}

.site-footer .footer-left-wrapper {
  width: 56.667vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.site-footer .footer-right-wrapper {
  width: 40.208vw;
}

.site-footer .footer-title-wrapper h3 {
  text-transform: uppercase;
  font-family: "Ubuntu Condensed";
  font-size: 80px;
  font-weight: 400;
  color: var(--site-white);
  line-height: 100%;
}

.site-footer form textarea {
  height: 50px;
  overflow: hidden;
  margin-top: 60px;
}

.site-footer form .first-form-btn {
  margin-top: 80px;
}

.site-footer .footer-subtitle-wrapper h4 {
  line-height: 100%;
  font-family: "Ubuntu Condensed";
  font-size: 44px;
  text-transform: uppercase;
  color: var(--site-white);
}

.site-footer .footer-right-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  height: 100%;
  justify-content: end;
}

.site-footer .footer-right-links-wrapper {
  display: flex;
  align-items: center;
}

.site-footer .footer-right-links-wrapper .footer-links-left,
.site-footer .footer-right-links-wrapper .footer-links-right {
  border: 0.8px solid var(--site-white);
  height: 307px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.site-footer .footer-right-links-wrapper .footer-links-left span,
.site-footer .footer-right-links-wrapper .footer-links-right span {
  font-family: "Ubuntu";
  font-size: 22px;
  color: var(--site-white);
  text-transform: uppercase;
  opacity: 50%;
}

.site-footer .footer-right-links-wrapper .footer-links-left a,
.site-footer .footer-right-links-wrapper .footer-links-right a {
  font-family: "Ubuntu";
  color: var(--site-white);
  font-weight: 600;
  font-size: 22px;
  line-height: 140%;
}
/* footer styles end */

/* kids section start */
.kids-section {
  background-color: var(--site-red);
  padding-block: 40px;
}

.kids-section img {
  height: 484px !important;
}
.kids-section .gallery-left-down {
  width: 100%;
}
.kids-grid .gallery-right-part {
  flex-direction: column;
}

.kids-grid .gallery-right-part .gallery-right-double {
  flex-direction: row;
}
.kids-grid .gallery-left-part {
  flex-direction: row;
  width: 48.438vw;
  justify-content: space-around;
}

.kids-grid .gallery-right-part {
  width: 48.438vw;
}

.kids-grid .gallery-left-down {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* kids section end */

/* family section start */
.family-section {
  padding-block: 40px;
  background-color: var(--site-red);
}

.family-section img {
  height: 484px !important;
}

.family-section .gallery-right-single img {
  height: 100% !important;
}

.family-section .gallery-right-single {
  width: 76%;
  max-width: 455px !important;
}
/* family section end */

/* cinema section start */
.cinema-section {
  padding-block: 40px;
  background-color: var(--site-blue);
}

.cinema-section img {
  height: 484px !important;
}

.cinema-section .gallery-right-part .gallery-right-single img {
  height: 100% !important;
}

.cinema-section .gallery-single-double-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cinema-section
  .cinema-grid.gallery.web.type5
  .gallery-right-double:last-of-type {
  display: flex;
  flex-direction: row !important;
}

.cinema-section
  .cinema-grid.gallery.web.type5
  .gallery-right-double:first-of-type
  img {
  min-width: 100%;
}

.cinema-section .gallery-right-single {
  max-width: 455px;
}
.cinema-grid .gallery-left-part {
  width: 40.156vw;
}

.cinema-grid .gallery-right-part {
  width: 56.667vw;
}

.cinema-grid .gallery-left-down {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* cinema section end */

/* magazine section start */
.magazine-section {
  padding-block: 40px;
  background-color: var(--primary-black);
}

.magazine-section img {
  height: 100% !important;
  max-height: 484px !important;
}
.magazine-grid .gallery-left-part {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.magazine-section .magazine-grid .gallery-left-down {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

/* magazine section end */

section {
  max-width: 100%;
}
.mySwiper {
  display: none !important;
}
/* swiper custom styles start */
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "" !important;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "" !important;
}
.mySwiper img {
  max-height: 515px;
  min-height: 515px;
  object-fit: cover;
}

/* swiper custom styles end */

.burger-bars {
  display: none;
  flex-direction: column;
  gap: 25px;
}

.burger-bars span {
  width: 100%;
  border-bottom: 2px solid var(--site-white);
  display: block;
}

/*popup styles */

.popup-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.popup-overlay.visible {
  opacity: 1;
  visibility: visible;
  padding-inline: 20px;
}

.message-popup-wrapper {
  width: 100%;
  max-width: 688px;
  background-color: var(--site-white);
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  text-align: center;
}

.popup-texts-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2px;
}

.popup-texts-wrapper .popup-title,
.popup-texts-wrapper .popup-description {
  font-family: "Ubuntu";
  text-transform: uppercase;
  line-height: 130%;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 20px;
}

.popup-texts-wrapper .popup-description {
  color: rgba(5, 5, 5, 0.8);
  text-transform: none;
}
.popup-image-wrapper img {
  width: 100%;
}
/*popup styles */

@media (max-width: 1300px) {
  .cinema-section .gallery-right-single {
    max-width: 300px;
  }
  .gallery-left-part,
  .gallery-right-part {
    width: unset !important;
  }
}
@media (max-width: 1200px) {
   .cinema-section .gallery-right-single {
    max-width: 200px;
  }
 
  /* footer mob start */
  .footer-right-links-wrapper {
    flex-direction: column;
    align-items: center;
  }
  /* footer mob end  */
}
@media (max-width: 1024px) {
  .burger-bars {
    display: flex;
    position: absolute;
    right: 20px;
    width: 50px;
    transition: 0.3s;
  }

  .hero-section .hero-wrapper {
    padding-top: 0;
  }

  .site-header.active .burger-bars {
    transform: rotate(90deg);
    transition: 0.3s;
    z-index: 100;
    right: 0;
  }

  .site-header.active .burger-bars span:nth-child(1) {
    transform: rotate(-45deg);
    position: absolute;
    left: 0;
    bottom: 0;
  }

  .site-header.active .burger-bars span:nth-child(3) {
    transform: rotate(45deg);
  }
  .site-header.active .burger-bars span:nth-child(2) {
    opacity: 0;
  }
  .site-header nav {
    position: absolute;
    transform: translateX(-100%);
    transition: transform 300ms ease, opacity 1000ms ease;
    opacity: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    background-color: var(--site-black);
    pointer-events: none;
    z-index: 10;
    left: 1px;
  }

  .site-header.active nav {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
  .site-header .site-nav-list {
    flex-direction: column;
    align-items: center;
    justify-content: start;
    margin-top: 7.3125rem;
  }
  .site-header .site-nav .site-nav-list {
    width: max-content;
    margin-inline: auto;
  }
  .site-header .site-nav-list img {
    display: none;
  }

  .site-header .site-nav-list .site-nav-item:hover a span {
    transform: unset;
    transition: unset;
  }
  .site-header .site-nav a,
  .site-header .site-nav-item {
    width: max-content;
  }

  .site-header .site-nav a span {
    color: rgba(245, 245, 245, 0.5);
    text-transform: uppercase;
    font-size: 22px;
    font-family: "Ubuntu";
    font-weight: 400;
    position: relative;
    bottom: 0;
  }
}
@media (max-width: 1000px) {
  .site-footer .container {
    flex-direction: column;
  }

  .site-footer .footer-left-wrapper,
  .site-footer .footer-right-wrapper {
    width: 100%;
  }

  .telegram-section .container {
    flex-direction: column;
    gap: 20px;
  }
  .telegram-left-box {
    max-width: 65%;
  }

  .telegram-right-box {
    width: 65%;
    align-self: end;
  }
}

@media (max-width: 767px) {
  .popup-texts-wrapper .popup-title,
  .popup-texts-wrapper .popup-description {
    font-size: 16px;
  }

  .hero-section .hero-wrapper {
    padding-bottom: 0;
  }
  .tele_follow_btn span {
    font-size: 20px;
    letter-spacing: 1px;
  }

  .tele_follow_btn {
    margin-top: 20px;
    padding: 14px;
  }

  .popup-texts-wrapper {
    gap: 10px;
  }
  .gallery.web {
    display: none;
  }

  .hero-bottom-wrapper {
    display: none;
  }
  .mySwiper {
    display: block !important;
    margin-top: 40px;
    padding-bottom: 133px !important;
  }
  .site-footer .footer-title-wrapper h3 {
    font-size: 34px;
  }

  .site-footer .footer-subtitle-wrapper h4 {
    font-size: 20px;
    line-height: 120%;
  }

  .site-footer .footer-left-wrapper,
  .site-footer .footer-right-wrapper {
    min-height: 539px;
    max-height: 539px;
  }

  .footer-right-links-wrapper {
    flex-direction: row;
  }

  .site-footer .footer-right-links-wrapper .footer-links-left,
  .site-footer .footer-right-links-wrapper .footer-links-right {
    height: 157px;
    padding-inline: 0;
    padding: 20px;
    width: 50%;
  }

  .site-footer .footer-right-links-wrapper .footer-links-left a,
  .site-footer .footer-right-links-wrapper .footer-links-right a {
    font-size: 16px;
  }

  .site-footer .footer-right-links-wrapper .footer-links-left span,
  .site-footer .footer-right-links-wrapper .footer-links-right span {
    font-size: 20px;
  }

  .site-footer form .first-form-btn {
    margin-top: 40px;
  }

  /*footer end */

  .title-wrapper h2 {
    font-size: 34px;
    line-height: 120%;
  }
  .portrait-section {
    padding-top: 40px;
    margin-top: -1px;
  }
  .swiper-button-prev {
    left: 40% !important;
    bottom: 0 !important;
    top: 90% !important;
    transform: translateX(-35%) !important;
  }
  .swiper-button-next {
    right: 40% !important;
    bottom: 0 !important;
    top: 90% !important;
    transform: translateX(35%) !important;
  }

  .first-form_form-wrapper {
    padding-inline: unset;
    padding-left: 20px;
    padding-right: 53px;
  }

  .telegram-section {
    padding-bottom: 60px;
    padding-top: 0;
  }
  .telegram-left-box p {
    font-size: 14px;
  }

  .hero-wrapper .name-text-wrapper {
    gap: 35px;
  }
  .new-bg-img {
    top: 58%;
  }

  .site-header {
    min-height: 80px;
  }

  .hero-bottom-wrapper a,
  .hero-bottom-wrapper span {
    font-size: 16px;
    line-height: 120%;
  }
}

@media (max-width: 535px) {
  .site-footer form textarea {
    height: 75px;
  }
}

@media (max-width: 480px) {
  .site-footer .footer-right-links-wrapper .footer-links-left a,
  .site-footer .footer-right-links-wrapper .footer-links-right a {
    font-size: 10px;
  }

  .site-footer .footer-right-links-wrapper .footer-links-left span,
  .site-footer .footer-right-links-wrapper .footer-links-right span {
    font-size: 14px;
  }

  .hero-wrapper .name-text-wrapper span {
    font-size: 40px;
  }
  /* .hero-wrapper .name-text-wrapper {
    gap: 145px;
  } */
  .hero-wrapper .name-text-wrapper span {
    letter-spacing: -2px;
  }
}

.family-section .gallery-left-part {
  width: 57.7vw;
}

::-webkit-input-placeholder {
  color: rgba(245, 245, 245, 0.5);
}
::-moz-placeholder {
  color: rgba(245, 245, 245, 0.5);
}
:-ms-input-placeholder {
  color: rgba(245, 245, 245, 0.5);
}
:-moz-placeholder {
  color: rgba(245, 245, 245, 0.5);
}
:placeholder {
  color: rgba(245, 245, 245, 0.5);
}
