/* * {
  outline: 1px solid red;
} */

body {
  font-weight: 500;
  font-size: 1rem;
  color: var(--black);
}
a {
  text-decoration: none;
  color: inherit;
}
.banner {
  background-color: #202020;
  padding: 27px;
  position: relative;
  margin-bottom: 11px;
  overflow: hidden;
}
.banner__text {
  color: var(--white);
  font-size: 24px;
  text-align: center;
  width: fit-content;
  position: relative;
  margin: 0 auto;
  padding-right: 250px;
}
.banner__text::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--white);
  margin-top: 3px;
  display: block;
}
.banner::before {
  content: url("../images/discount.png");
  position: absolute;
  top: 0;
  left: 60%;
}
.header {
  border-bottom: 1px solid #d0d0d0;
  padding-bottom: 30px;
}
.wrap--max-1650 {
  max-width: 1630px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
.header-wrap_flex {
  display: flex;
  gap: 19px;
  flex-direction: column;
}
.header-container {
  display: flex;
  justify-content: space-between;
}
.logo {
  width: 250px;
  height: 44px;
}
.contacts {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 60px;
}
.telephone {
  font-weight: 700;
}
.service-btn {
  font-weight: 700;
  border: 1px solid #d0d0d0;
  border-radius: var(--border-radius-12);
  width: 242px;
  height: 46px;
  padding: 13px 40px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: 0.3s all linear;
}
.nav-list {
  display: flex;
  gap: 40px;
}
.nav__link {
  font-size: 14px;
  color: var(--grey);
  transition: 0.3s all linear;
}
.letsee-btn {
  font-size: 14px;
  color: var(--grey);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}
.letsee-btn::before {
  content: url("../images/eye.svg");
  width: 22px;
  height: 14px;
}
.services {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 0px;
  border-radius: 0 0 25px 25px;
  background: #f9f9f9;
}
.wrap {
  max-width: 1360px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
  position: relative;
}
.services-swiper {
  width: 650px;
  height: 480px;
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 25px;
}
.services-swiper .swiper-wrapper {
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: fit-content;
}
.services-swiper .swiper-slide {
  width: 650px;
  height: 480px;
  position: relative;
}
.services-swiper .swiper-pagination {
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  bottom: 128px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 19px;
}
.services-swiper .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: #979797;
  border-radius: 50%;
}
.services-swiper .swiper-pagination-bullet-active {
  background: #464646;
  width: 8px;
  height: 8px;
}
.title {
  font-weight: 700;
  font-size: 32px;
  color: var(--black-bold);
}

.swiper__title {
  margin: 30px;
  position: relative;
  z-index: 1;
}

.swiper-slide__text {
  padding: 30px 26px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--white);
  border-radius: 25px;
  color: var(--black);
  font-weight: 500;
  font-size: 24px;
  z-index: 1;
}
.swiper-slide__img {
  position: absolute;
  top: 0;
  left: 0;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.services__item {
  width: 650px;
  height: 90px;
  background: var(--white);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  transition: 0.3s all linear;
}
.services__title {
  font-weight: 500;
  font-size: 20px;
}
.services__link {
  border-radius: 25px;
  background-color: transparent;
  transition: 0.3s all linear;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 153px;
  height: 50px;
  flex: none;
}

.services__link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    270deg,
    rgba(54, 106, 243, 0.17) 0%,
    #59fee5 100%
  );
  z-index: -1;
  transition: 0.3s all linear;
}

.services__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    270deg,
    #59fee5 0%,
    rgba(54, 106, 243, 0.17) 100%
  );
  z-index: -1;
  opacity: 0;
  transition: 0.3s all linear;
}

.wrap_flex {
  display: flex;
  gap: 30px;
}
.tg-btn {
  margin-top: 30px;
  border-radius: 25px;
  padding: 15px 30px;
  width: 341px;
  height: 59px;
  background: var(--white);
  color: var(--black);
  font-size: 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: relative;
  transition: 0.3s all linear;
}
.tg-btn::before {
  content: url("../images/icons/tg-icon.svg");
}
.slider-side {
  flex: none;
  max-width: 650px;
  width: 100%;
}
.services__arrow {
  width: 17px;
  height: 15px;
  transition: 0.3s all linear;
  background-image: url(../images/icons/arrow.svg);
}

.programs {
  padding-top: 80px;
}
.programs-swiper {
  max-width: 1192px;
  width: 100%;
  overflow: hidden;
  margin-top: 40px;
}
.programs-swiper .swiper-wrapper {
  display: flex;
  width: fit-content;
}
.programs-swiper .swiper-slide {
  width: 377px;
  height: 534px;
}
.programs__card {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 30px;
  border-radius: 25px;
}
.programs__discount {
  position: absolute;
  right: 0;
  top: 30px;
  border-radius: 25px 0 0 25px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 126px;
  height: 33px;
  font-weight: 700;
  font-size: 14px;
  color: var(--green);
}
.programs__status {
  background: var(--green);
  color: var(--white);
  border-radius: 25px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 147px;
  height: 33px;
  font-size: 14px;
}
.programs__title {
  margin-top: 30px;
  font-size: 20px;
}
.programs__desc {
  margin-top: 54px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 14px;
}
.programs__desc span {
  color: #484848;
}
.programs__construction {
  background: url("../images/construction.jpg");
}

.programs__safety {
  background: url("../images/industrial-safety.jpg");
}

.programs__defense {
  background: url("../images/сivil-defense.jpg");
}

.swiper-buttons {
  position: absolute;
  top: 249px;
  right: 0;
}
.swiper__btn {
  width: 46px;
  height: 154px;
  border-radius: 25px;
  background: var(--black-bold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper__btn svg {
  fill: var(--white);
}
.swiper-button-prev {
  display: none;
}
.about {
  margin-top: 80px;
}
.about-content {
  max-width: 647px;
  width: 100%;
}
.about .title {
  padding-top: 50px;
}
.about .desc {
  margin-top: 40px;
}
.desc {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: var(--grey);
}

.online-walk {
  border-radius: 25px;
  max-width: 649px;
  width: 100%;
  height: 467px;
  background: linear-gradient(
    270deg,
    rgba(54, 106, 243, 0.1) 0%,
    rgba(89, 254, 229, 0.15) 100%
  );
  position: relative;
  overflow: hidden;
}
.online-walk__link {
  border-radius: 25px;
  max-width: 425px;
  width: 100%;
  height: 60px;
  background: var(--white);
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.online-walk__video {
  position: absolute;
  width: 441px;
  height: 441px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.footer {
  margin-top: 80px;
  padding: 60px 0;
  background: #292929;
}
.footer .logo {
  width: 307px;
  height: 54px;
}
.footer .nav-list {
  justify-content: space-between;
}
.footer .nav__link {
  color: var(--white);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}

.footer .contacts {
  flex-direction: column;
  gap: 5px;
  align-items: flex-end;
  color: var(--white);
}

.footer .telephone {
  font-size: 24px;
}
