/* Внутренние стили */
html,
body,
p {
  padding: 0;
  margin: 0;
  word-break: normal !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: normal !important;
}
img {
  display: block;
  width: 100%;
}

@font-face {
  font-family: "Acrom";
  src: url("./fonts/Acrom-Regular.ttf");
  src: local("Acrom"), local("Acrom-Regular"),
    url("./fonts/Acrom-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Comfortaa";
  src: url("./fonts/Comfortaa.ttf");
  src: local("Comfortaa"), local("Comfortaa-Bold"),
    url("./fonts/Comfortaa.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

.btn-1 {
  position: relative;
  display: inline-block;
  padding: 0 20px;
  font: normal normal normal 14px/54px "Acrom" !important;
  color: #ffffff;
  height: 54px;
  border: none;
  background-color: #252b30;
  text-decoration: none;
  border-radius: 27px;
  border: 1px solid #5f5f65;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-1:hover {
  color: #ffffff;
  text-decoration: none;
  background-color: #2b3741;
  border-color: #5f5f65;
}

.btn-1--green {
  border: none;
  background-color: #57942f;
}

.btn-1--green:hover {
  background-color: #57942f;
  opacity: 0.7;
}

.btn-1--white {
  color: #191e23;
  background-color: #ffffff;
  border: 1px solid #252b30;
}
.btn-1--white:hover {
  color: #191e23;
  background-color: #ffffff;
  opacity: 0.7;
}

.btn-1--icon {
  display: inline-flex;
  padding: 0 28px;
  align-items: center;
  justify-content: space-between;
  border: none;
}
.btn-1--icon img {
  margin-left: 10px;
  width: 26px;
}

.btn-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #191e23;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  border: 1px solid #ffffff;
  transition: all 0.3s ease;
  opacity: 1;
  cursor: pointer;
}
.btn-2 svg {
  fill: #ffffff;
  transition: all 0.3s ease;
}
.btn-2:hover {
  color: #191e23;
  text-decoration: none;
  border-color: #64de23;
}
.btn-2:hover svg {
  fill: #64de23;
}
.btn-2.active {
  background-color: #ffffff;
}
.btn-2.disabled {
  opacity: 0.1;
}

body .container {
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1640px !important;
}
.body {
  width: 100%;
  background-color: white;
  overflow: hidden;
}

@media (max-width: 980px) {
  .btn-2 {
    width: 36px;
    height: 36px;
  }
}

/*
* Main
*/
.main {
  padding-top: 130px;
  padding-bottom: 100px;
  background-color: #ffffff;
}
.main__header {
  padding-bottom: 46px;
}
.main__header h1 {
  padding: 0;
  margin-top: 0;
  margin-bottom: 12px;
  font: normal normal normal 50px/110% "Acrom" !important;
  text-align: center;
  color: #191e23;
}
.main__header p {
  padding: 0;
  margin: 0;
  font: normal normal normal 18px/160% "Acrom";
  text-align: center;
  color: #191e23;
  opacity: 0.75;
}
.main__blocks {
  display: flex;
  margin-left: -10px;
  margin-right: -10px;
  align-items: stretch;
}
.main__blocks .swiper-slide {
  display: flex;
  width: calc(25% - 20px);
  height: 600px;
}
.main__block {
  position: relative;
  display: flex;
  padding: 20px;
  margin-left: 10px;
  margin-right: 10px;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 18px;
  width: calc(25% - 20px);
  height: 600px;
  border: 1px solid transparent;
}
.main__block h2 {
  padding: 0;
  margin-top: 0;
  margin-bottom: 10px;
  font: normal normal normal 38px/110% "Acrom" !important;
  color: #191e23;
  text-align: center;
}
.main__block p {
  padding: 0;
  margin: 0;
  font: normal normal normal 14px/160% "Acrom";
  color: #191e23;
  text-align: center;
}
.main__block > div {
  position: relative;
  z-index: 3;
}
.main__block > img {
  position: absolute;
  z-index: 2;
}
.main__block .btn-1 {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  width: calc(100% - 28px);
  justify-content: center;
}

.main__block--1 {
  background: radial-gradient(
    95.84% 95.84% at 34.25% 4.16%,
    #63c026 0%,
    #57942f 100%
  );
}
.main__block--1 h2,
.main__block--1 p {
  color: #ffffff;
}
.main__block--1 > img {
  top: 10%;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
}

.main__block--2 {
  border-color: #cfcfcf;
}
.main__block--2 h2 {
  color: #1e2429;
}
.main__block--2 p {
  color: #1f252a;
}
.main__block--2 > img {
  top: 30%;
  left: 0;
  width: 100%;
}

.main__block--3 {
  background: #1e2429;
  overflow: hidden;
}
.main__block--3::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1282px;
  height: 1282px;
  border-radius: 50%;
  background: linear-gradient(180deg, #232b32 0%, rgba(35, 43, 50, 0) 100%);
  filter: blur(53.5px);
  transform: translate(-50%, -50%);
  z-index: 1;
}
.main__block--3 h2,
.main__block--3 p {
  color: #ffffff;
}
.main__block--3 > img {
  left: 0;
  top: 0;
  width: 100%;
}

.main__block--4 {
  border: 1px solid #cfcfcf;
  background: #fff;
}
.main__block--4 h2 {
  color: #1e2429;
}
.main__block--4 p {
  color: #1f252a;
}
.main__block--4 > img {
  left: 0;
  top: 14%;
  width: 100%;
}

@media (max-width: 1340px) {
  .main__block--1 > img {
    top: 22%;
  }
  .main__block--4 > img {
    top: 24%;
  }
  .main__block .btn-1 {
    width: 100%;
  }
}

@media (max-width: 1240px) {
  .main__blocks .swiper-slide {
    width: calc(32% - 20px);
  }
}

@media (max-width: 980px) {
  .main__blocks .swiper-slide {
    width: calc(45% - 20px);
  }
}

@media (max-width: 768px) {
  .main__header {
    padding-bottom: 36px;
  }
  .main__header h1 {
    font: normal normal normal 32px/110% "Acrom" !important;
  }
  .main__header p {
    font: normal normal normal 14px/160% "Acrom";
  }
  .main__blocks .swiper-slide {
    width: calc(58% - 20px);
  }
  .main__block p {
    font: lighter normal normal 12px/160% "Acrom";
    text-transform: uppercase;
  }
}

@media (max-width: 576px) {
  .main__blocks .swiper-slide {
    width: calc(96% - 20px);
  }
}

.lines {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #191c1f;
}
.lines__label {
  padding: 0;
  margin-top: 0;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
  font: normal normal normal 34px/110% "Acrom" !important;
  color: #ffffff;
  text-align: center;
  max-width: 60%;
}
.lines__description {
  padding: 0;
  margin-top: 0;
  margin-bottom: 36px;
  margin-left: auto;
  margin-right: auto;
  font: normal normal normal 15px/160% "Acrom" !important;
  color: #ffffff;
  text-align: center;
  max-width: 50%;
}
.lines .btn-1 {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 252px;
  text-align: center;
}

@media (max-width: 1340px) {
  .lines__label {
    max-width: 80%;
  }
  .lines__description {
    max-width: 90%;
  }
}

@media (max-width: 980px) {
  .lines__label {
    max-width: 100%;
  }
  .lines__description {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .lines {
    padding-top: 30px;
    padding-bottom: 40px;
  }
  .lines__label {
    margin-bottom: 12px;
    font: normal normal normal 27px/110% "Acrom" !important;
  }
  .lines__description {
    margin-bottom: 24px;
    font: normal normal normal 14px/135% "Acrom";
  }
}

/*
* Device
*/
.device {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #191c1f;
}
.device__blocks {
  position: relative;
  display: flex;
}
.device__btns {
  position: absolute;
  top: 50%;
  left: -100px;
  right: -100px;
  display: flex;
  justify-content: space-between;
  height: 0;
  transform: translateY(-50%);
  z-index: 5;
}
.device__block {
  position: relative;
  border-radius: 18px;
  border: 1px solid #2e3235;
  overflow: hidden;
  width: 100%;
  z-index: 2;
}
.device__name {
  padding: 0;
  margin-top: 0;
  margin-bottom: 20px;
  font: normal normal normal 15px/110% "Acrom" !important;
  color: #ffffff;
  text-transform: uppercase;
}
.device__name span {
  color: #64de23;
}
.device__label {
  padding: 0;
  margin-top: 0;
  margin-bottom: 20px;
  font: normal normal normal 36px/110% "Acrom" !important;
  color: #ffffff;
}
.device__label span {
  color: #64de23;
}
.device__description {
  padding: 0;
  margin: 0;
  font: lighter normal normal 15px/160% "Acrom" !important;
  color: #c0c1c2;
}
.device__description span {
  font-weight: normal;
  color: #ffffff;
}
.device__body {
  position: absolute;
  top: 60px;
  left: 70px;
  bottom: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
}

.device__advantages {
  display: flex;
  flex-wrap: wrap;
  margin-top: 38px;
  margin-left: -6px;
  margin-right: -6px;
}
.device__advantage {
  display: flex;
  margin-left: 6px;
  margin-right: 6px;
  margin-bottom: 12px;
  align-items: center;
  width: calc(50% - 12px);
}
.device__advantage__icon {
  display: flex;
  margin-right: 12px;
  align-items: center;
  justify-content: center;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
}

.device__performances {
  margin-top: 36px;
}
.device__performances > p {
  padding: 0;
  margin: 0 0 12px 0;
  font: bold normal normal 17px/160% "Acrom";
  color: #ffffff;
}
.device__performances > div {
  display: flex;
  flex-wrap: wrap;
  margin-left: -4px;
  margin-right: -4px;
}
.device__performance {
  padding: 7px 14px;
  margin-left: 4px;
  margin-right: 4px;
  margin-bottom: 8px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: calc(50% - 8px);
}
.device__performance h3 {
  padding: 0;
  margin: 0;
  font: bold normal normal 17px/160% "Acrom" !important;
  text-decoration: underline;
  color: #ffffff;
}
.device__performance p {
  padding: 0;
  margin: 0;
  font: normal normal normal 12px/160% "Acrom";
  color: rgba(255, 255, 255, 0.75);
}

.device__block--2 .device__advantage__icon--1 img {
  width: 28px;
}
.device__block--2 .device__advantage__icon--2 img,
.device__block--2 .device__advantage__icon--3 img,
.device__block--2 .device__advantage__icon--4 img {
  width: 23px;
}
.device__block--2 .device__advantage__icon--5 img {
  width: 27px;
}

.device__block--3 .device__advantage__icon--1 img,
.device__block--3 .device__advantage__icon--2 img,
.device__block--3 .device__advantage__icon--3 img,
.device__block--3 .device__advantage__icon--4 img,
.device__block--3 .device__advantage__icon--5 img,
.device__block--3 .device__advantage__icon--6 img {
  width: 28px;
}

.device__block--3 .device__advantages {
  margin-left: 0;
  margin-right: 0;
  flex-direction: column;
}
.device__block--3 .device__advantage {
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}
.device__block--3 .device__advantage__icon {
  border: none;
}

.device__advantage p {
  padding: 0;
  margin: 0;
  font: normal normal normal 17px/140% "Acrom";
  color: #ffffff;
}

.device__block--1 .device__body {
  width: 40%;
}
.device__block--2 .device__body {
  width: 50%;
}
.device__block--3 .device__body {
  width: 40%;
}
.device__block--4 .device__body {
  width: 50%;
}

.device .swiper-slide-prev,
.device .swiper-slide-next {
  opacity: 0.2;
}
.device .swiper-button-disabled {
  opacity: 0.1;
}

@media (max-width: 1840px) {
  .device__blocks {
    padding-left: 60px;
    padding-right: 60px;
  }
  .device__btns {
    left: 0;
    right: 0;
  }
}

@media (max-width: 1640px) {
  .device__label {
    font: normal normal normal 28px/110% "Acrom" !important;
  }
  .device__name {
    margin-bottom: 16px;
    font: normal normal normal 14px/110% "Acrom" !important;
  }
  .device__performances {
    margin-top: 20px;
  }

  .device__block--3 .device__body {
    width: 50%;
  }

  .device__block--4 .device__body {
    width: 51%;
  }

  .device__advantage__icon {
    margin-right: 8px;
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 50px;
  }
  .device__advantage {
    margin-bottom: 0;
  }
  .device__advantages {
    margin-top: 10px;
  }
}

@media (max-width: 1340px) {
  .device__img {
    display: flex;
    height: 820px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .device__img img {
    height: 100%;
    width: auto;
  }
  .device__block--1 .device__body {
    width: 50%;
  }
}

@media (max-width: 1240px) {
  .device__body {
    top: 40px;
    left: 40px;
    bottom: 40px;
  }
  .device__block--1 .device__body {
    width: 56%;
  }
  .device__block--2 .device__body {
    width: 60%;
  }
  .device__block--3 .device__body {
    width: 70%;
  }
  .device__block--4 .device__body {
    width: 56%;
  }
}

@media (max-width: 980px) {
  .device__blocks {
    padding-left: 42px;
    padding-right: 42px;
  }
  .device__body {
    top: 30px;
    left: 30px;
    bottom: 30px;
  }
  .device__img {
    height: 980px;
  }
  .device__advantages {
    flex-direction: column;
  }
  .device__advantage {
    width: 100%;
  }
  .device__advantage__icon {
    margin-right: 8px;
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 10px;
  }
}

@media (max-width: 768px) {
  .device {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .device__blocks {
    padding-left: 0;
    padding-right: 0;
    flex-direction: column;
  }
  .device__btns {
    position: static;
    margin-bottom: 12px;
    justify-content: flex-end;
    height: auto;
    transform: translateY(0);
  }
  .device__btns .btn-2 {
    margin-left: 8px;
  }
  .device__name {
    margin-bottom: 12px;
    font: normal normal normal 12px/110% "Acrom" !important;
  }
  .device__label {
    margin-bottom: 12px;
    font: normal normal normal 24px/110% "Acrom" !important;
  }
  .device__description {
    font: lighter normal normal 13px/160% "Acrom" !important;
  }
  .device__body {
    left: 20px;
    right: 20px;
  }
  .device__body .btn-1 {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 300px;
    width: 100%;
    text-align: center;
  }
  .device__block--1 .device__body {
    width: auto;
  }
  .device__block--2 .device__body {
    width: 68%;
  }
  .device__block--3 .device__body {
    width: auto;
  }
  .device__block--4 .device__body {
    width: 64%;
  }
  .device__performances > p {
    font: bold normal normal 14px/160% "Acrom";
  }
  .device__performance h3 {
    font: bold normal normal 14px/160% "Acrom" !important;
  }

  .device__advantage p {
    font: lighter normal normal 13px/160% "Acrom";
  }
}

@media (max-width: 576px) {
  .device__label {
    font: normal normal normal 18px/110% "Acrom" !important;
  }
  .device__name {
    font: normal normal normal 12px/150% "Acrom" !important;
  }
  .device__block--2 .device__body {
    width: 75%;
  }
  .device__block--4 .device__body {
    width: auto;
  }
  .device__block--4 .device__img {
    justify-content: flex-start;
  }

  .device__performance h3 {
    font: bold normal normal 10px/150% "Acrom" !important;
  }
  .device__performance {
    padding: 5px;
  }
  .device__performance p {
    font: normal normal normal 10px/140% "Acrom";
  }

  .device__img {
    height: 870px;
  }
}

/*
* Params
*/
.params {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #191c1f;
}
.params__label {
  padding: 0;
  margin-top: 0;
  margin-bottom: 20px;
  font: normal normal normal 15px/110% "Acrom" !important;
  color: #64de23;
  text-align: center;
  text-transform: uppercase;
}
.params__title {
  padding: 0;
  margin-top: 0;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  font: normal normal normal 42px/110% "Acrom" !important;
  color: #ffffff;
  text-align: center;
  max-width: 560px;
}
.params__body {
  display: flex;
  margin-left: -10px;
  margin-right: -10px;
  flex-direction: row;
  align-items: flex-start;
}
.params__types {
  margin-left: 10px;
  margin-right: 10px;
  width: calc(33% - 20px);
}
.params__types a {
  display: flex;
  padding: 0 20px;
  margin-bottom: 18px;
  align-items: center;
  font: normal normal normal 16px/110% "Acrom" !important;
  color: #ffffff;
  height: 54px;
  background-color: #1e2429;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.params__types a:hover {
  color: #191e23;
  background-color: #ffffff;
  text-decoration: none;
}
.params__types a.active {
  color: #191e23;
  background-color: #ffffff;
}
.params__view {
  padding: 20px;
  border-radius: 18px;
  background-color: #1e2429;
  flex-grow: 1;
}
.params__heder {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.params__heder::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0) 10%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0) 90%
  );
}
.params__heder p {
  padding: 0;
  margin-top: 12px;
  margin-bottom: 18px;
  font: normal normal normal 16px/110% "Acrom" !important;
  color: #ffffff;
}
.params__heder__names {
  display: flex;
  margin-left: -6px;
  margin-right: -6px;
}
.params__heder__name {
  margin-left: 6px;
  margin-right: 6px;
  text-align: center;
  width: 80px;
}
.params__row {
  position: relative;
  display: flex;
  margin-top: 10px;
  margin-right: -6px;
  justify-content: space-between;
  align-items: center;
}
.params__row::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 10%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0) 90%
  );
}
.params__table__name {
  display: flex;
  align-items: flex-start;
  flex-grow: 1;
  color: #ffffff;
}
.params__table__name p {
  padding: 0;
  font: normal normal normal 14px/160% "Acrom";
}
.params__table__label {
  margin: 0 10px 0 0;
  width: 58px;
  min-width: 58px;
  opacity: 0.75;
}
.params__table__value {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 6px;
  margin-right: 6px;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 60px;
  min-width: 80px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.04);
}
.params__table__value--emty {
  background-color: transparent;
}
.params__table__value p:nth-child(1) {
  padding: 0;
  margin: 0;
  font: normal normal normal 16px/160% "Acrom";
  color: #ffffff;
  text-align: center;
}
.params__table__value p:nth-child(2) {
  padding: 0;
  margin: 0;
  font: normal normal normal 12px/120% "Acrom";
  color: #ffffff;
  text-align: center;
}

