@import "https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  width: 100%;
  min-width: 320px;
  min-height: 100vh;
}

body {
  font-family: "Open Sans", sans-serif;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}
body::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
body::-webkit-scrollbar-thumb {
  background: transparent;
}
body::-webkit-scrollbar-track {
  background: transparent;
}
body.no-scroll {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a,
input {
  font-family: "Open Sans", sans-serif;
}

/* Components */
.page__logo {
  display: flex;
  align-items: center;
  gap: 21px;
  transition: opacity 0.2s linear;
}
.page__logo:hover {
  opacity: 0.8;
}
.page__logo__name {
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
  color: white;
  text-align: left;
}
.page__title {
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
  color: #403e3f;
  text-align: left;
}
.page__title-info {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  font-weight: 600;
  line-height: 62px;
  color: #46b6ed;
  text-align: left;
  text-transform: uppercase;
}
.page__content-title {
  font-size: 30px;
  font-weight: 300;
  line-height: 40px;
  color: #403e3f;
  text-align: left;
}
.page__content-text {
  font-size: 20px;
  font-weight: 300;
  line-height: 35px;
  color: black;
  text-align: left;
}
.page__content-text a {
  color: #46b6ed;
  text-decoration: underline;
}
.page__content-text b {
  font-weight: 400;
}
.page__info-list {
  display: flex;
  flex-direction: column;
  gap: 15px 0;
}
.page__info-list__item {
  margin-left: 25px;
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
  color: black;
  text-align: left;
}
.page__info-list__item::marker {
  color: #403e3f;
}
.page__info-list__item ul {
  margin-left: 35px;
  font-size: 0.9em;
}
.page__highlight-image {
  border-radius: 16px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2509803922);
}
.page__back-btn {
  display: flex;
  align-items: center;
  gap: 0 8px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px auto 0;
  padding: 15px 30px;
  font-size: 16px;
  letter-spacing: 0.6px;
  color: rgba(0, 0, 0, 0.571);
  cursor: pointer;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 5px;
  box-shadow: 0 0 10px 5px rgba(12, 12, 12, 0.053);
  transition: 0.3s ease-in-out;
}
.page__back-btn img {
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s linear;
}
.page__back-btn:hover {
  scale: 0.99;
}
.page__back-btn:hover img {
  scale: 1.1;
}
@media (max-width: 1120px) {
  .page__content-title {
    font-size: 28px;
    line-height: 40px;
  }
}
@media (max-width: 768px) {
  .page__title {
    font-size: 22px;
    line-height: 32px;
  }
  .page__content-title {
    font-size: 22px;
    line-height: 36px;
  }
  .page__content-text {
    line-height: 28px;
  }
}
@media (max-width: 576px) {
  .page__content-text {
    font-size: 18px;
    line-height: 28px;
  }
  .page__info-list__item {
    font-size: 18px;
  }
}
@media (max-width: 375px) {
  .page__info-list__item {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .page__info-list__item {
    font-size: 18px;
  }
}
@media (max-width: 375px) {
  .page__title-info {
    line-height: 52px;
  }
}

.form {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  max-width: 400px;
  padding: 44px 30px 44px 50px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 0 6px 2px rgba(53, 53, 70, 0.0784313725);
}
.form__close {
  position: absolute;
  top: 17px;
  right: 20px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  outline: none;
  transition: 0.3s ease-in-out;
}
.form__close:hover {
  opacity: 0.8;
  scale: 0.97;
}
.form__title {
  font-size: 22px;
  font-weight: 600;
  line-height: 20.3px;
  color: #403e3f;
  text-align: left;
}
.form__subtitle {
  margin-top: 27px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20.3px;
  color: #403e3f;
  text-align: left;
}
.form__container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 300px;
  margin-top: 27px;
  border: none;
  outline: none;
}
.form__group {
  display: flex;
  flex-direction: column;
  gap: 11px 0;
  margin-top: 37px;
}
.form__group:first-child {
  margin-top: 0;
}
.form__group.error label {
  color: rgba(255, 0, 0, 0.489);
}
.form__group.error input {
  color: rgba(255, 0, 0, 0.489);
  border-bottom: 1px solid rgba(255, 0, 0, 0.489);
}
.form__group.error input::-moz-placeholder {
  color: rgba(255, 0, 0, 0.489);
}
.form__group.error input::placeholder {
  color: rgba(255, 0, 0, 0.489);
}
.form__label {
  font-size: 14px;
  font-weight: 400;
  line-height: 20.3px;
  color: #545470;
  text-align: left;
}
.form__input {
  padding-bottom: 5px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20.3px;
  color: #403e3f;
  text-align: left;
  border: none;
  border-bottom: 1px solid #9a9a9b;
  outline: none;
  opacity: 0.8;
  transition: 0.3s linear;
}
.form__input::-moz-placeholder {
  color: #b5b5ba;
}
.form__input::placeholder {
  color: #b5b5ba;
}
.form__input:focus {
  opacity: 1;
}
.form__choice {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 10px;
  width: 100%;
  margin-top: 9px;
}
.form__choice__item {
  display: flex;
  align-items: center;
  gap: 0 8px;
  font-size: 14px;
  font-weight: 300;
  line-height: 20.3px;
  color: #403e3f;
  text-align: left;
}
.form__agreement-warn {
  margin-top: 20px;
  font-size: 12px;
  font-weight: 300;
  line-height: 20.3px;
  color: #403e3f;
  text-align: left;
}
.form__agreement-warn a {
  text-decoration: underline;
}
.form__actions {
  display: flex;
  align-items: center;
  gap: 0 30px;
  width: 100%;
  margin-top: 41px;
}
.form__submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 44px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20.3px;
  color: white;
  text-align: center;
  cursor: pointer;
  background-color: #3994ec;
  border: none;
  border-radius: 6px;
  outline: none;
  transition: 0.3s ease-in-out;
}
.form__submit-btn:hover {
  opacity: 0.8;
}
.form__submit-btn:disabled {
  pointer-events: none;
  cursor: default;
  opacity: 0.4;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.7333333333);
  opacity: 0;
  transition: 0.3s ease;
}
.modal__container {
  display: flex;
  width: 90%;
  max-height: 90vh;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}
.modal.visible {
  z-index: 100;
  opacity: 1;
}
.modal.visible .modal__container {
  transform: scale(1);
}
.modal.type_form .modal__container {
  max-width: 600px;
}
.modal.type_form .modal__container .form {
  height: auto;
  max-width: 100%;
}
.modal.type_form .modal__container .form__container {
  max-width: inherit;
  overflow: scroll;
  scrollbar-width: thin;
  scrollbar-color: #888 transparent;
}
.modal.type_form .modal__container .form__container::-webkit-scrollbar {
  width: 3px;
}
.modal.type_form .modal__container .form__container::-webkit-scrollbar-track {
  background: #f5f5f5;
}
.modal.type_form .modal__container .form__container::-webkit-scrollbar-thumb {
  background-color: #888;
  border: 6px solid #f5f5f5;
  border-radius: 6px;
}
.modal.type_form .modal__container .form__container::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}
.modal.type_form .modal__container .form__main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.modal.type_form .modal__container .form__group {
  width: 100%;
  margin-top: 0;
}
.modal.type_form .modal__container .form__agreement-warn {
  width: 85%;
}
.modal.type_info {
  top: auto;
  bottom: 100px;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: 0 auto;
  background-color: transparent;
}
.modal.type_info .modal__container {
  z-index: 20;
  align-items: center;
  gap: 0 15px;
  width: 100%;
  height: 100%;
  padding: 20px 30px 20px 20px;
  background-color: rgba(12, 12, 12, 0.862);
  border-radius: 15px 0 15px 15px;
  box-shadow: 0 0 55px 10px rgba(128, 128, 128, 0.171);
}
.modal.type_info .modal__info-text {
  font-size: 14px;
  color: white;
}
.modal.type_info .modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
@media (max-width: 930px) {
  .modal.type_form .modal__container .form {
    padding: 26px 20px;
  }
  .modal.type_form .modal__container .form__close {
    width: 25px;
    height: 25px;
  }
  .modal.type_form .modal__container .form__close img {
    width: inherit;
    height: inherit;
  }
  .modal.type_form .modal__container .form__actions {
    margin-top: 20px;
  }
}
@media (max-width: 576px) {
  .modal.type_form .modal__container .form {
    padding: 37px 37px 37px 33px;
  }
  .modal.type_form .modal__container .form__main {
    grid-template-columns: 1fr;
  }
}

.switch {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 4px;
  background: white;
  border: 1px solid #d4d4db;
  border-radius: 100px;
}
.switch__item {
  flex-grow: 1;
  height: 100%;
  padding: 6px 2%;
  overflow: hidden;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.3px; /* 145% */
  color: #000;
  text-align: center;
  text-overflow: ellipsis;
  cursor: pointer;
  background: white;
  border: none;
  border-radius: 100px;
  outline: none;
  transition: 0.2s ease-in-out;
}
.switch__item.type_active {
  font-weight: 600;
  color: white;
  background-color: #403e3f;
}

