@font-face {
  src: url("../fonts/GothamPro-Light.woff2") format("woff2"), url("../fonts/GothamPro-Light.woff") format("woff");
  font-family: GothamPro;
  font-weight: 100;
  font-style: normal;
}

@font-face {
  src: url("../fonts/GothamPro.woff2") format("woff2"), url("../fonts/GothamPro.woff") format("woff");
  font-family: GothamPro;
  font-weight: 200;
  font-style: normal;
}

@font-face {
  src: url("../fonts/GothamPro-Medium.woff2") format("woff2"), url("../fonts/GothamPro-Medium.woff") format("woff");
  font-family: GothamPro;
  font-weight: 400;
  font-style: normal;
}

@font-face {
  src: url("../fonts/GothamPro-Bold.woff2") format("woff2"), url("../fonts/GothamPro-Bold.woff") format("woff");
  font-family: GothamPro;
  font-weight: 600;
  font-style: normal;
}

@font-face {
  src: url("../fonts/GothamPro-Black.woff2") format("woff2"), url("../fonts/GothamPro-Black.woff") format("woff");
  font-family: GothamPro;
  font-weight: 800;
  font-style: normal;
}

.page-white {
  background-color: #fefffe;
}
@media (max-width: 958px) {
  .page-white {
    padding-top: 50px;
  }
}

.title-h2 {
  margin: 0 0 30px;
  font-size: 35px;
  font-weight: 900;
  line-height: 1;
  color: #222;
}
@media (max-width: 480px) {
  .title-h2 {
    font-size: 30px;
  }
}

.header {
  margin-bottom: 2px;
  background-color: #fefffe;
}
.header__container {
  min-width: 290px;
  max-width: 1300px;
  margin: auto;
  padding: 0 15px;
}

.header__top-line {
  padding: 10px 0 12px;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  background-color: #000;
}
@media (max-width: 958px) {
  .header__top-line {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 16;
    background-color: #fff;
    -webkit-box-shadow: 0 3px 5px 0 rgba(0, 0, 0, .25);
    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, .25);
  }
}
.header__top-line-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 290px;
  max-width: 1300px;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  padding: 0 15px;

  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
@media (max-width: 640px) {
  .header__top-line-container {
    padding: 0 10px;
  }
}

@media (max-width: 958px) {
  .header-nav {
    position: fixed;
    top: 54px;
    right: -500px;
    width: 240px;
    max-height: calc(100% - 54px);
    overflow-y: auto;
    background-color: #fff;
    -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, .12);
    box-shadow: 0 3px 15px rgba(0, 0, 0, .12);
    -webkit-transition: right .3s;
    transition: right .3s;
  }
}

.header-nav.header-nav--open {
  right: 0;
}

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

  -webkit-box-align: center;
  -ms-flex-align: center;
}
@media (max-width: 958px) {
  .header-nav__list {
    display: block;
  }
}

.header-nav__item {
  margin-right: 30px;
}
@media (max-width: 958px) {
  .header-nav__item {
    margin-right: 0;
  }
}
@media (max-width: 958px) {
  .header-nav__item {
    border-bottom: 1px solid #ccc;
  }
}
.header-nav__item--active .header-nav__link {
  font-weight: 700;
  color: #fff;
}
@media (max-width: 958px) {
  .header-nav__item--active .header-nav__link {
    font-weight: 400;
    color: #020202;
    background-color: #f2f2f2;
  }
}
.header-nav__item--active:hover .header-nav__link {
  cursor: default;
}

.header-nav__link {
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: #bebebe;
  white-space: nowrap;
  -webkit-transition: color .3s, font-weight .3s;
  transition: color .3s, font-weight .3s;
}
@media (max-width: 958px) {
  .header-nav__link {
    padding: 10px;
    color: #020202;
  }
}
.header-nav__link:after {
  content: attr(data-hover-bold);
  display: block;
  height: 0;
  overflow: hidden;
  font-weight: 700;
  visibility: hidden;
}
.header-nav__link:hover,
.header-nav__link:focus {
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
@media (max-width: 958px) {
  .header-nav__link:hover,
  .header-nav__link:focus {
    font-weight: 400;
    color: #020202;
    background-color: #f2f2f2;
  }
}

.header-languages-and-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;

  -webkit-box-align: center;
  -ms-flex-align: center;
}

.header-languages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}
.header-languages__current {
  color: #fff;
}
@media (max-width: 958px) {
  .header-languages__current {
    font-weight: 700;
    color: #06c;
  }
}
.header-languages__link {
  margin-left: 8px;
  color: #bebebe;
}
@media (max-width: 958px) {
  .header-languages__link {
    color: #000;
  }
}
.header-languages__link:hover,
.header-languages__link:focus {
  color: #fff;
  text-decoration: none;
}
@media (max-width: 958px) {
  .header-languages__link:hover,
  .header-languages__link:focus {
    font-weight: 700;
    color: #06c;
  }
}

.header__main {
  padding: 22px 0;
}
@media (max-width: 958px) {
  .header__main {
    padding: 0;
  }
}
.header__main-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;

  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
}

.header-clinic-logo {
  width: 218px;
  margin-top: 6px;
}
@media (max-width: 958px) {
  .header-clinic-logo {
    display: none;
  }
}
.header-clinic-logo:hover .header-clinic-logo__img {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}
.header-clinic-logo__img {
  display: block;
  max-width: 100%;
  height: auto;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.header-logo {
  display: block;
  margin-top: 22px;
  font-family: GothamPro, Arial, "Helvetica Neue", Helvetica, sans-serif;
  line-height: 1;
  text-transform: uppercase;
}
@media (max-width: 958px) {
  .header-logo {
    position: fixed;
    top: 0;
    left: 50%;
    z-index: 20;
    margin-top: 8px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@media (max-width: 958px) and (min-width: 768px) {
  .header-logo {
    padding-left: 160px;
  }
}
@media (max-width: 480px) {
  .header-logo {
    left: 40%;
  }
}
@media (max-width: 420px) {
  .header-logo {
    left: 124px;
  }
}
.header-logo:hover,
.header-logo:focus {
  text-decoration: none;
}
.header-logo:hover strong,
.header-logo:hover span,
.header-logo:focus strong,
.header-logo:focus span {
  color: #204d84;
}
.header-logo:hover b,
.header-logo:focus b {
  color: #000;
}
.header-logo strong {
  display: block;
  font-size: 22px;
  font-weight: 600;
  color: #000;
  -webkit-transition: color .2s;
  transition: color .2s;
}
@media (max-width: 480px) {
  .header-logo strong {
    font-size: 16px;
  }
}
.header-logo b {
  color: #204d84;
  -webkit-transition: color .2s;
  transition: color .2s;
}
.header-logo span {
  display: block;
  padding: 0 4px;
  font-size: 14px;
  font-weight: 200;
  color: #000;
  letter-spacing: 4px;
  -webkit-transition: color .2s;
  transition: color .2s;
}
@media (max-width: 480px) {
  .header-logo span {
    font-size: 13px;
  }
}
.header-logo__img {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  width: 140px;
}
@media (max-width: 958px) and (min-width: 768px) {
  .header-logo__img {
    display: block;
  }
}

.header-info {
  margin-right: 50px;
  line-height: 1;
}
@media (max-width: 958px) {
  .header-info {
    display: none;
  }
}
.header-info__phone {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  color: #121212;
  letter-spacing: 1.3px;
}
.header-info__schedule {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  color: #858685;
}
.header-info.header-info--mobile {
  display: none;
  margin-right: 0;
  padding: 20px 10px;
  text-align: center;
  background-color: #f2f2f2;
}
@media (max-width: 958px) {
  .header-info.header-info--mobile {
    display: block;
  }
}

@media (max-width: 958px) {
  .catalog {
    position: fixed;
    top: 52px;
    left: -500px;
    z-index: 2;
    width: 240px;
    max-height: calc(100% - 52px);
    padding: 0;
    overflow-y: auto;
    background-color: #fff;
    -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, .12);
    box-shadow: 0 3px 15px rgba(0, 0, 0, .12);
    -webkit-transition: left .3s;
    transition: left .3s;
  }
}
@media (max-width: 958px) and (max-width: 958px) {
  .catalog.catalog--open {
    left: 0;
  }
}

.catalog__list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 6px;

  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
}
@media (max-width: 958px) {
  .catalog__list {
    display: block;
    padding-bottom: 0;
  }
}
.catalog__list:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background-color: #dadada;
}
@media (max-width: 958px) {
  .catalog__list:after {
    content: none;
  }
}

