@charset "UTF-8";

@import "../styles/fonts.css" screen;

@import "../styles/default.css" screen;

:root {
  --green-text-color: #0F4D52;
}

.flexA {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flexB {
  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;
}

.flexC {
  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;
}

.flexK {
  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-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}

.btn-orange,
a.btn-orange {
  width: 154px;
  height: 48px;
  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;
  padding: 2px 18px;
  background: linear-gradient(93.7deg, #FC9102 -10.98%, #FFA32E 108.23%);
  -webkit-box-shadow: 9px 8px 17px rgba(252, 144, 0, 0.45);
  box-shadow: 9px 8px 17px rgba(252, 144, 0, 0.45);
  border-radius: 5px;
  border: none;
  text-transform: uppercase;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  text-decoration: none;
}

.btn-orange:hover,
a.btn-orange:hover {
  background: linear-gradient(93.7deg, #dd7e03 -10.98%, #d88b27 108.23%);
  cursor: pointer;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  -webkit-box-shadow: 9px 8px 17px rgba(235, 134, 2, 0.45);
  box-shadow: 9px 8px 17px rgba(235, 134, 2, 0.45);
}

.btn-orange[disabled],
.btn-orange.disabled,
.btn-orange a.btn-orange[disabled],
.btn-orange a.btn-orange.disabled,
a.btn-orange[disabled],
a.btn-orange.disabled,
a.btn-orange a.btn-orange[disabled],
a.btn-orange a.btn-orange.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-orange-auto,
a.btn-orange-auto {
  width: auto;
  height: 48px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 2px 18px;
  background: linear-gradient(93.7deg, #FC9102 -10.98%, #FFA32E 108.23%);
  -webkit-box-shadow: 9px 8px 17px rgba(252, 144, 0, 0.45);
  box-shadow: 9px 8px 17px rgba(252, 144, 0, 0.45);
  border-radius: 5px;
  border: none;
  text-transform: uppercase;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  text-decoration: none;
}

.btn-orange-auto:hover,
a.btn-orange-auto:hover {
  background: linear-gradient(93.7deg, #dd7e03 -10.98%, #d88b27 108.23%);
  cursor: pointer;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  -webkit-box-shadow: 9px 8px 17px rgba(235, 134, 2, 0.45);
  box-shadow: 9px 8px 17px rgba(235, 134, 2, 0.45);
}

.btn-default,
a.btn-default {
  width: auto;
  height: 40px;
  background: #fff;
  padding: 2px 18px;
  border: 1px solid #D9D9D9;
  border-radius: 5px;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #000;
  text-decoration: none;
  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;
}

.btn-default.active,
a.btn-default.active {
  background: linear-gradient(93.7deg, #FC9102 -10.98%, #FFA32E 108.23%);
  color: #fff;
  border: 1px solid #FC9102;
}

.btn-default:hover,
a.btn-default:hover {
  background: linear-gradient(93.7deg, #FC9102 -10.98%, #FFA32E 108.23%);
  cursor: pointer;
  color: #fff;
  border: 1px solid #FC9102;
  text-decoration: none;
}

.btn-default-green,
a.btn-default-green {
  width: auto;
  height: 48px;
  background: #fff;
  padding: 2px 18px;
  border: 1px solid #0F4D52;
  border-radius: 5px;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #000;
  text-transform: uppercase;
  text-decoration: none;
  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;
}

.btn-default-green.active,
a.btn-default-green.active {
  background: linear-gradient(93.7deg, #66A882 -10.98%, #488774 108.23%);
  color: #fff;
  border: 1px solid #0F4D52;
}

.btn-default-green:hover,
a.btn-default-green:hover {
  background: linear-gradient(93.7deg, #66A882 -10.98%, #488774 108.23%);
  cursor: pointer;
  color: #fff;
  border: 1px solid #0F4D52;
  -webkit-box-shadow: 9px 8px 17px rgba(72, 135, 116, 0.45);
  box-shadow: 9px 8px 17px rgba(72, 135, 116, 0.45);
  text-decoration: none;
}

.btn-green,
a.btn-green {
  width: 200px;
  height: 44px;
  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;
  padding: 2px 18px;
  background: linear-gradient(93.7deg, #66A882 -10.98%, #488774 108.23%);
  border-radius: 5px;
  border: none;
  text-transform: uppercase;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  text-decoration: none;
}

.btn-green:hover,
a.btn-green:hover {
  background: linear-gradient(93.7deg, #dd7e03 -10.98%, #d88b27 108.23%);
  cursor: pointer;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  -webkit-box-shadow: 9px 8px 17px rgba(235, 134, 2, 0.45);
  box-shadow: 9px 8px 17px rgba(235, 134, 2, 0.45);
  color: #fff;
}

.btn-gray,
a.btn-gray {
  width: 200px;
  height: 44px;
  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;
  padding: 2px 18px;
  background: linear-gradient(93.7deg, #B3B3B3 -10.98%, #8f8e8e 108.23%);
  border-radius: 5px;
  border: none;
  text-transform: uppercase;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  text-decoration: none;
}

.btn-gray:hover,
a.btn-gray:hover {
  background: linear-gradient(93.7deg, #dd7e03 -10.98%, #d88b27 108.23%);
  cursor: pointer;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  -webkit-box-shadow: 9px 8px 17px rgba(235, 134, 2, 0.45);
  box-shadow: 9px 8px 17px rgba(235, 134, 2, 0.45);
  color: #fff;
}

.btn-mini,
a.btn-mini {
  width: 142px;
  height: 38px;
  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;
  padding: 2px 18px;
  background: linear-gradient(93.7deg, #9001A0 -10.98%, #CB0FE0 108.23%);
  -webkit-box-shadow: 0px 13px 43px rgba(144, 1, 160, 0.34);
  box-shadow: 0px 13px 43px rgba(144, 1, 160, 0.34);
  border-radius: 5px;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  text-transform: uppercase;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  text-decoration: none;
}

.btn-mini:hover,
a.btn-mini:hover {
  background: linear-gradient(93.7deg, #6e037a -10.98%, #9b0aab 108.23%);
  cursor: pointer;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  -webkit-box-shadow: 0px 13px 50px rgba(144, 1, 160, 0.54);
  box-shadow: 0px 13px 50px rgba(144, 1, 160, 0.54);
}

.btn-label {
  border: 1px solid #000000;
  border-radius: 5px;
  height: 34px;
  width: auto;
  padding: 2px 18px;
  font-weight: 400;
  font-size: 13px;
  line-height: 34px;
  color: #000;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.HD1 {
  font-weight: 800;
  font-size: 48px;
  line-height: 58px;
  color: #fff;
}

.HD2 {
  font-weight: 700;
  font-size: 36px;
  line-height: 43px;
  color: var(--green-text-color);
  text-align: center;
}

.HD-page {
  font-weight: 700;
  font-size: 36px;
  line-height: 43px;
  color: var(--green-text-color);
  text-align: left;
  margin-bottom: 40px;
}

.bg-title {
  padding: 25px 0;
  position: relative;
}

.bg-title span {
  display: inline-block;
  padding: 25px 0;
  position: relative;
}

.bg-title span::after {
  content: ' ';
  display: block;
  background: url("../images/bg-title.png") center center no-repeat;
  width: 91px;
  height: 89px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  margin-left: -35px;
}

.message-error {
  background: #FF665C;
  border-radius: 5px;
  padding: 8px 12px;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #fff;
}

.block-c {
  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;
}

.Wrapper-main {
  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-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 100%;
}

.Main {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  -webkit-box-flex: 1;
  -ms-flex: 1 1;
  flex: 1 1;
  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-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}

.ContainerWrap {
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.Logo a {
  display: block;
  font-weight: 800;
  font-size: 24px;
  line-height: 29px;
  color: #fff;
  text-decoration: none;
}

.Logo a:hover {
  text-decoration: none;
}

.Logo a span {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #fff;
  display: block;
}

.Top {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
  height: 70px;
}

.Top.Bottom-bar {
  position: static;
  z-index: 9;
}

.Top.Top-bar {
  position: static;
}

.Top-bar,
.Bottom-bar {
  background: linear-gradient(93.7deg, #66A882 -10.98%, #488774 108.23%);
}

.Top__wrap {
  position: relative;
  height: 70px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.Top-menu {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  position: relative;
}

.Top-menu ul {
  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-left: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0;
}

.Top-menu ul li {
  position: relative;
  margin-bottom: 0;
}

.Top-menu ul li:not(:last-child) {
  margin-right: 4%;
}

.Top-menu ul li a,
.Top-menu ul li span {
  display: block;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #fff;
  text-decoration: none;
  padding: 10px 0;
}

.Top-menu ul li a a:hover,
.Top-menu ul li span a:hover {
  text-decoration: underline;
}

.Top-menu ul li a:hover {
  text-decoration: underline;
}

.Top-menu ul li span:hover {
  cursor: pointer;
  text-decoration: underline;
}

.Top-menu ul li.parent {
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.Top-menu ul li.parent a,
.Top-menu ul li.parent span {
  padding-right: 10px;
}

.Top-menu ul li.parent::after {
  content: ' ';
  display: block;
  background: url("../images/down-arrow.svg") center top no-repeat;
  width: 11px;
  height: 7px;
}

.Top-menu ul li.parent:hover ul {
  display: block;
  padding: 10px 15px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.09);
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.09);
  border-radius: 5px;
  z-index: 9;
}

.Top-menu ul li ul {
  position: absolute;
  top: 35px;
  left: 0;
  display: none;
  list-style: none;
  z-index: 9;
  width: 220px;
}

.Top-menu ul li ul li {
  border: none;
}

.Top-menu ul li ul li a {
  display: block;
  font-weight: 400;
  font-size: 14px;
  line-height: 34px;
  color: #000;
  text-decoration: none;
  text-align: left;
  padding: 0;
}

.Top-menu ul li ul li a:hover {
  text-decoration: underline;
  background: none;
}

.dropDownMenu.active {
  left: 0px;
  opacity: 1;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.dropDownMenu.active .Smenu__close {
  display: block;
}

#hamburger {
  display: none;
  width: 30px;
  height: 22px;
  margin-top: 24px;
  margin-right: 25px;
  z-index: 10;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

#hamburger span {
  position: relative;
  top: 8px;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

#hamburger span:before {
  position: absolute;
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  top: -7px;
  left: 0px;
  background-color: #fff;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

#hamburger span:after {
  position: absolute;
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  top: 7px;
  left: 0px;
  background-color: #fff;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

#hamburger.active {
  top: -4px;
  -webkit-transform: translateY(-50%) rotate(-180deg);
  -ms-transform: translateY(-50%) rotate(-180deg);
  transform: translateY(-50%) rotate(-180deg);
  margin-top: 18px;
}

#hamburger.active span {
  background-color: transparent;
}

#hamburger.active span:before {
  top: 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#hamburger.active span:after {
  top: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

#hamburger:hover {
  cursor: pointer;
}

.Smenu__close {
  display: none;
  background: linear-gradient(93.7deg, #66A882 -10.98%, #488774 108.23%);
  height: 60px;
  padding: 20px;
}

.Smenu__close .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
}

.Smenu__close .wrap:hover {
  cursor: pointer;
}

.Smenu__close .wrap:hover span {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

.Smenu__close .wrap span {
  font-family: tahoma;
  font-size: 30px;
  line-height: 14px;
  text-align: center;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
  margin-right: 10px;
}

.Top-info {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.Top-info .btn-mini {
  margin: 0 20px;
}

.Top-info.Top-info3 {
  display: block;
}

.LogOut a {
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  margin-right: 20px;
}

.LogOut a:hover {
  text-decoration: underline;
}

.Flag {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.09);
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.09);
  border-radius: 5px;
  padding: 2px 8px;
  position: relative;
  width: 80px;
}

.Flag:hover {
  cursor: pointer;
}

.Flag__select:hover span {
  font-weight: 500;
}

.Flag__select span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 34px;
  color: #000;
  text-transform: uppercase;
}

.Flag__select span::before {
  content: ' ';
  display: block;
  width: 20px;
  height: 20px;
}

.Flag__select .ru::before {
  background-image: url("../images/icon-flag-rus.svg");
}

.Flag__select .en::before {
  background-image: url("../images/icon-flag-eng.svg");
}

.Flag__select .fr::before {
  background-image: url("../images/icon-flag-fra.svg");
}

.Flag__select .de::before {
  background-image: url("../images/icon-flag-ger.svg");
}

.Flag__select .es::before {
  background-image: url("../images/icon-flag-spain.svg");
}

.Flag__select .it::before {
  background-image: url("../images/icon-flag-italy.svg");
}

.Flag__select .zh::before {
  background-image: url("../images/icon-flag-china.svg");
}

.Flag__select .no::before {
  background-image: url("../images/icon-flag-norway.svg");
}

.Flag__select .th::before {
  background-image: url("../images/icon-flag-thailand.svg");
}

.Flag__select .pt::before {
  background-image: url("../images/icon-flag-portugal.svg");
}

.Flag__select .sv::before {
  background-image: url("../images/icon-flag-sweden.svg");
}

.Flag__dropdown {
  display: none;
  border-top: 1px solid #999;
  position: absolute;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 5px 9px rgba(0, 0, 0, 0.09);
  box-shadow: 0px 5px 9px rgba(0, 0, 0, 0.09);
  border-radius: 0px 0 5px 5px;
  padding: 2px 8px;
  width: 80px;
  left: 0;
  top: 35px;
}

.Flag__dropUp {
  position: absolute;
  bottom: 88%;
  background: #FFFFFF;
  -webkit-box-shadow: 0px -11px 15px rgba(0, 0, 0, 0.09);
  box-shadow: 0px -11px 15px rgba(0, 0, 0, 0.09);
  padding: 2px 8px;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  left: 0;
  border-radius: 5px;
  border-top: unset;
}

.Flag__dropUp .Flag__select:last-child {
  border-bottom: 1px solid #999;
}

.Top-info2 {
  display: none;
}

.Top-info2 a.btn-mini {
  margin-bottom: 30px;
}

.Top-info2 .LogOut {
  margin-bottom: 30px;
}

.Top-info2 .LogOut a {
  color: #000;
  display: block;
  margin: 0 auto;
}

header {
  background: url("../images/bg-main1.jpg") center top no-repeat;
  width: 100%;
  height: 874px;
  position: relative;
}

.header__wrap {
  padding-top: 102px;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.header__img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 616px;
  flex: 0 0 616px;
  margin-left: 84px;
}

.header__text {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 40%;
  flex: 0 1 40%;
  margin-top: 0;
  margin-left: 15px;
}

.header__text .HD1 {
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 20px;
}

.header__text-desc p,
.header__text-desc h2 {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #fff;
}

.header__text-desc h2 {
  margin-bottom: 20 [x];
}

.About {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin: -170px auto 80px;
}

.About__item {
  position: relative;
  text-align: center;
  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-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.About__item.plashka1 {
  width: 387px;
  height: 410px;
  margin-left: -15px;
}

.About__item.plashka1::before {
  background: url("../images/plashka1.png") center top no-repeat;
  background: filter(url("../images/plashka1.png"), blur(5px));
}

.About__item.plashka2 {
  width: 389px;
  height: 447px;
  padding-bottom: 20px;
  margin: 50px -92px 0;
}

.About__item.plashka2::before {
  background: url("../images/plashka2.png") center top no-repeat;
}

.About__item.plashka2 .About__text {
  width: 250px;
  margin-right: auto;
  margin-left: auto;
}

.About__item.plashka3 {
  width: 387px;
  height: 410px;
  margin-right: -15px;
}

.About__item.plashka3::before {
  background: url("../images/plashka3.png") center top no-repeat;
}

.About__item.plashka1::before,
.About__item.plashka2::before,
.About__item.plashka3::before {
  content: ' ';
  display: block;
  position: absolute;
  opacity: 0.85;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.About__img {
  text-align: center;
  position: relative;
  z-index: 2;
  margin-top: 35px;
  margin-bottom: 20px;
}

.About__title {
  position: relative;
  z-index: 2;
  font-weight: 700;
  font-size: 22px;
  line-height: 27px;
  color: var(--green-text-color);
  margin-bottom: 20px;
}

.About__text {
  position: relative;
  z-index: 2;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #000;
  width: 250px;
  margin: 0 auto 20px;
}

.About a.btn-green {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 44px;
  flex: 0 0 44px;
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

.Services {
  margin-bottom: 80px;
}

.Services .HD2 {
  margin-bottom: 40px;
}

.Services__wrap {
  margin: 0 -10px;
}

.Services__item {
  width: 30%;
  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: 0 10px 60px;
}

.Services__img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50px;
  flex: 0 0 50px;
  margin-right: 18px;
}

.Services__info {
  -webkit-box-flex: 1;
  -ms-flex: 1 1;
  flex: 1 1;
}

.Services__title {
  font-weight: 700;
  font-size: 22px;
  line-height: 27px;
  color: var(--green-text-color);
  margin-bottom: 20px;
}

.Services__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #000;
}

#block3 {
  background: url("../images/bg2.jpg") center top no-repeat;
  height: 653px;
  margin-bottom: 60px;
}

.Price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}

.Price__wrap {
  width: 752px;
  text-align: center;
  position: relative;
  margin-right: 20px;
}

.Price__wrap .HD2 {
  margin-bottom: 70px;
}

.Price__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 244px;
  flex: 0 0 244px;
  background: rgba(255, 255, 255, 0.85);
  -webkit-box-shadow: inset -18.7px 18.7px 18.7px rgba(255, 255, 255, 0.1);
  box-shadow: inset -18.7px 18.7px 18.7px rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  padding: 68px 10px 43px;
  border: 1px solid #ebebeb;
  position: relative;
  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-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}

.Price__top {
  background: linear-gradient(93.7deg, #FCB602 -10.98%, #FF8A00 108.23%);
  border-radius: 0px 0px 15px 15px;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  padding: 15px 10px;
  width: 140px;
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.Price__title {
  font-weight: 500;
  font-size: 22px;
  line-height: 26px;
  color: var(--green-text-color);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.Price__cost {
  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;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 80px;
}

.Price__cost-valuta {
  font-weight: 800;
  font-size: 36px;
  line-height: 43px;
  color: var(--green-text-color);
}

.Price__cost-doll {
  font-weight: 800;
  font-size: 85px;
  line-height: 69px;
  color: var(--green-text-color);
}

.Price__cost-cent {
  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-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-weight: 800;
  font-size: 24px;
  line-height: 28px;
  color: var(--green-text-color);
}

.Price__text {
  margin-bottom: 35px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1;
  flex: 1 1;
}

.Price__text ul {
  list-style: disc;
  text-align: left;
}

.Price__text ul li {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #000;
}

.Price__btn {
  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;
}

.Slider-price {
  position: relative;
}

.swiper-wrapper.Price-wrap-slider {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: auto;
}

.Reviews {
  background: url("../images/bg3.png") left 60px no-repeat;
  padding-bottom: 50px;
}

.Reviews .bg-title span::after {
  left: 50%;
}

.Reviews__item {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 13px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 4px 13px rgba(0, 0, 0, 0.07);
  border-radius: 5px;
  padding: 35px 60px 40px;
  position: relative;
  margin: 13px;
}

.Reviews__item .quote {
  background: url("../images/img-quit.png") center top no-repeat;
  width: 46px;
  height: 31px;
  position: absolute;
  top: -15px;
  right: 10%;
}

.Reviews__item-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 20px;
}

.Reviews__img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 150px;
  flex: 0 0 150px;
  position: relative;
  margin-right: 20px;
}

.Reviews__img img {
  width: 150px;
  position: absolute;
  top: -55px;
  left: 0;
  border-radius: 50%;
}

.Reviews__info {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.Reviews__title {
  font-weight: 700;
  font-size: 22px;
  line-height: 27px;
  color: var(--green-text-color);
  margin-bottom: 20px;
}

.Reviews__status {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: var(--green-text-color);
}

.Reviews__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #000;
}

#block5 {
  background: url("../images/bg-main2.jpg") center top no-repeat;
  height: 555px;
  margin-top: -160px;
  margin-bottom: 44px;
}

.AboutReg {
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 160px;
}

.AboutReg__title {
  width: 30%;
}

.AboutReg__title .hd {
  font-weight: 700;
  font-size: 36px;
  line-height: 43px;
  color: #fff;
  margin-bottom: 40px;
}

.AboutReg__title .btn-orange {
  margin: 0 auto;
}

.AboutReg__info {
  width: 60%;
  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;
}

.AboutReg__item {
  width: 45%;
  margin-bottom: 60px;
}

.AboutReg__item div {
  font-weight: 800;
  font-size: 64px;
  line-height: 77px;
  color: #fff;
}

.AboutReg__item span {
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  color: #fff;
}

.LastNews {
  padding-bottom: 50px;
}

.LastNews_hd {
  font-weight: 700;
  font-size: 22px;
  line-height: 27px;
  color: var(--green-text-color);
  margin-bottom: 40px;
}

.LastNews__wrap {
  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: 0 -10px;
}

.LastNews__item {
  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;
  width: 31%;
  margin: 0 10px 30px;
}

.LastNews__img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 82px;
  flex: 0 0 82px;
  margin-right: 20px;
}

.LastNews__info {
  -webkit-box-flex: 1;
  -ms-flex: 1 1;
  flex: 1 1;
}

.LastNews__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #000;
  margin-bottom: 20px;
}

.LastNews__bottom {
  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;
}

.LastNews__date {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: rgba(0, 0, 0, 0.5);
}

.more,
a.more {
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  color: var(--green-text-color);
  padding-right: 20px;
  position: relative;
  text-decoration: none;
}

.more:hover,
a.more:hover {
  text-decoration: underline;
}

.more::after,
a.more::after {
  content: '→';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}

.Foot__wrap {
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 50px 15px;
}

.Foot__socnet img {
  margin: 0 2px;
}

.Foot__support {
  width: 520px;
  border: 1px solid #EFEFEF;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px;
}

.Foot__support .Phone {
  width: 50%;
}

.Foot__support .Phone a {
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  color: #000;
  text-decoration: none;
}

.Foot__support .Phone a:hover {
  text-decoration: underline;
}

.Foot__support .Suports {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.Foot__support .Suports img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  height: 40px;
  margin-right: 20px;
}

.Foot__support .Suports .text {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #000;
}

.Top-menu-foot.menuUp ul li ul {
  top: unset;
  bottom: 35px;
}

.Breadcrambs {
  padding-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  margin-bottom: 20px;
}

.Breadcrambs a {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #000;
  padding-right: 20px;
  margin-right: 10px;
  text-decoration: none;
  position: relative;
}

.Breadcrambs a:hover {
  text-decoration: underline;
}

.Breadcrambs a::after {
  content: '→';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}

.Breadcrambs span {
  color: #C7C7C7;
}

.MTranslate {
  -webkit-box-shadow: 0px 14px 80px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 14px 80px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  margin-bottom: 80px;
}

.MTranslate__wrap {
  padding: 70px 115px;
}

.MTranslate__wrap2 {
  position: relative;
}

.MTranslate__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 55px;
}

.MTranslate__fields-item {
  width: 27%;
}

.MTranslate__fields-hd {
  font-weight: 700;
  font-size: 22px;
  line-height: 26px;
  color: var(--green-text-color);
  margin-bottom: 25px;
}

.MTranslate__fields-row {
  background: url("../images/arrow.svg") center top no-repeat;
  width: 30px;
  height: 30px;
  margin: 58px 25px 0;
}

.Field select,
.Field input {
  width: 100%;
  height: 50px;
  background: #FFFFFF;
  border: 1px solid #0F4D52;
  border-radius: 5px;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #131313;
  padding: 0 20px;
}

.Field select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("../images/icon-select-arrow.svg") 95% 50% no-repeat;
}

.Field select option {
  font-weight: 700;
  font-size: 16px;
  line-height: 25px;
  color: #131313;
  padding: 20px 0px;
}

.Field input {
  position: relative;
}

.Field input::-webkit-input-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #131313;
}

.Field input::-moz-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #131313;
}

.Field input:-ms-input-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #131313;
}

.Field input::-ms-input-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #131313;
}

.Field input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #131313;
}

.Field input.icon-search {
  background: url("../images/icon-search.svg") 95% 50% no-repeat;
}

.Field input.editSelect {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #131313;
  display: none;
}

.Field input.editSelect:focus {
  outline: none;
}

.Field-editable {
  position: relative;
}

.Field-editable select {
  height: 65px;
}

.TypeTranslate {
  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: 55px;
  position: relative;
}

.TypeTranslate__item {
  width: 32%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.TypeTranslate__item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  border: 1px solid #D3D3D3;
  border-radius: 5px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1;
  flex: 1 1;
}

.TypeTranslate__item label:hover {
  background: linear-gradient(93.7deg, #FC9102 -10.98%, #FFA32E 108.23%);
  -webkit-box-shadow: 9px 8px 17px rgba(252, 144, 0, 0.45);
  box-shadow: 9px 8px 17px rgba(252, 144, 0, 0.45);
  border: 1px solid #FC9102;
  cursor: pointer;
}

.TypeTranslate__item label:hover .TypeTranslate__tarif {
  background: #FE8900;
}

.TypeTranslate__item label:hover .TypeTranslate__text-title,
.TypeTranslate__item label:hover .TypeTranslate__text p strong {
  color: #fff;
}

.TypeTranslate__item label:hover .TypeTranslate__text-category,
.TypeTranslate__item label:hover .TypeTranslate__text ul li {
  color: #9C5900;
}

.TypeTranslate__item input {
  display: none;
}

.TypeTranslate__item input:checked + label {
  background: linear-gradient(93.7deg, #FC9102 -10.98%, #FFA32E 108.23%);
  -webkit-box-shadow: 9px 8px 17px rgba(252, 144, 0, 0.45);
  box-shadow: 9px 8px 17px rgba(252, 144, 0, 0.45);
  border: 1px solid #FC9102;
  cursor: pointer;
}

.TypeTranslate__item input:checked + label .TypeTranslate__tarif {
  background: #FE8900;
}

.TypeTranslate__item input:checked + label .TypeTranslate__text-title,
.TypeTranslate__item input:checked + label .TypeTranslate__text p strong {
  color: #fff;
}

.TypeTranslate__item input:checked + label .TypeTranslate__text-category,
.TypeTranslate__item input:checked + label .TypeTranslate__text ul li {
  color: #9C5900;
}

.TypeTranslate__tarif {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 60px;
  flex: 0 0 60px;
  background: #D3D3D3;
  padding: 5px;
  margin-right: 5px;
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: -1px;
  border-radius: 5px 0 0 5px;
}

.TypeTranslate__tarif-price {
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.TypeTranslate__tarif-price span:first-child {
  margin-right: 5px;
}

.TypeTranslate__tarif-row {
  background: #fff;
  height: 1px;
  width: 90%;
  margin: 3px 0;
}

.TypeTranslate__tarif-text {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #fff;
  text-align: center;
}

.TypeTranslate__text {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 5px;
  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-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}

.TypeTranslate__text p {
  padding-bottom: 0;
  margin-bottom: 0;
}

.TypeTranslate__text p strong {
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  color: #131313;
  text-transform: uppercase;
}

.TypeTranslate__text ul {
  margin-left: 0;
  margin-bottom: 0;
  font-size: 0;
}

.TypeTranslate__text ul li {
  list-style: none;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #707070;
  display: inline;
  margin-bottom: 0;
}

.TypeTranslate__text ul li:not(:last-child)::after {
  content: "|";
  display: inline-block;
  padding: 0 3px;
}

.TypeTranslate__text-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #131313;
}

.TypeTranslate__text-category {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #707070;
}

.VidTranslate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  margin-bottom: 15px;
  position: relative;
}

.DownloadTrans {
  margin-bottom: 20px;
  position: relative;
}

.DownloadTrans textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #0F4D52;
  border-radius: 5px;
  min-height: 470px;
}

.InfoTrans {
  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;
}

.InfoTrans__left {
  margin-right: 20px;
  margin-bottom: 20px;
}

.InfoTrans__summ {
  font-weight: 700;
  font-size: 22px;
  line-height: 26px;
  color: var(--green-text-color);
}

.InfoTrans__summ div {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #707070;
  display: block;
  padding-top: 10px;
}

.InfoTrans__right {
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

.InfoTrans__balans {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #707070;
  margin-right: 40px;
}

.InfoTrans__btn .btn-orange {
  width: auto;
}

.ShadowWrap {
  position: absolute;
  background: #DADADA;
  opacity: 0.5;
  border-radius: 5px;
  top: -20px;
  right: -20px;
  bottom: -20px;
  left: -20px;
  z-index: 1;
}

.ShadowWrap.ShadowNo {
  background: none;
  right: unset;
  left: unset;
  bottom: unset;
}

.dropdown {
  width: 100%;
  border: 1px solid #0F4D52;
  border-radius: 5px;
  padding: 24px 24px 50px;
}

.dropdown__wrap {
  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;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.dropdown__info {
  text-align: center;
}

.dropdown__desc {
  font-weight: 700;
  font-size: 22px;
  line-height: 27px;
  color: var(--green-text-color);
  margin-bottom: 10px;
}

.dropdown__tipfiles {
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  color: #707070;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.dropdown .btn-green {
  margin: 0 auto;
}

.dropfiles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  width: 100%;
  margin-bottom: 20px;
}

.dropfiles__item {
  width: 165px;
  border: 1px solid #EFEFEF;
  border-radius: 5px;
  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-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  margin: 0 5px 20px;
  padding: 0 10px 20px;
}

.dropfiles__close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: url("../images/icon-close.svg") center top no-repeat;
  width: 20px;
  height: 20px;
}

.dropfiles__close:hover {
  cursor: pointer;
  opacity: 0.6;
}

.dropfiles__icon {
  margin-top: 40px;
  margin-bottom: 10px;
}

.dropfiles__icon img {
  width: 80px;
  height: 80px;
}

.dropfiles__name,
a.dropfiles__name {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #000;
  margin-bottom: 5px;
  text-align: center;
  text-decoration: none;
}

.dropfiles__name:hover,
a.dropfiles__name:hover {
  text-decoration: underline;
}

.dropfiles__filesize {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #707070;
}

.DownloadAudio {
  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;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin-bottom: 40px;
}

.DownloadAudio .dropdown {
  width: 40%;
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 24px;
}

.AudioRec {
  width: 58%;
  border: 1px solid #0F4D52;
  border-radius: 5px;
  padding: 24px;
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.AudioRec .hd {
  text-align: center;
  font-weight: 700;
  font-size: 22px;
  line-height: 26px;
  color: var(--green-text-color);
  margin-bottom: 30px;
}

.AudioRec__btn {
  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;
}

.AudioRec__btn .btn-pl {
  width: auto;
  height: 40px;
  margin: 0 5px 20px;
  font-weight: 700;
  text-transform: none;
}

.AudioRec__btn .btn-pl span {
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.AudioRec__btn .btn-pl span::before {
  content: ' ';
  margin-right: 10px;
}

.AudioRec__btn .btn-gray span::before {
  background: url("../images/icon-player-rec.svg") center top no-repeat;
  width: 14px;
  height: 18px;
}

.AudioRec__btn .btn-orange {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.AudioRec__btn .btn-orange:hover {
  -webkit-box-shadow: 9px 8px 17px rgba(235, 134, 2, 0.45);
  box-shadow: 9px 8px 17px rgba(235, 134, 2, 0.45);
}

.AudioRec__btn .btn-orange span::before {
  background: url("../images/icon-player-pause.svg") center top no-repeat;
  width: 10px;
  height: 12px;
}

.AudioRec__btn .btn-green span::before {
  background: url("../images/icon-player-stop.svg") center top no-repeat;
  width: 16px;
  height: 16px;
}

.OutputAudio {
  margin-bottom: 50px;
}

.OutputAudio__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
}

.OutputAudio__track {
  width: 60%;
}

.OutputAudio__track audio {
  width: 100%;
}

.OutputAudio__nametrack {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 35%;
  flex: 0 1 35%;
  font-weight: 400;
  font-size: 11px;
  line-height: 34px;
  color: #000;
  text-align: left;
  margin: 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.OutputAudio__close {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16px;
  flex: 0 0 16px;
  background: url("../images/icon-close2.svg") center top no-repeat;
  width: 16px;
  height: 16px;
}

.OutputAudio__close:hover {
  cursor: pointer;
  opacity: 0.6;
}

.UserInfo {
  margin-right: 20px;
  position: relative;
}

.IconProfile {
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.IconProfile:hover {
  cursor: pointer;
}

.IconProfile .IconUser {
  margin-right: 10px;
}

.IconProfile__arrow {
  background: url("../images/icon-user-panel.svg") center top no-repeat;
  width: 10px;
  height: 10px;
}

.IconUser {
  width: 38px;
  height: 38px;
  background: linear-gradient(93.7deg, #FC9102 -10.98%, #FFA32E 108.23%);
  border-radius: 50%;
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #fff;
}

.IconUser:hover {
  background: #FE8900;
}

.ProfPanel {
  display: none;
  position: absolute;
  top: 45px;
  right: 0;
  width: 260px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.09);
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.09);
  border-radius: 5px;
  padding: 10px;
  z-index: 1;
}

.ProfPanel__user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 10px;
  position: relative;
}

.ProfPanel__user::after {
  content: ' ';
  display: block;
  position: absolute;
  bottom: 0;
  left: 20px;
  background: #ccc;
  height: 1px;
  width: 38px;
}

.ProfPanel__user .IconUser {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 38px;
  flex: 0 0 38px;
  margin-left: 20px;
  margin-right: 10px;
}

.ProfPanel__info .email {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #000;
  word-break: break-all;
}

.ProfPanel__info .name {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #D3D3D3;
}

.ProfPanel__menu ul {
  list-style: none;
  margin-left: 0;
}

.ProfPanel__menu ul li a {
  display: block;
  font-weight: 400;
  font-size: 14px;
  line-height: 29px;
  color: #000;
  padding: 5px 20px;
  text-decoration: none;
}

.ProfPanel__menu ul li a:hover {
  background: #F9F9F9;
}

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

.Orders {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 754px;
  flex: 0 1 754px;
  margin-bottom: 80px;
}

.Orders .btn-orange {
  width: auto;
  margin-bottom: 35px;
}

.Orders .btn-orange-auto {
  margin-bottom: 35px;
}

.Order-view {
  margin-bottom: 100px;
}

.Order {
  border: 1px solid #D3D3D3;
  border-radius: 5px;
  padding: 30px 40px 45px;
  margin-bottom: 30px;
}

.Order__top {
  margin-bottom: 30px;
  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;
  position: relative;
}

.Order__top-data {
  width: 57%;
}

.Order__number {
  font-weight: 700;
  font-size: 22px;
  line-height: 27px;
  color: var(--green-text-color);
  margin-bottom: 10px;
}

.Order__date {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: var(--green-text-color);
  margin-bottom: 20px;
}

.Order__language {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}

.Order__language span {
  display: block;
  padding-right: 20px;
  margin-right: 10px;
  position: relative;
}

.Order__language span:first-child:after {
  content: '→';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}

.Order__type {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #000;
}

.Order__top-info {
  width: 40%;
  border-left: 1px solid #D3D3D3;
  padding-left: 25px;
}

.Order__top-info ul {
  list-style: disc;
}

.Order__top-info ul li {
  font-weight: 700;
  font-size: 14px;
  line-height: 23px;
  color: var(--green-text-color);
}

.Order__mid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}

.Order__payInfo {
  width: 57%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.Order__payInfo .btn-green {
  width: auto;
}

.Order__payInfo a {
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  color: var(--green-text-color);
  margin-left: 30px;
  text-decoration: none;
}

.Order__payInfo a:hover {
  text-decoration: underline;
}

.Order__vid {
  width: 40%;
  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;
}

.Order__foot .message-error {
  margin-top: 40px;
}

.Order__foot .dropfiles {
  border-top: 1px solid #D3D3D3;
  padding-top: 30px;
}

.Order__doc {
  margin-bottom: 20px;
}

.Order__audio audio {
  width: 100%;
}

.Order__audio audio:not(:last-child) {
  margin-bottom: 10px;
}

.Order__text {
  border-top: 1px solid #D3D3D3;
  padding-top: 30px;
}

.Order__text p {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #000;
  padding: 0;
}

.Order__text p:not(:last-child) {
  padding-bottom: 15px;
}

.Docfile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  margin-bottom: 10px;
}

.Docfile__icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20px;
  flex: 0 0 20px;
  height: 20px;
  margin-right: 10px;
}

.Docfile__icon.pdf {
  background: url("../images/icon-doc-pdf.svg") center top no-repeat;
}

.Docfile__name,
a.Docfile__name {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #000;
  margin-right: 20px;
  text-decoration: none;
}

.Docfile__name:hover,
a.Docfile__name:hover {
  text-decoration: underline;
}

.Docfile__size {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #707070;
}

.Orders-sidbar {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 346px;
  flex: 0 1 346px;
  margin-left: 20px;
}

.Orders-sidbar .MyBlance {
  margin-bottom: 15px;
}

.MyBlance {
  text-align: right;
}

.MyBlance__info {
  font-weight: 400;
  font-size: 24px;
  line-height: 26px;
  color: var(--green-text-color);
  margin-bottom: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}

.MyBlance__info-title {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  margin-right: 5px;
  text-align: left;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  font-weight: bold;
  margin-bottom: 5px;
}

.MyBlance__info-summ {
  font-weight: bold;
}

.MyBlance__info-summ .summ-balans {
  margin-right: 5px;
}

.MyBlance__cashIn {
  text-align: left;
}

.MyBlance__cashIn a {
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  color: var(--green-text-color);
  text-decoration: none;
}

.MyBlance__cashIn a:hover {
  text-decoration: underline;
}

.MyBlance2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.MyBlance2 .MyBlance__info {
  margin-right: 30px;
  margin-left: 20px;
}

.MyBlance2 .btn-orange {
  text-align: center;
  width: auto;
  margin-bottom: 0;
}

.Orders-filtr__bottom {
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.Orders-filtr__bottom a {
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  color: #D3D3D3;
  text-decoration: none;
}

.Orders-filtr__bottom a:hover {
  text-decoration: underline;
}

.Orders-filtr__bottom .btn-green {
  width: auto;
}

.Orders-fields .Field {
  margin-bottom: 15px;
}

.delete-order a {
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  color: #FD3F61;
  text-decoration: none;
  padding-left: 0px;
  padding-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.delete-order a:hover {
  text-decoration: underline;
}

.delete-order a::before {
  content: ' ';
  display: block;
  background: url("../images/icon-basket.svg") center top no-repeat;
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

.OrderAudio__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 25px;
}

.OrderAudio__track {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}

.OrderAudio__track audio {
  width: 100%;
}

.OrderAudio__nametrack {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #000;
  text-align: left;
  margin: 0 15px;
}

a.OrderAudio__download {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 65px;
  flex: 0 0 65px;
  font-weight: 700;
  font-size: 14px;
  line-height: 40px;
  color: #000;
  text-decoration: none;
}

a.OrderAudio__download:hover {
  text-decoration: underline;
}

.News {
  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: 0 -15px 100px;
}

.NewsItem {
  width: 47%;
  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: 0 15px 20px;
}

.NewsItem__img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 167px;
  flex: 0 0 167px;
  margin-right: 20px;
}

.NewsItem__info {
  -webkit-box-flex: 1;
  -ms-flex: 1 1;
  flex: 1 1;
}

.NewsItem__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: #000;
  margin-bottom: 10px;
}

.NewsItem__anons {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #000;
  margin-bottom: 15px;
}

.NewsItem__link {
  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;
}

.NewsItem__date {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: rgba(0, 0, 0, 0.5);
}

.More-news {
  padding-top: 40px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.NewsArticle {
  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;
}

.NewsPost {
  -webkit-box-flex: 1;
  -ms-flex: 1 1;
  flex: 1 1;
  margin-right: 20px;
  margin-bottom: 100px;
}

.NewsPost .HD-page {
  margin-bottom: 30px;
}

.NewsPost__img {
  margin-bottom: 40px;
}

.NewsPost ul {
  list-style: disc;
  margin-bottom: 20px;
  margin-left: 25px;
}

.NewsPost ul li {
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: #000;
}

.NewsSidebar {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 360px;
  flex: 0 1 360px;
}

.NewsSidebar .LastNews_hd {
  margin-bottom: 30px;
  line-height: 43px;
}

.NewsSidebar .LastNews__item {
  width: 100%;
  margin-left: 0;
}

.indent {
  padding: 20px 15px;
  -webkit-box-shadow: 0px 14px 80px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 14px 80px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  margin-bottom: 20px;
  position: relative;
}

.indent__left {
  position: absolute;
  width: 11px;
  background: linear-gradient(93.7deg, #66A882 -10.98%, #488774 108.23%);
  border-radius: 5px;
  top: 10px;
  bottom: 15px;
  left: 10px;
}

.indent p {
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
  color: var(--green-text-color);
  padding-left: 25px;
}

.indent p:last-child {
  padding-bottom: 0;
}

.Сontent {
  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: 100px;
}

.СontentPage {
  -webkit-box-flex: 1;
  -ms-flex: 1 1;
  flex: 1 1;
  padding: 50px;
  background: radial-gradient(26.25% 99.93% at 61.22% 52.91%, #FFFFFF 0%, #FFFFFF 100%);
  -webkit-box-shadow: 0px 14px 80px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 14px 80px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

.СontentPage ul {
  list-style: disc;
  margin-bottom: 20px;
  margin-left: 25px;
}

.СontentPage ul li {
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: #000;
}

.ContentSidebar {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 275px;
  flex: 0 0 275px;
  margin-right: 20px;
}

.ContentMenu ul {
  list-style: none;
  margin-left: 0;
}

.ContentMenu ul li {
  padding-bottom: 5px;
}

.ContentMenu ul li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: var(--green-text-color);
  position: relative;
  padding-right: 20px;
  text-decoration: none;
}

.ContentMenu ul li a:after {
  content: '→';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}

.ContentMenu ul li a.active,
.ContentMenu ul li a:hover {
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  color: var(--green-text-color);
}

.Faq {
  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: 100px;
}

.FaqSidebar {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 275px;
  flex: 0 0 275px;
  margin-right: 20px;
}

.FaqMenu ul {
  list-style: none;
  margin-left: 0;
}

.FaqMenu ul li {
  padding-bottom: 5px;
}

.FaqMenu ul li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: var(--green-text-color);
  position: relative;
  padding-right: 20px;
  text-decoration: none;
}

.FaqMenu ul li a:after {
  content: '→';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}

.FaqMenu ul li a.active,
.FaqMenu ul li a:hover {
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  color: var(--green-text-color);
}

.FaqCont {
  -webkit-box-flex: 1;
  -ms-flex: 1 1;
  flex: 1 1;
}

.FaqCont .HD2 {
  text-align: left;
  padding-left: 40px;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: var(--green-text-color);
}

.FaqCont .bg-title {
  padding: 0 0 25px 40px;
}

.FaqCont .bg-title span {
  padding: 21px 0;
}

.FaqCont .bg-title span::after {
  background-size: cover;
  height: 70px;
  width: 70px;
  margin-left: -28px;
}

.FaqCont__wrap {
  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;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  margin-bottom: 20px;
}

.FaqCont__item {
  width: 48%;
  border: 1px solid #D3D3D3;
  border-radius: 5px;
  padding: 40px;
  position: relative;
  margin-bottom: 20px;
}

.FaqCont__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  color: var(--green-text-color);
  padding-right: 40px;
  padding-bottom: 20px;
}

.FaqCont__text {
  display: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: var(--green-text-color);
}

.FaqTrigger {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 20px;
  height: 20px;
  background: url("../images/arrow-down-up.svg") center top no-repeat;
}

.FaqTrigger:hover {
  cursor: pointer;
}

.FaqTrigger.up {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.Support {
  margin-bottom: 100px;
}

.Support__top {
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 40px;
}

.Support__top .HD-page {
  margin-bottom: 0;
}

.Support__top .btn-orange {
  width: auto;
}

.SupTabs__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  margin-bottom: 30px;
}

.SupTabs__tab:not(:last-child) {
  margin-right: 20px;
}

.SupTabs__cont {
  display: none;
}

.SupTabs__cont.active {
  display: block;
}

.Question {
  padding: 40px;
  border: 1px solid #D3D3D3;
  border-radius: 5px;
  margin-bottom: 30px;
}

.Question__title {
  font-weight: 700;
  font-size: 22px;
  line-height: 26px;
  color: var(--green-text-color);
  margin-bottom: 20px;
}

.Question__title span {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #fff;
  border-radius: 3px;
  padding: 5px 8px;
  margin-left: 10px;
}

.Question__title span.label-red {
  background: linear-gradient(37.71deg, #FF6056 6.17%, #FD3F61 94.94%);
}

.Question__title span.label-orange {
  background: linear-gradient(93.7deg, #FC9102 -10.98%, #FFA32E 108.23%);
}

.Question__title span.label-green {
  background: linear-gradient(93.7deg, #66A882 -10.98%, #488774 108.23%);
}

.Question__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #000;
  margin-bottom: 20px;
}

.Question__bottom {
  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;
}

.Question a.Question__more {
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  color: var(--green-text-color);
  text-decoration: none;
}

.Question a.Question__more:hover {
  text-decoration: underline;
}

.Question__date {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: var(--green-text-color);
}

.Feedback {
  border: 1px solid #D3D3D3;
  border-radius: 5px;
  padding: 40px;
  margin-bottom: 100px;
}

.Feedback__title {
  font-weight: 700;
  font-size: 22px;
  line-height: 26px;
  color: var(--green-text-color);
  margin-bottom: 15px;
}

.Feedback .Field {
  margin-bottom: 15px;
}

.Feedback__mess textarea {
  width: 100%;
  height: 127px;
  background: #FFFFFF;
  border: 1px solid #0F4D52;
  border-radius: 5px;
  padding: 20px;
  margin-bottom: 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #131313;
}

.Feedback__mess textarea::-webkit-input-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #131313;
}

.Feedback__mess textarea::-moz-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #131313;
}

.Feedback__mess textarea:-ms-input-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #131313;
}

.Feedback__mess textarea::-ms-input-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #131313;
}

.Feedback__mess textarea::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #131313;
}

.Feedback__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}

