@font-face {
  font-family: "SF Pro Text";
  src: url("../fonts/SFProText-Light.ttf") format("ttf");
  font-weight: 300;
  /* Light */
  font-style: normal;
  font-style: italic;
}

@font-face {
  font-family: "SF Pro Text";
  src: url("../fonts/SFProText-Regular.ttf") format("ttf");
  font-weight: 400;
  /* Regular */
  font-style: normal;
  font-style: italic;
}

@font-face {
  font-family: "SF Pro Text";
  src: url("../fonts/SFProText-Medium.ttf") format("ttf");
  font-weight: 500;
  /* Medium */
  font-style: normal;
  font-style: italic;
}

@font-face {
  font-family: "SF Pro Text";
  src: url("../fonts/SFProText-Bold.ttf") format("ttf");
  font-weight: 700;
  /* Bold */
  font-style: normal;
  font-style: italic;
}

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "SF Pro Text", sans-serif !important;
}

/* BLOCKS ----------------------------- */

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}

h1.sectionTitle {
  color: #c0272e;
  font-size: 85px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 55px;
  margin-top: 20px;
}

body {
  background: #d6d6d6;
  max-width: 100vw;
  overflow-x: hidden;
}

/* BLOCK END ------------------------------------- */

/* BANNER -------------------------- */
.banner {
  background-image: url("../images/first-screen-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 800px;
  background-position: bottom;
  /* border: 4px solid red; */
  position: relative;
}

.banner::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 200px;
  bottom: -100px;
  left: 0;
  background: url(../images//transition.png);
  background-size: cover;
}

@media (max-width: 760px) {
  .banner {
    background-image: url("../images/first-screen-bg-mob.png");
    height: 1250px;
    z-index: 1;
  }
}

.banner__wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}

.banner__block {
  width: 450px;
  position: relative;
  z-index: 1;
}