.catalog__item {
  margin: 0 3px;
}
@media (max-width: 958px) {
  .catalog__item {
    margin: 0;
  }
}
@media (max-width: 958px) {
  .catalog__item:not(:first-child) {
    border-top: 1px solid #ccc;
  }
}
@media (max-width: 958px) {
  .catalog__item.catalog__item--active .catalog__link {
    background-color: #f2f2f2;
  }
}
@media (max-width: 958px) and (max-width: 958px) {
  .catalog__item.catalog__item--active .catalog__link:not([href]):after {
    right: 14px;
    left: auto;
    width: 24px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}
.catalog__item.catalog__item--active .catalog__link:before,
.catalog__item.catalog__item--active .catalog__link:after {
  left: 0;
  width: 100%;
}
.catalog__item.catalog__item--active .catalog__link span {
  font-weight: 700;
}
/*.catalog__item.catalog__item--active .catalog__dropdown {
  display: block;
}*/

.catalog__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding: 3px 0;
  font-size: 14px;
  font-weight: 400;
  color: #020202;
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition: background-color .15s;
  transition: background-color .15s;

  -webkit-box-align: center;
  -ms-flex-align: center;
}
@media (max-width: 958px) {
  .catalog__link {
    padding: 10px 40px 10px 6px;
    font-size: 16px;
  }
  .catalog__link:hover {
    background-color: #f2f2f2;
  }
}
.catalog__link:hover,
.catalog__link:focus {
  text-decoration: none;
}
.catalog__link:hover span,
.catalog__link:focus span {
  font-weight: 700;
}
@media (max-width: 958px) {
  .catalog__link:hover span,
  .catalog__link:focus span {
    font-weight: 400;
  }
}
.catalog__link:after,
.catalog__link:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -2px;
  left: auto;
  z-index: 2;
  width: 0;
  height: 2px;
}
@media (max-width: 958px) {
  .catalog__link:after,
  .catalog__link:before {
    content: none;
  }
}
.catalog__link:hover:before,
.catalog__link:hover:after {
  left: 0;
  width: 100%;
}
@media (max-width: 958px) {
  .catalog__link:hover:after {
    right: 14px;
    left: auto;
    width: 24px;
  }
}
.catalog__link:before {
  background-color: #06c;
  -webkit-transition: all .25s cubic-bezier(.694, .048, .335, 1) .15s;
  transition: all .25s cubic-bezier(.694, .048, .335, 1) .15s;
}
@media (max-width: 958px) {
  .catalog__link:before {
    content: none;
  }
}
.catalog__link:after {
  background-color: #445362;
  -webkit-transition: all .25s cubic-bezier(.694, .048, .335, 1);
  transition: all .25s cubic-bezier(.694, .048, .335, 1);
}
@media (max-width: 958px) {
  .catalog__link:not([href]):after {
    content: "";
    top: 16px;
    right: 10px;
    bottom: 0;
    width: 24px;
    height: 8px;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25.1 10'%3E%3Cpath fill='none' stroke='%23c0bfbf' stroke-width='2' stroke-miterlimit='10' d='M.6.8l12 8 12-8' width='24' height='8' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    -webkit-transition: -webkit-transform .15s;
    transition: -webkit-transform .15s;
    transition: transform .15s;
    transition: transform .15s, -webkit-transform .15s;
  }
}
.catalog__link span:after {
  content: attr(data-hover-bold);
  display: block;
  height: 0;
  overflow: hidden;
  font-weight: 700;
  visibility: hidden;
}

.catalog__dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 1;
  height: 240px;
  -webkit-columns: 3;
  -moz-columns: 3;
  columns: 3;
  -webkit-column-rule: 1px solid #555;
  -moz-column-rule: 1px solid #555;
  column-rule: 1px solid #555;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
  -webkit-column-fill: auto;
  -moz-column-fill: auto;
  column-fill: auto;
  break-inside: avoid;
  padding: 40px 30px 40px 20px;
  visibility: hidden;
  background-color: #fff;
  -webkit-box-shadow: 0 4px 8px rgba(0, 1, 5, .25);
  box-shadow: 0 4px 8px rgba(0, 1, 5, .25);
  opacity: 0;
  -webkit-transition: .3s all cubic-bezier(.785, .135, .15, .86);
  transition: .3s all cubic-bezier(.785, .135, .15, .86);
  -webkit-transform: translateY(30px);
  transform: translateY(30px);

  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
}
@media (max-width: 958px) {
  .catalog__dropdown {
    position: static;
    display: none;
    height: auto;
    -webkit-columns: auto;
    -moz-columns: auto;
    columns: auto;
    -webkit-column-rule: 0;
    -moz-column-rule: 0;
    column-rule: 0;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
    padding: 0 10px 10px 20px;
    visibility: visible;
    background-color: #f2f2f2;
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
/*.catalog__dropdown.catalog__dropdown--open {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}*/
.catalog__dropdown-link {
  display: block;
  margin-bottom: 12px;
  font-family: GothamPro, Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.2;
  color: #555;
  -webkit-transition: color .15s, font-weight .15s;
  transition: color .15s, font-weight .15s;
}
@media (max-width: 958px) {
  .catalog__dropdown-link {
    margin: 0;
    padding: 6px 0;
  }
}
.catalog__dropdown-link:hover {
  font-weight: 500;
  color: #373737;
  text-decoration: none;
}

@media (min-width: 959px) {
  .line-initial-position .catalog__link:before,
  .line-initial-position .catalog__link:after {
    left: 0;
    width: 100%;
  }
}
/*
.touchevents .catalog__item.catalog__item--active .catalog__dropdown {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}*/

.hamburger {
  position: relative;
  display: none;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  outline: 0;
}
@media (max-width: 958px) {
  .hamburger {
    display: block;
  }
}
.hamburger:hover .hamburger__line {
  background-color: #204d84;
}
.hamburger--active .hamburger__line {
  border-radius: 6px;
}
.hamburger--active .hamburger__line--top {
  top: 10px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.hamburger--active .hamburger__line--middle {
  opacity: 0;
}
.hamburger--active .hamburger__line--bottom {
  top: 10px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.hamburger__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: #000;
  -webkit-transition: top .2s, -webkit-transform .2s;
  transition: top .2s, -webkit-transform .2s;
  transition: transform .2s, top .2s;
  transition: transform .2s, top .2s, -webkit-transform .2s;
}
.hamburger__line--top {
  top: 0;
}
.hamburger__line--middle {
  top: 10px;
}
.hamburger__line--bottom {
  top: 20px;
}

.dots {
  position: relative;
  display: none;
  width: 25px;
  height: 25px;
  margin-left: 20px;
  border: 0;
  background-color: transparent;
  outline: 0;
}
@media (max-width: 958px) {
  .dots {
    display: block;
  }
}
.dots:hover .dots__item {
  background-color: #204d84;
}
.dots.dots--active .dots__item:nth-of-type(1) {
  width: 30px;
  margin-top: 0;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.dots.dots--active .dots__item:nth-of-type(2) {
  width: 30px;
  margin-top: 0;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}
.dots.dots--active .dots__item:nth-of-type(3) {
  margin: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.dots__item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background-color: #000;
  -webkit-transition: margin .2s, width .2s, background-color .2s;
  transition: margin .2s, width .2s, background-color .2s;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.dots__item:nth-of-type(1) {
  margin-top: -10px;
}
.dots__item:nth-of-type(2) {
  margin: 0;
}
.dots__item:nth-of-type(3) {
  margin-top: 10px;
}

.button {
  display: inline-block;
  border: 0;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
}
.button:hover,
.button:focus {
  text-decoration: none;
  outline: 0;
}

@-webkit-keyframes pulse {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  33% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(3);
    transform: scale(3);
  }
}

@keyframes pulse {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  33% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(3);
    transform: scale(3);
  }
}

.button--blue,
.button--light {
  position: relative;
  border-radius: 3px;
  text-decoration: none;
  -webkit-transition: background .3s, -webkit-transform .3s;
  transition: background .3s, -webkit-transform .3s;
  transition: background .3s, transform .3s;
  transition: background .3s, transform .3s, -webkit-transform .3s;

  will-change: transform;
}
.button--blue:hover,
.button--light:hover {
  -webkit-transform: translate3d(0, -2px, 0);
  transform: translate3d(0, -2px, 0);
}
.button--blue:active,
.button--light:active {
  -webkit-transform: translate3d(0, 1px, 0);
  transform: translate3d(0, 1px, 0);
}
.button--blue:before,
.button--blue:after,
.button--light:before,
.button--light:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 20px;
  margin: auto;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .4);
  opacity: 0;
}
.button--blue:before,
.button--light:before {
  -webkit-animation: pulse 1.5s infinite linear;
  animation: pulse 1.5s infinite linear;
}
.button--blue:after,
.button--light:after {
  -webkit-animation: pulse 2s .4s infinite linear;
  animation: pulse 2s .4s infinite linear;
}
.button--blue:hover:before,
.button--blue:hover:after,
.button--light:hover:before,
.button--light:hover:after {
  content: "";
}

.button--blue {
  padding: 10px 20px;
  font-size: 10px;
  color: #fefefe;
  text-transform: uppercase;
  background-color: #005def;
  -webkit-box-shadow: 0 4px 17px rgba(0, 93, 239, .2);
  box-shadow: 0 4px 17px rgba(0, 93, 239, .2);
  -webkit-transition: background .3s, -webkit-transform .3s, -webkit-box-shadow .3s;
  transition: background .3s, -webkit-transform .3s, -webkit-box-shadow .3s;
  transition: background .3s, transform .3s, box-shadow .3s;
  transition: background .3s, transform .3s, box-shadow .3s, -webkit-transform .3s, -webkit-box-shadow .3s;
}
.button--blue:hover {
  background-color: #0049bc;
  -webkit-box-shadow: 0 3px 2px 0 rgba(0, 93, 239, .1);
  box-shadow: 0 3px 2px 0 rgba(0, 93, 239, .1);
}
.button--blue:active {
  -webkit-box-shadow: 0 1px 1px 0 rgba(0, 93, 239, .1);
  box-shadow: 0 1px 1px 0 rgba(0, 93, 239, .1);
}

.button--light {
  padding: 10px 26px;
  font-size: 12px;
  color: #005def;
  background-color: #eeebfc;
  -webkit-transition: background .3s, -webkit-transform .3s;
  transition: background .3s, -webkit-transform .3s;
  transition: background .3s, transform .3s;
  transition: background .3s, transform .3s, -webkit-transform .3s;
}
.button--light:hover {
  background-color: #eeebfc;
}

.main-slider {
  min-width: 300px;
  max-width: 1920px;
  margin: auto;
}
.main-slider__item-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 500px;
  align-items: center;
  background: no-repeat 50% 0;
  background-size: cover;

  -webkit-box-align: center;
  -ms-flex-align: center;
}
@media (max-width: 960px) {
  .main-slider__item-wrap {
    height: 400px;
  }
}
@media (max-width: 480px) {
  .main-slider__item-wrap {
    height: 320px;
  }
}
.main-slider__title {
  margin: 0 0 0 10%;
  font-size: 64px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .3px;
}
@media (max-width: 960px) {
  .main-slider__title {
    margin: auto;
    font-size: 40px;
  }
}
@media (max-width: 640px) {
  .main-slider__title {
    justify-content: center;
    margin: auto;
    padding: 0;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
  }
}
@media (max-width: 480px) {
  .main-slider__title {
    font-size: 32px;
  }
}
@media (max-width: 420px) {
  .main-slider__title {
    padding: 20px;
    font-size: 26px;
  }
}

