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

a {
  text-decoration: none;
}

button {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

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

img {
  vertical-align: top;
}

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

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

input[type=file] {
  max-width: 100%;
}

:root {
  --font-family: "Gilroy", sans-serif;
  --second-family: "Manrope", sans-serif;
  --accent-color: #102e5b;
  --accent-hover: #2f81fc;
  --color-bg: #fff;
  --layout-bg: #f6f7f9;
  --color-title: #333;
  --color-text: #333;
  --color-white: #fff;
  --header-height: 90px;
}

html {
  min-height: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 400;
  background-color: var(--bg-color);
  color: var(--color-text);
  height: 100%;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

main {
  position: relative;
  flex: 1 1 0;
  padding-top: var(--header-height);
}

.page-main {
  padding-top: 150px;
}

.container {
  max-width: 1200px;
  padding: 0 10px;
  margin: 0 auto;
}

.no-scroll {
  overflow: hidden;
}

.title {
  color: var(--color-title);
  font-weight: 600;
  font-size: 40px;
  line-height: 1;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 100;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.btn-fill {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 30px;
  font-weight: 600;
  font-size: 18px;
  line-height: 89%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  position: fixed;
  right: 30px;
  bottom: 30px;
  border: 1px solid #1d4d94;
  border-radius: 30px;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.25);
  background: #102e5b;
  z-index: 80;
}

.header {
  padding: 24px 0 23px;
  border-bottom: 0.5px solid #d4d4d4;
  background-color: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  height: var(--header-height);
}
.header__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.header__list {
  display: flex;
  align-items: center;
  gap: 50px;
  list-style: none;
}
.header__link {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.01em;
  text-align: center;
  transition: 0.3s ease;
  color: var(--color-text);
}
.header__item.active .header__link {
  text-decoration: underline;
  color: #102e5b;
}
.header__link:hover {
  color: #102e5b;
  text-decoration: underline;
}
.header__lang {
  position: relative;
}
.header__lang-btn {
  color: #102e5b;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo {
  display: block;
  max-width: 146px;
}
.logo img {
  width: 100%;
  height: 100%;
}

.has-submenu {
  position: relative;
}
.has-submenu::before {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 37px;
  pointer-events: none;
}
.has-submenu:hover::before {
  pointer-events: auto;
}
.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.has-submenu:hover svg {
  transform: rotate(-180deg);
}
.has-submenu svg {
  transition: 0.3s ease;
}

.submenu-btn {
  display: flex;
  align-items: center;
  gap: 7px;
}

.submenu {
  list-style: none;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transform: translateY(37px);
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px;
  min-width: 160px;
  background: rgba(16, 46, 91, 0.9);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}
.submenu a {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 114%;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.9);
  transition: 0.3s ease;
}
.submenu a:hover {
  color: #fff;
  text-decoration: underline;
}

.burger {
  display: none;
}
.burger img {
  width: 23px;
  height: 17px;
}

.mobile-menu {
  padding: 70px 20px 50px;
  width: 100%;
  position: fixed;
  height: 100vh;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: transform 0.4s ease, opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.mobile-menu__close {
  position: absolute;
  right: 40px;
  top: 40px;
}
.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  list-style: none;
  margin-top: 125px;
  text-align: center;
}
.mobile-menu__list a {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 114%;
  text-align: center;
  color: #102e5b;
}

.mobile-menu__list li.active a {
  text-decoration: underline;
}

.mobile-menu__lang {
  display: flex;
  gap: 10px;
  margin-top: 50px;
}
.mobile-menu__lang button {
  border: 1px solid #102e5b;
  border-radius: 18px;
  width: 45px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-align: center;
  color: #353535;
  transition: 0.3s ease;
}
.mobile-menu__lang button:hover {
  background: var(--accent-color);
  color: #fff;
}
.mobile-menu__lang button.active {
  background: var(--accent-color);
  color: #fff;
}

.hero {
  position: relative;
}
.hero__slider {
  width: 100%;
  height: 650px;
}
.hero__slide {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.hero__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.hero__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.hero__inner {
  position: relative;
  z-index: 3;
  max-width: 510px;
}
.hero__title {
  margin-bottom: 30px;
  text-shadow: 0 4px 100px 0 rgba(0, 0, 0, 0.8);
  color: #fff;
}
.hero__btn {
  display: inline-flex;
  gap: 12px;
  padding: 12px 35px;
  background: var(--accent-color);
  color: #fff;
  border-radius: 20px;
  transition: 0.3s ease-in;
}
.hero__btn span {
  font-size: 16px;
}
.hero__btn:hover {
  background: var(--accent-hover);
}
.hero .swiper-horizontal > .swiper-pagination-bullets,
.hero .swiper-pagination-bullets.swiper-pagination-horizontal,
.hero .swiper-pagination-custom,
.hero .swiper-pagination-fraction {
  bottom: 50px;
}
.hero .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: transparent;
  border: 1px solid #fff;
  opacity: 1;
}
.hero .swiper-pagination-bullet-active {
  background: #fff;
  border-color: #fff;
}

.our-projects {
  padding: 100px 0;
  overflow: hidden;
}
.our-projects__slider-wrapper {
  width: 100%;
  overflow: hidden;
}
.our-projects__title {
  text-align: center;
  margin-bottom: 40px;
}
.our-projects__swiper {
  padding: 0 60px;
}
.our-projects .swiper-slide {
  width: auto;
}
.our-projects__item:hover .our-projects__link {
  border-color: var(--accent-color);
  background: var(--accent-color);
}
.our-projects__img {
  width: 100%;
  height: 200px;
  margin-bottom: 20px;
  position: relative;
}
.our-projects__img img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.our-projects__link {
  padding: 8px 20px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.01em;
  text-align: center;
  color: #fff;
  border-radius: 20px;
  position: absolute;
  right: 20px;
  bottom: 20px;
  transition: 0.3s ease-in;
  border: 1px solid #fff;
  background: rgba(0, 0, 0, 0.3);
}
.our-projects__item-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.1;
  color: var(--accent-color);
  margin-bottom: 10px;
}
.our-projects__item-text {
  color: rgba(51, 51, 51, 0.8);
}
.our-projects__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 50px;
}
.our-projects__arrow {
  transition: 0.3s ease-in;
}
.our-projects__arrow:hover {
  transform: scale(1.02);
}

