:root {
  --container-width: 1520px;
  --container-width-min: 1280px;

  --tekst: #575757;
  --zagolovki: #282828;

  --font-family: "Noto Sans Display", sans-serif;
  --second-family: "Inter", sans-serif;
}

body {
  font-family: var(--font-family);

  font-weight: 400;
  font-size: 16px;
  line-height: 135%;

  color: var(--tekst);
}

h1 {
  font-weight: 600;
  font-size: 56px;
  line-height: 110%;
  color: #fff;

  text-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.25);
}
h2 {
  font-weight: 600;
  font-size: 42px;
  color: var(--zagolovki);
  line-height: 135%;
}
h3 {
  font-weight: 600;
  font-size: 20px;
  color: var(--zagolovki);
  line-height: 135%;
}
h4 {
  font-weight: 600;
  font-size: 18px;
  color: var(--tekst);
  line-height: 135%;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
}
.container-min {
  max-width: var(--container-width-min);
  margin: 0 auto;
}

.none {
  display: none !important;
}
.nav {
  padding: 10px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 115;

  box-shadow: 0 4px 10px 0 rgba(123, 123, 123, 0.1);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-local {
  border-radius: 40px;
  padding: 5px 20px;
  background: #ececec;
  cursor: default;
}
.nav-download {
  font-weight: 500;
  text-align: center;
  color: #fff;
  background: var(--zagolovki);
  border-radius: 10px;
  padding: 15px 35px;

  transition: all 0.3s ease;
}
.nav-download:hover {
  background: #ff9505;
}

.hero {
  padding: 100px 60px 150px;
}
.hero-img {
  max-width: 100%;
}

.oppotunites {
  padding: 0 60px 150px;
}

.oppotunites-title {
  margin-bottom: 40px;
}
.oppotunites-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.oppotunites-item {
  border-radius: 10px;
  padding: 27px 147px 27px 27px;
  background: #f5f5f5;
  min-height: 250px;
  flex-basis: 410px;
  flex-shrink: 1;
}
.oppotunites-item-title {
  margin-bottom: 10px;
}
.oppotunites-item-desc {
  max-width: 240px;
}
.oppotunites-item img {
  object-fit: contain;
  position: absolute;
  right: -10px;
  bottom: 20px;
}
#oppo_card_1 {
  background-image: url(/img/oppo_card_1.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
#oppo_card_2 {
  background: rgba(255, 149, 5, 0.4);
  position: relative;

  background-image: url(/img/bg-card-or.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#oppo_card_3 {
  position: relative;
  background-image: url(/img/bg-card-gr.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#oppo_card_2 img {
  mix-blend-mode: darken;
  right: -33px;
}

#oppo_card_4 {
  background: rgba(255, 149, 5, 0.4);
  position: relative;
  background-image: url(/img/bg-card-or.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#oppo_card_5 {
  position: relative;
  background-image: url(/img/bg-card-gr.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#oppo_card_5 img {
  bottom: -5px;
}
#oppo_card_5 img:last-of-type {
  bottom: auto;
  top: 40px;
  right: -5px;
}
#oppo_card_6 {
  position: relative;
  background: rgba(255, 149, 5, 0.4);
  background-image: url(/img/bg-card-or.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#oppo_card_6 img {
  right: 20px;
}
#oppo_card_6 img:last-of-type {
  bottom: 90px;
  right: 15px;
}

.begun {
  padding: 0 0 150px;
  overflow: hidden;
  width: 100%;
}

.begun-title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  height: 60px;
  line-height: 1;
}

.begun-subtitle {
  font-weight: 400;
  font-size: 16px;
  color: #5e5e5e;
}

.begun-srt {
  display: flex;
  align-items: center;
  gap: 20px;
}
.begun-srt-item {
  display: flex;
  align-items: center;
  gap: 20px;

  border: 1px solid #d9d9d9;
  border-radius: 10px;
  padding: 27px 30px 27px 20px;
  height: 80px;
  max-width: fit-content;
}

.begun-srt-item-text {
  font-weight: 500;
  font-size: 20px;
  color: #373737;
}
.order {
  margin-bottom: 150px;
}
.order-content {
  padding: 100px 120px;
  border-radius: 10px;
  background: #f5f5f5;

  overflow: hidden;
}
.order-title {
  font-weight: 600;
  font-size: 92px;
  color: var(--zagolovki);
  line-height: 125px;

  margin-bottom: 80px;
}
.order-text-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.order-text-item:first-child {
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  color: var(--tekst);
  max-width: 625px;
}
.order-text-item:last-child {
  font-weight: 500;
  font-size: 14px;
  line-height: 135%;
  color: var(--zagolovki);
  max-width: 410px;
}
.inCircle {
  margin-bottom: 40px;
  position: relative;
}

.inCircle svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-10%, -35%);
}

.order-text-item-links {
  display: flex;
  gap: 10px;
}

.phone {
  margin-bottom: 150px;
}