.advantage-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.advantage-list__group {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: -moz-fit-content;
  max-height: fit-content;
}
.advantage-list__item {
  display: flex;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 58px;
  background-color: white;
  border-bottom: 1px solid rgba(67, 41, 163, 0.3019607843);
  content: "";
}
.advantage-list__item__main {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  max-width: 467px;
  padding: 5px 0 5px 16px;
  content: "";
}
.advantage-list__item__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 20.3px;
  color: #403e3f;
  text-align: left;
}
.advantage-list__item__text {
  width: 100%;
  max-width: 100%;
  padding-right: 5px;
  font-size: 18px;
  font-weight: 300;
  line-height: 25px;
  color: #403e3f;
}
.advantage-list__item__columns {
  display: flex;
  align-items: center;
  justify-content: end;
  height: 100%;
  margin-left: auto;
  list-style: none;
}
.advantage-list__item__columns li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 98px;
  height: inherit;
  border: 1px solid transparent;
  content: "";
}
.advantage-list__item__columns li:nth-child(odd) {
  background: #f9f9f9;
}
.advantage-list__item.head {
  height: 58px;
  padding: 0;
}
.advantage-list__item.head .advantage-list__item__main {
  max-width: 100%;
  background-color: #f9f9f9;
}
.advantage-list__item.head .advantage-list__item__columns li {
  font-size: 14px;
  font-weight: 600;
  line-height: 20.3px;
  color: #403e3f;
  text-align: center;
  background-color: #f9f9f9;
}
@media (max-width: 640px) {
  .advantage-list__item__main {
    padding: 5px 0 5px 8px;
  }
  .advantage-list__item__text {
    font-size: 14px;
  }
  .advantage-list__item__columns li {
    width: 70px;
    font-size: 12px !important;
  }
}
@media (max-width: 480px) {
  .advantage-list__container {
    overflow-x: scroll;
    scrollbar-width: thin;
    scrollbar-color: #888 transparent;
  }
  .advantage-list__container::-webkit-scrollbar {
    width: 3px;
  }
  .advantage-list__container::-webkit-scrollbar-track {
    background: #f5f5f5;
  }
  .advantage-list__container::-webkit-scrollbar-thumb {
    background-color: #888;
    border: 6px solid #f5f5f5;
    border-radius: 6px;
  }
  .advantage-list__container::-webkit-scrollbar-thumb:hover {
    background-color: #555;
  }
  .advantage-list__item {
    width: 460px;
  }
}

