/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
      text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
* {
  margin: 0;
  padding: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  border: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

span {
  display: block;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type=number],
input[type=number]:hover,
input[type=number]:focus {
  -webkit-appearance: none;
  appearance: none;
  -moz-appearance: textfield;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: "Montserrat", sans-serif;
  color: #000;
  background-color: #fff;
  position: relative;
  font-weight: 400;
  line-height: 1.5;
  min-height: 100vh;
}
main {
  flex: 1;
}
body.body--no-scroll {
  overflow: hidden;
}

.serv-item h1 {
  font-size: 2rem;
}
@media (max-width: 500px) {
  .serv-item h1 {
    font-size: 1.375rem;
  }
}
.serv-item .calc {
  background-image: url(../images/calc-2.webp);
}
.serv-item .calc__wr {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 900px) {
  .serv-item .calc__wr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

html {
  scroll-behavior: smooth;
}

.container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 3.75rem;
}
@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
}

.h1, h2 {
  font-weight: 700;
  color: #0B3887;
  text-transform: uppercase;
}

.h1 {
  font-size: 3.3125rem;
}
@media (max-width: 500px) {
  .h1 {
    font-size: 1.875rem;
  }
}

.h2 {
  font-size: 2.5rem;
  text-align: center;
}
@media (max-width: 500px) {
  .h2 {
    font-size: 1.875rem;
    line-height: 1;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.fade-in {
  opacity: 0;
  -webkit-transition: opacity 1s cubic-bezier(0.47, -0.44, 0.49, 1.46);
  transition: opacity 1s cubic-bezier(0.47, -0.44, 0.49, 1.46);
}

.fade-in.lazyloaded {
  opacity: 1;
}

.button {
  position: relative;
  display: block;
  margin: 0 auto;
  padding: 0.625rem 3.375rem;
  background: #fff;
  color: #0B3887;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  border: 0.125rem solid #0B3887;
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}
.button::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(100%);
          transform: translateY(-50%) translateX(100%);
  right: 0;
  width: 0.25rem;
  height: 1.3125rem;
  background-color: #fff;
  opacity: 1;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
@media (hover: hover) {
  .button:hover {
    color: #fff;
    background-color: #0B3887;
    -webkit-transition: background-color 0.2s linear;
    transition: background-color 0.2s linear;
  }
  .button:hover::after {
    opacity: 0;
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
  }
}

.swiper-button {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 9.375rem;
  cursor: pointer;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  z-index: 2;
}

.fancybox__content {
  background: none;
  padding: 0;
}

.popup__close {
  position: absolute;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  right: 0;
  top: 0;
  -webkit-transform: translate(100%, -100%);
          transform: translate(100%, -100%);
  width: 2.5rem;
  height: 2.5rem;
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}
.popup__close:focus-within {
  outline: none;
  border: none;
}

.popup__close svg {
  width: 100%;
  height: 100%;
}

.popup__close svg path {
  fill: #fff;
}

.popup__close:hover {
  -webkit-transform: translate(100%, -100%) rotate(45deg);
  transform: translate(100%, -100%) rotate(45deg);
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}

@media (max-width: 500px) {
  .popup__close:hover {
    -webkit-transform: translate(-50%, -100%) rotate(45deg);
    transform: translate(-50%, -100%) rotate(45deg);
  }
  .popup__close {
    left: 50%;
    -webkit-transform: translate(-50%, -100%);
    transform: translate(-50%, -100%);
  }
}
.header {
  position: relative;
  width: 100%;
  background-color: #fff;
  padding: 1.875rem 0;
  transition: transform 0.3s ease, background 0.3s ease;
  z-index: 10;
}

.header.header--fixed .container {
    position: relative;
    left: calc(50vw - var(--scrollbar-width));
    transform: translateX(-50%);
    margin: 0;
}

.header-placeholder {
  display: none;
}

.header--fixed + .header-placeholder {
  display: block;
}

.header--fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation: slideDown 0.3s ease forwards;
  box-shadow: 0 0.125rem 0.3125rem rgba(0, 0, 0, 0.1);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.header__logo {
  width: 10.625rem;
  height: auto;
}

.header__wr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__side {
  display: contents;
}
@media (max-width: 1120px) {
  .header__side {
    display: none;
  }
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.875rem;
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
}

.header__contacts {
  display: flex;
  gap: 1.25rem;
}

.header__contacts-col {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.header__calc{
  border-bottom: 0.0625rem dashed #000;
}
@media (hover: hover) {
  .header__side a:hover {
    color: #035BC9;
    -webkit-transition: color 0.2s linear;
    transition: color 0.2s linear;
  }
}

.header__phone {
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
}
@media (hover: hover) {
  .header__wr a:hover {
    color: #035BC9;
    -webkit-transition: color 0.2s linear;
    transition: color 0.2s linear;
  }
}

@media (hover: hover) {
  .header__calc:hover{
    border-color: transparent;
  }
}

.bm__socials {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.bm__socials svg {
  width: 2.5rem;
  height: 2.5rem;
}

.bm__mail {
  display: block;
  margin-bottom: 1.875rem;
  font-size: 1.25rem;
  color: #0B3887;
}

.bm__btn {
  display: none;
  position: relative;
  width: 2.5rem;
  height: 1.125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}
.bm__btn span {
  width: 100%;
  height: 0.25rem;
  background-color: #035BC9;
}
.bm__btn::before, .bm__btn::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.25rem;
  background-color: #035BC9;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.bm__btn::before {
  top: 0;
}
.bm__btn::after {
  bottom: 0;
}
.bm__btn.burger--active::before {
  -webkit-transform: rotate(45deg) translate(0.3125rem, 0.3125rem);
          transform: rotate(45deg) translate(0.3125rem, 0.3125rem);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.bm__btn.burger--active span {
  opacity: 0;
}
.bm__btn.burger--active::after {
  -webkit-transform: rotate(-45deg) translate(0.3125rem, -0.3125rem);
          transform: rotate(-45deg) translate(0.3125rem, -0.3125rem);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (max-width: 1120px) {
  .bm__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.bm {
  position: fixed;
  height: calc(100dvh - 6rem);
  top: 6rem;
  left: 0;
  background-color: #fff;
  opacity: 0;
  z-index: 10;
  right: 0;
  bottom: 0;
  padding: 3rem 3.75rem;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.bm.bm--show {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media (max-width: 768px) {
  .bm {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.bm__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.9375rem;
  font-size: 1.25rem;
  text-transform: uppercase;
  color: #0B3887;
  font-weight: 700;
  margin-bottom: 3.125rem;
}

.bm__phone {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2;
}

.hero__wr {
  position: relative;
}

.hero__wr picture {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__wr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}

.hero__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.25rem;
  padding-top: 5rem;
  padding-bottom: 6.3125rem;
}


.herr__info {
  -webkit-box-flex: 0;
      -ms-flex: 0;
          flex: 0;
  line-height: 1.3;
  flex-basis: 31.25rem;
}

@media (max-width: 1120px) {
  .hero__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .herr__info {
    flex-basis: auto;
  }
}



.hero__title {
  margin-bottom: 1.25rem;
}

.hero__desc {
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 400;
}
@media (max-width: 500px) {
  .hero__desc {
    font-size: 1rem;
  }
}

/* .wpcf7 {
   -webkit-box-flex: 0;
      -ms-flex: 0 1 31.25rem;
          flex: 0 1 31.25rem;
} */

.wpcf7 br {
  display: none;
}

.form {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 31.25rem;
          flex: 0 1 31.25rem;
  background-color: #fff;
  padding: 1.4375rem 2.5rem 1.6875rem;
  -webkit-box-shadow: 0 0 1.6875rem 0.4375rem rgba(34, 60, 80, 0.22);
          box-shadow: 0 0 1.6875rem 0.4375rem rgba(34, 60, 80, 0.22);
}
@media (max-width: 500px) {
  .form {
    padding: 1.25rem;
  }
}

.form__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0B3887;
}
@media (max-width: 500px) {
  .form__title {
    font-size: 1.5rem;
  }
}

.form__desc {
  font-size: 0.9375rem;
  margin-bottom: 1.875rem;
}
@media (max-width: 500px) {
  .form__desc {
    font-size: 0.875rem;
  }
}

.form__inputs p{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.9375rem;
  margin-bottom: 0.6875rem;
  width: 100%;

}
@media (max-width: 500px) {

  .form__inputs p {
    flex-direction: column;
  }
}
.form__inputs .wpcf7-form-control-wrap {
   -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.fancy-tnx {
  display: block;
  width: 100%;
  max-width: 27.5rem;
  background-color: #fff;
  color: #000;
  max-width: 25rem;
  padding: 1.25rem;
  text-align: center;
  border-radius: 0.3125rem;
}

.fancy-tnx>svg {
  margin-bottom: 1.25rem;
}

.fancy-tnx h3{
  font-size: 1.375rem;
  font-weight: 700;
}

.wpcf7-response-output {
  display: none;
}

.wpcf7-not-valid-tip {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.625rem;
  transform: translateY(-100%);
}
.form__inputs br {
  display: none;
}
.form__inputs input {
 
  width: 100%;
  font-size: 1rem;
  padding: 0.5625rem 0.625rem;
  border: 0.0625rem solid #B3B3B3;
}
.form__inputs input::-webkit-input-placeholder {
  font-size: 0.8125rem;
  font-family: "Montserrat", serif;
  color: #8f8f8f;
  font-weight: 400;
}
.form__inputs input::-moz-placeholder {
  font-size: 0.8125rem;
  font-family: "Montserrat", serif;
  color: #8f8f8f;
  font-weight: 400;
}
.form__inputs input:-ms-input-placeholder {
  font-size: 0.8125rem;
  font-family: "Montserrat", serif;
  color: #8f8f8f;
  font-weight: 400;
}
.form__inputs input::-ms-input-placeholder {
  font-size: 0.8125rem;
  font-family: "Montserrat", serif;
  color: #8f8f8f;
  font-weight: 400;
}
.form__inputs input::placeholder {
  font-size: 0.8125rem;
  font-family: "Montserrat", serif;
  color: #8f8f8f;
  font-weight: 400;
}

.form__textarea {
  width: 100%;
  height: 5.625rem;
  resize: none;
  border: 0.0625rem solid #B3B3B3;
  padding: 0.625rem;
  margin-bottom: 0.4375rem;
}
.form__textarea::-webkit-input-placeholder {
  font-size: 0.8125rem;
  font-weight: 400;
  font-family: "Montserrat", serif;
  color: #8f8f8f;
}
.form__textarea::-moz-placeholder {
  font-weight: 400;
  font-family: "Montserrat", serif;
  color: #8f8f8f;
  font-size: 0.8125rem;

}
.form__textarea:-ms-input-placeholder {
  font-weight: 400;
  font-family: "Montserrat", serif;
  color: #8f8f8f;
  font-size: 0.8125rem;

}
.form__textarea::-ms-input-placeholder {
  font-weight: 400;
  font-family: "Montserrat", serif;
  color: #8f8f8f;
  font-size: 0.8125rem;

}
.form__textarea::placeholder {
  font-weight: 400;
  font-family: "Montserrat", serif;
  color: #8f8f8f;
  font-size: 0.8125rem;

}

.form__dropzone {
  min-height: 5.6875rem;
  padding: 1.25rem 1.875rem 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  border: 0.0625rem dashed rgba(0, 0, 0, 0.12);
  margin-bottom: 1.6875rem;
}
.form__dropzone p {
  text-align: center;
  font-size: 0.75rem;
}
.form__dropzone span {
  display: block;
  font-weight: 700;
}
.form__dropzone label {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}
@media (hover: hover) {
  .form__dropzone label:hover {
    background-color: rgba(237, 237, 237, 0.4666666667);
    -webkit-transition: background-color 0.2s linear;
    transition: background-color 0.2s linear;
  }
}
.form__dropzone.file--upload > p:first-of-type {
  display: none;
}

.has-error-msg {
  display: none;
}

.dnd-upload-status {
  display: none;
}

.form__input-file {
  display: none;
}

.hero__stats {
  background-image: url("../images/ab-bg.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 1000px) {
  .hero__stats {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

@media (max-width: 500px) {
  .serv-item .hero__stats {
    display: none;
  }
}

.hero__stats-list {
  max-width: 64.375rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.25rem;
  padding-top: 2.5rem;
  padding-bottom: 2.375rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 768px) {
  .hero__stats-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.875rem;
  }
}

.hero__stats-item img {
  display: inline-block;
  margin-right: 0.875rem;
}
.hero__stats-item span {
  display: inline;
  font-weight: 700;
  font-size: 4.0625rem;
  color: #fff;
  line-height: 1.1;
}
@media (max-width: 500px) {
  .hero__stats-item span {
    font-size: 2.5rem;
  }
}
.hero__stats-item p {
  font-size: 1rem;
  color: #ccc;
  text-align: center;
}

.services {
  padding-top: 3.75rem;
  padding-bottom: 4.375rem;
  background-color: #EDEDED;
}

.services__title {
  margin-bottom: 3.375rem;
}

.services__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
  gap: 2.625rem 1.875rem;
  margin-bottom: 3.75rem;
}

.services__item{
  z-index: 1;
}

.services__button {
  padding: 0.9375rem 3.125rem;
  font-size: 1rem;
  background-color: #EDEDED;
}

.services__button::after{
  background-color: #EDEDED;
}

@media (hover: hover) {
  .services__item:hover .services__item-bg::after {
    opacity: 1;
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
  }
}

.services__item-bg {
  position: relative;
  height: 17.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding: 1.25rem 1.5625rem;
  margin-bottom: 1.375rem;
}
.services__item-bg::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(0, 0, 0)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}
.services__item-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(3, 91, 201, 0.7) 0%, rgba(3, 91, 201, 0) 80%);
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.services__item-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

.services__item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 1;
}
.services__item-head .h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}
.services__item-head .arrow-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1.875rem;
  aspect-ratio: 1;
  background-color: #035BC9;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.services__item-desc {
  font-size: 0.875rem;
}

.about {
  position: relative;
  padding-top: 3.75rem;
  padding-bottom: 5.4375rem;
  background-color: #0B3887;
  color: #fff;
}
.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 100%;
  background-image: url("../images/m.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.about__wr {
  position: relative;
  z-index: 1;
}

.about__title {
  text-transform: uppercase;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
}
.about__title span {
  font-size: 1.5rem;
}

.about__title + p {
  font-size: 0.875rem;
  margin-bottom: 1.875rem;
}

.about__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2.5rem 1.25rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.about__text {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 31.25rem;
          flex: 0 1 31.25rem;
  font-size: 0.875rem;
}
.about__text h3 {
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.about__text ul {
  margin-bottom: 0.625rem;
}
.about__text li {
  position: relative;
  padding-left: 1.375rem;
}
.about__text li strong {
  display: block;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 0.3125rem;
}
.about__text li::before {
  content: "";
  position: absolute;
  top: 0.125rem;
  left: 0;
  width: 0.625rem;
  height: 0.625rem;
  background-color: #fff;
}
.about__text li:not(:last-child) {
  margin-bottom: 0.625rem;
}
.about__text p:not(:last-child) {
  margin-bottom: 1.25rem;
}
.about__text p:last-of-type {
  margin-bottom: 3.875rem;
}

.about__img {
  position: relative;
  top: 1.625rem;
  border: 0.125rem solid #fff;
}
.about__img img {
  position: relative;
  top: -1.375rem;
  left: -2.4375rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .about__img img {
    top: auto;
    left: auto;
  }
}

@media (max-width: 500px) {
  .about__img img {
    display: none;
  }
}
@media (max-width: 768px) {
  .about__img {
    border: none;
  }
}

.about__button {
  background: transparent;
  border-color: #fff;
  color: #fff;
  display: inline;
  padding: 0.9375rem 1.375rem;
  font-size: 1rem;
}
.about__button::after {
  background-color: #0B3887;
}
@media (hover: hover) {
  .about__button:hover {
    background-color: #fff;
    color: #0B3887;
  }
}

.advantages {
  padding: 6.4375rem 0 1.875rem;
  background-color: #EDEDED;
}

.advantages__title {
  margin-bottom: 3.5625rem;
}

.advantages__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(21.625rem, 21.625rem));
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.25rem;
}

.advantages__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 1.25rem;
  height: 13.75rem;
}
.advantages__item h3 {
  font-size: 0.6875rem;
  text-transform: uppercase;
  color: #0B3887;
  width: 43%;
}
.advantages__item p {
  width: 75%;
  -ms-flex-preferred-size: 8.75rem;
      flex-basis: 8.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.6875rem;
  font-weight: 600;
  background-color: #fff;
  padding: 0.625rem 0.625rem 0.625rem 4.375rem;
  overflow: auto;
}

.advantages__item-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
  z-index: 1;
}

.works {
  background-color: #EDEDED;
  padding-top: 1.5rem;
}

.works__title {
  margin-bottom: 2.0625rem;
}

.works__list .swiper-wrapper {
  will-change: transform;
}

.works__item {
  position: relative;
  height: 18.75rem;
  width: 22.8125rem;
  padding: 1.5625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
          cursor: pointer;
  
}
.works__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: grayscale(1) brightness(0.7);
          filter: grayscale(1) brightness(0.7);
  -webkit-transition: -webkit-filter 0.3s linear;
  transition: -webkit-filter 0.3s linear;
  transition: filter 0.3s linear;
  transition: filter 0.3s linear, -webkit-filter 0.3s linear;
}
.works__item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  z-index: 1;
  /* -webkit-backface-visibility: hidden;
  backface-visibility: hidden; */
  transform: translateZ(0);
  will-change: transform;
  
}
.works__item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(0, 0, 0)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  transform: translateZ(0);
  will-change: transform;
  
}
.works__item.swiper-slide-active img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
  -webkit-transition: -webkit-filter 0.3s linear;
  transition: -webkit-filter 0.3s linear;
  transition: filter 0.3s linear;
  transition: filter 0.3s linear, -webkit-filter 0.3s linear;
  will-change:filter;
}
@media (max-width: 1190px) {
  .works__item {
    width: 26vw;
  }
}
@media (max-width: 768px) {
  .works__item {
    width: 50vw;
  }
}

