@charset "UTF-8";
/*Подключение шрифтов*/
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,700,900&display=swap&subset=cyrillic");
/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0;}
*, *::before, *::after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;}
:focus, :active, a:focus, a:active { outline: none;}
main, footer, header, hgroup, menu, nav, section { display: block;}
html, body {
  width: 100%;
  height: 100%;
  font-size: 100%;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;}
input, button, textarea {
  font-family: inherit;
  font-size: 100%;}
input::-ms-clear { display: none;}
button { cursor: pointer;}
button::-moz-focus-inner {
  padding: 0;
  border: 0;}
a, a:visited { text-decoration: none;}
a:hover { text-decoration: none;}
ul, ol { list-style: none;}
img { vertical-align: top;}
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;}
/*---------------------------------------------------------*/
/*Задание стилей для всего документа и обёрток*/
body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
  background-color: #ffffff;}

.wrapper {
  max-width: 100%;
  min-width: 320px;}

.container {
  max-width: 1230px;
  min-width: 320px;
  padding: 0 30px;
  margin: 0 auto;}
@media (max-width: 992px) {
  .container { padding: 0 15px;}}

.section-title {
  font-weight: 700;
  font-size: 80px;
  line-height: 1.1;
  letter-spacing: -1.6px;
  color: #28203f;}
  @media (max-width: 900px) { .section-title { font-size: 50px;}}
  @media (max-width: 576px) { .section-title { font-size: 36px;}}
/*--------------------------------------------------*/
/*Стили для хедера*/
.header { padding-top: 62px;}
.header.out {
  -webkit-transform: translateY(-300px);
  -ms-transform: translateY(-300px);
  transform: translateY(-300px);}
.header--active {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  -webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
  padding: 20px 0;
  z-index: 50;}
.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;}
.header__logo { width: 275px;}
.header__logo img {
  display: block;
  max-width: 100%;
  height: auto;}
.header__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;}
.header__link {
  display: block;
  padding: 8px 5px;
  font-size: 13px;
  line-height: 1;
  color: #000000;
  text-transform: uppercase;
  margin-left: 20px;
  position: relative;}
.header__link::after {
  content: '';
  width: 0;
  height: 2px;
  background-color: #149ae7;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;}
.header__link:hover::after, .header__link:focus::after { width: 100%;}
.header__link--active::after { width: 100%;}
.header__burger {
  display: none;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: transparent;
  -webkit-box-shadow: 0 0 5px #000000;
  box-shadow: 0 0 5px #000000;
  border-radius: 4px;}
.header__button {
  width: 100%;
  height: 100%;
  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;
  -webkit-transition-duration: 1s;
  -o-transition-duration: 1s;
  transition-duration: 1s;}
.header__button--active .header__line:nth-child(2) { opacity: 0;}
.header__button--active .header__line:first-child {
  -webkit-transform: translateY(9px) rotate(45deg);
  -ms-transform: translateY(9px) rotate(45deg);
  transform: translateY(9px) rotate(45deg);}
.header__button--active .header__line:last-child {
  -webkit-transform: translateY(-9px) rotate(-45deg);
  -ms-transform: translateY(-9px) rotate(-45deg);
  transform: translateY(-9px) rotate(-45deg);}
.header__button--active:hover .header__line:first-child,
.header__button--active:focus .header__line:first-child {
  -webkit-transform: scale(1.2) translateY(10px) rotate(45deg);
  -ms-transform: scale(1.2) translateY(10px) rotate(45deg);
  transform: scale(1.2) translateY(10px) rotate(45deg);}
.header__button--active:hover .header__line:last-child,
.header__button--active:focus .header__line:last-child {
  -webkit-transform: scale(1.2) translateY(-10px) rotate(-45deg);
  -ms-transform: scale(1.2) translateY(-10px) rotate(-45deg);
  transform: scale(1.2) translateY(-10px) rotate(-45deg);}
.header__button:hover .header__line:not(:last-child),
.header__button:focus .header__line:not(:last-child) { margin-bottom: 9px;}
.header__line {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #000000;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;}
.header__line:not(:last-child) { margin-bottom: 6px;}

@media (max-width: 1400px) { .header { padding-top: 20px;}}
@media (max-width: 1200px) {
  .header__logo { width: 175px;}
  .header__link { margin-left: 10px;}}
@media (max-width: 900px) {
  .header__navigation { display: none;}
  .header__navigation--active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    left: -15px;
    bottom: 0;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    width: 100vw;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px 10px;
    background-color: #ffffff;
    z-index: 50;}
  .header__link { margin-left: 0;}
  .header__burger { display: block;}}
@media (max-width: 768px) {
  .header__navigation {
    height: 95vh;
    -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: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    overflow-y: scroll;}
  .header__link {
    display: inline-block;
    font-size: 36px;
    margin-bottom: 20px;}}
/*--------------------------------------------------*/
/*Стили для первого экрана*/
.top {
  background: url("../img/top-bg.jpg") right top -30px no-repeat;
  padding: 140px 0 260px;
  margin-top: -30px;}
.top__content {
  max-width: 675px;
  margin-left: auto;
  color: #ffffff;
  line-height: 1.1;}
.top__address {
  text-align: right;
  font-size: 18px;
  margin-bottom: 15px;}
.top__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 115px;}
.top__element {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 50px;}
.top__icon { margin-right: 13px;}
.top__icon img {
  display: block;
  width: auto;
  height: auto;
  max-height: 25px;}
