/*
Author: Denis Timoshkov
*/

@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 400;
  src: local("Montserrat Italic"), local("Montserrat-Italic"),
    url("/fonts/montserrat-v14-latin_cyrillic-italic.woff2") format("woff2"),
    url("/fonts/montserrat-v14-latin_cyrillic-italic.woff") format("woff");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: local("Montserrat Regular"), local("Montserrat-Regular"),
    url("/fonts/montserrat-v14-latin_cyrillic-regular.woff2") format("woff2"),
    url("/fonts/montserrat-v14-latin_cyrillic-regular.woff") format("woff");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  src: local("Montserrat Bold"), local("Montserrat-Bold"),
    url("/fonts/montserrat-v14-latin_cyrillic-700.woff2") format("woff2"),
    url("/fonts/montserrat-v14-latin_cyrillic-700.woff") format("woff");
}

@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 700;
  src: local("Montserrat Bold Italic"), local("Montserrat-BoldItalic"),
    url("/fonts/montserrat-v14-latin_cyrillic-700italic.woff2") format("woff2"),
    url("/fonts/montserrat-v14-latin_cyrillic-700italic.woff") format("woff");
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 18px;
  line-height: 1.2;
}

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

:focus {
  outline: none !important;
  -moz-appearance: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

body {
  line-height: 1.2;
  color: #2c2c2c;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  word-break: keep-all;
  word-wrap: normal;
  max-width: 1920px;
  min-width: 320px;
  margin: 0 auto;
}

.body--active {
  overflow: hidden;
}

.body.modal-open {
  padding: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #2c2c2c;
  font-weight: 700;
  text-transform: none;
  padding: 0;
  position: relative;
  text-align: left;
  margin: 0;
  margin-bottom: 20px;
  z-index: 1;
}

h1,
h2,
.content-title {
  display: table;
  text-align: center;
  padding-left: 5px;
  margin-left: auto;
  margin-right: auto;
}

h1.entry-title,
h2.entry-title {
  border-bottom: 0;
}

h1,
h1.entry-title {
  font-size: 2.5rem;
}

h2,
h2.entry-title {
  font-size: 2rem;
}

h1::before,
h2::before,
.content-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: #63a8c7;
  z-index: -1;
}

.content-title--left {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

.content-title--right {
  text-align: right;
  margin-left: auto;
  margin-right: 0;
}

h3,
h4 {
  font-size: 1.5rem;
  text-transform: none;
}

.section--main-title {
  display: none;
}

.sub-title {
  font-size: 1.5rem;
}

p {
  margin: 0 0 20px;
}

a,
a:not([href]):not([tabindex]) {
  color: #35536b;
  cursor: pointer;
  text-decoration: none !important;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}

a:hover,
a:not([href]):not([tabindex]):hover {
  color: #406380;
}

.text-color {
  color: #35536b;
}

blockquote {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

.styled-list {
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
}

.styled-list li {
  padding: 0;
  padding-left: 40px;
  padding-top: 5px;
  min-height: 30px;
  margin: 0;
  margin-bottom: 20px;
  list-style: none;
  position: relative;
  z-index: 1;
}

.styled-list li:last-child {
  margin: 0;
}

.styled-list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background-image: url("../img/icons/styled-list.svg");
  background-repeat: no-repeat;
  background-size: 18px auto;
  background-position: center center;
  background-color: #35536b;
  z-index: -1;
}

#page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
}

.gallery__content {
  position: relative;
  background-color: #fff;
  padding: 10px;
  border-radius: 0;
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
  display: block;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}

.gallery__content::before {
  content: "";
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  background-color: #63a8c7;
  background-image: url("../img/icons/plus.svg");
  background-repeat: no-repeat;
  background-size: 20px auto;
  background-position: center center;
  z-index: 2;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}

.gallery__content:hover::before {
  bottom: 50%;
  right: 50%;
  -webkit-transform: translate(50%, 50%);
  -ms-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
  background-color: #6fbadc;
}

