@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus,
:active {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

a:focus,
a:active {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

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

html,
body {
  width: 100%;
  font-size: 100%;
  line-height: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  height: 100dvh;
  min-width: 320px;
  scroll-behavior: smooth;
}

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

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

button {
  cursor: pointer;
}

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

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

a:hover {
  text-decoration: none;
}

a {
  font-size: inherit;
  color: inherit;
  display: inherit;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

h1, h2, h3, h4, h5, h6, p, address, cite, span, ul, li {
  font-style: normal;
  font-size: inherit;
  font-weight: inherit;
}

/*-----------------------------------обнуляющие стили--------------------------------*/
/*----------------------------------Шрифты--------------------------------*/
@font-face {
  font-family: "Pobeda";
  src: url("../fonts/Pobeda-Regular.woff2") format(woff2);
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ubuntu";
  src: url("../fonts/Ubuntu-Regular.woff2") format(woff2);
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ubuntu";
  src: url("../fonts/Ubuntu-Bold.woff2") format(woff2);
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/*----------------------------------Шрифты--------------------------------*/
/*----------------------------------Переменные--------------------------------*/
:root {
  --color-black: #000000;
  --color-white: #FFFFFF;
  --color-yellow: #FFC700;
  --shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.1);
  --font-family-base: "Ubuntu", Arial, sans-serif;
  --font-family-pobeda: "Pobeda", Arial, sans-serif;
  --container-width: 1700px;
}

/*----------------------------------Переменные--------------------------------*/
/*----------------------------------global--------------------------------*/
body.lock {
  overflow: hidden;
}

#about,
#creative-group,
#actors {
  scroll-margin-top: 100px;
  padding-top: 100px;
  margin-top: -100px;
}

body {
  font-family: var(--font-family-base);
  font-size: clamp(14px, 0.9375vw, 18px);
  font-weight: 400;
  color: var(--color-white);
  background: var(--color-black);
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.main {
  flex: 1 1 auto;
}

._container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0px 20px;
}

._ibg {
  position: relative;
}
._ibg img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.title {
  line-height: 133%;
  max-width: 440px;
  font-size: clamp(18px, 1.25vw, 24px);
}
.title h2 {
  font-size: clamp(54px, 3.125vw, 60px);
  font-family: var(--font-family-pobeda);
  line-height: 100%;
}
@media (max-width: 768px) {
  .title {
    text-align: center;
    margin: auto;
  }
}

.text {
  font-size: clamp(14px, 0.9375vw, 18px);
  color: var(--color-black);
  line-height: 100%;
}

.button {
  padding: 16px 60px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-size: 16px;
  background-color: var(--color-yellow);
  color: #040c11;
}
@media (hover: hover) {
  .button:hover {
    background-color: #FFE27A;
  }
}
.button:active {
  background-color: #DEAD00;
}

.logo {
  text-align: center;
  margin-bottom: 75px;
}
@media (max-width: 768px) {
  .logo {
    margin-bottom: 330px;
  }
}

.social-network {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
}
.social-network__link {
  display: block;
  background-color: rgba(250, 250, 250, 0.2);
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-network__link:last-child {
  padding: 10px;
}
.social-network__link svg path {
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .social-network__link:hover svg path {
    fill: var(--color-yellow);
    transition: all 0.3s ease;
  }
}

/*----------------------------------global--------------------------------*/
/*----------------------------------header--------------------------------*/
.header {
  position: fixed;
  width: 100%;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
}
@media (max-width: 1024px) {
  .header__bg {
    background-color: rgb(128, 128, 128);
    transition: all 0.3s ease 0s;
  }
}
.header__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 40px 20px;
  max-width: 1660px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .header__body .button {
    order: 1;
  }
}
@media (max-width: 1024px) {
  .header__body {
    padding: 20px;
  }
}

/*----------------------------------header--------------------------------*/
/*----------------------------------menu--------------------------------*/
.menu {
  background: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  border-radius: 30px;
}
@media (max-width: 1024px) {
  .menu {
    border-radius: 0px 0px 30px 30px;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.5);
  }
}
.menu ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.menu__link {
  line-height: 143%;
  font-size: 16px;
  transition: All 0.3s ease 0s;
  padding: 16px 30px;
  color: var(--color-black);
  border-radius: 30px;
}
@media (hover: hover) {
  .menu__link:hover {
    color: var(--color-yellow);
    background: rgba(0, 0, 0, 0.05);
    transition: All 0.3s ease 0s;
  }
}
@media (max-width: 1024px) {
  .menu__link {
    padding: 0px;
  }
}
@media (max-width: 1024px) {
  .menu {
    position: fixed;
    left: 0;
    top: -100%;
    width: 100%;
    padding: 100px 24px 24px 24px;
    transition: All 0.5s ease 0s;
    overflow: auto;
    z-index: 9;
  }
  .menu._active {
    top: 0;
  }
  .menu__list-item:not(:last-child) {
    margin-bottom: 32px;
  }
  .menu ul {
    display: block;
    position: relative;
    color: var(--color-white);
  }
  .menu ul li {
    margin-bottom: 20px;
  }
}
.menu .button {
  display: none;
}
@media (max-width: 1024px) {
  .menu .button {
    display: block;
  }
}

/*----------------------------------menu--------------------------------*/
/*----------------------------------burger--------------------------------*/
.burger {
  display: none;
}
@media (max-width: 1024px) {
  .burger {
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    position: relative;
    display: block;
    z-index: 999;
    cursor: pointer;
  }
  .burger__line {
    height: 2px;
    width: 26px;
    position: absolute;
    transition: all 0.3s ease 0s;
    background: #000;
    transform: translate(-50%, -50%);
    border-radius: 1px;
  }
  .burger__line:first-child {
    left: 50%;
    top: 25%;
  }
  .burger__line:nth-child(2) {
    left: 50%;
    top: 50%;
  }
  .burger__line:last-child {
    left: 50%;
    top: 75%;
  }
  .burger._active .burger__line:nth-child(2) {
    opacity: 0;
  }
  .burger._active .burger__line:first-child {
    transform: rotate(-45deg);
    left: 10%;
    top: 50%;
    background-color: #B4B4B4;
  }
  .burger._active .burger__line:last-child {
    transform: rotate(45deg);
    left: 10%;
    top: 50%;
    background-color: #B4B4B4;
  }
}

/*----------------------------------burger--------------------------------*/
/*----------------------------------main-section--------------------------------*/
.main-section {
  position: relative;
}
.main-section__body {
  position: relative;
  z-index: 2;
  padding: 160px 0px 560px;
}
@media (max-width: 768px) {
  .main-section__body {
    padding: 130px 0px 160px;
  }
}
.main-section__link {
  -webkit-backdrop-filter: blur(50px);
          backdrop-filter: blur(50px);
  background: rgba(255, 255, 255, 0.1);
  padding: 28px 20px;
  border-radius: 30px;
  width: 68px;
  margin: auto;
  transition: all 0.3s;
  margin-bottom: 16px;
}
.main-section__link svg path {
  transition: all 0.3s;
}
@media (hover: hover) {
  .main-section__link:hover {
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
  }
  .main-section__link:hover svg path {
    transition: all 0.3s;
    stroke: var(--color-yellow);
  }
}
@media (max-width: 768px) {
  .main-section__link {
    margin-bottom: 26px;
  }
}
.main-section__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.main-section__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 150px 10px;
}
@media (max-width: 768px) {
  .main-section__wrap {
    flex-wrap: wrap;
    justify-content: center;
  }
  .main-section__wrap img {
    max-width: 100px;
  }
}
@media (max-width: 768px) {
  .main-section .title {
    order: 1;
  }
}
@media (max-width: 768px) {
  .main-section .logo {
    margin-bottom: 48px;
  }
}