.info {
  display: flex;
}
.info__left {
  width: 50%;
  background-color: var(--layout-bg);
  padding: 80px 0;
  display: flex;
  justify-content: flex-end;
}
.info__inner {
  width: 100%;
  max-width: 590px;
  padding-right: 125px;
}
.info__title {
  max-width: 335px;
  margin-bottom: 70px;
}
.info__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 20px;
  margin-bottom: 70px;
}
.info__item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.info__item-span {
  font-size: 16px;
  line-height: 1.13;
  font-family: var(--second-family);
}
.info__item-num {
  font-weight: 600;
  font-size: 45px;
  line-height: 1;
  color: var(--accent-color);
}
.info__links {
  display: flex;
  align-items: center;
  gap: 60px;
}
.info__link {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 129%;
  letter-spacing: 0.02em;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #353535;
  font-family: var(--second-family);
}
.info__right {
  width: 50%;
}
.info__right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.service {
  padding: 100px 0;
}
.service__title {
  text-align: center;
  margin-bottom: 50px;
}
.service__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  list-style-type: none;
}
.service__item {
  width: 100%;
}
.service__link {
  width: 100%;
  height: 100%;
  padding: 20px 20px 30px;
  background-color: var(--layout-bg);
  background: rgba(16, 46, 91, 0.1019607843);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  color: var(--color-text);
  transition: 0.3s ease-in;
}
.service__link:hover {
  background: var(--accent-color);
  color: #fff;
}
.service__link:hover .service__num {
  background: #fff;
  color: var(--accent-color);
}
.service__link:hover .service__btn {
  background-color: var(--color-white);
  color: #353535;
}
.service__num {
  font-family: "Oswald", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 40px;
  height: 40px;
  margin-bottom: 40px;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0.01em;
  color: #fff;
  background-color: var(--accent-color);
  border-radius: 8px;
  transition: 0.3s ease-in;
}
.service__item-title {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 20px;
}
.service__item-text {
  line-height: 1.43;
  margin-bottom: 20px;
}
.service__btn {
  padding: 8px 0;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0.01em;
  text-align: center;
  color: #fff;
  background-color: var(--accent-color);
  border-radius: 20px;
  transition: 0.3s ease;
  margin-top: auto;
}

.service-item {
  padding: 50px 0 220px;
  position: relative;
  overflow: hidden;
  min-height: 550px;
}
.service-item__inner {
  max-width: 541px;
}
.service-item__title {
  margin-bottom: 40px;
}
.service-item__texts p {
  font-family: var(--second-family);
  margin-bottom: 20px;
}
.service-item__img {
  position: absolute;
  width: 721px;
  height: 400px;
  top: 50px;
  right: 0;
}