.gallery__content::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  background-color: rgba(0, 0, 0, .5);
  background-image: url("../img/bg/line-bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}

.gallery__content:hover::after {
  opacity: 1;
  visibility: visible;
}

.modal {
  padding: 0 !important;
}

.modal-open .modal {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.modal-backdrop {
  background-color: rgba(0, 0, 0, .5);
}

.modal-backdrop.show {
  opacity: 1;
}

.ekko-lightbox .modal-dialog {
  margin: 20px;
  min-width: 280px;
}

.img-fluid {
  padding: 0;
  margin: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
  width: auto !important;
  height: 100%;
}

.ekko-lightbox .modal-body {
  padding: 0;
}

.ekko-lightbox .modal-content {
  border: 0;
  border-radius: 0;
  background-color: #fff;
  padding: 0;
  background-image: url("../img/bg/count.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
}

.ekko-lightbox-nav-overlay a {
  font-size: 0;
  opacity: 0;
  position: relative;
  z-index: 1;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}

.ekko-lightbox-nav-overlay a:hover {
  opacity: 1;
}

.ekko-lightbox-nav-overlay a::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: #35536b;
  background-repeat: no-repeat;
  background-size: 20px auto;
  background-position: center center;
  z-index: -2;
  overflow: hidden;
}

.ekko-lightbox-nav-overlay a:first-child::before {
  left: 0;
  background-image: url("../img/icons/arrow-prev.svg");
}

.ekko-lightbox-nav-overlay a:last-child::before {
  right: 0;
  background-image: url("../img/icons/arrow-next.svg");
}

.ekko-lightbox-nav-overlay a::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-image: url("../img/bg/scheme.png");
  background-repeat: no-repeat;
  background-size: 240px auto;
  background-position: center center;
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
  z-index: -1;
  opacity: .1;
  overflow: hidden;
}

.ekko-lightbox-nav-overlay a:first-child::after {
  left: 10px;
}

.ekko-lightbox-nav-overlay a:last-child::after {
  right: 10px;
}

.site-footer {
  margin-top: auto;
}

#privacyModal .modal-dialog {
  max-width: 1366px;
  margin: auto;
}

#privacyModal .modal-content {
  padding: 20px;
  margin: 20px;
  margin-top: 70px;
  width: auto;
  min-width: 280px;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
}

#privacyModal .modal-body {
  padding: 0;
}

form {
  margin: 0;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, .5);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}

.modal-item {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  z-index: 31;
  visibility: hidden;
  overflow: hidden;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}

.modal-item--active {
  visibility: visible;
  opacity: 1;
}

.modal-form__wrapper {
  width: 100%;
  max-width: 640px;
  height: auto;
  -webkit-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  transform: translateY(-50px);
  margin: auto;
  z-index: 2;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}

.modal-item--active .modal-form__wrapper {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.success-message {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  z-index: 32;
  visibility: hidden;
  overflow: hidden;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}

.success-message--active {
  visibility: visible;
  opacity: 1;
}

.success-message__wrapper {
  width: 100%;
  max-width: 640px;
  height: auto;
  -webkit-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  transform: translateY(-50px);
  margin: auto;
  z-index: 2;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}

.success-message--active .success-message__wrapper {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.success-message__text {
  position: relative;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: none;
  margin: 20px;
  padding: 40px;
  color: #fff;
  text-align: center;
  background-color: #35536b;
  border: 0;
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
  min-width: 280px;
  z-index: 1;
}

.success-message__text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/bg/scheme.png");
  background-repeat: no-repeat;
  background-size: 480px auto;
  background-position: center center;
  z-index: -1;
  opacity: .1;
}

.success-message__text span {
  display: block;
}

.modal-item--active .overlay,
.success-message--active .overlay {
  opacity: 1;
  visibility: visible;
}

.modal-form__content {
  margin: 20px;
  margin-top: 70px;
  padding: 40px;
  background-color: #fff;
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
  min-width: 280px;
  position: relative;
  border: 0;
  z-index: 1;
}

.modal-form__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/bg/pattern.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;
  z-index: -1;
  opacity: .05;
}

.modal-form__close,
.btn--modal-close {
  min-width: 50px;
  max-width: 50px;
  height: 50px;
  background-color: #35536b !important;
  position: absolute !important;
  top: -50px;
  right: 0;
  z-index: 2 !important;
  border-radius: 0 !important;
  border: 0 !important;
  padding: 0 !important;
  font-size: 0 !important;
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}

.modal-form__close:hover,
.btn--modal-close:hover {
  background-color: #406380 !important;
}

.modal-form__close::before,
.btn--modal-close::before {
  content: "";
  position: absolute;
  top: 0 !important;
  left: 0 !important;
  width: 100%;
  height: 100%;
  border-radius: 0 !important;
  background-image: url("../img/icons/close.svg") !important;
  background-repeat: no-repeat;
  background-size: 18px auto !important;
  background-position: center center !important;
  z-index: -1;
  opacity: 1 !important;
}

