/*fonts*/
@font-face {
  font-family: 'NotoSans';
  src: url("../fonts/NotoSans.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'NotoSans';
  src: url("../fonts/NotoSans-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'NotoSans';
  src: url("../fonts/NotoSans-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/*-fonts*/
/*options*/
*, ::after, ::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: 'NotoSans', sans-serif;
  font-weight: 400;
  line-height: normal;
  color: #313641;
  margin: 0px;
  padding: 0px;
  background: #EAEEF5;
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  width: 7px;
}

body::-webkit-scrollbar-thumb {
  background: #FEAB0E;
  border-radius: 5px;
}

body::-webkit-scrollbar-track {
  background: transparent;
}

p {
  width: 100%;
  margin: 0px;
}

h1, h2, h3, h4, h5 {
  width: 100%;
  margin: 0px;
}

img {
  max-width: 100%;
}

ul, ol {
  padding: 0px;
  margin: 0px;
}

li {
  list-style-type: none;
}

a {
  outline: none;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  outline: none;
}

select {
  opacity: 1;
  border-radius: 0;
  font-family: 'NotoSans', sans-serif;
}

select:hover, select:focus {
  outline: none;
  text-decoration: none;
}

textarea {
  font-family: 'NotoSans', sans-serif;
  resize: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 1;
  resize: none;
  border-radius: 0;
  padding: 0px;
}

textarea::-webkit-input-placeholder {
  color: #B1B5BD;
}

textarea::-moz-placeholder {
  color: #B1B5BD;
}

textarea:-ms-input-placeholder {
  color: #B1B5BD;
}

textarea:-moz-placeholder {
  color: #B1B5BD;
}

textarea:hover, textarea:focus {
  outline: none;
  text-decoration: none;
}

input {
  font-family: 'NotoSans', sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 1;
  border-radius: 0;
  padding: 0px;
}

input::-webkit-input-placeholder {
  color: #B1B5BD;
}

input::-moz-placeholder {
  color: #B1B5BD;
}

input:-ms-input-placeholder {
  color: #B1B5BD;
}

input:-moz-placeholder {
  color: #B1B5BD;
}

input:hover, input:focus {
  outline: none;
  text-decoration: none;
}

button {
  font-family: 'NotoSans', sans-serif;
  font-weight: 700;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0px;
}

button:hover, button:focus {
  outline: none;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

.container {
  height: 100%;
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

footer {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.title-xl {
  font-weight: 500;
  font-size: 48px;
  line-height: 57px;
}

.title-lg {
  font-weight: 700;
  font-size: 30px;
  line-height: 48px;
}

.button-one {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 56px;
  font-weight: 500;
  font-size: 16px;
  color: #FFFFFF;
  background: #FEAB0E;
  border-radius: 7px;
  padding: 0px 30px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.button-one svg {
  margin-right: 10px;
}

.button-one.disaled {
  pointer-events: none;
  background: #F9BA53;
}

.link-one {
  font-weight: 500;
  font-size: 16px;
  color: #4673CA;
  -webkit-transition: 0.15s;
  -o-transition: 0.15s;
  transition: 0.15s;
}

@media (max-width: 1200px) {
  .container {
    max-width: 800px;
  }
}

@media (max-width: 800px) {
  .container {
    max-width: 576px;
  }
  .title-xl {
    font-size: 24px;
    line-height: 26px;
  }
  .title-lg {
    font-size: 20px;
    line-height: 24px;
  }
}

@media (min-width: 1200px) {
  .button-one:hover {
    background: #4673CA;
  }
  .link-one:hover {
    color: #FEAB0E;
  }
}

/*-options*/
/*header*/
.header {
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  padding: 20px 0px;
  background: #EAEEF5;
}

.header.active {
  -webkit-box-shadow: 0px 5px 5px 0px rgba(206, 158, 94, 0.3);
          box-shadow: 0px 5px 5px 0px rgba(206, 158, 94, 0.3);
}

.header-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header-logo {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: 39px;
  width: 140px;
}

.header-logo img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}

.header-logo img:nth-child(2) {
  opacity: 0;
}

.header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
}

.header-menu {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-menu li {
  margin-right: 40px;
}

.header-menu a {
  position: relative;
  font-weight: 400;
  font-size: 16px;
  color: #313641;
  -webkit-transition: 0.15s;
  -o-transition: 0.15s;
  transition: 0.15s;
}

.header-menu a:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: #FEAB0E;
  -webkit-transition: 0.15s;
  -o-transition: 0.15s;
  transition: 0.15s;
  opacity: 0;
}

.header-lang {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #F6F8FF;
  border-radius: 7px;
  padding: 10px 5px;
  margin-right: 40px;
}

.header-lang li {
  opacity: 0.4;
  margin: 0px 5px;
}

.header-lang li.active {
  opacity: 1;
}

.header-lang a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-choice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.header-choice img:nth-child(2) {
  display: none;
}

.header-choice.black img:nth-child(1) {
  display: none;
}

.header-choice.black img:nth-child(2) {
  display: block;
}

.header-burger {
  display: none;
}

.header-bgr {
  display: none;
}

@media (max-width: 1200px) {
  .header .container {
    max-width: 100%;
  }
}

@media (max-width: 800px) {
  .header {
    padding: 15px 0px;
  }
  .header-logo {
    height: 20px;
  }
  .header-logo img {
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .header-burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 22px;
    height: 14px;
  }
  .header-burger span {
    height: 2px;
    background: #313641;
    -webkit-transition: 0.1s;
    -o-transition: 0.1s;
    transition: 0.1s;
    width: 100%;
  }
  .header-burger.active span:nth-child(1) {
    -webkit-transform: translate(4px, 6px) rotate(-45deg);
        -ms-transform: translate(4px, 6px) rotate(-45deg);
            transform: translate(4px, 6px) rotate(-45deg);
  }
  .header-burger.active span:nth-child(2) {
    opacity: 0;
  }
  .header-burger.active span:nth-child(3) {
    -webkit-transform: translate(4px, -6px) rotate(45deg);
        -ms-transform: translate(4px, -6px) rotate(45deg);
            transform: translate(4px, -6px) rotate(45deg);
  }
  .header-nav {
    position: fixed;
    left: 0;
    top: 50px;
    display: none;
    width: 200px;
    background: #EAEEF5;
    padding: 0px 15px;
  }
  .header-lang {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 24px;
  }
  .header-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .header-menu li {
    margin-bottom: 24px;
  }
  .header-bgr {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    background: rgba(33, 37, 42, 0.86);
  }
}

@media (min-width: 1200px) {
  .header-menu a:hover {
    color: #FEAB0E;
  }
  .header-menu a:hover:after {
    opacity: 1;
  }
}

/*-header*/
/*start*/
.start {
  margin-top: 155px;
}

.start-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.start-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 54%;
  padding-top: 50px;
}

.start-text h1 {
  margin-bottom: 30px;
}

.start-descr {
  display: block;
  max-width: 320px;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  color: #4673CA;
  background: #F6F8FF;
  border-radius: 5px;
  padding: 10px 20px;
  margin-bottom: 30px;
}

.start-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 25px;
}

.start-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 48%;
  margin-bottom: 25px;
}

.start-list svg {
  fill: #FEA806;
  margin-right: 10px;
}

.start-mob_img {
  display: none;
}

.start-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 45%;
}

@media (max-width: 1200px) {
  .start-text {
    padding-top: 0px;
  }
}

@media (max-width: 800px) {
  .start {
    margin-top: 70px;
  }
  .start-wrap {
    position: relative;
  }
  .start-text {
    width: 100%;
  }
  .start-text h1 {
    text-align: center;
    margin-bottom: 20px;
  }
  .start-text a {
    margin: auto;
  }
  .start-descr {
    width: 100%;
    max-width: 100%;
    text-align: center;
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 20px;
  }
  .start-mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .start-mob_img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 48%;
  }
  .start-list {
    display: block;
    width: 50%;
    margin-bottom: 5px;
  }
  .start-list li {
    width: 100%;
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 15px;
  }
  .start-list svg {
    width: 16px;
    min-width: 16px;
    margin-right: 7px;
  }
  .start-img {
    display: none;
  }
}