.works-btn-prev {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  background: -webkit-gradient(linear, right top, left top, from(rgba(3, 91, 201, 0.7)), color-stop(80%, rgba(3, 91, 201, 0)));
  background: linear-gradient(270deg, rgba(3, 91, 201, 0.7) 0%, rgba(3, 91, 201, 0) 80%);
}

.works-btn-next {
  right: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(3, 91, 201, 0.7)), color-stop(80%, rgba(3, 91, 201, 0)));
  background: linear-gradient(-270deg, rgba(3, 91, 201, 0.7) 0%, rgba(3, 91, 201, 0) 80%);
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.works-btn-next img {
  rotate: 180deg;
}

.why {
  padding-top: 3.75rem;
  padding-bottom: 3.3125rem;
  background-color: #EDEDED;
}

.why__title {
  margin-bottom: 3.4375rem;
}

.why__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20.625rem, 1fr));
  gap: 5rem 1.25rem;
}

@media (max-width:500px ){

    .why__list {
        grid-template-columns: 1fr;
        gap: 1.875rem;
    }
}

.why__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 3.875rem 5.625rem 0 0;
  min-height: 12.5rem;
}

@media (max-width:500px ){
    .why__item {
        padding: 0;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
    }
}
.why__item h3 {
  font-weight: 700;
  font-size: 1rem;
  color: #0B3887;
  margin-bottom: 0.625rem;
  text-transform: uppercase;
  line-height: 1.2;
}
@media (max-width: 1149px) {
  .why__item h3 {
    width: 90%;
  }
}