.modal-form__close::after,
.btn--modal-close::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/bg/scheme.png");
  background-repeat: no-repeat;
  background-size: 240px auto;
  background-position: center center;
  z-index: -2;
  opacity: .1;
  overflow: hidden;
}

label {
  margin: 0;
  display: block;
}

input,
textarea {
  min-width: 1px;
  line-height: 1.2;
}

textarea {
  width: 100% !important;
  min-height: 100px;
  max-height: 100px;
}

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

.appointment-form__label {
  margin-bottom: 5px;
  font-size: .8rem;
}

.appointment-form__required {
  color: #63a8c7;
}

.appointment-form__input {
  width: 100%;
  background-color: #f5f5f5 !important;
  padding: 15px 20px !important;
  color: #2c2c2c !important;
  margin: 0;
  position: relative;
  z-index: 1;
  border-radius: 0;
  cursor: text;
  border: 1px solid transparent;
}

.appointment-form__input:focus {
  border-color: #35536b;
  background-color: #f0f0f0 !important;
}

.appointment-form__privacy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
}

input[type=checkbox],
input[type=radio] {
  padding: 0;
  margin-right: 20px;
}

.checkbox {
  display: none;
}

.checkbox+label {
  position: relative;
  cursor: pointer;
  min-width: 21px;
  max-width: 21px;
  height: 20px;
  margin-right: 20px;
}

.checkbox+label::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 16px;
  height: 16px;
  border: 1px solid transparent;
  background-color: #f5f5f5;
}

.checkbox+label::after {
  content: "";
  position: absolute;
  top: 0;
  left: 3px;
  width: 18px;
  height: 18px;
}

.checkbox:checked+label::before {
  border-color: #35536b;
  background-color: #f0f0f0;
}

.checkbox:checked+label::after {
  background-image: url("../img/icons/check.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

button {
  cursor: pointer;
}

.btn {
  display: inline-block;
  vertical-align: middle;
  padding: 20px 30px;
  color: #fff;
  text-align: center;
  text-transform: none;
  line-height: 1.2;
  font-size: 1rem;
  white-space: nowrap;
  border: 0;
  border-radius: 40px;
  background-color: #63a8c7;
  font-weight: 700;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}

.btn:hover {
  color: #fff;
  background-color: #6fbadc;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  background-image: url("../img/bg/scheme.png");
  background-repeat: no-repeat;
  background-size: 240px auto;
  background-position: center center;
  z-index: -1;
  opacity: .1;
  overflow: hidden;
}

input:-ms-input-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #fff !important;
}

input::-ms-input-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #fff !important;
}

input:-webkit-input-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #fff !important;
}

input::-moz-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  -moz-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #fff !important;
}

input::-webkit-input-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #fff !important;
}

input:-ms-input-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #fff !important;
}

input::-ms-input-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #fff !important;
}

input::placeholder {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #fff !important;
  display: none;
}

/* focus */

input:focus:-ms-input-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #fff !important;
}

input:focus::-ms-input-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #fff !important;
}

input:focus:-webkit-input-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #fff !important;
}

input:focus::-moz-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  -moz-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #fff !important;
}

input:focus::-webkit-input-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #fff !important;
}

input:focus:-ms-input-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #fff !important;
}

input:focus::-ms-input-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #fff !important;
}

input:focus::placeholder {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #fff !important;
}

textarea:-ms-textarea-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #fff !important;
}

textarea::-ms-textarea-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #fff !important;
}

textarea:-webkit-textarea-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #fff !important;
}

textarea::-moz-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  -moz-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #fff !important;
}

textarea::-webkit-input-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #fff !important;
}

textarea:-ms-input-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #fff !important;
}

textarea::-ms-input-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #fff !important;
}

textarea::placeholder {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #fff !important;
}

/* focus */

textarea:focus:-ms-textarea-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #fff !important;
}

textarea:focus::-ms-textarea-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #fff !important;
}

textarea:focus:-webkit-textarea-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #fff !important;
}

textarea:focus::-moz-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  -moz-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #fff !important;
}

textarea:focus::-webkit-input-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #fff !important;
}

textarea:focus:-ms-input-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #fff !important;
}

textarea:focus::-ms-input-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #fff !important;
}

textarea:focus::placeholder {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #fff !important;
}

.site-header {
  width: 100%;
  max-width: 1920px;
}

.container {
  margin: 0 auto;
  width: 100%;
  max-width: 1366px;
  padding: 0 20px;
  position: relative;
}

.header-top {
  background-color: #f5f5f5;
  z-index: 3;
  position: relative;
  padding: 10px 0;
}