.top__phone {
  font-weight: 700;
  font-size: 24px;
  color: #ffffff;}
.top__phone:hover, .top__phone:focus { text-decoration: underline;}
.top__mail {
  font-size: 21px;
  color: #ffffff; }
.top__mail:hover, .top__mail:focus { text-decoration: underline;}
.top__title {
  font-weight: 700;
  font-size: 71px;
  letter-spacing: -1.4px;
  margin-bottom: 7px;}
.top__subtitle {
  display: block;
  font-weight: 700;
  font-size: 45px;
  letter-spacing: -1.4px;
  margin-bottom: 65px;}
.top__text {
  line-height: 1.5;
  margin-bottom: 22px;}
.top__text span { font-weight: 700;}

@media (max-width: 1650px) {
  .top {
    background-position: left top -30px;
    background-size: cover;}}
@media (max-width: 1400px) {
  .top {
    background-position: center bottom;
    padding: 100px 0 150px;}}
@media (max-width: 1200px) {
  .top { padding-bottom: 75px;}
  .top__content { padding-left: 40px;}
  .top__title { font-size: 60px;}
  .top__subtitle { font-size: 36px;}}
@media (max-width: 992px) {
  .top {
    margin-top: -10px;
    padding-top: 100px;}
  .top__content {
    width: 65%;
    padding-left: 0;}
  .top__address { font-size: 14px;}
  .top__block { margin-bottom: 50px;}
  .top__element { margin-left: 30px;}
  .top__icon { margin-right: 10px;}
  .top__icon img { max-height: 18px;}
  .top__phone { font-size: 18px;}
  .top__mail { font-size: 18px;}
  .top__title { font-size: 44px;}
  .top__subtitle { font-size: 24px;}}
@media (max-width: 768px) {
  .top { 
    background-position: right center;
    background-size: 4000px 100%;}
  .top__content {
    width: 75%;
    margin: 0 auto;}}
@media (max-width: 576px) {
  .top {
    margin-bottom: -50px;
    padding-bottom: 100px;}
  .top__content {
    width: 100%;
    padding-right: 10px;}}
@media (max-width: 480px) {
  .top__block {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 30px;}
  .top__element {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    max-width: 100%;
    margin-bottom: 15px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;}}
/*--------------------------------------------------*/
/*Стили для раздела с услугами*/
.services { padding: 130px 0 55px;}
.services__title { margin-bottom: 40px;}
.services__text {
  font-size: 19px;
  line-height: 1.7;
  color: #9b9da7;}
.services__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;}
.services__column {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 33.333%;
  flex: 0 1 33.333%;
  max-width: 33.333%;
  padding: 0 10px;
  margin: 125px 0 45px;}
.services__item {
  padding: 0 25px 45px;
  -webkit-box-shadow: 0 10px 20px -20px rgba(0, 0, 0, 0.3);
  box-shadow: 0 10px 20px -20px rgba(0, 0, 0, 0.3);
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;}
.services__item:hover {
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);}
.services__icon {
  width: 100%;
  height: 115px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-bottom: 35px;}
.services__icon img {
  display: block;
  max-height: 100%;
  height: auto;
  width: auto;}
.services__name {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  margin-top: auto;
  font-weight: 700;
  font-size: 25px;
  line-height: 1;
  color: #28203f;
  text-align: center;
  margin-bottom: 25px;}
.services__description {
  font-size: 17px;
  line-height: 1.9;
  color: #96929c;
  text-align: center;}

@media (max-width: 1100px) {
  .services__column { margin: 30px 0 0;}}
@media (max-width: 992px) {
  .services { padding: 50px 0;}}
@media (max-width: 900px) {
  .services__title { margin-bottom: 20px;}
  .services__column {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
    max-width: 50%;}}
@media (max-width: 768px) {
  .services__item { padding: 15px 10px 15px;}
  .services__icon { height: 80px;}}
@media (max-width: 576px) {
  .services__column {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    max-width: 100%;
    padding: 0;}}
/*--------------------------------------------------*/
/*Стили для раздела "Обо мне"*/
.about {
  height: 884px;
  background: url("../img/about-bg.jpg") left center no-repeat;
  background-size: auto 100%;
  color: #ffffff;
  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;}
.about__content {
  max-width: 1550px;
  min-width: 320px;
  padding: 0 10px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;}
.about__info {
  max-width: 500px;
  margin: 0 34px 0 auto;}
.about__title {
  display: inline-block;
  color: #ffffff;
  margin-bottom: 40px;}
.about__subtitle {
  display: inline-block;
  font-weight: 400;
  font-size: 80px;
  line-height: 1.1;
  color: #ffffff;}
.about__text { margin-bottom: 22px;}
.about__video {
  width: 816px;
  height: 495px;
  background-color: #777777;
  position: relative;
  z-index: 100;}
.about__video div, .about__video iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;}
.youtube {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: inline-block;
  overflow: hidden;
  -webkit-transition: all 200ms ease-out;
  -o-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  cursor: pointer;}
.youtube .play {
  opacity: 0.7;
  background: url("../img/youtube-button-noactive.png") center no-repeat;
  -webkit-background-size: 100%;
  background-size: 100%;
  position: absolute;
  height: 64px;
  width: 64px;
  -webkit-transition: all 200ms ease-out;
  -o-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;}
.youtube:hover .play { background: url("../img/youtube-button-active.png") no-repeat;}

@media (max-width: 1400px) {
  .about { height: 600px;}}
@media (max-width: 1100px) {
  .about {
    height: auto;
    padding-top: 70px;
    background-size: 100% 100%;}
  .about__content {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;}
  .about__info {
    width: 90%;
    max-width: 90%;
    margin: 0;}
  .about__video {
    margin: 0 auto;
    width: 600px;
    height: 350px;}}
@media (max-width: 900px) {
  .about__title { margin-bottom: 20px;}
  .about__subtitle { font-size: 50px;}}
@media (max-width: 768px) {
  .about {
    background-position: right center;
    background-size: 1000px 100%;}
  .about__info { width: 80%;}}

@media (max-width: 576px) {
  .about {
    background-position: center;
    background-size: 2000px 100%;}
  .about__info { width: 100%;}
  .about__video {
    width: 100%;
    height: 300px;}
  .about__subtitle { font-size: 36px;}
  .about__text { font-size: 16px;}}
@media (max-width: 480px) {
  .about__video { height: 240px;}}
/*--------------------------------------------------*/
/*Стили для раздела преимуществ*/
.advantages { padding: 165px 0 175px;}
.advantages__title {
  font-size: 60px;
  margin-bottom: 115px;}
.advantages__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;}
.advantages__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 370px;
  flex: 0 1 370px;
  width: 370px;
  -webkit-transform: translateY(-200%);
  -ms-transform: translateY(-200%);
  transform: translateY(-200%);
  opacity: 0;
  -webkit-transition-duration: 2s;
  -o-transition-duration: 2s;
  transition-duration: 2s;}
