/* Reset and base styles  */

* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

/* Links */

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

a:hover {
  text-decoration: none;
}

/* Common */

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

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

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

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

button,
input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

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

label {
  cursor: pointer;
}

legend {
  display: block;
}

@font-face {
  font-family: Roboto-Medium;
  src: url("../fonts/Roboto-Medium.ttf");
}

@font-face {
  font-family: Roboto-Regular;
  src: url("../fonts/Roboto-Regular.ttf");
}

@font-face {
  font-family: SemiCondensed;
  src: url("../fonts/3270semicondensed.ttf");
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: #191919;
  font-variant-numeric: lining-nums;
  font-family: Roboto-Regular;
  color: #fff;
}

img {
  pointer-events: none;
}

.container {
  width: 85vw;
  max-width: 1283px;
  margin: 0 auto;
}

h1,
h2 {
  font-family: SemiCondensed;
  font-size: clamp(46px, 4.6vw, 70px);
}

.header {
  padding-top: 50px;
  position: relative;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  gap: 2px;
}

.lang-switch__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  padding: 6px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.lang-switch__btn:hover,
.lang-switch__btn:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  outline: none;
}

.lang-switch__btn--active {
  color: #0f3443;
  background: #fff;
  border-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.lang-switch__btn--active:hover,
.lang-switch__btn--active:focus-visible {
  color: #0f3443;
  background: #fff;
}


.header__burger-menu {
  /* background-color: #79C1DC; */
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  display: none;
}

#burger_menu {
  z-index: 100;
  width: 26px;
  height: 23px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.4s ease-in-out;
  cursor: pointer;
}

#burger_menu span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #FFFFFF;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

#burger_menu span:nth-child(1) {
  top: 0px;
}

#burger_menu span:nth-child(2),
#burger_menu span:nth-child(3) {
  top: 10px;
}

#burger_menu span:nth-child(4) {
  top: 20px;
}

#burger_menu.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

#burger_menu.open span:nth-child(2) {
  transform: rotate(45deg);
}

#burger_menu.open span:nth-child(3) {
  transform: rotate(-45deg);
}

#burger_menu.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.header > img {
  position: absolute;
  right: 0;
  top: 0;
}

.header nav ul {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.header nav ul li a {
  color: #fff;
}

.header nav ul li a.active {
  padding: 6px 34px;
  border-radius: 30px;
  border: 1px solid #fff;
}

.footer {
  padding: 15px 0;
  border-top: 1px solid #fff;
}

.footer .footer__inner {
  display: flex;
  align-items: center;
  gap: 200px;
  justify-content: flex-end;
}

.footer .footer__inner nav ul {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.footer .footer__inner nav ul li a {
  color: #fff;
}

.footer .footer__contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.footer .footer__contacts a {
  color: #fff;
  font-family: Roboto-Regular;
  font-size: 15px;
  text-transform: uppercase;
}

.offer {
  position: relative;
}

.offer > img {
  max-height: 733px;
  position: absolute;
  left: 0;
  top: 224px;
}

.bg__img {
  position: absolute;
  /* top: -20px !important; */
  height: 90%;
  left: -200px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

.offer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 46px;
  height: 88vh;
}

.offer__inner img {
  max-width: 354px;
  width: 23.4vw;
}

.offer__text {
  color: #fff;
}

.offer__text h1 {
  margin-bottom: 50px;
}

.offer__text p {
  max-width: 488px;
  font-family: Roboto-Regular;
  font-size: 20px;
}

.features__inner {
  margin-bottom: 200px;
}

.features__inner h2 {
  margin-bottom: 40px;
  max-width: 500px;
}

.features__inner .features__cards {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 24px;
}

.features__inner .features__cards > img:nth-child(1) {
  max-width: 700px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.features__inner .features__cards > img:nth-child(2) {
  position: absolute;
  left: -80px;
  top: -40px;
}

.features__inner .features__cards .features__card {
  flex: 1;
  padding: 50px;
  border-radius: 66px;
  -webkit-backdrop-filter: blur(100px);
  backdrop-filter: blur(100px);
  box-shadow: inset 0 0 70px 0 rgba(255, 255, 255, 0.05), inset 0 4px 4px 0 rgba(255, 255, 255, 0);
  background: rgba(75, 75, 75, 0.1);
}

.features__inner .features__cards .features__card h3 {
  font-size: clamp(26px, 2.6vw, 40px);
  font-family: Roboto-Medium;
  margin-bottom: 35px;
}

.features__inner .features__cards .features__card p {
  font-size: clamp(12px, 1.1vw, 18px);
  font-family: Roboto-Regular;
  line-height: 146%;
}

.features__inner .features__cards .features__card ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
  padding-left: 20px;
}

.features__inner .features__cards .features__card ul li {
  padding-left: 20px;
  list-style-type: disc;
  font-size: clamp(14px, 1.45vw, 22px);
}

.projects__inner {
  /* margin-bottom: 400px; */
  margin-bottom: 200px;
}

.structure__inner {
  margin-bottom: 400px;
}

.projects__inner h2 {
  margin-bottom: 50px;
  max-width: 200px;
}

.projects__inner .projects__cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}



.projects__inner .projects__card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 68px;
  -webkit-backdrop-filter: blur(100px);
  backdrop-filter: blur(100px);
  box-shadow: inset 0 0 70px 0 rgba(255, 255, 255, 0.05), inset 0 4px 4px 0 rgba(255, 255, 255, 0);
  background: rgba(75, 75, 75, 0.1);
  border-radius: 66px;
}

