@charset "UTF-8";
body {
  background: #f7f8ff;
}

.container {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

.button {
  display: flex;
  flex-direction: row;
  max-width: 100%;
  min-width: auto;
  justify-content: space-between;
  align-items: center;
  background: var(--orange, #ff6002);
  border-radius: 10px;
  padding: 6px 6px 6px 20px;
  height: auto;
  transition: background-color 0.3s ease;
}
.button span {
  color: #fffbf9;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.button--gap-10 {
  gap: 10px;
}
.button--justify-content-space-between {
  justify-content: space-between;
}
.button--w-500px {
  max-width: 500px;
  width: 100%;
}
.button--max-height-54px {
  max-height: 54px;
}
.button:hover {
  background: #ff8137;
}

header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  /* gap: 32.5px; */
  margin-top: 20px;
  background: var(--black, #333333);
  border-radius: 20px;
  padding: 10px;
  justify-content: space-between;
}
header a {
  color: var(--white, #fbfbfb);
  font-family: var(--p2-font-family, "Manrope", sans-serif);
  font-size: var(--p2-font-size, 14px);
  line-height: var(--p2-line-height, 140%);
  font-weight: var(--p2-font-weight, 400);
  align-self: stretch;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
header nav a {
  font-size: 16px;
  color: var(--gray, #c3bcbc);
  transition: color 0.3s ease;
}
header nav a:hover {
  color: white;
  text-decoration: underline;
}
header .logo {
  width: 90px;
  height: 54px;
  border-radius: 10px;
  overflow: hidden;
}
header .logo img {
  width: 100%;
  height: 100%;
}

.contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: initial;
  justify-content: space-between;
}
.contact__item {
  max-width: 220px;
  width: auto;
}
.contact__item a {
  display: flex;
  flex-direction: row;
  gap: 8px;
  text-decoration: none;
}

.burger-menu {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: #FF6002;
  gap: 6px;
  cursor: pointer;
}
.burger-menu span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: white;
}

#map {
  width: 66%;
  height: auto;
  background-repeat: no-repeat !important;
  background-size: 100% 100% !important;
  border-radius: 10px;
}

#main-screen {
  position: relative;
  padding-bottom: 313px;
  padding-top: 20px;
  /* background: url(/wp-content/themes/skds/assets/images/main-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center; */
}
#main-screen header {
  margin-top: 0;
  background: rgba(51, 51, 51, 0.1);
  box-shadow: 0px 0px 15px 0px #000000;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
#main-screen video#main-screen-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(-50%, -50%);
  /* z-index: 0; */
  z-index: -1;
}
/* #main-screen .container{
  position: relative;
  z-index: 2;
} */

.main-screen__info {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  margin-top: 205px;
}
.main-screen__title {
  color: #fbfbfb;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.875rem, 2.0833333333vw + 1.4583333333rem, 3.125rem);
  line-height: 120%;
  font-weight: 700;
  text-transform: uppercase;
}
.main-screen__description {
  color: var(--white, #fbfbfb);
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.875rem, 0.2083333333vw + 0.8333333333rem, 1rem);
  line-height: 140%;
  font-weight: 500;
}

#advantages {
  margin-top: 91px;
}
#advantages .container {
  display: flex;
  flex-direction: column;
}