.service-form {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 90px 0;
}
.service-form__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.service-form__info {
  max-width: 452px;
}
.service-form__title {
  color: #fff;
  gap: 20px;
  margin-bottom: 20px;
}
.service-form__text {
  font-family: var(--second-family);
  color: #fff;
  font-size: 16px;
}

.form {
  width: 400px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 50px;
}
.form__group {
  margin-bottom: 15px;
}
.form__input {
  padding: 12px 20px;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 114%;
  color: #333;
  background: #fff;
  border-radius: 6px;
  border: none;
  outline: none;
  width: 100%;
  max-width: 300px;
}
.form__area {
  padding: 12px 20px;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 114%;
  color: #333;
  background: #fff;
  border-radius: 6px;
  width: 100%;
  resize: none;
  border: none;
  outline: none;
}
.form__btn {
  padding: 12px 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.01em;
  text-align: center;
  color: #fff;
  background: var(--accent-color);
  width: 100%;
  border-radius: 20px;
  margin-top: 5px;
  display: block;
  transition: 0.3s ease;
}
.form__btn:hover {
  background: var(--accent-hover);
}

.advertising {
  padding: 100px 0;
  background-color: var(--layout-bg);
}
.advertising__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 44px 82px;
  justify-content: space-around;
}
.advertising__inner img {
  max-width: 230px;
  -o-object-fit: contain;
     object-fit: contain;
}

.about-page .breadcrumbs__home,
.about-page .breadcrumbs__link {
  color: #fff;
}
.about-page .info {
  margin: 10px 0;
}

.about {
  height: 650px;
  background-color: rgba(16, 46, 91, 0.8);
  background-repeat: no-repeat;
  background-size: cover;
}
.about .breadcrumbs__home:hover {
  color: #fff;
}
.about__inner {
  max-width: 676px;
  margin: 0 auto;
  padding-top: 190px;
  color: #fff;
}
.about__title {
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
}
.about__text {
  text-shadow: 0 4px 100px 0 rgba(0, 0, 0, 0.8);
  color: #fff;
  text-align: center;
}

.breadcrumbs {
  padding-top: 50px;
}
.breadcrumbs__list {
  list-style: none;
  display: flex;
  gap: 5px;
  align-items: center;
}
.breadcrumbs__home {
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0.01em;
  color: #979797;
  transition: 0.3s ease;
}
.breadcrumbs__home:hover {
  color: var(--accent-color);
}
.breadcrumbs__link {
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0.01em;
  color: #979797;
}

.projects {
  padding: 50px 0 100px;
}
.projects__title {
  text-align: center;
  margin-bottom: 50px;
}
.projects__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(314px, 1fr));
  gap: 50px 30px;
  list-style: none;
}
.projects__item {
  max-width: 373px;
  width: 100%;
  justify-self: center;
}
.projects__top {
  position: relative;
  margin-bottom: 20px;
}
.projects__top img {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
.projects__link {
  position: absolute;
  right: 20px;
  bottom: 20px;
  border: 1px solid #fff;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  padding: 8px 20px;
  transition: 0.3s ease;
}
.projects__link:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
}
.projects__item-title {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 20px;
}
.projects__text {
  color: rgba(51, 51, 51, 0.8);
}

.contacts {
  background-repeat: no-repeat;
  background-size: cover;
  height: 230px;
}
.contacts .breadcrumbs__home:hover {
  color: #fff;
}
.contacts__title {
  color: #fff;
  margin-top: 50px;
}