.projects__inner .structure_cards .projects__card {
  flex-direction: row-reverse;
}

.projects__inner .projects__card .projects__cards-bg:nth-child(1) {
  position: absolute;
  left: 0;
}

.projects__inner .projects__card .projects__cards-bg:nth-child(2) {
  position: absolute;
  left: 278px;
  bottom: -137px;
}

.projects__inner .projects__card .projects__cards-bg:nth-child(3) {
  position: absolute;
  right: -111px;
  top: -200px;
}

.projects__inner .projects__card h3 {
  position: relative;
  font-size: clamp(26px, 2.6vw, 40px);
  font-family: Roboto-Medium;
  margin-bottom: 25px;
}

.projects__inner .projects__card p {
  position: relative;
  font-size: clamp(12px, 1.1vw, 18px);
  font-family: Roboto-Regular;
  line-height: 146%;
  margin-bottom: 50px;
}

.projects__inner .projects__card a {
  position: relative;
  color: #fff;
  padding: 15px 97px;
  border-radius: 47px;
  background-color: #6647F5;
  display: inline-block;
}

.projects__inner .projects__card .projects__card-img {
  position: relative;
  max-width: none;
  border-radius: 30px;
  max-width: 430px;
}

.contacts {
  position: relative;
}

.contacts > img:nth-child(1) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.contacts > img:nth-child(2) {
  position: absolute;
  top: 50%;
  right: -50%;
  transform: translate(-50%, -50%);
}

.contacts__inner {
  position: relative;
  margin-bottom: 140px;
}

.contacts__inner h2 {
  margin-bottom: 50px;
}

.contacts__inner .contacts__card {
  display: flex;
  align-items: stretch;
  gap: 60px;
  box-shadow: inset 0 0 70px 0 rgba(255, 255, 255, 0.05), inset 0 4px 4px 0 rgba(255, 255, 255, 0);
  background: rgba(75, 75, 75, 0.1);
  border-radius: 66px;
  padding: 68px;
}

.contacts__inner .contacts__card-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.contacts__inner .contacts__card-info-block {
  max-width: 400px;
}

.contacts__inner .contacts__card-info-block h4 {
  font-size: clamp(26px, 2.6vw, 40px);
  font-family: Roboto-Medium;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.contacts__inner .contacts__card-info-block a {
  font-size: clamp(16px, 1.6vw, 25px);
  text-transform: uppercase;
  color: #fff;
}

.contacts__inner .map {
  width: 557px;
  height: 471px;
  border-radius: 50px;
}



.cooperation__inner form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    box-shadow: inset 0 0 70px 0 rgba(255, 255, 255, 0.05), inset 0 4px 4px 0 rgba(255, 255, 255, 0);
    background: rgba(75, 75, 75, 0.1);
    border-radius: 66px;
    padding: 68px;
}

.cooperation__inner form input {
  padding: 15px 30px;
  border-radius: 60px;
  background-color: #fff;
  color: #000;
  width: 100%;
}

.cooperation__inner form button, 
.cooperation__inner form input[type="submit"] {
  position: relative;
  color: #fff;
  padding: 15px 97px;
  border-radius: 47px;
  background-color: #6647F5;
  display: inline-block;
  text-align: center;
  display: block;
  /* text-align: center; */
  max-width: 320px;
  margin: 0 auto;
  margin-top: 40px;
}



.project-page .offer__text p {
  max-width: 652px;
}

.project-page .projects__inner {
  margin-bottom: 180px;
}

.contacts-page .contacts {
  margin-top: 150px;
}

.projects-page .projects {
  margin-top: 150px;
}

.projects-page .projects__inner .projects__card {
  align-items: stretch;
}