/*-start*/
/*firmware*/
.firmware {
  padding-top: 100px;
}

.firmware-title {
  margin-bottom: 30px;
}

.firmware-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #F6F8FF;
  -webkit-box-shadow: 0px 4px 23px rgba(0, 0, 0, 0.02);
          box-shadow: 0px 4px 23px rgba(0, 0, 0, 0.02);
  padding: 50px 100px 50px 50px;
  border-radius: 5px;
}

.firmware-wrap:before {
  content: '';
  position: absolute;
  z-index: -1;
  left: -200px;
  bottom: -90px;
  width: 363px;
  height: 390px;
  background: url("../img/dots.svg") center no-repeat;
  background-size: contain;
}

.firmware-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.firmware-img img:nth-child(2) {
  display: none;
}

.firmware-filter {
  width: 500px;
}

.firmware-choice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 15px;
}

.firmware-select {
  position: relative;
  width: 48%;
}

.firmware-select_point {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 54px;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  background: #EAEEF5;
  border-radius: 7px;
  cursor: pointer;
  -webkit-transition: 0.15s;
  -o-transition: 0.15s;
  transition: 0.15s;
}

.firmware-select_point:after {
  content: '';
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(90deg);
      -ms-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 5px solid #313641;
  -webkit-transition: 0.15s;
  -o-transition: 0.15s;
  transition: 0.15s;
}

