* {
   padding: 0;
   margin: 0;
   border: 0;
   scrollbar-color: #2d2c2c #fff;
   scrollbar-width: thin;
}

*::-webkit-scrollbar-thumb {
   background-color: #2d2c2c;
}

*::-webkit-scrollbar-track {
   background-color: #fff;
}

*::-webkit-scrollbar-button {
   display: none;
   background-color: #2d2c2c;
}

*::-webkit-scrollbar {
   width: 8px;
}

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

:focus,
:active {
   outline: none;
}

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

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

button {
   background: transparent;
}

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

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;
}

ul li {
   list-style: none;
}

img {
   vertical-align: top;
}

html {
   scroll-behavior: smooth;
}

.wrapper {
   min-height: 100%;
   display: flex;
   flex-direction: column;
   font-family: "Work Sans";
   line-height: 1.67;
   font-size: 16px;
   overflow: hidden;
}

main {
   flex: 1 1 auto;
}

body.no-scroll {
   overflow: hidden;
}

body.no-scroll::after {
   content: "";
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: 2;
   background-color: rgba(0, 0, 0, 0.4);
}

.container {
   width: min(100% - 40px, 1320px);
   margin-inline: auto;
}

/*------------------------------Header---------------------------*/
.header {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   background: linear-gradient(to bottom, black, transparent);
   z-index: 10;
}

.header__body {
   display: flex;
   padding: 30px 100px;
   justify-content: space-between;
   gap: 10px;
}

@media (max-width: 767px) {
   .header__body {
      padding: 20px 16px 20px 20px;
   }
}

.header__logo {
   flex: 0 1 206px;
   display: flex;
   align-items: center;
   transition: all 0.3s ease 0s;
}

.header__logo span {
   font-weight: 500;
   color: #fff;
   margin-top: 10px;
}

.header__logo img {
   width: 48px;
   height: 48px;
   -o-object-fit: contain;
   object-fit: contain;
   filter: invert(1);
}

@media (hover: hover) {
   .header__logo:hover {
      opacity: 0.9;
   }
}

.header__languages {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 12px;
}

@media (max-width: 470px) {
   .header__languages {
      display: none;
   }
}

.header__language {
   display: block;
   width: 34px;
   height: 22px;
   border: 1px solid transparent;
   padding: 2px;
   transition: all 0.3s ease 0s;
}

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

@media (hover: hover) {
   .header__language:hover {
      border-color: #fff;
   }
}

.header__buttons {
   flex: 0 1 206px;
   display: flex;
   align-items: center;
   gap: 20px;
}

.button {
   background: transparent;
   font-size: 19px;
   -webkit-backdrop-filter: blur(15px);
   backdrop-filter: blur(15px);
   color: #fff;
   font-weight: 500;
   font-family: "Work Sans", sans-serif;
   padding: 7px 25px;
   border: 1px solid #fff;
   border-radius: 100px;
   min-width: 90px;
   transition: all 0.3s ease 0s;
   white-space: nowrap;
}

.button:active {
   transform: scale(0.8);
}

@media (hover: hover) {
   .button:hover {
      background-color: #fff;
      color: #000;
   }
}

.menu__icon {
   display: flex;
   flex-direction: column;
   background: transparent;
   gap: 4px;
}

.menu__icon svg {
   transition: all 0.3s ease 0s;
}

@media (hover: hover) {
   .menu__icon:hover svg:nth-child(1) {
      transform: translateX(2px);
   }

   .menu__icon:hover svg:nth-child(3) {
      transform: translateX(-2px);
   }
}

@media (max-width: 470px) {
   .menu__icon {
      width: 20px;
   }

   .menu__icon svg {
      width: 20px;
   }
}

.menu__body {
   position: fixed;
   top: 0;
   right: 0;
   width: 360px;
   max-width: 100%;
   background: #fff;
   display: flex;
   flex-direction: column;
   height: 100%;
   min-height: 100vh;
   padding: 30px 20px;
   transform: translateX(102%);
   transition: all 0.5s ease 0s;
   z-index: 999;
}

@media (max-width: 431px) {
   .menu__body {
      width: 100%;
   }
}

.menu__body.active {
   transform: translateX(0);
}