/*----------------------------------main-section--------------------------------*/
/*----------------------------------info--------------------------------*/
.info {
  position: relative;
}
.info__body {
  position: relative;
  z-index: 2;
  padding: 130px 0px 200px;
}
@media (max-width: 768px) {
  .info__body {
    padding: 50px 0px 50px;
  }
}
.info__block {
  max-width: 720px;
  text-align: center;
  margin: auto;
  line-height: 133%;
  font-size: clamp(14px, 0.9375vw, 18px);
  padding-bottom: 600px;
}
.info__block h2 {
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .info__block {
    text-align: start;
    max-width: 240px;
    margin: 0;
    padding-bottom: 150px;
  }
}
.info__text {
  text-align: center;
  max-width: 800px;
  margin: auto;
}
.info__text p {
  margin-bottom: 20px;
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 120%;
}
.info__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
/*----------------------------------info--------------------------------*/
/*----------------------------------about--------------------------------*/
.about {
  padding: 60px 0px 120px;
}
@media (max-width: 768px) {
  .about {
    padding: 40px 0px 50px;
  }
}
.about .title {
  text-align: center;
  max-width: 100%;
  margin-bottom: 60px;
}
.about__body {
  max-width: 800px;
  margin: auto;
}
.about__text {
  margin-bottom: 60px;
  line-height: 133%;
}
.about__text p {
  text-align: justify;
}
.about__text p:not(:last-child) {
  margin-bottom: 20px;
}
.about__iamge {
  text-align: center;
}