.about-prev {
  position: relative;
  min-width: 290px;
  max-width: 1920px;
  margin: 0 auto 34px;
  padding: 56px 0 50px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .about-prev {
    margin-bottom: 0;
  }
}
.about-prev:before,
.about-prev:after {
  content: "";
  position: absolute;
  z-index: -1;
}
.about-prev:before {
  top: 56px;
  left: 248px;
  width: 368px;
  height: 71px;
  background: url("../images/main-page/about/about.png") no-repeat;
}
@media (max-width: 767px) {
  .about-prev:before {
    top: 22px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
.about-prev:after {
  bottom: 28px;
  left: 0;
  width: 570px;
  height: 103px;
  /*background: url("../images/main-page/about/d-rokyta.png") no-repeat;*/
}
.about-prev__container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 980px;
  margin: auto;
  padding: 60px 10px 0 168px;
}
@media (max-width: 1210px) {
  .about-prev__container {
    padding: 60px 10% 0;
  }
}
@media (max-width: 1100px) {
  .about-prev__container {
    padding: 60px 5% 0;
  }
}
@media (max-width: 960px) {
  .about-prev__container {
    padding: 0 15px;
  }
}
@media (max-width: 767px) {
  .about-prev__container {
    display: block;
    padding-top: 70px;
  }
}
.about-prev__img {
  width: 50%;
  padding-right: 18px;
}
@media (max-width: 767px) {
  .about-prev__img {
    width: auto;
    margin-bottom: 30px;
    padding-right: 0;
  }
}
.about-prev__img img {
  display: block;
  margin: 0 0 0 auto;
}
@media (max-width: 767px) {
  .about-prev__img img {
    margin: auto;
  }
}
.about-prev__content {
  width: 50%;
  padding: 64px 0 0 40px;
  font-size: 12px;
  color: #000;
}
@media (max-width: 960px) {
  .about-prev__content {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .about-prev__content {
    width: auto;
    padding-left: 0;
  }
}
.about-prev__title {
  position: relative;
  margin: 0 0 12px;
  font-size: 35px;
  font-weight: 900;
  line-height: 1;
  color: #000;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .about-prev__title {
    position: absolute;
    top: 0;
    left: 15px;
  }
}
@media (max-width: 480px) {
  .about-prev__title {
    font-size: 30px;
  }
}
.about-prev__title:before {
  content: none;
  position: absolute;
  top: 15px;
  left: -150px;
  width: 130px;
  height: 2px;
  background-color: #000;
}
@media (max-width: 960px) {
  .about-prev__title:before {
    content: none;
  }
}
.about-prev__subtitle {
  position: relative;
  display: block;
  margin-bottom: 14px;
}
.about-prev__subtitle:after {
  content: "";
  position: absolute;
  top: 7px;
  left: -44px;
  width: 29px;
  height: 2px;
  background-color: #005def;
}
@media (max-width: 960px) {
  .about-prev__subtitle:after {
    content: none;
  }
}
.about-prev__info {
  margin-bottom: 14px;
}
.about-prev__info p {
  margin: 0 0 14px;
  line-height: 1.3;
}
.about-prev__info dt {
  font-weight: 700;
}
.about-prev__btn {
  margin-top: 16px;
}

.certificates {
  position: relative;
  min-width: 300px;
  max-width: 1920px;
  margin: auto;
  padding: 84px 0;
  background: url("../images/main-page/bg-certificates.jpg") no-repeat 50%;
  background-size: cover;
}
@media (max-width: 767px) {
  .certificates {
    max-width: 100%;
    padding: 40px 0;
  }
}
.certificates__container {
  max-width: 972px;
  margin: auto;
}
.certificates__title {
  margin: 0 0 74px;
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
  color: #222;
}
@media (max-width: 1040px) {
  .certificates__title {
    margin-left: 15px;
  }
}
@media (max-width: 767px) {
  .certificates__title {
    margin-bottom: 30px;
  }
}
.certificates__title b {
  display: block;
  margin-bottom: 10px;
  font-size: 35px;
  font-weight: 900;
}
@media (max-width: 480px) {
  .certificates__title b {
    font-size: 30px;
  }
}
.certificates__gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 12px 0 20px;
}
@media (max-width: 420px) {
  .certificates__gallery {
    display: block;
    min-width: 0;
    padding: 0 15px;
  }
}
.certificates__item {
  width: 25%;
  margin: 0 0 26px;
  text-align: center;
}
@media (max-width: 960px) {
  .certificates__item {
    width: 23%;
    margin-right: 1%;
    margin-left: 1%;
  }
}
@media (max-width: 767px) {
  .certificates__item {
    width: 31.3%;
  }
}
@media (max-width: 640px) {
  .certificates__item {
    width: 48%;
  }
}
@media (max-width: 420px) {
  .certificates__item {
    width: auto;
    margin: auto;
  }
}
.certificates__item:nth-child(4n+2) {
  margin-top: -32px;
}
@media (max-width: 767px) {
  .certificates__item:nth-child(4n+2) {
    margin-top: 0;
  }
}
.certificates__item:nth-child(4n+3) {
  margin-top: -64px;
}
@media (max-width: 767px) {
  .certificates__item:nth-child(4n+3) {
    margin-top: 0;
  }
}
.certificates__item:nth-child(4n) {
  margin-top: -96px;
}
@media (max-width: 767px) {
  .certificates__item:nth-child(4n) {
    margin-top: 0;
  }
}
.certificates__link {
  display: inline-block;
}
@media (max-width: 480px) {
  .certificates__link {
    padding: 0 10px;
  }
}
.certificates__link:hover .certificates__img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.certificates__img {
  display: block;
  max-width: 100%;
  height: 280px;
  margin: auto;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;

  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 960px) {
  .certificates__img {
    height: 230px;
  }
}
@media (max-width: 767px) {
  .certificates__img {
    height: 240px;
  }
}
@media (max-width: 420px) {
  .certificates__img {
    height: 280px;
  }
}