.Feedback__bottom .btn-orange {
  width: auto;
}

.Feedback__addFiles {
  position: relative;
  margin-right: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.Feedback__addFiles input {
  height: 1px;
  width: 1px;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
}

.Feedback__addFiles .addFiles-label {
  background: url("../images/img-addfile.svg") center top no-repeat;
  width: 20px;
  height: 20px;
}

.Feedback__addFiles .addFiles-label:hover {
  cursor: pointer;
}

.Ticket {
  padding: 40px;
  border: 1px solid #D3D3D3;
  border-radius: 5px;
  margin-bottom: 100px;
}

.Ticket__back {
  margin-bottom: 20px;
}

.Ticket__back a {
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  color: #D3D3D3;
  position: relative;
  padding-left: 20px;
  text-decoration: none;
}

.Ticket__back a::before {
  content: '←';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.Ticket__back a:hover {
  text-decoration: underline;
}

.Ticket__title {
  font-weight: 700;
  font-size: 22px;
  line-height: 26px;
  color: var(--green-text-color);
  margin-bottom: 40px;
}

.TicketTC {
  background: #F7F7F7;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 15px 20px;
}

.TicketTC__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

.TicketTC__ava {
  margin-right: 20px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25px;
  flex: 0 0 25px;
}

.TicketTC__ava img {
  width: 25px;
  height: 25px;
  border-radius: 50%;
}

.TicketTC__title {
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  color: #000;
}

.TicketTC__mess {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #000;
}

.TicketTC__img {
  margin-top: 20px;
}

.TicketTC__img img {
  width: 54px;
  height: 54px;
  margin-right: 15px;
}

.TicketAnswer {
  background: linear-gradient(93.7deg, #66A882 -10.98%, #488774 108.23%);
  border-radius: 8px;
  margin-left: 70px;
}

.TicketAnswer .TicketTC__title,
.TicketAnswer .TicketTC__mess {
  color: #fff;
}

.Profile {
  margin-bottom: 100px;
}

.Profile__top {
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 40px;
}

.Profile__top .HD-page {
  margin-bottom: 0;
}

.Profile__top .btn-orange {
  width: auto;
}

.Profile__wrap {
  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;
}

.ProfBlock {
  width: 32%;
  background: radial-gradient(26.25% 99.93% at 61.22% 52.91%, #FFFFFF 0%, #FFFFFF 100%);
  -webkit-box-shadow: 0px 14px 80px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 14px 80px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 25px;
  margin-bottom: 20px;
}

.ProfBlock__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

.ProfBlock__icon {
  margin-right: 20px;
}

.ProfBlock__title {
  -webkit-box-flex: 1;
  -ms-flex: 1 1;
  flex: 1 1;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: var(--green-text-color);
}

.Field2 {
  margin-bottom: 15px;
}

.Field2__title {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #757575;
  margin-bottom: 5px;
}

.Field2 input {
  width: 100%;
  height: 50px;
  background: #fff;
  border: 1px solid #0F4D52;
  border-radius: 5px;
  padding-left: 25px;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #131313;
}

.Field2 input:focus {
  background: #ECECEC;
}

.Field2 textarea {
  width: 100%;
  height: 100px;
  background: #fff;
  border: 1px solid #0F4D52;
  border-radius: 5px;
  padding: 15px 15px 15px 25px;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #131313;
}

.checkbox {
  margin-bottom: 10px;
  display: block;
}

.checkbox input {
  position: absolute;
  z-index: -1;
  opacity: 0;
  margin: 10px 0 0 20px;
}

.checkbox__text {
  position: relative;
  padding: 0 0 0 34px;
  cursor: pointer;
}

.checkbox__text span {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #000;
}

.checkbox__text:before {
  content: '';
  position: absolute;
  top: 3px;
  left: 0;
  width: 16px;
  height: 16px;
  background: url("../images/checkbox.png") 0 0px no-repeat;
}

.checkbox input:focus + .checkbox__text:before {
  background: url("../images/checkbox.png") 0 0px no-repeat;
}

.checkbox input:checked + .checkbox__text:before {
  background: url("../images/checkbox.png") 0 -16px no-repeat;
}

.CashIn {
  margin-bottom: 100px;
}

.CashIn__top {
  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: 40px;
}

.CashIn__top .HD-page {
  margin-bottom: 0px;
}

.CashIn__cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: radial-gradient(26.25% 99.93% at 61.22% 52.91%, #FFFFFF 0%, #FFFFFF 100%);
  -webkit-box-shadow: 0px 14px 80px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 14px 80px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 40px;
  margin-bottom: 40px;
}

.CashIn__cont-titile {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #757575;
  margin-bottom: 10px;
}

.CashIn__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.CashIn__bottom .btn-orange {
  width: 166px;
}

.CashIn__payall {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #131313;
  margin-right: 40px;
}

.CashIn__payall span {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: #131313;
  padding-left: 20px;
}

.CashInput {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 230px;
  flex: 0 0 230px;
  margin-right: 30px;
  margin-bottom: 30px;
}

.CashInput input {
  width: 100%;
  height: 65px;
  background: #FFFFFF;
  border: 1px solid #0F4D52;
  border-radius: 5px;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: #000;
  padding: 0 15px;
  text-align: center;
}

.CashInput input::-webkit-input-placeholder {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: #000;
}

.CashInput input::-moz-placeholder {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: #000;
}

.CashInput input:-ms-input-placeholder {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: #000;
}

.CashInput input::-ms-input-placeholder {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: #000;
}

.CashInput input::placeholder {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: #000;
}

.CashCheckPay {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 720px;
  flex: 0 1 720px;
}

.CashCheckPay__wrap {
  margin: 0 -10px;
  text-align: right;
  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;
}

.CashCheckPay__wrap-modal {
  margin-bottom: 20px;
}

.CashCheckPay__item {
  font-size: 0;
  margin: 0 10px 10px;
  position: relative;
}

.CashCheckPay__item img {
  font-size: 0;
  border-radius: 5px;
}

.CashCheckPay__item input {
  display: none;
}

.CashCheckPay__item input:checked + label span {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  border: 2px solid #66A882;
  border-radius: 5px;
}

.CashCheckPay__item label span {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  border-radius: 5px;
  cursor: pointer;
}

.CashCheckPay__item label span:hover {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  border: 2px solid #66A882;
  border-radius: 5px;
}

.CashIn-list__cont {
  background: radial-gradient(26.25% 99.93% at 61.22% 52.91%, #FFFFFF 0%, #FFFFFF 100%);
  -webkit-box-shadow: 0px 14px 80px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 14px 80px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 40px;
  margin-bottom: 40px;
}

.Payments {
  overflow: auto;
}

.Payments table {
  width: 100%;
}

.Payments table tr:nth-child(even) {
  background: #f3f3f3;
}

.Payments table tr th:nth-child(1) {
  width: 20%;
}

.Payments table tr th:nth-child(2) {
  width: 15%;
}

.Payments table tr th:nth-child(3) {
  width: 20%;
}

.Payments table tr th:nth-child(4) {
  width: 20%;
}

.Payments table tr th:nth-child(5) {
  width: 25%;
}

.Payments table tr th,
.Payments table tr td {
  text-align: left;
}

.Payments table tr th {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #757575;
  padding: 10px 5px;
}

.Payments table tr td {
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #757575;
  padding: 8px 5px;
}

.Payments table tr td.green {
  color: #66A882;
}

.Payments table tr td.red {
  color: #FF6056;
}

.BG-Sign {
  background: url("../images/bg-login.jpg") center top no-repeat;
  background-size: cover;
  width: 100%;
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex: 1 1;
  flex: 1 1;
}

.Sign {
  width: 880px;
  margin: 30px 15px;
  padding: 40px;
  background: #FFFFFF;
  -webkit-box-shadow: inset -18.7px 18.7px 18.7px rgba(255, 255, 255, 0.1);
  box-shadow: inset -18.7px 18.7px 18.7px rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(37.4px);
  backdrop-filter: blur(37.4px);
  border-radius: 10px;
  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;
}

.Sign.PassFoget {
  width: 420px;
}

.Sign.PassFoget .Sign-item {
  width: 100%;
}

.Sign.PassFoget .Sign-item__title {
  margin-bottom: 15px;
}

.Sign.PassFoget .Capcha {
  text-align: center;
  margin-bottom: 30px;
}

.Sign.PassFoget .btn-orange {
  width: 100%;
  margin: 0 auto;
}

.Sign-item {
  width: 40%;
}

.Sign-item__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: var(--green-text-color);
  text-align: center;
  margin-bottom: 40px;
}

.Sign-item__desc {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #000;
  margin-bottom: 30px;
  text-align: center;
}

.Sign-item .checkbox {
  margin-bottom: 30px;
}

.Sign-item__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
}

.Sign-item__bottom .btn-orange {
  margin-right: 30px;
}

.Sign-item__bottom a {
  font-weight: 300;
  font-size: 12px;
  line-height: 14px;
  color: var(--green-text-color);
  text-decoration: none;
  margin: 19px 0;
}

.Sign-item__bottom a:hover {
  text-decoration: underline;
}

.Sign-item__btnMedia img {
  margin-right: 10px;
}

.Sign-item.Sign-item-reg .btn-orange {
  margin-top: 30px;
}

.Sign-item-row {
  background: #d3d3d3;
  width: 1px;
  margin: 0 15px;
  position: relative;
}

.Sign-item-row div {
  position: absolute;
  top: 50%;
  right: -20px;
  width: 40px;
  background: #fff;
  padding: 5px;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #d3d3d3;
}

.MakeTabs__cont {
  display: none;
}

.MakeTabs__cont.active {
  display: block;
}

.Vid-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}

.Vid-item:not(:last-child) {
  margin-right: 10px;
}

.Vid-item.active .btn-default {
  background: linear-gradient(93.7deg, #FC9102 -10.98%, #FFA32E 108.23%);
  color: #fff;
  border: 1px solid #FC9102;
  border-radius: 5px 0 0px 5px;
}

.Vid-item__radio {
  position: relative;
  text-align: center;
}

.Vid-item__radio input {
  position: absolute;
  z-index: -1;
  opacity: 0;
  margin: 10px 0 0 7px;
}

.Vid-item.active .Vid-item__select {
  display: block;
}

.Vid-item__select {
  display: none;
  height: 40px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff url("../images/icon-select-arrow.svg") 95% 50% no-repeat;
  border: 1px solid #0F4D52;
  border-radius: 0 5px 5px 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #131313;
  padding: 0 20px 0 10px;
}

.radio-btn {
  display: inline-block;
  zoom: 1;
  vertical-align: top;
  margin-right: 20px;
}

.radio-btn input {
  position: absolute;
  z-index: -1;
  opacity: 0;
  margin: 10px 0 0 7px;
}

.radio-btn input:checked + .radio__text:after {
  opacity: 1;
}

.radio-btn input:disabled + .radio__text:after {
  opacity: 0.25;
}

.radio-btn input:disabled + .radio__text:before {
  opacity: 0.25;
}

.radio-btn .radio__text {
  position: relative;
  padding: 0 0 0 35px;
  cursor: pointer;
  font-weight: normal;
  font-size: 15px;
  line-height: 18px;
  color: #000;
}

.radio-btn .radio__text:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 1px;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 50%;
}

.radio-btn .radio__text:after {
  content: '';
  position: absolute;
  top: 4px;
  left: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(93.7deg, #9001A0 -10.98%, #CB0FE0 108.23%);
  opacity: 0;
  -webkit-transition: .2s;
  transition: .2s;
}

.Contact {
  margin-bottom: 140px;
}

.Contact .HD1 {
  color: var(--green-text-color);
}

.Contact__top {
  margin-bottom: 60px;
}

.Contact__top .HD-page {
  margin-bottom: 0px;
}

.Contact__desc {
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  color: #0F4D52;
}

.Contact__desc b {
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  color: #0F4D52;
}

.Contact__wrap {
  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: 40px;
}

.pageNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
  width: 100%;
}

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

a.pageNav-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #488774;
  background-color: #fff;
  border: 1px solid #dee2e6;
  text-decoration: none !important;
}

a.pageNav-link:hover {
  z-index: 2;
  color: #488774;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

a.pageNav-link:focus {
  z-index: 3;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.pageNav-item:first-child .pageNav-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.pageNav-item:last-child .pageNav-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.pageNav-item.active .pageNav-link {
  z-index: 3;
  color: #fff;
  background-color: #488774;
  border-color: #007bff;
}

.pageNav-item.disabled .pageNav-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}

.FormBack {
  width: 48%;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 14px 80px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 14px 80px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

.FormBack__wrap {
  padding: 40px 60px;
}

.FormBack__policy {
  margin-bottom: 25px;
}

.input-file {
  position: relative;
  width: 100%;
  height: 50px;
  background: #fff;
  border: 1px solid #0F4D52;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.input-file-text {
  position: relative;
  padding: 0 0 0 40px;
  line-height: 40px;
  text-align: left;
  height: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 70%;
  font-weight: 400;
  font-size: 16px;
  line-height: 40px;
  color: #131313;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.input-file-text::before {
  content: ' ';
  display: block;
  background: url("../images/icon-attach.svg") center top no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 15px;
  top: 9px;
}

.input-file-btn {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 115px;
  flex: 0 0 115px;
  cursor: pointer;
  outline: none;
  background-color: #419152;
  text-align: center;
  font-weight: 400;
  font-size: 13px;
  line-height: 27px;
  color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: none;
  height: 27px;
  background: linear-gradient(93.7deg, #66A882 -10.98%, #488774 108.23%), #FFFFFF;
  border-radius: 49px;
  margin-right: 15px;
}

.input-file-btn:focus {
  outline: none;
}

.input-file input[type=file] {
  position: absolute;
  z-index: -1;
  opacity: 0;
  display: block;
  width: 0;
  height: 0;
}

.Offices {
  width: 48%;
}

.Offices .HD2 {
  margin-bottom: 40px;
  text-align: left;
}

.Offices__adress {
  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;
  border-bottom: 1px solid #E3E3E3;
  margin-bottom: 30px;
}

.Offices__adress-item {
  width: 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 50px;
}

.Offices__adress-label {
  background: url("../images/icon-map.svg") center top no-repeat;
  width: 40px;
  height: 40px;
  margin-right: 15px;
}

.Offices__adress-info {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.Offices__adress-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  color: var(--green-text-color);
}

.Offices__adress-desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: #000;
  margin-bottom: 5px;
}

.Offices__adress-adress {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #7C7F82;
  margin-bottom: 10px;
}

.Offices__adress-link {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: var(--green-text-color);
}

.Offices__call-title {
  font-weight: 700;
  font-size: 22px;
  line-height: 26px;
  color: var(--green-text-color);
}

.Offices__call-online {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #7C7F82;
  margin-bottom: 10px;
}

.Offices__call-online .off {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #F97373;
  border-radius: 50%;
  vertical-align: middle;
  margin-left: 5px;
}

.Offices__call-online .on {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--green-text-color);
  border-radius: 50%;
  vertical-align: middle;
  margin-left: 5px;
}

.Offices__call-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #000;
  margin-bottom: 20px;
}

.Call-item {
  margin-bottom: 10px;
}

.Call-item__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.Call-item__img {
  margin-right: 5px;
}

.Call-item__text a {
  font-weight: 500;
  font-size: 18px;
  line-height: 19px;
  color: #4D8C77;
  text-decoration: none;
}

.Call-item__show-info a {
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  color: #7C7F82;
  text-decoration: underline;
}

.Call-item__show-info a:hover {
  text-decoration: none;
}

.Get {
  border: 1px solid #E3E3E3;
}

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

.Get__text {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 450px;
  flex: 0 0 450px;
  margin-right: 20px;
}

.Get__text-title {
  font-weight: 800;
  font-size: 36px;
  line-height: 50px;
  color: var(--green-text-color);
}

.Get__text-desc {
  font-weight: 400;
  font-size: px;
  line-height: px;
  color: #768190;
}

.Get__btn {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  text-align: center;
}

.Customers {
  margin-top: 50px;
}

.Customers .HD1 {
  color: var(--green-text-color);
  text-align: center;
}

.Customers .Get {
  margin-bottom: 30px;
}

.Customers-logoMini {
  margin-bottom: 80px;
}

.Customers-logoMini__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  margin-top: 50px;
}

