@charset "UTF-8";
@font-face {
  font-family: "Lufga-Medium";
  src: url("../fonts/Lufga-Medium.eot");
  src: url("../fonts/Lufga-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Lufga-ExtraLight";
  src: url("../fonts/Lufga-ExtraLight.eot");
  src: url("../fonts/Lufga-ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Lufga-Black";
  src: url("../fonts/Lufga-Black.eot");
  src: url("../fonts/Lufga-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Lufga-Regular";
  src: url("../fonts/Lufga-Regular.eot");
  src: url("../fonts/Lufga-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Lufga-ExtraBold";
  src: url("../fonts/Lufga-ExtraBold.eot");
  src: url("../fonts/Lufga-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Lufga-Light";
  src: url("../fonts/Lufga-Light.eot");
  src: url("../fonts/Lufga-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Lufga-Bold";
  src: url("../fonts/Lufga-Bold.eot");
  src: url("../fonts/Lufga-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Lufga-SemiBold";
  src: url("../fonts/Lufga-SemiBold.eot");
  src: url("../fonts/Lufga-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Lufga-Thin";
  src: url("../fonts/Lufga-Thin.eot");
  src: url("../fonts/Lufga-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
}
.container {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 1600px) {
  .container {
    max-width: 1440px;
  }
}
@media screen and (max-width: 1440px) {
  .container {
    max-width: 1360px;
  }
}

.page__cont h1 {
  margin-bottom: 30px;
}
.page__cont h2 {
  margin-bottom: 30px;
}
.page__cont h3 {
  margin-bottom: 30px;
}
.page__cont h4 {
  margin-bottom: 30px;
}
.page__cont p {
  margin-bottom: 30px;
  font-size: 22px;
  font-family: "Lufga-Light";
}

/* Указываем box sizing */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
  padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: "Lufga-Regular";
  color: #121212;
  background: #fff;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class] {
  list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Упрощаем работу с изображениями */
img {
  max-width: 100%;
  display: block;
}

/* Указываем понятную периодичность в потоке данных у article*/
article > * + * {
  margin-top: 1em;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  font: inherit;
}

.logged-in .header {
  top: 32px;
}

.header {
  padding: 35px 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
@media screen and (max-width: 1024px) {
  .header {
    padding: 15px 0;
  }
}

.header-fixed {
  background: #fff;
  -webkit-box-shadow: 0px 0px 3px rgba(18, 18, 18, 0.6);
          box-shadow: 0px 0px 3px rgba(18, 18, 18, 0.6);
  padding: 10px 0;
}

.header__row {
  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;
}

@media screen and (max-width: 1024px) {
  .logo img {
    height: 31px;
  }
}

.top__menu .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.top__menu .menu .menu-item {
  margin-right: 90px;
}
.top__menu .menu .menu-item:nth-last-child(1) {
  margin-right: 0;
}
.top__menu .menu .menu-item a {
  font-size: 22px;
  color: #000;
  text-decoration: none;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
.top__menu .menu .menu-item a:hover {
  color: #407BFF;
  font-family: "Lufga-Bold";
}
.top__menu .menu .current-menu-item a {
  color: #407BFF;
  font-family: "Lufga-Bold";
}
.burger__button {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 100px;
  background: #407BFF;
}
@media screen and (max-width: 1024px) {
  .burger__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.burger__name {
  font-size: 17px;
  color: #fff;
  line-height: 100%;
  margin-right: 11px;
  display: none;
}
@media screen and (max-width: 1024px) {
  .burger__name {
    font-size: 14px;
  }
}

.burger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 32px;
  height: 32px;
  position: relative;
}
.burger span {
  width: 18px;
  height: 2px;
  margin-bottom: 3px;
  background: #fff;
  display: block;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
.burger span:nth-last-child(1) {
  margin-bottom: 0;
}
.burger__opened span {
  position: absolute;
  margin-bottom: 0;
}
.burger__opened span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.burger__opened span:nth-child(2) {
  opacity: 0;
}
.burger__opened span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.body__opened {
  overflow: hidden;
}

.mobile__menu {
  position: fixed;
  top: 91px;
  left: 20px;
  width: calc(100% - 40px);
  height: auto;
  background: #ffffff url("../img/burger.png") no-repeat center;
  padding: 15px;
  z-index: 101;
  -webkit-transform: translate(-200%, 0);
          transform: translate(-200%, 0);
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  border-radius: 30px;
}
.mobile__menu .menu {
  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;
}
.mobile__menu .menu .menu-item {
  margin-bottom: 50px;
  margin-right: 0;
}
.mobile__menu .menu .menu-item a {
  font-size: 20px;
}

.mobile__menu__opened {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.back {
  background: url("../img/back.svg") no-repeat;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 98;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  opacity: 0;
  visibility: hidden;
}

.title404 {
  font-size: 200px;
  color: #051973;
  font-family: "Lufga-Black";
}
@media screen and (max-width: 1024px) {
  .title404 {
    font-size: 100px;
  }
}

.body__opened .back {
  opacity: 1;
  visibility: visible;
}

.section1 {
  padding-top: 340px;
  background: url("../img/section1.png") no-repeat center;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .section1 {
    padding-top: 98px;
    background-size: contain;
    background-position: 0px 170px;
  }
}
.section1 .container {
  position: relative;
}

.section1__decor1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.section1__decor2 {
  position: absolute;
  bottom: 0;
  right: 0;
}

.section1__title {
  font-family: "Lufga-Medium";
  font-size: 65px;
  line-height: 85px;
  color: #051973;
  text-align: center;
}
@media screen and (max-width: 1600px) {
  .section1__title {
    font-size: 55px;
    line-height: 75px;
  }
}
.section1__title span {
  color: #407BFF;
}
.section1__title .k1 {
  position: relative;
  bottom: 12px;
  left: 8px;
  padding: 0 5px;
}
@media screen and (max-width: 1024px) {
  .section1__title .k1 {
    bottom: 4px;
    left: 3px;
  }
}
@media screen and (max-width: 1024px) {
  .section1__title {
    font-size: 30px;
    line-height: 35px;
    font-family: "Lufga-Medium";
    margin-bottom: 46px;
  }
  .section1__title span {
    font-size: 18px;
    line-height: 35px;
  }
}

.title {
  position: relative;
}

@media screen and (max-width: 1024px) {
  .section1__blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.section1__block {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0px 5.09091px rgba(0, 0, 0, 0.04), 0px 10.1818px 20.3636px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 0px 5.09091px rgba(0, 0, 0, 0.04), 0px 10.1818px 20.3636px rgba(0, 0, 0, 0.08);
  border-radius: 127.273px;
  font-size: 20px;
  color: #041C73;
  font-family: "Lufga-Bold";
  padding: 12px 33px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .section1__block {
    font-size: 14px;
  }
}

.block1 {
  position: absolute;
  top: -80px;
  left: 150px;
}
.block1::after {
  content: "";
  width: 30px;
  height: 26px;
  background: url("../img/str1.svg") no-repeat;
  display: block;
  position: absolute;
  right: -30px;
}
@media screen and (max-width: 1024px) {
  .block1 {
    position: relative;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin-top: 35px;
  }
  .block1::after {
    background: url("../img/str4.svg") no-repeat;
    left: -20px;
    top: -24px;
  }
}

.block2 {
  position: absolute;
  top: -80px;
  right: 226px;
}
.block2::after {
  content: "";
  width: 30px;
  height: 26px;
  background: url("../img/str2.svg") no-repeat;
  display: block;
  position: absolute;
  left: -30px;
}
@media screen and (max-width: 1024px) {
  .block2 {
    position: relative;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: none;
  }
}

.block3 {
  position: absolute;
  bottom: -80px;
  left: 0px;
}
.block3::after {
  content: "";
  width: 30px;
  height: 26px;
  background: url("../img/str3.svg") no-repeat;
  display: block;
  position: absolute;
  right: -30px;
  top: 0;
}
@media screen and (max-width: 1024px) {
  .block3 {
    position: relative;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
  }
  .block3::after {
    top: -20px;
  }
}

.block4 {
  position: absolute;
  bottom: -80px;
  right: 0px;
}
.block4::after {
  content: "";
  width: 30px;
  height: 26px;
  background: url("../img/str4.svg") no-repeat;
  display: block;
  position: absolute;
  left: -30px;
  top: -26px;
}
@media screen and (max-width: 1024px) {
  .block4 {
    position: relative;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: none;
  }
}

.section1__row {
  margin-top: 300px;
}

.section1__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}
@media screen and (max-width: 1024px) {
  .section1__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    margin-top: 44px;
  }
}

.section1__item {
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
.section1__item:hover {
  -webkit-transform: translate(0px, -20px);
          transform: translate(0px, -20px);
}

.s1__item__img {
  background: #f2f2f2;
  padding-left: 80px;
  padding-right: 80px;
  padding-top: 40px;
  padding-bottom: 12px;
  border-radius: 30px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 15px;
}
.s1__item__img::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 30px;
  background: -webkit-gradient(linear, left top, right bottom, color-stop(10%, #CDCDCD), color-stop(90%, white));
  background: linear-gradient(to bottom right, #CDCDCD 10%, white 90%);
  z-index: -1;
}

.item__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.item__title {
  color: #051973;
  font-family: "Lufga-Medium";
  font-size: 28px;
  line-height: auto;
  min-height: 84px;
}
@media screen and (max-width: 1024px) {
  .item__title {
    font-size: 22px;
    min-height: auto;
  }
  .item__title br {
    display: none;
  }
}

.item__line {
  width: 105px;
  height: 1px;
  background: #051973;
  margin: 13px 0;
}

.item__txt {
  font-family: "Lufga-Light";
  font-size: 22px;
  line-height: auto;
}
@media screen and (max-width: 1024px) {
  .item__txt {
    font-size: 18px;
  }
}

.item__number {
  font-family: "Lufga-Medium";
  font-size: 45px;
  color: #407BFF;
}
@media screen and (max-width: 1024px) {
  .item__number {
    font-size: 22px;
  }
}

.section2 {
  margin-top: 100px;
}
@media screen and (max-width: 1024px) {
  .section2 {
    margin-top: 30px;
  }
}

.section2__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .section2__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.section2__left {
  width: 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.section2__left img {
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1024px) {
  .section2__left {
    width: 100%;
  }
}

.section2__right {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .section2__right {
    width: 100%;
  }
}

.section2__title {
  font-size: 45px;
  font-family: "Lufga-Medium";
  color: #051973;
}
@media screen and (max-width: 1024px) {
  .section2__title {
    font-size: 25px;
  }
}

.section2__line {
  width: 105px;
  height: 1px;
  background: #051973;
  margin: 22px 0;
}

.section2__content {
  font-size: 22px;
  font-family: "Lufga-Light";
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .section2__content {
    font-size: 17px;
  }
}
.section2__content p {
  margin-bottom: 20px;
}
.section2__content p:nth-last-child(1) {
  margin-bottom: 0;
}

.section2__number {
  position: relative;
  background: #fff;
  border-radius: 50px;
  margin-bottom: 33px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px 26px;
}
@media screen and (max-width: 1024px) {
  .section2__number {
    padding: 11px 23px;
  }
}
.section2__number:nth-last-child(1) {
  margin-bottom: 0;
}
.section2__number::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50px;
  background: -webkit-gradient(linear, left top, right bottom, color-stop(10%, #CDCDCD), color-stop(90%, white));
  background: linear-gradient(to bottom right, #CDCDCD 10%, white 90%);
  z-index: -1;
}

.number__txt1 {
  color: #051973;
  font-size: 45px;
  font-family: "Lufga-Medium";
  min-width: 112px;
}
@media screen and (max-width: 1024px) {
  .number__txt1 {
    font-size: 30px;
    min-width: 75px;
  }
}

.number__line {
  height: 44px;
  min-width: 1px;
  width: 1px;
  background: #051973;
  margin: 0 26px;
}
@media screen and (max-width: 1024px) {
  .number__line {
    margin: 0 14px;
  }
}

.number__txt3 {
  font-size: 22px;
  font-family: "Lufga-Medium";
  color: #051973;
}
@media screen and (max-width: 1024px) {
  .number__txt3 {
    font-size: 17px;
  }
}

.section3 {
  margin-top: 100px;
}
@media screen and (max-width: 1024px) {
  .section3 {
    margin-top: 60px;
  }
}

.section3__title {
  color: #051973;
  font-size: 45px;
  text-align: center;
  font-family: "Lufga-Medium";
}
@media screen and (max-width: 1024px) {
  .section3__title {
    font-size: 25px;
  }
}

.section3__line {
  width: 105px;
  height: 1px;
  margin: 22px auto;
  background: #051973;
}

.section3__txt {
  font-size: 30px;
  margin-bottom: 28px;
  text-align: center;
  font-family: "Lufga-Light";
}
@media screen and (max-width: 1024px) {
  .section3__txt {
    font-size: 18px;
  }
}

.section3__services {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 30px;
}
@media screen and (max-width: 1024px) {
  .section3__services {
    display: none;
  }
}

.service__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 17px;
}
.service__img img {
  height: 217px;
}

.service__title {
  font-size: 28px;
  font-family: "Lufga-Medium";
  text-align: center;
  color: #051973;
  min-height: 60px;
  line-height: 100%;
}
.service__title span {
  font-size: 18px;
}
@media screen and (max-width: 1024px) {
  .service__title {
    font-size: 25px;
  }
}

.service__line {
  width: 100%;
  height: 1px;
  background: rgba(128, 185, 255, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  margin: 20px 0;
}
@media screen and (max-width: 1024px) {
  .service__line {
    display: none;
  }
}
.service__line::after {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 100px;
  background: #3F4E93;
  display: block;
  position: absolute;
}

.service__txt {
  font-size: 22px;
  font-family: "Lufga-Light";
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .service__txt {
    font-size: 18px;
  }
}

.swiper {
  display: none;
}
@media screen and (max-width: 1024px) {
  .swiper {
    display: block;
  }
}

.swiper-pagination {
  position: relative;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin-top: 14px;
}

.swiper-pagination-bullet {
  border: 1px solid #407BFF;
  background: #fff;
  opacity: 1;
  width: 12px;
  height: 12px;
}

.swiper-pagination-bullet-active {
  background: #407BFF;
}

@media screen and (max-width: 1024px) {
  .section4 .section2__right {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media screen and (max-width: 1024px) {
  .section4 .section2__left {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.page__section {
  margin-top: 126px;
}
@media screen and (max-width: 1024px) {
  .page__section {
    margin-top: 90px;
  }
}

.breadcrumbs {
  margin-bottom: 50px;
  font-size: 16px;
  color: #000;
}
@media screen and (max-width: 1024px) {
  .breadcrumbs {
    margin-bottom: 11px;
  }
}
.breadcrumbs a {
  text-decoration: underline;
  color: #000;
}

.p__block {
  padding: 40px 36px;
  border-radius: 30px;
  background: #fff;
  border: 3px solid rgba(5, 25, 115, 0.5);
}
@media screen and (max-width: 1024px) {
  .p__block {
    padding: 25px 17px;
  }
}

.p__title {
  font-size: 45px;
  color: #051973;
  font-family: "Lufga-Medium";
}
.p__title::after {
  content: "";
  width: 105px;
  height: 1px;
  background: #051973;
  display: block;
}
@media screen and (max-width: 1024px) {
  .p__title {
    font-size: 30px;
  }
}

.mobile__title {
  display: none;
}
@media screen and (max-width: 1024px) {
  .mobile__title {
    display: block;
    margin-bottom: 22px;
  }
}

.p__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .p__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p__left {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .p__left {
    width: 100%;
  }
}

@media screen and (max-width: 1024px) {
  .p__item {
    margin-bottom: 15px;
  }
}
.p__item:nth-last-child(1) .p__item__img::after {
  display: none;
}

@media screen and (max-width: 1024px) {
  .p__logo {
    display: none;
  }
}

.p__item__img {
  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;
}
.p__item__img::after {
  content: "";
  width: 1px;
  height: 19px;
  background: #051973;
  display: block;
}
@media screen and (max-width: 1024px) {
  .p__item__img img {
    min-width: 50px;
    min-height: 50px;
    width: 50px;
    height: 50px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.p__right {
  width: 48%;
  font-family: "Lufga-Light";
  font-size: 22px;
}
.p__right p {
  margin-bottom: 30px;
}
.p__right p:nth-last-child(1) {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .p__right {
    width: 100%;
    margin-top: 22px;
    font-size: 18px;
    margin-bottom: 22px;
  }
}

.p__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p__item__txt {
  font-size: 25px;
  font-family: "Lufga-Medium";
  color: #051973;
  position: relative;
  top: -15px;
}
@media screen and (max-width: 1024px) {
  .p__item__txt {
    font-size: 19px;
  }
}

.p__row2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 20px;
}

.p__row2__txt {
  font-size: 23px;
  font-family: "Lufga-Medium";
  color: #051973;
}
@media screen and (max-width: 1024px) {
  .p__row2__txt {
    font-size: 20px;
  }
}

.sec__services {
  background: url("../img/section1.png") no-repeat center;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .sec__services {
    background-size: contain;
    background-position: 0px 170px;
  }
}

.page__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.page__row .block3 {
  position: absolute;
  top: calc(50% - 25px);
  height: 52px;
  left: calc(50% - 70px);
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 1024px) {
  .page__row .block3 {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .page__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.page__left {
  width: 40%;
}
@media screen and (max-width: 1024px) {
  .page__left {
    width: 100%;
  }
}

.page__right {
  width: 40%;
}
@media screen and (max-width: 1024px) {
  .page__right {
    width: 100%;
  }
}

.services__title {
  margin-bottom: 22px;
}

.service__content {
  font-size: 22px;
  margin-bottom: 30px;
  font-family: "Lufga-Light";
}
.service__content p {
  margin-bottom: 30px;
}
.service__content p:nth-last-child(1) {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .service__content {
    font-size: 18px;
  }
}

.service__button .button {
  text-decoration: none;
  max-width: 220px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .service__button .button {
    max-width: 100%;
  }
}

.long {
  display: none;
}

.services__block {
  margin-top: 20px;
}

.services__block__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .services__block__title {
    font-size: 25px;
  }
}

.services__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 34px 1fr 34px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 34px;
}
@media screen and (max-width: 1024px) {
  .services__row {
    display: none;
  }
}

.services__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 25px;
}

.services__title {
  font-family: "Lufga-Medium";
  font-size: 55px;
  color: #051973;
  margin-bottom: 34px;
}
@media screen and (max-width: 1024px) {
  .services__title {
    font-size: 25px;
    margin-bottom: 18px;
  }
}

.services__title__block {
  font-family: "Lufga-Medium";
  font-size: 25px;
  margin-bottom: 34px;
  color: #051973;
}
@media screen and (max-width: 1024px) {
  .services__title__block {
    text-align: center;
    font-size: 22px;
    margin-bottom: 18px;
  }
}

.services__txt {
  font-size: 20px;
  font-family: "Lufga-Light";
}
@media screen and (max-width: 1024px) {
  .services__txt {
    text-align: center;
    font-size: 18px;
  }
}

.readmore {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  color: #407BFF;
  font-size: 20px;
  font-family: "Lufga-Bold";
}
@media screen and (max-width: 1024px) {
  .readmore {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 14px;
  }
}
.readmore:hover {
  opacity: 0.7;
}
.readmore::after {
  content: "";
  width: 12px;
  height: 12px;
  background: url("../img/readmore.svg");
  display: block;
  margin-left: 16px;
}

.about__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .about__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.about__left {
  width: 24%;
  position: relative;
  background: #fff;
  border-radius: 30px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  padding: 26px;
}
@media screen and (max-width: 1024px) {
  .about__left {
    padding: 17px 20px;
    margin-bottom: 14px;
  }
  .about__left::after {
    content: "";
    width: 21px;
    height: 21px;
    background: url("../img/arrow.svg") no-repeat;
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
  }
}
.about__left::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 30px;
  background: -webkit-gradient(linear, left top, right bottom, color-stop(10%, #CDCDCD), color-stop(90%, white));
  background: linear-gradient(to bottom right, #CDCDCD 10%, white 90%);
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .about__left {
    width: 100%;
  }
}

.tab {
  color: #051973;
  font-size: 22px;
  font-family: "Lufga-Medium";
  cursor: pointer;
  margin-bottom: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .tab {
    font-size: 18px;
    margin-bottom: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.tab::before {
  content: "";
  min-width: 4px;
  height: 31px;
  background: #407BFF;
  border-radius: 3px;
  display: block;
  margin-right: 17px;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 1024px) {
  .tab::before {
    display: none;
  }
}

.active {
  color: #407BFF;
}
.active::before {
  opacity: 1;
  visibility: visible;
}

.about__right {
  width: 74%;
}
@media screen and (max-width: 1024px) {
  .about__right {
    width: 100%;
  }
}

@media screen and (max-width: 1024px) {
  .about__left {
    position: relative;
    cursor: pointer;
  }
  .tab {
    display: none; /* Ховаємо всі таби за замовчуванням */
  }
  .about__left .tab:first-child {
    display: block; /* Показуємо перший таб завжди */
  }
  .about__left.open .tab {
    display: block; /* Показуємо всі таби, коли блок відкритий */
  }
}
.tab__content {
  font-family: "Lufga-Light";
  font-size: 22px;
}
@media screen and (max-width: 1024px) {
  .tab__content {
    font-size: 18px;
  }
}
.tab__content h2 {
  margin-bottom: 30px;
}
.tab__content strong {
  color: #051973;
  font-family: "Lufga-Medium";
}
.tab__content a {
  color: #000;
}
.tab__content p {
  margin-bottom: 30px;
}

.new__info {
  text-align: left;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.new__about__b {
  margin-top: 50px;
}

.contacts__row {
  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;
}
@media screen and (max-width: 1024px) {
  .contacts__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.row__left {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .row__left {
    width: 100%;
  }
}

.row__right {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .row__right {
    width: 100%;
  }
}

.c {
  color: #407BFF;
  text-decoration: none;
  font-size: 22px;
  font-family: "Lufga-Medium";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
@media screen and (max-width: 1024px) {
  .c {
    font-size: 18px;
  }
}
.c:hover {
  opacity: 0.6;
}
.c img {
  margin-right: 20px;
}

.footer {
  padding-top: 100px;
  background: url("../img/section1.png") no-repeat center;
}
@media screen and (max-width: 1024px) {
  .footer {
    padding-top: 44px;
  }
}

.form__block {
  background: #fff;
  border: 3px solid rgba(5, 25, 115, 0.5);
  border-radius: 30px;
  padding: 60px 300px;
}
@media screen and (max-width: 1440px) {
  .form__block {
    padding: 60px 100px;
  }
}
@media screen and (max-width: 1024px) {
  .form__block {
    padding: 30px;
  }
}

.form__title {
  text-align: center;
  font-size: 45px;
  color: #051973;
  font-family: "Lufga-Medium";
}
@media screen and (max-width: 1024px) {
  .form__title {
    font-size: 25px;
  }
}

.form__line {
  width: 105px;
  height: 1px;
  margin: 22px auto;
  background: #051973;
}

.form__txt {
  font-size: 22px;
  font-family: "Lufga-Light";
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .form__txt {
    font-size: 14px;
  }
}

.form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.form__input {
  width: 31%;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .form__input {
    width: 100%;
    margin-bottom: 20px;
  }
}
.form__input input {
  border: none;
  border-bottom: 1px solid #D7D7D7;
  padding-bottom: 7px;
  width: 100%;
  outline: none;
  font-family: "Lufga-Light";
  font-size: 18px;
  color: #000;
}
@media screen and (max-width: 1024px) {
  .form__input input {
    font-size: 14px;
  }
}
.form__input input::-webkit-input-placeholder {
  font-family: "Lufga-Light";
  font-size: 18px;
  color: #000;
}
.form__input input::-moz-placeholder {
  font-family: "Lufga-Light";
  font-size: 18px;
  color: #000;
}
.form__input input:-ms-input-placeholder {
  font-family: "Lufga-Light";
  font-size: 18px;
  color: #000;
}
.form__input input::-ms-input-placeholder {
  font-family: "Lufga-Light";
  font-size: 18px;
  color: #000;
}
.form__input input::placeholder {
  font-family: "Lufga-Light";
  font-size: 18px;
  color: #000;
}
@media screen and (max-width: 1024px) {
  .form__input input::-webkit-input-placeholder {
    font-size: 14px;
  }
  .form__input input::-moz-placeholder {
    font-size: 14px;
  }
  .form__input input:-ms-input-placeholder {
    font-size: 14px;
  }
  .form__input input::-ms-input-placeholder {
    font-size: 14px;
  }
  .form__input input::placeholder {
    font-size: 14px;
  }
}
.form__input:nth-child(4) {
  width: 100%;
}
.form__input:nth-child(5) {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 0;
}

.button {
  background: #407BFF;
  border-radius: 100px;
  padding: 14.5px;
  max-width: 220px;
  width: 100%;
  border: none;
  outline: none;
  cursor: pointer;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  font-size: 16px;
  font-family: "Lufga-Medium";
  color: #fff;
}
.button:hover {
  opacity: 0.7;
}

.footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 80px;
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  .footer__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 30px 0;
  }
}

.footer__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 70%;
}
@media screen and (max-width: 1024px) {
  .footer__right {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 1024px) {
  .footer__logo {
    margin-bottom: 27px;
  }
}

.footer__block {
  width: 31%;
}
@media screen and (max-width: 1024px) {
  .footer__block {
    width: 100%;
    margin-bottom: 27px;
  }
  .footer__block:nth-last-child(1) {
    margin-bottom: 0;
  }
}

.footer__block__name {
  font-family: "Lufga-Medium";
  font-size: 18px;
  margin-bottom: 6px;
}

.footer__block__txt {
  font-family: "Lufga-Light";
}

.copyright {
  text-align: center;
  border-top: 1px solid #D7D7D7;
  padding: 13px;
  font-family: "Lufga-Light";
  font-size: 14px;
}

.manage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin-top: 16px;
}
.manage input {
  width: 100%;
  border: 1px solid #D7D7D7;
  border-radius: 100px;
  padding: 9px 20px;
  font-size: 14px;
  font-family: "Lufga-Light";
  color: #B0B0B0;
  outline: none;
  padding-right: 85px;
}
.manage input::-webkit-input-placeholder {
  font-size: 14px;
  font-family: "Lufga-Light";
  color: #B0B0B0;
}
.manage input::-moz-placeholder {
  font-size: 14px;
  font-family: "Lufga-Light";
  color: #B0B0B0;
}
.manage input:-ms-input-placeholder {
  font-size: 14px;
  font-family: "Lufga-Light";
  color: #B0B0B0;
}
.manage input::-ms-input-placeholder {
  font-size: 14px;
  font-family: "Lufga-Light";
  color: #B0B0B0;
}
.manage input::placeholder {
  font-size: 14px;
  font-family: "Lufga-Light";
  color: #B0B0B0;
}
.manage .button2 {
  background: #407BFF;
  text-align: center;
  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;
  border-radius: 100px;
  padding: 7.5px 12.5px;
  border: none;
  outline: none;
  color: #fff;
  cursor: pointer;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  position: absolute;
  right: 0;
  top: 1px;
}
.manage .button2:hover {
  opacity: 0.7;
}

#scrollToTopBtn {
  display: none; /* Ховаємо спочатку */
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 130px;
  right: 70px;
  z-index: 99;
  font-size: 24px;
  border: none;
  outline: none;
  background-color: #407BFF;
  color: white;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 200px;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
@media screen and (max-width: 1024px) {
  #scrollToTopBtn {
    right: 20px;
    bottom: 20px;
  }
}

#scrollToTopBtn:hover {
  background-color: #555;
}

.popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #fff;
  border: 1px solid #ccc;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  padding: 15px 20px;
  border-radius: 8px;
  z-index: 1000;
  display: none;
  max-width: 500px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .popup {
    width: 90%;
    left: 15px;
  }
}
.popup p {
  margin-bottom: 30px;
}

.popup-content {
  position: relative;
}

.close-btn {
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 20px;
  color: #555;
  cursor: pointer;
}

.login__form {
  background: #fff;
  border: 3px solid rgba(5, 25, 115, 0.5);
  border-radius: 30px;
  max-width: 500px;
  width: 100%;
  padding: 100px 50px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .login__form {
    padding: 50px 30px;
  }
}

.login {
  margin: 100px 0;
  margin-top: 200px;
}
@media screen and (max-width: 1024px) {
  .login {
    margin: 50px 0;
  }
}

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

.login__input {
  width: 100%;
  margin-bottom: 20px;
}
.login__input input {
  width: 100%;
  border-radius: 100px;
  padding: 10px 20px;
  border: 1px solid #D7D7D7;
  outline: none;
}

.login__button {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}