/*----------------------------------about--------------------------------*/
/*----------------------------------buy-ticket--------------------------------*/
.buy-ticket {
  position: relative;
  margin-bottom: 60px;
}
.buy-ticket__body {
  position: relative;
  z-index: 2;
  padding: 330px 0px;
}
@media (max-width: 768px) {
  .buy-ticket__body {
    padding: 150px 0px;
  }
}
.buy-ticket__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.buy-ticket .button {
  max-width: 250px;
  margin: auto;
}

/*----------------------------------buy-ticket--------------------------------*/
/*----------------------------------creative-group--------------------------------*/
.creative-group {
  padding: 60px 0px 140px;
  position: relative;
  overflow: hidden;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .creative-group {
    padding: 20px 0px 20px;
    margin-bottom: 50px;
  }
}
.creative-group .title {
  max-width: 100%;
  text-align: center;
  margin-bottom: 120px;
}
@media (max-width: 768px) {
  .creative-group .title {
    margin-bottom: 60px;
  }
}
.creative-group__body {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px 150px;
  flex-wrap: wrap;
  max-width: 1176px;
  padding: 0px 20px;
  margin: auto;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .creative-group__body {
    margin-bottom: 60px;
  }
}
.creative-group__image {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
}
.creative-group__image img {
  width: 100%;
}
@media (max-width: 768px) {
  .creative-group__image {
    position: static;
  }
}

/*----------------------------------creative-group--------------------------------*/
/*----------------------------------card--------------------------------*/
.card {
  text-align: center;
  position: relative;
  display: inline-block;
}
.card img {
  margin-bottom: 30px;
  scale: 1;
  transition: all 0.3s;
  width: 252px;
  height: 252px;
  border-radius: 50%;
  filter: grayscale(100%);
}
.card h3 {
  font-size: clamp(18px, 1.25vw, 24px);
  margin-bottom: 20px;
  scale: 1;
  transition: all 0.3s;
  line-height: 100%;
}
@media (max-width: 768px) {
  .card h3 {
    font-size: 24px;
  }
}
.card p {
  color: var(--color-yellow);
  scale: 1;
  transition: all 0.3s;
}
@media (hover: hover) {
  .card:hover img {
    scale: 1.1;
    transition: all 0.3s;
  }
  .card:hover h3 {
    scale: 1.1;
    transition: all 0.3s;
  }
  .card:hover p {
    scale: 1.1;
    transition: all 0.3s;
  }
}
@media (max-width: 1500px) {
  .card {
    max-width: 200px;
  }
  .card img {
     height: auto;
  }
}
@media (max-width: 768px) {
  .card {
    max-width: 250px;
  }
}

.card:hover .cursor-wave {
  opacity: 1;
}

.cursor-wave {
  position: fixed;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cursor-wave::before,
.cursor-wave::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: -15px;
  top: -5px;
  animation: wave 2s infinite ease-out;
}

.cursor-wave::before {
  width: 20px;
  height: 20px;
  border: 20px solid #FFD702;
  animation-delay: 0s;
}