.Customers-logoMini__item {
  margin: 0 15px 15px;
}

.Customers-logoMini__item img {
  max-width: 100%;
}

.Customers-logoMini__btn {
  margin-top: 40px;
}

.Customers-logoMini__btn .btn-green {
  margin: 0 auto;
}

.CardCustomer {
  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;
}

.CardCustomer-mini {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40%;
  flex: 0 0 40%;
  padding: 30px;
  border: 1px solid #D3D3D3;
  border-radius: 5px;
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.CardCustomer-mini__logo {
  text-align: center;
  margin-bottom: 40px;
}

.CardCustomer-mini__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #000;
}

.CardCustomer-big {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 58%;
  flex: 0 0 58%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border: 1px solid #D3D3D3;
  border-radius: 5px;
}

.CardCustomer-big__logo {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 360px;
  flex: 0 0 360px;
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 380px;
  margin-right: 35px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.CardCustomer-big__text {
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  position: relative;
  padding: 20px 20px 20px 0;
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.CardCustomer-big__text-title {
  font-weight: 800;
  font-size: 24px;
  line-height: 33px;
  color: #000;
  margin-top: 23%;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.CardCustomer-big__text-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1 1;
  flex: 1 1;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  color: #000;
}

.CardCustomer-big__text-more {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #4D8C77;
}

.CardCustomer-big__text-more::after {
  display: inline-block;
  content: " ";
  background: url("../images/arrow-mini.svg") center top no-repeat;
  width: 10px;
  height: 11px;
  margin-left: 10px;
  text-decoration: none;
}

.CardCustomer-big__text-more::after:hover {
  text-decoration: underline;
}

.CardCustomer-mini,
.CardCustomer-big {
  margin-bottom: 25px;
}

.Quote {
  padding: 40px 40px 0;
  margin-bottom: 60px;
}

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

.Quote__text-in {
  display: inline-block;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  color: #000;
  position: relative;
}

.Quote__text-in::before {
  position: absolute;
  left: -40px;
  top: -20px;
  display: inline-block;
  content: " ";
  background: url("../images/img-quote-left.png") center top no-repeat;
  width: 30px;
  height: 20px;
}

.Quote__text-in::after {
  position: absolute;
  right: -40px;
  bottom: -20px;
  display: inline-block;
  content: " ";
  background: url("../images/img-quote-right.png") center top no-repeat;
  width: 30px;
  height: 20px;
}

.Quote__logo {
  text-align: center;
}

.Help {
  padding-top: 80px;
  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;
}

.Help .HD1 {
  text-align: left;
}

.Help__info {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 500px;
  flex: 0 0 500px;
  padding-bottom: 100px;
}

.Help__desc {
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  color: #000;
  margin-bottom: 40px;
}

.Help__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}

.Help__btn .btn-default-green {
  margin-left: 20px;
}

.Help__img {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  font-size: 0;
}

.Help__img img {
  position: absolute;
  right: -10px;
  bottom: 0;
  font-size: 0;
}

.Working {
  margin-bottom: 100px;
}

.Working-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 110px;
}