.params__settings {
  display: flex;
  margin-top: 30px;
  align-items: center;
  justify-content: space-between;
}
.params__pages {
  display: flex;
  margin-left: -6px;
  margin-right: -6px;
}
.params__pages .btn-2 {
  margin-left: 6px;
  margin-right: 6px;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.13);
}
.params__pages .btn-2.active {
  color: #191e23;
}
.params__pages .btn-2:hover {
  border-color: rgba(255, 255, 255, 1);
}
.params__arrows {
  display: flex;
  margin-left: -6px;
  margin-right: -6px;
}
.params__arrows .btn-2 {
  margin-left: 6px;
  margin-right: 6px;
}
.params__arrows .btn-2 * {
  pointer-events: none;
}
#params-row {
  display: none;
}

@media (max-width: 1340px) {
  .params__title {
    max-width: 600px;
  }
}

@media (max-width: 980px) {
  .params__body {
    flex-direction: column;
  }
  .params__types {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  .params__view {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .params {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .params__label {
    margin-bottom: 12px;
    font: normal normal normal 13px/110% "Acrom" !important;
  }
  .params__title {
    margin-bottom: 12px;
    font: normal normal normal 27px/110% "Acrom" !important;
  }
  .params__heder div:nth-child(1) {
    display: none;
  }
  .params__view__title {
    display: block;
    padding: 0;
    margin: 0 0 10px 0;
    text-align: center;
    font: normal normal normal 16px/110% "Acrom";
  }
  .params__heder__name {
    width: calc(25% - 12px);
  }

  .params__row {
    flex-wrap: wrap;
  }
  .params__table__name {
    flex-direction: column;
    width: 100%;
  }
  .params__table__value {
    width: calc(25% - 12px);
    min-width: auto;
    height: 46px;
  }
  .params__table__label {
    margin: 0 0 4px 0;
    width: auto;
    min-width: none;
    opacity: 0.75;
  }
  .params__table__name {
    margin-bottom: 12px;
  }
  .params__row {
    padding-bottom: 12px;
  }

  .params__pages {
    margin-left: -4px;
    margin-right: -4px;
  }
  .params__pages .btn-2 {
    margin-left: 4px;
    margin-right: 4px;
  }
  .params__arrows {
    margin-left: -4px;
    margin-right: -4px;
  }
  .params__arrows .btn-2 {
    margin-left: 4px;
    margin-right: 4px;
  }
}

@media (max-width: 576px) {
  .params__table__value p:nth-child(1) {
    font: normal normal normal 11px/160% "Acrom";
  }
}

/*
* po
*/
.po {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #191c1f;
}
.po__body {
  display: flex;
}
.po__text {
  padding-right: 40px;
  width: calc(35% - 40px);
}
.po__text__label {
  padding: 0;
  margin-top: 0;
  margin-bottom: 20px;
  font: normal normal normal 15px/110% "Acrom";
  color: #64de23;
  text-transform: uppercase;
}
.po__text__title {
  padding: 0;
  margin-top: 0;
  margin-bottom: 20px;
  font: normal normal normal 42px/110% "Acrom" !important;
  color: #ffffff;
  max-width: 384px;
}
.po__text__description {
  padding: 0;
  margin-top: 0;
  margin-bottom: 54px;
  font: normal normal normal 15px/160% "Acrom";
  color: #ffffff;
}
.po__text .btn-1--icon {
  width: 310px;
  text-transform: uppercase;
}
.po__img {
  width: 65%;
}
.po__btn--mobile {
  display: none;
}
.po .btn-1 {
  text-transform: uppercase;
}

@media (max-width: 1340px) {
  .po__text {
    width: calc(50% - 40px);
  }
}

@media (max-width: 980px) {
  .po__body {
    flex-direction: column;
  }
  .po__text {
    padding-right: 0;
    width: 100%;
  }
  .po__text__label {
    text-align: center;
  }
  .po__text__title {
    text-align: center;
    max-width: none;
  }
  .po__text__description {
    text-align: center;
  }
  .po__text .btn-1 {
    display: none;
  }
  .po__btn--mobile {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 24px;
  }
  .po__img {
    margin-left: auto;
    margin-right: auto;
    width: auto;
    max-width: 460px;
  }
}

@media (max-width: 768px) {
  .po__text__label {
    margin-bottom: 12px;
    font: normal normal normal 13px/110% "Acrom";
  }
  .po__text__title {
    margin-bottom: 12px;
    font: normal normal normal 27px/110% "Acrom" !important;
  }
  .po__text__description {
    margin-bottom: 24px;
    font: normal normal normal 14px/160% "Acrom";
  }
}

/* vid */
.vid {
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
  z-index: 1;
}
.vid::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 180px;
  background-color: #191c1f;
}
.vid .container {
  position: relative;
}
.vid__body {
  position: relative;
  padding: 30px 3px 3px 3px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 70px;
  width: calc(100% - 100px);
  background-color: #262e36;
  border-radius: 4px;
  z-index: 2;
  box-shadow: 0 0 40px 10px rgba(28, 28, 28, 0.4);
}

@media (max-width: 1140px) {
  .vid__body {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .vid__body {
    margin-bottom: 0;
    transform: translateY(0px);
  }
}

/*
* bzp
*/
/* .bzp {
  padding-bottom: 100px;
}
.bzp__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 50%;
}
.bzp__imgs {
  display: flex;
  margin-bottom: 100px;
}
.bzp__img {
  margin: 0 20px;
  width: 50%;
}
.bzp__img p {
  padding: 0;
  margin-top: 40px;
  margin-bottom: 0;
  font: normal normal normal 26px/110% "Acrom";
  color: #191e23;
  text-align: center;
}
.bzp__body > h2 {
  padding: 0;
  margin-top: 0;
  margin-bottom: 24px;
  font: normal normal normal 50px/110% "Acrom" !important;
  color: #191e23;
  text-align: center;
  max-width: 780px;
}
.bzp__body > p {
  padding: 0;
  margin-top: 0;
  margin-bottom: 24px;
  font: normal normal normal 15px/160% "Acrom";
  color: #191e23;
  text-align: center;
  max-width: 650px;
}
.bzp__btns {
  display: flex;
  padding-top: 40px;
  align-items: center;
}
.bzp__btns .btn-1 {
  margin-left: 12px;
  margin-right: 12px;
}

@media (max-width: 980px) {
  .bzp {
    padding-top: 70px;
  }
}

@media (max-width: 768px) {
  .bzp__img p {
    margin-top: 12px;
    font: normal normal normal 14px/110% "Acrom";
  }
  .bzp__imgs {
    margin-bottom: 54px;
  }
  .bzp__body > h2 {
    margin-bottom: 12px;
    font: normal normal normal 27px/110% "Acrom" !important;
  }
  .bzp__body > p {
    margin-bottom: 12px;
    font: normal normal normal 14px/160% "Acrom";
  }
  .bzp__btns {
    padding-top: 12px;
    flex-direction: column;
    max-width: 340px;
    width: 100%;
  }
  .bzp__btns .btn-1 {
    margin-bottom: 12px;
    width: 100%;
    text-align: center;
  }
  .bzp__btns .btn-1:nth-child(2) {
    color: #252b30;
    background-color: #ffffff;
    border-color: #252b30;
  }
} */

/* OTHER */
#header-phone {
  color: #000606 !important;
}
#header-phone a {
  color: #000606;
  transition: color 0.3s ease;
}
#header-phone a:hover {
  color: #96c44c;
  text-decoration: none;
}

.vid{
  background-color: #1c1c1c;
}

.rza-form{
  background-color: #1c1c1c;
  padding: 70px 0;
}

.rza-form #iris-o-form{
  box-shadow: none ;
}