.firmware-select_point svg {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  fill: #313641;
  -webkit-transition: 0.15s;
  -o-transition: 0.15s;
  transition: 0.15s;
}

.firmware-select_point.active:after {
  -webkit-transform: translateY(-50%) rotate(-90deg);
      -ms-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
}

.firmware-select_list {
  position: absolute;
  z-index: 2;
  left: 0;
  top: calc(100% + 10px);
  display: none;
  width: 100%;
  max-height: 240px;
  background: #DDE4F1;
  border-radius: 7px;
  overflow: auto;
}

.firmware-select_list::-webkit-scrollbar {
  width: 5px;
}

.firmware-select_list::-webkit-scrollbar-thumb {
  background: #4673CA;
  border-radius: 7px;
}

.firmware-select_list::-webkit-scrollbar-track {
  background: transparent;
}

.firmware-select_list label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 40px;
  cursor: pointer;
  margin: 0px;
  -webkit-transition: 0.1s;
  -o-transition: 0.1s;
  transition: 0.1s;
}

.firmware-select_list label.disaled {
  pointer-events: none;
  display: none;
}

.firmware-select_list input {
  position: absolute;
  width: 0px;
  height: 0px;
  padding: 0px;
  margin: 0px;
  opacity: 0;
}

.firmware-select_list input:checked + span {
  color: #FEAB0E;
}

.firmware-select_list span {
  color: #313641;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  text-transform: capitalize;
}

.firmware-select_list ul {
  display: none;
}

.firmware-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #EAEEF5;
  border-radius: 7px;
  padding: 4px;
  margin-bottom: 30px;
}

.firmware-tabs label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 24%;
  cursor: pointer;
}

.firmware-tabs label:nth-child(3) {
  width: 50%;
}

.firmware-tabs input {
  position: absolute;
  width: 0px;
  height: 0px;
  padding: 0px;
  margin: 0px;
  opacity: 0;
}

.firmware-tabs input:checked + span {
  color: #FFFFFF;
  background: #FEAB0E;
}

.firmware-tabs span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 46px;
  font-weight: 500;
  color: #313641;
  font-size: 14px;
  background: transparent;
  border-radius: 7px;
  text-transform: uppercase;
}

.firmware-tabs label.disaled {
  pointer-events: none;
}

.firmware-tabs label.disaled span {
  color: #9397A0;
}

.firmware-tabs label.disaled input:checked + span {
  color: #FFFFFF;
  background: #F9BA53;
}

.firmware-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
}

.firmware-descr {
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
}

.firmware-modal {
  position: absolute;
  right: 80px;
  top: 210px;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 130px;
  background: #EAEEF5;
  border-radius: 3px;
  padding: 20px;
}

.firmware-modal span {
  display: block;
  font-size: 14px;
  color: #313641;
  text-align: center;
  margin-bottom: 17px;
}

.firmware-modal a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 85px;
  font-weight: 500;
  font-size: 9px;
  color: #FFFFFF;
  padding: 2px 2px 2px 10px;
  background: #2F89CE;
  border-radius: 43px;
}