.header-title {
  font-size: 1rem;
  text-align: center;
  margin: 0;
}

.header-info {
  background-color: #fff;
  z-index: 4;
  position: relative;
  padding: 20px 0;
}

.header-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
  width: 40%;
  height: 100%;
  background-image: url("../img/bg/pattern.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
  z-index: -1;
  opacity: .05;
}

.header-info .container {
  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;
}

.main-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 20px;
  position: relative;
  z-index: 1;
}

.main-logo__img {
  margin-right: 20px;
}

.main-logo__img img {
  width: auto;
  height: 80px;
}

.main-logo__name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #35536b;
}

.main-logo__slogan {
  color: #2c2c2c;
}

.main-nav {
  background-color: #35536b;
  position: relative;
  z-index: 5;
}

.main-nav__navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0;
  margin: 0;
}

.main-nav__item {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav__link {
  text-transform: none;
  color: #fff;
  position: relative;
  padding: 15px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  min-height: 75px;
  white-space: normal;
  position: relative;
  z-index: 1;
  font-weight: 700;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}

.main-nav__link:hover,
.main-nav__link:focus {
  color: #fff;
  background-color: #406380;
}

.main-nav--fixed {
  position: fixed;
  top: -300px;
  -webkit-transform: translateY(300px);
  -ms-transform: translateY(300px);
  transform: translateY(300px);
  width: 100%;
  min-width: 320px;
  z-index: 30;
  max-width: 1920px;
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
  -webkit-transition: all .5s linear;
  -o-transition: all .5s linear;
  transition: all .5s linear;
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 40;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav.active .overlay {
  opacity: 1;
  visibility: visible;
}

.mobile-nav__content {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  z-index: 5;
  width: 290px;
  height: 100%;
  background-color: #fff;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}

.active .mobile-nav__content {
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.mobile-nav__container {
  position: relative;
  z-index: 1;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}

.mobile-nav__container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/bg/pattern.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;
  z-index: -1;
  opacity: .05;
}

.mobile-nav__navbar {
  padding: 0;
  margin: 0;
}

.mobile-nav__item {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav__link {
  text-transform: none;
  padding: 15px 20px;
  position: relative;
  z-index: 1;
  display: block;
  color: #2c2c2c;
  font-size: 1.2rem;
  font-weight: 700;
  border-bottom: 1px solid #ececec;
  background-color: transparent;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}

.mobile-nav__item:last-child .mobile-nav__link {
  border: 0;
}

.mobile-nav__link:focus,
.mobile-nav__link:hover {
  color: #35536b;
  background-color: #f5f5f5;
}

.mobile-nav__item:last-child .mobile-nav__link::after {
  display: none;
}

.menu-toggler {
  min-width: 50px;
  max-width: 50px;
  height: 50px;
  padding: 0;
  border: 0;
  text-align: center;
  z-index: 2;
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}

.menu-toggler::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/bg/scheme.png");
  background-repeat: no-repeat;
  background-size: 240px auto;
  background-position: center center;
  z-index: -2;
  opacity: .1;
  overflow: hidden;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}

.menu-toggler::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
}

.menu-toggler--main {
  position: relative;
  background-color: #63a8c7;
  display: none;
}

.menu-toggler--main:hover {
  background-color: #6fbadc;
}

.menu-toggler--main::before {
  background-image: url("../img/icons/menu.svg");
  background-size: 24px auto;
}

.menu-toggler--close {
  position: absolute;
  top: 20px;
  right: -50px;
  background-color: #63a8c7;
}

.menu-toggler--close:hover {
  background-color: #6fbadc;
}

.menu-toggler--close::before {
  background-image: url("../img/icons/close.svg");
  background-size: 18px auto;
}

.section {
  padding: 60px 0 40px;
  overflow: hidden;
}

.up-button {
  min-width: 50px;
  max-width: 50px;
  height: 50px;
  position: relative;
  z-index: 1;
  cursor: pointer;
  border-radius: 0;
  background-color: #35536b;
  display: block;
  opacity: 1 !important;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}

.up-button:hover {
  background-color: #406380;
}

.up-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/icons/up-button.svg");
  background-repeat: no-repeat;
  background-size: 20px auto;
  background-position: center center;
  z-index: -1;
}

.up-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  background-image: url("../img/bg/scheme.png");
  background-repeat: no-repeat;
  background-size: 240px auto;
  background-position: center center;
  z-index: -2;
  opacity: .1;
  overflow: hidden;
}


.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 20px;
}

table,
.table-content {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e5e5e5;
  margin-bottom: 20px;
}