.slick-slider {
  position: relative;
  display: block;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
  outline: 0;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-loading .slick-list {
  background: #fff url("../images/main-page/ajax-loader.gif") 50% no-repeat;
}

.lSSlideOuter {
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  -webkit-touch-callout: none;
}

.lightSlider:before,
.lightSlider:after {
  content: "";
  display: table;
}

.lightSlider {
  margin: 0;
  overflow: hidden;
}

.lSSlideWrapper {
  position: relative;
  max-width: 100%;
  margin-bottom: 12px;
  overflow: hidden;
}

.lSSlideWrapper > .lightSlider:after {
  clear: both;
}

.lSSlideWrapper .lSSlide {
  -webkit-transition-timing-function: inherit !important;
  transition-timing-function: inherit !important;
  -webkit-transition-duration: inherit !important;
  transition-duration: inherit !important;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
  -webkit-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}

.lSSlideWrapper .lSFade {
  position: relative;
}

.lSSlideWrapper .lSFade > * {
  position: absolute !important;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  margin-right: 0;
}

.lSSlideWrapper.usingCss .lSFade > * {
  opacity: 0;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-timing-function: inherit !important;
  transition-timing-function: inherit !important;
  -webkit-transition-duration: inherit !important;
  transition-duration: inherit !important;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.lSSlideWrapper .lSFade > *.active {
  z-index: 10;
}

.lSSlideWrapper.usingCss .lSFade > *.active {
  opacity: 1;
}

.lSSlideOuter .lSPager.lSpg {
  margin: 10px 0 0;
  padding: 0;
  text-align: center;
}

.lSSlideOuter .lSPager.lSpg > li {
  display: inline-block;
  padding: 0 5px;
  cursor: pointer;
}

.lSSlideOuter .lSPager.lSpg > li a {
  position: relative;
  z-index: 99;
  display: inline-block;
  width: 8px;
  height: 8px;
  overflow: hidden;
  border-radius: 30px;
  text-indent: -999em;
  background-color: #222;
  -webkit-transition: all .5s linear 0s;
  transition: all .5s linear 0s;
}

.lSSlideOuter .lSPager.lSpg > li:hover a,
.lSSlideOuter .lSPager.lSpg > li.active a {
  background-color: #428bca;
}

.lSSlideOuter .media {
  opacity: .8;
}

.lSSlideOuter .media.active {
  opacity: 1;
}

.lSPager li.active {
  opacity: .6;
}

.lSSlideOuter .lSPager.lSGallery {
  margin: 0;
  padding-left: 0;
  overflow: hidden;
  list-style: none outside none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);

  -webkit-touch-callout: none;
}

.lSSlideOuter .lSPager.lSGallery li {
  overflow: hidden;
  -webkit-transition: border-radius .12s;
  transition: border-radius .12s;
}

.lSSlideOuter .lSPager.lSGallery li.active,
.lSSlideOuter .lSPager.lSGallery li:hover {
  border-radius: 5px;
}

.lightSlider li img,
.lSSlideOuter .lSPager.lSGallery img {
  display: block;
  max-width: 100%;
  height: auto;
}

.lSSlideOuter .lSPager.lSGallery:before,
.lSSlideOuter .lSPager.lSGallery:after {
  content: "";
  display: table;
}

.lSSlideOuter .lSPager.lSGallery:after {
  clear: both;
}

.lSAction > a {
  position: absolute;
  top: 50%;
  z-index: 99;
  display: block;
  width: 32px;
  height: 32px;
  margin-top: -16px;
  cursor: pointer;
  opacity: .5;
  -webkit-transition: opacity .35s linear 0s;
  transition: opacity .35s linear 0s;
}

.lSAction > a:hover {
  opacity: 1;
}

.lSAction > .lSPrev {
  left: 10px;
  background-position: 0 0;
}

.lSAction > .lSNext {
  right: 10px;
  background-position: -32px 0;
}

.lSAction > a.disabled {
  pointer-events: none;
}

.cS-hidden {
  height: 1px;
  overflow: hidden;
  filter: alpha(opacity=0);
  opacity: 0;
}

.lSSlideOuter.vertical {
  position: relative;
}

.lSSlideOuter.vertical.noPager {
  padding-right: 0 !important;
}

.lSSlideOuter.vertical .lSGallery {
  position: absolute !important;
  top: 0;
  right: 0;
}

.lSSlideOuter.vertical .lightSlider > * {
  width: 100% !important;
  max-width: none !important;
}

.lSSlideOuter.vertical .lSAction > a {
  left: 50%;
  margin-top: 0;
  margin-left: -14px;
}

.lSSlideOuter.vertical .lSAction > .lSNext {
  top: auto;
  bottom: 10px;
  background-position: 31px -31px;
}

.lSSlideOuter.vertical .lSAction > .lSPrev {
  top: 10px;
  bottom: auto;
  background-position: 0 -31px;
}

.lSSlideOuter.lSrtl {
  direction: rtl;
}

.lSSlideOuter .lightSlider,
.lSSlideOuter .lSPager {
  padding-left: 0;
  list-style: none outside none;
}

.lSSlideOuter.lSrtl .lightSlider,
.lSSlideOuter.lSrtl .lSPager {
  padding-right: 0;
}

.lSSlideOuter .lightSlider > *,
.lSSlideOuter .lSGallery li {
  float: left;
}

.lSSlideOuter.lSrtl .lightSlider > *,
.lSSlideOuter.lSrtl .lSGallery li {
  float: right !important;
}

@-webkit-keyframes rightEnd {
  0% {
    left: 0;
  }
  50% {
    left: -15px;
  }
  100% {
    left: 0;
  }
}

@keyframes rightEnd {
  0% {
    left: 0;
  }
  50% {
    left: -15px;
  }
  100% {
    left: 0;
  }
}

@-webkit-keyframes topEnd {
  0% {
    top: 0;
  }
  50% {
    top: -15px;
  }
  100% {
    top: 0;
  }
}

@keyframes topEnd {
  0% {
    top: 0;
  }
  50% {
    top: -15px;
  }
  100% {
    top: 0;
  }
}

@-webkit-keyframes leftEnd {
  0% {
    left: 0;
  }
  50% {
    left: 15px;
  }
  100% {
    left: 0;
  }
}

@keyframes leftEnd {
  0% {
    left: 0;
  }
  50% {
    left: 15px;
  }
  100% {
    left: 0;
  }
}

@-webkit-keyframes bottomEnd {
  0% {
    bottom: 0;
  }
  50% {
    bottom: -15px;
  }
  100% {
    bottom: 0;
  }
}

@keyframes bottomEnd {
  0% {
    bottom: 0;
  }
  50% {
    bottom: -15px;
  }
  100% {
    bottom: 0;
  }
}

.lSSlideOuter .rightEnd {
  position: relative;
  -webkit-animation: rightEnd .3s;
  animation: rightEnd .3s;

  will-change: animation;
}

.lSSlideOuter .leftEnd {
  position: relative;
  -webkit-animation: leftEnd .3s;
  animation: leftEnd .3s;

  will-change: animation;
}

.lSSlideOuter.vertical .rightEnd {
  position: relative;
  -webkit-animation: topEnd .3s;
  animation: topEnd .3s;

  will-change: animation;
}

.lSSlideOuter.vertical .leftEnd {
  position: relative;
  -webkit-animation: bottomEnd .3s;
  animation: bottomEnd .3s;

  will-change: animation;
}

.lSSlideOuter.lSrtl .rightEnd {
  position: relative;
  -webkit-animation: leftEnd .3s;
  animation: leftEnd .3s;

  will-change: animation;
}

.lSSlideOuter.lSrtl .leftEnd {
  position: relative;
  -webkit-animation: rightEnd .3s;
  animation: rightEnd .3s;

  will-change: animation;
}

.lightSlider.lsGrab > * {
  cursor: -webkit-grab;
  cursor: grab;
}

.lightSlider.lsGrabbing > * {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

@font-face {
  src: url("../fonts//lg.woff") format("woff");
  font-family: "lg";
  font-weight: normal;
  font-style: normal;
}

.lg-icon {
  font-family: "lg";
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  speak: none;
}

.lg-actions .lg-next,
.lg-actions .lg-prev {
  position: absolute;
  top: 50%;
  z-index: 1080;
  display: block;
  margin-top: -10px;
  padding: 8px 10px 9px;
  border: 0;
  border-radius: 2px;
  font-size: 22px;
  color: #999;
  cursor: pointer;
  background-color: rgba(0, 0, 0, .45);
}

.lg-actions .lg-next.disabled,
.lg-actions .lg-prev.disabled {
  pointer-events: none;
  opacity: .5;
}

.lg-actions .lg-next:hover,
.lg-actions .lg-prev:hover {
  color: #fff;
}

.lg-actions .lg-next {
  right: 20px;
}
@media (max-width: 960px) {
  .lg-actions .lg-next {
    right: 10px;
  }
}

.lg-actions .lg-next:before {
  content: "\e095";
}

.lg-actions .lg-prev {
  left: 20px;
}
@media (max-width: 960px) {
  .lg-actions .lg-prev {
    left: 10px;
  }
}

.lg-actions .lg-prev:after {
  content: "\e094";
}

@-webkit-keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}

@keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}

@-webkit-keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}

@keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}

.lg-outer.lg-right-end .lg-object {
  position: relative;
  -webkit-animation: lg-right-end .3s;
  animation: lg-right-end .3s;

  will-change: animation;
}

.lg-outer.lg-left-end .lg-object {
  position: relative;
  -webkit-animation: lg-left-end .3s;
  animation: lg-left-end .3s;

  will-change: animation;
}

.lg-toolbar {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1082;
  width: 100%;
  background-color: #edeff1;
}

.lg-toolbar .lg-icon {
  float: right;
  width: 50px;
  height: 47px;
  padding: 10px 0;
  font-size: 24px;
  line-height: 27px;
  color: #999;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
  outline: medium none;
  -webkit-transition: color .2s linear;
  transition: color .2s linear;
}