.menu__body-top {
   flex: 1;
   text-align: center;
   position: relative;
   padding-top: 30px;
}

.menu__body-close {
   width: 20px;
   height: 20px;
   position: absolute;
   top: 0;
   right: 0;
   cursor: pointer;
}

@media (hover: hover) {
   .menu__body-close:hover {
      opacity: 0.7;
   }
}

.menu__body-close img {
   width: 20px;
   height: 20px;
}

.menu__body-title {
   font-size: 20px;
   font-weight: 700;
   margin-bottom: 30px;
}

.menu__body-link {
   display: block;
   text-align: left;
   padding: 20px;
   color: #000;
   font-size: 18px;
   font-family: 'Work Sans';
}

@media (hover: hover) {
   .menu__body-link:hover {
      opacity: 0.6;
   }
}

.menu__body-footer {
   font-size: 12px;
   color: #000;
}

/*------------------------------HERO---------------------------*/
.hero {
   width: 100%;
   height: 100svh;
   position: relative;
   min-height: 600px;
   display: grid;
   align-items: center;
   justify-content: center;
}

.hero::after {
   content: "";
   display: block;
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(0deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0.5019607843));
}

.hero video {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   -o-object-fit: cover;
   object-fit: cover;
}

.hero__body {
   z-index: 4;
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 25px;
   flex-direction: column;
   z-index: 2;
}

.hero__title {
   text-align: center;
   color: #fff;
   text-transform: uppercase;
   letter-spacing: 3.6px;
   font-weight: 600;
   margin-top: 150px;
   font-size: 24px;
}

@media (max-width: 1320px) {
   .hero__title {
      font-size: calc(14px + 10 * (100vw - 320px) / 1000);
   }
}

.hero__subtitle {
   font-family: "Cormorant Garamond", serif;
   color: #fff;
   letter-spacing: -2.5px;
   line-height: 1;
   max-width: 860px;
   margin-inline: auto;
   text-align: center;
   font-style: italic;
   font-size: 80px;
   position: relative;
}

.hero__subtitle span {
   z-index: 2;
   position: relative;
   text-shadow: 10px 10px 5px #000;
}

.hero__subtitle::after {
   position: absolute;
   top: -20px;
   left: -20px;
   width: calc(100% + 40px);
   height: calc(100% + 40px);
   background-color: rgba(0, 0, 0, .5);
   border-radius: 20px;
}

@media (max-width: 1320px) {
   .hero__subtitle {
      font-size: calc(40px + 40 * (100vw - 320px) / 1000);
   }
}

.hero__description {
   text-align: center;
   color: #fff;
   max-width: 860px;
   margin-inline: auto;
   font-size: 18px;
}

@media (max-width: 1320px) {
   .hero__description {
      font-size: calc(16px + 2 * (100vw - 320px) / 1000);
   }
}

.second {
   background: #fff;
}

.second__body {
   padding: 5rem 0;
   display: flex;
   align-items: center;
   gap: 1.8rem;
}

@media (max-width: 767px) {
   .second__body {
      flex-direction: column;
      padding: 2.5rem 0;
   }
}

.second__text {
   flex: 0 1 50%;
}

@media (max-width: 767px) {
   .second__text {
      text-align: center;
   }
}

.second__title {
   letter-spacing: 2.4px;
   font-size: 16px;
   line-height: 1.18;
   text-transform: uppercase;
   font-weight: 500;
}

.second__subtitle {
   letter-spacing: -3px;
   color: rgb(23, 28, 34);
   font-family: "Cormorant Garamond", serif;
   font-style: italic;
   font-weight: 700;
   line-height: 1;
   font-size: 60px;
}

@media (max-width: 1320px) {
   .second__subtitle {
      font-size: calc(40px + 20 * (100vw - 320px) / 1000);
   }
}

.second__descriptions {
   max-width: 600px;
   margin-top: 1rem;
   display: flex;
   flex-direction: column;
   gap: 10px;
   margin-bottom: 16px;
}

.second__button {
   margin-top: 40px;
}

.second__button button {
   background: #f82121;
   padding: 15px 40px;
}

@media (hover: hover) {
   .second__button button:hover {
      border-color: #000;
   }
}