.projects-page .projects__inner .projects__card a {
  display: inline-block;
  margin-top: auto;
}

.projects-page .projects__card-info h3 {
  margin-bottom: 13px !important;
}

.projects-page .projects__card-info p:nth-child(2) {
  position: relative;
  font-size: clamp(12px, 1.1vw, 18px);
  font-family: Roboto-Regular;
  line-height: 146%;
  margin-bottom: 40px;
}

.event-page .event__inner {
  margin-top: 100px;
  margin-bottom: 140px;
  position: relative;
  padding: 68px;
  -webkit-backdrop-filter: blur(100px);
  backdrop-filter: blur(100px);
  box-shadow: inset 0 0 70px 0 rgba(255, 255, 255, 0.05), inset 0 4px 4px 0 rgba(255, 255, 255, 0);
  background: rgba(75, 75, 75, 0.1);
  border-radius: 66px;

}

.event-page .event__imgs {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.event-page .event__imgs img {
  max-width: 430px;
}

.event-page .event__content {
 
}

.event-page .event__content h1 {
  margin-bottom: 15px;
}

.event-page .event__content p {
  font-family: Roboto-Regular;
  font-size: 18px;
  line-height: 164%;
  margin-bottom: 27px;
  letter-spacing: 8%;
}

.event-page .event__content li {
  font-family: Roboto-Regular;
  font-size: 18px;
  line-height: 164%;
  letter-spacing: 8%;
  margin-left: 2rem;
  list-style-type: disc;
}

.event-page .event__content a {
  color: #6647F5;
  text-decoration: underline;
  font-family: Roboto-Regular;
  font-size: 18px;
  line-height: 164%;
  margin-bottom: 27px;
  letter-spacing: 8%;
}

.button {
  text-decoration: none !important;
}

.pdf_btn {

  margin-bottom: 0 !important;

}

.pdf__download {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pdf__download:not(:last-child) {
	margin-bottom: 12px;
}

.event-page .event__content p p:last-child {
  margin-bottom: 0;
}

.event-page .event__content .button {
  position: relative;
  color: #fff;
  padding: 15px 97px;
  border-radius: 47px;
  background-color: #6647F5;
  display: inline-block;
  margin-top: 80px;
}

.event-page .event__content .event__date {
  margin-bottom: 40px;
  font-family: Roboto-Medium;
  font-size: 22px;
}

@media only screen and (max-width: 1100px) {
  .event-page .event__inner {
    flex-direction: column-reverse;
  }
}


@media only screen and (max-width: 950px) {

  .footer .footer__inner {
    align-items: flex-start;
    gap: 25px;
    justify-content: space-between;
    flex-direction: column;
  }

  .footer .footer__inner nav ul {
    align-items: flex-start;
    justify-content: center;
    gap: 15px;
    flex-direction: column;

  }

  .footer .footer__contacts {
    align-items: flex-start;
  }

  /* .team__item h3 {
    font-size: 18px;
  }

  .team__item p {
    font-size: 14px;
  } */

  .team__items {
    flex-direction: column;
  }

  .team__item  {

    flex-direction: row !important;
    width: 100%;
    justify-content: space-between;
    gap: 20px;
  }

  .team-page .team__item {
  width: 100% !important;
  }

  .team__item img {
    max-width: 300px;
    margin-bottom: 0 !important;
  }
}

.team__inner {
  margin-bottom: 200px;
}

.team__inner h2 {
  margin-bottom: 50px;
}

.team__items {
  display: flex;
  align-items: center;
  gap: 20px;
}

.team__items+a {
  position: relative;
  color: #fff;
  padding: 15px 97px;
  border-radius: 47px;
  background-color: #6647F5;
  display: inline-block;
  text-align: center;
  display: block;
  /* text-align: center; */
  max-width: 320px;
  margin: 0 auto;
  margin-top: 40px;
}

.team__item {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  -webkit-backdrop-filter: blur(100px);
  backdrop-filter: blur(100px);
  box-shadow: inset 0 0 70px 0 rgba(255, 255, 255, 0.05), inset 0 4px 4px 0 rgba(255, 255, 255, 0);
  background: rgba(75, 75, 75, 0.1);
  border-radius: 30px;
}

.team__item img {
  border-radius: 30px;
  margin-bottom: 20px;
}

.team__item h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}

.team__item p {
  text-align: center;
}


@media only screen and (max-width: 800px) {
  .offer__inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 46px;
    height: auto;
    margin-top: 100px;
    margin-bottom: 100px;
  }

  .offer__inner img {
    width: 30vw;
  }


  .features__inner .features__cards > img {
    display: none;
  }

  .features__inner .features__cards {
    flex-direction: column;
  }

  .projects__inner .projects__card .projects__cards-bg {
    display: none;
  }

  .projects__inner .projects__card,
  .projects__inner .structure_cards .projects__card {
    flex-direction: column-reverse;
    padding: 30px 20px;
    border-radius: 15px;
  }

  .projects__inner .projects__card .projects__card-img {
    width: 100%;
    border-radius: 20px;
  }

  .contacts__inner .contacts__card {
    flex-direction: column;
    padding: 50px 20px 20px;
    border-radius: 30px;
  }

  .contacts__inner .map {
    text-align: center;
    width: 100%;
    border-radius: 30px;
  }

  .contacts__inner .map iframe {
    width: 100%;
    border-radius: 30px !important;
  }

  .features__inner .features__cards .features__card {
    padding: 30px 20px 50px;
    border-radius: 25px;
  }

  .features__inner .features__cards .features__card h3 {
    margin-bottom: 30px;
    font-size: 20px;
  }
  
  .features__inner .features__cards .features__card p {
    font-size: 14px;
  }
  
  .bg__img {
    position: absolute;
    height: 100%;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    left: 50% !important;
  }

  .gallerySlider img {
    width: 100% !important;
  }
  

  

}