.lg-toolbar .lg-icon:hover {
  color: #f26730;
}

.lg-toolbar .lg-close:after {
  content: "\e070";
}

.lg-toolbar .lg-download:after {
  content: "\e0f2";
}

.lg-sub-html {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1080;
  padding: 10px 40px;
  font-size: 16px;
  color: #eee;
  text-align: center;
  background-color: rgba(0, 0, 0, .45);
}

.lg-sub-html h4 {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
}

.lg-sub-html p {
  margin: 5px 0 0;
  font-size: 12px;
}

#lg-counter {
  display: inline-block;
  padding-top: 12px;
  padding-left: 20px;
  font-size: 16px;
  color: #999;
  vertical-align: middle;
}

.lg-toolbar,
.lg-prev,
.lg-next {
  opacity: 1;
  -webkit-transition: opacity .35s cubic-bezier(0, 0, .25, 1) 0s, color .2s linear, -webkit-transform .35s cubic-bezier(0, 0, .25, 1) 0s;
  transition: opacity .35s cubic-bezier(0, 0, .25, 1) 0s, color .2s linear, -webkit-transform .35s cubic-bezier(0, 0, .25, 1) 0s;
  transition: transform .35s cubic-bezier(0, 0, .25, 1) 0s, opacity .35s cubic-bezier(0, 0, .25, 1) 0s, color .2s linear;
  transition: transform .35s cubic-bezier(0, 0, .25, 1) 0s, opacity .35s cubic-bezier(0, 0, .25, 1) 0s, color .2s linear, -webkit-transform .35s cubic-bezier(0, 0, .25, 1) 0s;
}

.lg-hide-items .lg-prev {
  opacity: 0;
  -webkit-transform: translate3d(-10px, 0, 0);
  transform: translate3d(-10px, 0, 0);

  will-change: transform;
}

.lg-hide-items .lg-next {
  opacity: 0;
  -webkit-transform: translate3d(10px, 0, 0);
  transform: translate3d(10px, 0, 0);

  will-change: transform;
}

.lg-hide-items .lg-toolbar {
  opacity: 0;
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0);

  will-change: transform;
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-object {
  opacity: 0;
  -webkit-transition: opacity 250ms cubic-bezier(0, 0, .25, 1), -webkit-transform 250ms cubic-bezier(0, 0, .25, 1) 0s !important;
  transition: opacity 250ms cubic-bezier(0, 0, .25, 1), -webkit-transform 250ms cubic-bezier(0, 0, .25, 1) 0s !important;
  transition: transform 250ms cubic-bezier(0, 0, .25, 1) 0s, opacity 250ms cubic-bezier(0, 0, .25, 1) !important;
  transition: transform 250ms cubic-bezier(0, 0, .25, 1) 0s, opacity 250ms cubic-bezier(0, 0, .25, 1), -webkit-transform 250ms cubic-bezier(0, 0, .25, 1) 0s !important;
  -webkit-transform: scale3d(.5, .5, .5);
  transform: scale3d(.5, .5, .5);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;

  will-change: transform;
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  height: 100% !important;
  will-change: transform;
}

.lg-outer .lg-thumb-outer {
  position: absolute;
  bottom: 0;
  z-index: 1080;
  width: 100%;
  max-height: 350px;
  background-color: #edeff1;
  -webkit-transition: -webkit-transform .25s cubic-bezier(0, 0, .25, 1) 0s;
  transition: -webkit-transform .25s cubic-bezier(0, 0, .25, 1) 0s;
  transition: transform .25s cubic-bezier(0, 0, .25, 1) 0s;
  transition: transform .25s cubic-bezier(0, 0, .25, 1) 0s, -webkit-transform .25s cubic-bezier(0, 0, .25, 1) 0s;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);

  will-change: transform;
}

.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
  cursor: -webkit-grab;
  cursor: grab;
}

.lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
}

.lg-outer.lg-thumb-open .lg-thumb-outer {
  -webkit-transform: translate3d(0, 0%, 0);
  transform: translate3d(0, 0%, 0);
}

.lg-outer .lg-thumb {
  height: 100%;
  margin-bottom: -5px;
  padding: 10px 0;
}

.lg-outer .lg-thumb-item {
  float: left;
  height: 100%;
  margin-bottom: 5px;
  overflow: hidden;
  border: 2px solid #fff;
  border-radius: 4px;
  cursor: pointer;
}

@media (min-width: 1025px) {
  .lg-outer .lg-thumb-item {
    -webkit-transition: border-color .25s ease;
    transition: border-color .25s ease;
  }
}

.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
  border-color: #a90707 !important;
}

.lg-outer .lg-thumb-item img {
  width: 100%;
  height: 100%;

  -o-object-fit: cover;
  object-fit: cover;
}

.lg-outer.lg-has-thumb .lg-item {
  padding-bottom: 120px;
}

.lg-outer.lg-can-toggle .lg-item {
  padding-bottom: 0;
}

.lg-outer.lg-pull-caption-up .lg-sub-html {
  -webkit-transition: bottom .25s ease;
  transition: bottom .25s ease;
}

.lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html {
  bottom: 100px;
}

.lg-outer .lg-toogle-thumb {
  position: absolute;
  top: -39px;
  right: 20px;
  width: 50px;
  height: 39px;
  padding: 5px 0;
  border-radius: 2px 2px 0 0;
  font-size: 24px;
  line-height: 27px;
  color: #999;
  text-align: center;
  cursor: pointer;
  background-color: #0d0a0a;
}

.lg-outer .lg-toogle-thumb:after {
  content: "\e1ff";
}

.lg-outer .lg-toogle-thumb:hover {
  color: #fff;
}

.lg-outer .lg-video-cont {
  display: inline-block;
  width: 100%;
  max-width: 1140px;
  max-height: 100%;
  padding: 0 5px;
  vertical-align: middle;
}

.lg-outer .lg-video {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}

.lg-outer .lg-video .lg-object {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100% !important;
  height: 100% !important;
}

.lg-outer .lg-video .lg-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1080;
  width: 84px;
  height: 59px;
  margin-top: -30px;
  margin-left: -42px;
  cursor: pointer;
}

.lg-outer .lg-has-vimeo .lg-video-play {
  background: url("../images/lightgallery/img/vimeo-play.png") no-repeat scroll 0 0 transparent;
}

.lg-outer .lg-has-vimeo:hover .lg-video-play {
  background: url("../images/lightgallery/img/vimeo-play.png") no-repeat scroll 0 -58px transparent;
}

.lg-outer .lg-has-html5 .lg-video-play {
  width: 64px;
  height: 64px;
  margin-top: -32px;
  margin-left: -32px;
  background: transparent url("../images/lightgallery/img/video-play.png") no-repeat scroll 0 0;
  opacity: .8;
}

.lg-outer .lg-has-html5:hover .lg-video-play {
  opacity: 1;
}

.lg-outer .lg-has-youtube .lg-video-play {
  background: url("../images/lightgallery/img/youtube-play.png") no-repeat scroll 0 0 transparent;
}

.lg-outer .lg-has-youtube:hover .lg-video-play {
  background: url("../images/lightgallery/img/youtube-play.png") no-repeat scroll 0 -60px transparent;
}

.lg-outer .lg-video-object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.lg-outer .lg-has-video .lg-video-object {
  visibility: hidden;
}

.lg-outer .lg-has-video.lg-video-playing .lg-object,
.lg-outer .lg-has-video.lg-video-playing .lg-video-play {
  display: none;
}

.lg-outer .lg-has-video.lg-video-playing .lg-video-object {
  visibility: visible;
}

.lg-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1083;
  width: 100%;
  height: 5px;
  background-color: #333;
  opacity: 0;
  -webkit-transition: opacity .08s ease 0s;
  transition: opacity .08s ease 0s;
}

.lg-progress-bar .lg-progress {
  width: 0;
  height: 5px;
  background-color: #a90707;
}

.lg-progress-bar.lg-start .lg-progress {
  width: 100%;
}

.lg-show-autoplay .lg-progress-bar {
  opacity: 1;
}

.lg-autoplay-button:after {
  content: "\e01d";
}

.lg-show-autoplay .lg-autoplay-button:after {
  content: "\e01a";
}

.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-img-wrap,
.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image {
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  -webkit-transition: left .3s cubic-bezier(0, 0, .25, 1) 0s, top .3s cubic-bezier(0, 0, .25, 1) 0s;
  transition: left .3s cubic-bezier(0, 0, .25, 1) 0s, top .3s cubic-bezier(0, 0, .25, 1) 0s;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;

  will-change: transform;
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image {
  -webkit-transition: opacity .15s, -webkit-transform .3s cubic-bezier(0, 0, .25, 1) 0s !important;
  transition: opacity .15s, -webkit-transform .3s cubic-bezier(0, 0, .25, 1) 0s !important;
  transition: transform .3s cubic-bezier(0, 0, .25, 1) 0s, opacity .15s !important;
  transition: transform .3s cubic-bezier(0, 0, .25, 1) 0s, opacity .15s, -webkit-transform .3s cubic-bezier(0, 0, .25, 1) 0s !important;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;

  will-change: transform;
}

#lg-zoom-in:after {
  content: "\e311";
}