.cursor-wave::after {
  width: 40px;
  height: 40px;
  border: 20px solid rgba(255, 215, 2, 0.5);
  animation-delay: 0.5s;
}

@keyframes wave {
  0% {
    transform: scale(0.5);
    opacity: 0.8;
  }
  70% {
    opacity: 0.4;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}
/*----------------------------------card--------------------------------*/
/*----------------------------------actors--------------------------------*/
.actors {
  position: relative;
  min-height: 200vh;
}
.actors__content {
  position: relative;
  z-index: 2;
}
.actors__content .title {
  max-width: 100%;
  text-align: center;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .actors__content .title {
    margin-bottom: 60px;
  }
}
.actors__subtitle {
  color: var(--color-yellow);
  text-transform: uppercase;
  font-family: var(--font-family-pobeda);
  font-size: clamp(28px, 2.0833333333vw, 40px);
  margin-bottom: 30px;
  text-align: center;
  line-height: 100%;
}
@media (max-width: 768px) {
  .actors__subtitle {
    font-size: 40px;
  }
}
.actors__row {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 20px 40px;
}
@media (max-width: 1280px) {
  .actors__row {
    flex-wrap: wrap;
  }
}
.actors__block {
  max-width: 900px;
  margin-bottom: 60px;
}
@media (max-width: 1500px) {
  .actors__block {
    max-width: 500px;
  }
}
@media (max-width: 768px) {
  .actors__block {
    margin-bottom: 20px;
  }
}
.actors__block--mod {
  margin: auto;
  padding-bottom: 60px;
}
.actors__wrap {
  display: flex;
  justify-content: center;
  gap: 10px 30px;
}
@media (max-width: 1550px) {
  .actors__wrap {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .actors__wrap {
    flex-wrap: wrap;
  }
}
.actors__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150vh;
  transition: transform 0.3s ease-out;
}
.actors__image img {
  width: 100%;
}

/*----------------------------------actors--------------------------------*/
/*----------------------------------media--------------------------------*/
.media {
  margin-bottom: 120px;
}
.media .title {
  margin-bottom: 120px;
  max-width: 100%;
  text-align: center;
}
.media__body {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.media__body--mod {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}
.media__block {
  flex-basis: 500px;
}
@media (max-width: 1024px) {
  .media__body--mod {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .media__more {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .media__body {
    flex-wrap: wrap;
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .media__block {
    width: 100%;
    flex-basis: 100%;
  }
  .media .title {
    margin-bottom: 60px;
  }
  .media {
    margin-bottom: 100px;
  }
}
.media__block {
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.media__block img {
  width: 100%;
}
.media__subtitle {
  font-size: 40px;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-yellow);
  margin-bottom: 20px;
  line-height: 1.2;
  font-family: var(--font-family-pobeda);
}
.media__more {
  display: none;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  .media__more {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}
.button-more {
  text-align: center;
  margin: auto;
  max-width: 300px;
  display: block;
  margin-bottom: 120px;
  margin-top: 50px;
}
@media (max-width: 1024px) {
  .button-more {
    margin-bottom: 50px;
  }
}
.button-none {
  display: none;
  text-align: center;
  margin: auto;
  max-width: 300px;
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
.button-none {
  margin-bottom: 30px;
}
}
/*----------------------------------media--------------------------------*/
/*----------------------------------popup--------------------------------*/
.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  transition: all 0.8s ease 0s;
  z-index: 999;
}
.popup__body {
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 20px;
}
.popup__content {
  max-width: 700px;
  border-radius: 30px;
  -webkit-backdrop-filter: blur(50px);
          backdrop-filter: blur(50px);
  box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  position: relative;
  opacity: 0;
  transform: perspective(600px) translate(0px, -100%) rotateX(45deg);
  transition: all 0.8s ease 0s;
}
@media (max-width: 768px) {
  .popup__content {
    padding: 40px 20px;
  }
}
.popup.open .popup__content {
  transform: perspective(600px) translate(0px, 0%) rotateX(0deg);
  opacity: 1;
  visibility: visible;
}
.popup__title {
  font-size: 20px;
  line-height: normal;
  margin-bottom: 40px;
  text-align: center;
  text-transform: uppercase;
}
.popup.open {
  opacity: 1;
  visibility: visible;
}
.popup__close {
  position: absolute;
  top: 40px;
  right: 40px;
  background: rgba(255, 255, 255, 0.5);
  width: 36px;
  height: 36px;
  border-radius: 50%;
}
.popup__close::before, .popup__close::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 22px;
  top: 22%;
  left: 48%;
  transform: rotate(45deg);
  background-color: var(--color-black);
}
.popup__close::after {
  transform: rotate(-45deg);
}
@media (max-width: 768px) {
  .popup__close {
    top: 40px;
    right: 20px;
  }
}
.popup__card_top {
  display: flex;
  align-items: center;
  gap: 20px 30px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .popup__card_top {
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
}
.popup__card_img img {
  width: 252px;
  height: 252px;
  border-radius: 50%;
  filter: grayscale(100%);
}
.popup__card_inner h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  margin-bottom: 30px;
}
.popup__card_inner p {
  color: var(--color-yellow);
}
.popup__card p {
  line-height: 133%;
  margin-bottom: 20px;
}
.popup__card p a {
  display: inline;
  color: var(--color-yellow);
}
.popup__card h4 {
  margin-bottom: 10px;
}
.popup__card ul {
  margin-bottom: 20px;
}
.popup__card ul li {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 10px;
  line-height: 130%;
}
/*----------------------------------popup--------------------------------*/

/*---------------------------------------images----------------------------*/
.images {
  margin-bottom: 50px;
}
.images__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.images-slider {
  overflow: hidden;
}
.images-slider .swiper-slide {
  height: 500px;
  width: 100%;
}
.images-slider .swiper-slide img {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .images-slider .swiper-slide {
    height: auto;
  }
}
/*---------------------------------------images----------------------------*/

/*----------------------------------cookie--------------------------------*/
#cookie-notification {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-black);
  padding: 15px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  z-index: 9999;
  display: none;
}

#cookie-notification p {
  margin: 0 0 10px;
  color: var(--color-white);
}

#cookie-notification button {
  background: var(--color-yellow);
  color: var(--color-white);
  border: none;
  padding: 8px 15px;
  cursor: pointer;
  border-radius: 4px;
}

#cookie-notification button:hover {
  background: var(--color-yellow);
}