.advantages__item--number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;}
.advantages__item--number .advantages__subtitle {
  font-size: 100px;
  margin-right: 20px;}
.advantages__item--number .advantages__info span {
  font-weight: 700;
  display: block;}
.advantages__subtitle {
  font-weight: 700;
  font-size: 50px;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 5px;
  background: -webkit-gradient(linear, left bottom, right top, from(#094879), color-stop(40%, #094879), color-stop(60%, #0681c0), to(#0681c0));
  background: -webkit-linear-gradient(left bottom, #094879 0%, #094879 40%, #0681c0 60%, #0681c0 100%);
  background: -o-linear-gradient(left bottom, #094879 0%, #094879 40%, #0681c0 60%, #0681c0 100%);
  background: linear-gradient(to right top, #094879 0%, #094879 40%, #0681c0 60%, #0681c0 100%);}
.advantages__name {
  background: white;
  mix-blend-mode: screen;}
.advantages__info {
  font-size: 24px;
  line-height: 1.25;
  color: #000000;}

@media (max-width: 1200px) {
  .advantages__block {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;}
  .advantages__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
    max-width: 50%;
    text-align: center;
    margin-bottom: 30px;}
  .advantages__item--number {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: left;}}
@media (max-width: 992px) {
  .advantages { padding: 50px 0;}
  .advantages__title { margin-bottom: 40px;}}
@media (max-width: 768px) {
  .advantages__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    max-width: 100%;}}
@media (max-width: 576px) {
  .advantages__title { font-size: 36px;}
  .advantages__name { font-size: 36px;}
  .advantages__name--number { font-size: 50px;}}
/*--------------------------------------------------*/
/*Стили для раздела с цифрами*/
.numbers {
  height: 675px;
  padding-top: 100px;
  background: url("../img/numbers-bg.jpg") center no-repeat;
  background-size: cover;
  color: #ffffff;}
.numbers__title {
  font-size: 60px;
  color: #ffffff;}
.numbers__subtitle {
  display: block;
  font-size: 50px;
  line-height: 1.2;
  margin: 0 0 104px 115px;}
.numbers__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;}
.numbers__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 380px;
  flex: 0 1 380px;
  width: 380px;}
.numbers__icon {
  height: 75px;
  margin-bottom: 10px;}
.numbers__icon img {
  display: block;
  width: auto;
  height: auto;
  max-height: 100%;
  margin: 0 auto;}
.numbers__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;}
.numbers__counter {
  width: 100px;
  font-weight: 900;
  font-size: 56px;
  line-height: 1.2;
  margin-right: 35px;}
.numbers__description {
  max-width: 180px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;}

@media (max-width: 1100px) {
  .numbers {
    padding: 50px 0 20px;
    height: auto;}
  .numbers__block {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;}
  .numbers__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 40%;
    flex: 0 1 40%;
    max-width: 40%;
    margin-bottom: 30px;}}
@media (max-width: 900px) {
  .numbers__title { font-size: 46px;}
  .numbers__subtitle {
    font-size: 36px;
    margin-bottom: 40px;}
  .numbers__item:first-child { margin-right: 120px;}}
@media (max-width: 768px) {
  .numbers__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 70%;
    flex: 0 1 70%;
    max-width: 70%;}
  .numbers__item:first-child { margin-right: 0;}
  .numbers__description { max-width: 100%;}}
@media (max-width: 576px) {
  .numbers__title { font-size: 32px;}
  .numbers__subtitle {
    font-size: 24px;
    margin-left: 50px;}
  .numbers__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    max-width: 100%;}
  .numbers__counter { margin-right: 15px;}}
/*--------------------------------------------------*/
/*Стили для радела с контактами*/
.contacts {
  padding: 65px 0 42px;
  background-color: #272727;
  color: #ffffff;}
.contacts__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;}
.contacts__info {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 33.333%;
  flex: 0 1 33.333%;
  max-width: 33.333%;
  padding-right: 70px;}
.contacts__subtitle {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.15;
  color: #1685d9;
  margin-bottom: 30px;}
.contacts__text {
  font-size: 14px;
  line-height: 1.43;
  letter-spacing: 0.14px;
  margin-bottom: 40px;}
.contacts__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 17px;}
.contacts__icon {
  display: block;
  margin-right: 13px;}