@media (max-width: 500px) {
  .why__item h3 {
    width: auto;
    flex: 1;
  }
}
.why__item p {
  font-size: 0.875rem;
  line-height: 1.2;
}
@media (max-width: 1149px) {
  .why__item p {
    width: 90%;
  }
}

@media (max-width: 500px) {
  .why__item p {
    width: auto;
    flex: 1 0 100%;
  }
}
.why__item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1.875rem;
  height: 100%;
  background-image: url("../images/why-line.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 800px) {
  .why__item::after {
    content: none;
  }
}
@media (min-width: 800px) and (max-width: 1149px) {
  .why__item {
    padding-right: 6.25rem;
  }
  .why__item:nth-child(2n)::after {
    content: none;
  }
}
@media (min-width: 1150px) {
  .why__item:nth-child(3n)::after {
    content: none;
  }
  .why__item:nth-child(3n) .why__num {
    right: 0;
  }
}

.why__num {
  position: absolute;
  top: -1.25rem;
  right: 2.8125rem;
  font-size: 8.5rem;
  font-weight: 700;
  line-height: 1;
  color: #035BC9;
}

@media (max-width:500px ){
    .why__num {
        position: static;
        flex: 0 0 6.875rem;
    }
}

.reviews {
  padding-top: 3.75rem;
  padding-bottom: 4.5625rem;
  background-image: url("../images/reciews_bg.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .reviews .container {
    padding: 0;
  }
}