.advantages__icon {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #ff6002;
}
.advantages__title {
  color: var(--orange, #ff6002);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.625rem, 1.0416666667vw + 1.4166666667rem, 2.25rem);
  line-height: 120%;
  font-weight: 700;
  align-self: stretch;
  margin-bottom: 30px;
}
.advantages__description {
  color: var(--black, #333333);
  font-family: var(--h3-font-family, "Manrope", sans-serif);
  font-size: clamp(0.875rem, 0.2083333333vw + 0.8333333333rem, 1rem);
  max-width: 100%;
  line-height: var(--h3-line-height, 120%);
  font-weight: var(--h3-font-weight, 700);
  margin-bottom: 30px;
}
.advantages__wrapper {
  display: flex;
  flex-direction: row;
  gap: 30px;
}
.advantages__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding-top: 32px;
  padding-bottom: 32px;
  padding-left: 10px;
  padding-right: 10px;
  background: #F2F2F2;
  border-radius: 10px;
}
.advantages__item-title {
  color: var(--orange, #ff6002);
  text-align: center;
  font-family: var(--p1-font-family, "Manrope", sans-serif);
  font-size: var(--p1-font-size, 16px);
  font-weight: var(--p1-font-weight, 500);
  align-self: stretch;
}
.advantages__item-description {
  color: var(--black, #333333);
  text-align: center;
  font-family: var(--p3-font-family, "Manrope", sans-serif);
  font-size: var(--p3-font-size, 12px);
  font-weight: var(--p3-font-weight, 400);
  align-self: stretch;
}

#services {
  margin-top: 100px;
}
#services .container {
  display: flex;
  flex-direction: column;
}

.services__title {
  color: var(--orange, #ff6002);
  font-family: var(--h2-font-family, "Manrope", sans-serif);
  font-size: clamp(1.625rem, 1.0416666667vw + 1.4166666667rem, 2.25rem);
  line-height: var(--h2-line-height, 120%);
  font-weight: var(--h2-font-weight, 700);
  margin-bottom: 30px;
}
.services__description {
  color: var(--black, #333333);
  font-family: var(--h3-font-family, "Manrope", sans-serif);
  font-size: clamp(1.25rem, 0.8333333333vw + 1.0833333333rem, 1.75rem);
  line-height: var(--h3-line-height, 120%);
  font-weight: var(--h3-font-weight, 700);
  margin-bottom: 20px;
}
.services__wrapper {
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin-bottom: 91px;
}
.services__wrapper:last-child {
  margin-bottom: 0;
}
.services__item {
  flex: 1;
  border-radius: 20px;
  background: #f2f2f2;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.services__item-title {
  color: var(--black, #333333);
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.875rem, 0.2083333333vw + 0.8333333333rem, 1rem);
  font-weight: 500;
  width: 90%;
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
}
.services__item--row-reverse {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.services__item--row-reverse .services__img {
  width: 66%;
  margin-bottom: -20px;
}
.services__info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.services__img {
  width: 100%;
  height: auto;
}
.services__img img {
  width: 100%;
  height: auto;
}

#projects {
  margin-top: 100px;
}
#projects .container {
  display: flex;
  flex-direction: column;
}

.projects {
  /* Первая картинка */
  /* Остальные картинки (2-5) */
}
.projects__title {
  color: var(--orange, #ff6002);
  font-family: var(--h2-font-family, "Manrope", sans-serif);
  font-size: clamp(1.625rem, 1.0416666667vw + 1.4166666667rem, 2.25rem);
  line-height: var(--h2-line-height, 120%);
  font-weight: var(--h2-font-weight, 700);
  margin-bottom: 30px;
}
.projects__item {
  position: relative;
  display: flex;
  flex-direction: row;
  padding: 30px;
  background: #F2F2F2;
  gap: 20px;
  width:100%;
}
.projects__item-info {
  display: flex;
  flex-direction: column;
  width: 50%;
}
.projects__item-info.open .projects__item-title img {
  transform: rotate(180deg);
}
.projects__item-info.open .projects__item-text {
  -webkit-line-clamp: unset;
}
.projects__item-title {
  position: absolute;
  left: calc(48% + 22px);
  width: calc(50% - 30px);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  color: var(--black, #333333);
  font-family: var(--h3-font-family, "Manrope", sans-serif);
  font-size: clamp(1.25rem, 0.8333333333vw + 1.0833333333rem, 1.75rem);
  line-height: var(--h3-line-height, 120%);
  font-weight: var(--h3-font-weight, 700);
}
.projects__item-title a {
  pointer-events: none;
  display: flex;
  min-width: 33px;
  width: 33px;
  height: 33px;
  min-height: 33px;
  background: #ff6002;
  align-items: center;
  justify-content: center;
}
.projects__item-text {
  margin-top: 52px;
  display: -webkit-box;
  -webkit-line-clamp: 19;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.4s ease;
}
.projects__item-text p {
  color: #000000;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 140%;
  font-weight: 400;
  align-self: stretch;
}
.projects__item-text ul {
  list-style-type: none;
  display: inline;
  flex-direction: column;
  gap: 12px;
}
.projects__item-text ul li {
  display: inline;
  color: var(--black, #333333);
  padding-left: 18px;
  text-align: left;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 140%;
  font-weight: 400;
  position: relative;
}
.projects__item-text ul li::before {
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  background: #ff6002;
  border-radius: 5px;
  position: absolute;
  left: 0;
  right: auto;
  top: 7px;
  bottom: auto;
}
.projects__item-text ul li::after {
  content: "\a";
  white-space: pre;
  display: block;
  height: 12px;
}
.projects__item-images img {
  width: 100%;
  max-height: 100px;
  border-radius: 6px;
}
.projects__item-images img:nth-child(1) {
  max-height: 350px;
  border-radius: 6px;
}
.projects__item-images {
  width: 48%;
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 колонки одинаковой ширины */
  grid-template-rows: 351px 100px;
  gap: 10px; /* отступы между картинками */
}
.projects__item-images a:nth-child(1) {
  grid-column: 1/-1; /* растягиваем на все 4 колонки */
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.projects__item-images a:nth-child(1) img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.projects__item-images a:nth-child(n+2) {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.projects__item-images a:nth-child(n+2) a {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.projects__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.projects--mt40 {
  margin-top: 40px !important;
}

#certificates {
  margin-top: 100px;
}
#certificates .container {
  display: flex;
  flex-direction: column;
}

.certificates__title {
  color: var(--orange, #ff6002);
  font-family: var(--h2-font-family, "Manrope", sans-serif);
  font-size: clamp(1.625rem, 1.0416666667vw + 1.4166666667rem, 2.25rem);
  line-height: var(--h2-line-height, 120%);
  font-weight: var(--h2-font-weight, 700);
  margin-bottom: 30px;
}
.certificates__wrapper {
/*   display: flex; */
/*   flex-direction: row; */
  
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 30px;
}
.certificates__item {
  flex: 1;
/*   max-width: 33%; */
  width:100%;
}
.certificates__item img {
  width: 100%;
  height: 100%;
}

#partners {
  margin-top: 100px;
}
#partners .container {
  display: flex;
  flex-direction: column;
}

.partners__title {
  color: var(--orange, #ff6002);
  font-family: var(--h2-font-family, "Manrope", sans-serif);
  font-size: clamp(1.625rem, 1.0416666667vw + 1.4166666667rem, 2.25rem);
  line-height: var(--h2-line-height, 120%);
  font-weight: var(--h2-font-weight, 700);
  align-self: stretch;
  margin-bottom: 30px;
}
.partners__wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
}
.partners__item {
  width: calc(25% - 22.5px);
  max-width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fbfbfb;
}

#contacts {
  margin-top: 100px;
}
#contacts .container {
  position: relative;
  display: flex;
  flex-direction: column;
}

.contacts__title {
  color: var(--orange, #ff6002);
  font-family: var(--h2-font-family, "Manrope", sans-serif);
  font-size: clamp(1.625rem, 1.0416666667vw + 1.4166666667rem, 2.25rem);
  line-height: var(--h2-line-height, 120%);
  font-weight: var(--h2-font-weight, 700);
  margin-bottom: 30px;
}
.contacts__row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.contacts__block {
  z-index: 1;
  position: absolute;
  top: 84px;
  left: 50px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 380px;
}
.contacts__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fbfbfb;
  border-radius: 10px;
  padding: 30px;
  box-sizing: border-box;
}
.contacts__info-title {
  color: var(--black, #333333);
  font-family: var(--p1-font-family, "Manrope", sans-serif);
  font-size: var(--p1-font-size, 16px);
  font-weight: var(--p1-font-weight, 500);
  align-self: stretch;
}
.contacts__info-text {
  display: flex;
  flex-direction: column;
  gap: 10px p, a;
  gap-color: var(--black, #333333);
  gap-font-family: var(--p2-font-family, "Manrope", sans-serif);
  gap-font-size: var(--p2-font-size, 14px);
  gap-line-height: var(--p2-line-height, 140%);
  gap-font-weight: var(--p2-font-weight, 400);
  gap-align-self: stretch;
}
.contacts__form {
  width: 30%;
  background: #f2f2f2;
  border-radius: 10px;
  padding: 30px;
  box-sizing: border-box;
  /* Скрываем стандартный чекбокс */
  /* Эффект при наведении */
  /* Галочка */
}
.contacts__form-title {
  color: var(--black, #333333);
  font-family: var(--p1-font-family, "Manrope", sans-serif);
  font-size: var(--p1-font-size, 16px);
  font-weight: var(--p1-font-weight, 500);
  align-self: stretch;
  margin-bottom: 12px;
}
.contacts__form-description {
  color: var(--black, #333333);
  font-family: var(--p2-font-family, "Manrope", sans-serif);
  font-size: var(--p2-font-size, 14px);
  line-height: var(--p2-line-height, 140%);
  font-weight: var(--p2-font-weight, 400);
  align-self: stretch;
  margin-bottom: 28px;
}
.contacts__form form {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.contacts__form-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contacts__form-item--row label {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.contacts__form-item--row label span {
  color: var(--black, #333333);
  font-family: var(--p3-font-family, "Manrope", sans-serif);
  font-size: var(--p3-font-size, 12px);
  font-weight: var(--p3-font-weight, 400);
}
.contacts__form label {
  color: var(--black, #333333);
  font-family: var(--p2-font-family, "Manrope", sans-serif);
  font-size: var(--p2-font-size, 14px);
  line-height: var(--p2-line-height, 140%);
  font-weight: var(--p2-font-weight, 400);
  align-self: stretch;
  margin-bottom: 6px;
}
.contacts__form input {
  background: #ffffff;
  border-radius: 10px;
  padding: 10px;
  color: var(--black, #333333);
  font-family: var(--p2-font-family, "Manrope", sans-serif);
  font-size: var(--p2-font-size, 14px);
  line-height: var(--p2-line-height, 140%);
  font-weight: var(--p2-font-weight, 400);
  align-self: stretch;
}
.contacts__form .error {
  display: none;
  color: red;
}
.contacts__form .error__true {
  display: block;
}
.contacts__form input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid #666;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}
.contacts__form input[type=checkbox]:hover {
  border-color: #333;
}
.contacts__form input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  background: black;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  top: 2px;
  left: 2px;
}

#footer {
  margin-top: 60px;
}
#footer .container {
  display: flex;
  flex-direction: row;
  background: var(--black, #333333);
  border-radius: 10px;
  padding: 40px;
}
#footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#footer nav a {
  color: var(--white, #fbfbfb);
  font-family: var(--p2-font-family, "Manrope", sans-serif);
  font-size: var(--p2-font-size, 14px);
  line-height: var(--p2-line-height, 140%);
  font-weight: var(--p2-font-weight, 400);
}
#footer .logo {
  border-radius: 10px;
  width: 140px;
  height: 84px;
  overflow: hidden;
  margin-bottom: 69px;
}
#footer .logo img {
  width: 100%;
  height: 100%;
}

.footer__column:nth-child(1) {
  flex: 2;
}
.footer__column:nth-child(1) .footer__info-text {
  margin-bottom: 10px;
}
.footer__column:nth-child(2) {
  flex: 1;
}
.footer__column:nth-child(2) .footer__info-text {
  margin-top: 75px;
}
.footer__column:nth-child(3) {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__column:nth-child(3) .footer__info-text {
  max-width: 212px;
}
.footer__info-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__info-text p, .footer__info-text a {
  display: block;
  color: var(--white, #fbfbfb);
  font-family: var(--p2-font-family, "Manrope", sans-serif);
  font-size: var(--p2-font-size, 14px);
  line-height: var(--p2-line-height, 140%);
  font-weight: var(--p2-font-weight, 400);
  align-self: stretch;
}
.footer__info-text span {
  display: block;
  color: var(--gray, #c3bcbc);
  font-family: var(--p2-font-family, "Manrope", sans-serif);
  font-size: var(--p2-font-size, 14px);
  line-height: var(--p2-line-height, 140%);
  font-weight: var(--p2-font-weight, 400);
  align-self: stretch;
}
.footer__info-text--gray p, .footer__info-text--gray a {
  color: var(--gray, #c3bcbc);
}

#breadcrumb {
  margin-top: 20px;
}

.breadcrumb .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 4px;
}
.breadcrumb a {
  font-family: var(--p2-font-family, "Manrope", sans-serif);
  font-size: var(--p2-font-size, 14px);
  line-height: var(--p2-line-height, 140%);
  font-weight: var(--p2-font-weight, 400);
  color: var(--orange, #333333);
}
.breadcrumb__link {
  display: flex;
  flex-direction: row;
  gap: 4px;
  color: var(--orange, #ff6002) !important;
}
.breadcrumb__link-back {
  display: flex;
  flex-direction: row;
  gap: 4px;
  color: var(--orange, #ff6002) !important;
}
.breadcrumb__link-back::before {
  content: "<";
}
.breadcrumb__link-back::after {
  content: "|";
  color: var(--black, #333333);
}
.breadcrumb__link::after {
  content: "/";
  color: var(--orange, #ff6002);
}

#service-description {
  margin-top: 40px;
}

.service-description .container {
  display: flex;
  flex-direction: column;
}
.service-description__title {
  color: var(--orange, #ff6002);
  font-family: var(--h2-font-family, "Manrope", sans-serif);
  font-size: clamp(1.625rem, 1.0416666667vw + 1.4166666667rem, 2.25rem);
  line-height: var(--h2-line-height, 120%);
  font-weight: var(--h2-font-weight, 700);
  margin-bottom: 40px;
}
.service-description__description {
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin-bottom: 30px;
}
.service-description__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.service-description__info .button {
  margin-top: 20px;
}
.service-description__img {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
}
.service-description__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service-description__sub-title {
  color: var(--black, #333333);
  font-family: var(--h3-font-family, "Manrope", sans-serif);
  font-size: clamp(1.25rem, 0.8333333333vw + 1.0833333333rem, 1.75rem);
  line-height: var(--h3-line-height, 120%);
  font-weight: var(--h3-font-weight, 700);
  align-self: stretch;
  margin-bottom: 20px;
}
.service-description__text {
  color: var(--black, #333333);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 140%;
  font-weight: 400;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-description__text p {
  color: var(--black, #333333);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 140%;
  font-weight: 400;
  align-self: stretch;
  margin: 0;
  padding: 0;
}

#service-photo-example {
  margin-top: 100px;
}

.service-photo-example .container {
  display: flex;
  flex-direction: column;
}
.service-photo-example__title {
  color: var(--black, #333333);
  font-family: var(--h3-font-family, "Manrope", sans-serif);
  font-size: clamp(1.25rem, 0.8333333333vw + 1.0833333333rem, 1.75rem);
  line-height: var(--h3-line-height, 120%);
  font-weight: var(--h3-font-weight, 700);
  align-self: stretch;
  margin-bottom: 20px;
}
.service-photo-example__wrapper {
  display: grid;
  grid-template-rows: 161px 161px 161px;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 20px;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
.service-photo-example__item {
  box-sizing: border-box;
  border-radius: 10px;
  overflow: hidden;
}
.service-photo-example__item img {
  width: 100%;
  height: 100%;
}
.service-photo-example__item:nth-child(1) {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 3;
}
.service-photo-example__item:nth-child(2) {
  grid-column-start: 3;
  grid-column-end: 5;
  grid-row-start: 1;
  grid-row-end: 3;
}
.service-photo-example--mt50 {
  margin-top: 50px !important;
}

#call-to-action {
  margin-top: 100px;
}

.call-to-action .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url(images/consult-bg.png);
  background-repeat: no-repeat !important;
  background-size: 100% 100% !important;
  padding-top: 50px;
  padding-bottom: 50px;
}
.call-to-action__title {
  color: var(--orange, #ff6002);
  font-family: var(--h3-font-family, "Manrope", sans-serif);
  font-size: clamp(1.25rem, 0.8333333333vw + 1.0833333333rem, 1.75rem);
  line-height: var(--h3-line-height, 120%);
  font-weight: var(--h3-font-weight, 700);
  align-self: stretch;
  text-align: center;
  margin-bottom: 20px;
}
.call-to-action__description {
  color: var(--black, #333333);
  font-family: var(--p1-font-family, "Manrope", sans-serif);
  font-size: clamp(0.875rem, 0.2083333333vw + 0.8333333333rem, 1rem);
  font-weight: var(--p1-font-weight, 500);
  align-self: stretch;
  text-align: center;
  margin-bottom: 30px;
}

#about {
  margin-top: 40px;
}

.about__title {
  color: var(--orange, #ff6002);
  font-family: var(--h2-font-family, "Manrope", sans-serif);
  font-size: clamp(1.625rem, 1.0416666667vw + 1.4166666667rem, 2.25rem);
  line-height: var(--h2-line-height, 120%);
  font-weight: var(--h2-font-weight, 700);
  margin-bottom: 40px;
}
.about__banner {
  background: url(images/about-banner.png);
  background-repeat: no-repeat !important;
  background-size: 100% 100% !important;
  border-radius: 10px;
  padding-top: 162px;
  padding-bottom: 30px;
}
.about__banner-text {
  width: 82.75%;
  margin-right: auto;
  margin-left: auto;
  color: var(--white, #fbfbfb);
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 50px;
  font-size: clamp(1.625rem, 2.5vw + 1.125rem, 3.125rem);
  line-height: 120%;
  font-weight: 700;
  text-transform: uppercase;
  padding-top: 20px;
  padding-bottom: 20px;
  background: rgba(51, 51, 51, 0.1);
  box-shadow: 0px 0px 15px 0px #000000;
  border-radius: 20px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.about__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 50px;
  margin-top: 50px;
}
.about__item-title {
  color: var(--black, #333333);
  font-family: var(--h3-font-family, "Manrope", sans-serif);
  font-size: clamp(1.25rem, 0.8333333333vw + 1.0833333333rem, 1.75rem);
  line-height: var(--h3-line-height, 120%);
  font-weight: var(--h3-font-weight, 700);
  align-self: stretch;
  margin-bottom: 20px;
}
.about__item-description {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--black, #333333);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 140%;
  font-weight: 400;
  align-self: stretch;
}
.about__item-description p {
  color: var(--black, #333333);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 140%;
  font-weight: 400;
  align-self: stretch;
  margin: 0;
  padding: 0;
}
.about__item-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
}
.about__item-img img {
  width: 100%;
  height: auto;
}
.about__item:nth-child(3), .about__item:nth-child(4) {
  padding: 30px;
  background: #F2F2F2;
  border-radius: 10px;
}

#about-cert {
  margin-top: 50px;
}

.about-cert__title {
  color: var(--black, #333333);
  font-family: var(--h3-font-family, "Manrope", sans-serif);
  font-size: clamp(1.25rem, 0.8333333333vw + 1.0833333333rem, 1.75rem);
  line-height: var(--h3-line-height, 120%);
  font-weight: var(--h3-font-weight, 700);
  align-self: stretch;
  margin-bottom: 30px;
}
.about-cert__wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
}
.about-cert__item {
  width: calc(25% - 22.5px);
  border-radius: 10px;
  overflow: hidden;
}

#team {
  margin-top: 50px;
	display:none;
}

.team .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.team__title {
  color: var(--black, #333333);
  font-family: var(--h3-font-family, "Manrope", sans-serif);
  font-size: clamp(1.25rem, 0.8333333333vw + 1.0833333333rem, 1.75rem);
  line-height: var(--h3-line-height, 120%);
  font-weight: var(--h3-font-weight, 700);
}
.team__block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.team__block-title {
  color: var(--black, #333333);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}
.team__wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
.team__item {
  display: flex;
  flex-direction: row;
  gap: 12px;
  width: calc(33.3333333333% - 13.3333333333px);
}
.team__photo {
  width: 100px;
  height: 100px;
  min-width: 100px;
  min-height: 100px;
  border-radius: 10px;
  overflow: hidden;
}
.team__photo img {
  width: 100%;
  height: 100%;
}
.team__info {
  display: flex;
  flex-direction: column;
}
.team__name {
  color: var(--orange, #ff6002);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 500;
  align-self: stretch;
  margin-bottom: 4px;
}
.team__position {
  color: var(--black, #333333);
  font-family: var(--p3-font-family, "Manrope", sans-serif);
  font-size: var(--p3-font-size, 12px);
  font-weight: var(--p3-font-weight, 400);
  align-self: stretch;
  margin-bottom: 18px;
}
.team__contacts {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.team__contacts a, .team__contacts p, .team__contacts span {
  color: var(--black, #333333);
  font-family: var(--p3-font-family, "Manrope", sans-serif);
  font-size: var(--p3-font-size, 12px);
  font-weight: var(--p3-font-weight, 400);
  align-self: stretch;
  margin: 0;
  padding: 0;
}

#vacancy {
  margin-top: 50px;
}

.vacancy__title {
  color: var(--black, #333333);
  font-family: var(--h3-font-family, "Manrope", sans-serif);
  font-size: clamp(1.25rem, 0.8333333333vw + 1.0833333333rem, 1.75rem);
  line-height: var(--h3-line-height, 120%);
  font-weight: var(--h3-font-weight, 700);
  align-self: stretch;
  margin-bottom: 30px;
}
.vacancy__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.vacancy__item {
  position: relative;
  width: 100%;
  padding: 30px;
  background: #F2F2F2;
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.vacancy__photo {
  width: 33.3333333333%;
  height: auto;
}
.vacancy__photo img {
  border-radius: 6px;
  width: 100%;
  height: auto;
}
.vacancy__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 60%;
  padding-top: 45px;
}
.vacancy__info-title {
  position: absolute;
  left: calc(30px + 33.3333333333%);
  top: 30px;
  width: calc(66.6666666667% - 60px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.vacancy__info-title span {
  color: var(--black, #333333);
  font-family: var(--h3-font-family, "Manrope", sans-serif);
  font-size: clamp(1.25rem, 0.8333333333vw + 1.0833333333rem, 1.75rem);
  line-height: var(--h3-line-height, 120%);
  font-weight: var(--h3-font-weight, 700);
}
.vacancy__info-title a {
  display: flex;
  width: 33px;
  height: 33px;
  min-width: 33px;
  min-height: 33px;
  background: #ff6002;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.vacancy__info-description {
  color: #000000;
  font-family: var(--p1-font-family, "Manrope", sans-serif);
  font-size: clamp(0.875rem, 0.2083333333vw + 0.8333333333rem, 1rem);
  font-weight: var(--p1-font-weight, 500);
  align-self: stretch;
  margin-bottom: 16px;
}
.vacancy__info-text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.vacancy__info-text.hidden {
  display: none;
  margin-top: 20px;
}
.vacancy__info-text p {
  color: #000000;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 140%;
  font-weight: 400;
  align-self: stretch;
}
.vacancy__info-text ul {
  list-style-type: none;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vacancy__info-text ul li {
  color: var(--black, #333333);
  text-align: left;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 140%;
  font-weight: 400;
  position: relative;
}
.vacancy__info-text ul li::before {
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  background: #ff6002;
  border-radius: 5px;
  position: absolute;
  left: -13px;
  right: auto;
  top: 7px;
  bottom: auto;
}
.vacancy__info.open .hidden {
  display: flex;
}
.vacancy__info.open .vacancy__info-title img {
  transform: rotate(180deg);
}
.vacancy__info .button {
  margin-top: 20px;
}

#contacts-map {
  margin-top: 40px;
}

.contacts-map .container {
  position: relative;
}
.contacts-map__title {
  color: var(--orange, #ff6002);
  font-family: var(--h2-font-family, "Manrope", sans-serif);
  font-size: clamp(1.625rem, 1.0416666667vw + 1.4166666667rem, 2.25rem);
  line-height: var(--h2-line-height, 120%);
  font-weight: var(--h2-font-weight, 700);
  margin-bottom: 40px;
}
.contacts-map__description {
  color: var(--black, #333333);
  font-family: var(--h3-font-family, "Manrope", sans-serif);
  font-size: clamp(1.25rem, 0.8333333333vw + 1.0833333333rem, 1.75rem);
  line-height: var(--h3-line-height, 120%);
  font-weight: var(--h3-font-weight, 700);
  align-self: stretch;
  margin-bottom: 20px;
}
.contacts-map__contacts__block {
  z-index: 1;
  position: absolute;
  top: 200px;
  left: 100px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 353px;
  box-sizing: border-box;
}
.contacts-map__info {
  padding: 30px;
  background: #FFFFFF;
  border-radius: 10px;
}
.contacts-map__info-title {
  color: var(--black, #333333);
  font-family: var(--p1-font-family, "Manrope", sans-serif);
  font-size: var(--p1-font-size, 16px);
  font-weight: var(--p1-font-weight, 500);
  align-self: stretch;
  margin-bottom: 20px;
}
.contacts-map__info-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contacts-map__info-text a, .contacts-map__info-text p, .contacts-map__info-text span {
  color: var(--black, #333333);
  font-family: var(--p2-font-family, "Manrope", sans-serif);
  font-size: var(--p2-font-size, 14px);
  line-height: var(--p2-line-height, 140%);
  font-weight: var(--p2-font-weight, 400);
  align-self: stretch;
}
.contacts-map #map {
  width: 100%;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  height: 565px;
}

#contacts-form {
  margin-top: 100px;
}

.contacts-form .container {
  background: #333333;
  border-radius: 10px;
  padding: 50px;
  display: flex;
  flex-direction: row;
  gap: 30px;
  justify-content: space-between;
}
.contacts-form .contacts__form {
  width: 33.3333333333%;
  box-sizing: border-box;
}
.contacts-form .contacts__form-title {
  color: var(--orange, #ff6002);
  text-align: left;
  font-family: var(--h2-font-family, "Manrope-Bold", sans-serif);
  font-size: clamp(1rem, 2.0833333333vw + 0.5833333333rem, 2.25rem);
  line-height: var(--h2-line-height, 120%);
  font-weight: var(--h2-font-weight, 700);
  position: relative;
  align-self: stretch;
}
.contacts-form .contacts__form-description {
  color: var(--white, #fbfbfb);
  text-align: left;
  font-family: var(--p1-font-family, "Manrope-Medium", sans-serif);
  font-size: var(--p1-font-size, 16px);
  font-weight: var(--p1-font-weight, 500);
  position: relative;
}
.contacts-form .contacts__form {
  background: transparent;
  padding: 0;
}
.contacts-form form {
  box-sizing: border-box;
  background: #F2F2F2;
  padding: 30px;
  border-radius: 10px;
}
.contacts-form__img img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#vacancy-description {
  margin-top: 40px;
}

.vacancy-description__title {
  color: var(--orange, #ff6002);
  font-family: var(--h2-font-family, "Manrope", sans-serif);
  font-size: clamp(1.625rem, 1.0416666667vw + 1.4166666667rem, 2.25rem);
  line-height: var(--h2-line-height, 120%);
  font-weight: var(--h2-font-weight, 700);
  margin-bottom: 40px;
}
.vacancy-description__row {
  display: flex;
  flex-direction: row;
  gap: 30px;
}
.vacancy-description__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vacancy-description__text a, .vacancy-description__text p, .vacancy-description__text span {
  color: var(--black, #333333);
  font-family: var(--p1-font-family, "Manrope", sans-serif);
  font-size: clamp(0.875rem, 0.2083333333vw + 0.8333333333rem, 1rem);
  font-weight: var(--p1-font-weight, 500);
  align-self: stretch;
}
.vacancy-description__img {
  flex: 1;
}
.vacancy-description__img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

#why-join {
  margin-top: 100px;
}
#why-join .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.why-join__title {
  color: var(--black, #333333);
  font-family: var(--h3-font-family, "Manrope", sans-serif);
  font-size: clamp(1.25rem, 0.8333333333vw + 1.0833333333rem, 1.75rem);
  line-height: var(--h3-line-height, 120%);
  font-weight: var(--h3-font-weight, 700);
  align-self: stretch;
}
.why-join__wrapper {
  display: flex;
  flex-direction: row;
  gap: 30px;
}
.why-join__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: var(--orange, #ff6002);
  border-radius: 8px;
}
.why-join__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 32px;
  padding-bottom: 32px;
  padding-left: 20px;
  padding-right: 20px;
  background: #F2F2F2;
}
.why-join__item-title {
  color: var(--orange, #ff6002);
  text-align: center;
  font-family: var(--p1-font-family, "Manrope", sans-serif);
  font-size: var(--p1-font-size, 16px);
  font-weight: var(--p1-font-weight, 500);
  align-self: stretch;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #333333;
  color: white;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  overflow-y: auto; /* ← добавляем вертикальный скролл */
  -webkit-overflow-scrolling: touch; /* плавный скролл на iOS */
}
.mobile-menu .container {
  width: 100%;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu__close {
  position: absolute;
  top: 10px;
  right: 10px;
}
.mobile-menu__logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu__logo img {
  border-radius: 4px;
  width: 73px;
  height: 44px;
}
.mobile-menu__logo span {
  color: var(--white, #fbfbfb);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  line-height: 120%;
  font-weight: 400;
  text-transform: uppercase;
}
.mobile-menu__content {
  padding-top: 20px;
  padding-bottom: 20px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mobile-menu__menu {
  margin-top: 30px;
  margin-bottom: 10px;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-menu__menu li a {
  color: var(--gray, #c3bcbc);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 500;
}
.mobile-menu .button {
  max-width: 194px;
}
.mobile-menu .contact {
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.mobile-menu .contact .contact__item {
  max-width: 100%;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}
.modal.open {
  display: flex;
}
.modal__content {
  background: #333;
  padding: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 600px;
  height: 100%;
  overflow-y: auto; /* скролл внутри модалки */
  border-radius: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.modal__content p {
  color: var(--orange, #ff6002);
  font-family: var(--h2-font-family, "Manrope", sans-serif);
  font-size: clamp(1.625rem, 1.0416666667vw + 1.4166666667rem, 2.25rem);
  line-height: var(--h2-line-height, 120%);
  font-weight: var(--h2-font-weight, 700);
  max-width: 383px;
  text-align: center;
}
.modal__close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  border: none;
  background: transparent;
  cursor: pointer;
}

@media (max-width: 1200px) {
  .container {
    max-width: 93.75%;
  }
  header .contact {
    display: none;
  }
}
@media (max-width: 1024px) {
  header nav {
    display: none;
  }
  header .button {
    display: none;
  }
  .burger-menu {
    display: flex;
  }
  .main-screen__info {
    margin-top: 75px;
  }
  #main-screen {
    padding-bottom: 180px;
  }
  #advantages {
    margin-top: 60px;
  }
  .advantages__title {
    margin-bottom: 20px;
  }
  .advantages__description {
    margin-bottom: 20px;
  }
  .advantages__wrapper {
    flex-direction: column;
    gap: 10px;
  }
  #services {
    margin-top: 60px;
  }
  .services__title {
    margin-bottom: 20px;
  }
  #certificates {
    margin-top: 60px;
  }
  #projects {
    margin-top: 60px;
  }
  .projects__title {
    margin-bottom: 20px;
  }
  #partners {
    margin-top: 60px;
  }
  .partners__title {
    margin-bottom: 20px;
  }
  .partners__wrapper {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .partners__wrapper::-webkit-scrollbar {
    display: none;
  }
  .partners__item {
    flex: 0 0 auto;
    width: 277px;
    height: 120px;
    max-width: 277px;
    max-height: 120px;
    min-width: 277px;
    min-height: 120px;
    scroll-snap-align: start;
  }
  #contacts {
    margin-top: 60px;
  }
  .contacts__title {
    margin-bottom: 20px;
  }
  #footer .container {
    width: 100%;
    max-width: 100%;
    padding: 20px 10px;
    position: relative;
  }
  .footer__wrapper {
    flex-wrap: wrap;
  }
  .footer__column {
    min-width: 50% !important;
    width: 50% !important;
    flex: 2 !important;
  }
  .footer__column:nth-child(1) {
    order: 2;
    padding-top: 114px;
  }
  .footer__column:nth-child(2) {
    order: 1;
    padding-top: 114px;
  }
  .footer__column:nth-child(3) {
    width: 100%;
    flex: 4 !important;
    order: 3;
    margin-top: 20px;
    padding-bottom: 72px;
  }
  .footer__column:nth-child(3) .footer__info-text {
    width: 100%;
    max-width: 100%;
  }
  #footer .logo {
    margin-bottom: 0;
    position: absolute;
    left: 10px;
    top: 20px;
  }
  .footer__column:nth-child(2) .footer__info-text--gray {
    margin: 0;
    position: absolute;
    top: auto;
    bottom: 46px;
    left: 10px;
  }
  .footer__column:nth-child(1) .footer__info-text--gray {
    margin: 0;
    position: absolute;
    top: auto;
    bottom: 20px;
    left: 10px;
  }
  #service-description {
    margin-top: 30px;
  }
  .service-description__title {
    margin-bottom: 20px;
  }
  #service-photo-example {
    margin-top: 60px;
  }
  #call-to-action {
    margin-top: 60px;
  }
  #about {
    margin-top: 30px;
  }
  .about__title {
    margin-bottom: 20px;
  }
  #about-cert {
    margin-top: 20px;
  }
  #team {
    margin-top: 60px;
  }
  .team .container {
    gap: 20px;
  }
  #vacancy {
    margin-top: 60px;
  }
  .vacancy__title {
    margin-bottom: 20px;
  }
  .vacancy__wrapper {
    gap: 10px;
  }
  .vacancy__item {
    padding: 20px;
    padding-top: 88px;
    flex-direction: column;
  }
  .vacancy__photo {
    width: 100%;
    height: 240px;
  }
  .vacancy__photo img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .vacancy__info-title {
    width: 100%;
    left: 0;
    top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    background: #F2F2F2;
  }
  .vacancy__info {
    width: 100%;
    padding-top: 0;
  }
  .contacts-map__title {
    margin-bottom: 20px;
  }
  #contacts-map {
    margin-top: 30px;
  }
  #contacts-form {
    margin-top: 20px;
  }
  #vacancy-description {
    margin-top: 30px;
  }
  .vacancy-description__title {
    margin-bottom: 20px;
  }
  #why-join {
    margin-top: 60px;
  }
  #why-join .container {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .main-screen__info {
    margin-top: 50px;
  }
  #main-screen {
    padding-bottom: 120px;
  }
  .services__wrapper {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
  }
  .services__item--row-reverse .services__img {
    width: 100% !important;
    margin-bottom: 0;
  }
  .services__img {
    height: 140px;
    overflow: hidden;
  }
  .services__img img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .services__item--row-reverse {
    flex-direction: column;
  }
  .services__item {
    align-items: flex-start;
  }
  .services__info {
    padding-left: 16px;
    padding-right: 16px;
    align-items: flex-start;
  }
  .services__item-title {
    text-align: start;
  }
  .projects__wrapper {
    gap: 10px;
  }
  .projects__item {
    flex-direction: column;
    padding: 10px;
    padding-top: 82px;
  }
  .projects__item-images {
    width: 100%;
    grid-template-rows: auto;
  }
  .projects__item-title {
    width: 100%;
    left: 0;
    padding-left: 10px;
    padding-right: 10px;
    top: 10px;
    background: #F2F2F2;
    padding-bottom: 20px;
  }
  .projects__item-info {
    width: 100%;
  }
  .projects__item-images img {
    display: none;
  }
  .projects__item-images img:nth-child(1) {
    display: block;
  }
  .projects__item-text {
    display: none;
  }
  .projects__item-info.open .projects__item-text {
    margin-top: 20px;
    display: inline;
  }
  .projects__item.open .projects__item-images img {
    display: block !important;
  }
  .services__item-title {
    width: 100%;
  }
  .certificates__wrapper {
	display:flex;
	flex-direction:row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .certificates__wrapper::-webkit-scrollbar {
    display: none;
  }
  .certificates__item {
    flex: 0 0 auto;
    max-width: 300px;
    max-height: 350px;
    min-width: 300px;
    min-height: 350px;
    scroll-snap-align: start;
  }
  .contacts__row {
    flex-direction: column;
  }
  .contacts__block {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    gap: 10px;
  }
  .contacts__info {
    padding: 20px;
  }
  #map {
    height: 360px;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .contacts__form {
    width: 100%;
  }
  .service-description__description {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .service-photo-example__wrapper {
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-wrap: nowrap;
    overflow: hidden;
  }
  .service-photo-example__item {
    width: 270px;
    height: 260px;
    max-width: 270px;
    max-height: 260px;
    min-width: 270px;
    min-height: 260px;
  }
  .service-photo-example__item img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .about__banner {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .about__banner-text {
    width: calc(100% - 10px);
  }
  .about__wrapper {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    padding-top: 40px;
  }
  .about__item:nth-child(2) {
    order: -1;
  }
  .about__item:nth-child(1) .about__item-title {
    position: absolute;
    top: 0;
    left: 0;
  }
  .about__item:nth-child(3), .about__item:nth-child(4) {
    padding: 20px;
  }
  .about-cert__wrapper {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    overflow: hidden;
  }
  .about-cert__item {
    width: 276px;
    height: 350px;
    max-width: 276px;
    max-height: 350px;
    min-width: 276px;
    min-height: 350px;
  }
  .team__wrapper {
    flex-direction: column;
  }
  .team__item {
    width: 100%;
  }
  .contacts-map__contacts__block {
    position: relative;
    top: auto;
    left: auto;
  }
  .contacts-map__info {
    padding: 20px;
  }
  .contacts-form .container {
    background: #F2F2F2;
  }
  .contacts-form__img {
    display: none;
  }
  .contacts-form .contacts__form {
    width: 100%;
  }
  .contacts-form .container {
    padding: 20px;
  }
  .contacts-form .contacts__form-title {
    color: var(--black, #333333);
  }
  .contacts-form .contacts__form-description {
    color: var(--black, #333333);
  }
  .contacts-form form {
    padding: 0;
  }
  .contacts-map__contacts__block {
    width: 100%;
    max-width: 100%;
  }
  .vacancy-description__row {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .why-join__wrapper {
    flex-direction: column;
    gap: 10px;
  }
  .why-join__item {
    padding: 16px;
    gap: 10px;
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: space-between;
  }
  .why-join__item-title {
    text-align: start;
  }
  .modal__content {
    width: 300px;
    height: 300px;
  }
}/*# sourceMappingURL=style.css.map */