/* ____________ */
/* Main Sections */
.header {
  display: flex;
  width: 100%;
  height: 100px;
  padding: 0 30px;
  background-color: #403e3f;
  border-bottom: 1px solid #575757;
}
.header .page__logo__name {
  text-wrap: nowrap;
}
.header__wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  max-width: 1200px;
  margin: auto;
  transition: position 0.3s ease;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 50px;
  width: 100%;
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 30px;
  width: 100%;
}
.header__nav__list {
  display: flex;
  align-items: center;
  gap: 35px;
  list-style-type: none;
}
.header__nav__item {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 95px;
  margin-top: -5px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20.3px;
  color: white;
  text-align: left;
  cursor: pointer;
  border-top: 5px solid transparent;
  transition: 0.2s linear;
  text-wrap: nowrap;
}
.header__nav__item:hover {
  color: #46b6ed;
}
.header__nav__item:hover .header__nav__item__menu {
  display: block;
}
.header__nav__item.active {
  color: #46b6ed;
  border-top: 5px solid #46b6ed;
}
.header__nav__item.disabled {
  pointer-events: none;
  cursor: default;
  opacity: 0.5;
}
.header__nav__item a {
  display: flex;
  align-items: center;
  height: 100%;
}
.header__nav__item.group {
  display: flex;
  justify-content: end;
  gap: 15px;
}
.header__nav__item.group .group-link {
  z-index: 5;
  display: inherit;
  justify-content: inherit;
  gap: inherit;
}
.header__nav__item__menu {
  position: absolute;
  top: 0;
  left: -10px;
  display: none;
  min-width: 202px;
  transition: 0.1s linear;
}
.header__nav__item__menu ul {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 95px;
  list-style-type: none;
  background-color: #403e3f;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2509803922);
}
.header__nav__item__menu li {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.7490196078);
  text-align: left;
  border-left: 4px solid transparent;
  transition: 0.2s ease-in-out;
}
.header__nav__item__menu li:hover {
  color: #fff;
  border-left: 4px solid #46b6ed;
}
.header__nav__item__menu li a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 17px 35px 14px 12px;
}
.header__nav__item__menu li.active {
  color: #46b6ed;
  border-left: 4px solid #46b6ed;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__actions__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  padding: 6.5px 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 20.3px;
  color: #403e3f;
  text-align: center;
  cursor: pointer;
  background-color: #46b6ed;
  border: 1px solid transparent;
  border-radius: 6px;
  transition: 0.3s ease-in-out;
  text-wrap: nowrap;
}
.header__actions__btn.reversed {
  color: #46b6ed;
  background-color: transparent;
  border: 1px solid #46b6ed;
}
.header__actions__btn.reversed:hover {
  color: #5fcaff;
  background-color: transparent;
  border: 1px solid #5fcaff;
}
.header__actions__btn:hover {
  background-color: #5fcaff;
}
.header__menu {
  display: none;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  transition: 0.3s ease-in-out;
}
.header__menu:hover {
  opacity: 0.8;
}
.header.sticky .header__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  height: 60px;
  max-width: 100%;
  background-color: #403e3f;
  border-bottom: 1px solid #575757;
  animation: fade-in-down 0.5s forwards;
}
.header.sticky .header__content {
  justify-content: space-between;
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
}
.header.sticky .header__actions {
  margin-left: 0;
}
.header.sticky .header__nav {
  margin-left: 0;
}
.header.sticky .header__nav__item__menu ul {
  margin-top: 75px;
}
.header.sticky .page__logo {
  gap: 0 14px;
}
.header.sticky .page__logo__image {
  width: 34px;
  height: 34px;
}
.header.sticky .page__logo__name {
  font-size: 12px;
  line-height: 18px;
}
@keyframes fade-in-down {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@media (max-width: 1200px) {
  .header__nav {
    margin: 0 auto;
    padding: 0;
  }
  .header__actions {
    flex-direction: column;
    gap: 10px 0;
    margin-left: 0 !important;
  }
  .header.sticky .header__actions {
    flex-direction: row;
    gap: 0 10px;
  }
}
@media (max-width: 1120px) {
  .header .page__logo {
    gap: 0 10px;
  }
  .header .page__logo__image {
    width: 35px;
    height: 35px;
  }
  .header .page__logo__name {
    font-size: 16px;
  }
  .header__content {
    gap: 0;
  }
  .header__nav__list {
    gap: 0 20px;
  }
  .header.sticky .page__logo__name {
    display: none;
  }
  .header.sticky .header__content {
    gap: 0 60px;
  }
}
@media (max-width: 930px) {
  .header {
    height: 60px;
  }
  .header__content {
    justify-content: space-between;
  }
  .header__content .page__logo__image {
    width: 35px;
    height: 35px;
  }
  .header__content .page__logo__name {
    font-size: 18px;
  }
  .header__container {
    position: absolute;
    top: 60px;
    left: 0;
    z-index: 10;
    display: none;
    width: 100%;
    height: 100%;
    padding: 19px 20px 120px 19px;
    overflow: scroll;
    background-color: #403e3f;
    scrollbar-width: thin;
    scrollbar-color: #888 transparent;
  }
  .header__container::-webkit-scrollbar {
    width: 3px;
  }
  .header__container::-webkit-scrollbar-track {
    background: #f5f5f5;
  }
  .header__container::-webkit-scrollbar-thumb {
    background-color: #888;
    border: 6px solid #f5f5f5;
    border-radius: 6px;
  }
  .header__container::-webkit-scrollbar-thumb:hover {
    background-color: #555;
  }
  .header__container.open {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: flex-start;
    gap: 17px 0;
  }
  .header__nav {
    margin: 0;
  }
  .header__nav__list {
    flex-direction: column;
    align-items: start;
    gap: 0;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
  .header__nav__item {
    z-index: 2;
    justify-content: start;
    height: 69px;
    min-width: 125px;
    padding-left: 16px;
  }
  .header__nav__item .a {
    font-size: 18px;
  }
  .header__nav__item__menu {
    left: 0;
    z-index: 4;
  }
  .header__nav__item__menu ul {
    margin-top: 49px !important;
    background-color: rgb(61, 59, 60);
  }
  .header__nav__item__menu ul li {
    font-size: 14px;
  }
  .header__nav__item__menu ul li a {
    padding: 10px 22px 10px 12px;
  }
  .header__nav__item.group {
    z-index: 3;
    justify-content: start;
  }
  .header__nav__item.group .group-link {
    z-index: inherit;
  }
  .header__actions {
    flex-direction: row;
    gap: 0 16px;
    margin-left: 16px;
  }
  .header__actions__btn {
    width: 153px;
    padding: 12px 0;
    font-size: 16px;
  }
  .header__menu {
    display: block;
  }
  .header.sticky .page__logo__name {
    display: block;
    font-size: 17px;
  }
  .header.sticky .header__container {
    position: fixed;
    height: 100vh;
  }
  .header.sticky .header__menu {
    width: 30px;
    height: 30px;
  }
  .header.sticky .header__menu img {
    width: inherit;
    height: inherit;
  }
  .header.sticky .header__actions {
    gap: 0 16px;
    margin-left: 16px;
  }
}
@media (max-width: 480px) {
  .header {
    padding: 0 20px;
  }
  .header .page__logo {
    gap: 0 12px;
  }
  .header .page__logo__image {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 375px) {
  .header .page__logo__name {
    font-size: 16px;
  }
  .header__container {
    padding: 0 20px;
  }
  .header__nav__item {
    width: -moz-fit-content;
    width: fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    padding-left: 0;
  }
  .header__actions {
    margin-left: 0;
  }
  .header__actions__btn {
    width: 130px;
    padding: 10px 0;
    font-size: 14px;
  }
  .header__menu {
    width: 25px;
    height: 25px;
  }
  .header__menu img {
    width: inherit;
    height: inherit;
  }
  .header.sticky .page__logo__name {
    font-size: 15px;
  }
  .header.sticky .header__content {
    gap: 0 10px;
    width: 92%;
  }
}

.main {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 80vh;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 100%;
  min-height: 446px;
  margin-top: auto;
  padding: 40px 0;
  background-color: #403e3f;
}
.footer__wrapper {
  width: 90%;
  max-width: 1260px;
  margin: 0 auto;
}
.footer .page__logo {
  gap: 0 21px;
}
.footer .page__logo__name {
  font-size: 24px;
}
.footer__info {
  display: flex;
  gap: 0 50px;
  margin-top: 61px;
}
.footer__column {
  display: flex;
  flex-direction: column;
}
.footer__column__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
  color: white;
  text-align: left;
}
.footer__column ul {
  display: flex;
  flex-direction: column;
  gap: 24px 0;
  margin-top: 35px;
  list-style-type: none;
}
.footer__column__item {
  font-size: 16px;
  font-weight: 300;
  line-height: 18px;
  color: white;
  text-align: left;
}
.footer__column__item .underline {
  text-decoration: underline;
}
.footer__final {
  display: flex;
  align-items: center;
  gap: 0 54px;
  margin-top: 77px;
}
.footer__final__item {
  font-size: 16px;
  font-weight: 300;
  line-height: 18px;
  color: white;
  text-align: left;
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 0 8px;
  list-style-type: none;
}
.footer__social__item {
  transition: 0.3s linear;
}
.footer__social__item:hover {
  opacity: 0.8;
}
@media (max-width: 930px) {
  .footer .page__logo__image {
    width: 50px;
    height: 50px;
  }
  .footer .page__logo__image img {
    width: inherit;
    height: inherit;
  }
  .footer .page__logo__name {
    font-size: 22px;
  }
  .footer__info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px 15px;
  }
  .footer__final {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px 0;
    margin-top: 46px;
  }
}
@media (max-width: 480px) {
  .footer {
    padding: 24px 29px 32px;
  }
  .footer .page__logo {
    gap: 0 12px;
  }
  .footer .page__logo__image {
    width: 30px;
    height: 30px;
  }
  .footer .page__logo__name {
    font-size: 18px;
    line-height: 18px;
  }
  .footer__wrapper {
    width: 100%;
    margin: 0;
  }
  .footer__info {
    display: flex;
    flex-direction: column;
    gap: 25px 0;
    margin-top: 51px;
  }
  .footer__column ul {
    gap: 20px 0;
    margin-top: 20px;
  }
}

/* ____________ */
/* Pages */
.home .hero {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 519px;
  padding-left: 50px;
  overflow: hidden;
  background-color: #403e3f;
}
.home .hero__wrapper {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  max-width: 1222px;
  min-height: inherit;
  margin: 0 auto;
}
.home .hero__container {
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 5px;
  width: 100%;
  margin: 135px auto 0;
}
.home .hero__title {
  font-size: 55px;
  font-weight: 300;
  line-height: 74.9px;
  color: white;
  text-align: left;
}
.home .hero__subtitle {
  max-width: 630px;
  font-size: 30px;
  font-weight: 300;
  line-height: 45px;
  color: white;
  text-align: left;
}
.home .hero__image {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  display: flex;
  height: 100%;
}
.home .hero__image div {
  z-index: 2;
  display: block;
  width: 350px;
  height: 100%;
  margin-right: -349px;
  background: linear-gradient(280deg, rgba(64, 62, 63, 0) 22.99%, #403e3f 57.28%);
  content: "";
}
.home .hero__image img {
  width: 100%;
  height: 100%;
  max-width: 798px;
  opacity: 0.9;
  -o-object-fit: cover;
     object-fit: cover;
}
.home .hero__btn {
  display: none;
}
@media (max-width: 1120px) {
  .home .hero__image div {
    width: 600px;
    margin-right: -599px;
  }
  .home .hero__image img {
    max-width: 70vw;
  }
}
@media (max-width: 768px) {
  .home .hero {
    min-height: -moz-fit-content;
    min-height: fit-content;
    padding: 46px 0 55px 52px;
  }
  .home .hero__container {
    gap: 20px 0;
    max-width: 95%;
    margin: 0;
  }
  .home .hero__title {
    font-size: 42px;
    line-height: 50px;
  }
  .home .hero__subtitle {
    font-size: 25px;
    line-height: 35px;
  }
  .home .hero__image {
    display: none;
  }
  .home .hero__btn {
    display: block;
    width: 145px;
    padding: 11px 16px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20.3px; /* 145% */
    color: #403e3f;
    text-align: center;
    background-color: #5FCAFF;
    border: none;
    border-radius: 6px;
    outline: none;
  }
}
@media (max-width: 576px) {
  .home .hero {
    padding: 26px 0 35px 32px;
  }
  .home .hero__title {
    max-width: 360px;
    font-size: 35px;
    line-height: 47px;
  }
  .home .hero__subtitle {
    font-size: 20px;
    line-height: 30px;
  }
  .home .hero__subtitle br {
    display: block;
    margin: 12px 0;
    content: "";
  }
}
@media (max-width: 480px) {
  .home .hero__subtitle {
    width: 90%;
    max-width: 258px;
  }
}
.home .experience {
  display: flex;
  width: 100%;
}
.home .experience__wrapper {
  display: flex;
  gap: 0 64px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 63px 125px 126px;
}
.home .experience__photo {
  position: relative;
  display: block;
  width: 100%;
  max-width: 515px;
}
.home .experience__photo img:nth-child(2) {
  position: absolute;
  top: 124px;
  right: 40px;
}
.home .experience__info {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}
.home .experience__info__item {
  font-size: 20px;
  font-weight: 300;
  line-height: 45px;
  color: black;
  text-align: left;
}
.home .experience__info__item.bold {
  font-weight: 400;
}
@media (max-width: 1120px) {
  .home .experience__wrapper {
    gap: 0 40px;
    padding: 43px 125px 65px;
  }
  .home .experience__photo {
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
  .home .experience__photo img:nth-child(1) {
    width: 358px;
    height: 216px;
  }
  .home .experience__photo img:nth-child(2) {
    top: 75px;
    width: 96px;
    height: 176px;
  }
}
@media (max-width: 930px) {
  .home .experience__wrapper {
    flex-direction: column;
    gap: 80px 0;
  }
}
@media (max-width: 768px) {
  .home .experience__wrapper {
    padding: 43px 65px 65px;
  }
}
@media (max-width: 576px) {
  .home .experience__info__item {
    font-size: 18px;
    line-height: 30px;
  }
}
@media (max-width: 480px) {
  .home .experience__wrapper {
    gap: 50px 0;
    padding: 16px 36px 40px;
  }
  .home .experience__photo {
    margin: 0 auto;
  }
  .home .experience__photo img:nth-child(1) {
    width: 80vw;
    height: 197px;
  }
  .home .experience__photo img:nth-child(2) {
    top: 45px;
    width: 96px;
    height: 176px;
  }
  .home .experience__info {
    gap: 20px 0;
  }
}
@media (max-width: 375px) {
  .home .experience__photo img:nth-child(1) {
    height: 176px;
  }
  .home .experience__photo img:nth-child(2) {
    top: 30px;
    right: 20px;
    height: 176px;
  }
}
.home .advantages {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px 0;
  width: 100%;
  padding: 59px 0 49px;
  background-color: #403e3f;
}
.home .advantages__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(auto, 225px));
  justify-content: center;
  gap: 24px;
  width: 90%;
}
.home .advantages__list__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px 0;
  padding: 35px 10px 17px;
  border: 1px solid #46b6ed;
  border-radius: 8px;
}
.home .advantages__list__item p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: white;
  text-align: center;
}
.home .advantages__list__item img {
  -o-object-fit: contain;
     object-fit: contain;
}
.home .advantages__title {
  max-width: 728px;
  font-size: 30px;
  font-weight: 300;
  line-height: 45px;
  color: white;
  text-align: center;
}
@media (max-width: 930px) {
  .home .advantages__list {
    grid-template-columns: repeat(2, minmax(auto, 225px));
  }
  .home .advantages__title {
    max-width: 620px;
    font-size: 25px;
  }
}
@media (max-width: 768px) {
  .home .advantages__title {
    max-width: 80%;
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .home .advantages {
    gap: 35px 0;
    padding: 46px 0 29px;
  }
  .home .advantages__list {
    grid-template-columns: repeat(1, minmax(auto, 225px));
  }
  .home .advantages__list__item {
    padding: 0;
    border: none;
  }
  .home .advantages__list__item img {
    width: 45px;
    height: 45px;
  }
  .home .advantages__title {
    max-width: 91%;
    line-height: 32px;
  }
}
@media (max-width: 375px) {
  .home .advantages__title {
    font-size: 18px;
  }
}
.home .benefits {
  display: flex;
  width: 100%;
  padding: 18px 0 0;
}
.home .benefits .page__content-title {
  color: black;
}
.home .benefits__wrapper {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
}
.home .benefits__security {
  display: flex;
  justify-content: space-between;
  margin-top: 26px;
}
.home .benefits__security__info {
  display: flex;
  flex-direction: column;
  gap: 42px 0;
  width: 100%;
  max-width: 560px;
  margin-top: 16px;
}
.home .benefits__integration {
  position: relative;
  display: flex;
  min-height: 395px;
  margin-top: 53px;
}
.home .benefits__integration__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.home .benefits__integration__image.full {
  display: none;
}
.home .benefits__integration__container {
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 26px 0;
  margin: 75px 50px 0 auto;
}
.home .benefits__integration__container .page__content-title {
  max-width: 494px;
}
.home .benefits__simple {
  display: flex;
  gap: 0 89px;
  margin-top: 85px;
}
.home .benefits__simple__container {
  display: flex;
  flex-direction: column;
  gap: 26px 0;
  margin-top: 12px;
}
.home .benefits__affordable {
  display: flex;
  gap: 0 20px;
  margin-top: 28px;
}
.home .benefits__affordable__container {
  display: flex;
  flex-direction: column;
  gap: 25px 0;
  margin-top: 104px;
}
.home .benefits__affordable__image {
  position: relative;
}
.home .benefits__affordable__image img {
  z-index: 2;
}
.home .benefits__affordable__image div {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  display: block;
  width: 621px;
  height: 100%;
  max-height: 396px;
  background: linear-gradient(90deg, #fff 15.65%, rgba(254, 254, 254, 0) 47.5%);
  content: "";
  transform: rotate(-180deg);
}
.home .benefits__compatible {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 80px;
  padding: 35px 0 60px;
  background-color: rgba(155, 155, 155, 0.0666666667);
}
.home .benefits__compatible__container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0 50px;
  margin: 35px auto 0;
  padding: 15px 25px;
  border-top: 1px solid rgb(191, 191, 191);
  border-bottom: 1px solid rgb(191, 191, 191);
  border-radius: 15px;
}
.home .benefits__compatible__container::after {
  position: absolute;
  right: -50px;
  display: block;
  width: 3px;
  height: 35px;
  background-color: rgba(154, 154, 154, 0.466);
  content: "";
}
.home .benefits__compatible__container::before {
  position: absolute;
  left: -50px;
  display: block;
  width: 3px;
  height: 35px;
  background-color: rgba(154, 154, 154, 0.466);
  content: "";
}
.home .benefits__compatible__group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px 0;
}
.home .benefits__compatible__group__title {
  font-size: 18px;
  line-height: 21px;
  color: #403e3f;
  text-align: center;
}
.home .benefits__compatible__group__list {
  display: flex;
  align-items: start;
  gap: 0 15px;
  list-style: none;
}
.home .benefits__compatible__group__list li {
  font-size: 14px;
}
@media (max-width: 1200px) {
  .home .benefits__security__image {
    width: 419px;
    height: 256px;
  }
}
@media (max-width: 1120px) {
  .home .benefits .page__title {
    width: 85%;
    margin: 0 auto;
  }
  .home .benefits .page__title-info {
    width: 85%;
    margin: 0 auto;
  }
  .home .benefits__security {
    flex-direction: column;
    gap: 23px 0;
    width: 85%;
    margin: 0 auto;
  }
  .home .benefits__simple {
    flex-direction: column;
    gap: 37px 0;
    width: 85%;
    margin: 30px auto 0;
  }
  .home .benefits__affordable {
    position: relative;
    height: 324px;
    margin-top: 53px;
  }
  .home .benefits__affordable__image {
    position: absolute;
    top: 0;
    left: 0;
  }
  .home .benefits__affordable__image img {
    width: 510px;
    height: 320px;
  }
  .home .benefits__affordable__image div {
    width: 512px;
  }
  .home .benefits__affordable__container {
    z-index: 3;
    margin: 40px 20px 0 auto;
  }
}
@media (max-width: 930px) {
  .home .benefits__wrapper {
    width: 100%;
  }
  .home .benefits__integration {
    flex-direction: column;
    gap: 50px 0;
  }
  .home .benefits__integration__image {
    position: static;
    display: block;
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .home .benefits__integration__container {
    width: 85%;
    margin: 0 auto;
  }
  .home .benefits__simple {
    width: 85%;
    margin: 39px auto 0;
  }
  .home .benefits__simple__container {
    max-width: 636px;
  }
  .home .benefits__simple__image {
    width: 420px;
    height: 260px;
  }
  .home .benefits__affordable__container {
    z-index: 3;
    height: 100%;
    margin: 0 0 0 auto;
    padding: 40px 20px;
    background-color: rgba(255, 255, 255, 0.3);
  }
}
@media (max-width: 768px) {
  .home .benefits .page__title {
    width: 88%;
  }
  .home .benefits .page__title-info {
    width: 88%;
  }
  .home .benefits__security {
    margin-top: 8px;
  }
  .home .benefits__security__info {
    margin-top: 0;
  }
  .home .benefits__integration__container {
    width: 90%;
    margin: 0 auto 0 30px;
  }
  .home .benefits__simple {
    width: 90%;
    margin: 39px auto 0 30px;
  }
  .home .benefits__affordable__container {
    justify-content: center;
    gap: 15px 0;
    max-width: 400px;
    padding: 0 20px;
    background-color: rgba(255, 255, 255, 0.5);
  }
}
@media (max-width: 640px) {
  .home .benefits__affordable__image img {
    width: 100%;
    opacity: 0.5;
  }
  .home .benefits__affordable__image div {
    width: 100%;
  }
  .home .benefits__affordable__container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    background-color: rgba(255, 255, 255, 0.7);
  }
  .home .benefits__compatible {
    margin-top: 20px;
  }
}
@media (max-width: 576px) {
  .home .benefits__security__info {
    gap: 23px 0;
  }
  .home .benefits__integration__image {
    display: none;
  }
  .home .benefits__integration__image.full {
    display: block;
  }
  .home .benefits__integration__container {
    width: 85%;
    margin: 0 auto;
  }
  .home .benefits__simple {
    width: 85%;
    margin: 39px auto 0;
  }
  .home .benefits__simple__image {
    width: 330px;
    height: 200px;
  }
  .home .benefits__compatible__container {
    flex-direction: column;
    gap: 20px 0;
    margin-top: 21px;
    padding: 0;
    border: 0;
  }
  .home .benefits__compatible__container::before, .home .benefits__compatible__container::after {
    display: none;
  }
  .home .benefits__compatible__group {
    gap: 18px 0;
  }
  .home .benefits__compatible__group__title {
    font-size: 22px;
  }
  .home .benefits__compatible__group__list {
    gap: 0 20px;
  }
  .home .benefits__compatible__group__list li {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .home .benefits__security {
    width: 88%;
  }
  .home .benefits__security__info {
    gap: 23px 0;
  }
  .home .benefits__security__image {
    width: 320px;
    height: 186px;
  }
  .home .benefits__simple__image {
    width: 300px;
    height: 184px;
    margin: 0 auto;
  }
  .home .benefits__affordable {
    flex-direction: column;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: 30px;
  }
  .home .benefits__affordable__image {
    position: static;
    top: 0;
    left: 0;
  }
  .home .benefits__affordable__image img {
    width: 100%;
    height: 210px;
    -o-object-fit: cover;
       object-fit: cover;
    opacity: 1;
  }
  .home .benefits__affordable__image div {
    display: none;
  }
  .home .benefits__affordable__container {
    gap: 25px 0;
    width: 85%;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin: 20px auto 0;
    padding: 0;
    background-color: transparent;
  }
  .home .benefits__compatible__group {
    gap: 15px 0;
  }
  .home .benefits__compatible__group__title {
    font-size: 20px;
  }
  .home .benefits__compatible__group__list li {
    font-size: 15px;
  }
}
@media (max-width: 375px) {
  .home .benefits__security__image {
    width: 280px;
    height: 166px;
  }
  .home .benefits__simple__image {
    width: 100%;
    height: 164px;
  }
}
.home .smp {
  display: flex;
  width: 100%;
  min-height: 530px;
  background-color: #403e3f;
}
.home .smp__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 10px;
  width: 90%;
  max-width: 1102px;
  margin: auto;
}
.home .smp__main {
  display: flex;
  flex-direction: column;
  gap: 24px 0;
}
.home .smp__main .page__content-title {
  color: white;
}
.home .smp__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: #fff;
}
.home .smp__text a {
  color: #46B6ED;
  text-decoration-line: underline;
}
.home .smp__provide {
  display: flex;
  flex-direction: column;
}
.home .smp__provide .page__info-list {
  margin-top: 20px;
}
.home .smp__provide .page__info-list__item {
  color: #fff;
}
.home .smp__provide .page__info-list__item::marker {
  color: rgba(255, 255, 255, 0.5607843137);
}
@media (max-width: 1200px) {
  .home .smp__img {
    width: 540px;
    height: 300px;
  }
}
@media (max-width: 930px) {
  .home .smp {
    min-height: 400px;
  }
  .home .smp__img {
    width: 400px;
    height: 220px;
  }
}
@media (max-width: 768px) {
  .home .smp {
    min-height: -moz-fit-content;
    min-height: fit-content;
    padding-top: 38px;
  }
  .home .smp__wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px 0;
  }
  .home .smp__img {
    width: 100%;
    height: 249px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 576px) {
  .home .smp__wrapper {
    width: 100%;
  }
  .home .smp__main {
    margin-left: 35px;
    padding-right: 15px;
  }
  .home .smp__provide {
    max-width: 353px;
  }
}
@media (max-width: 480px) {
  .home .smp__main {
    margin-left: 28px;
  }
}