.second__image {
   flex: 0 1 50%;
   position: relative;
   padding: 55px 0 45px 0;
}

.second__image::after {
   content: "";
   display: block;
   position: absolute;
   top: 0;
   left: 50%;
   width: 80%;
   height: 100%;
   transform: translateX(-50%);
   background-color: #000;
}

.second__image img {
   width: 100%;
   z-index: 1;
   position: relative;
}

.second__image p {
   font-size: 18px;
   color: #fff;
   text-align: center;
   margin-top: 50px;
   position: relative;
   z-index: 1;
}

@media (max-width: 767px) {
   .second__image {
      padding: 0;
   }

   .second__image::after {
      display: none;
   }

   .second__image p {
      color: #000;
      margin-top: 20px;
   }
}

/*------------------------------third---------------------------*/
.third {
   background: #000;
}

.third__body {
   padding: 5rem 0;
}

@media (max-width: 767px) {
   .third__body {
      padding: 2.5rem 0;
   }
}

.third__title {
   color: #fff;
   text-align: center;
}

.third__subtitle {
   color: #fff;
   text-align: center;
   margin-bottom: 50px;
}

.third__top {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 40px;
}

.third__top .third__text {
   text-align: right;
   padding-right: 35px;
}

@media (max-width: 1000px) {
   .third__top .third__text {
      padding-right: 0;
   }
}

@media (max-width: 767px) {
   .third__top .third__text {
      text-align: center;
   }
}

.third__top .third__text .red {
   color: #f82121;
}

@media (max-width: 767px) {
   .third__top {
      flex-direction: column;
      margin-bottom: 40px;
      gap: 20px;
   }
}

.third__video {
   flex: 0 1 50%;
   display: flex;
   align-items: center;
   padding-left: 30px;
   gap: 130px;
}

.third__video .videoframe {
   width: 100%;
   max-width: 360px;
}

@media (max-width: 900px) {
   .third__video .videoframe {
      display: block;
   }
}

@media (max-width: 1000px) {
   .third__video {
      padding-left: 0;
   }
}

.third__video video {
   max-height: 400px;
}

@media (max-width: 900px) {
   .third__video img {
      display: none;
   }
}

.third__text {
   color: #fff;
}

.third__text p:not(:last-child) {
   margin-bottom: 20px;
}

@media (max-width: 767px) {
   .third__text {
      text-align: center;
   }

   .third__text p:not(:last-child) {
      margin-bottom: 10px;
   }
}

.third__mid {
   display: flex;
   align-items: center;
   justify-content: space-between;
   position: relative;
   padding-inline: 35px;
}

.third__mid::after {
   content: "";
   position: absolute;
   top: 50%;
   left: 0;
   width: 100%;
   height: 60%;
   transform: translateY(-50%);
   background: #fff;
}

.third__mid .third__text {
   color: #000;
   z-index: 1;
}

.third__mid .third__text h4 {
   font-size: 18px;
   font-weight: 700;
   margin-bottom: 20px;
}

.third__mid .third__text p {
   margin-bottom: 0;
}

.third__mid .third__img {
   z-index: 1;
   box-shadow: 0 0 35px rgba(0, 0, 0, 0.4);
}

.third__mid .third__img img {
   width: 100%;
   max-width: 400px;
}

@media (max-width: 767px) {
   .third__mid .third__img {
      box-shadow: none;
   }
}

@media (max-width: 767px) {
   .third__mid {
      flex-direction: column-reverse;
      padding: 20px 0;
      gap: 20px;
   }

   .third__mid::after {
      height: 100%;
      width: 100vw;
      left: -20px;
   }
}

.third__bottom {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 50px 35px;
}

@media (max-width: 767px) {
   .third__bottom {
      flex-direction: column;
      gap: 20px;
   }
}

.third__bottom .third__img img {
   max-width: 100%;
}

.third__bottom .third__text {
   text-align: right;
   flex: 1;
}

.third__bottom .third__text h4 {
   margin-bottom: 20px;
}

.third__bottom .third__text p {
   margin-bottom: 0;
}

.third__bottom .third__text img {
   margin-top: 60px;
}