#lg-actual-size {
  font-size: 20px;
}

#lg-actual-size:after {
  content: "\e033";
}

#lg-zoom-out {
  pointer-events: none;
  opacity: .5;
}

#lg-zoom-out:after {
  content: "\e312";
}

.lg-zoomed #lg-zoom-out {
  pointer-events: auto;
  opacity: 1;
}

.lg-outer .lg-pager-outer {
  position: absolute;
  right: 0;
  bottom: 60px;
  left: 0;
  z-index: 1080;
  height: 10px;
  text-align: center;
}

.lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont {
  overflow: visible;
}

.lg-outer .lg-pager-cont {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  overflow: hidden;
  vertical-align: top;
  cursor: pointer;
}

.lg-outer .lg-pager-cont:hover .lg-pager-thumb-cont {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.lg-outer .lg-pager-cont.lg-pager-active .lg-pager {
  -webkit-box-shadow: 0 0 0 2px white inset;
  box-shadow: 0 0 0 2px white inset;
}

.lg-outer .lg-pager-thumb-cont {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 120px;
  height: 83px;
  margin-bottom: 20px;
  margin-left: -60px;
  padding: 5px;
  border-radius: 3px;
  color: #fff;
  background-color: #fff;
  opacity: 0;
  -webkit-transition: opacity .15s ease 0s, -webkit-transform .15s ease 0s;
  transition: opacity .15s ease 0s, -webkit-transform .15s ease 0s;
  transition: opacity .15s ease 0s, transform .15s ease 0s;
  transition: opacity .15s ease 0s, transform .15s ease 0s, -webkit-transform .15s ease 0s;
  -webkit-transform: translate3d(0, 5px, 0);
  transform: translate3d(0, 5px, 0);

  will-change: transform;
}

.lg-outer .lg-pager-thumb-cont img {
  width: 100%;
  height: 100%;
}

.lg-outer .lg-pager {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .5);
  -webkit-box-shadow: 0 0 0 8px rgba(255, 255, 255, .7) inset;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, .7) inset;
  -webkit-transition: -webkit-box-shadow .3s ease 0s;
  transition: -webkit-box-shadow .3s ease 0s;
  transition: box-shadow .3s ease 0s;
  transition: box-shadow .3s ease 0s, -webkit-box-shadow .3s ease 0s;
}

.lg-outer .lg-pager:hover,
.lg-outer .lg-pager:focus {
  -webkit-box-shadow: 0 0 0 8px white inset;
  box-shadow: 0 0 0 8px white inset;
}

.lg-outer .lg-caret {
  position: absolute;
  bottom: -10px;
  left: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: -5px;
  border-top: 10px dashed;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  vertical-align: middle;
}

.lg-fullscreen:after {
  content: "\e20c";
}

.lg-fullscreen-on .lg-fullscreen:after {
  content: "\e20d";
}

.group:before,
.group:after {
  content: "";
  display: table;
  line-height: 0;
}

.group:after {
  clear: both;
}

.lg-outer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity .15s ease 0s;
  transition: opacity .15s ease 0s;
}

.lg-outer.lg-visible {
  opacity: 1;
}

.lg-outer.lg-css3 .lg-item.lg-prev-slide,
.lg-outer.lg-css3 .lg-item.lg-next-slide,
.lg-outer.lg-css3 .lg-item.lg-current {
  -webkit-transition-timing-function: inherit !important;
  transition-timing-function: inherit !important;
  -webkit-transition-duration: inherit !important;
  transition-duration: inherit !important;
}

.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide,
.lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide,
.lg-outer.lg-css3.lg-dragging .lg-item.lg-current {
  opacity: 1;
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
}

.lg-outer.lg-grab img.lg-object {
  cursor: -webkit-grab;
  cursor: grab;
}

.lg-outer.lg-grabbing img.lg-object {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.lg-outer .lg {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
}

.lg-outer .lg-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  white-space: nowrap;
}

.lg-outer .lg-item {
  display: none !important;
  background: url("../images/main-page/lightgallery/loading.gif") no-repeat scroll center center transparent;
}

.lg-outer.lg-css3 .lg-prev-slide,
.lg-outer.lg-css3 .lg-current,
.lg-outer.lg-css3 .lg-next-slide {
  display: inline-block !important;
}

.lg-outer.lg-css .lg-current {
  display: inline-block !important;
}

.lg-outer .lg-item,
.lg-outer .lg-img-wrap {
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  text-align: center;
}

.lg-outer .lg-item:before,
.lg-outer .lg-img-wrap:before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 50%;
  margin-right: -1px;
}

.lg-outer .lg-img-wrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0 5px;
}

.lg-outer .lg-item.lg-complete {
  background-image: none;
}

.lg-outer .lg-item.lg-current {
  z-index: 1060;
}

.lg-outer .lg-image {
  display: inline-block;
  width: auto !important;
  max-width: 960px;
  height: auto !important;
  padding: 60px 0 130px;
  vertical-align: middle;
}
@media (max-width: 1100px) {
  .lg-outer .lg-image {
    max-width: 100%;
    padding: 30px;
  }
}

.lg-outer.lg-show-after-load .lg-item .lg-object,
.lg-outer.lg-show-after-load .lg-item .lg-video-play {
  opacity: 0;
  -webkit-transition: opacity .15s ease 0s;
  transition: opacity .15s ease 0s;
}

.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-object,
.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-video-play {
  opacity: 1;
}

.lg-outer .lg-empty-html {
  display: none;
}

.lg-outer.lg-hide-download #lg-download {
  display: none;
}

.lg-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #414d72;
  opacity: 0;
  -webkit-transition: opacity .15s ease 0s;
  transition: opacity .15s ease 0s;
}

.lg-backdrop.in {
  opacity: 1;
}

.lg-dropdown {
  display: none;
}

.lg-css3.lg-no-trans .lg-prev-slide,
.lg-css3.lg-no-trans .lg-next-slide,
.lg-css3.lg-no-trans .lg-current {
  -webkit-transition: none 0s ease 0s !important;
  transition: none 0s ease 0s !important;
}

.lg-css3.lg-use-css3 .lg-item {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;

  will-change: transform;
}

.lg-css3.lg-use-left .lg-item {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;

  will-change: transform;
}

.lg-css3.lg-fade .lg-item {
  opacity: 0;
}

.lg-css3.lg-fade .lg-item.lg-current {
  opacity: 1;
}

.lg-css3.lg-fade .lg-item.lg-prev-slide,
.lg-css3.lg-fade .lg-item.lg-next-slide,
.lg-css3.lg-fade .lg-item.lg-current {
  -webkit-transition: opacity .1s ease 0s;
  transition: opacity .1s ease 0s;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item {
  opacity: 0;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);

  will-change: transform;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);

  will-change: transform;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);

  will-change: transform;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transition: opacity .1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, .25, 1) 0s;
  transition: opacity .1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, .25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, .25, 1) 0s, opacity .1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, .25, 1) 0s, opacity .1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, .25, 1) 0s;

  will-change: transform;
}

.lg-css3.lg-slide.lg-use-left .lg-item {
  position: absolute;
  left: 0;
  opacity: 0;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide {
  left: -100%;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide {
  left: 100%;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
  left: 0;
  opacity: 1;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide,
.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide,
.lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
  -webkit-transition: left 1s cubic-bezier(0, 0, .25, 1) 0s, opacity .1s ease 0s;
  transition: left 1s cubic-bezier(0, 0, .25, 1) 0s, opacity .1s ease 0s;
}

.lg-css3.lg-slide-circular .lg-item {
  opacity: 0;
}

.lg-css3.lg-slide-circular .lg-item.lg-prev-slide {
  -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);

  will-change: transform;
}

.lg-css3.lg-slide-circular .lg-item.lg-next-slide {
  -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);

  will-change: transform;
}

.lg-css3.lg-slide-circular .lg-item.lg-current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);

  will-change: transform;
}

.lg-css3.lg-slide-circular .lg-item.lg-prev-slide,
.lg-css3.lg-slide-circular .lg-item.lg-next-slide,
.lg-css3.lg-slide-circular .lg-item.lg-current {
  -webkit-transition: opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, .25, 1) 0s;
  transition: opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, .25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, .25, 1) 0s, opacity 1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, .25, 1) 0s, opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, .25, 1) 0s;
}

.lg-css3.lg-slide-circular-up .lg-item {
  opacity: 0;
}

.lg-css3.lg-slide-circular-up .lg-item.lg-prev-slide {
  -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, -100%, 0);
  transform: scale3d(0, 0, 0) translate3d(-100%, -100%, 0);
}

.lg-css3.lg-slide-circular-up .lg-item.lg-next-slide {
  -webkit-transform: scale3d(0, 0, 0) translate3d(100%, -100%, 0);
  transform: scale3d(0, 0, 0) translate3d(100%, -100%, 0);

  will-change: transform;
}