.table-content {
  border-color: #363748;
}

.table-responsive table {
  margin: 0;
}

.table-content tr {
  background-color: transparent;
  border-bottom: 1px solid #ececec;
}

.table-content tr:first-child {
  background-color: #35536b;
  border: 0;
}

.table-content tr:last-child {
  border: 0;
}

.table-content td {
  padding: 15px 20px;
  text-align: center;
  color: #fff;
}

.table-content td:first-child {
  text-align: left;
}

.table-content tr:first-child td {
  border: 0;
  font-weight: 700;
  color: #fff;
}

.header-contacts {
  position: relative;
  z-index: 1;
}

.header-contacts__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.contacts-link {
  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;
  color: #2c2c2c;
  min-height: 40px;
  padding-left: 60px;
  white-space: nowrap;
  text-align: left;
  position: relative;
  z-index: 1;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}

.contacts-link:hover {
  color: #2c2c2c;
}

.contacts-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  z-index: -1;
}

.contacts-link--adress {
  white-space: normal;
}

.contacts-link--adress::before {
  background-image: url("../img/icons/adress.svg");
}

.contacts-link--phone::before {
  background-image: url("../img/icons/phone.svg");
}

.contacts-link--email::before {
  background-image: url("../img/icons/email.svg");
}

.contacts-link--time::before {
  background-image: url("../img/icons/time.svg");
}

.header-contacts .contacts-link {
  margin-right: 20px;
}

.contacts-link__name,
.contacts-link__number,
.contacts-link__text {
  color: #fff !important;
}

.header-contacts .contacts-link,
.header-contacts .contacts-link__name,
.header-contacts .contacts-link__number {
  color: #2c2c2c !important;
}

.contacts-link__name {
  font-size: .8rem;
}

.contacts-link__number {
  font-weight: 700;
  font-size: 1.2rem;
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

/* main */

.main-slide__item {
  height: auto;
}

.main-slide__bg {
  padding: 120px 0 210px;
  height: 100%;
  position: relative;
  z-index: 1;
}

.main-slide__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
  background-image: url("../img/bg/line-bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}

.main-slide__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -2;
}

.main-slide__bg--one::after {
  background-image: url("../img/1.jpg");
}

.main-slide__bg--two::after {
  background-image: url("../img/2.jpg");
}

.main-slide__content {
  max-width: 760px;
}

.main-slide__info {
  padding: 50px;
  padding-right: 0;
  position: relative;
  z-index: 1;
}

.main-slide__info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  border: 10px solid rgba(255, 255, 255, .2);
  z-index: -1;
}

.main-slide__title,
.main-slide__sub,
.main-slide__text {
  color: #fff;
}

.main-slide__title {
  font-size: 2.5rem;
}

.main-slide__sub {
  font-size: 2rem;
}

.main-slide__text {
  font-size: 1.5rem;
}

.main-slide__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 120px;
  position: absolute;
  top: -90px;
  right: 20px;
  z-index: 2;
}

.main-slide__arrow {
  padding: 0;
  min-width: 50px;
  max-width: 50px;
  height: 50px;
  background-color: #35536b;
  opacity: 1 !important;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
  position: relative;
  z-index: 1;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}

.main-slide__arrow--prev {
  margin-right: 20px;
}

.main-slide__arrow:hover {
  background-color: #406380;
}

.main-slide__arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-size: 20px auto;
  background-position: center center;
  z-index: -1;
  overflow: hidden;
}

.main-slide__arrow--prev::before {
  background-image: url("../img/icons/arrow-prev.svg");
}

.main-slide__arrow--next::before {
  background-image: url("../img/icons/arrow-next.svg");
}

.main-slide__arrow::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/bg/scheme.png");
  background-repeat: no-repeat;
  background-size: 240px auto;
  background-position: center center;
  z-index: -2;
  opacity: .1;
  overflow: hidden;
}

.section--count {
  background-color: #f5f5f5;
}

.count {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.count__item {
  list-style: none;
  width: 25%;
  padding: 0 10px;
  margin-bottom: 20px;
}

.count__content {
  height: 100%;
}

.count__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.count__icon {
  min-width: 60px;
  max-width: 60px;
  height: 60px;
  position: relative;
  z-index: 1;
}

.count__icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  z-index: -1;
}

.count__icon--one::before {
  background-image: url("../img/count/1.svg");
}

.count__icon--two::before {
  background-image: url("../img/count/2.svg");
}

.count__icon--three::before {
  background-image: url("../img/count/3.svg");
}