@media (max-width: 767px) {
   .third__bottom .third__text {
      text-align: center;
   }

   .third__bottom .third__text img {
      margin-top: 50px;
   }
}

.third__footer {
   text-align: center;
   color: #fff;
   margin-top: 80px;
}

.third__footer p {
   max-width: 700px;
   margin-inline: auto;
}

.third__footer a {
   display: inline-block;
   margin-top: 40px;
}

@media (max-width: 767px) {
   .third__footer {
      margin-top: 0;
   }
}

.third__footer-line {
   display: flex !important;
   align-items: center;
   justify-content: center;
   gap: 10px;
   font-size: 20px;
   margin-top: 10px;
   margin-bottom: 20px;
   color: #fff;
}

.third__footer-line:hover {
   text-decoration: underline;
}

.third__footer-line img {
   width: 30px;
   height: 30px;
}

/*------------------------------SMI---------------------------*/
.smi {
   background: #fff;
}

.smi__body {
   padding: 5rem 0;
}

@media (max-width: 767px) {
   .smi__body {
      padding: 2.5rem 0;
   }
}

.smi__title {
   text-align: center;
   font-weight: 16;
   color: #000;
   font-weight: 600;
}

.smi__subtitle {
   text-align: center;
   font-size: 60px;
   font-weight: 700;
   line-height: 1.2;
   margin-bottom: 30px;
   font-family: "Cormorant Garamond", serif;
   font-style: italic;
   letter-spacing: -2px;
}

@media (max-width: 1320px) {
   .smi__subtitle {
      font-size: calc(40px + 20 * (100vw - 320px) / 1000);
   }
}

.smi__content {
   display: flex;
   justify-content: center;
   gap: 40px;
}

@media (max-width: 1000px) {
   .smi__content {
      flex-direction: column-reverse;
      align-items: center;
      text-align: center;
   }
}

.smi__text {
   flex: 0 1 60%;
   padding-left: 40px;
   font-weight: 500;
}

.smi__text p {
   max-width: 600px;
}

.smi__text p:not(:last-child) {
   margin-bottom: 20px;
}

@media (max-width: 1000px) {
   .smi__text {
      padding-left: 0;
   }
}

.smi__logos {
   flex: 0 1 40%;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   gap: 40px;
}

@media (max-width: 500px) {
   .smi__logos {
      gap: 20px;
   }
}

.smi__logo {
   transition: all 0.3s ease 0s;
}

@media (hover: hover) {
   .smi__logo:hover {
      opacity: 0.7;
   }
}

.smi__logo img {
   max-width: 100%;
}

.smi__logo-invert img {
   filter: invert(1);
}

.smi__buttons {
   margin-top: 40px;
   display: flex;
   align-items: center;
   gap: 20px;
}

.smi__buttons p {
   padding: 15px 40px;
   margin: 0 !important;
}

@media (max-width: 1000px) {
   .smi__buttons {
      justify-content: center;
   }
}

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

.smi__buttons .button:nth-child(1) {
   background: transparent;
   color: #000;
}

@media (hover: hover) {
   .smi__buttons .button:nth-child(1):hover {
      background-color: #000;
      color: #fff;
   }
}

.smi__buttons .button:nth-child(2) {
   background: #000;
   color: #fff;
}

@media (hover: hover) {
   .smi__buttons .button:nth-child(2):hover {
      background-color: #f82121;
      color: #fff;
   }
}