.phone-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.phone-wrapper-item {
  flex-grow: 1;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-body {
  position: relative;
  overflow-x: hidden;
}
.phone-body-img {
}
.phone-content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 346px;
  max-width: 100%;
  height: 780px;
  max-height: 100%;
  overflow: hidden;
  transform: translate(6%, 0);
  border-radius: 75px;
}
.phone-content img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
.phone-content-img-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}
.phone-wrapper-item-title {
}
.phone-wrapper-item-title-text {
  margin-bottom: 15px;
}
.phone-wrapper-item-subtitle-text {
}
/* .phone-content-img.non {
  opacity: 0;
  pointer-events: none;
} */

.phone-content-img.active {
  opacity: 1;
  pointer-events: auto;
}

.phone-wrapper-item-control {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 10px;
  max-width: fit-content;
}

.phone-wrapper-item-control-btn {
  padding: 0px 20px 12px 20px;
  border-bottom: 1px solid #d9d9d9;
  transition: all 0.3s ease;
  cursor: pointer;
}
#content-btn-1:hover {
  border-bottom: 3px solid #ff9505;
  color: #ff9505;
}
#content-btn-1.active {
  border-bottom: 3px solid #ff9505;
  color: #ff9505;
}
#content-btn-2.active {
  border-bottom: 3px solid #89c50a;
  color: #89c50a;
}
#content-btn-2:hover {
  border-bottom: 3px solid #89c50a;
  color: #89c50a;
}
.phone-wrapper-item:last-child {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.phone-wrapper-item-control-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.phone-wrapper-item-control-content-item {
  border-radius: 10px;
  padding: 27px;
  text-align: left;
  border: 1px solid transparent;
  transition: all 0.1s ease;
  width: 100%;
}
#content-1 .phone-wrapper-item-control-content-item.active {
  box-shadow: 1px 1px 4px 0 rgba(153, 153, 153, 0.15);
  background: rgba(255, 149, 5, 0.1);
  border: 1px solid rgba(255, 149, 5, 0.2);
}
#content-1 .phone-wrapper-item-control-content-item:hover {
  box-shadow: 1px 1px 4px 0 rgba(153, 153, 153, 0.15);
  background: rgba(255, 149, 5, 0.1);
  border: 1px solid rgba(255, 149, 5, 0.2);
}
#content-2 .phone-wrapper-item-control-content-item.active {
  box-shadow: 1px 1px 4px 0 rgba(153, 153, 153, 0.15);
  background: rgba(137, 197, 10, 0.1);
  border: 1px solid rgba(137, 197, 10, 0.2);
}
#content-2 .phone-wrapper-item-control-content-item:hover {
  box-shadow: 1px 1px 4px 0 rgba(153, 153, 153, 0.15);
  background: rgba(137, 197, 10, 0.1);
  border: 1px solid rgba(137, 197, 10, 0.2);
}

.phone-wrapper-item-control-content-item-title {
  margin-bottom: 10px;
}

.phone-wrapper-item-control-content-item-text {
  color: #8b8b8b;
}

.info {
  margin-bottom: 80px;
}