.firmware-modal circle {
  -webkit-box-shadow: -6px 0px 40px rgba(3, 19, 51, 0.3);
          box-shadow: -6px 0px 40px rgba(3, 19, 51, 0.3);
}

@media (max-width: 1200px) {
  .firmware-wrap {
    display: block;
    padding: 50px;
  }
  .firmware-filter {
    width: 100%;
  }
  .firmware-img {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .firmware-modal {
    right: auto;
    top: auto;
    left: 50px;
    bottom: 150px;
  }
}

@media (max-width: 800px) {
  .firmware {
    padding-top: 60px;
  }
  .firmware-title {
    text-align: center;
    margin-bottom: 20px;
  }
  .firmware-wrap {
    padding: 20px 15px;
  }
  .firmware-wrap:before {
    display: none;
  }
  .firmware-choice {
    display: block;
    margin-bottom: 0px;
  }
  .firmware-select {
    width: 100%;
    margin-bottom: 10px;
  }
  .firmware-select_point {
    font-size: 14px;
  }
  .firmware-select_list span {
    font-size: 14px;
  }
  .firmware-tabs {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 15px;
  }
  .firmware-tabs label {
    width: 48%;
  }
  .firmware-tabs label:nth-child(3) {
    width: 100%;
  }
  .firmware-tabs span {
    font-size: 14px;
  }
  .firmware-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 20px;
  }
  .firmware-buttons .button-one {
    width: 100%;
    margin-bottom: 15px;
  }
  .firmware-descr {
    text-align: center;
    line-height: 21px;
    margin-bottom: 20px;
  }
  .firmware-modal {
    left: 15px;
    bottom: 20px;
    padding: 15px;
    max-width: 120px;
  }
  .firmware-modal span {
    margin-bottom: 10px;
  }
  .firmware-img {
    margin-left: auto;
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .firmware-select_point:hover {
    color: #FFFFFF;
    background: #4673CA;
  }
  .firmware-select_point:hover:after {
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 5px solid #FFFFFF;
  }
  .firmware-select_list label:hover {
    background: #4673CA;
  }
  .firmware-select_list label:hover span {
    color: #FFFFFF;
  }
  .firmware-tabs label:hover span {
    color: #FEAB0E;
  }
  .firmware-tabs label:hover input:checked + span {
    color: #FFFFFF;
  }
}

/*-firmware*/
/*programs*/
.programs {
  padding-top: 100px;
}

.programs-title {
  text-align: center;
  margin-bottom: 30px;
}

.programs-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0px -25px;
}

.programs-list li {
  position: relative;
  width: calc(33.3% - 50px);
  background: #F6F8FF;
  border-radius: 5px;
  padding: 50px 50px 50px 120px;
  margin: 0px 25px 50px 25px;
}

.programs-list li:before {
  content: '';
  position: absolute;
  z-index: -1;
  left: -1px;
  top: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  background: #F6F8FF;
  border-radius: 5px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.programs-list li > svg {
  position: absolute;
  left: 50px;
  top: 50px;
  fill: #434751;
}

.programs-list h5 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 10px;
}

.programs-list p {
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  color: #7F838C;
  height: 75px;
  margin-bottom: 5px;
  overflow: hidden;
}

.programs-list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #4673CA;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: 0.15s;
  -o-transition: 0.15s;
  transition: 0.15s;
}

.programs-list a svg {
  fill: #4673CA;
  -webkit-transition: 0.15s;
  -o-transition: 0.15s;
  transition: 0.15s;
  margin-right: 10px;
}

.programs-descr {
  font-size: 14px;
  line-height: 26px;
  text-align: center;
  max-width: 770px;
  margin: auto;
}

@media (max-width: 1200px) {
  .programs-list li {
    width: calc(50% - 50px);
  }
}