.banner__title span {
  font-weight: 800;
  font-size: 60px;
  color: #be2229;
  background-image: linear-gradient(
    30deg,
    rgba(190, 34, 41, 1) 76%,
    rgba(238, 242, 243, 1) 96%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}

.banner__title {
  font-weight: 700;
  font-size: 50px;
  color: white;
  margin-bottom: 25px;
}

.banner__machine {
  position: absolute;
  top: 20px;
  left: -260px;
}

.banner__subtitle {
  color: #074372;
  font-size: 20px;
  margin-bottom: 25px;
}

.findButton {
  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;
  gap: 15px;
  width: 320px;
  height: 130px;
  border-radius: 100px;
  background: #be2229;
  color: white;
  border: none;
  font-weight: 700;
  font-size: 20px;
  text-align: start;
  padding: 30px 60px;
  cursor: pointer;
}

.findButton__text {
  width: 130px;
}

/* -------------------------------------------popup ---------------------------------------- */

.findButton {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.popup__findOut input {
  border: none;
  outline: none;
}

.submit_findOut,
.submit_findOut:hover,
.submit_findOut:focus {
  border: none;
  outline: none;
}

.submit_findOut::-webkit-input-placeholder,
.submit_findOut::-moz-placeholder,
.submit_findOut:-ms-input-placeholder,
.submit_findOut::-ms-input-placeholder,
.submit_findOut::placeholder {
  color: #074372b2;
}

.popup__findOut {
  display: none;
  position: absolute;

  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 20px;

  height: fit-content;
  width: 107%;
  padding: 48px;
  padding-bottom: 20px;
  left: -70px;
  bottom: -185px;
}

.popup__inputBox input {
  display: block;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
  border-radius: 5px;

  width: 100%;
  height: 60px;
  display: flex;
  padding: 20px;
  margin-bottom: 7px;
}

.popup__findOut input:focus {
  border: 2px solid black;
}

.popup__findOut input::placeholder {
  color: #074372;
}

.submit_findOut {
  background-color: rgba(190, 34, 41, 0.8);
  color: #fff;
  border-radius: 80px;

  width: 100%;
  margin: auto;
  padding: 30px;

  cursor: default;

  font-weight: 600;
  font-size: 1.3rem;

  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.popup__status {
  display: block;
  font-size: 0.9rem;
  color: red;
  margin-block: 10px;
}

.checkbox__policy {
  display: flex;
  justify-content: center;
  padding-block: 10px;
  gap: 7px;
  text-wrap: nowrap;
}

.popup__checkbox {
  display: none !important;
}

/* .popup__checkbox {
  width: fit-content;
  height: fit-content;
  background-color: red;
  outline: none;
  box-shadow: none;
} */

.checkbox__policy h4 {
  font-size: 10px;
  color: #929292;
}

/* второй popup */

.popup__container {
  position: relative;
}

.popup__findOut.second {
  width: 60%;
  left: 20%;
  top: -20px;
  text-wrap: nowrap;
}

.popupButton__close {
  right: 10px;
  top: 10px;
  width: 30px;
  height: 30px;

  color: #616161;
  font-size: 30px;
  position: absolute;
  border: none;
  cursor: pointer;
  background-color: transparent;
}

/* сообщение об отправке */
.message__success {
  justify-content: end;
  display: none;
  opacity: 0;
  position: absolute;
  padding: 48px;
  top: -80px;

  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  width: 107%;
  height: 400px;

  padding-bottom: 20px;
  left: -70px;

  z-index: 10;
  transition: opacity 0.3s;
}

.message__success_title {
  position: relative;
  width: fit-content;
  height: fit-content;
  text-align: right;
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
}

.message__success_title img {
  position: absolute;
  width: 100%;
  height: 166%;
  right: 35%;
  bottom: -130%;
}

.message__success.first img {
  right: 30%;
}

.message__success.first .message__success_title {
  width: fit-content;
}

.message__success span {
  text-wrap: nowrap;
  font-size: 48px;
  font-weight: 600;
  color: #074372;
  margin: auto;
}

.message__success.second {
  width: 60%;
  left: 20%;
  top: -20px;
}

.message__success.second img {
  right: -15%;
}

.message__success.third {
  /* background-color: rgba(238, 130, 238, 0.8); */
  position: absolute;
  width: 100%;
  height: 70%;
  top: 0;
  left: 0;
  transition: opacity 2s;
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 55px;
}

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

.header_logos img:last-child {
  -webkit-transform: translateX(-15px);
  -ms-transform: translateX(-15px);
  transform: translateX(-15px);
}

.header__number {
  font-weight: 300;
  font-size: 25px;
  white-space: nowrap;
  line-height: 30px;
}

.header_link {
  text-align: end;
  width: 100%;
  display: block;
  color: #0171d7;
  font-size: 15px;
  font-weight: 700;
  margin-top: 5px;
}

/* main ----------------------------------------------*/

.main {
  position: relative;
  background: url(../images//background-main.webp);
  background-size: cover;
  z-index: 1;
  overflow: hidden;
}

.main::before {
  position: absolute;
  content: "";
  width: 100vw;
  height: 200px;
  top: -100px;
  left: 0px;
  background: url(../images//transition.png);
  background-size: cover;
}
/* ADDITION MACHINE --------------------------------------------- */

.additionMachine.container {
}

.additionMachine .sectionTitle {
  margin: 80px 0 30px 0;
}

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

.additionMachine__crosses {
  position: relative;
  top: 0%;
  left: 0;
  width: 100%;
  height: 100%;
}

.additionMachine__description {
  color: #074372;
  font-size: 25px;
  font-weight: 400;
  max-width: 700px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.additionMachine__dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  height: 23px;
}

.additionMachine__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.additionMachine__dot:first-child {
  background: #859db0;
}

.additionMachine__dot:nth-child(2) {
  background: #467091;
}

.additionMachine__dot:last-child {
  background: #1c527d;
}

.additionMachine__carusel {
  width: 360px;
  height: 600px;
  position: relative;
}

.machineSwiper {
  height: 100%;
}

.machineSwiper .swiper-slide {
  background: #ffffff33;
  border-radius: 20px;
  padding: 15px;
  overflow: hidden;
  border: 2px solid #e9e9e9;

  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.machineSwiper .swiper-slide {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.additionMachine__findButton {
  margin: 0 auto;
}

.swiper-button-prev {
  rotate: 90deg;
  top: -5%;
  left: 50%;
  font-weight: 800;
  position: absolute;
  -webkit-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
  color: #074372;
}

.swiper-button-next {
  rotate: 90deg;
  top: 105%;
  left: 50%;
}

/* ADDITION MACHINE END --------------------------------------------- */
/* typeService -------------------------- */

.container.typeService {
  position: relative;
  margin-block: 0;
  padding-top: 50px;
}

.typeService {
  width: 100%;
  margin-top: 72px;
}

.typeService__flexCont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.typeService__lists {
  list-style: disc;
}

.typeService__Panel p {
  margin-top: 22px;
  font-size: 25px;
  color: #074372;
  line-height: 29.83px;
  font-weight: 400;
}

.typeService__Panel ul {
  margin-top: 0;
}

.typeService__item {
  width: 100%;
  max-width: 632px;
  height: 396px;
  padding: 30px;
  background-color: #c8c8c8;
  border-radius: 20px;
  border: 2px solid #ffffff;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.typeService__SS4E *,
.typeService__Panel *,
.typeService__item *,
.typeService__roles *,
.typeService__Metal * {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.typeService__SS4E:hover,
.typeService__Panel:hover,
.typeService__item:hover,
.typeService__roles:hover,
.typeService__Metal:hover {
  background-color: #ffffff33;
}

.typeService__SS4E:hover path,
.typeService__Panel:hover path,
.typeService__item:hover path,
.typeService__roles:hover path,
.typeService__Metal:hover path {
  background: #ffffff33;
  fill: #074372;
}

.typeService__SS4E:hover h2,
.typeService__Panel:hover h2,
.typeService__item:hover h2,
.typeService__roles:hover h2,
.typeService__Metal:hover h2 {
  color: #074372;
}

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

.typeService__title h2 {
  color: #ffffff;
  font-size: 40px;
  width: 230px;
  font-weight: 700;
  margin-left: 30px;
}

.typeService__lists {
  margin-top: 15px;
  padding-left: 30px;
}

.typeService__listsItem {
  font-size: 25px;
  color: #074372;
  line-height: 29.83px;
}

.typeService__roles {
  width: 100%;
  max-width: 507px;
  height: 396px;
  padding: 30px;
  background-color: #d8d8d8;
  border-radius: 20px;
  border: 2px solid #ffffff;
}

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

.typeService__roles p {
  margin-top: 22px;
  font-size: 25px;
  color: #074372;
  line-height: 29.83px;
  font-weight: 400;
}

.typeService__flexItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  max-width: 632px;
}

.typeService__Metal {
  width: 100%;
  max-width: 286px;
  height: 356px;
  padding: 30px;
  border-radius: 30px;
  background-color: #d8d8d8;
  border: 2px solid #ffffff;
}

.typeService__Panel {
  max-width: 326px;
  padding: 30px;
  width: 100%;
  background-color: #d8d8d8;
  border: 2px solid #ffffff;
  border-radius: 30px;
  height: 356px;
}

.typeService__SS4E {
  max-width: 507px;
  width: 100%;
  padding: 30px;
  background-color: #d8d8d8;
  border: 2px solid #ffffff;
  height: 356px;
  border-radius: 30px;
}

.typeService__SS4E p {
  margin-top: 22px;
  font-size: 25px;
  color: #074372;
  line-height: 29.83px;
  font-weight: 400;
}

.paneloptions__panel {
  width: 360px;
  border-radius: 20px;
  background: #ffffff54;
  height: auto;
  padding: 17px 15px;
  display: flex;
  flex-direction: column;
}

.paneloptions__panel img {
  width: 100%;
}

.paneloptions__panel img:first-of-type {
  margin-bottom: auto;
}

.paneloptions__title {
  font-size: 30px;
  font-weight: 700;
  color: white;
  margin-top: 10px;
}

.paneloptions__subtitle {
  color: #074372;
  font-style: italic;
  font-size: 15px;
  width: 240px;
  font-weight: 500;
}

.paneloptions_panels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px;
}

.paneloptions__subtitle.panel.mobile {
  display: none;
  text-wrap: nowrap;
}

.light-beam {
  position: absolute;
  bottom: 10%;
  width: 4000px;
  height: 1000px;
  transform: translate(-30%, -50%) rotate(-45deg);
  z-index: -1;
  opacity: 0.7;
}

.delivery {
  margin: 0;
  width: 100%;
  height: 750px;
  background: url("../images/Дорога чб 1.webp");
  background-size: cover;
  padding-top: 10px;
  background-position: center;
  z-index: 1;
  position: relative;
  overflow: hidden;
}

.delivery__car {
  width: 300px;
  height: 260px;
  background: #c3c9ca; /* Более насыщенный серый цвет */
  border-radius: 20px;
  padding: 0px 20px;

  /* Градиент для границы */

  /* Внутренняя тень */
  box-shadow: inset 0px 0px 30px 0px rgba(255, 255, 255, 0.3);
}

.delivery__title {
  font-size: 30px;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.delivery__wrap {
  position: relative;
}

.delivery__car img {
  -webkit-transform: translateY(13px);
  -ms-transform: translateY(13px);
  transform: translateY(13px);
}

.delivery__subtitle {
  color: #074372;
  list-style: disc;
}

.delivery__subtitle span {
  text-decoration: underline;
}

.delivery__subtitleWrap {
  padding-left: 20px;
  max-width: 80%;
}

.delivery__cars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

.delivery__carImg {
  position: absolute;
  right: -200px;
  top: 13%;
  padding-left: 10px;
  z-index: 1;
}

.delivery__subtitle span {
  text-decoration: underline;
}

/* videoSection (Machine overview) --------------------------------------------- */

.container.videoSection {
  margin-block: 0;
  padding-bottom: 50px;
}

.videoSection .sectionTitle {
  margin: 80px 0 30px 0;
}

.videoSection {
  width: 100%;
  margin-top: 96px;
}

.videoSection__video {
  width: 100%;
  height: 629px;
  border-radius: 20px;
}

/* DOWNLOAD ---------------- */
.download {
  max-width: 960px;
  height: 600px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.download__mockap {
  position: absolute;
  z-index: -1;
  left: -39.2%;
  top: 53%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1255px;
}

.download__form {
  position: relative;
  width: 505px;
  height: 470px;
  margin-left: auto;
}

.download__form_inner {
  background: #ffffff80;
  position: relative;
  width: 505px;
  height: 470px;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 20px;
  gap: 10px;
  margin-left: auto;
  transition: opacity 0.4s;
}

.download__title {
  font-size: 30px;
  font-weight: 700;
  color: #074372;
  text-align: center;
  text-transform: uppercase;
}

.download__form input {
  width: 100%;
  height: 60px;
  padding-left: 20px;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 13px 0px #00000040 inset;
  box-shadow: 0px 0px 13px 0px #00000040 inset;

  border: none;
}

.download__form input::-webkit-input-placeholder {
  color: #074372b2;
}

.download__form input::-moz-placeholder {
  color: #074372b2;
}

.download__form input:-ms-input-placeholder {
  color: #074372b2;
}

.download__form input::-ms-input-placeholder {
  color: #074372b2;
}

.download__form input::placeholder {
  color: #074372b2;
}

.download__download {
  background: #be2229;
  width: 100%;
  height: 85px;
  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;
  gap: 15px;
  color: white;
  font-size: 25px;
  font-weight: 700;
  border-radius: 80px;
  border: none;
}

.download__private {
  text-align: center;
  color: #929292;
  text-align: center;
  font-size: 10px;
  width: 290px;
  margin: 0 auto;
}

/* DOWNLOAD END---------------- */
.mapSection {
  margin-top: 100px;
  margin-bottom: 31px;
}

.mapSection__map {
  width: 100%;
  height: 563px;
  border-radius: 20px;
}

/* footer --------------------------------------------- */

.footer {
  width: 100%;
  background: rgb(255, 255, 255);
  /* background: -webkit-gradient(linear, left top, left bottom, from(#00000000), color-stop(150%, #000000));
    background: -o-linear-gradient(top, #00000000 0%, #000000 150%);
    background: linear-gradient(180deg, #00000000 0%, #000000 150%); */
  background: linear-gradient(0.31deg, #000000 0.25%, rgba(0, 0, 0, 0) 99.71%);

  height: 220px;
  padding-top: 60px;
}

.footerFlex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 130px;
}

.footerFlex__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.footerFlex__title h1 {
  font-size: 30px;
  font-weight: 800;
  /* background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 1)), color-stop(50%, rgba(255, 255, 255, 1)), to(rgba(0, 0, 0, 0.5)));
    background: -o-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(0, 0, 0, 0.5) 100%);
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(0, 0, 0, 0.5) 100%); */
  color: white;
  background-image: linear-gradient(
    22deg,
    rgba(249, 249, 249, 1) 61%,
    rgb(0 0 0 / 25%) 100%
  );
  background-clip: text;
  color: transparent;
  padding-top: 10px;
  padding-bottom: 6px;
  padding-left: 15px;
  width: fit-content;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
  text-transform: uppercase;
}

.footerFlex__title p {
  padding-left: 15px;
  color: #ffffff;
  font-size: 20px;
  text-decoration: underline;
}
.swiper-button-prev2 {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  cursor: pointer;
}
.swiper-button-next1 {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  cursor: pointer;
}

.additionMachine__wrap {
  height: 600px;
  margin-top: 50px;
  position: relative;
}

.swiper-slide img {
  width: 100%;
  height: 70%;
  -o-object-fit: contain;
  object-fit: contain;

  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.swiper-slide.slide2 img {
  height: 85%;
}

.swiper-slide.slide3 img {
  height: 95%;
  transform: translate(-45%, -58%);
  right: 0;
}

.swiper-slide.slide4 img {
  height: 80%;
  transform: translate(-50%, -55%);
}

.swiper-slide.slide5 img {
  height: 70%;
  transform: translate(-38%, -60%);
}

.swiper-slide.slide6 img {
  height: 80%;
  transform: translate(-40%, -50%);
}

.swiper-slide.slide7 img {
  height: 80%;
  transform: translate(-50%, -50%);
}

.swiper-slide.slide8 img {
  height: 50%;
}

.swiper-slide.slide10 img {
  height: 90%;
  transform: translate(-40%, -55%);
}

.additionMachine__slideTitle {
  font-size: 30px;
  color: white;
  font-weight: 700;
}

.additionMachine__slideSubTitile {
  width: 200px;
  color: #074372;
  font-size: 15px;
  text-wrap: nowrap;
  font-style: italic;
}

.additionMachine__cross {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #be2229;
  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;
  font-size: 30px;
  color: white;
  line-height: 0;
  cursor: pointer;
}

/* .additionMachine__cross:nth-child(2){
    top: 11%;
    right: 8%;
} */
.additionMachine__machineTap {
  position: relative;
  width: fit-content;
  height: fit-content;
}

/* .additionMachine__machineTap circle{
    transform-origin: center;
    transition: 0.3s;
    transform-box: fill-box;
} */

/* .additionMachine__machineTap circle:hover{
fill: #074372;
}
.additionMachine__machineTap circle ~ path{
    transform-box: fill-box;
    transition: 0.3s;
    transform-origin: center;
} */
/* .additionMachine__machineTap circle:hover ~ path{
    transform: rotate(45deg);
} */

.machineDetail {
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  transform-box: fill-box;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.typeService {
  position: relative;
}

.bg1 {
  position: absolute;
  top: 800px;
  left: 0;
  z-index: -1;
  width: 100vw;
}

.footerFlex__title a {
  color: #ffffff;
  font-size: 20px;
}
.bg2 {
  position: absolute;
  width: 100vw;
  left: 0;
  z-index: -1;
}

.header__phone_response {
  display: none;
  width: 45px;
  height: 45px;
}

.paneloptions .sectionTitle {
  margin: 80px 0 30px 0;
}

.download__errors {
  color: red;
  font-size: 12px;
}

.additionMachine__machineTap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.additionMachine__machineTap {
  width: 90%;
  margin-left: 20px;
  height: 650px;
}

.additionMachine__cross:nth-child(2) {
  top: 50%;
  left: 0;
}

.additionMachine__cross:nth-child(3) {
  left: 23%;
  top: 53%;
}

.additionMachine__cross:nth-child(4) {
  left: 40%;
  top: 80%;
}

.additionMachine__cross:nth-child(5) {
  left: 70%;
  top: 75%;
}

.additionMachine__cross:nth-child(6) {
  left: 50%;
  top: 40%;
}

.additionMachine__cross:nth-child(7) {
  left: 32%;
  top: 19%;
}

.additionMachine__cross:nth-child(8) {
  top: 43%;
  left: 83%;
}

.additionMachine__cross:nth-child(9) {
  top: 28%;
  left: 78%;
}

.additionMachine__cross:nth-child(10) {
  top: 9%;
  left: 62%;
}

.additionMachine__cross:nth-child(11) {
  top: 15%;
  left: 87%;
}

.additionMachine__cross img {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 8px;
}

#video-placeholder {
  width: 560px;
  height: 315px;
  background-color: #000;
  position: relative;
}

#play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
}

.videoSection .youtube__preview {
  width: 100%;
  height: 630px;
  object-fit: cover;
  border-radius: 30px;
}

.yuotube {
  position: relative;
}

.youtube__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 80px;
  transform: translateX(-50%) translateY(-50%);
  height: 80px;
}

.yuotube iframe {
  width: 100%;
  height: 630px;
  border-radius: 30px;
}
.download__private {
  display: flex;
}

.download__private input {
  width: 15px;
  height: 15px;
  /* margin-top: 3px; */
  display: block;
}
.download button:disabled {
  opacity: 0.8;
}