.info-content-box {
  border-radius: 10px;
  /* background: #d9d9d9; */

  padding: 90px 120px;

  background-image: url(/img/info.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.info-content-wrapper {
  display: flex;
  justify-content: space-between;
}
.info-content-item {
  max-width: 540px;
  position: relative;
}
.info-content-item-title {
  margin-bottom: 30px;
}
.info-content-item-text {
  color: #5e5e5e;
  margin-bottom: 50px;
}
.info-content-item-link {
  border-radius: 10px;
  padding: 15px 35px;
  background: var(--zagolovki);

  font-weight: 500;

  color: #fff;

  transition: all 0.3s ease;
}

.info-content-item-link:hover {
  background: #fff;
  color: var(--zagolovki);
}
.info-content-item-link:active {
  background: #ff9505;
  color: #fff;
}
.info-content-item-swiper {
  position: absolute;
  bottom: -90px;
  right: 130px;
  z-index: 50;
}
.swiper {
  max-width: 310px;
}

.info-content-item .svg svg {
  position: absolute;
  bottom: -90px;
  right: -120px;
  z-index: 10;
}
.swiper-controls {
  position: absolute;
  bottom: 25px;
  z-index: 55;

  display: flex;
  justify-content: center;
  align-items: center;
  height: 52px;
}
.swiper-controls-text {
  border-radius: 10px;
  padding: 20px 32px;
  background: #fff;

  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: var(--zagolovki);
  line-height: 1;
  width: 207px;
  height: 52px;
  text-align: center;
}
.button-prev {
  cursor: pointer;
  height: 52px;
  transition: all 0.3s ease;
}
.button-prev svg path {
  transition: all 0.3s ease;
}
.button-prev:hover svg path:first-child {
  fill: #ff9505;
}
.button-prev:hover svg path:last-child {
  stroke: #fff;
}
.button-next {
  cursor: pointer;
  height: 52px;
}
.button-next svg path {
  transition: all 0.3s ease;
}
.button-next:hover svg path:first-child {
  fill: #ff9505;
}
.button-next:hover svg path:last-child {
  stroke: #fff;
}

/* connection */

.connection {
  margin-bottom: 50px;
}

.connection-content-box {
  border-radius: 10px;
  padding: 80px 120px;
  background: #191919;

  background-image: url(/img/map.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.connection-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
}
.connection-content-item {
  max-width: 50%;
}
.connection-content-item-title {
  color: #fff;
  margin-bottom: 30px;
}
.connection-content-item-text {
  color: #d9d9d9;
}

.form input {
  border-radius: 5px;
  padding: 14px 15px;
  backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.1);

  font-size: 16px;
  color: #fff;
}

.form-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}
.form-item {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.last {
  margin-bottom: 40px;
}

.form label {
  font-size: 14px;
  color: #d9d9d9;
}

.form-check {
  margin-bottom: 15px;
}
.form-check label {
  color: #afafaf;
}
.form label a {
  color: #d9d9d9;
}
.form label a:hover {
  text-decoration: underline;
}
.form-btn {
  background: var(--zagolovki);
  border-radius: 10px;
  padding: 15px 35px;

  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #fff;

  cursor: pointer;
  transition: all 0.3s ease;
}
.form-btn:hover {
  background: #fff;
  color: var(--zagolovki);
}
.form-btn:active {
  background: #ff9505;
  color: #fff;
}

/* footer */
footer {
  padding: 30px;
  background: #f5f5f5;
}
.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  &:first-child {
    margin-bottom: 40px;
  }
}
.footer-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
}
.footer-item-text {
  font-size: 15px;
  color: #5e5e5e;
  transition: all 0.3s ease;
}
.footer-item-text:hover {
  text-decoration: underline;
}
.footer-item-logo {
  opacity: 0.7;
  transition: all 0.3s ease;
}
.footer-item-logo:hover {
  opacity: 1;
}
.order-text-item:last-child {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mobil-svg {
  display: none;
}
.swiper-controls-how {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 54px;
  margin-top: 20px;
}

.button-prev-mob {
  cursor: pointer;
  height: 54px;
  transition: all 0.3s ease;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
}
.button-prev-mob svg path {
  transition: all 0.3s ease;
}
/* .button-prev-mob:hover svg path:first-child {
  fill: #ff9505;
}
.button-prev-mob:hover svg path:last-child {
  stroke: #fff;
} */
.button-next-mob {
  cursor: pointer;
  height: 54px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
}
.button-next-mob svg path {
  transition: all 0.3s ease;
}
/* .button-next-mob:hover svg path:first-child {
  fill: #ff9505;
}
.button-next-mob:hover svg path:last-child {
  stroke: #fff;
} */

.swiper-container-zak {
  display: none;
}
.swiper-container-isp {
  display: none;
}

.marquee-mob {
  display: none;
}

.modal {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 200;
  top: 0;
  left: 0;

  backdrop-filter: blur(4px);
  background: rgba(39, 33, 24, 0.6);

  display: none;
}
.modal_active {
  display: block;
}
.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 201;
  border-radius: 7px;
  padding: 60px;
  background: #fff;

  display: none;
}
.popup_active {
  display: block;
}
.thank-btn {
  font-weight: 500;
  text-align: center;
  color: #fff;
  background: var(--zagolovki);
  border-radius: 10px;
  padding: 15px 35px;
  color: #fff;
  transition: all 0.3s ease;

  margin-top: 40px;
}
.thank-btn:hover {
  background: #ff9505;
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;

  color: #fff;
  cursor: pointer;
}
.quesion-title {
  margin-bottom: 20px;
}
.button-next-mob.swiper-button-disabled,
.button-prev-mob.swiper-button-disabled {
  cursor: pointer;
  height: 54px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;

  .button-next-mob svg path:first-child {
    fill: none;
  }
  .button-next-mob svg path:last-child {
    stroke: #afafaf;
  }
}

.cookie {
  top: auto;
  bottom: 30px;
  left: 30px;
  transform: none;

  padding: 20px;
}
.cookie-content {
  display: flex;
  align-items: center;
  gap: 20px;

  button {
    background: #282828;
    color: #fff;
    padding: 8px 10px;
    border-radius: 2px;
    transition: background-color 0.3s ease;
    &:hover {
      background-color: #ff9505;
    }
  }
}
.popup-text {
  margin-bottom: 0;
}

.main {
  margin-top: 79px;
  padding: 50px 30px 80px;
  margin-bottom: 120px;
}
.policy__heading {
  margin-bottom: 50px;
}
.policy_heading {
}
.policy__block {
  margin-bottom: 30px;
}
.policy__title {
  margin-bottom: 20px;
  font-size: 18px;
}
.policy__text {
  margin-bottom: 5px;
}
.policy__list .policy__item {
  list-style: disc;
}