@media (max-width: 800px) {
  .programs {
    padding-top: 60px;
  }
  .programs-title {
    text-align: center;
    margin-bottom: 20px;
  }
  .programs-list {
    display: block;
    margin: 0px 0px 10px 0px;
  }
  .programs-list li {
    width: 100%;
    padding: 20px 20px 20px 90px;
    margin: 0px 0px 10px 0px;
  }
  .programs-list li > svg {
    left: 30px;
    top: 20px;
    width: 35px;
    height: auto;
  }
  .programs-list h5 {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .programs-list p {
    font-size: 14px;
    line-height: 21px;
    height: auto;
    overflow: visible;
    margin-bottom: 15px;
  }
  .programs-descr {
    font-size: 14px;
    line-height: 21px;
  }
}

@media (min-width: 1200px) {
  .programs-list a:hover {
    color: #FEAB0E;
  }
  .programs-list a:hover svg {
    fill: #FEAB0E;
  }
  .programs-list li:hover:before {
    background: #FEAB0E;
  }
}

/*-programs*/
/*plus*/
.plus {
  padding: 60px 0px;
  margin-top: 100px;
  background: #F6F8FF;
}

.plus .container {
  max-width: 900px;
}

.plus-title {
  text-align: center;
}

.plus-list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0px -50px;
}

.plus-list:before {
  content: '';
  position: absolute;
  left: 100%;
  bottom: -300px;
  width: 363px;
  height: 390px;
  background: url("../img/dots.svg") center no-repeat;
  background-size: contain;
}

.plus-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: calc(33.3% - 100px);
  margin: 60px 50px 0px 50px;
}

.plus-list h5 {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
}

.plus-list_img {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 65px;
  height: 65px;
  margin-bottom: 25px;
}

.plus-list_img img {
  position: absolute;
  left: 0;
  top: 0;
}

.plus-list_img img:nth-child(2) {
  opacity: 0;
}

@media (max-width: 1200px) {
  .plus .container {
    max-width: 800px;
  }
}

@media (max-width: 800px) {
  .plus {
    margin-top: 60px;
    padding: 30px 0px;
  }
  .plus-title {
    text-align: center;
  }
  .plus .container {
    max-width: 576px;
  }
  .plus-list {
    margin: 0px -15px;
  }
  .plus-list:before {
    display: none;
  }
  .plus-list li {
    width: calc(50% - 30px);
    margin: 30px 15px 0px 15px;
  }
  .plus-list h5 {
    font-size: 14px;
    line-height: 21px;
  }
  .plus-list_img {
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
  }
  .plus-list_img img {
    width: 100%;
  }
}

/*-plus*/
/*gallery*/
.gallery {
  padding-top: 100px;
}

.gallery-title {
  text-align: center;
  margin-bottom: 30px;
}

.gallery-slider {
  overflow: visible;
}

.gallery-slide {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 270px;
  border-radius: 5px;
  overflow: hidden;
  padding: 1px;
  -webkit-box-shadow: 3px 4px 9px rgba(0, 0, 0, 0.05);
          box-shadow: 3px 4px 9px rgba(0, 0, 0, 0.05);
}

.gallery-slide:before {
  content: '';
  position: absolute;
  z-index: -1;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: #FEAB0E;
  opacity: 0;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 40px;
}

.gallery-pagination {
  position: relative;
  width: auto !important;
  bottom: 2px !important;
  margin: 0px 30px;
}

.gallery-pagination .swiper-pagination-bullet {
  position: relative;
  width: 8px !important;
  height: 8px !important;
  opacity: 1;
  background: #FFFFFF;
}

.gallery-pagination .swiper-pagination-bullet:after {
  content: '';
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 4px solid #FEAB0E;
  background: #FFFFFF;
  opacity: 0;
}

.gallery-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  opacity: 1;
}

.gallery-arrow {
  fill: #2C3139;
  outline: none;
  cursor: pointer;
  -webkit-transition: 0.15s;
  -o-transition: 0.15s;
  transition: 0.15s;
}

@media (max-width: 800px) {
  .gallery {
    padding-top: 60px;
  }
  .gallery-title {
    margin-bottom: 20px;
  }
  .gallery-slide {
    width: 240px;
    height: 170px;
  }
  .gallery-navigation {
    margin-top: 30px;
  }
}

@media (min-width: 1200px) {
  .gallery-slide:hover:before {
    opacity: 1;
  }
  .gallery-arrow:hover {
    fill: #FEAB0E;
  }
}

/*-gallery*/
/*request*/
.request {
  position: relative;
  margin-top: 100px;
}

.request:before {
  content: '';
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: #FFFFFF;
}

