@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Thin.ttf") format("truetype");
  font-weight: 100;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-ExtraLight.ttf") format("truetype");
  font-weight: 200;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Light.ttf") format("truetype");
  font-weight: 300;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-ExtraBold.ttf") format("truetype");
  font-weight: 800;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Black.ttf") format("truetype");
  font-weight: 900;
}
.career_start {
  font-family: "Montserrat";
}

.reklam-title {
  font-family: "Montserrat";
  font-size: 64px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  margin: 0;
}

.reklam-banner {
  padding: 200px 0;
  border-radius: 0 0 80px 80px;
  background: url(banner-1.jpg) 50%/cover no-repeat;
  color: #fff;
  margin-bottom: -80px;
  position: relative;
  z-index: 2;
}

.reklam-banner__content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.reklam-banner__text {
  width: 500px;
  leading-trim: both;
  text-edge: cap;
  font-size: 22px;
  font-weight: 500;
  line-height: 140%;
}

.reklam-banner__slogan {
  position: absolute;
  right: 200px;
  top: -120px;
}

.reklam-about {
  padding: 200px 0;
  background: linear-gradient(26deg, #00388D -23.06%, #00C4D9 75.39%);
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: #fff;
}
.reklam-about::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -1;
  background: url("pattern.png") 0 0/1000px auto;
  opacity: 0.2;
}
.reklam-about .reklam-title {
  margin-bottom: 64px;
}

.reklam-about__text {
  padding: 80px 160px;
  border-radius: 200px;
  background: #fff;
  margin-bottom: 120px;
  color: #000;
  font-size: 44px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}

.reklam-about__list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 32px;
}

.reklam-about__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 0 20px;
  border-radius: 200px;
  border: 2px solid #fff;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  color: #fff;
  font-size: 44px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition: 0.4s;
}
.reklam-about__item:hover {
  z-index: 2;
  background: #fff;
  color: #000;
}
.reklam-about__item:hover .reklam-about__ico path[fill],
.reklam-about__item:hover .reklam-about__ico circle[fill],
.reklam-about__item:hover .reklam-about__ico rect[fill] {
  fill: #000;
}
.reklam-about__item:hover .reklam-about__ico path[stroke],
.reklam-about__item:hover .reklam-about__ico circle[stroke],
.reklam-about__item:hover .reklam-about__ico rect[stroke] {
  stroke: #000;
}
.reklam-about__item:hover .reklam-about__popup {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
  transform: translateY(0px);
}
.reklam-about__item:hover .reklam-about__popup::before {
  border-width: 8px;
}
.reklam-about__item span {
  flex: 1;
}

.reklam-about__ico {
  line-height: 0;
}
.reklam-about__ico svg {
  width: 40px;
  height: 40px;
}
.reklam-about__ico path,
.reklam-about__ico circle,
.reklam-about__ico rect {
  transition: 0.4s;
}

.reklam-about__popup {
  position: absolute;
  left: 0;
  bottom: calc(100% + 16px);
  font-size: 22px;
  line-height: 120%;
  background: #fff;
  color: #000;
  border-radius: 200px;
  padding: 40px;
  transition: 0.4s;
  max-width: 400px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(-10px);
  cursor: auto;
}
.reklam-about__popup::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 0 solid #fff;
  border-right: 0 solid transparent;
  border-bottom: 0 solid transparent;
  transition: 0.4s;
}
.reklam-about__popup::after {
  content: "";
  display: block;
  width: 100%;
  height: 56px;
  position: absolute;
  bottom: -16px;
  left: 0px;
}

.reklam-slider-section {
  padding: 120px 0;
  overflow: hidden;
}

.reklam-slider-block {
  width: 100%;
}

.reklam-slider__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px 32px;
  margin-bottom: 80px;
  flex: 1;
}
.reklam-slider__top .reklam-title {
  flex: 1;
}

.reklam-slider__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
}

.reklam-slider__arrow {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #00C4D9;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  line-height: 0;
  cursor: pointer;
  transition: 0.4s;
}
.reklam-slider__arrow:hover {
  background: #008290;
}
.reklam-slider__arrow.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.reklam-slider .owl-stage-outer {
  overflow: visible;
}
.reklam-slider .owl-nav {
  display: none;
}