.count__icon--four::before {
  background-image: url("../img/count/4.svg");
}

.count__number {
  font-size: 2.5rem;
  padding-left: 20px;
  color: #35536b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.count__plus {
  font-size: 1.5rem;
}

.count__text {
  margin: 0;
}

.services {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.services__item {
  list-style: none;
  width: 33%;
  padding: 0 10px;
  padding-top: 20px;
  margin-bottom: 20px;
}

.services__content {
  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%;
  padding: 20px;
  background-color: #fff;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
}

.services__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/bg/pattern.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;
  z-index: -1;
  opacity: .05;
}

.services__content::after {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 50%;
  height: 20px;
  background-color: #35536b;
  z-index: -2;
}

.services__title {
  margin: 0;
  text-align: center;
  font-size: 1.2rem;
}

.services__link {
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 20px;
}

.services__link::before {
  bottom: 0;
  right: 0;
}

.services__link::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.services__content:hover .services__link::before {
  bottom: 50%;
  right: 50%;
  -webkit-transform: translate(50%, 50%);
  -ms-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
  background-color: #6fbadc;
}

.services__content:hover .services__link::after {
  opacity: 1;
  visibility: visible;
}

.section--form-page {
  position: relative;
  z-index: 1;
}

.section--form-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
  background-image: url("../img/bg/line-bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}

.section--form-page::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -2;
}

.section--form-page__one::after {
  background-image: url("../img/form/1.jpg");
}

.section--form-page__two::after {
  background-image: url("../img/form/2.jpg");
}

.section--form-page__three::after {
  background-image: url("../img/form/3.jpg");
}

.form-page {
  padding: 50px 0;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.form-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 50%;
  height: 100%;
  border: 10px solid rgba(255, 255, 255, .2);
  z-index: -1;
}

.form-page__title,
.form-page__text {
  color: #fff;
}

.form-page__text {
  text-align: center;
  font-size: 1.2rem;
}

.form-page__btn {
  display: block;
  margin: 0 auto;
}

.section--features {
  background-color: #f5f5f5;
}

.features {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.features__item {
  list-style: none;
  width: 33%;
  padding: 0 10px;
  margin-bottom: 20px;
}

.features__content {
  height: 100%;
}

.features__title {
  font-size: 1.2rem;
}

.features__text {
  margin: 0;
}

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

.features__icon {
  min-width: 60px;
  max-width: 60px;
  height: 60px;
  position: relative;
  z-index: 2;
}

.features__icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  z-index: -1;
}

.features__icon--one::before {
  background-image: url("../img/features/1.svg");
}

.features__icon--two::before {
  background-image: url("../img/features/2.svg");
}

.features__icon--three::before {
  background-image: url("../img/features/3.svg");
}

.features__icon--four::before {
  background-image: url("../img/features/4.svg");
}

.features__icon--five::before {
  background-image: url("../img/features/5.svg");
}

.features__icon--six::before {
  background-image: url("../img/features/6.svg");
}

.features__count {
  font-size: 4rem;
  color: #e5e5e5;
  margin-left: -7%;
}

.services--object .services__content::before {
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
}

.section--stages {
  background-color: #f5f5f5;
}

.stages {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.stages__item {
  list-style: none;
  width: 33%;
  padding: 0 10px;
  margin-bottom: 20px;
}

.stages__content {
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.stages__content::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  height: 75%;
  border: 1px solid #e5e5e5;
}

.stages__icon {
  min-width: 100px;
  max-width: 100px;
  height: 60px;
  position: relative;
  z-index: 2;
  margin: 0 auto;
  background-color: #f5f5f5;
}

.stages__icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 60px auto;
  background-position: center center;
  z-index: -1;
}

.stages__icon--one::before {
  background-image: url("../img/stages/1.svg");
}

.stages__icon--two::before {
  background-image: url("../img/stages/2.svg");
}

.stages__icon--three::before {
  background-image: url("../img/stages/3.svg");
}

.stages__icon--four::before {
  background-image: url("../img/stages/4.svg");
}

.stages__icon--five::before {
  background-image: url("../img/stages/5.svg");
}

.stages__icon--six::before {
  background-image: url("../img/stages/6.svg");
}

.stages__icon--seven::before {
  background-image: url("../img/stages/7.svg");
}

.stages__icon--eight::before {
  background-image: url("../img/stages/8.svg");
}

.stages__icon--nine::before {
  background-image: url("../img/stages/9.svg");
}

.stages__count,
.stages__text {
  text-align: center;
}