.request .container {
  max-width: 1000px;
}

.request-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 60px 110px;
  background: #F6F8FF;
  -webkit-box-shadow: 4px 4px 18px rgba(0, 0, 0, 0.1);
          box-shadow: 4px 4px 18px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
}

.request-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 140px;
  min-width: 140px;
  margin-right: 60px;
}

.request-img img {
  width: 100%;
}

.request-info h2 {
  font-weight: 500;
  margin-bottom: 20px;
}

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

.request-label {
  display: block;
  min-width: calc(100% - 200px);
  margin: 0px;
  padding: 0px;
}

.request-input {
  width: 100%;
  height: 54px;
  color: #CE9E5E;
  font-weight: 500;
  font-size: 16px;
  background: #EAEEF5;
  border: 1px solid #EAEEF5;
  border-radius: 7px;
  padding: 0px 30px;
}

.request-input:focus {
  border: 1px solid #CE9E5E;
}

.request-button {
  position: relative;
  z-index: 2;
  left: -20px;
  width: calc(100% + 20px);
  height: 54px;
  color: #FFFFFF;
  font-weight: 500;
  font-size: 16px;
  background: #CE9E5E;
  border-radius: 7px;
  text-align: center;
  border: none;
  cursor: pointer;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 1200px) {
  .request .container {
    max-width: 800px;
  }
  .request-wrap {
    padding: 50px;
  }
  .request-label {
    min-width: calc(100% - 170px);
  }
}

@media (max-width: 800px) {
  .request {
    margin-top: 60px;
  }
  .request .container {
    max-width: 576px;
  }
  .request-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 20px 15px;
    border-radius: 5px;
  }
  .request-img {
    width: 90px;
    min-width: 90px;
    margin-right: 0px;
    margin-bottom: 15px;
  }
  .request-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .request-info h2 {
    text-align: center;
    margin-bottom: 15px;
  }
  .request-form {
    display: block;
  }
  .request-label {
    width: 100%;
    margin-bottom: 10px;
  }
  .request-button {
    width: 100%;
    left: 0;
  }
}

@media (min-width: 1200px) {
  .request-button:hover {
    background: #4673CA;
  }
}

/*-request*/
/*footer*/
.footer {
  padding: 60px 0px;
  background: #FFFFFF;
}

.footer .container {
  max-width: 1000px;
}

.footer-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer-logo {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: 39px;
  width: 140px;
  margin-bottom: 20px;
}

.footer-logo img {
  position: absolute;
  left: 0;
  top: 0;
}

.footer-logo img:nth-child(2) {
  opacity: 0;
}

.footer-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}

.footer-socials li {
  margin-right: 10px;
}

.footer-socials li:last-child {
  margin-right: 0px;
}

.footer-socials a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #383838;
  background: #000000;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.footer-descr {
  font-size: 14px;
  font-weight: 500;
}

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

.footer-box {
  margin-right: 110px;
}

.footer-box:last-child {
  margin-right: 0px;
}

.footer-title {
  display: block;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-menu li {
  margin-bottom: 10px;
}

.footer-menu li:last-child {
  margin-bottom: 0px;
}

.footer-menu a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 400;
  font-size: 12px;
  color: #5A5E66;
  -webkit-transition: 0.15s;
  -o-transition: 0.15s;
  transition: 0.15s;
}

.footer-menu svg {
  margin-right: 7px;
}

@media (max-width: 1200px) {
  .footer .container {
    max-width: 100%;
  }
  .footer-box {
    margin-right: 60px;
  }
}