.contacts-info {
  padding: 80px 0 100px;
}
.contacts-info .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.contacts-info__left {
  max-width: 414px;
}
.contacts-info__title {
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 20px;
}
.contacts-info__icon {
  display: none;
}
.contacts-info__row span {
  font-size: 16px;
  color: rgba(51, 51, 51, 0.8);
  display: block;
  margin-bottom: 10px;
}
.contacts-info__row .strong {
  font-weight: 600;
  font-size: 16px;
  color: #353535;
}
.contacts-info__social {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
.form-contacts {
  max-width: 675px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-contacts__group {
  width: 100%;
}
.form-contacts__input {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 114%;
  color: #333;
  padding: 12px 20px;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  background: rgba(233, 236, 240, 0.4);
  width: 100%;
}
.form-contacts__area {
  padding: 20px;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 114%;
  color: #333;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  background: rgba(233, 236, 240, 0.4);
  min-height: 100px;
  width: 100%;
  resize: none;
  outline: none;
}
.form-contacts__group-area {
  grid-column: 1/3;
}
.form-contacts__btn {
  padding: 14px 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.01em;
  text-align: center;
  color: #fff;
  border-radius: 6px;
  background: var(--accent-color);
  max-width: 325px;
  width: 100%;
}
.form-contacts__title {
  display: none;
  font-weight: 600;
  font-size: 25px;
  line-height: 120%;
  text-align: center;
  color: #333;
}

.contacts-map {
  height: 350px;
}
.contacts-map iframe {
  border: none;
}

.certificates {
  padding: 50px 0;
  text-align: center;
}

.certificates__title {
  margin-bottom: 30px;
  font-size: 32px;
}

.certificates__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.certificates__item {
  position: relative;
  background: rgba(16, 46, 91, 0.11);
  border: 1px solid rgba(16, 46, 91, 0.5);
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 387px;
}

.certificates__item img {
  max-width: 100%;
  height: auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.certificates__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.certificates__item:hover .certificates__overlay {
  opacity: 1;
}

.zoom-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}

.modal__content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80vh;
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.privacy {
  padding: 50px 0 100px;
}
.privacy__top {
  text-align: center;
  border-bottom: 0.5px solid #000;
  padding-bottom: 50px;
  margin-bottom: 30px;
}
.privacy__title {
  margin-bottom: 20px;
}
.privacy__subtitle {
  font-family: var(--second-family);
  font-size: 14px;
  font-weight: 400;
  max-width: 662px;
  margin: 0 auto;
}
.privacy__texts p {
  font-family: var(--second-family);
  margin-bottom: 30px;
  color: rgba(0, 0, 0, 0.8);
}

.not-found {
  padding: 50px 0 70px;
}
.not-found__top {
  margin-bottom: 20px;
}
.not-found__title {
  text-align: center;
  margin-bottom: 20px;
}
.not-found__subtitle {
  max-width: 542px;
  margin: 0 auto;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}
.not-found__img {
  max-width: 420px;
  margin: 0 auto;
}
.not-found__img img {
  width: 100%;
}

.form-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 90px;
  max-width: 980px;
  height: 600px;
  width: 100%;
  z-index: 110;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}
.form-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
.form-popup__close {
  position: absolute;
  top: 30px;
  right: 30px;
}
.form-popup__close img {
  width: 24px;
  height: 24px;
}
.form-popup__left {
  max-width: 280px;
}
.form-popup__title {
  margin-bottom: 20px;
  color: #fff;
}
.form-popup__text {
  color: #fff;
}

.footer {
  overflow: hidden;
  border-top: 0.5px solid rgba(53, 53, 53, 0.2);
}
.footer__top {
  padding: 40px 0;
}
.footer__rows {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1090px;
}
.footer__row {
  margin-left: auto;
}
.footer__row-main {
  max-width: 253px;
}
.footer__logo {
  margin-bottom: 17px;
}
.footer__text {
  margin-bottom: 30px;
  color: rgba(53, 53, 53, 0.8);
  font-family: var(--second-family);
}
.footer__social {
  list-style: none;
  display: flex;
  gap: 15px;
  align-items: center;
}
.footer__social-link {
  display: block;
  transition: 0.3s ease;
}
.footer__social-link img {
  width: 40px;
  height: 40px;
}
.footer__social-link:hover {
  transform: scale(1.05);
}
.footer__title {
  font-weight: 700;
  font-size: 14px;
  line-height: 114%;
  text-transform: uppercase;
  color: #353535;
  margin-bottom: 20px;
  padding-top: 10px;
}
.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__link {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: #353535;
  transition: 0.3s ease;
}
.footer__link:hover {
  color: var(--accent-hover);
}
.footer__contacts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer__contacts-item-add {
  display: none;
}
.footer__contacts-name {
  color: rgba(53, 53, 53, 0.8);
  margin-bottom: 6px;
  font-family: var(--second-family);
}
.footer__contacts-link {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 129%;
  color: #353535;
  transition: 0.3s ease;
}
.footer__contacts-link:hover {
  color: var(--accent-hover);
}
.footer__bottom {
  padding: 15px 0;
  border-top: 0.5px solid rgba(53, 53, 53, 0.2);
  color: rgba(51, 51, 51, 0.5);
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__bottom span,
.footer__bottom a {
  color: rgba(51, 51, 51, 0.5);
  transition: 0.3s ease;
}
.footer__bottom span:hover,
.footer__bottom a:hover {
  color: #333;
}

@media (max-width: 1400px) {
  .service-item__img {
    max-width: 600px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 1200px) {
  .info__inner {
    padding-right: 60px;
    max-width: 500px;
  }
  .footer__rows {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .footer__row {
    margin-left: 0;
  }
  .service-item__img {
    max-width: 420px;
  }
  .form-popup__right {
    width: 100%;
  }
  .form-popup {
    max-width: 760px;
    padding: 50px;
  }
  .form-popup .form {
    width: 100%;
    max-width: 400px;
    padding: 50px 25px;
  }
  .form-popup .form__input {
    max-width: 100%;
  }
  .btn-fill {
    bottom: 40px;
  }
}
@media (max-width: 992px) {
  .header__list {
    display: none;
  }
  .header__lang {
    display: none;
  }
  .our-projects__swiper {
    padding: 0 20px;
  }
  .info {
    flex-direction: column;
    height: auto;
  }
  .info__left {
    width: 100%;
    justify-content: center;
    padding: 40px 10px;
  }
  .info__inner {
    max-width: 100%;
    padding-right: 0;
  }
  .info__title {
    max-width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  .info__list {
    gap: 50px;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 30px;
    max-width: 500px;
  }
  .info__links {
    justify-content: center;
  }
  .info__right {
    width: 100%;
    height: 500px;
  }
  .info__right img {
    -o-object-position: center;
       object-position: center;
  }
  .advertising__inner {
    gap: 30px 50px;
  }
  .service-item {
    padding: 50px 0;
  }
  .service-item__img {
    position: static;
    max-width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    top: 0;
    margin-bottom: 50px;
  }
  .service-item__inner {
    max-width: 100%;
  }
  .service-item__title {
    text-align: center;
    margin-bottom: 30px;
  }
  .burger {
    display: block;
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    inset: 0;
    background-color: #fff;
  }
  .btn-fill {
    padding: 10px 20px;
    font-size: 16px;
    gap: 10px;
  }
  .certificates__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .hero__slider {
    height: 500px;
  }
  .our-projects {
    padding: 80px 10px 50px;
  }
  .our-projects__swiper {
    padding: 0;
  }
  .our-projects__title {
    margin-bottom: 30px;
  }
  .title {
    font-size: 30px;
  }
  .info__title {
    margin-bottom: 50px;
    font-size: 25px;
  }
  .info__item {
    gap: 10px;
  }
  .info__item-span {
    font-size: 14px;
  }
  .info__item-num {
    font-size: 40px;
  }
  .info__links {
    flex-direction: column;
    gap: 20px;
  }
  .service {
    padding: 50px 0;
  }
  .service__title {
    margin-bottom: 30px;
  }
  .service__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-content: center;
  }
  .advertising {
    padding: 30px 0;
    overflow: auto;
  }
  .advertising__inner {
    gap: 30px 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .footer__rows {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__row-main {
    grid-column: 1/3;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    position: relative;
    order: 1;
  }
  .footer__row-main::after {
    content: "";
    display: block;
    width: 200%;
    height: 1px;
    background-color: rgba(53, 53, 53, 0.2);
    position: absolute;
    bottom: 0;
    left: -50%;
    right: 0;
  }
  .footer__logo {
    order: 1;
    margin-bottom: 0;
  }
  .footer__social {
    order: 2;
  }
  .footer__text {
    order: 3;
    margin: 20px 0;
    max-width: 420px;
  }
  .footer__bottom .container {
    flex-direction: column;
    gap: 15px;
  }
  .footer__contacts-item-add {
    display: block;
  }
  .footer__title {
    padding-top: 0;
  }
  .footer__contacts {
    gap: 20px;
  }
  .footer__list {
    gap: 23px;
  }
  .footer__contacts-name {
    font-weight: 700;
    margin-bottom: 4px;
  }
  .footer__contacts-link {
    font-weight: 400;
    font-size: 13px;
  }
  .footer__link {
    font-size: 14px;
  }
  .footer__row-add {
    display: none;
  }
  .footer__row-cn {
    order: 2;
  }
  .footer__row-menu {
    order: 3;
  }
  .about {
    height: 500px;
  }
  .about__inner {
    padding-top: 70px;
  }
  .about__title {
    text-align: left;
    text-wrap: balance;
  }
  .about__text {
    text-align: left;
  }
  .service-form {
    padding: 60px 20px 50px;
  }
  .service-form__inner {
    flex-direction: column;
    align-items: start;
  }
  .contacts-info {
    padding: 50px 0;
  }
  .contacts-info .container {
    flex-direction: column;
  }
  .form-contacts {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 20px;
    margin-top: 60px;
  }
  .form-contacts__title {
    display: block;
    margin-bottom: 10px;
  }
  .form-contacts__group-area {
    grid-column: 1;
  }
  .form-contacts__btn {
    max-width: 100%;
    border-radius: 20px;
  }
  .contacts-info__left {
    max-width: 100%;
  }
  .contacts-info__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .contacts-info__item {
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(233, 236, 240, 0.4);
    border: 1px solid #e8e8e8;
    border-radius: 20px;
  }
  .contacts-info__social {
    margin-top: 0;
    justify-content: center;
  }
  .contacts-info__icon {
    display: block;
  }
  .contacts-info__icon img {
    width: 40px;
    height: 40px;
  }
  .contacts-map {
    height: 500px;
  }
  .contacts-map iframe {
    height: 500px;
  }
  .certificates__list {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
  .certificates__item {
    max-width: 273px;
  }
  .form-popup {
    flex-direction: column;
    max-width: 520px;
  }
  .form-popup__left {
    max-width: 100%;
    text-align: center;
  }
  .form-popup__right {
    display: flex;
    justify-content: center;
  }
  .btn-fill {
    right: 20px;
    font-size: 14px;
    bottom: 100px;
  }
  .btn-fill svg,
  .btn-fill img {
    display: none;
  }
}
@media (max-width: 620px) {
  .service__item {
    max-width: 317px;
  }
  .service__num {
    margin-bottom: 30px;
  }
  .footer__text {
    font-size: 12px;
  }
  .footer__social-link img {
    width: 30px;
    height: 30px;
  }
  .service-form__inner {
    align-items: stretch;
    gap: 30px;
  }
  .form {
    width: 100%;
  }
  .form__input {
    max-width: 100%;
  }
  .form-popup {
    padding: 70px 20px;
    max-width: 420px;
  }
  .service__list {
    grid-template-columns: 1fr;
    justify-self: center;
  }
  .certificates__list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .hero__title {
    max-width: 287px;
  }
  .form {
    padding: 40px 30px;
  }
  .projects__list {
    gap: 40px;
  }
  .form-popup {
    padding: 60px 20px;
    max-width: 360px;
  }
  .form-popup .form {
    padding: 30px;
  }
}/*# sourceMappingURL=style.css.map */


/*alert*/

.box-size {
  box-sizing: border-box;
}

.alert--fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  top: 0px;
  left: 0px;
  z-index: 999;
}

.alert--error,
.alert--warning,
.alert--active {
  display: flex;
}

.alert--width {
  width: 400px;
}

.alert--img__item svg {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.alert--img__item {
  display: none;
  flex-shrink: 0;
}

.alert--active .active {
  display: block;
}

.alert--warning .warning {
  display: block;
}

.alert--error .error {
  display: block;
}

.alert--content {
  position: relative;
  z-index: 12;
  border-radius: 15px;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: white;
  padding: 30px;
  color: #333333;
  margin-bottom: 10%;
  margin: 0 16px;
}

.alert--bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.6;
  z-index: 11;
  top: 0px;
  left: 0px;
}

.alert-text {
  margin-top: 15px;
  text-align: center;
}

.alert--active .active path {
  fill: #4ad395;
}

.alert--warning .warning path {
  fill: #e5e75d;
}

.alert--error .error path {
  fill: #f81919;
}

.alert--title {
  font-size: 28px;
  font-weight: 500;
}

.alert--subtitle {
  font-weight: 400;
  font-size: 20px;
  padding-top: 8px;
  margin-top: 8px;
  border-top: 1px solid #ccbbbb;
}

.alert--x {
  position: absolute;
  width: 30px;
  height: 30px;
  padding: 8px;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

.alert--x svg {
  width: 100%;
  height: 100%;
}

.alert--x svg path {
  fill: #968787;
  transition: all 0.3s ease;
}

.alert--x:hover path {
  fill: black;
}

/*alert*/

.contacts-info__row {
  margin-bottom: 40px;
}