.lg-css3.lg-slide-circular-up .lg-item.lg-current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);

  will-change: transform;
}

.lg-css3.lg-slide-circular-up .lg-item.lg-prev-slide,
.lg-css3.lg-slide-circular-up .lg-item.lg-next-slide,
.lg-css3.lg-slide-circular-up .lg-item.lg-current {
  -webkit-transition: opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, .25, 1) 0s;
  transition: opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, .25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, .25, 1) 0s, opacity 1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, .25, 1) 0s, opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, .25, 1) 0s;
}

.lg-css3.lg-slide-circular-down .lg-item {
  opacity: 0;
}

.lg-css3.lg-slide-circular-down .lg-item.lg-prev-slide {
  -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 100%, 0);
  transform: scale3d(0, 0, 0) translate3d(-100%, 100%, 0);

  will-change: transform;
}

.lg-css3.lg-slide-circular-down .lg-item.lg-next-slide {
  -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 100%, 0);
  transform: scale3d(0, 0, 0) translate3d(100%, 100%, 0);

  will-change: transform;
}

.lg-css3.lg-slide-circular-down .lg-item.lg-current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);

  will-change: transform;
}

.lg-css3.lg-slide-circular-down .lg-item.lg-prev-slide,
.lg-css3.lg-slide-circular-down .lg-item.lg-next-slide,
.lg-css3.lg-slide-circular-down .lg-item.lg-current {
  -webkit-transition: opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, .25, 1) 0s;
  transition: opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, .25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, .25, 1) 0s, opacity 1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, .25, 1) 0s, opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, .25, 1) 0s;
}

.lg-css3.lg-slide-circular-vertical .lg-item {
  opacity: 0;
}

.lg-css3.lg-slide-circular-vertical .lg-item.lg-prev-slide {
  -webkit-transform: scale3d(0, 0, 0) translate3d(0, -100%, 0);
  transform: scale3d(0, 0, 0) translate3d(0, -100%, 0);

  will-change: transform;
}

.lg-css3.lg-slide-circular-vertical .lg-item.lg-next-slide {
  -webkit-transform: scale3d(0, 0, 0) translate3d(0, 100%, 0);
  transform: scale3d(0, 0, 0) translate3d(0, 100%, 0);

  will-change: transform;
}

.lg-css3.lg-slide-circular-vertical .lg-item.lg-current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);

  will-change: transform;
}

.lg-css3.lg-slide-circular-vertical .lg-item.lg-prev-slide,
.lg-css3.lg-slide-circular-vertical .lg-item.lg-next-slide,
.lg-css3.lg-slide-circular-vertical .lg-item.lg-current {
  -webkit-transition: opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, .25, 1) 0s;
  transition: opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, .25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, .25, 1) 0s, opacity 1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, .25, 1) 0s, opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, .25, 1) 0s;
}

.lg-css3.lg-slide-circular-vertical-left .lg-item {
  opacity: 0;
}

.lg-css3.lg-slide-circular-vertical-left .lg-item.lg-prev-slide {
  -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, -100%, 0);
  transform: scale3d(0, 0, 0) translate3d(-100%, -100%, 0);

  will-change: transform;
}

.lg-css3.lg-slide-circular-vertical-left .lg-item.lg-next-slide {
  -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 100%, 0);
  transform: scale3d(0, 0, 0) translate3d(-100%, 100%, 0);

  will-change: transform;
}

.lg-css3.lg-slide-circular-vertical-left .lg-item.lg-current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);

  will-change: transform;
}

.lg-css3.lg-slide-circular-vertical-left .lg-item.lg-prev-slide,
.lg-css3.lg-slide-circular-vertical-left .lg-item.lg-next-slide,
.lg-css3.lg-slide-circular-vertical-left .lg-item.lg-current {
  -webkit-transition: opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, .25, 1) 0s;
  transition: opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, .25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, .25, 1) 0s, opacity 1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, .25, 1) 0s, opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, .25, 1) 0s;
}

.lg-css3.lg-slide-circular-vertical-down .lg-item {
  opacity: 0;
}

.lg-css3.lg-slide-circular-vertical-down .lg-item.lg-prev-slide {
  -webkit-transform: scale3d(0, 0, 0) translate3d(100%, -100%, 0);
  transform: scale3d(0, 0, 0) translate3d(100%, -100%, 0);

  will-change: transform;
}

.lg-css3.lg-slide-circular-vertical-down .lg-item.lg-next-slide {
  -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 100%, 0);
  transform: scale3d(0, 0, 0) translate3d(100%, 100%, 0);

  will-change: transform;
}

.lg-css3.lg-slide-circular-vertical-down .lg-item.lg-current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);

  will-change: transform;
}

.lg-css3.lg-slide-circular-vertical-down .lg-item.lg-prev-slide,
.lg-css3.lg-slide-circular-vertical-down .lg-item.lg-next-slide,
.lg-css3.lg-slide-circular-vertical-down .lg-item.lg-current {
  -webkit-transition: opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, .25, 1) 0s;
  transition: opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, .25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, .25, 1) 0s, opacity 1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, .25, 1) 0s, opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, .25, 1) 0s;
}

.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  display: block;
  width: 30px;
  height: 87px;
  margin-top: -44px;
  padding: 0;
  border: none;
  font-size: 0;
  line-height: 0;
  color: transparent;
  background-color: transparent;
  background-repeat: no-repeat;
  outline: none;
  opacity: .5;
}
@media (max-width: 480px) {
  .slick-prev,
  .slick-next {
    margin-top: -30px;
    background-size: 70%;
  }
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  opacity: 1;
}

.slick-prev:hover,
.slick-next:hover {
  cursor: pointer;
}

.slick-prev.slick-disabled,
.slick-next.slick-disabled {
  cursor: default;
  opacity: .25;
}

.slick-prev {
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 31.02 87.57'%3E%3Cpolyline points='30.61 0.29 0.61 43.29 30.61 87.29' style='fill:none;stroke:%23050000;stroke-miterlimit:10'/%3E%3C/svg%3E");
}

.slick-next {
  right: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 31.02 87.57'%3E%3Cpolyline points='0.41 0.29 30.41 43.29 0.41 87.29' style='fill:none;stroke:%23050000;stroke-miterlimit:10'/%3E%3C/svg%3E");
}

.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  right: 0;
  left: 0;
  display: block;
  margin-top: 20px;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 21px;
  height: 21px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots button {
  display: block;
  width: 21px;
  height: 21px;
  padding: 5px;
  border: 0;
  font-size: 0;
  line-height: 0;
  color: transparent;
  cursor: pointer;
  background: transparent;
  outline: none;
}

.slick-dots button:hover,
.slick-dots button:focus {
  outline: none;
}

.slick-dots button:hover:before,
.slick-dots button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 11px;
  margin: -6px 0 0 -6px;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transition: background-color .15s;
  transition: background-color .15s;
}

.slick-dots button:hover:before,
.slick-dots .slick-active button:before {
  background-color: #204d84;
}

.main-slider .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;

  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
.main-slider .slick-dots li {
  width: 50px;
  height: 22px;
  margin: 0 5px;
}
@media (max-width: 480px) {
  .main-slider .slick-dots li {
    width: 30px;
    margin: 0 10px;
  }
}
.main-slider .slick-dots button {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
}
.main-slider .slick-dots button:before,
.main-slider .slick-dots button:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
}
.main-slider .slick-dots button:before {
  top: auto;
  width: 100%;
  margin: 0;
  border-radius: 0;
  background-color: #000;
  -webkit-transition: background-color .3s ease;
  transition: background-color .3s ease;
}
.main-slider .slick-dots button:after {
  width: 0;
  background-color: #005def;
}
.main-slider .slick-dots button:hover:after {
  width: 100%;
}
.main-slider .slick-dots .slick-active button:hover {
  cursor: default;
}
.main-slider .slick-dots .slick-active button:after {
  -webkit-animation: progressBar .4s linear forwards;
  animation: progressBar .4s linear forwards;
}