@media (max-width: 800px) {
  .footer {
    padding: 40px 0px 20px 0px;
  }
  .footer-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .footer-nav {
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .footer-box {
    margin: 0px 0px 30px 0px;
  }
  .footer-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .footer-socials {
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .footer-box {
    width: 50%;
  }
  .footer-menu li {
    padding-right: 15px;
  }
  .footer-box:last-child {
    width: 100%;
  }
  .footer-box:last-child .footer-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
  .footer-box:last-child .footer-menu li {
    width: 50%;
    margin: 0px;
  }
}

@media (min-width: 1200px) {
  .footer-socials a:hover {
    background: #FEAB0E;
  }
  .footer-menu a:hover {
    color: #FEAB0E;
  }
}

/*-footer*/
/*black*/
body.black {
  color: #FFFFFF;
  background: #21252A;
}

body.black .header {
  background: #21252A;
}

body.black .header-logo img:nth-child(1) {
  opacity: 1;
}

body.black .header-logo img:nth-child(2) {
  opacity: 1;
}

body.black .header-menu a {
  color: #FFFFFF;
}

body.black .header-lang {
  background: #1A1F25;
}

body.black .start-descr {
  color: #6094FA;
  background: #2C3139;
}

body.black .start-list svg {
  fill: #FFFFFF;
}

body.black .firmware-wrap {
  background: #2C3139;
}

body.black .firmware-select_point {
  background: #21252A;
}

body.black .firmware-select_list {
  background: #1A1F25;
}

body.black .firmware-select_list span {
  color: #FFFFFF;
}

body.black .firmware-select_list input:checked + span {
  color: #FEAB0E;
}

body.black .firmware-tabs {
  background: #21252A;
}

body.black .firmware-tabs span {
  color: #FFFFFF;
}

body.black .firmware-tabs label.disaled span {
  color: #55585C;
}

body.black .firmware-tabs label.disaled input:checked + span {
  color: #FFFFFF;
  background: #F9BA53;
}

body.black .button-one.disaled {
  background: #F9BA53;
}

body.black .firmware-modal {
  background: #0B0B22;
}

body.black .firmware-modal span {
  color: #FFFFFF;
}

body.black .programs-list li {
  background: #2C3139;
}

body.black .programs-list li:before {
  background: #2C3139;
}

body.black .programs-list > svg {
  fill: #76797E;
}

body.black .plus {
  background: #2C3139;
}

body.black .plus-list_img img:nth-child(1) {
  opacity: 0;
}

body.black .plus-list_img img:nth-child(2) {
  opacity: 1;
}

body.black .gallery-arrow {
  fill: #FFFFFF;
}

body.black .request-wrap {
  background: #2C3139;
}

body.black .request-input {
  border: 1px solid #21252A;
  background: #21252A;
}

body.black .request-input:focus {
  border: 1px solid #FEAB0E;
}

body.black .request:before {
  background: #16191C;
}

body.black .footer {
  background: #16191C;
}

body.black .footer-logo img:nth-child(1) {
  opacity: 1;
}

body.black .footer-logo img:nth-child(2) {
  opacity: 1;
}

body.black .footer-menu a {
  color: #FFFFFF;
}

body.black .header-nav {
  background: #21252A;
}

body.black .header-burger span {
  background: #FFFFFF;
}

@media (min-width: 1200px) {
  body.black .header-menu a:hover {
    color: #FEAB0E;
  }
  body.black .firmware-select_point:hover {
    color: #FFFFFF;
    background: #4673CA;
  }
  body.black .firmware-select_list label:hover input:checked + span {
    color: #FFFFFF;
  }
  body.black .firmware-tabs label:hover span {
    color: #FEAB0E;
  }
  body.black .firmware-tabs label:hover input:checked + span {
    color: #FFFFFF;
  }
  body.black .programs-list li:hover:before {
    background: #FEAB0E;
  }
  body.black .gallery-arrow:hover {
    fill: #FEAB0E;
  }
  body.black .footer-menu a:hover {
    color: #FEAB0E;
  }
}

/*-black*/


.application-select {
    position: relative;
    width: 48%;
}

.application-select select {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 54px;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    text-transform: uppercase;
    border-radius: 7px;
    cursor: pointer;
    -webkit-transition: 0.15s;
    -o-transition: 0.15s;
    transition: 0.15s;
    border: none;
    outline: none;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    overflow: hidden;
    background: url(https://asic.software/wp-content/uploads/2023/11/down-arrow-svgrepo-com.svg) no-repeat right #EAEEF5;
    background-position-x: calc(100% - 16px);
    background-size: 8px 8px, 8px 8px, 8px 8px;
    padding: 10px;
}

.application-select select:hover {
    color: #FFFFFF;
    background: url(https://asic.software/wp-content/uploads/2023/11/down-arrow-white.svg) no-repeat right #4673CA;
    background-position-x: calc(100% - 16px);
    background-size: 8px 8px, 8px 8px, 8px 8px;
}

.row-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 30px;
}

.row-links #link_combo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: 48%;
    height: 56px;
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
    border-radius: 7px;
    padding: 0px 30px;
    -webkit-transition: background 0.3s;
    -o-transition: background 0.3s;
    transition: background 0.3s;
    background: #F9BA53;
}

.row-links #link_combo:hover {
    background: #4673CA;
}

.row-links #link_combo svg {
    margin-right: 10px;
}