.reviews__wr {
  position: relative;
}

.reviews__title {
  margin-bottom: 1.875rem;
  color: #fff;
}

.reviews__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.25rem;
  height: auto;
  color: #fff;
  background-color: #0B3887;
  padding: 3.125rem 1.875rem 1.875rem;
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}
.reviews__item p {
  font-size: 0.875rem;
  line-height: 1.3;
}
.reviews__item h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}
.reviews__item img {
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
}
.reviews__item.swiper-slide-active {
  background-color: #035BC9;
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}

.reviews__list-wr {
  position: relative;
}

.reviews-btn-prev {
  left: 0;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  background: -webkit-gradient(linear, right top, left top, from(rgb(10, 59, 142)), to(rgb(4, 86, 192)));
  background: linear-gradient(270deg, rgb(10, 59, 142) 0%, rgb(4, 86, 192) 100%);
}
@media (max-width: 1290px) {
  .reviews-btn-prev {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.reviews-btn-next {
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  background: -webkit-gradient(linear, left top, right top, from(rgb(10, 59, 142)), to(rgb(4, 86, 192)));
  background: linear-gradient(90deg, rgb(10, 59, 142) 0%, rgb(4, 86, 192) 100%);
}
.reviews-btn-next img {
  rotate: 180deg;
}
@media (max-width: 1290px) {
  .reviews-btn-next {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.reviews-btn-prev,
.reviews-btn-next {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  padding: 0 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
@media (max-width: 1290px) {
  .reviews-btn-prev,
  .reviews-btn-next {
    width: 3.75rem;
    padding: 0;
  }
}
@media (max-width: 768px) {
  .reviews-btn-prev,
  .reviews-btn-next {
    -webkit-transform: none;
            transform: none;
    z-index: 2;
    width: 25%;
  }
}
@media (max-width: 768px) {
  .reviews-btn-prev,
  .reviews-btn-next {
    width: 17%;
  }
}

.calc {
  background-image: url("../images/contact_bg.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 4.125rem;
  padding-bottom: 4.5rem;
}
.calc .form {
  -ms-flex-preferred-size: 30rem;
      flex-basis: 30rem;
  padding: 0;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.calc .form__title {
  line-height: 1;
  font-size: 2.5rem;
  margin-bottom: 1.875rem;
  text-transform: uppercase;
}

@media (max-width: 500px) {

  .calc .form__title {
    font-size: 1.5rem;
  }
}

.calc .form__dropzone {
  margin-bottom: 2.125rem;
}
.calc input {
  border: none;
  background-color: #DEDEDE;
}
.calc .form__textarea {
  font-size: 1rem;
  height: 10.5rem;
  border: none;
  background-color: #DEDEDE;
}
.calc .form__button {
  background-color: #EDEDED;
}
.calc .form__button::after {
  background-color: #EDEDED;
}
@media (hover: hover) {
  .calc .form__button:hover {
    background-color: #0B3887;
  }
}

.calc__wr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.25rem;
}
@media (max-width: 900px) {
  .calc__wr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 768px) {
  .calc__wr {
    text-align: center;
  }
}

.calc__contacts {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 32.5rem;
          flex: 0 1 32.5rem;
}

.calc__row:not(:last-child) {
  margin-bottom: 1.875rem;
}
.calc__row h3 {
  font-weight: 700;
  font-size: 1.375rem;
  text-transform: uppercase;
  color: #0B3887;
  margin-bottom: 0.625rem;
}
.calc__row p {
  font-size: 1rem;
}
.calc__row p:not(:last-child) {
  margin-bottom: 0.625rem;
}
.calc__row a {
  display: block;
  font-size: 1rem;
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
}
.calc__row a:not(:last-child) {
  margin-bottom: 0.625rem;
}
@media (hover: hover) {
  .calc__row a:hover {
    color: #0B3887;
    -webkit-transition: color 0.2s linear;
    transition: color 0.2s linear;
  }
}

.calc__present {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: underline;
  color: #0B3887;
  margin-bottom: 0;
}
@media (hover: hover) {
  .calc__present:hover {
    text-decoration: none;
  }
}

.calc__info {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 34.375rem;
          flex: 0 1 34.375rem;
}
@media (max-width: 900px) {
  .calc__info {
    flex-basis: auto;
  }
}
.calc__info h2 {
  font-size: 2rem;
  color: #0B3887;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
@media (max-width: 500px) {
  .calc__info h2 {
    font-size: 1.5rem;
  }
}
.calc__info p {
  font-size: 1rem;
}
.calc__info p strong {
  color: #0B3887;
}
.calc__info p:not(:last-child) {
  margin-bottom: 1.25rem;
}

.services-info {
  background-color: #EDEDED;
  padding-top: 3.75rem;
  padding-bottom: 4.1875rem;
}
.services-info h2 {
  text-transform: uppercase;
  color: #0B3887;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.125rem;
  line-height: 1.4;
}
@media (max-width: 500px) {
  .services-info h2 {
    font-size: 1.375rem;
  }
}
.services-info p {
  font-size: 1rem;
  margin-bottom: 1.25rem;
}
.services-info h3 {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
  color: #0B3887;
  margin-bottom: 1.5625rem;
}
.services-info li {
  position: relative;
  padding-left: 1.25rem;
}
.services-info li h4 {
  line-height: 1;
  margin-bottom: 0.3125rem;
  color: #0B3887;
  font-weight: 700;
}
.services-info li p {
  margin-bottom: 0;
}
.services-info li::before {
  content: "";
  position: absolute;
  top: 0.125rem;
  left: 0;
  width: 0.625rem;
  height: 0.625rem;
  background-color: #035BC9;
}
.services-info li:not(:last-child) {
  margin-bottom: 0.9375rem;
}

.tech {
  position: relative;
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
  background-color: #0B3887;
}
.tech::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background-image: url(../images/m.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.tech__wr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 3.75rem 1.25rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.tech__info {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 31.875rem;
          flex: 0 1 31.875rem;
  font-size: 1rem;
  color: #fff;
}
.tech__info p {
  margin-bottom: 0.9375rem;
}
.tech__info li {
  position: relative;
  padding-left: 1.25rem;
}
.tech__info li:not(:last-child) {
  margin-bottom: 0.3125rem;
}
.tech__info li::before {
  content: "";
  position: absolute;
  top: 0.375rem;
  left: 0;
  width: 0.625rem;
  height: 0.625rem;
  background-color: #035BC9;
}

.tech__info h2 {
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2.125rem;
}
@media (max-width: 500px) {
  .tech__title {
    font-size: 1.875rem;
  }
}

.tech__img {
  width: 30rem;
  aspect-ratio: 480 / 350;
  position: relative;
  top: 0.625rem;
  border: 0.125rem solid #fff;
}
.tech__img img {
  position: relative;
  top: -2.5rem;
  left: -2.5rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 500px) {
  .tech__img img {
    top: auto;
    left: auto;
  }
}
@media (max-width: 500px) {
  .tech__img {
    border: none;
  }
}

.privacy {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
  background-color: #EDEDED;
}

.privacy h1 {
  margin-bottom: 1.875rem;
}

.privacy h2 {
  margin-bottom: 1.25rem;
}

.privacy li strong {
  line-height: 2;;
}
.privacy ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1.25rem;
}

.footer {
  padding: 2.5rem 0;
  background-color: #0B3887;
}

.footer__wr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.625rem;
}
@media (max-width: 1030px) {
  .footer__wr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.875rem;
  }
}

.footer__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__col .footer__logo {
  width: 10.75rem;
  margin-bottom: 1.25rem;
}
.footer__col span {
  font-size: 0.6875rem;
  color: #fff;
}
.footer__col span a {
  text-decoration: underline;
}
.footer__col span a:hover {
  text-decoration: none;
}
.footer__col:nth-child(2) {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.25rem;
}

.footer__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (hover: hover) {
  .footer__socials a:hover svg path {
    fill: #111111;
    -webkit-transition: fill 0.2s linear;
    transition: fill 0.2s linear;
  }
}
@media (max-width: 1030px) {
  .footer__socials {
    width: auto;
  }
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.875rem;
  color: #fff;
}
.footer__nav a {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
}
@media (hover: hover) {
  .footer__nav a:hover {
    color: #035BC9;
    -webkit-transition: color 0.2s linear;
    transition: color 0.2s linear;
  }
}
@media (max-width: 700px) {
  .footer__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.625rem;
  }
}

.footer__contact {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.footer__contact:not(:last-child) {
  margin-bottom: 0.625rem;
}
@media (hover: hover) {
  .footer__contact:hover {
    color: #035BC9;
    -webkit-transition: color 0.2s linear;
    transition: color 0.2s linear;
  }

}

.popup{
    display: none;
    width: 100%;
    max-width: 27.5rem;
    position: relative;
    background-color: #fff;
    border-radius: 0.3125rem;
    padding: 2.5rem;
    font-size: 1.5rem;
}

@media (max-width: 500px) {
  .popup {
    padding: 0.9375rem;
  }
}

.popup__content{
   text-align: center;
}
.popup__content > p{
   font-size: 0.75rem;
   line-height: 1.2;
   margin-bottom: 1.25rem;
}

.popup__content h3{
   color: #0B3887;
   margin-bottom: 0.625rem;
}
.popup__content .form__inputs p{
   flex-direction: column;
}
.codedropz-upload-handler {
  display: none;
}



/*# sourceMappingURL=main.css.map */
/* Lighting page update */
.header__nav-item {
  position: relative;
}
.header__nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}
.header__nav-link::after {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  border-right: 0.125rem solid currentColor;
  border-bottom: 0.125rem solid currentColor;
  transform: rotate(45deg) translateY(-0.125rem);
}
.header__dropdown {
  position: absolute;
  top: calc(100% + 0.875rem);
  left: -1rem;
  min-width: 18.75rem;
  padding: 0.75rem;
  background-color: #fff;
  box-shadow: 0 0.75rem 1.875rem rgba(0, 0, 0, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.625rem);
  transition: opacity 0.2s linear, transform 0.2s linear, visibility 0.2s linear;
  z-index: 20;
}
.header__dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -0.875rem;
  height: 0.875rem;
}
.header__nav-item:hover .header__dropdown,
.header__nav-item:focus-within .header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header__dropdown a {
  display: block;
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25;
  color: #000;
  border-bottom: 0.0625rem solid rgba(11, 56, 135, 0.12);
}
.header__dropdown a:last-child {
  border-bottom: none;
}
.header__dropdown .header__dropdown-featured {
  margin-top: 0.3125rem;
  color: #0B3887;
  font-weight: 700;
  text-transform: uppercase;
}
.bm__nav-group {
  color: #0B3887;
}
.bm__nav-group summary {
  cursor: pointer;
  list-style: none;
}
.bm__nav-group summary::-webkit-details-marker {
  display: none;
}
.bm__nav-group summary::after {
  content: "+";
  display: inline-block;
  margin-left: 0.625rem;
}
.bm__nav-group[open] summary::after {
  content: "−";
}
.bm__submenu {
  display: grid;
  gap: 0.625rem;
  padding-top: 0.875rem;
  padding-left: 1rem;
  font-size: 1rem;
  line-height: 1.35;
  text-transform: none;
  color: #000;
  font-weight: 400;
}
.bm__submenu .bm__submenu-featured {
  color: #0B3887;
  font-weight: 700;
}
.lighting-page {
  overflow: hidden;
}
.lighting-hero {
  position: relative;
  min-height: 42rem;
  display: flex;
  align-items: stretch;
  color: #fff;
  background-color: #0B3887;
}
.lighting-hero__picture,
.lighting-hero__picture img,
.lighting-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.lighting-hero__picture img {
  object-fit: cover;
  object-position: center;
}
.lighting-hero__overlay {
  background: linear-gradient(90deg, rgba(11, 56, 135, 0.92) 0%, rgba(11, 56, 135, 0.72) 42%, rgba(11, 56, 135, 0.16) 100%);
  z-index: 1;
}
.lighting-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
  width: 100%;
}
.lighting-hero__content {
  flex: 0 1 35rem;
}
.lighting-eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.375rem 0.75rem;
  color: #0B3887;
  background-color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
.lighting-eyebrow--light {
  color: #fff;
  background-color: #035BC9;
}
.lighting-hero__title {
  color: #fff;
  line-height: 1.12;
  margin-bottom: 1.25rem;
}
.lighting-hero__text {
  max-width: 34rem;
  font-size: 1.1875rem;
  line-height: 1.45;
  margin-bottom: 2rem;
}
.lighting-hero__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.lighting-button {
  margin: 0;
  background-color: #fff;
}

.lighting-button::after {
  display: none;
}
.lighting-products-note {
  margin-top: 1.5rem;
  padding: 1.5rem 1.75rem;
  border-left: 0.25rem solid #035BC9;
  background-color: #EDEDED;
  font-size: 1rem;
  line-height: 1.55;
}
.lighting-products-note strong {
  display: inline;
  color: #0B3887;
  font-weight: 700;
}

.lighting-link {
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}
.lighting-hero__form {
  color: #000;
}
.lighting-section {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  background-color: #fff;
}
.lighting-section--gray {
  background-color: #EDEDED;
}
.lighting-section__title {
  margin-bottom: 1rem;
}
.lighting-section__lead {
  max-width: 49rem;
  margin: 0 auto 2.75rem;
  font-size: 1.0625rem;
  text-align: center;
}
.lighting-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.lighting-card {
  position: relative;
  min-height: 12rem;
  padding: 1.5rem;
  background-color: #fff;
  border: 0.0625rem solid rgba(11, 56, 135, 0.18);
  box-shadow: 0 0.5rem 1.25rem rgba(34, 60, 80, 0.08);
}
.lighting-card::before {
  content: "";
  display: block;
  width: 2.5rem;
  height: 0.25rem;
  margin-bottom: 1.25rem;
  background-color: #035BC9;
}
.lighting-card h3 {
  margin-bottom: 0.75rem;
  color: #0B3887;
  font-size: 1.125rem;
  line-height: 1.25;
  text-transform: uppercase;
}
.lighting-card p {
  font-size: 0.9375rem;
}
.lighting-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
.lighting-product {
  display: grid;
  grid-template-columns: 12.5rem 1fr;
  gap: 1.25rem;
  align-items: center;
  padding: 1rem;
  background-color: #EDEDED;
}
.lighting-product img {
  width: 100%;
  height: 10.625rem;
  object-fit: cover;
}
.lighting-product h3 {
  margin-bottom: 0.625rem;
  color: #0B3887;
  font-size: 1.125rem;
  text-transform: uppercase;
}
.lighting-product p {
  font-size: 0.9375rem;
}
.lighting-style {
  position: relative;
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  background-color: #0B3887;
  color: #fff;
}
.lighting-style::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 38%;
  height: 100%;
  background-image: url(../images/m.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.55;
}
.lighting-style__wr {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}
.lighting-style__info h2 {
  margin-bottom: 1.25rem;
  color: #fff;
  font-size: 2rem;
  line-height: 1.25;
  text-transform: uppercase;
}
.lighting-style__info p {
  font-size: 1rem;
}
.lighting-style__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.lighting-style__item {
  padding: 1.25rem;
  border: 0.0625rem solid rgba(255,255,255,0.35);
  background-color: rgba(255,255,255,0.08);
}
.lighting-style__item h3 {
  margin-bottom: 0.625rem;
  font-size: 1rem;
  text-transform: uppercase;
}
.lighting-style__item p {
  font-size: 0.9375rem;
}
.lighting-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.lighting-step {
  min-height: 13.75rem;
  padding: 1.5rem;
  background-color: #fff;
}
.lighting-step span {
  margin-bottom: 1.25rem;
  color: #035BC9;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.lighting-step h3 {
  margin-bottom: 0.625rem;
  color: #0B3887;
  font-size: 1rem;
  text-transform: uppercase;
}
.lighting-step p {
  font-size: 0.9375rem;
}
.lighting-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.lighting-gallery__item {
  height: 16.25rem;
  overflow: hidden;
  background-color: #EDEDED;
}
.lighting-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s linear;
}
@media (hover: hover) {
  .lighting-gallery__item:hover img {
    transform: scale(1.04);
  }
}
.lighting-calc {
  background-image: url("../images/contact_bg.webp");
}
.lighting-calc__info h2 {
  max-width: 34rem;
}
@media (max-width: 1120px) {
  .lighting-hero__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .lighting-hero__content {
    flex-basis: auto;
  }
  .lighting-hero__form {
    flex-basis: auto;
  }
}
@media (max-width: 900px) {
  .lighting-cards,
  .lighting-steps,
  .lighting-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lighting-products {
    grid-template-columns: 1fr;
  }
  .lighting-style__wr {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .lighting-hero {
    min-height: auto;
  }
  .lighting-hero__overlay {
    background: rgba(11, 56, 135, 0.86);
  }
  .lighting-hero__inner,
  .lighting-section,
  .lighting-style {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .lighting-hero__text,
  .lighting-section__lead {
    font-size: 1rem;
  }
  .lighting-cards,
  .lighting-steps,
  .lighting-gallery,
  .lighting-style__list {
    grid-template-columns: 1fr;
  }
  .lighting-product {
    grid-template-columns: 1fr;
  }
  .lighting-product img,
  .lighting-gallery__item {
    height: 14rem;
  }
  .lighting-card,
  .lighting-step {
    min-height: auto;
  }
}

/* Lighting page fine-tuning v5 */
.lighting-hero__content {
  flex: 0 1 39rem;
}
.lighting-hero__title {
  max-width: 33rem;
  font-size: 2.95rem;
  line-height: 1.06;
}
.lighting-hero__text {
  max-width: 32rem;
  font-size: 1.0625rem;
  line-height: 1.5;
}
@media (max-width: 1280px) {
  .lighting-hero__title {
    font-size: 2.65rem;
  }
}