.stages__count {
  font-size: 2.5rem;
  color: #35536b;
  padding: 0 20px;
  background-color: #f5f5f5;
  margin: 0;
}

.stages__text {
  margin: auto 0;
  padding: 20px 0;
  position: relative;
  z-index: 1;
}

.section--certificates {
  background-color: #f5f5f5;
}

.certificates__item {
  height: auto;
  padding: 5px 15px 20px;
}

.certificates__pagination {
  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;
  padding: 0;
  padding-top: 20px;
  margin: 0;
}

.certificates__bullet {
  list-style: none;
  padding: 0 10px;
  margin: 0;
  opacity: 1;
  border-radius: 0;
  display: block;
  width: auto;
  height: auto;
  cursor: none;
  background-color: transparent;
}

.certificates__nav {
  min-width: 30px;
  max-width: 30px;
  height: 5px;
  opacity: 1;
  border-radius: 20px;
  background-color: transparent;
  position: relative;
  z-index: 1;
  display: block;
  cursor: pointer;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}

.swiper-pagination-bullet-active .certificates__nav {
  min-width: 60px;
  max-width: 60px;
}

.certificates__nav::before,
.certificates__nav::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 100%;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}

.certificates__nav::before {
  opacity: 0;
  visibility: hidden;
  width: 0;
  background-color: #35536b;
  z-index: -1;
}

.certificates__nav::after {
  width: 100%;
  background-color: #e5e5e5;
  z-index: -2;
}

.certificates__nav:hover::after,
.swiper-pagination-bullet-active .certificates__nav::after {
  opacity: 0;
  visibility: hidden;
  width: 0;
}

.certificates__nav:hover::before,
.swiper-pagination-bullet-active .certificates__nav::before {
  width: 100%;
  opacity: 1;
  visibility: visible;
}

.swiper-pagination-bullet-active .certificates__nav::before {
  background-color: #35536b;
}

.about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.about__img {
  width: 50%;
  padding-bottom: 60px;
}

.about__img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
}

.about__content {
  width: 50%;
  padding-top: 60px;
}

.about__info {
  padding: 40px;
  border-left: 5px solid #35536b;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
}

.about__info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/bg/pattern.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;
  z-index: -1;
  opacity: .05;
}

.about__sub {
  margin: 0;
}

.footer-top {
  background-color: #35536b;
}

.footer-contacts__title {
  color: #fff;
}

[class*="ymaps-2"][class*="-ground-pane"] {
  filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
  -webkit-filter: grayscale(100%);
}

#map {
  width: 100%;
  height: 500px;
}