.Working-top__left {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 500px;
  flex: 0 0 500px;
  margin-right: 15px;
}

.Working-top__left .HD1 {
  color: var(--green-text-color);
  -webkit-box-flex: 0;
  -ms-flex: 0 0 500px;
  flex: 0 0 500px;
  margin-bottom: 30px;
}

.Working-top__left-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #000;
  margin-bottom: 30px;
}

.Working-top__img {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.Working-top__img img {
  max-width: 100%;
}

.Working-block2 {
  margin-bottom: 110px;
}

.Working-block2 .HD1 {
  color: var(--green-text-color);
  margin-bottom: 50px;
  text-align: center;
}

.Working-block2__in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

ul.Working-list {
  margin-left: 0;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 48%;
  flex: 0 0 48%;
}

ul.Working-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  color: #000;
  margin-bottom: 20px;
}

ul.Working-list li::before {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 35px;
  flex: 0 0 35px;
  content: ' ';
  display: block;
  background: url("../images/img-check.svg") center top no-repeat;
  width: 35px;
  height: 35px;
  margin-right: 15px;
}

.Working-block3 {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 14px 80px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 14px 80px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  padding: 60px 60px 40px;
  margin-bottom: 160px;
}

.Working-block3 .HD1 {
  color: var(--green-text-color);
  text-align: center;
  margin-bottom: 50px;
}