.reklam-slide {
  width: 626px;
  padding: 64px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  border-radius: 70px;
  background: #B6F8FF;
  color: #fff;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}

.owl-item:nth-child(1) .reklam-slide {
  color: #000;
}
.owl-item:nth-child(1) .reklam-slide__addres path {
  fill: #000;
}
.owl-item:nth-child(2) .reklam-slide {
  background: #00C4D9;
}
.owl-item:nth-child(3n) .reklam-slide {
  background: #008290;
}
.owl-item:nth-child(4n) .reklam-slide {
  background: #008290;
}
.owl-item:nth-child(5n) .reklam-slide {
  background: #00388D;
}

.reklam-slide__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 64px;
}

.reklam-slide__title {
  font-size: 44px;
  line-height: 140%;
}

.reklam-slide__text {
  font-size: 22px;
  line-height: 140%;
}

.reklam-slide__addres {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
  margin-top: auto;
}
.reklam-slide__addres span {
  flex: 1;
  font-size: 22px;
  line-height: 140%;
}

.reklam-banner-2 {
  padding: 200px 0;
  border-radius: 80px 80px 0 0;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: url(banner-2.jpg) center left/cover;
  position: relative;
  overflow: hidden;
}
.reklam-banner-2::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background: linear-gradient(90deg, rgba(0, 79, 87, 0) 34.87%, rgba(0, 79, 87, 0.4) 42.45%);
  pointer-events: none;
}

.reklam-banner-2__content {
  width: 890px;
  max-width: 100%;
  position: relative;
  z-index: 1;
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: unset;
  justify-content: flex-start;
  flex-direction: column;
  gap: 32px;
  color: #fff;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}

.reklam-banner-2__text a {
  color: inherit;
}

.reklam-banner-2__buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 32px;
}

.reklam-button {
  display: flex;
  padding: 24px 64px;
  border-radius: 80px;
  background: #00C4D9;
  color: #fff;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  transition: 0.4s;
}
.reklam-button:hover {
  background: #008290;
}

.reklam-banner-2__slogan {
  position: absolute;
  right: 0;
  bottom: -9px;
}

.career-start-fixed {
  position: fixed;
  left: 48px;
  bottom: 48px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px
}
.career-start-fixed  .reklam-button {
  border-radius: 0px;
  background: #1d8ea4;
}
.career-start-fixed  .reklam-button:hover {
  background: #007c91;
}

.anketa-new-wrap {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 6;
  background: #f3f4f4;
  overflow: auto;
  font-family: "Helios";
}

.anketa-form {
  margin: 0 auto;
  width: 768px;
  counter-reset: point;
  position: relative;
  min-height: 100%;
}

.anketa-form .h2 {
  margin: 160px 0 80px;
}