/*------------------------------Slider---------------------------*/
.parties {
   background: #fff;
   border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.parties__body {
   padding: 5rem 0;
}

@media (max-width: 767px) {
   .parties__body {
      padding: 2.5rem 0;
   }
}

.parties__title {
   text-align: center;
   font-size: 16px;
   color: #000;
   letter-spacing: 2.4px;
   line-height: 1.18;
   text-transform: uppercase;
   font-weight: 500;
}

.parties__subtitle {
   text-align: center;
   line-height: 1;
   color: #000;
   font-family: "Cormorant Garamond", serif;
   font-style: italic;
   font-size: 60px;
   font-weight: 600;
   letter-spacing: -3px;
}

.parties__subtitle span {
   font-size: 30px;
}

@media (max-width: 1320px) {
   .parties__subtitle {
      font-size: calc(40px + 20 * (100vw - 320px) / 1000);
   }
}

.parties__add-text {
   margin-top: 40px;
   text-align: center;
}

.parties__add-text a {
   color: #000;
}

.parties__add-text p {
   margin-bottom: 20px;
   max-width: 600px;
   margin-inline: auto;
}

.parties__add-text p:nth-child(1) {
   font-weight: 700;
}

.parties__link {
   text-align: center;
   margin: 40px 0 60px;
}

.parties__link button {
   border: 1px solid #000;
   color: #000;
   padding: 15px 40px;
   font-size: 19px;
   transition: all 0.3s ease 0s;
}

@media (hover: hover) {
   .parties__link button:hover {
      background: rgba(0, 0, 0, 0.3490196078);
      color: #fff;
      border-color: transparent;
   }
}

@media (max-width: 767px) {
   .parties__link {
      margin: 30px 0;
   }
}

.parties__slider {
   width: 100%;
   -webkit-user-select: none;
   -moz-user-select: none;
   user-select: none;
}

.parties__slider-wrapper {
   width: 100%;
   display: grid;
   grid-template-columns: 1fr 1fr 1fr 1fr;
   gap: 20px;
}

.parties__slide {
   position: relative;
   aspect-ratio: 1;
   border-radius: 20px;
   overflow: hidden;
   cursor: pointer;
}

@media (hover: hover) {
   .parties__slide:hover img {
      transform: scale(1.05);
   }
}

.parties__slide::after {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(rgba(0, 0, 0, 0) 42.32%, rgba(0, 0, 0, 0.9) 100%) center center/cover;
   z-index: 2;
}

.parties__slide img {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   -o-object-fit: cover;
   object-fit: cover;
   z-index: 1;
   transition: all 0.3s ease 0s;
}

.parties__slide-text {
   padding: 1.25rem;
   position: absolute;
   bottom: 0;
   left: 0;
   width: 100%;
   z-index: 3;
   border-radius: 20px;
   overflow: hidden;
}

.parties__slide-name {
   color: #fff;
   letter-spacing: -1px;
   line-height: 0.94;
   font-style: italic;
   font-weight: 700;
   text-transform: capitalize;
   font-size: 33px;
   font-family: "Cormorant Garamond", serif;
   margin-bottom: 1rem;
}


.parties__slide-loc {
   color: #fff;
   display: flex;
   align-items: center;
   gap: 6px;
   white-space: nowrap;
   letter-spacing: -0.75px;
   font-weight: 500;
   font-size: 15px;
}

.parties__slide-loc img {
   width: 16px;
   height: 16px;
   -o-object-fit: contain;
   object-fit: contain;
   position: static;
}

.parties__slide-date {
   position: absolute;
   top: 1.25rem;
   z-index: 3;
   right: 1.25rem;
   width: 50px;
   height: 46px;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   border-radius: 0.5rem;
   background: #fff;
}

.parties__slide-date span {
   color: rgb(220, 38, 38);
   line-height: 1;
   font-weight: 700;
   font-size: 10px;
   text-align: center;
}

.parties__slide-date p {
   color: #18181b;
   line-height: 1;
   font-weight: 600;
   font-size: 25px;
   text-align: center;
}

@media (max-width: 1000px) {
   .parties__slider-wrapper {
      grid-template-columns: 1fr 1fr;
      gap: 10px;
   }
}

@media (max-width: 600px) {
   .parties__slide-name {
      font-size: 16px;
      margin-bottom: 5px;
   }

   .parties__slide {
      aspect-ratio: 1/1.3;
   }

   .parties__slide-text {
      padding: 10px;
   }

   .parties__slide-date {
      top: 10px;
      right: 10px;
      width: 40px;
      height: 38px;
   }

   .parties__slide-date p {
      font-size: 20px;
   }
}

.swiper-actions {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 20px;
   margin-top: 50px;
   max-width: 24rem;
   margin-inline: auto;
}

@media (max-width: 767px) {
   .swiper-actions {
      margin-top: 25px;
   }
}

.swiper-prev,
.swiper-next {
   position: relative;
   z-index: 11;
   padding: 5px;
   -webkit-user-select: none;
   -moz-user-select: none;
   user-select: none;
   transition: all 0.3s ease 0s;
}

.swiper-prev:active,
.swiper-next:active {
   transform: scale(0.9);
}

.swiper-prev.swiper-button-disabled,
.swiper-next.swiper-button-disabled {
   opacity: 0.5;
}

@media (hover: hover) {
   .swiper-prev:not(.swiper-button-disabled):hover {
      transform: translateX(-3px);
      cursor: pointer;
   }
}

@media (hover: hover) {
   .swiper-next:not(.swiper-button-disabled):hover {
      transform: translateX(3px);
      cursor: pointer;
   }
}

.swiper-pagination-bullet {
   width: 10px;
   height: 10px;
   background-color: #fff;
   border: 2px solid #000;
   opacity: 1;
}

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

/*------------------------------footer---------------------------*/
.footer {
   border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer__body {
   padding: 70px 0 40px;
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
   gap: 20px;
   margin-bottom: 80px;
}

@media (max-width: 767px) {
   .footer__body {
      flex-direction: column;
      align-items: center;
      padding: 30px 0;
      margin-bottom: 10px;
   }
}

.footer__left {
   display: flex;
   align-items: flex-start;
   gap: 90px;
}

@media (max-width: 767px) {
   .footer__left {
      flex-direction: column;
      align-items: center;
      gap: 20px;
      text-align: center;
   }
}

.footer__logo {
   display: block;
   width: 55px;
   height: 55px;
}

.footer__logo img {
   width: 100%;
   height: 100%;
   -o-object-fit: contain;
   object-fit: contain;
}

@media (max-width: 500px) {
   .footer__logo {
      width: 36px;
      height: 36px;
   }
}

.footer__title {
   letter-spacing: -1.4px;
   font-style: italic;
   font-weight: 600;
   font-family: "Cormorant Garamond", serif;
   font-size: 28px;
   margin-bottom: 5px;
   line-height: 1;
}

.footer__newsletter {
   letter-spacing: -0.8px;
   line-height: 1.63;
   font-size: 16px;
   color: #738a9c;
}

.footer__button {
   padding: 15px 0px;
}

.footer__button .button {
   background-color: #000;
   padding: 15px 40px;
   margin-top: 15px;
}

@media (hover: hover) {
   .footer__button .button:hover {
      background: rgba(0, 0, 0, 0.3490196078);
      color: #fff;
      border-color: transparent;
   }
}

.footer__socials {
   margin-top: 25px;
   display: flex;
   align-items: center;
   justify-content: start;
   gap: 7px;
}

@media (max-width: 767px) {
   .footer__socials {
      justify-content: center;
      margin-bottom: 10px;
   }
}

.footer__social {
   color: #000;
   transition: all 0.3s ease 0s;
   width: 32px;
   height: 32px;
}

.footer__social img {
   width: 100%;
   height: 100%;
   object-fit: contain;
}

@media (hover: hover) {
   .footer__social:hover {
      opacity: 0.7;
   }
}

.footer__social:active {
   transform: scale(0.8);
}

.footer__nav {
   display: flex;
   gap: 60px;
}

.footer__nav-col p {
   letter-spacing: 2.25px;
   line-height: 1.67;
   text-transform: uppercase;
   font-weight: 500;
   font-size: 15px;
   margin-bottom: 0.75rem;
}

@media (max-width: 500px) {
   .footer__nav-col p {
      margin-bottom: 10px;
   }
}

.footer__link {
   color: #000;
   background: transparent;
   font-family: "Work Sans";
   line-height: 1.67;
   font-size: 16px;
}

@media (hover: hover) {
   .footer__link:hover {
      opacity: 0.7;
   }
}

.footer__bottom {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding-bottom: 40px;
}

.footer__bottom p {
   letter-spacing: -0.7px;
   line-height: 1.69;
   text-transform: uppercase;
   font-size: 14px;
   color: #738a9c;
}

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

   .footer__bottom p {
      text-align: center;
      margin-bottom: 10px;
   }
}

.footer__lang {
   max-width: 180px;
   padding: 7px 14px;
   border: 1px solid #000;
   border-radius: 20px;
   width: 100%;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: space-between;
   position: relative;
   cursor: pointer;
}

.footer__lang.open {
   border-radius: 0 0 20px 20px;
   border-top-color: transparent;
}

.footer__lang.open .footer__lang-list {
   display: block;
   border-bottom-color: transparent;
}

.footer__lang-list {
   display: none;
   position: absolute;
   bottom: 100%;
   width: 100%;
   border-radius: 20px 20px 0 0;
   border: 1px solid #000;
   overflow: hidden;
   min-width: 180px;
}

.footer__lang-list li {
   padding: 6px 14px;
   background: #f7f7f7;
}

@media (hover: hover) {
   .footer__lang-list li:hover {
      background: rgba(0, 0, 0, 0.1019607843);
   }
}

.footer__lang-icon {
   width: 20px;
   margin-right: 8px;
   height: 15px;
}

.footer__lang-icon img {
   width: 20px;
   height: 15px;
   -o-object-fit: contain;
   object-fit: contain;
}

.footer__lang-arrow {
   width: 12px;
   height: 12px;
}

.footer__lang-arrow img {
   width: 12px;
   height: 12px;
   -o-object-fit: contain;
   object-fit: contain;
}

.lang-row {
   display: flex;
   align-items: center;
   justify-content: space-between;
   width: 100%;
}

.lang-row a {
   width: 100%;
   display: flex;
   align-items: center;
   color: #000;
}

.lang-row span {
   display: inline-block;
   flex: 1;
   margin-right: auto;
}

/*------------------------------MODAL---------------------------*/
.modal {
   background: rgba(0, 0, 0, 0.4);
   -webkit-backdrop-filter: blur(3px);
   backdrop-filter: blur(3px);
   position: fixed;
   z-index: 999;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   display: none;
   align-items: center;
   justify-content: center;
   max-height: 100vh;
   overflow-y: auto;
}

.modal.show {
   display: grid;
}

.modal.show .modal__body {
   animation: showin 0.5s ease 0s forwards;
}

.modal__body {
   width: min(450px, 100% - 32px);
   height: auto;
   border-radius: 20px;
   overflow: hidden;
   position: relative;
   text-align: center;
   margin-inline: auto;
   box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
   opacity: 0;
   transform: scale(0.5);
}

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

.modal__title {
   color: rgb(33, 40, 46);
   font-size: 20px;
   line-height: 1.5;
   font-weight: 600;
   background: #fff;
   padding: 20px;
}

.modal__text {
   color: rgb(33, 40, 46);
   font-size: 16px;
   line-height: 1.5;
   padding-inline: 20px;
   font-weight: 500;
   background: #fff;
   padding-bottom: 20px;
}

.modal__button {
   background: #fff;
   padding: 30px;
}

.modal__button .button {
   background: #000;
   color: #fff;
   padding: 15px 40px;
}

@media (hover: hover) {
   .modal__button .button:hover {
      background-color: rgba(0, 0, 0, 0.5019607843);
   }
}

.modal__close {
   position: absolute;
   top: 20px;
   right: 20px;
   z-index: 2;
   width: 30px;
   height: 30px;
   transition: all 0.3s ease 0s;
   cursor: pointer;
}

.modal__close img {
   filter: invert(1);
   width: 30px;
   height: 30px;
}

@media (hover: hover) {
   .modal__close:hover {
      transform: scale(1.1);
   }
}

@keyframes showin {
   0% {
      opacity: 0;
      transform: scale(0.5);
   }

   100% {
      opacity: 1;
      transform: scale(1);
   }
}

@media (max-width: 500px) {
   .header__buttons {
      flex: 0 1 auto;
   }

   .footer__newsletter {
      margin-bottom: 20px;
   }

   .smi__logos {
      margin-bottom: 20px;
   }
}

.lg-backdrop {
   background-color: rgba(0, 0, 0, 0.8) !important;
   -webkit-backdrop-filter: blur(3px);
   backdrop-filter: blur(3px);
}


.popup {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   -webkit-backface-visibility: hidden;
   -moz-backface-visibility: hidden;
   -webkit-transform: translate3d(0, 0, 0);
   -moz-transform: translate3d(0, 0, 0);
   -webkit-backdrop-filter: blur(30px);
   backdrop-filter: blur(30px);
   background: rgba(0, 0, 0, .95);
   z-index: 999;
   max-height: 100vh;
   max-height: 0;
   transition: all 0.5s ease 0s;
   opacity: 0;
   pointer-events: none;
}

.popup.opened {
   display: block;
   overflow-y: auto;
   max-height: 100vh;
   opacity: 1;
   pointer-events: all;
}

.popup__body {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 346px;
   height: 100%;
   padding: 30px 0;
}

@media (max-width: 380px) {
   .popup__body {
      width: calc(100% - 40px);
   }
}

.popup__close {
   position: absolute;
   top: 20px;
   right: 20px;
   z-index: 2;
   width: 30px;
   height: 30px;
   transition: all 0.3s ease 0s;
   cursor: pointer;
}

.popup__close img {
   filter: invert(1);
   width: 30px;
   height: 30px;
}

@media (hover: hover) {
   .popup__close:hover {
      transform: scale(1.1);
   }
}

.popup__title {
   color: #fff;
   margin-bottom: 10px;
   padding-top: 20px;
   font-size: 26px;
   letter-spacing: -2px;
   line-height: 50px;
   margin-bottom: 20px;
   margin-top: 40px;
   text-align: center;
}

.popup__form {
   display: flex;
   flex-direction: column;
   height: calc(100% - 250px);
}



.popup__form.loading .loading-icon {
   display: block;
}

.popup__form.loading {
   opacity: 0.5;
   pointer-events: none;
}

/* .popup__form.loading::after {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(255, 255, 255, .3);
   backdrop-filter: blur(10px);
} */

.popup__form.sended .loading-icon {
   display: none;
}

.popup__form.sended .sended-message {
   display: block;
}

.popup__form.sended .popup__form-item {
   opacity: 0;
}

.popup__form-body {
   flex: 1;
   display: flex;
   flex-direction: column;
   justify-content: center;
   position: relative;
}

.loading-icon {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 40px;
   height: 40px;
   display: none;
}

.loading-icon span {
   display: block;
   width: 40px;
   height: 40px;
   border-radius: 50%;
   border-top: 4px solid rgba(255, 255, 255, 0);
   border-right: 4px solid rgba(255, 255, 255, 0.4);
   border-bottom: 4px solid rgba(255, 255, 255, 0.4);
   border-left: 4px solid rgba(255, 255, 255, 0.4);
   animation: loading 1s linear 0s infinite;
}

@keyframes loading {
   to {
      transform: rotate(360deg);
   }
}

.sended-message {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 100%;
   height: auto;
   text-align: center;
   font-size: 20px;
   color: #fff;
   display: none;
}

.popup__form-item {
   display: flex;
   align-items: center;
   gap: 10px;
   border-bottom: 1px solid #cbd0d7 !important;
}

.popup__form-item:not(:last-child) {
   margin-bottom: 10px;
}

.popup__form-item input {
   font-size: 20px;
   letter-spacing: -1px;
   line-height: 30px;
   border-radius: 0;
   background-color: transparent;
   font-family: "Work Sans";
   background: none !important;
   border: 0 !important;
   padding: 10px 16px;
   color: #fff;
}

.popup__form-item input::placeholder {
   color: #9b9a9b;
}

.popup__form-icon {
   flex: 0 0 18px;
   display: flex;
   align-items: center;
}

.popup__form-icon img {
   width: 100%;
   height: 100%;
   object-fit: contain;
}

.popup__form-slogan {
   color: #fff;
   padding: 10px;
   color: #fff;
   font-weight: 600;
   font-size: 14px;
   text-align: center;
}

.popup__form-socials {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
}


.popup__form-socials a {
   width: 30px;
   height: 30px;
   transition: all 0.3s ease 0s;
}

.popup__form-socials a:hover {
   transform: scale(1.1);
}

.popup__form-socials a img {
   width: 100%;
   height: 100%;
   object-fit: contain;
}

.popup__form-socials a:first-child img {
   width: 28px;
   height: 28px;
}

.popup__form .button {
   width: 100%;
   margin-top: 20px;
}