.Working-block3__in {
  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;
}

.Working-block3__item {
  width: 280px;
  margin-bottom: 20px;
}

.Working-block3__item-img {
  margin-bottom: 10px;
  text-align: center;
  height: 104px;
}

.Working-block3__item-title {
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  color: #000;
  text-align: center;
}

.Working-block3__item-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #000;
}

.Working-2 {
  background: url("../images/bg-working.jpg") center top no-repeat;
  width: 100%;
  height: 331px;
  margin-bottom: 60px;
}

.Working-2__in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.Working-2__img {
  position: relative;
  margin-top: -155px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 507px;
  flex: 0 0 507px;
}

.Working-2__img img {
  max-width: 100%;
}

.Working-2__text {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 190px 0 30px;
}

.Working-2__text-title {
  font-weight: 800;
  font-size: 46px;
  line-height: 43px;
  color: #fff;
  margin-bottom: 20px;
}

.Working-2__text-desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: #fff;
}

.Working-block4 {
  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: 60px;
}

.Working-block4-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 48%;
  flex: 0 0 48%;
  margin-bottom: 45px;
}

.Working-block4-item__img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 64px;
  flex: 0 0 64px;
  margin-right: 25px;
}

.Working-block4-item__text {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.Working-block4-item__text-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  color: #000;
  margin-bottom: 15px;
}

