@font-face {
}
.h1 {
  font-size: 3em;
  font-weight: normal;
  line-height: 1.2em;
}
.h2 {
  font-size: 2.7em;
  font-weight: normal;
  line-height: 1.2em;
}
.h3 {
  font-size: 2.2em;
  font-weight: normal;
  line-height: 1.2em;
}
.h4 {
  font-size: 2em;
  font-weight: normal;
  line-height: 1.2em;
}
.h5 {
  font-size: 1.7em;
  font-weight: normal;
  line-height: 1.2em;
}
.p {
  font-size: 1.2em;
  font-weight: normal;
  line-height: 1.8em;
}
h1,
h2,
h3,
h4 {
  font-weight: normal;
}
.txt-sm {
  font-size: .8rem;
}
.btn {
  border: none;
  background: none;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  padding: 10px 30px;
  border-radius: 5px;
}
.btn_default {
  color: #fff;
  background: rgba(255, 255, 255, 0.5);
}
.btn_revers {
  color: #2a2a2a;
  background: rgba(230, 230, 230, 0.5);
}
.btn_dark {
  background: #2a2a2a;
  color: #fff;
  border-radius: 0;
}
header {
  background: rgba(255, 255, 255, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
header.fixed {
  background: #ffffff;
  box-shadow: 0px 6px 4px -4px rgba(0, 0, 0, 0.05);
}
header.header-product {
  box-shadow: 0px 6px 4px -4px rgba(0, 0, 0, 0.05);
}
.header__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  padding: 14px 0;
}
.header__link {
  font-family: 'Roboto Condensed Light';
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
  line-height: 23px;
  color: #000000;
  text-decoration: none;
  letter-spacing: 0.1px;
  transition: all .3s;
}
@media all and (max-width: 567px) {
  .header__link {
    margin: 10px 0;
  }
}
.header__link:hover {
  color: #0500F7;
}
.header__link:not(:first-child) {
  margin-left: 30px;
}
@media all and (max-width: 567px) {
  .header__link:not(:first-child) {
    margin-left: 0;
  }
}
.header__item:first-child {
  width: 18.5%;
}
@media all and (max-width: 567px) {
  .header__item:first-child {
    width: 45%;
  }
}
.header__item:last-child {
  display: none;
}
@media all and (max-width: 567px) {
  .header__item:last-child {
    display: block;
  }
}
@media all and (max-width: 567px) {
  .header__item:nth-child(2) {
    width: 100%;
    right: -100%;
    position: fixed;
    top: 0;
    bottom: 0;
    transition: all .3s;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0;
    background: #fff;
  }
  .header__item:nth-child(2).active {
    right: 0;
    z-index: 9999;
  }
}
.logo {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: normal;
  font-size: 25px;
  line-height: 29px;
  text-transform: uppercase;
  color: #0500F6;
  letter-spacing: 0.001em;
  text-decoration: none;
}
.logo span {
    color: #000000;
  }
@media all and (max-width: 767px) {
  .logo {
    font-size: 22px;
  }
}
.hamburger {
  width: 25px;
  height: 2px;
  background: #47423B;
  position: relative;
}
.hamburger:after,
.hamburger:before {
  content: ' ';
  position: absolute;
  width: 20px;
  height: 2px;
  background: #47423B;
}
.hamburger:after {
  bottom: -5px;
}
.hamburger:before {
  top: -5px;
}
.close {
  position: absolute;
  width: 25px;
  height: 25px;
  top: 15px;
  right: 15px;
  display: none;
}
.close:after,
.close:before {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 25px;
  width: 2px;
  background-color: #3b3b3b;
}
.close:before {
  transform: rotate(45deg);
}
.close:after {
  transform: rotate(-45deg);
}
@media all and (max-width: 567px) {
  .close {
    display: block;
  }
}
footer {
  padding: 90px 0 65px;
  background: linear-gradient(239.99deg, #6776FF 7.19%, #403F3F 68.32%);
}
@media all and (max-width: 767px) {
  footer {
    padding: 30px 0;
  }
}
.footer__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
@media all and (max-width: 767px) {
  .footer__list {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: center;
        align-items: center;
  }
}
.footer__item:first-child {
  width: 28vw;
}
@media all and (max-width: 767px) {
  .footer__item:first-child {
    margin-bottom: 15px;
  }
}
@media all and (max-width: 567px) {
  .footer__item:first-child {
    width: 100%;
    text-align: center;
  }
}
.footer__item:first-child img {
  display: block;
  width: 100%;
}
@media all and (max-width: 567px) {
  .footer__item:last-child {
    -ms-flex-direction: column;
        flex-direction: column;
    display: -ms-flexbox;
    display: flex;
  }
}
.footer__link {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 23px;
  color: #FFF0F0;
  text-decoration: none;
  letter-spacing: 0.001em;
  transition: all .3s;
}
.footer__link:not(:first-child) {
  margin-left: 50px;
}
@media all and (max-width: 567px) {
  .footer__link:not(:first-child) {
    margin-left: 0;
  }
}
.footer__link:hover {
  opacity: .7;
}
@media all and (max-width: 767px) {
  .footer__link {
    font-size: 16px;
  }
}
@media all and (max-width: 567px) {
  .footer__link {
    margin: 4px 0;
    text-align: center;
  }
}
.footer__bottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  margin-top: 60px;
  flex-direction:column-reverse;
}
@media all and (max-width: 767px) {
  .footer__bottom {
    margin-top: 15px;
  }
}
@media all and (max-width: 567px) {
  .footer__bottom {
    -ms-flex-direction: column;
        flex-direction: column;
    text-align: center;
  }
}
.footer__bottom a,
.footer__bottom span {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 23px;
  color: #FFF0F0;
  text-decoration: none;
  letter-spacing: 0.001em;
  transition: all .3s;
  text-align: center;
}
.footer__bottom a {
    text-align:right;
}
@media all and (max-width: 767px) {
  .footer__bottom a,
  .footer__bottom span {
    font-size: 16px;
  }
  .footer__bottom a {
    text-align: center;
}
}
.footer__bottom a:hover {
  opacity: .7;
}
.footer__bottom span {
  margin-left: 30px;
}
@media all and (max-width: 567px) {
  .footer__bottom span {
    margin-left: 0;
  }
}
.footer-logo {
  font-family: Roboto Condensed;
  font-style: normal;
  font-weight: normal;
  font-size: 3.50vw;
  line-height: 3.50vw;
  text-transform: uppercase;
  color: #BDBCFB;
  letter-spacing: 0.025em;
  text-decoration: none;
}
.footer-logo span {
  color: #FFFFFF;
}
@media all and (max-width: 767px) {
  .footer-logo {
    font-size: 22px;
  }
}
.footer-error {
  z-index: 20;
  padding: 35px 0 25px;
  background: linear-gradient(187.99deg, rgba(36, 35, 35, 0) 7.19%, #201F1F 68.32%);
}
@font-face {
  font-family: 'Roboto Condensed';
  src: url('../fonts/RobotoCondensed-Regular.eot');
  src: url('../fonts/RobotoCondensed-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/RobotoCondensed-Regular.woff') format('woff'), url('../fonts/RobotoCondensed-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Roboto Condensed Light';
  src: url('../fonts/RobotoCondensed-Light.eot');
  src: url('../fonts/RobotoCondensed-Light.eot?#iefix') format('embedded-opentype'), url('../fonts/RobotoCondensed-Light.woff') format('woff'), url('../fonts/RobotoCondensed-Light.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
body {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  min-height: 100vh;
  letter-spacing: 1px;
  margin: 0;
}
.main {
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
  font-family: 'Roboto Condensed';
}
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 1200px) {
  .container {
    width: 94%;
    margin: 0 auto;
    padding: 0;
  }
}
.banner {
  width: 100%;
  height: 100vh;
  background-image: url(../img/main.png);
  background-size: cover;
  background-position: center center;
}
@media all and (max-width: 1023px) {
  .banner {
    height: 60vh;
  }
}
@media all and (max-width: 767px) {
  .banner {
    height: 100vh;
  }
}
.banner__text {
  font-style: normal;
  font-weight: normal;
  font-size: 3.14vw;
  line-height: 3.65vw;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
  background: linear-gradient(30deg, #131316, #0500F6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-top: 30vh;
}
@media all and (max-width: 1199px) {
  .banner__text {
    font-size: 45px;
    line-height: 50px;
  }
}
@media all and (max-width: 1023px) {
  .banner__text {
    padding-top: 20vh;
  }
}
@media all and (max-width: 767px) {
  .banner__text {
    font-size: 35px;
    line-height: 40px;
    padding-top: 30vh;
  }
}
.title {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: normal;
  font-size: 40px;
  line-height: 47px;
  text-transform: uppercase;
  color: #333333;
  margin: 0 0 30px;
  letter-spacing: 0.001em;
}
@media all and (max-width: 1199px) {
  .title {
    font-size: 35px;
    line-height: 40px;
  }
}
@media all and (max-width: 1023px) {
  .title {
    font-size: 30px;
    line-height: 35px;
  }
}
@media all and (max-width: 767px) {
  .title {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 15px;
  }
}
.material {
  padding: 50px 0 70px;
}
@media all and (max-width: 767px) {
  .material {
    padding: 30px 0;
  }
}
.material__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.material__item {
  border-radius: 20px;
  overflow: hidden;
  width: 48.75%;
  position: relative;
  cursor: pointer;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  margin-bottom: 30px;
}
.material__item:last-child {
  width: 100%;
  margin-bottom: 0;
}
@media all and (max-width: 1023px) {
  .material__item {
    height: 115px;
  }
}
@media all and (max-width: 767px) {
  .material__item {
    height: 145px;
    margin-bottom: 15px;
  }
}
@media all and (max-width: 567px) {
  .material__item {
    width: 100%;
    height: auto;
  }
}
.material__title {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: bold;
  font-size: 25px;
  line-height: 29px;
  color: #FFFFFF;
  letter-spacing: 0.001em;
}
@media all and (max-width: 767px) {
  .material__title {
    font-size: 20px;
  }
}
.material img {
  display: block;
  width: 100%;
}
@media all and (max-width: 1023px) {
  .material img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -o-object-fit: cover;
       object-fit: cover;
    width: auto;
  }
}
@media all and (max-width: 567px) {
  .material img {
    position: relative;
  }
}
.about {
  padding-bottom: 40px;
}
.about__wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: start;
      align-items: flex-start;
}
@media all and (max-width: 1023px) {
  .about__wrapper {
    -ms-flex-direction: column;
        flex-direction: column;
  }
}
.about__wrapper__text {
  font-family: Roboto Condensed Light;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
  color: #716B6B;
  letter-spacing: 0.001em;
  width: 40%;
}
@media all and (max-width: 1023px) {
  .about__wrapper__text {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }
}
.about__wrapper__img {
  width: 57.25%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}
@media all and (max-width: 1023px) {
  .about__wrapper__img {
    margin: 0 auto;
  }
}
@media all and (max-width: 767px) {
  .about__wrapper__img {
    width: 75%;
  }
}
@media all and (max-width: 567px) {
  .about__wrapper__img {
    width: 100%;
  }
}
.about__wrapper__img img {
  display: block;
  width: 100%;
}
.about__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 40px;
}
@media all and (max-width: 767px) {
  .about__list {
    margin-top: 20px;
  }
}
.about__list__item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  width: 48.75%;
  margin-bottom: 30px;
}
@media all and (max-width: 767px) {
  .about__list__item {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media all and (max-width: 567px) {
  .about__list__item {
    -ms-flex-align: start;
        align-items: flex-start;
  }
}
.about__list__img {
  max-width: 100px;
  width: 100%;
  margin-right: 40px;
}
@media all and (max-width: 1023px) {
  .about__list__img {
    margin-right: 10px;
  }
}
@media all and (max-width: 767px) {
  .about__list__img {
    max-width: 80px;
  }
}
@media all and (max-width: 567px) {
  .about__list__img {
    max-width: 55px;
  }
}
.about__list__img img {
  display: block;
  width: 100%;
}
.about__list__description {
  width: 80%;
}
.about__list__title {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 23px;
  color: #333333;
  letter-spacing: 0.001em;
  margin-bottom: 10px;
}
.about__list__text {
  font-family: Roboto Condensed Light;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
  color: #7E7979;
  letter-spacing: 0.001em;
}
.form {
  background: linear-gradient(66.78deg, #F9FAFF 14.48%, rgba(0, 56, 255, 0.28) 54.59%);
  padding: 45px 0;
}
@media all and (max-width: 767px) {
  .form {
    padding: 30px 0;
  }
}
.form__wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  max-width: 925px;
  width: 100%;
  margin: 0 auto;
}
@media all and (max-width: 940px) {
  .form__wrapper {
    width: 94%;
  }
}
@media all and (max-width: 767px) {
  .form__wrapper {
    -ms-flex-direction: column;
        flex-direction: column;
  }
}
.form__item:first-child {
  width: 55%;
}
@media all and (max-width: 767px) {
  .form__item:first-child {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
  }
}
.form__item:last-child {
  width: 33%;
}
@media all and (max-width: 767px) {
  .form__item:last-child {
    width: 55%;
  }
}
@media all and (max-width: 567px) {
  .form__item:last-child {
    width: 100%;
  }
}
.form__title {
  margin-bottom: 26px;
}
.form__title span {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: bold;
  font-size: 40px;
  line-height: 47px;
  text-transform: uppercase;
  background: linear-gradient(45deg, #0500FF 3%, #0D0C55 50%, #101011);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.001em;
}
@media all and (max-width: 1199px) {
  .form__title span {
    font-size: 35px;
  }
}
@media all and (max-width: 1023px) {
  .form__title span {
    font-size: 30px;
  }
}
@media all and (max-width: 767px) {
  .form__title span {
    font-size: 25px;
  }
}
@media all and (max-width: 767px) {
  .form__title {
    margin-bottom: 5px;
  }
}
.form__text {
  font-family: Roboto Condensed Light;
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
  line-height: 23px;
  color: #474444;
  letter-spacing: 0.001em;
}
.form form {
  display: -ms-flexbox;
  position:relative;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
.form form input,
.form form textarea {
  background: #FFFFFF;
  border: 0.5px solid rgba(41, 39, 39, 0.5);
  box-sizing: border-box;
  border-radius: 20px;
  outline: none;
  padding-left: 20px;
  font-family: 'Roboto Condensed Light';
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
  color: #000;
  letter-spacing: 0.001em;
  margin-bottom: 20px;
}
.form form textarea  {
margin-bottom: 10px;
}
.form form input:focus,
.form form textarea:focus {
  border-color: #0500F7;
}
@media all and (max-width: 1023px) {
  .form form input,
  .form form textarea {
    margin-bottom: 15px;
  }
}
.form form input[type="text"] {
  height: 50px;
}
@media all and (max-width: 1023px) {
  .form form input[type="text"] {
    height: 40px;
  }
}
.form form textarea {
  height: 150px;
  padding-top: 15px;
}
@media all and (max-width: 1023px) {
  .form form textarea {
    height: 100px;
  }
}
#submit {
  height: 50px;
  width: 205px;
  background: transparent;
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 23px;
  text-transform: uppercase;
  color: rgba(5, 0, 247, 0.7);
  padding: 0;
  cursor: pointer;
border: 0.5px solid rgba(41, 39, 39, 0.5);
    box-sizing: border-box;
    border-radius: 20px;
    outline: none;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.001em;
text-decoration:none;
display:flex;
justify-content:center;
align-items:center;
margin-top:10px;
}
#submit:hover {
  border-color: #0500F7;
}
@media all and (max-width: 1023px) {
  #submit {
    height: 40px;
  }
}
::-webkit-input-placeholder {
  font-family: 'Roboto Condensed Light';
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
  color: #9F9D9D;
  letter-spacing: 0.001em;
}
::-moz-placeholder {
  font-family: 'Roboto Condensed Light';
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
  color: #9F9D9D;
  letter-spacing: 0.001em;
}
:-moz-placeholder {
  font-family: 'Roboto Condensed Light';
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
  color: #9F9D9D;
  letter-spacing: 0.001em;
}
:-ms-input-placeholder {
  font-family: 'Roboto Condensed Light';
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
  color: #9F9D9D;
  letter-spacing: 0.001em;
}
.contact {
  padding: 70px 0;
}
@media all and (max-width: 767px) {
  .contact {
    padding: 30px 0;
  }
}
.contact__wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
@media all and (max-width: 767px) {
  .contact__wrapper {
    -ms-flex-direction: column;
        flex-direction: column;
  }
}
.contact__item:first-child {
  width: 32%;
}
@media all and (max-width: 1023px) {
  .contact__item:first-child {
    width: 40%;
  }
}
@media all and (max-width: 767px) {
  .contact__item:first-child {
    width: 100%;
    margin-bottom: 15px;
  }
}
.contact__item:last-child {
  width: 57%;
}
.contact__item:last-child iframe {
  width: 100%;
  height: 100%;
}
@media all and (max-width: 767px) {
  .contact__item:last-child {
    width: 100%;
  }
}
.contact__info__item:not(:last-child) {
  margin-bottom: 30px;
}
.contact__title {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 23px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  text-transform: capitalize;
  color: #333333;
  letter-spacing: 0.001em;
  margin-bottom: 15px;
}
.contact__text {
  font-family: 'Roboto Condensed Light';
  text-decoration: none;
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
  line-height: 20px;
  color: #7F7F7F;
  letter-spacing: 0.001em;
}
.contact__text:not(:last-child) {
  margin-bottom: 15px;
}
.contact__text__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.contact a.contact__text:hover {
  color: #0500F7;
}
.product-page {
  padding: 80px 0 30px;
}
.product-page .title {
  width: 100%;
  text-align: center;
}
.product__description {
  letter-spacing: 0.001em;
}
.product__description p {
  margin: 0 0 15px;
}
.product__description b {
  margin: 30px 0 20px;
  display: block;
  font-size: 18px;
}
.product__description li {
  margin: 4px 0;
}
.error {
  background-image: url(../img/error.png);
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.error-description {
  padding-top: 20vh;
}
@media all and (max-width: 767px) {
  .error-description {
    padding-top: 23vh;
  }
}
@media all and (max-width: 767px) {
  .error-description .container {
    text-align: center;
  }
}
.img-error {
  max-width: 690px;
  width: 100%;
}
.img-error img {
  display: block;
  width: 100%;
}
@media all and (max-width: 1440px) {
  .img-error {
    max-width: 500px;
  }
}
@media all and (max-width: 767px) {
  .img-error {
    display: none;
  }
}
.text-error {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 23px;
  text-transform: uppercase;
  color: #FFFFFF;
  letter-spacing: 0.001em;
  margin-top: 30px;
}
@media all and (max-width: 767px) {
  .text-error {
    font-size: 16px;
    line-height: 18px;
    margin-top: 5px;
  }
}
.link-error {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 23px;
  text-transform: uppercase;
  color: #FFFFFF;
  text-decoration: none;
  padding: 14px 40px;
  background: #0B08A6;
  border: 0.5px solid #292727;
  box-sizing: border-box;
  border-radius: 20px;
  display: inline-block;
  margin-top: 30px;
}
@media all and (max-width: 767px) {
  .link-error {
    font-size: 16px;
    padding: 5px 20px;
    margin-top: 5px;
  }
}
.contact__text__item:not(:last-child) {
  margin-bottom: 15px;
}
.contact__text__item {
  font-family: 'Roboto Condensed Light';
  text-decoration: none;
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
  line-height: 20px;
  color: #7F7F7F;
  letter-spacing: 0.001em;
}
.contact__text__item .span-left {
  margin-right: 10px;
}
.contact__text__item .span-right {
  margin-left: 5px;
}
@media all and (max-width: 1170px) {
  .contact__text__list {
    flex-direction: column-reverse;
  }
  .contact__text__list .contact__text__item:last-child {
    margin-bottom: 15px;
  }
 }
.result {
   font-family: 'Roboto Condensed Light';
    font-style: normal;
    font-weight: 300;
    font-size: 20px;
    line-height: 23px;
    color: #000;
    letter-spacing: 0.001em;
text-align:center;
}
