html,
div,
span,
applet,
object,
iframe,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
h1 {
  font-size: 2em;
}
@font-face {
  font-family: 'UniSansHeavyCAPS';
  src:url('../fonts/UniSansHeavyCAPS/UniSansHeavyCAPS.ttf.woff') format('woff'),
      url('../fonts/UniSansHeavyCAPS/UniSansHeavyCAPS.ttf.svg#UniSansHeavyCAPS') format('svg'),
      url('../fonts/UniSansHeavyCAPS/UniSansHeavyCAPS.ttf.eot'),
      url('../fonts/UniSansHeavyCAPS/UniSansHeavyCAPS.ttf.eot?#iefix') format('embedded-opentype'); 
  font-weight: normal;
  font-style: normal;
}


html {
  scroll-behavior: smooth;
}
::-webkit-scrollbar {
  width: 0px;
  background: rgba(255, 255, 255, 0);
}
body {
  font-family: 'Montserrat', sans-serif;
  background-color: #030325;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  text-transform: initial;
  color: unset;
}
.container {
  max-width: 1680px;
  margin: auto;
  padding: 0 30px;
}
@media( max-width: 992px) {
  .container {
    padding: 0 20px;
  }
}
@media( max-width: 576px) {
  .container {
    padding: 0 15px;
  }
}
.section__title {
  color: #FFF;
  text-align: center;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; 
  letter-spacing: 1.5px;
  text-transform: uppercase;
  filter: drop-shadow(0px 4px 28px #08E3CE);
}
@media( max-width: 1200px) {
  .section__title {
    font-size: 32px;
  }
}
@media( max-width: 768px) {
  .section__title {
    font-size: 25px;
  }
}
.header {
  padding-top: 20px;
  padding-bottom: 21px;
}
.header__block {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header__block-group {
  display: flex;
  align-items: center;
}
.header__block-link {
  color: #FFF;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-right: 46px;
}
.header__block .header__block-image{
  margin-right: auto;
}


.header__block-link:first-child {
  margin-right: 70px;
}
.header__block-button {
  color: #FFF;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 16px 24px;
  border: 2px solid #08E3CE;
  box-shadow: 0px 2px 25px -6px #08E3CE;
  transition: all 0.3s ease;
}
.header__block-button:hover {
  border-color: #2E19FC;
  box-shadow: 0px 2px 25px -6px #2E19FC;
  transition: all 0.3s ease;
}
.header__burger-button {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
}
.header__burger {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  position: fixed;
  top: 0;
  right: -400px;
  padding: 20px 25px;
  padding-top: 30px;
  background-color: #10102f;
  z-index: 100;
  transition: all 0.5s ease;
}
.header__burger.active {
  right: 0;
  transition: all 0.5s ease;
}
.header__burger-close {
  background-image: url('../../img/close-btn.png');
  background-repeat: no-repeat;
  background-position: center;
  width: 18px;
  height: 18px;
  border: none;
  padding: 0;
  background-color: transparent;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
#language-switcher{
  color: #FFF;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  background: none;
  border: none;
  padding: 5px 10px;
  margin-right: 10px;
  cursor: pointer;
}
#language-switcher:focus-visible, .header__language:focus-visible{
  outline: -webkit-focus-ring-color auto 0px;
}
.header__language option{
  background: #050526;
  border: none;
}
@media( max-width: 1200px) {
  .header__block-link {
    font-size: 20px;
    margin-right: 35px;
  }
  .header__block-link:first-child {
    margin-right: 35px;
  }
  .header__block-button {
    font-size: 20px;
    padding: 12px 20px;
  }
}
@media( max-width: 992px) {
  .header__block-group a{
    display: none;
  }
  .header__burger-button {
    display: block;
  }
  .header__block-image {
    width: 200px;
  }
}
@media( max-width: 768px) {
  .header__block-image {
    width: 180px;
  }
}
@media( max-width: 375px) {
  #language-switcher{
	margin: 0;
  }
  .header__burger {
    width: 100%;
  }
  .header__burger a {
    margin: 0 !important;
    text-align: center;
  }
}
.main__block {
  position: relative;
  padding-top: 0;
  padding-bottom: 75px;
}
.main__text {
  position: absolute;
  z-index: 99;
  top: 175px;
  overflow: visible; 
}
.main__title {
  max-width: 545px;
  margin: 0;
}
.main__title span {
  font-family: 'UniSansHeavyCAPS';
  font-size: 124px;
  font-style: normal;
  font-weight: 900;
  line-height: 99.6%;
  text-transform: uppercase;
  -webkit-text-stroke: 1px white;
  -webkit-text-fill-color: transparent;
  overflow: visible; 
}
.main__title::before {
  content: '';
  display: block;
  width: 132px;
  height: 18px;
  position: absolute;
  top: 48px;
  left: 46px;
  border: 1px solid #FFF;
  transition: all 0.4s linear;
}
.main__subtitle {
  color: #FFF;
  font-family: 'Open Sans';
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-top: 9px;
  max-width: 252px;
  opacity: 0;
  transition: all 0.4s linear;
}
.main__subtitle-strip {
  display: inline-block;
  width: 0;
  height: 2px;
  margin-top: 25px;
  background-color: #fff;
  transition: all 0.4s linear;
}
.main__video {
  position: relative;
  max-height: 100%;
  height: 100%;
  transition: all 0.5s linear;
  margin-left: -3%;
}
.main__video::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: url('../../img/vid-bg.png');
  background-repeat: no-repeat;
  background-size: 101%;
  background-position: center;
  z-index: 1;
}
.main__video-item {
  width: 100%;
  max-height: inherit;
}
@media( max-width: 1440px) {
  .main__title {
    max-width: 470px;
  }
  .main__title span {
    font-size: 90px;
  }
  .main__title::before {
    width: 80px;
    top: 37px;
    left: 31px;
  }
}
@media( max-width: 1200px) {
  .main__text {
    top: 110px;
  }
  .main__title {
    max-width: 400px;
  }
  .main__title span {
    font-size: 75px;
  }
  .main__title::before {
    width: 60px;
    top: 33px;
    left: 26px;
    height: 14px;
  }
  .main__subtitle {
    font-size: 22px;
  }
}
@media( max-width: 992px) {
  .main__title {
    max-width: 310px;
  }
  .main__title span {
    font-size: 58px;
  }
  .main__title::before {
    width: 52px;
    top: 27px;
    left: 20px;
    height: 11px;
  }
}
@media( max-width: 768px) {
  .main__block {
    padding-bottom: 50px;
  }
  .main__text {
    position: absolute;
    top: 0;
  }
  .main__title {
    max-width: 100%;
  }
  .main__title::before {
    width: 35px;
    height: 10px;
  }
  .main__subtitle {
    font-size: 20px;
  }
  .main__video {
    margin: 0;
    width: 100%;
  }
}
@media( max-width: 576px) {
  .main__text {
    top: 10px;
  }
  .main__title span {
    font-size: 38px;
  }
  .main__title::before {
    width: 23px;
    top: 17px;
    left: 12px;
    height: 5px;
  }
  .main__subtitle {
    font-size: 17px;
  }
  .main__subtitle-strip {
    margin-top: 10px;
  }
}
.services {
  padding-top: 100px;
  margin-top: -100px;
  padding-bottom: 400px;
  margin-bottom: -300px;
  overflow-x: hidden; 
  overflow-y: visible;
}
.services__title {
  margin-bottom: 73px;
}
.services__block {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(470px, 3fr));
  gap: 36px;
  position: relative;
}
.services__block-item {
  border-width: 1px;
  border-style: solid;
  border-image: linear-gradient(117deg, #FFFFFF80, #FFFFFF80, #F5EBEB00, #104178, #FFFFFF) 1;
  background: linear-gradient(117deg, rgba(255, 255, 255, 0.12) 1.54%, rgba(255, 255, 255, 0.03) 70.68%);
  box-shadow: 0px 6.30704px 151.36887px -6.30704px rgba(0, 0, 0, 0.10);
  padding: 50px 21px 105px 30px;
}
.services__block-top {
  display: flex;
  align-items: center;
  column-gap: 30px;
  margin-bottom: 30px;
}
.services__block-image {
  min-width: max-content;
}
.services__block-title {
  color: #FFF;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 33.3px; 
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.services__block-text {
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 23.8px; 
}
@media( max-width: 1200px) {
  .services {
    padding-bottom: 380px;
  }
  .services__block {
    grid-template-columns: repeat(auto-fill, minmax(420px, 3fr));
    gap: 28px;
  }
  .services__block-item {
    padding: 40px 15px 80px 20px;;
  }
  .services__block-title {
    font-size: 26px;
  }
}
@media( max-width: 768px) {
  .services {
    padding-bottom: 360px;
  }
  .services__title {
    margin-bottom: 40px;
  }
  .services__block {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .services__block-item {
    padding: 30px 15px 40px 15px;;
  }
  .services__block-top {
    margin-bottom: 20px;
  }
  .services__block-title {
    font-size: 22px;
  }
  .services__block-text {
    font-size: 16px;
  }
}
@media( max-width: 576px) {
  .services__block-top {
    column-gap: 15px;
  }
  .services__block-image {
    width: 50px;
    min-width: 50px;
  }
  .services__block-title {
    font-size: 17px;
    line-height: 20px;
  }
  .services__block-text {
    font-size: 15px;
  }
}
.whyUs {
  padding-top: 74px;
  padding-bottom: 110px;
}
.whyUs__title {
  margin-bottom: 150px;
}
.whyUs__progress {
  position: relative;
  height: 60px;
  z-index: -1;
}
.whyUs__progress svg {
  display: block;
  width: 100%;
}
.wave {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.wave.wave--active {
  z-index: 3;
}
.whyUs__block {
  padding: 0px 91px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 5%;
  margin-top: -40px;
}
.whyUs__block-item::before {
  content: '';
  display: block;
  height: 124px;
  background-image: url('../../img/checkpoint-1.png');
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 22px;
  opacity: 0;
}
.whyUs__block-item {
  position: relative;
}
.whyUs__block-item::after {
  content: '';
  display: block;
  width: 120%;
  height: calc(100% - 125px);
  position: absolute;
  left: 0;
  bottom: 0;
  background: #030325;
}
.whyUs__block-title {
  color: #FFF;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 23.8px; 
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.whyUs__block-description {
  color: #FFF;
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 23.8px;
}
.whyUs__progress-mobile {
  display: none;
  justify-content: center;
  min-width: 10px;
  margin: 0px 20px;
  border-radius: 50px;
  height: 900px;
  background: linear-gradient(90deg, rgba(21,12,125,1) 50%, rgba(14,9,88,1) 100%);
  position: relative;
  overflow: hidden;
}
.whyUs__progress-item {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  width: 100%;
  height: 0%;
  background: #08E3CE;
  border-radius: 50px;
}
@media( max-width: 1440px) {
  .whyUs__block {
    padding: 0px 50px;
    grid-template-columns: repeat(5, minmax(170px, 220px));
  }
  .whyUs__block-title {
    font-size: 20px;
    line-height: 100%;
  }
  .whyUs__block-description {
    font-size: 12px;
  }
}
@media( max-width: 1200px) {
  .whyUs {
    padding-top: 50px;
    padding-bottom: 100px;
  }
  .whyUs__title {
    margin-bottom: 120px;
  }
  .whyUs__block {
    padding: 20px 0;
    margin-top: 0;
    grid-template-columns: 1fr;
  }
  .whyUs__block-item {
    display: flex;
    align-items: start;
    max-width: 600px;
  }
  .whyUs__block-item::before {
    min-width: 115px;
    min-height: 150px;
    transform: rotate(-90deg);
    margin-top: -57px;
    z-index: 1;
  }
  .whyUs__block-item::after {
    height: 100%;
    width: calc(100% - 110px);
    left: initial;
    right: 0;
  }
  .whyUs__progress {
    display: none;
  }
  .whyUs__wrapper {
    display: flex;
    
  }
  .whyUs__progress-mobile {
    display: flex;
  }
}
@media( max-width: 768px) {
  .whyUs {
    padding-bottom: 80px;
  }
  .whyUs__wrapper {
    column-gap: 30px;
  }
  .whyUs__block-item {
    max-width: 400px;
  }
  .whyUs__block-item::before {
    min-width: 3px;
    width: 3px;
    min-height: 70px;
    height: 70px;
    background: linear-gradient(#08E3CE 0.07%, #030325 104.18%);
    margin-top: -23px;
  }
  .whyUs__block-item::after {
    height: 100%;
    width: 100%;
    left: initial;
    right: 0;
  }
}
@media( max-width: 576px) {
  .whyUs__title {
    margin-bottom: 90px;
  }
  .whyUs__wrapper {
    column-gap: 18px;
  }
  .whyUs__block-item {
    max-width: 95%;
  }
  .whyUs__block-item::before {
    min-height: 50px;
    height: 50px;
    margin-top: -18px;
  }
  .whyUs__block-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .whyUs__block-description {
    line-height: 18px;
  }
  .whyUs__progress-mobile {
    height: auto
  }
  .whyUs__block {
    row-gap: 40px;
  }
}
@media( max-width: 425px) {
  .whyUs__block-title {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media( max-width: 375px) {
  .whyUs__progress-mobile {
    margin-right: 13px;
  }
  .whyUs__block-title {
    font-size: 16px;
    
  }
}
.feedback {
  padding: 105px 0;
}
.feedback .container {
  margin-left: 5% !important;
}
.feedback__title {
  margin-bottom: 80px;
}
.feedback__block {
  display: grid;
  grid-template-columns: 572px 1fr;
  column-gap: 100px;
}
.slick-slider .slick-list {
	transform:rotate(180deg);
  height: 600px !important;
}
.slick-slider .slick-slide {
	transform:rotate(180deg);
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  transition-timing-function: cubic-bezier(0.85, 0, 0.21, 1) !important;
}
.feedback__slider {
  z-index: 10;
  height: 100%;
  top: 30px;
  overflow: hidden;
}
.feedback__slider-item {
  display: flex !important;
  flex-direction: column;
  row-gap: 10px;
  padding: 20px;
  height: 320px !important;
  margin: 230px 0;
}
.feedback__slider-title {
  color: #FFF;
  text-align: center;
  text-shadow: 0px 4px 50px #08E3CE;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 46.3px; 
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.feedback__slider-subtitle {
  color: #FFF;
  font-size: 28px;
  font-style: normal;
  font-weight: 300;
  line-height: 28.8px;
  text-shadow: 0px 4px 50px #08E3CE;
  text-align: center;
}
.feedback__form {
  width: 89%;
  display: flex;
  flex-direction: column;
  margin-left: auto;
}
.feedback__form-title {
  color: #FFF;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 40px;
}
.wpcf7-form-control-wrap {
	display: block !important;
}
.feedback__form-input {
  padding: 19px 25px;
  border: none;
  outline: none;
  color: #C2C2C2;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  background: linear-gradient(93deg, rgba(255, 255, 255, 0.13) 1.77%, rgba(255, 255, 255, 0.05) 102.09%);
  width: 100%;
  box-sizing: border-box;
}
.feedback__form-input::placeholder {
  color: #C2C2C2;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.feedback__form-textarea {
  padding: 19px 25px;
  border: none;
  outline: none;
  color: #C2C2C2;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 15px;
  background: linear-gradient(93deg, rgba(255, 255, 255, 0.13) 1.77%, rgba(255, 255, 255, 0.05) 102.09%);
  resize: none;
  margin-bottom: 30px;
  height: 185px;
  width: 100%;
  box-sizing: border-box;
}
.feedback__form-textarea::placeholder {
  color: #C2C2C2;
  font-size: 17px;
  font-family: Montserrat;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.feedback__form-wrapper {
  margin-bottom: 40px;
}
.feedback__form-label {
  display: flex;
  align-items: end;
  column-gap: 15px;
  color: #C2C2C2;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  cursor: pointer;
}
.feedback__form-file {
  display: none;
}
#feedback__form-file__name {
  color: #C2C2C2;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-top: 10px;
}
.feedback__form-button {
  color: #FFF;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 16px 70px;
  font-family: Montserrat;
  border: 2px solid #08E3CE;
  box-shadow: 0px 2px 25px -6px #08E3CE;
  transition: all 0.3s ease;
  width: fit-content;
  background-color: inherit;
  cursor: pointer;
}
.feedback__form-button:hover {
  border-color: #2E19FC;
  box-shadow: 0px 2px 25px -6px #2E19FC;
  transition: all 0.3s ease;
}
@media( max-width: 1440px) {
  .feedback__form-title {
    font-size: 28px;
  }
}
@media( max-width: 1200px) {
  .feedback {
    padding: 75px 0;
  }
  .feedback .container {
    margin-left: auto !important;
  }
  .feedback__block {
    grid-template-columns: 1fr minmax(450px, 1fr);
    column-gap: 70px;
  }
  .feedback__slider-item {
    width: 100% !important;
  }
  .feedback__slider-title {
    font-size: 32px;
    line-height: 42px;
  }
  .feedback__slider-subtitle {
    font-size: 24px;
    line-height: normal;
  }
  .feedback__form {
    width: 100%;
  }
  .feedback__form-button {
    font-size: 20px;
    padding: 12px 50px;
  }
}
@media( max-width: 992px) {
  .feedback__title {
    margin-bottom: 40px;
  }
  .feedback__block {
    grid-template-columns: 1fr;
  }
  .feedback__form {
    width: 100%;
  }
}
@media( max-width: 768px) {
  .feedback {
    padding: 50px 0;
  }
  .feedback__form-title {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .feedback__slider-title {
    font-size: 26px;
    line-height: normal;
  }
  .feedback__slider-subtitle {
    font-size: 20px;
  }
}
@media( max-width: 576px) {
  .slick-slider .slick-list {
    height: 400px !important;
  }
  .feedback__slider-item {
    height: 250px !important;
    margin: 130px 0px;
  }
  .feedback__form-input {
    padding: 15px 20px;
  }
  .feedback__form-input::placeholder {
    font-size: 15px;
  }
  .feedback__form-textarea {
    padding: 15px 20px;
    height: 120px;
    margin-bottom: 20px;
  }
  .feedback__form-textarea::placeholder {
    font-size: 15px;
  }
  .feedback__form-wrapper {
    margin-bottom: 25px;
  }
  .feedback__form-label {
    font-size: 18px;
  }
  #feedback__form-file__name {
    font-size: 16px;
  }
}
@media( max-width: 425px) {
  .feedback__slider {
    top: -30px;
  }
}
@media( max-width: 375px) {
  .feedback__form-button {
    width: 100%;
    font-size: 20px;
    padding: 12px 50px;
  }
}
.footer {
  padding: 25px 0;
}
.footer__block {
  display: flex;
  align-items: start;
  justify-content: space-between;
}
.footer__info {
  display: flex;
  flex-direction: column;
}
.footer__info-title {
  color: #FFF;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 21px;
}
.footer__info-list {
  display: flex;
  flex-direction: column;
  row-gap: 17px;
}
.footer__info-list__item a {
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.footer__socials {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 30px;
}
.footer__socials .header__block-image {
  transform: none !important;
  animation: none !important;	
}
.footer__socials-list {
  display: flex;
  column-gap: 20px;
}
.footer__socials-list__item a {
  display: block;
  width: 64px;
  height: 64px;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
}
.footer__socials-telegram {
  background-image: url('../../img/telegram-logo.svg');
}
.footer__socials-mail {
  background-image: url('../../img/mail-logo.svg');
}
.footer__nav-list {
  display: flex;
  flex-direction: column;
  row-gap: 31px;
}
.footer__nav-list__item a {
  color: #FFF;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.footer__text {
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: 30px;
  text-align: center;
}
@media( max-width: 1200px) {
  .footer__info-title {
    font-size: 22px;
  }
  .footer__nav-list {
    row-gap: 24px;
  }
  .footer__nav-list__item a {
    font-size: 22px;
  }
  .footer__text {
    margin-left: 36px;
  }
}
@media( max-width: 992px) {
  .footer__info-title {
    font-size: 20px;
  }
  .footer__info-list {
    row-gap: 14px;
  }
  .footer__info-list__item a {
    font-size: 16px;
  }
  .footer__socials img {
    width: 200px;
  }
  .footer__nav-list__item a {
    font-size: 20px;
  }
}
@media( max-width: 768px) {
  .footer__block {
    flex-wrap: wrap;
    row-gap: 25px;
  }
  .footer__socials {
    order: 1;
    width: 100%;
  }
  .footer__text {
    margin-left: 0;
  }
}
@media( max-width: 475px) {
  .footer {
    padding: 20px 0;
  }
  .footer__block {
    flex-direction: column;
  }
  .footer__socials {
    width: fit-content;
  }
  .footer__socials-list__item a {
    width: 55px;
    height: 55px;
  }
  .footer__nav-list {
    row-gap: 18px;
  }
  .footer__text {
    font-size: 16px;
    margin-top: 20px;
  }
}
.wpcf7-response-output{
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 16px 70px;
    font-family: Montserrat;
    border: 2px solid #08E3CE;
    box-shadow: 0px 2px 25px -6px #08E3CE;
    transition: all 0.3s ease;
    width: fit-content;
    background-color: inherit;
    cursor: pointer;
}


/* правки для Mac OS*/

.video-background video::-webkit-media-controls {
      display: none !important;
    }
    /* Сброс стилей для элемента <select> */
select {
  appearance: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: '';
}

/* Сброс стилей для опций в элементе <select> */
select option {
  font-weight: normal;
}


.english-style .footer__socials {
    margin-left: -86px;
}
@media (max-width: 992px) {
  .english-style .footer__socials {
      margin-left: -49px;
  }
}
@media (max-width: 768px) {
  .english-style .footer__socials {
      margin-left: 0;
  }
}
.other-language-style .footer__socials{
    margin-left: -25px;
}

@media (max-width: 992px) {
  .other-language-style .footer__socials {
      margin-left: -6px;
  }
}
@media (max-width: 768px) {
  .other-language-style .footer__socials {
      margin-left: 0;
  }
}
.downloadFile_file_but{
    margin-top: 35px;
}
img.aligncenter {
	display: block;
	margin: 0px auto;
}
img.alignright {
	display: block;
	margin-left: auto;
}