.Working-block4-item__text-desc {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #000;
  margin-bottom: 15px;
}

.Working-block4-item__text-link {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #4D8C77;
}

.Working-block5 {
  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: 0 -15px 65px;
}

.Working-block5-item {
  width: 360px;
  height: 160px;
  background: #FFFFFF;
  border: 1px solid #D3D3D3;
  border-radius: 5px;
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 15px 25px;
  text-align: center;
}

.Working-block5-item__logo {
  width: 100%;
  height: 50px;
  margin-bottom: 20px;
  text-align: center;
}

.Working-block5-item__link {
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  color: #5C9D7E;
}

.Working-block6 {
  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: 120px;
}

.Working-block6__left {
  width: 400px;
}

.Working-block6__left-title {
  font-weight: 800;
  font-size: 36px;
  line-height: 50px;
  text-transform: uppercase;
  color: var(--green-text-color);
  margin-bottom: 20px;
}

.Working-block6__left-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: #000;
  margin-bottom: 35px;
}

.Working-block6__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 530px;
}

.Working-block6__right-text {
  margin-right: 30px;
  text-align: right;
}

.Working-block6__right-title {
  font-weight: 700;
  font-size: 22px;
  line-height: 26px;
  color: var(--green-text-color);
}

.Working-block6__right-name {
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: #000;
}