.features .page__content-text {
  font-size: 18px;
  line-height: 30px;
}
.features__text-container {
  display: flex;
  flex-direction: column;
  gap: 62px 0;
}
.features__group {
  display: flex;
  flex-direction: column;
  gap: 11px 0;
}
.features .hero {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 539px;
  background-color: #403e3f;
}
.features .hero__wrapper {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  max-width: 1222px;
  min-height: inherit;
  margin: 0 auto;
}
.features .hero__container {
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 5px;
  width: 100%;
  margin: 135px auto 0;
}
.features .hero__title {
  font-size: 30px;
  font-weight: 300;
  line-height: 40px;
  color: white;
  text-align: left;
}
.features .hero__title b {
  font-weight: 400;
}
.features .hero__image {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  display: flex;
  height: 100%;
}
.features .hero__image__blur {
  z-index: 2;
  display: block;
  width: 454px;
  height: 100%;
  margin-right: -450px;
  background: linear-gradient(285deg, rgba(64, 62, 63, 0) 22.99%, #403e3f 57.28%);
  content: "";
}
.features .hero__image__content {
  width: 1000px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1400px) {
  .features .hero__container {
    padding: 0 60px;
  }
}
@media (max-width: 1120px) {
  .features .hero__image {
    justify-content: flex-end;
  }
  .features .hero__image__content {
    width: 600px;
  }
  .features .hero__image__blur {
    width: 454px;
  }
}
@media (max-width: 930px) {
  .features .hero {
    min-height: 450px;
  }
  .features .hero__container {
    margin-top: 105px;
  }
  .features .hero__image__content {
    width: 450px;
  }
}
@media (max-width: 640px) {
  .features .hero {
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
  .features .hero__wrapper {
    flex-direction: column;
    gap: 43px 0;
  }
  .features .hero__container {
    margin: 28px 0 0;
    padding: 0 13px 0 28px;
  }
  .features .hero__title {
    font-size: 26px;
    line-height: 34px;
  }
  .features .hero__image {
    position: static;
    height: 200px;
  }
  .features .hero__image__blur {
    display: none;
  }
  .features .hero__image__content {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 480px) {
  .features .hero__title {
    font-size: 22px;
    line-height: 32px;
  }
}
@media (max-width: 375px) {
  .features .hero__wrapper {
    gap: 30px 0;
  }
  .features .hero__container {
    padding: 0 15px;
  }
  .features .hero__title {
    font-size: 18px;
    line-height: 26px;
  }
}
.features .routing {
  display: flex;
  width: 100%;
  margin-top: 55px;
}
.features .routing__wrapper {
  display: flex;
  gap: 0 40px;
  width: 92%;
  max-width: 1222px;
  margin: 0 auto;
}
.features .routing__container {
  max-width: 470px;
  margin-top: 5px;
}
@media (max-width: 1400px) {
  .features .routing__wrapper {
    justify-content: space-between;
  }
  .features .routing__image {
    width: 642px;
    height: 223px;
  }
}
@media (max-width: 1200px) {
  .features .routing__image {
    width: 572px;
    height: 193px;
    margin-top: 20px;
  }
}
@media (max-width: 1120px) {
  .features .routing__wrapper {
    flex-direction: column;
    gap: 40px 0;
  }
  .features .routing__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
    max-width: 100%;
    margin-top: 0;
  }
  .features .routing__image {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .features .routing {
    margin-top: 30px;
  }
  .features .routing__wrapper {
    gap: 45px 0;
    width: 90%;
  }
  .features .routing__container {
    grid-template-columns: 1fr;
    gap: 20px 0;
  }
}
@media (max-width: 640px) {
  .features .routing__image {
    width: 400px;
    height: 130px;
  }
}
@media (max-width: 480px) {
  .features .routing__wrapper {
    gap: 20px 0;
  }
  .features .routing__image {
    width: 100%;
    height: 107px;
    max-width: 334px;
  }
}
.features .transparent {
  display: flex;
  width: 100%;
  margin-top: 113px;
}
.features .transparent__wrapper {
  display: flex;
  gap: 0 65px;
  width: 95%;
  max-width: 1240px;
  margin: 0 auto;
}
.features .transparent__container .page__content-text {
  max-width: 392px;
}
@media (max-width: 1120px) {
  .features .transparent__image {
    width: 456px;
    height: 278px;
  }
}
@media (max-width: 930px) {
  .features .transparent__wrapper {
    gap: 0 30px;
  }
  .features .transparent__image {
    width: 356px;
    height: 208px;
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .features .transparent {
    margin-top: 72px;
  }
  .features .transparent__wrapper {
    flex-direction: column;
    gap: 24px 0;
  }
  .features .transparent__container {
    gap: 24px 0;
  }
  .features .transparent__container .page__content-text {
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
  .features .transparent__image {
    width: 400px;
    height: 238px;
    margin-top: 0;
  }
}
@media (max-width: 576px) {
  .features .transparent {
    margin-top: 13px;
  }
  .features .transparent__wrapper {
    width: 90%;
  }
  .features .transparent__image {
    width: 380px;
    height: 208px;
  }
}
@media (max-width: 480px) {
  .features .transparent__image {
    width: 100%;
    height: 168px;
    max-width: 300px;
  }
}
.features .streamlined {
  display: flex;
  width: 100%;
  margin-top: 91px;
}
.features .streamlined__wrapper {
  position: relative;
  display: flex;
  gap: 0 65px;
  width: 90%;
  height: 395px;
  max-width: 1180px;
  margin: 0 auto;
}
.features .streamlined__container {
  z-index: 2;
  margin-top: 22px;
}
.features .streamlined__container .features__group:first-child .page__content-text {
  max-width: 389px;
}
.features .streamlined__container .page__content-text {
  max-width: 489px;
}
.features .streamlined__image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 805px;
  min-height: 395px;
}
.features .streamlined__image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.features .streamlined__image div {
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
  height: 395px;
  max-width: 621px;
  background: linear-gradient(90deg, #fff 15.65%, rgba(254, 254, 254, 0) 67.5%);
  content: "";
}
@media (max-width: 1120px) {
  .features .streamlined__image {
    max-width: 600px;
  }
}
@media (max-width: 930px) {
  .features .streamlined__wrapper {
    width: 100%;
  }
  .features .streamlined__container {
    width: 100%;
    margin: 22px auto 0;
    padding-left: 22px;
  }
  .features .streamlined__image {
    max-width: 400px;
  }
}
@media (max-width: 768px) {
  .features .streamlined {
    margin-top: 40px;
  }
  .features .streamlined__container {
    margin-top: 0;
    padding-top: 22px;
    background-color: rgba(255, 255, 255, 0.655);
  }
}
@media (max-width: 576px) {
  .features .streamlined {
    margin-top: 30px;
  }
  .features .streamlined__wrapper {
    height: -moz-fit-content;
    height: fit-content;
  }
  .features .streamlined__container {
    display: none;
  }
  .features .streamlined__image {
    position: static;
    height: 258px;
    max-width: 100%;
    min-height: inherit;
  }
  .features .streamlined__image img {
    height: 100%;
  }
  .features .streamlined__image div {
    display: none;
  }
}
@media (max-width: 375px) {
  .features .streamlined__image {
    height: 190px;
  }
}
.features .final {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 237px;
  margin-top: 63px;
  background: linear-gradient(138.88deg, #636363 7.62%, #403e3f 76.7%);
}
.features .final__container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  max-width: 1400px;
}
.features .final__text {
  width: 90%;
  max-width: 870px;
  font-size: 30px;
  font-weight: 300;
  line-height: 45px;
  color: white;
  text-align: center;
}
@media (max-width: 1120px) {
  .features .final__text {
    font-size: 26px;
    line-height: 42px;
  }
}
@media (max-width: 768px) {
  .features .final {
    margin-top: 0;
  }
}
@media (max-width: 576px) {
  .features .final {
    height: -moz-fit-content;
    height: fit-content;
  }
  .features .final__text {
    padding: 40px 0 43px;
    font-size: 22px;
    line-height: 30px;
  }
}
@media (max-width: 375px) {
  .features .final__text {
    padding: 30px 0;
    font-size: 20px;
  }
}
.features .info {
  display: flex;
  width: 100%;
}
.features .info .page__content-text {
  font-size: 20px;
  line-height: 35px;
}
.features .info .page__info-list__item {
  margin-left: 32px;
  font-size: 20px;
  line-height: 35px;
}
.features .info__wrapper {
  display: flex;
  flex-direction: column;
  width: 95%;
  max-width: 1200px;
  margin: 64px auto 0;
  padding-bottom: 64px;
}
.features .info__container {
  display: flex;
  align-items: start;
  gap: 0 36px;
  width: 100%;
}
.features .info__leftbar__image {
  -o-object-fit: cover;
     object-fit: cover;
}
.features .info__main {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.features .info__main__title {
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
  color: #403e3f;
  text-align: left;
}
.features .info__main__container {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
  width: 100%;
  margin-top: 24px;
}
.features .info__main__container h3,
.features .info__main__container p,
.features .info__main__container ul {
  max-width: 712px;
}
.features .info__material {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.features .info__material img {
  max-width: 100%;
}
.features .info__material__open-btn {
  display: flex;
  align-items: center;
  gap: 0 13px;
  font-size: 20px;
  font-weight: 400;
  line-height: 35px;
  color: #46b6ed;
  text-align: left;
  cursor: pointer;
  background-color: transparent;
  border: none;
  outline: none;
  transition: 0.3s ease-in-out;
}
.features .info__material__open-btn img {
  margin-top: 4px;
}
.features .info__material__open-btn:hover {
  opacity: 0.8;
}
.features .info__material__open-btn:hover img {
  scale: 0.98;
}
.features .info__material__container {
  display: none;
  flex-direction: column;
  gap: 30px 0;
  margin-top: 43px;
}
.features .info__material__gallery {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
}
.features .info__material__gallery img {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 0 15px 5px rgba(128, 128, 128, 0.171);
}
.features .info__material.open .info__material__open-btn {
  opacity: 0.9;
}
.features .info__material.open .info__material__open-btn img {
  transform: rotate(180deg);
}
.features .info__material.open .info__material__container {
  display: flex;
}
.features .info__reinstall {
  display: flex;
  flex-direction: column;
}
.features .info__reinstall__title {
  font-size: 19px;
  line-height: 22px;
  color: #403e3f;
}
.features .info__reinstall__guide {
  display: flex;
  flex-direction: column;
  gap: 8px 0;
  margin-top: 20px;
}
.features .info__reinstall__guide__item {
  margin-left: 20px;
  font-size: 16px;
}
.features .info__reinstall__text {
  margin-top: 25px;
  font-size: 16px;
  color: #403e3f;
}
.features .info__reinstall__text a {
  color: #46b6ed;
}
.features .info__small-list {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
  width: 100%;
}
.features .info__small-list__item {
  display: flex;
  flex-direction: column;
  width: 100%;
  transition: 0.2s ease-in-out;
}
.features .info__small-list__item:hover {
  opacity: 0.8;
}
.features .info__small-list__item.open .minus {
  display: block;
}
.features .info__small-list__item.open .plus {
  display: none;
}
.features .info__small-list__item.open .info__small-list__item__header h4 {
  color: #46b6ed;
}
.features .info__small-list__item.open .info__small-list__item__sublist {
  display: flex;
}
.features .info__small-list__item__header {
  display: flex;
  align-items: center;
  gap: 0 15px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  outline: none;
}
.features .info__small-list__item__header span {
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  color: #46b6ed;
  text-align: left;
}
.features .info__small-list__item__header h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 40px;
  color: #403e3f;
  text-align: left;
  transition: 0.2s linear;
}
.features .info__small-list__item__header .minus {
  display: none;
}
.features .info__small-list__item__header .plus {
  display: block;
}
.features .info__small-list__item__sublist {
  display: none;
  flex-direction: column;
  gap: 10px 0;
  margin: 4px 0 0 50px;
  list-style-type: disc;
}
.features .info__small-list__item__sublist li {
  font-size: 20px;
  font-weight: 300;
  line-height: 35px;
  color: black;
  text-align: left;
}
.features .info__small-list__item__sublist li::marker {
  color: rgba(128, 128, 128, 0.766);
}
@media (max-width: 930px) {
  .features .info__leftbar__image {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 768px) {
  .features .info__wrapper {
    margin-top: 20px;
  }
  .features .info__container {
    flex-direction: column;
    gap: 30px 0;
  }
  .features .info__leftbar {
    width: 100%;
  }
  .features .info__leftbar__image {
    width: 100%;
    height: 220px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .features .info__main {
    width: 92%;
    margin: 0 auto;
  }
}
@media (max-width: 576px) {
  .features .info__main__title {
    font-size: 22px;
    line-height: 32px;
  }
  .features .info__main__container {
    margin-top: 13px;
  }
  .features .info__material__container img.routing {
    height: 178px;
  }
  .features .info__material__container img.controller {
    height: 178px;
  }
  .features .info__material__container img.results {
    height: 416px;
  }
}
@media (max-width: 480px) {
  .features .info .page__title-info {
    padding: 0 20px;
  }
  .features .info__wrapper {
    width: 100%;
  }
  .features .info__main {
    width: 90%;
  }
  .features .info__material__container img.network {
    height: 420px;
  }
  .features .info__material__container img.routing {
    height: 118px;
  }
  .features .info__material__container img.controller {
    height: 118px;
  }
}
.features.how .info__wrapper {
  padding-bottom: 80px;
}
.features.how .info__material__container {
  margin-top: 14px;
}
.features.how .info__material:last-child .info__material__container {
  padding-bottom: 60px;
}

.pricing .hero {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 621px;
  background: linear-gradient(138.88deg, #636363 7.62%, #403e3f 76.7%);
}
.pricing .hero__wrapper {
  display: flex;
  flex-direction: column;
  width: 95%;
  height: 100%;
  max-width: 1180px;
  min-height: inherit;
  margin: 64px auto 0;
}
.pricing .hero__title {
  font-size: 30px;
  font-weight: 600;
  line-height: 45px;
  color: white;
  text-align: left;
}
.pricing .hero__subtitle {
  margin-top: 24px;
  font-size: 20px;
  font-weight: 400;
  line-height: 35px;
  color: white;
  text-align: left;
}
.pricing .hero__pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 32px;
  margin-top: 45px;
}
.pricing .hero__item {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 375px;
  min-height: 300px;
  border: 1px solid #46b6ed;
  border-radius: 8px;
  transition: 0.4s linear;
}
.pricing .hero__item:hover {
  border-radius: 4px;
  box-shadow: 0 0 15px 5px rgba(70, 181, 237, 0.2);
}
.pricing .hero__item__main {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 25px 30px;
}
.pricing .hero__item__title {
  font-size: 30px;
  font-weight: 400;
  line-height: 35px;
  color: white;
  text-align: left;
}
.pricing .hero__item__description {
  margin-top: 26px;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  color: white;
  text-align: left;
}
.pricing .hero__item__footer {
  display: flex;
  align-items: center;
  width: 100%;
  height: 64px;
  margin-top: auto;
  padding: 17px 31px 12px;
  background-color: #46b6ed;
}
.pricing .hero__item__footer__price {
  font-size: 36px;
  font-weight: 600;
  line-height: 35px;
  color: #403e3f;
  text-align: left;
}
.pricing .hero__item__footer__text {
  margin-left: 10px;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  color: #403e3f;
  text-align: left;
}
@media (max-width: 930px) {
  .pricing .hero__wrapper {
    width: 92%;
    margin-top: 0;
    padding: 20px 0 40px;
  }
  .pricing .hero__pricing {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 640px) {
  .pricing .hero__wrapper {
    width: 88%;
  }
  .pricing .hero__title {
    font-size: 22px;
    line-height: 30px;
  }
  .pricing .hero__subtitle {
    font-size: 22px;
    line-height: 30px;
  }
  .pricing .hero__pricing {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 36px;
  }
  .pricing .hero__item {
    max-width: 100%;
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
  .pricing .hero__item__title {
    font-size: 22px;
    line-height: 32px;
  }
  .pricing .hero__item__description {
    margin-top: 5px;
  }
}
@media (max-width: 375px) {
  .pricing .hero__subtitle {
    margin-top: 10px;
    font-size: 18px;
  }
}
.pricing .capabilities {
  display: flex;
  width: 100%;
}
.pricing .capabilities__wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 43px 79px 79px 100px;
}
.pricing .capabilities__title {
  margin-left: 8px;
  font-size: 30px;
  font-weight: 400;
  line-height: 45px;
  color: #403e3f;
  text-align: left;
}
.pricing .capabilities__container {
  display: flex;
  gap: 28px;
  width: 100%;
  margin-top: 40px;
}
.pricing .capabilities__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 793px;
}
.pricing .capabilities__main {
  display: flex;
  flex-direction: column;
}
.pricing .capabilities__main__description {
  margin-top: 25px;
  font-size: 16px;
  font-weight: 300;
  line-height: 35px;
  color: black;
  text-align: left;
}
.pricing .capabilities__friendly {
  display: flex;
  flex-direction: column;
  max-width: 700px;
  margin-top: 57px;
}
.pricing .capabilities__friendly__title {
  font-size: 30px;
  font-weight: 400;
  line-height: 35px;
  color: black;
  text-align: left;
}
.pricing .capabilities__friendly__container {
  display: flex;
  flex-direction: column;
  gap: 40px 0;
  margin-top: 33px;
}
@media (max-width: 1200px) {
  .pricing .capabilities__container {
    flex-direction: column;
  }
  .pricing .capabilities__content {
    max-width: 100%;
  }
  .pricing .capabilities__form {
    margin-top: 40px;
  }
}
@media (max-width: 930px) {
  .pricing .capabilities__wrapper {
    padding: 43px 30px 46px;
  }
  .pricing .capabilities__container {
    margin-top: 25px;
  }
  .pricing .capabilities__friendly__title {
    font-size: 27px;
  }
  .pricing .capabilities__friendly__container {
    gap: 30px 0;
    margin-top: 26px;
  }
}
@media (max-width: 576px) {
  .pricing .capabilities__friendly__title {
    font-size: 22px;
    line-height: 32px;
  }
  .pricing .capabilities__form {
    max-width: 100%;
    margin: 40px auto 0;
    padding: 0;
    box-shadow: none;
  }
  .pricing .capabilities__form .form__container {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .pricing .capabilities__main__description {
    display: none;
  }
}

.about .hero {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 439px;
  background: #403e3f;
}
.about .hero__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  max-width: 1400px;
  min-height: inherit;
  margin: 0 auto;
}
.about .hero__main {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  margin: 64px 0 0 108px;
}
.about .hero__title {
  font-size: 30px;
  font-weight: 600;
  line-height: 45px;
  color: white;
  text-align: left;
}
.about .hero__description {
  max-width: 466px;
  margin-top: 32px;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  color: white;
  text-align: left;
}
.about .hero__description a {
  font-weight: 400;
  color: #46b6ed;
  text-decoration: underline;
}
.about .hero__image {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  height: 100%;
}
.about .hero__image div {
  position: absolute;
  top: 0;
  left: -2px;
  z-index: 2;
  display: block;
  width: 300px;
  height: 100%;
  background: radial-gradient(52.04% 345.61% at 92.82% 98%, rgba(0, 0, 0, 0) 42.37%, rgba(64, 62, 63, 0.69) 71.59%, #403e3f 100%);
  content: "";
}
.about .hero__image img {
  opacity: 0.8;
}
@media (max-width: 1400px) {
  .about .hero__image div {
    width: 400px;
  }
  .about .hero__image img {
    width: 800px;
  }
}
@media (max-width: 1200px) {
  .about .hero__main {
    margin: 20px 0 0 60px;
  }
  .about .hero__image img {
    width: 600px;
    opacity: 0.6;
  }
}
@media (max-width: 930px) {
  .about .hero__image {
    opacity: 0.2;
  }
}
@media (max-width: 640px) {
  .about .hero {
    min-height: 380px;
    padding-bottom: 20px;
  }
  .about .hero__main {
    width: 88%;
    margin: 20px auto 0;
  }
}
@media (max-width: 576px) {
  .about .hero {
    min-height: 340px;
  }
  .about .hero__title {
    font-size: 22px;
    line-height: 30px;
  }
  .about .hero__description {
    margin-top: 23px;
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 480px) {
  .about .hero {
    padding-bottom: 0;
  }
  .about .hero__wrapper {
    gap: 24px 0;
  }
  .about .hero__main {
    margin-top: 0;
  }
  .about .hero__image {
    position: static;
    width: 100%;
    height: 234px;
    opacity: 1;
  }
  .about .hero__image img {
    width: inherit;
    -o-object-fit: cover;
       object-fit: cover;
    opacity: 1;
  }
  .about .hero__image div {
    display: none;
  }
}
.about .management {
  padding-bottom: 220px;
}
.about .management__wrapper {
  display: flex;
  flex-direction: column;
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
}
.about .management__description {
  display: flex;
  flex-direction: column;
  gap: 35px;
  max-width: 712px;
  margin-top: 39px;
}
.about .management__modal__container {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 500px;
  padding: 50px 40px 40px 44px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 15px 5px rgba(145, 145, 145, 0.3764705882);
}
.about .management__modal__close-btn {
  position: absolute;
  top: 19px;
  right: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: transparent;
  border: none;
  transition: 0.3s ease-in-out;
}
.about .management__modal__close-btn:hover {
  opacity: 0.8;
  scale: 0.97;
}
.about .management__modal__title {
  font-size: 22px;
  font-weight: 600;
  line-height: 20.3px;
  color: #403e3f;
  text-align: left;
}
.about .management__modal__subtitle {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: black;
  text-align: left;
}
.about .management__modal__logo {
  margin-top: 10px;
}
.about .management__modal__content {
  display: flex;
  flex-direction: column;
  gap: 25px 0;
  width: 100%;
  max-height: 543px;
  margin-top: 15px;
  overflow: scroll;
  scrollbar-width: thin;
  scrollbar-color: #888 transparent;
}
.about .management__modal__content::-webkit-scrollbar {
  width: 3px;
}
.about .management__modal__content::-webkit-scrollbar-track {
  background: #f5f5f5;
}
.about .management__modal__content::-webkit-scrollbar-thumb {
  background-color: #888;
  border: 6px solid #f5f5f5;
  border-radius: 6px;
}
.about .management__modal__content::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}
.about .management__modal__content p {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  color: black;
  text-align: left;
}
.about .management__content {
  display: flex;
  flex-direction: column;
  margin-top: 35px;
}
.about .management__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 33px 55px;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 45px;
}
.about .management__item {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 250px;
  cursor: pointer;
  transition: 0.3s linear;
}
.about .management__item:hover {
  opacity: 0.8;
}
.about .management__item__image {
  width: 100%;
  border: 1px solid #d3d3d3;
  border-radius: 8px;
}
.about .management__item__name {
  margin-top: 8px;
  font-size: 30px;
  font-weight: 400;
  line-height: 40px;
  color: #46b6ed;
  text-align: left;
}
.about .management__item__subtitle {
  margin-top: 6px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: black;
  text-align: left;
}
@media (max-width: 1120px) {
  .about .management__wrapper {
    width: 88%;
  }
  .about .management__content {
    margin-top: 23px;
  }
}
@media (max-width: 930px) {
  .about .management__item__image {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 768px) {
  .about .management__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px min(24px, 5vw);
    margin-top: 24px;
  }
}
@media (max-width: 576px) {
  .about .management {
    padding-bottom: 68px;
  }
  .about .management__item {
    max-width: 166px;
  }
  .about .management__item__image {
    width: 160px;
    height: 190px;
  }
  .about .management__item__name {
    margin-top: 15px;
    font-size: 22px;
    line-height: 30px;
  }
  .about .management__item__subtitle {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .about .management__list {
    gap: 28px 10px;
  }
}
@media (max-width: 375px) {
  .about .management__list {
    grid-template-columns: 1fr;
  }
  .about .management__item {
    max-width: 200px;
  }
  .about .management__item__image {
    width: 100%;
    height: 230px;
  }
  .about .management__item__name {
    font-size: 24px;
  }
  .about .management__item__subtitle {
    font-size: 18px;
  }
}

.resources .hero {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 526px;
  background: linear-gradient(105.22deg, #403e3f 24.49%, #636363 96.83%);
}
.resources .hero__wrapper {
  display: flex;
  flex-direction: column;
  width: 90%;
  height: 100%;
  max-width: 1200px;
  min-height: inherit;
  margin: 64px auto 0;
}
.resources .hero__title {
  max-width: 866px;
  font-size: 30px;
  font-weight: 300;
  line-height: 35px;
  color: white;
  text-align: left;
}
.resources .hero__more-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px 28px;
  margin: 48px 0;
  list-style: none;
}
.resources .hero__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 250px;
  border: 1px solid #46b6ed;
  border-radius: 8px;
  transition: 0.3s linear;
}
.resources .hero__item:hover {
  scale: 0.995;
}
.resources .hero__item:hover .hero__item__image {
  opacity: 0.8;
}
.resources .hero__item a {
  width: 100%;
  height: 100%;
  padding: 60px 11px 55px;
}
.resources .hero__item__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px 0;
}
.resources .hero__item__image {
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.3s linear;
}
.resources .hero__item__name {
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  color: #46b6ed;
  text-align: center;
}
@media (max-width: 930px) {
  .resources .hero__wrapper {
    margin-top: 20px;
  }
  .resources .hero__more-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .resources .hero__item {
    max-width: 100%;
  }
  .resources .hero__item a {
    padding: 30px 11px;
  }
  .resources .hero__item__container {
    max-width: 230px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .resources .hero__wrapper {
    width: 88%;
  }
  .resources .hero__title {
    font-size: 25px;
    line-height: 30px;
  }
}
@media (max-width: 576px) {
  .resources .hero {
    min-height: -moz-fit-content;
    min-height: fit-content;
    padding-bottom: 24px;
  }
  .resources .hero__wrapper {
    margin-top: 0;
  }
  .resources .hero__title {
    font-size: 22px;
  }
  .resources .hero__more-list {
    grid-template-columns: 1fr;
    gap: 29px 0;
    margin: 36px 0 0 15px;
  }
  .resources .hero__item {
    border: none;
  }
  .resources .hero__item a {
    padding: 0;
  }
  .resources .hero__item__container {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0 34px;
    max-width: 100%;
    margin: 0;
  }
  .resources .hero__item__image {
    width: 50px;
    height: 50px;
  }
  .resources .hero__item__name {
    font-size: 18px;
    line-height: 20px;
    text-align: left;
  }
  .resources .hero__item__name br {
    display: none;
  }
}
@media (max-width: 480px) {
  .resources .hero__title {
    max-width: 322px;
  }
}
@media (max-width: 375px) {
  .resources .hero__item__container {
    gap: 0 25px;
  }
  .resources .hero__item__image {
    width: 40px;
    height: 40px;
  }
  .resources .hero__item__name {
    font-size: 16px;
  }
}
.resources .news {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-bottom: 110px;
}
.resources .news .page__title-info {
  width: 90%;
  max-width: 1200px;
  margin: 41px auto 0;
}
.resources .news__wrapper {
  display: flex;
  gap: 0 72px;
  width: 90%;
  max-width: 1200px;
  margin: 41px auto 0;
}
.resources .news__wrapper.resource {
  margin-top: 25px;
}
.resources .news__main {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 730px;
}
.resources .news__main__header {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
}
.resources .news__main__header .switch {
  max-width: 493px;
}
.resources .news__main__content {
  display: flex;
  flex-direction: column;
  gap: 34px 0;
  width: 100%;
  margin-top: 68px;
}
.resources .news__resource {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 730px;
}
.resources .news__resource__head {
  display: flex;
  flex-direction: column;
}
.resources .news__resource__title {
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
  color: #403e3f;
}
.resources .news__resource__img {
  margin-top: 42px;
}
.resources .news__resource__body {
  display: flex;
  flex-direction: column;
  gap: 46px 0;
  margin-top: 38px;
}
.resources .news__resource__body .page__content-text {
  color: #403e3f;
}
.resources .news__resource__group {
  display: flex;
  flex-direction: column;
  gap: 15px 0;
}
.resources .news__resource__list {
  display: flex;
  flex-direction: column;
  gap: 5px 0;
}
.resources .news__resource__list__item {
  margin-left: 25px;
  font-size: 20px;
  font-weight: 300;
  line-height: 35px;
  color: #403e3f;
}
.resources .news__resource__list__item.link::marker {
  color: #3994ec;
}
.resources .news__resource__link {
  font-size: 22px;
  font-weight: 400;
  line-height: 35px;
  color: #3994ec;
  text-decoration: underline;
}
li .resources .news__resource__link::marker {
  color: #3994ec;
}
.resources .news__item {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-bottom: 32px;
  border-bottom: 1px solid #9a9a9b;
}
.resources .news__item.white-paper .news__item__headline h4,
.resources .news__item.white-paper .news__item__headline a {
  max-width: 736px;
  color: #403e3f;
}
.resources .news__item a {
  font-weight: 400;
  color: #46b6ed;
}
.resources .news__item__header {
  display: flex;
  gap: 0 29px;
  width: 100%;
}
.resources .news__item__headline {
  display: flex;
  flex-direction: column;
  gap: 33px 0;
  width: 100%;
}
.resources .news__item__headline h4 {
  font-size: 30px;
  font-weight: 300;
  line-height: 40px;
  color: #46b6ed;
  text-align: left;
}
.resources .news__item__headline h4 a {
  font-weight: inherit;
}
.resources .news__item__headline span {
  font-size: 16px;
  font-weight: 300;
  line-height: 35px;
  color: #403e3f;
  text-align: left;
}
.resources .news__item__body {
  display: flex;
  flex-direction: column;
  gap: 25px 0;
  margin-top: 22px;
}
.resources .news__item__text {
  font-size: 20px;
  font-weight: 300;
  line-height: 35px;
  color: #403e3f;
  text-align: left;
}
.resources .news__item__list {
  display: flex;
  flex-direction: column;
}
.resources .news__item__list li {
  margin-left: 35px;
  font-size: 20px;
  font-weight: 300;
  line-height: 35px;
  color: #403e3f;
  text-align: left;
}
.resources .news__item__download {
  padding: 9px 25px;
  font-size: 14px;
  font-weight: 600;
  line-height: 17.4px;
  color: #3994ec;
  text-align: center;
  cursor: pointer;
  background-color: transparent;
  border: 1px solid #3994ec;
  border-radius: 4px;
}
.resources .news__item__footer {
  display: flex;
  margin-top: 34px;
}
.resources .news__item__info {
  font-size: 16px;
  font-weight: 400;
  line-height: 35px;
  color: #403e3f;
  text-align: left;
}
.resources .news__sidebar {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 360px;
}
.resources .news__sidebar__other {
  display: flex;
  flex-direction: column;
  gap: 59px 0;
  width: 100%;
}
.resources .news__sidebar__item {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.resources .news__sidebar__item__title {
  font-size: 30px;
  font-weight: 300;
  line-height: 34px;
  color: #403e3f;
  text-align: left;
}
.resources .news__sidebar__item__list {
  display: flex;
  flex-direction: column;
  gap: 32px 0;
  width: 100%;
  margin-top: 29px;
  list-style-type: none;
}
.resources .news__sidebar__item__list li {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #46b6ed;
  text-align: left;
}
.resources .news__sidebar__item__watch {
  display: flex;
  flex-direction: column;
  gap: 14px 0;
  margin-top: 19px;
}
.resources .news__sidebar__item__watch p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #403e3f;
  text-align: left;
}
.resources .news__sidebar__item__watch a {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #3994ec;
  text-align: left;
  text-decoration-line: underline;
}
.resources .news__sidebar__demo {
  margin-top: 59px;
}
.resources .news__title {
  font-size: 30px;
  font-weight: 300;
  line-height: 35px;
  color: #403e3f;
  text-align: left;
}
.resources .news__search-input {
  display: flex;
  align-items: center;
  gap: 0 8px;
  width: 100%;
  height: 48px;
  max-width: 358px;
  padding: 13px 39px 13px 12px;
  box-shadow: 0 1px 8px 0 rgba(67, 41, 163, 0.1019607843);
  transition: 0.3s linear;
}
.resources .news__search-input:hover {
  box-shadow: 0 1px 12px 0 rgba(67, 41, 163, 0.1450980392);
}
.resources .news__search-input:hover img {
  opacity: 0.6;
}
.resources .news__search-input img {
  opacity: 0.8;
  transition: 0.3s linear;
}
.resources .news__search-input input {
  width: 100%;
  font-size: 15px;
  font-weight: 400;
  line-height: 21.3px;
  color: #545470;
  text-align: left;
  border: none;
  outline: none;
}
@media (max-width: 1120px) {
  .resources .news__wrapper {
    gap: 0 40px;
  }
  .resources .news__main__content {
    margin-top: 45px;
  }
  .resources .news__resource__img {
    max-width: 100%;
  }
  .resources .news__item__header {
    flex-direction: column;
    gap: 20px 0;
  }
}
@media (max-width: 930px) {
  .resources .news__title {
    font-size: 26px;
    line-height: 30px;
  }
  .resources .news__item__headline {
    gap: 16px 0;
  }
  .resources .news__item__headline h4 {
    font-size: 22px;
    line-height: 30px;
  }
  .resources .news__item__headline span {
    font-size: 18px;
    line-height: 28px;
  }
  .resources .news__item__text {
    font-size: 18px;
    line-height: 28px;
  }
  .resources .news__item__footer {
    margin-top: 16px;
  }
  .resources .news__resource__link {
    font-size: 18px;
    line-height: 28px;
  }
  .resources .news__resource__list__item {
    font-size: 18px;
    line-height: 28px;
  }
  .resources .news__sidebar {
    max-width: 290px;
  }
  .resources .news__sidebar__item__title {
    font-size: 26px;
    line-height: 30px;
  }
  .resources .news__sidebar__item__list {
    gap: 25px 0;
    margin-top: 16px;
  }
}
@media (max-width: 768px) {
  .resources .news {
    padding-bottom: 50px;
  }
  .resources .news__wrapper {
    flex-direction: column;
    gap: 30px 0;
  }
  .resources .news__wrapper.resource {
    gap: 48px 0;
    margin-top: 0;
  }
  .resources .news__wrapper.resource .news__sidebar {
    flex-direction: column-reverse;
  }
  .resources .news__wrapper.resource .news__sidebar__demo {
    margin-top: 0;
  }
  .resources .news__wrapper.resource .news__sidebar__other {
    gap: 59px 0;
    margin-top: 47px;
    padding-top: 71px;
    border-top: 1px solid #9A9A9B;
  }
  .resources .news__resource__img {
    height: 350px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .resources .news__resource__body {
    padding-bottom: 41px;
    border-bottom: 1px solid #9A9A9B;
  }
  .resources .news__sidebar {
    max-width: 100%;
  }
  .resources .news__sidebar__other {
    gap: 16px 0;
  }
}
@media (max-width: 576px) {
  .resources .news .page__title-info {
    margin-top: 0;
  }
  .resources .news__wrapper.resource .news__sidebar__demo {
    max-width: 100%;
    padding: 0;
    box-shadow: none;
  }
  .resources .news__wrapper.resource .news__sidebar__demo .form__container {
    max-width: inherit;
  }
  .resources .news__resource__title {
    font-size: 22px;
    line-height: 32px;
  }
  .resources .news__resource__img {
    height: 250px;
  }
  .resources .news__title {
    font-size: 22px;
  }
  .resources .news__item__img {
    display: none;
  }
  .resources .news__sidebar__item__title {
    font-size: 22px;
  }
}

.whitepapers__wrapper {
  width: 90%;
  max-width: 1280px;
  margin: 75px auto;
}
.whitepapers__title {
  font-size: 30px;
  font-weight: 500;
  line-height: 35px;
  color: #403e3f;
  text-align: center;
}
.whitepapers__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px 0;
  width: 100%;
  max-width: 1000px;
  margin: 40px auto 0;
  padding: 40px 60px;
  background-color: rgba(128, 128, 128, 0.034);
}
.whitepapers__list__separator {
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgb(213, 213, 213);
  content: "";
}
.whitepapers__item {
  display: flex;
  flex-direction: column;
  gap: 15px 0;
  list-style: none;
}
.whitepapers__item__title {
  font-size: 20px;
  font-weight: 300;
  line-height: 24px;
  color: #403e3f;
}
.whitepapers__item__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #403e3f;
}
.whitepapers__item__download {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 20px;
  padding: 8px 15px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #46b6ed;
  cursor: pointer;
  border: 1px solid #46b6ed;
  border-radius: 12px;
  transition: 0.3s ease-in-out;
}
.whitepapers__item__download:hover {
  opacity: 0.8;
  scale: 0.9999;
}
@media (max-width: 930px) {
  .whitepapers__wrapper {
    margin-top: 20px;
  }
  .whitepapers__title {
    margin-top: 15px;
  }
}
@media (max-width: 576px) {
  .whitepapers__title {
    font-size: 22px;
    line-height: 28px;
  }
  .whitepapers__list {
    margin-top: 20px;
    padding: 15px 20px;
  }
}

.faq {
  padding: 50px 0 80px;
}
.faq__container {
  display: flex;
  flex-direction: column;
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 40px 0;
  width: 90%;
  max-width: 1180px;
  margin: 20px auto 0;
  padding: 40px 20px;
  background-color: rgba(128, 128, 128, 0.034);
}
.faq__item {
  display: flex;
  flex-direction: column;
  margin-left: 30px;
}
.faq__item__title {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  color: #403e3f;
}
.faq__item__body {
  display: flex;
  flex-direction: column;
  gap: 15px 0;
  margin-top: 20px;
}
.faq__item__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}
.faq__item__list {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}
.faq__item__list li {
  margin-left: 25px;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}
@media (max-width: 768px) {
  .faq {
    padding: 20px 0 40px;
  }
  .faq__list {
    width: 100%;
    padding-top: 10px;
  }
  .faq__item {
    margin: 0;
  }
}
@media (max-width: 480px) {
  .faq__item__title {
    font-size: 20px;
    line-height: 28px;
  }
  .faq__item__body {
    margin-top: 10px;
  }
}

.construct {
  padding: 50px 0 100px;
  background-color: rgba(0, 0, 0, 0.0666666667);
}
.construct__container {
  width: 90%;
  max-width: 1024px;
  margin: 0 auto;
}
.construct__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 15px;
  width: 100%;
  margin: 0 auto;
  padding: 35px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.122);
  border-bottom: 1px solid rgba(0, 0, 0, 0.122);
}
.construct__title {
  font-size: 35px;
  font-weight: 400;
  line-height: 42px;
  color: #403e3f;
  text-align: center;
}
.construct__logo {
  -o-object-fit: contain;
     object-fit: contain;
}
.construct__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 120px auto 0;
}
@media (max-width: 576px) {
  .construct__title {
    font-size: 28px;
    line-height: 36px;
  }
}/*# sourceMappingURL=index.css.map */