@-webkit-keyframes progressBar {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes progressBar {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

.about-info {
  min-width: 290px;
  max-width: 1920px;
  margin: 0 auto 112px;
  overflow: hidden;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#e0e5e8), to(#fff));
  background-image: linear-gradient(180deg, #e0e5e8 0%, #fff 100%);
}
@media (max-width: 960px) {
  .about-info {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .about-info {
    margin-bottom: 0;
  }
}
.about-info__title {
  margin: -30px 0 12px;
  font-family: GothamPro, Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 204px;
  font-weight: 900;
  line-height: 1;
  color: rgba(34, 34, 34, .02);
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 1200px) {
  .about-info__title {
    font-size: 17vw;
  }
}
@media (max-width: 767px) {
  .about-info__title {
    margin-top: 0;
  }
}
.about-info__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1010px;
  margin: auto;
  padding: 0 10px;
}
@media (max-width: 1100px) {
  .about-info__content {
    padding: 0;
  }
}
@media (max-width: 960px) {
  .about-info__content {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (max-width: 480px) {
  .about-info__content {
    display: block;
  }
}
.about-info__item {
  width: 25%;
  padding: 0 15px;
  text-align: center;
}
@media (max-width: 960px) {
  .about-info__item {
    width: 50%;
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .about-info__item {
    width: auto;
  }
}
.about-info__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 84px;
  height: 84px;
  justify-content: center;
  align-items: center;
  margin: 0 auto 30px;
  border-radius: 50%;
  background-color: #f6e5f9;

  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
}
.about-info__icon.about-info__icon--crimson {
  background-color: #f6e5f9;
}
.about-info__icon.about-info__icon--blue {
  background-color: #e7effa;
}
.about-info__icon.about-info__icon--pink {
  background-color: #fae6e8;
}
.about-info__icon.about-info__icon--yellow {
  background-color: #fcf9e7;
}
@media (max-width: 480px) {
  .about-info__icon {
    margin-bottom: 20px;
  }
}
.about-info__icon img {
  display: block;
}
.about-info__text {
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #222;
}

.types-operation {
  position: relative;
  min-width: 300px;
  max-width: 1200px;
  margin: auto;
  padding: 24px 0 54px;
  overflow: hidden;
}
.types-operation:before,
.types-operation:after {
  content: "";
  position: absolute;
}
.types-operation:before {
  top: 110px;
  right: 20px;
  z-index: -1;
  width: 620px;
  height: 105px;
  /*background: url("../images/main-page/types-operation/rokyta.png") no-repeat;*/
}
.types-operation:after {
  top: 54%;
  left: 244px;
  width: 103px;
  height: 103px;
  border-radius: 50%;
  background-color: #f2f7fd;
}
.types-operation__title {
  margin: 0 0 110px 112px;
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
  color: #222;
}
@media (max-width: 960px) {
  .types-operation__title {
    margin-left: 30px;
  }
}
@media (max-width: 480px) {
  .types-operation__title {
    margin: 0 0 40px;
    padding: 0 15px;
  }
}
.types-operation__title b {
  display: block;
  margin-bottom: 12px;
  font-size: 35px;
  font-weight: 900;
}
@media (max-width: 480px) {
  .types-operation__title b {
    font-size: 30px;
  }
}
.types-operation__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(50%, #f9f9f9), to(#fff));
  background: linear-gradient(to bottom, #fff 0%, #f9f9f9 50%, #fff 100%);
}
@media (max-width: 640px) {
  .types-operation__container {
    display: block;
  }
}
.types-operation__content {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 65.5%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;

  -webkit-box-pack: center;
  -ms-flex-pack: center;
}
@media (max-width: 640px) {
  .types-operation__content {
    width: auto;
    margin-bottom: 30px;
  }
}
@media (max-width: 420px) {
  .types-operation__content {
    display: block;
  }
}
.types-operation__item {
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 165px;
  height: 193px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 4.2%;
  border-radius: 3px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 18px rgba(0, 0, 0, .34);
  box-shadow: 0 0 18px rgba(0, 0, 0, .34);

  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
@media (max-width: 960px) {
  .types-operation__item {
    margin: 0 4.2% 20px;
  }
}
.types-operation__item:nth-child(2n) {
  margin: -60px 0 78px;
}
@media (max-width: 960px) {
  .types-operation__item:nth-child(2n) {
    margin: 0 4.2% 20px;
  }
}
@media (max-width: 420px) {
  .types-operation__item:nth-child(2n) {
    margin: 0 auto 20px;
  }
}
@media (max-width: 420px) {
  .types-operation__item {
    max-width: 165px;
    margin: 0 auto 20px;
  }
}
.types-operation__icon {
  margin-bottom: 12px;
}
.types-operation__text {
  font-size: 14px;
  color: #222;
  text-align: center;
}
.types-operation__footer {
  width: 34.5%;
}
@media (max-width: 640px) {
  .types-operation__footer {
    width: auto;
    text-align: center;
  }
}
.types-operation__img {
  margin: -32px 0 23px;
}
@media (max-width: 960px) {
  .types-operation__img {
    margin: 0 0 64px;
  }
}
@media (max-width: 640px) {
  .types-operation__img {
    display: none;
  }
}
.types-operation__btn {
  padding: 16px 32px;
  font-size: 14px;
}

.standards {
  min-width: 300px;
  /*max-width: 1200px;*/
  margin: auto;
  padding: 66px 0 92px;
  /*background: url("../images/main-page/standards/bg-standards.jpg") no-repeat 50%;*/
  /*background-size: cover;*/
}
@media (max-width: 767px) {
  .standards {
    padding: 40px 0 50px;
  }
}
.standards__container {
  max-width: 1010px;
  margin: auto;
  padding: 0 15px;
}
.standards__title {
  margin-bottom: 68px;
}
@media (max-width: 767px) {
  .standards__title {
    margin-bottom: 40px;
  }
}
.standards__features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-around;
  margin-bottom: 66px;

  -ms-flex-pack: distribute;
}
@media (max-width: 767px) {
  .standards__features {
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .standards__features {
    display: block;
  }
}
.standards__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 25%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  align-items: center;
  text-align: center;

  -webkit-box-align: center;
  -ms-flex-align: center;
}
@media (max-width: 767px) {
  .standards__item {
    width: 33.3%;
  }
}
@media (max-width: 480px) {
  .standards__item {
    width: auto;
    margin-bottom: 30px;
  }
}
.standards__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 84px;
  height: 84px;
  align-items: center;
  margin-bottom: 20px;
  border-radius: 50%;
  background-color: #f6e5f9;

  -webkit-box-align: center;
  -ms-flex-align: center;
}
.standards__icon.standards__icon--crimson {
  background-color: #f6e5f9;
}
.standards__icon.standards__icon--blue {
  background-color: #e7effa;
}
.standards__icon.standards__icon--pink {
  background-color: #fae6e8;
}
@media (max-width: 480px) {
  .standards__icon {
    margin-bottom: 20px;
  }
}
.standards__icon img {
  display: block;
  margin: auto;
}
.standards__caption {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #020202;
}
.standards__text {
  margin-bottom: 16px;
  line-height: 1.25;
  color: #000;
}
.standards__text p {
  margin: 16px 0 0;
  font-size: 14px;
  font-weight: 400;
}
.standards__text b {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  vertical-align: baseline;
}
.standards__btn {
  margin-top: 0;
}
.standards__footer {
  margin-top: 46px;
  text-align: center;
}
.standards__footer-btn {
  padding: 16px 32px;
  font-size: 14px;
}

.footer {
  padding: 20px 0 22px;
  border: 0 !important;
  background-color: #363636 !important;
}
.footer__container {
  max-width: 1300px;
  margin: auto;
  padding: 0 15px;
}
.footer__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .footer__main {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (max-width: 480px) {
  .footer__main {
    margin-bottom: 0;
  }
}
@media (max-width: 420px) {
  .footer__main {
    display: block;
    text-align: center;
  }
}
.footer__group {
  width: 25%;
}
.footer__group:not(:last-child) {
  margin-right: 20px;
}
@media (max-width: 960px) {
  .footer__group:not(:last-child) {
    margin-right: 10px;
  }
}
@media (max-width: 767px) {
  .footer__group:not(:last-child) {
    margin-right: 0;
    padding-right: 10px;
  }
}
@media (max-width: 767px) {
  .footer__group {
    width: 33%;
  }
  .footer__group:first-child {
    width: 100%;
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .footer__group {
    width: 50%;
    margin-bottom: 30px;
  }
  .footer__group:first-child {
    width: 50%;
  }
}
@media (max-width: 420px) {
  .footer__group {
    width: auto;
  }
  .footer__group:first-child {
    width: auto;
  }
}
.footer__title {
  display: block;
  margin: 6px 0 22px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  color: #fffefe;
  text-transform: uppercase;
}
.footer__logo {
  display: block;
  width: 178px;
}
@media (max-width: 480px) and (min-width: 421px) {
  .footer__logo {
    width: 100%;
  }
}
@media (max-width: 420px) {
  .footer__logo {
    margin: auto;
  }
}
.footer__logo-img {
  display: block;
  width: 100%;
  height: auto;
}
.footer__link,
.footer a[href^="tel:"],
.footer a[href^="callto:"],
.footer__address,
.footer__copyright {
  font-weight: 400;
  line-height: 1.4;
  color: #dedede;
  letter-spacing: .6px;
}
.footer__link,
.footer a[href^="tel:"],
.footer a[href^="callto:"] {
  display: block;
  -webkit-transition: color .15s;
  transition: color .15s;
}
.footer__link:hover,
.footer a[href^="tel:"]:hover,
.footer a[href^="callto:"]:hover {
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
.footer__address {
  margin-bottom: 18px;
}
.footer__copyright {
  margin: 0 0 0 12px;
}
@media (max-width: 960px) {
  .footer__copyright {
    margin: 0;
  }
}
@media (max-width: 420px) {
  .footer__copyright {
    text-align: center;
  }
}
.certs_link {
  width: 100%;
  text-align: center;
}