.Working-block6__right-img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 250px;
  flex: 0 0 250px;
}

.Register {
  margin-top: 0px;
  margin-bottom: 100px;
  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;
}

.Register-form {
  margin-top: 110px;
  width: 48%;
}

.Register-form .HD2 {
  text-align: left;
  margin-bottom: 10px;
}

.Register-form .Desc {
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  color: var(--green-text-color);
  margin-bottom: 35px;
}

.Register-form form {
  width: 350px;
}

.Register-form .Noacc {
  text-align: center;
}

.Register-form__btn {
  margin-bottom: 15px;
  margin-top: 35px;
}

.Register-form__btn .btn-green {
  width: 100%;
}

.Register-text {
  width: 48%;
}

.Register-text__img {
  text-align: center;
}

.Register-text .HD2 {
  margin-bottom: 20px;
}

.AboutUs {
  margin-top: 70px;
}

.AboutUs-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 60px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 14px 80px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 14px 80px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  margin-bottom: 50px;
}

.AboutUs-item__left {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 320px;
  flex: 0 0 320px;
  margin-right: 60px;
  text-align: center;
}

.AboutUs-item__left .HD1 {
  color: var(--green-text-color);
}

.AboutUs-item__img {
  margin-bottom: 5px;
}

.AboutUs-item__text {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.AboutUs-item__text p {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #000;
}

.AboutUs-item__text p:not(:last-child) {
  padding-bottom: 15px;
}

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

.AboutUs-2__left {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 31%;
  flex: 0 0 31%;
}

.AboutUs-2__left-title {
  font-weight: 800;
  font-size: 36px;
  line-height: 50px;
  text-transform: uppercase;
  color: var(--green-text-color);
  margin-bottom: 20px;
}

.AboutUs-2__left-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: #000;
  margin-bottom: 35px;
}

.AboutUs-2__right {
  font-size: 0;
}

.Modal {
  max-width: 750px;
  margin: 5px auto;
  position: relative;
  background: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 16px #fff;
  box-shadow: 0 0 16px #fff;
}

.Modal .Modalclose {
  background: url("../images/close.png") center top no-repeat;
  width: 25px;
  height: 25px;
  cursor: pointer;
  position: absolute;
  top: 5px;
  right: 5px;
  font-weight: normal;
  opacity: 0.6;
  font-size: 0;
}

.Modal .Modalclose:hover {
  opacity: 1;
}

.Modal__wrap {
  padding: 40px;
}

@media only screen and (max-width: 1200px) {
  .CardCustomer-big__logo {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 270px;
    flex: 0 0 270px;
    margin-right: 15px;
  }
}

@media only screen and (max-width: 1190px) {
  .header__text .HD1 {
    font-size: calc(25px + 16 * ((100vw - 320px) / (1920 - 320)));
    line-height: 35px;
  }

  .Working-2__text {
    margin: 0 0px 0 30px;
  }
}

@media only screen and (max-width: 1150px) {
  .header__img {
    margin-left: 0px;
  }
}