.row-links .online-setup {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: 48%;
    height: 56px;
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
    background: #FEAB0E;
    border-radius: 7px;
    padding: 0px 30px;
    -webkit-transition: background 0.3s;
    -o-transition: background 0.3s;
    transition: background 0.3s;
    background: #4673CA;
}

.row-links .online-setup:hover {
    background: #FEAB0E;
}

.row-links .online-setup svg {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.instruction-link {
    margin-bottom: 30px;
}

.instruction-link a {
    display: flex;
    align-items: center;
}

.instruction-link svg {
    margin-right: 10px;
}

.instruction-link a svg path {
    -webkit-transition: 0.15s;
    -o-transition: 0.15s;
    transition: 0.15s;
}

.instruction-link a:hover svg path {
    fill: #FEAB0E;
}

body.black .application-select select {
    background: url(https://asic.software/wp-content/uploads/2023/11/down-arrow-svgrepo-com.svg) no-repeat right #21252A;
    background-position-x: calc(100% - 16px);
    background-size: 8px 8px, 8px 8px, 8px 8px;
    color: #FFFFFF;
}

body.black .application-select select:hover {
    color: #FFFFFF;
    background: url(https://asic.software/wp-content/uploads/2023/11/down-arrow-white.svg) no-repeat right #4673CA;
    background-position-x: calc(100% - 16px);
    background-size: 8px 8px, 8px 8px, 8px 8px;
}

@media (max-width: 1200px) {
    body.black .application-select select {
        background: url(https://asic.software/wp-content/uploads/2023/11/down-arrow-svgrepo-com.svg) no-repeat right #21252A;
        background-position-x: calc(100% - 16px);
        background-size: 8px 8px, 8px 8px, 8px 8px;
        color: #FFFFFF;
    }
    body.black .application-select select:hover {
        color: #FFFFFF;
        background: url(https://asic.software/wp-content/uploads/2023/11/down-arrow-svgrepo-com.svg) no-repeat right #21252A;
        background-position-x: calc(100% - 16px);
        background-size: 8px 8px, 8px 8px, 8px 8px;
    }
}

@media (max-width: 800px) {
    .application-select {
        width: 100%;
        margin-bottom: 15px;
    }
    .application-select select {
        font-size: 15px;
        background: url(https://asic.software/wp-content/uploads/2023/11/down-arrow-svgrepo-com.svg) no-repeat right #EAEEF5;
        background-position-x: calc(100% - 13px);
        background-size: 9px 9px, 9px 9px, 9px 9px;
    }
    .application-select select:hover {
        color: #FFFFFF;
        background: url(https://asic.software/wp-content/uploads/2023/11/down-arrow-white.svg) no-repeat right #4673CA;
        background-position-x: calc(100% - 13px);
        background-size: 9px 9px, 9px 9px, 9px 9px;
    }
    body.black .application-select select {
        color: #FFFFFF;
        background: url(https://asic.software/wp-content/uploads/2023/11/down-arrow-svgrepo-com.svg) no-repeat right #21252A;
        background-position-x: calc(100% - 13px);
        background-size: 9px 9px, 9px 9px, 9px 9px;
    }
    body.black .application-select select:hover {
        color: #FFFFFF;
        background: url(https://asic.software/wp-content/uploads/2023/11/down-arrow-svgrepo-com.svg) no-repeat right #21252A;
        background-position-x: calc(100% - 13px);
        background-size: 9px 9px, 9px 9px, 9px 9px;
    }
    .row-links {
        margin-bottom: 15px;
        flex-direction: column;
    }
    .row-links #link_combo {
        width: 100%;
        margin-bottom: 10px;
    }
    .row-links .online-setup {
        width: 100%;
    }
    .instruction-link {
        margin-bottom: 15px;
    }
}