@media (max-width: 1600px) {
  .reklam-title {
    font-size: 48px;
  }
  .reklam-banner__text,
  .reklam-slide__text,
  .reklam-slide__addres span,
  .reklam-banner-2__content,
  .reklam-button {
    font-size: 18px;
  }
  .reklam-about__text,
  .reklam-about__item,
  .reklam-slide__title {
    font-size: 32px;
  }
  .reklam-banner,
  .reklam-about,
  .reklam-banner-2 {
    padding: 160px 0;
  }
  .reklam-banner__slogan {
    top: -60px;
    right: 80px;
    width: 320px;
  }
  .reklam-slider-section {
    padding: 80px 0;
  }
  .reklam-about__text {
    padding: 60px 160px;
    margin-bottom: 80px;
  }
  .reklam-about .reklam-title {
    margin-bottom: 48px;
  }
  .reklam-about__list {
    gap: 24px;
  }
  .reklam-about__ico svg {
    width: 32px;
    height: 32px;
  }
  .reklam-slider__top {
    margin-bottom: 64px;
  }
  .reklam-slider__arrow {
    width: 64px;
    height: 64px;
  }
  .reklam-slider__arrow svg {
    width: 20px;
    height: auto;
  }
  .reklam-slide {
    width: 460px;
    padding: 48px;
  }
  .reklam-slide__top {
    gap: 24px;
    margin-bottom: 48px;
  }
  .reklam-button {
    padding: 20px 48px;
  }
  .reklam-banner-2__content {
    width: 720px;
  }
  .reklam-banner-2__slogan {
    width: 180px;
  }
}
@media (max-width: 1024px) {
  .reklam-banner__text {
    width: 100%;
  }
  .reklam-banner__slogan {
    top: -120px;
    right: 0;
  }
  .reklam-about__text {
    padding: 30px 60px;
    border-radius: 100px;
  }
}
@media (max-width: 768px) {
  .reklam-title {
    font-size: 32px;
    padding-bottom: 125px;
  }
  .reklam-about .reklam-title {
    padding-bottom: 0;
  }
  .reklam-banner__text,
  .reklam-slide__text,
  .reklam-slide__addres span,
  .reklam-banner-2__content,
  .reklam-button {
    font-size: 16px;
  }
  .reklam-about__text,
  .reklam-about__item,
  .reklam-slide__title {
    font-size: 20px;
  }
  .reklam-banner,
  .reklam-about,
  .reklam-banner-2 {
    padding: 100px 0;
  }
  .reklam-banner {
    margin-bottom: -40px;
    border-radius: 0 0 40px 40px;
  }
  .reklam-banner-2 {
    border-radius: 40px 40px 0 0;
  }
  .reklam-banner__slogan {
    top: -90px;
    width: 200px;
  }
  .reklam-slider-section {
    padding: 60px 0;
  }
  .reklam-about__text {
    padding: 20px;
    border-radius: 40px;
    margin-bottom: 48px;
  }
  .reklam-about .reklam-title {
    margin-bottom: 32px;
  }
  .reklam-about__list {
    gap: 12px;
  }
  .reklam-about__item {
    padding: 0 10px;
  }
  .reklam-about__ico svg {
    width: 24px;
    height: 24px;
  }
  .reklam-slider__top {
    margin-bottom: 48px;
  }
  .reklam-slider__arrow {
    width: 48px;
    height: 48px;
  }
  .reklam-slider__arrow svg {
    width: 16px;
  }
  .reklam-slide {
    width: 280px;
    padding: 24px;
    border-radius: 24px;
  }
  .reklam-slide__top {
    gap: 12px;
    margin-bottom: 32px;
  }
  .reklam-slide__addres svg {
    width: 16px;
    height: auto;
  }
  .reklam-banner-2__buttons {
    gap: 24px;
  }
  .reklam-button {
    padding: 10px 24px;
  }
  .reklam-banner-2__content {
    width: 100%;
    gap: 24px;
  }
  .reklam-banner-2__slogan {
    width: 120px;
  }
}
@media (max-width: 540px) {
  .reklam-banner-2__slogan {
    bottom: -80px;
  }
}
@media (max-width: 480px) {
  .reklam-banner-2::before {
    content: "";
    background: linear-gradient(90deg, rgba(0, 79, 87, 0) 0%, rgba(0, 79, 87, 0.4) 20%);
  }
  .reklam-about__item {
    width: 100%;
  }
  .reklam-banner-2__content .reklam-title {
    font-size: 24px;
  }
}


.career-new-fixed-block {
  position: fixed;
  right: 160px;
  bottom: 48px;
  z-index: 4;
  display: flex;
  gap: 32px;
  transition: .2s;
}

.open-anketa-new {
  cursor: pointer;
}

.anketa-new-wrap__colse {
  z-index: 7;
  position: fixed;
  left: 91%;
  bottom: 3px;
  top: 20px;
  background: #007C91;
  width: 80px;
  height: 80px;
  cursor: pointer;
}

.anketa-new-wrap__colse::before,
.anketa-new-wrap__colse::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
}

.anketa-new-wrap__colse::before {
  transform: translate(-50%,-50%) rotate(45deg);
}

.anketa-new-wrap__colse::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}

.anketa-new-wrap .anketa-form {
  max-width: 100%;
}

@media (max-width: 1400px) {
  .career-new-fixed-block {
    right: 96px;
    bottom: 16px;
  }
  .career-new-fixed-block .reklam-button {
    padding: 12px 22px;
  }
  .anketa-new-wrap__colse {
    width: 48px;
    height: 48px;
  }
}
@media (max-width: 620px) {
  .career-new-fixed-block {
    right: 16px;
  }
  body.half-top .career-new-fixed-block {
    bottom: 96px;
  }
}
@media (max-width: 580px) {
  .career-new-fixed-block {
    right: 8px;
    bottom: 8px;
    gap: 8px;
  }
  body.half-top .career-new-fixed-block {
    bottom: 58px;
  }
  .career-new-fixed-block .reklam-button {
    padding: 8px 18px;
  }
  .anketa-new-wrap__colse {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 440px) {
 .career-new-fixed-block {
  flex-direction: column-reverse;
  align-items: flex-end;
 }
}