@media only screen and (max-width: 1024px) {
  .About {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .About__item {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .About__item.plashka1 {
    height: 393px;
    margin-left: 0px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .About__item.plashka2 {
    margin: 0 0 20px;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .About__item.plashka3 {
    height: 393px;
    margin-right: 0px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .About__img {
    margin-top: 20px;
  }

  .MTranslate__wrap {
    padding: 50px;
  }

  .NewsItem {
    width: 45%;
  }

  .Working-block3 {
    padding: 20px 20px 0px;
  }
}

@media only screen and (max-width: 992px) {
  .Top-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
  }

  .Top-menu ul {
    display: block;
    padding: 0 20px;
  }

  .Top-menu ul li a,
  .Top-menu ul li span {
    color: var(--green-text-color);
  }

  .Top-menu ul li.parent {
    display: block;
  }

  .Top-menu ul li.parent::after {
    background: url("../images/down-arrow-black.svg") center top no-repeat;
    position: absolute;
    top: 17px;
    right: 0;
  }

  .Top-menu ul li.parent:hover ul {
    display: none;
    padding: 0px 20px;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .Top-menu ul li ul {
    position: static;
    width: auto;
  }

  .dropDownMenu {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100%;
    background: #fff;
    -webkit-box-shadow: 0 3px 7px #cec7c7;
    box-shadow: 0 3px 7px #cec7c7;
    z-index: 100;
    -webkit-transition: all 0.5s linear;
    transition: all 0.5s linear;
    width: 250px;
    z-index: 10;
    opacity: 0;
    overflow: auto;
  }

  #hamburger {
    display: block;
  }

  header {
    height: auto;
  }

  .header__img {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 60%;
    flex: 1 1 60%;
  }

  .header__img img {
    position: absolute;
    bottom: 0;
    left: 0px;
    width: 53%;
  }

  .header__text {
    padding-bottom: 110px;
  }

  .About {
    margin: -80px auto 80px;
  }

  .Price__wrap {
    width: 90%;
    margin: 0 auto;
  }

  .Reviews {
    background: url("../images/bg3.png") left 97px no-repeat;
  }

  .Reviews__item {
    padding: 10px 20px 20px;
  }

  .Reviews__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100px;
    flex: 0 0 100px;
  }

  .Reviews__img img {
    top: -20px;
  }

  .Reviews__title {
    font-weight: 700;
    font-size: 20px;
    line-height: 25px;
  }

  .LastNews__item {
    width: 45%;
  }

  .Foot__wrap {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .Foot__socnet {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin: 0 10px 20px;
  }

  .Foot__support {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .Foot__pay {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin: 0 10px 20px;
  }

  .Top-menu-foot {
    display: none;
  }

  .MTranslate__wrap {
    padding: 25px;
  }

  .DownloadTrans textarea {
    min-height: 300px;
  }

  .dropfiles__icon img {
    width: 60px;
    height: 60px;
  }

  .DownloadAudio .dropdown {
    height: auto;
  }

  .Order {
    padding: 20px;
  }

  .Order__top-info {
    padding-left: 10px;
  }

  .Order__payInfo {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .Order__payInfo .btn-green {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
  }

  .Order__payInfo a {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    width: 100%;
    margin-left: 0;
    text-align: center;
    margin-bottom: 15px;
  }

  .MyBlance2 {
    -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: end;
  }

  .MyBlance2 .MyBlance__info {
    margin-right: 0px;
    margin-bottom: 20px;
  }

  .NewsItem__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 120px;
    flex: 0 0 120px;
  }

  .NewsSidebar {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 300px;
    flex: 0 1 300px;
  }

  .Сontent {
    margin-bottom: 50px;
  }

  .СontentPage {
    padding: 20px;
  }

  .ContentSidebar {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 240px;
    flex: 0 0 240px;
  }

  .FaqSidebar {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 240px;
    flex: 0 0 240px;
  }

  .FaqCont__item {
    padding: 15px;
  }

  .FaqCont__title {
    padding-right: 25px;
  }

  .FaqTrigger {
    top: 20px;
    right: 20px;
  }

  .ProfBlock {
    padding: 10px;
  }

  .Contact {
    margin-bottom: 40px;
  }

  .CardCustomer-mini {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .CardCustomer-big {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .Help {
    padding-top: 0px;
  }

  .Help .HD1 {
    font-size: 38px;
    line-height: 45px;
    text-align: center;
  }

  .Help__info {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    padding-bottom: 20px;
  }

  .Help__desc {
    text-align: center;
  }

  .Help__btn {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .Help__img {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    text-align: center;
  }

  .Help__img img {
    position: static;
  }

  .Working-top {
    margin-top: 30px;
  }

  .Working-block3 {
    margin-bottom: 80px;
  }

  .Working-block3__item {
    width: 100%;
  }

  .Working-2__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 400px;
    flex: 0 0 400px;
    margin-top: -52px;
  }

  .Working-2__text-title {
    font-weight: 800;
    font-size: 40px;
    line-height: 38px;
  }

  .Working-block6 {
    margin-bottom: 60px;
  }

  .Working-block6__left {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }

  .Working-block6__left-title {
    font-weight: 800;
    font-size: 30px;
    line-height: 40px;
  }

  .Working-block6__left-button .btn-default-green {
    margin: 0 auto;
  }

  .Working-block6__right {
    margin: 0 auto;
  }

  .AboutUs-item {
    padding: 30px;
  }

  .AboutUs-item__left {
    margin-right: 30px;
  }

  .AboutUs-2__left {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
  }

  .AboutUs-2__left-title {
    font-weight: 800;
    font-size: 30px;
    line-height: 40px;
  }

  .AboutUs-2__left-button .btn-default-green {
    margin: 0 auto;
  }
}

@media only screen and (max-width: 991px) {
  .News {
    width: 100%;
    margin: 0 0px 100px;
  }

  .NewsItem {
    width: 100%;
    margin: 0 0px 20px;
  }
}

@media only screen and (max-width: 768px) {
  .HD1 {
    font-weight: 800;
    font-size: 40px;
    line-height: 50px;
  }

  .HD2 {
    font-size: 25px;
    line-height: 30px;
  }

  .HD-page {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 20px;
  }

  header {
    background: url("../images/bg-main1-free.jpg") center top no-repeat;
    width: 100%;
  }

  .header__wrap {
    padding-top: 0px;
  }

  .header__img {
    display: none;
  }

  .header__text {
    margin-top: 86px;
  }

  .header__text {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }

  .Services__item {
    width: 45%;
  }

  #block3 {
    background: none;
    height: auto;
  }

  .Price {
    background: url("../images/bg-price.jpg") center 0px no-repeat;
    padding-bottom: 75px;
  }

  .Price__in {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .Price__title {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
  }

  .Price__cost {
    margin-bottom: 20px;
  }

  .Reviews__item {
    margin: 13px 0;
  }

  #block5 {
    height: auto;
    background-size: cover;
    padding-bottom: 50px;
  }

  .AboutReg__title {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .AboutReg__title .hd {
    font-weight: 700;
    font-size: 30px;
    line-height: 36px;
  }

  .AboutReg__info {
    width: 100%;
  }

  .AboutReg__item {
    width: 48%;
    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-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
  }

  .AboutReg__item div {
    font-weight: 800;
    font-size: 55px;
    line-height: 60px;
  }

  .AboutReg__item span {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
  }

  .LastNews__wrap {
    margin: 0px;
  }

  .LastNews__item {
    width: 100%;
    margin: 0 0px 30px;
  }

  .LastNews__img {
    margin-right: 10px;
  }

  .LastNews__text {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 10px;
  }

  .more,
  a.more {
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
  }

  .Breadcrambs {
    padding-top: 20px;
  }

  .MTranslate__wrap {
    padding: 20px;
  }

  .MTranslate__fields {
    margin-bottom: 30px;
  }

  .MTranslate__fields-item {
    width: 100%;
  }

  .MTranslate__fields-item:not(:last-child) {
    margin-bottom: 10px;
  }

  .MTranslate__fields-hd {
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
  }

  .MTranslate__fields-row {
    display: none;
  }

  .TypeTranslate {
    margin-bottom: 30px;
  }

  .TypeTranslate__item {
    width: 100%;
  }

  .TypeTranslate__item:not(:last-child) {
    margin-bottom: 20px;
  }

  .DownloadTrans textarea {
    min-height: 150px;
  }

  .ShadowWrap {
    top: -10px;
    right: -10px;
    bottom: -10px;
    left: -10px;
  }

  .dropfiles__icon img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40px;
    flex: 0 0 40px;
    height: 40px;
  }

  .DownloadAudio .dropdown {
    width: 100%;
  }

  .AudioRec {
    width: 100%;
    margin-bottom: 20px;
  }

  .AudioRec__btn .btn-pl {
    width: 100%;
  }

  .AudioRec__btn .btn-pl:last-child {
    width: 100%;
    margin-bottom: 0;
  }

  .OutputAudio__item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .OutputAudio__track {
    width: 92%;
  }

  .OutputAudio__nametrack {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }

  .OutputAudio__close {
    position: absolute;
    top: 0px;
    right: 0px;
  }

  .MyTranslate {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .Orders {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .Order-view {
    margin-bottom: 40px;
  }

  .Order__top {
    margin-bottom: 20px;
  }

  .Orders-sidbar {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    margin-left: 0;
    margin-bottom: 20px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }

  .NewsPost {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    margin-bottom: 30px;
  }

  .NewsPost__img {
    margin-bottom: 20px;
  }

  .NewsSidebar {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }

  .ContentSidebar {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin-bottom: 20px;
  }

  .Faq {
    margin-bottom: 40px;
  }

  .FaqSidebar {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin-bottom: 20px;
  }

  .FaqCont__item {
    width: 100%;
  }

  .Support {
    margin-bottom: 40px;
  }

  .Support__top .HD-page {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .Support__top .btn-orange {
    margin: 0 auto;
  }

  .SupTabs__tab:not(:last-child) {
    margin-right: 0;
  }

  .SupTabs__tab {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .Question {
    padding: 15px;
  }

  .Question__title {
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
  }

  .Question__title span {
    display: block;
    margin-left: 0;
    margin-top: 5px;
  }

  .Feedback {
    padding: 15px;
    margin-bottom: 40px;
  }

  .Ticket {
    padding: 15px;
  }

  .TicketAnswer {
    margin-left: 15px;
  }

  .Profile {
    margin-bottom: 40px;
  }

  .Profile__top .HD-page {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .Profile__top .btn-orange {
    margin: 0 auto;
  }

  .ProfBlock {
    width: 100%;
  }

  .CashIn {
    margin-bottom: 40px;
  }

  .CashIn__top .HD-page {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .CashIn .CashIn__balance {
    width: 100%;
  }

  .CashIn__cont {
    padding: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .CashIn__bottom .btn-orange {
    margin: 0 auto;
  }

  .CashIn__payall {
    width: 100%;
    margin: 0 0 20px 0;
    text-align: center;
  }

  .CashIn-list__cont {
    padding: 10px;
  }

  .Payments table {
    width: 660px;
  }

  .Sign {
    padding: 15px;
  }

  .Sign-item {
    width: 100%;
  }

  .Sign-item-row {
    width: 100%;
    height: 1px;
    margin: 50px 0;
  }

  .Sign-item-row div {
    top: -11px;
    right: 47%;
  }

  .Vid-item {
    width: 100%;
    margin-bottom: 10px;
  }

  .Vid-item:not(:last-child) {
    margin-right: 0;
  }

  .Vid-item__radio {
    width: 50%;
    padding: 2px 10px;
  }

  .Vid-item__select {
    width: 50%;
  }

  .FormBack {
    width: 100%;
    margin-bottom: 40px;
  }

  .Offices {
    width: 100%;
  }

  .Get__text {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin-bottom: 20px;
  }

  .Get__text-title {
    font-weight: 800;
    font-size: 26px;
    line-height: 46px;
  }

  .CardCustomer-mini {
    padding: 15px;
  }

  .CardCustomer-mini__logo {
    margin-bottom: 20px;
  }

  .CardCustomer-big__logo {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 180px;
    flex: 0 0 180px;
    min-height: auto;
  }

  .CardCustomer-big__text {
    padding: 10px 10px 20px 0;
  }

  .CardCustomer-big__text-title {
    margin-top: 0;
    font-weight: 800;
    font-size: 18px;
    line-height: 25px;
  }

  .CardCustomer-big__text-desc {
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
  }

  .CardCustomer-big__text-more {
    margin-top: 20px;
  }

  .Working-top {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 60px;
  }

  .Working-top__left {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }

  .Working-top__img {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    text-align: center;
  }

  .Working-top__img img {
    width: 60%;
  }

  .Working-block2 {
    margin-bottom: 60px;
  }

  .Working-block2__in {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  ul.Working-list {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .Working-block3 {
    margin-bottom: 60px;
  }

  .Working-2__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 300px;
    flex: 0 0 300px;
    margin-top: 43px;
  }

  .Working-block4-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin-bottom: 20px;
  }

  .Register-form {
    width: 100%;
    margin-top: 50px;
  }

  .Register-form form {
    width: 100%;
  }

  .Register-text {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    width: 100%;
  }

  .AboutUs {
    margin-top: 20px;
  }

  .AboutUs-item {
    padding: 15px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .AboutUs-item__left {
    margin-right: 15px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .AboutUs-item__left .HD1 {
    margin-bottom: 10px;
  }

  .AboutUs-2 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .AboutUs-2__left {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin-bottom: 20px;
    text-align: center;
  }
}

@media only screen and (max-width: 650px) {
  .Top-info {
    display: none;
  }

  .Top-info2 {
    display: block;
    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-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-top: 1px solid #999;
    padding: 20px 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .UserInfo {
    margin-right: 0;
  }

  .Working-2__in {
    height: 100%;
  }

  .Working-2__img {
    display: none;
  }

  .Working-2__text {
    margin: 15px 0px;
  }

  .Modal {
    width: 90%;
  }

  .Modal__wrap {
    padding: 20px;
  }
}

@media only screen and (max-width: 600px) {
  .Foot__support {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .Foot__support .Phone {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .Foot__support .Suports {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 576px) {
  .Services__wrap {
    width: 100%;
    margin: 0;
  }

  .Services__item {
    width: 100%;
    margin: 0 0px 20px;
  }

  .AboutReg__item {
    width: 100%;
  }

  .AboutReg__item div {
    font-weight: 800;
    font-size: 35px;
    line-height: 45px;
  }

  .AboutReg__item span {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
  }

  .dropdown {
    padding: 10px;
  }

  .dropfiles__item {
    width: 100%;
    padding: 5px;
  }

  .dropfiles__icon {
    margin-top: 0;
    margin-bottom: 0;
  }

  .Order__top-data {
    width: 100%;
    margin-bottom: 20px;
  }

  .Order__top-info {
    width: 100%;
    border: none;
    padding-left: 0px;
  }

  .delete-order {
    position: absolute;
    top: 0px;
    right: 0px;
  }

  .delete-order a {
    padding-top: 0px;
  }

  .delete-order a span {
    display: none;
  }

  .OrderAudio__item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .OrderAudio__track {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .OrderAudio__nametrack {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    margin: 0 15px 0 0;
  }

  .NewsItem__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100px;
    flex: 0 0 100px;
  }
}

@media only screen and (max-width: 540px) {
  .FormBack__wrap {
    padding: 15px;
  }

  .Offices__adress-item {
    width: 100%;
  }

  .Get__in {
    padding: 15px;
  }

  .Customers-logoMini__item {
    width: 40%;
    text-align: center;
    margin: 0 5px 10px;
  }

  .CardCustomer-big {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .CardCustomer-big__logo {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100px;
    flex: 0 0 100px;
    height: 120px;
    margin-right: 10px;
  }

  .Working .HD1 {
    font-weight: 800;
    font-size: 35px;
    line-height: 40px;
  }

  .Working-block4-item {
    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-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .Working-block4-item__img {
    margin-right: 0;
    text-align: center;
    margin-bottom: 10px;
  }

  .Working-block6__right {
    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-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .Working-block6__right-text {
    text-align: center;
    margin-right: 0px;
  }

  .Working-block6__right-img {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .AboutUs-item__left .HD1 {
    font-weight: 800;
    font-size: 35px;
    line-height: 40px;
  }
}

@media only screen and (max-width: 460px) {
  .InfoTrans__right {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .InfoTrans__balans {
    width: 100%;
    margin-bottom: 30px;
    margin-right: 0;
  }

  .InfoTrans__btn .btn-orange {
    width: 100%;
  }
}

@media only screen and (max-width: 450px) {
  .CashCheckPay__item {
    width: 100px;
  }

  .Help__btn .btn-default-green {
    margin-left: 0px;
    width: 100%;
  }

  .Help__btn .btn-orange-auto {
    margin-bottom: 20px;
    width: 100%;
  }
}

@media only screen and (max-width: 440px) {
  .About__item.plashka1 {
    width: 100%;
    height: auto;
  }

  .About__item.plashka1::before {
    background: #eeeeee;
    border-radius: 10px;
  }

  .About__item.plashka2 {
    width: 100%;
    height: auto;
  }

  .About__item.plashka2::before {
    background: #eeeeee;
    border-radius: 10px;
  }

  .About__item.plashka2 .About__text {
    width: 90%;
  }

  .About__item.plashka3 {
    width: 100%;
    height: auto;
  }

  .About__item.plashka3::before {
    background: #eeeeee;
    border-radius: 10px;
  }

  .About__text {
    width: 90%;
  }

  #block3 {
    margin-bottom: 0px;
  }

  .Price__in {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 400px) {
  .Order__mid {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .Order__payInfo {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .Order__vid {
    width: 100%;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    margin-bottom: 15px;
  }

  .NewsItem {
    margin: 0 0px 30px;
  }

  .NewsItem__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    text-align: center;
    margin: 0px auto 10px;
  }

  .NewsItem__img img {
    width: 100px;
  }

  .NewsItem__info {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
}

@media only screen and (max-width: 380px) {
  .Reviews__item-top {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .Reviews__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    text-align: center;
    margin-right: 0;
  }

  .Reviews__img img {
    position: static;
    width: 100px !important;
    margin: 0 auto;
  }
}