/*----------------------------------cookie-------------------------------*/

/*----------------------------------partners--------------------------------*/
.partners {
  margin-bottom: 120px;
}
.partners__content .title {
  margin: auto;
  padding-bottom: 120px;
  text-align: center;
}
.partners__body {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 120px;
}
.partner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 166px;
}
.partner img {
  margin-bottom: 20px;

}
.partner p {
  font-size: 24px;
  line-height: 133%;
  color: #373737;
}
.partner:last-child img {
  width: 120px;
}
@media (max-width: 768px) {
    .partners__body {
      flex-wrap: wrap;
      gap: 50px;
    }
    .partner p {
      font-size: 20px;
    }
    .partner:last-child img {
      width: 200px;
    }
    .partners__content .title {
      padding-bottom: 60px;
    }
}
/*----------------------------------partners--------------------------------*/

/*----------------------------------footer--------------------------------*/
.footer {
  position: relative;
  padding: 120px 0px 60px;
}
@media (max-width: 768px) {
  .footer {
    padding: 60px 0px 60px;
  }
}
.footer__body {
  position: relative;
  z-index: 2;
}
.footer__body .button {
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .footer__body .logo {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .footer__body .logo {
    margin-bottom: 40px;
  }
}
@media (max-width: 450px) {
  .footer__body .logo {
    max-width: 173px;
    margin: auto;
    padding-bottom: 50px;
  }
}
.footer__body .logo-we {
  position: absolute;
  top: 20%;
  left: 0;
}
@media (max-width: 1024px) {
  .footer__body .logo-we {
    position: static;
    max-width: 100px;
    margin: auto;
    padding-bottom: 80px;
  }
}
.footer__button {
  max-width: 250px;
  margin: auto;
}
.footer__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*----------------------------------footer--------------------------------*//*# sourceMappingURL=styles.css.map */