@media only screen and (max-width: 750px) {
  .team__item img {
    max-width: 250px;
    margin-bottom: 0 !important;
  }
}




@media only screen and (max-width: 600px) {
  .cooperation__inner form {
    padding: 50px 20px 20px;
    border-radius: 30px;
  }

  .team__item {
    padding: 20px;
  }

  .team__item img {
    max-width: 200px;
    margin-bottom: 0 !important;
  }
  /* header {
    display: none;
  } */

  .header__burger-menu {
    display: flex;
    justify-content: flex-start;
    position: relative;
    top: -20px;
    left: 0px;
    width: auto;
    height: auto;
  }

  .header nav {
    width: 100%;
    border-radius: 30px;
    background-color: #4a4a4a1a;
    border-radius: 30px;
    box-shadow: inset 0px 0px 70px #ffffff0d, inset 0px 4px 4px transparent;
    backdrop-filter: blur(100px) brightness(100%);
    -webkit-backdrop-filter: blur(100px) brightness(100%);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 616px;
    transform: translateX(-100vw);
    transition: all .3s ease;
    position: absolute;
    left: 0;
    top: 150px;
    z-index: 100;
  }

  .header nav.open {
    transform: translateX(0);
    transition: all .3s ease;
  }

  .header__nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .lang-switch {
    position: static;
    transform: none;
    margin-left: auto;
  }

  .header__inner {
    justify-content: space-between;
  }


  .container {
    width: 100%;
    padding: 0 15px;
  }

  .offer__text h1 {
    font-size: 40px;
    margin-bottom: 40px;
  }

  .offer__text p {
    font-size: 16px;
  }

  .offer__inner img {
    width: 285px;
  }

  .features__inner {
    margin-bottom: 150px;
  }

  .projects__inner .projects__cards {
    gap: 40px;
  }

  .projects__inner {
    margin-bottom: 200px;
  }

  .contacts__inner {
    margin-bottom: 70px;
  }

  .footer .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }

  .footer .footer__inner nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    font-size: 16px;
  }

  .footer .footer__contacts {
    align-items: flex-start;
  }

  .event-page .event__inner {
    padding: 35px 20px;
    border-radius: 15px;
  }

  .event__imgs {
    width: 100%;
  }

  .event-page .event__imgs img {
    max-width: none;
  }

  .event-page .event__content p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .event-page .event__content .button {
    max-width: 100%;
    width: 100%;
    padding: 15px 0;
    text-align: center;
  }

  .event-page .event__content h1 {
    font-size: 34px;
  }

  .event-page .event__content .event__date {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .bg__img {
    top: 100px !important;
  }

  
}

.event__content h2 {
  margin-bottom: 20px;
}


.gallerySlider--pagination-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.gallerySlider-prev,
.gallerySlider-next {
  width: 48px;
  height: 48px;
  border-radius: 100%;
  background-color: #6647F5;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.gallerySlider-pagination {
  text-align: center;
}


.project__logo img {
  max-width: 700px;
  width: 80vw;
}



@media only screen and (max-width: 460px) {
  .team__item {
    flex-direction: column !important;
  }

  .team__item img {
    width: 100% !important;
    max-width: none;
  }


}

.team-page .team {
  margin-top: 150px;
}

.team-page .team__items {
  flex-wrap: wrap !important;
}

.team-page .team__item {
  width: calc((100% - 40px) / 3);
  flex: none;
}