.footer-contacts__list {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer-contacts__item {
  list-style: none;
  width: 25%;
  padding: 0 10px;
  padding-top: 20px;
  margin-bottom: 20px;
}

.footer-contacts .contacts-link__name,
.footer-contacts .contacts-link__number,
.footer-contacts .contacts-link__text {
  color: #fff !important;
  text-align: center;
}

.footer-contacts .contacts-link {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 20px 10px;
  padding-top: 40px;
  min-height: auto;
  height: 100%;
  border: 1px solid #63a8c7;
}

.footer-contacts .contacts-link::before {
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #35536b;
  width: 70px;
  height: 40px;
  background-size: 40px auto;
}

.footer-bottom {
  background-color: #fff;
  z-index: 1;
  position: relative;
  padding: 20px 0;
}

.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background-image: url("../img/bg/pattern.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
  z-index: -1;
  opacity: .05;
}

.footer-bottom .container {
  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;
}

.footer-bottom__center {
  padding: 0 20px;
}

.footer-bottom__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.orvin {
  margin-right: 20px;
}

@media (max-width: 1199px) {
  html {
    font-size: 16px;
  }

  .styled-list li {
    padding-top: 6px;
  }

  .main-slide__bg {
    padding: 100px 0 190px;
  }

}

@media (max-width: 991px) {

  h1,
  h2,
  .content-title {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .text-left,
  .text-right {
    text-align: center !important;
  }

  .header-info .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .main-logo {
    margin: 0;
    margin-bottom: 20px;
  }

  .header-contacts {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .main-slide__bg {
    padding: 80px 0 170px;
  }

  .main-slide__content {
    margin: 0 auto;
  }

  .main-slide__info {
    padding: 50px 0;
  }

  .main-slide__info::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .main-slide__sub,
  .main-slide__text {
    text-align: center;
  }

  .main-slide__btn {
    display: block;
    margin: 0 auto;
  }

  .main-slide__controls {
    right: 50%;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
  }

  .count__item {
    width: 50%;
  }

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

  .count__text {
    text-align: center;
  }

  .services__item {
    width: 50%;
  }

  .features__item {
    width: 50%;
  }

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

  .features__title,
  .features__text {
    text-align: center;
  }

  .stages__item {
    width: 50%;
  }

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

  .about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .about__img {
    width: 100%;
    padding: 0;
    padding-right: 60px;
  }

  .about__img img {
    height: 300px;
  }

  .about__content {
    width: 100%;
    padding: 0;
    padding-left: 60px;
  }

  .about__info {
    border: 0;
    border-top: 5px solid #35536b;
  }

  .footer-bottom .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer-bottom__left,
  .footer-bottom__center {
    margin-bottom: 20px;
  }

  .footer-bottom__center {
    padding: 0;
  }

  .footer-bottom__right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .orvin {
    margin: 0;
    margin-bottom: 20px;
  }

  .footer-contacts__item {
    width: 50%;
  }

}

@media (max-width: 767px) {
  html {
    font-size: 14px;
  }

  .styled-list li {
    padding-top: 7px;
  }

  .header-info {
    padding-bottom: 0;
  }

  .header-info .container {
    padding: 0;
  }

  .main-logo {
    margin: 0 20px 20px;
  }

  .main-logo img {
    height: 60px;
  }

  .header-contacts {
    background-color: #35536b;
    padding: 20px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .header-contacts--fixed {
    position: fixed;
    top: -300px;
    -webkit-transform: translateY(300px);
    -ms-transform: translateY(300px);
    transform: translateY(300px);
    width: 100%;
    min-width: 320px;
    z-index: 30;
    max-width: 1920px;
    -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
    padding: 20px;
    -webkit-transition: all .5s linear;
    -o-transition: all .5s linear;
    transition: all .5s linear;
  }

  .header-contacts__content {
    width: 100%;
    padding-right: 20px;
  }

  .header-contacts .contacts-link,
  .header-contacts .contacts-link__name,
  .header-contacts .contacts-link__number {
    color: #fff !important;
  }

  .btn--header {
    margin: 0 auto;
  }

  .main-nav {
    display: none;
  }

  .menu-toggler--main {
    display: block;
  }

  .section {
    padding: 40px 0 20px;
  }

  #map {
    height: 400px;
  }

  .main-slide__bg {
    padding: 60px 0 130px;
  }

  .main-slide__info {
    padding: 30px 0;
  }

  .form-page {
    padding: 30px 0;
  }

  .about__img {
    padding-right: 40px;
  }

  .about__img img {
    height: 270px;
  }

  .about__content {
    padding-left: 40px;
  }

  .about__info {
    padding: 20px;
  }

}

@media (max-width: 600px) {
  .header-contacts__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .header-contacts .contacts-link {
    margin-right: 0;
  }

  .btn--header {
    margin: 0;
    margin-left: 60px;
    padding: 10px 15px;
  }

  .services__item {
    width: 100%;
    padding: 0;
    padding-top: 20px;
  }

  .features__item {
    width: 100%;
    padding: 0;
  }

  .stages__item {
    width: 100%;
    padding: 0;
  }

  .footer-contacts__item {
    width: 100%;
    padding: 0;
    padding-top: 20px;
  }

}

@media (max-width: 480px) {
  html {
    font-size: 12px;
  }

  .styled-list li {
    padding-top: 8px;
  }

  .main-logo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .main-logo__img {
    margin: 0;
    margin-bottom: 20px;
  }

  .main-logo__text {
    text-align: center;
  }

  .modal-form__content,
  .success-message__text,
  .footer-form {
    padding: 20px;
  }

  .mobile-nav__content {
    width: 250px;
  }

  .main-slide__bg {
    padding: 40px 0 110px;
  }

  .main-slide__title {
    font-size: 2rem;
  }

  .main-slide__sub {
    font-size: 1.5rem;
  }

  .main-slide__text {
    font-size: 1rem;
  }

  .count__item {
    width: 100%;
    padding: 0;
  }

  .about__img {
    padding-right: 20px;
  }

  .about__img img {
    height: 240px;
  }

  .about__content {
    padding-left: 20px;
  }

}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
  /* IE10+ CSS */
  .ekko-lightbox .modal-dialog {
    -webkit-box-flex: 100% !important;
    -ms-flex: 100% !important;
    flex: 100% !important;
    margin-left: 0;
    margin-right: 0;
    overflow: hidden;
    -ms-overflow-style: none;
  }
}