.contacts__address {
  font-size: 14px;
  line-height: 1.3;}
.contacts__phone, .contacts__mail {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.75;
  color: #ffffff;
  text-decoration: none;}
.contacts__phone:hover, .contacts__phone:focus, .contacts__mail:hover, .contacts__mail:focus {
      text-decoration: underline;}
.contacts__location {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 33.333%;
  flex: 0 1 33.333%;
  max-width: 33.333%;}
.contacts__map {
  width: 80%;
  height: 310px;
  background-color: #aaaaaa;}
.contacts__subscribe {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 33.333%;
  flex: 0 1 33.333%;
  max-width: 33.333%;}
.form {
  display: block;
  width: 100%; }
.form label { display: none;}
.form__input {
  width: 100%;
  margin-bottom: 13px;}
.form__input input {
  padding: 12px 30px;
  width: 100%;
  border-radius: 20px;
  color: #000000;
  font-size: 18px;
  background-color: #ffffff;}
.form__input input::-webkit-input-placeholder { color: #3d3d3d; font-size: 13px;}
.form__input input::-moz-placeholder { color: #3d3d3d; font-size: 13px;}
.form__input input:-moz-placeholder { color: #3d3d3d; font-size: 13px;}
.form__input input:-ms-input-placeholder { color: #3d3d3d; font-size: 13px;}
.form__text {
  width: 100%;
  margin: 20px 0 27px;}
.form__text textarea {
  padding: 10px 25px;
  width: 100%;
  height: 100px;
  border-radius: 20px;
  color: #000000;
  font-size: 18px;
  resize: none;
  overflow-y: auto;
  background-color: #ffffff;}
.form__text textarea::-webkit-input-placeholder { color: #3d3d3d; font-size: 13px;}
.form__text textarea::-moz-placeholder { color: #3d3d3d; font-size: 13px;}
.form__text textarea:-moz-placeholder { color: #3d3d3d; font-size: 13px;}
.form__text textarea:-ms-input-placeholder { color: #3d3d3d; font-size: 13px;}
.form__button {
  cursor: pointer;
  display: block;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.4;
  text-transform: uppercase;
  color: #ffffff;
  padding: 15px 45px;
  background: -webkit-gradient(linear, left bottom, right top, from(#094879), color-stop(20%, #094879), color-stop(50%, #0681c0), to(#0681c0));
  background: -webkit-linear-gradient(left bottom, #094879, #094879 20%, #0681c0 50%, #0681c0 100%);
  background: -o-linear-gradient(left bottom, #094879, #094879 20%, #0681c0 50%, #0681c0 100%);
  background: linear-gradient(to right top, #094879, #094879 20%, #0681c0 50%, #0681c0 100%);
  border-radius: 20px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;}
.form__button:hover, .form__button:focus {
  -webkit-box-shadow: 0 0 15px #0681c0;
  box-shadow: 0 0 15px #0681c0;}
    .form__button:active {
-webkit-box-shadow: inset 0px 0 15px black;
  box-shadow: inset 0px 0 15px black;}
.form__button.disabled {
  pointer-events: none;
  cursor: default;
  background: #aaaaaa;
  color: #666666;}
.form__error {
  color: red;
  font-size: 14px;}

@media (max-width: 992px) {
  .contacts__content {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;}
  .contacts__info, .contacts__location, .contacts__subscribe {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
    max-width: 50%;
    margin-bottom: 30px;}
  .contacts__info { padding-right: 30px;}
  .contacts__map { width: 100%;}}
@media (max-width: 576px) {
  .contacts { padding: 30px 0 0; }
  .contacts__subtitle { margin-bottom: 15px;}
  .contacts__text { margin-bottom: 10px;}
  .contacts__block { margin-bottom: 5px;}
  .contacts__info, .contacts__location, .contacts__subscribe {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    max-width: 100%;}
  .contacts__info { padding-right: 0;}}
/*--------------------------------------------------*/
/*Стили для футера*/
.footer {
  background-color: #272727;
  text-align: center;}
.footer .container {
  padding: 30px 0 15px;
  border-top: 1px solid #ffffff;}
.footer__copyright {
  font-size: 13px;
  line-height: 1.4;
  color: #8b8b8b;
  margin-bottom: 3px;}
.footer__rights {
  font-size: 13px;
  line-height: 1.4;
  color: #8b8b8b;
  text-decoration: none;}
.footer__rights:hover { text-decoration: underline;}
/*--------------------------------------------------*/
/*Стили для уникальных блоков внутренней страницы*/
/*Стили для первого экрана внутренней страницы*/
.about-top { padding-bottom: 30px;}
.about-top__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;}
.about-top__image {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 42.8%;
  flex: 0 1 42.8%;
  max-width: 42.8%;
  margin-right: 50px;
  background: url("../img/about-top-bg.jpg") right top no-repeat;
  background-size: cover;}
.about-top__info {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 670px;
  flex: 0 0 670px;
  width: 670px;
  position: relative;
  padding-top: 45px;
  color: #000000;
  line-height: 1.1;}
.about-top__info::before {
  content: '';
  width: 870px;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#094879), to(#0681c0));
  background: -webkit-linear-gradient(left, #094879, #0681c0);
  background: -o-linear-gradient(left, #094879, #0681c0);
  background: linear-gradient(to right, #094879, #0681c0);
  position: absolute;
  right: 0;
  top: 15px;}
.about-top__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 80px;}
.about-top__address {
  font-weight: 700;
  font-size: 14px;
  color: #585858; }
.about-top__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;}
.about-top__icon { height: 20px;}
.about-top__icon img {
  display: block;
  width: auto;
  height: auto;
  max-height: 100%;
  margin-right: 13px;}
.about-top__phone {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.1;
  color: #000000;}
.about-top__phone:hover, .about-top__phone:focus { text-decoration: underline;}
.about-top__mail {
  font-size: 14px;
  line-height: 1.1;
  color: #000000;}
.about-top__mail:hover, .about-top__mail:focus { text-decoration: underline;}
.about-top__title {
  font-weight: 700;
  font-size: 48px;
  letter-spacing: 0.96px;}
.about-top__subtitle {
  font-size: 24px;
  margin: 35px 0 40px;}
.about-top__text {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 22px;}
.about-top__text span { font-weight: 700;}

@media (max-width: 1300px) {
  .about-top__content {
    width: 100%;
    padding: 0 15px 0 0;}
  .about-top__image {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    max-width: 100%;
    margin-right: 20px;}
  .about-top__info {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 57.2%;
    flex: 0 0 57.2%;
    max-width: 57.2%;}}
@media (max-width: 1100px) {
  .about-top__contacts {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;}
  .about-top__address {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    max-width: 100%;
    margin-bottom: 10px;}
  .about-top__block { margin-right: 50px;}}
@media (max-width: 992px) {
  .about-top__info { padding-top: 25px;}
  .about-top__info::before {
    width: 130%;
    top: 5px;}
  .about-top__contacts { margin-bottom: 20px;}
  .about-top__title { font-size: 36px;}
  .about-top__subtitle {
    font-size: 20px;
    margin: 15px 0 20px;}
  .about-top__text { line-height: 1.5;}}
@media (max-width: 768px) {
  .about-top__content {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;}
  .about-top__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 75%;
    flex: 0 1 75%;
    max-width: 75%;
    height: 400px;
    margin-right: 0;
    background-size: auto 100%;}
  .about-top__info {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    max-width: 100%;
    padding: 10px 0 0 15px;}
  .about-top__info::before {
    width: 80%;
    top: -390px;}
  .about-top__text { font-size: 17px;}}
@media (max-width: 576px) {
  .about-top__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    max-width: 100%;
    height: 400px;
    margin-right: 0;
    background-size: auto 100%;}
  .about-top__block {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    max-width: 100%;
    margin-bottom: 10px;}}
/*--------------------------------------------------*/
/*Стили для второй секции внутренней страницы*/
.about-section2 { padding: 25px 0;}
.about-section2 .container { padding: 0 95px;}
.about-section2__wrap {
  padding: 50px 40px 30px;
  -webkit-box-shadow: 0 0 30px rgba(235, 228, 246, 0.8);
  box-shadow: 0 0 30px rgba(235, 228, 246, 0.8);}
.about-section2__text {
  font-size: 19px;
  line-height: 1.68;
  color: #9b9da7;
  margin-bottom: 70px;}
.about-section2__list {
  width: 100%;
  padding-left: 140px;}
.about-section2__list li {
  font-size: 17px;
  line-height: 1.4;
  color: #9b9da7;
  margin-bottom: 20px;
  position: relative;}
.about-section2__list li::before {
  content: '';
  width: 9px;
  height: 11px;
  border-radius: 45%;
  background: -webkit-gradient(linear, left bottom, right top, from(#094879), color-stop(40%, #094879), color-stop(60%, #0681c0), to(#0681c0));
  background: -webkit-linear-gradient(left bottom, #094879 0%, #094879 40%, #0681c0 60%, #0681c0 100%);
  background: -o-linear-gradient(left bottom, #094879 0%, #094879 40%, #0681c0 60%, #0681c0 100%);
  background: linear-gradient(to right top, #094879 0%, #094879 40%, #0681c0 60%, #0681c0 100%);
  position: absolute;
  top: 7px;
  left: -23px;}

@media (max-width: 1300px) {
  .about-section2 .container { padding: 0 40px;}}
@media (max-width: 1100px) {
  .about-section2__list { padding-left: 60px;}}
@media (max-width: 992px) {
  .about-section2 { padding-bottom: 0;}
  .about-section2__wrap { padding: 20px;}
  .about-section2__text { margin-bottom: 30px;}}
@media (max-width: 768px) {
  .about-section2__wrap {
    padding: 20px 15px;
    -webkit-box-shadow: 0 0 15px rgba(235, 228, 246, 0.8);
    box-shadow: 0 0 15px rgba(235, 228, 246, 0.8);}
  .about-section2 .container { padding: 0 20px;}
  .about-section2__list { padding-left: 40px;}
  .about-section2__text {
    line-height: 1.4;
    font-size: 17px;}}
/*--------------------------------------------------*/
/*Стили для третьей секции внутренней страницы*/
.about-section3 { padding: 70px 0 20px;}
.about-section3 .container { padding: 0 100px 0 80px;}
.about-section3__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;}
.about-section3__image {
  width: 600px;
  float: right;
  margin: 0 0 20px 30px;}
.about-section3__image img {
  display: block;
  width: 100%;
  height: auto;}
.about-section3__text {
  font-size: 19px;
  line-height: 1.68;
  color: #9b9da7;
  margin-bottom: 20px;}
.clearfix::after {
  content: '';
  display: block;
  clear: both;}

@media (max-width: 1100px) {
  .about-section3 .container { padding: 0 15px;}
  .about-section3__image { width: 50%;}}
@media (max-width: 768px) {
  .about-section3 { padding-top: 20px; }
    .about-section3__image { width: 100%;}}
@media (max-width: 576px) {
  .about-section3__text {
    font-size: 17px;
    line-height: 1.4;}}
/*--------------------------------------------------*/
/*Стили для четвёртой секции внутренней страницы*/
.about-section4 { padding: 45px 0 200px;}
.about-section4__title {
  font-weight: 700;
  font-size: 19px;
  line-height: 1.68;
  color: #000000;
  margin: 0 0 32px 170px;}
.about-section4__list { padding-left: 210px;}
.about-section4__link {
  display: inline-block;
  font-size: 19px;
  line-height: 1.4;
  color: #9b9da7;
  margin-bottom: 32px;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  position: relative;}
.about-section4__link::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: -webkit-gradient(linear, left bottom, right top, from(#094879), color-stop(40%, #094879), color-stop(60%, #0681c0), to(#0681c0));
  background: -webkit-linear-gradient(left bottom, #094879 0%, #094879 40%, #0681c0 60%, #0681c0 100%);
  background: -o-linear-gradient(left bottom, #094879 0%, #094879 40%, #0681c0 60%, #0681c0 100%);
  background: linear-gradient(to right top, #094879 0%, #094879 40%, #0681c0 60%, #0681c0 100%);
  position: absolute;
  top: 6px;
  left: -35px;
  opacity: 0;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;}
.about-section4__link:hover, .about-section4__link:focus {
  color: #067ebd;
  text-decoration: underline;}
.about-section4__link:hover::before, .about-section4__link:focus::before {
  opacity: 1;}

@media (max-width: 992px) {
  .about-section4 { padding: 30px 0;}
  .about-section4__title { margin-left: 20px;}
  .about-section4__list { padding-left: 50px;}
  .about-section4__link { margin-bottom: 15px;}}
