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

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

@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Bold.woff2") format("woff2"), url("../fonts/OpenSans-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Regular.woff2") format("woff2"), url("../fonts/OpenSans-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Light.woff2") format("woff2"), url("../fonts/OpenSans-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

* {
  background: none;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
}

button {
  cursor: pointer;
}

html,
body {
  height: 100%;
}

img {
  height: auto;
  max-width: 100%;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

strong {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}

body {
  background-color: #fff;
  color: #333;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  line-height: 1.4em;
  font-weight: 400;
  margin: 0;
}

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

.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1140px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

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

.section-title,
.page-title {
  text-align: center;
}

.wrap-video {
  border-radius: 50%;
  bottom: 0;
  cursor: pointer;
  height: 200px;
  left: 50%;
  overflow: hidden;
  position: absolute;
  -webkit-transition: height 0.3s, width 0.3s;
  -o-transition: height 0.3s, width 0.3s;
  transition: height 0.3s, width 0.3s;
  -webkit-transition-duration: 3s;
       -o-transition-duration: 3s;
          transition-duration: 3s;
  -webkit-transform: translate(-50%, -8%);
      -ms-transform: translate(-50%, -8%);
          transform: translate(-50%, -8%);
  top: auto;
  width: 200px;
  z-index: 1;
}

.wrap-video.zoom-block-video video {
  height: inherit;
  width: inherit;
}

.wrap-video.paused-video svg {
  opacity: 1;
  height: 30%;
  visibility: visible;
  width: 30%;
  z-index: 1;
}

.wrap-video svg {
  color: #fff;
  opacity: 0;
  left: 50%;
  height: 0;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  visibility: hidden;
  top: 50%;
  width: 0;
  z-index: -1;
}

.wrap-video video {
  border-radius: inherit;
  height: 0;
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
  top: 50%;
  width: 0;
  z-index: 1;
}

/* Lazy load Animation */

.sk-spinner-pulse {
  -webkit-animation: sk-spinner-pulse 1s infinite ease-in-out;
  animation: sk-spinner-pulse 1s infinite ease-in-out;
  background-color: #337ab7;
  border-radius: 100%;
  height: 50px;
  width: 50px;
}

@-webkit-keyframes sk-spinner-pulse {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes sk-spinner-pulse {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.sk-spinner {
  margin-left: -25px;
  margin-top: -25px;
  position: absolute;
  left: 50%;
  top: 50%;
}

.b-lazy {
  opacity: 0;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.b-lazy.b-loaded {
  opacity: 1;
}

body.admin-bar .header {
  top: 46px;
}

.header {
  background-color: #000;
  left: 0;
  min-height: 80px;
  position: fixed;
  right: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  top: 0;
  z-index: 100;
}

.header .container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: inherit;
}

.header.scrollPage {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.header.scrollPage .top-panel {
  height: 40px;
}

.header.scrollPage .topmenu__list {
  -webkit-box-shadow: 0 5px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 6px rgba(0, 0, 0, 0.1);
  top: 40px;
}

.header.scrollPage .topmenu__list.open {
  height: calc(100vh - 40px);
}

.header.scrollPage .header__button {
  padding: 11px 25px 12px;
}

.header__wrapLogo {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 1;
}

.header__wrapLogo a {
  margin-right: 22px;
  margin-top: 3px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.header__wrapLogo a:hover {
  opacity: 0.7;
}

.header__siteDesc {
  color: #c4c4c4;
  font-size: 10px;
  line-height: 1.2em;
  letter-spacing: 5px;
  max-width: 150px;
  text-transform: uppercase;
}

.header__burger {
  background: #000;
  border: none;
  display: block;
  font-size: 0;
  height: 20px;
  padding: 0;
  position: relative;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  width: 28px;
  z-index: 1;
}

.header__burgerIcon {
  background-color: #c4c4c4;
  display: block;
  height: 2px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.header__burgerIcon:before,
.header__burgerIcon:after {
  background-color: inherit;
  content: "";
  display: inherit;
  height: inherit;
  left: 0;
  position: absolute;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  top: 0;
  width: inherit;
}

.header__burgerIcon:before {
  top: -8px;
}

.header__burgerIcon:after {
  top: 8px;
}

.header.open .topmenu__burgerLine {
  background-color: transparent;
}

.header.open .topmenu__burgerLine:before,
.header.open .topmenu__burgerLine:after {
  background-color: #657783;
  top: 0;
}

.header.open .topmenu__burgerLine:before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.header.open .topmenu__burgerLine:after {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.topmenu {
  top: 46px;
}

.topmenu ul li {
  list-style: none;
  margin: 0 0 20px;
}

.topmenu ul li:last-child {
  margin-right: 0;
}

.topmenu ul li a {
  color: #e9db89;
  font-size: 16px;
  line-height: 1.4em;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.topmenu ul li:hover a,
.topmenu ul li.current-menu-item a,
.topmenu ul li.current_page_item a {
  color: #24a9bf;
}

.firstScreen {
  background-color: #191919;
  color: #f4eab1;
  height: 802px;
  overflow: hidden;
  position: relative;
}

.firstScreen__image {
  height: inherit;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
  min-width: 1920px;
}

.firstScreen__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.firstScreen__item:nth-child(1) {
  width: 40%;
}

.firstScreen__item:nth-child(2) {
  width: 60%;
}

.firstScreen__siteDesc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 22px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 2px;
  margin: 0 44px 95px auto;
  max-width: 300px;
  padding-top: 60px;
  text-transform: uppercase;
  text-align: right;
}

.firstScreen__mainTitle {
  font-size: 37px;
  font-weight: 700;
  line-height: 46px;
  letter-spacing: 1px;
  margin-right: 45px;
  text-transform: uppercase;
}

.firstScreen__mainTitle span {
  display: block;
  text-align: right;
}

.firstScreen__descText {
  font-size: 17px;
  line-height: 1.4em;
  padding-left: 64px;
  padding-right: 40px;
}

.firstScreen #playpause-fs-video {
  cursor: pointer;
  position: relative;
  left: -2px;
  top: 1px;
}

.firstScreen #playpause-fs-video.wrap-fs-video {
  position: relative;
}

.firstScreen #playpause-fs-video.wrap-fs-video svg {
  color: #fff;
  left: 50%;
  opacity: 0;
  position: absolute;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
  width: 0;
}

.firstScreen #playpause-fs-video.wrap-fs-video.paused-video svg {
  opacity: 1;
  width: 68px;
}

.news {
  background-color: #253235;
  padding-bottom: 20px;
  padding-top: 31px;
}

.news__sectionTitle,
.news__textUnderTitle,
.news__category {
  color: #f4eab1;
}

.news__sectionTitle,
.news__textUnderTitle,
.news__category a {
  text-align: center;
}

.news__sectionTitle {
  font-size: 30px;
  line-height: 1.4em;
  margin: 0;
}

.news__textUnderTitle {
  display: table;
  font-size: 13px;
  line-height: 1.4em;
  margin-left: auto;
  margin-right: auto;
  margin-top: 11px;
  max-width: 400px;
}

.news__postItems {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -18px;
  margin-right: -18px;
  margin-top: 44px;
}

.news__postItem {
  background-color: #163e3a;
  color: #fff;
  margin-bottom: 35px;
  margin-left: 18px;
  margin-right: 18px;
  position: relative;
  width: calc(33.3333% - 36px);
}

.news__postItem:hover .news__introContent {
  margin-bottom: 20%;
  margin-top: -20%;
}

.news__postItem:hover .news__wrapPermalink {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.news__category {
  display: inline-block;
  padding: 2px 28px 5px;
  position: absolute;
  -webkit-transform: translate(-5px, -50%);
      -ms-transform: translate(-5px, -50%);
          transform: translate(-5px, -50%);
  z-index: 1;
}

.news__category p {
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 2px;
  margin: 0;
}

.news__category.analityka {
  background-color: #943616;
}

.news__category.doslidzhennya {
  background-color: #2b7c74;
}

.news__blockImage {
  background-color: #ddd;
  padding-bottom: 81%;
  position: relative;
}

.news__image {
  left: 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0;
  width: 100%;
}

.news__introContent {
  background-color: inherit;
  padding: 22px 20px 8px;
  position: relative;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.news__title {
  font-size: 21px;
  font-weight: 700;
  line-height: 28px;
  margin: 0 0 15px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -moz-box;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news__author {
  color: inherit;
  font-size: 13px;
  line-height: 1.4em;
}

.news__wrapPermalink {
  bottom: 9px;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  visibility: hidden;
  z-index: 0;
}

.news__permalink {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  padding: 0 20px;
}

.news__permalinkIcon {
  margin-left: 16px;
  margin-top: 2px;
  width: 34px;
}

.phInfographics {
  overflow: hidden;
}

.phInfographics__blockImage {
  height: 209px;
  left: 50%;
  position: relative;
  min-width: 1008px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.phInfographics__blockImage .wrap-video {
  -webkit-transform: translate(-50%, 13%) !important;
      -ms-transform: translate(-50%, 13%) !important;
          transform: translate(-50%, 13%) !important;
}

.phInfographics__image {
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
}

.phInfographics__sectionTitle {
  color: #000;
  font-size: 30px;
  line-height: 1.4em;
  margin: 0 0 21px;
  padding-top: 49px;
  text-align: center;
}

.phInfographics__textUnderTitle {
  display: table;
  font-size: 13px;
  line-height: 1.4em;
  margin-left: auto;
  margin-right: auto;
  margin-top: 11px;
  max-width: 400px;
  text-align: center;
}

.phInfographics .infographics {
  overflow: hidden;
}

.phInfographics .infographics__items {
  -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
}

.phInfographics .infographics__item {
  background-color: #f9f9f9;
  margin: 0 !important;
}

.phInfographics .infographics__item:nth-child(1) {
  width: 100% !important;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 63% !important;
}

.phInfographics .infographics__item:nth-child(1) .infographics__wrap-intro-content {
  background-color: rgba(251, 243, 232, 0.95) !important;
  bottom: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  max-width: 655px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 !important;
  top: 0 !important;
  opacity: 1 !important;
}

.phInfographics .infographics__item:nth-child(1) .infographics__title {
  margin: -3px 0 16px;
}

.phInfographics .infographics__item:nth-child(1) .infographics__blockExcerpt {
  padding-bottom: 30px;
  padding-left: 14px;
  padding-right: 14px;
  width: calc(100% - 214px);
}

.phInfographics .infographics__item:nth-child(1) .infographics__blockExcerpt p {
  color: #000;
  font-size: 14px;
  line-height: 1.4em;
  text-align: left;
}

.phInfographics .infographics__item:nth-child(1) .infographics__permalink {
  opacity: 1;
  pointer-events: all;
  left: 0;
  -webkit-transform: translate(228px, 0) !important;
      -ms-transform: translate(228px, 0) !important;
          transform: translate(228px, 0) !important;
}

.phInfographics .infographics__item:nth-child(1) .pageHeader__author-text-design {
  border-right: 1px solid #000;
  padding-bottom: 8px;
  padding-left: 8px;
  padding-right: 13px;
  text-align: right;
  width: 214px;
}

.phInfographics .infographics__item:nth-child(1) .pageHeader__author-text-design strong {
  display: block;
}

.phInfographics .infographics__permalink {
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}

.phInfographics .infographics__items {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 42px 0 0 !important;
  padding-left: 0 !important;
  padding-right: 45px !important;
}

.phInfographics .infographics__items .wrap-items {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fbf3e8;
  display: inherit;
  -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;
  height: 100%;
  margin-right: 45px;
  padding: 22px 22px 41px;
  width: calc(37% - 45px);
  min-width: 270px;
}

.phInfographics .infographics__items .wrap-items .infographics__item {
  background-color: #fff;
  height: 285px;
  margin-bottom: 25px !important;
  padding-bottom: 19.3% !important;
  width: 214px !important;
}

.phInfographics .infographics__items .wrap-items .infographics__item:first-child {
  margin-bottom: 0 !important;
}

.phInfographics .infographics__items .wrap-items .infographics__item .infographics__wrap-intro-content {
  background-color: #fff !important;
  bottom: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  opacity: 0 !important;
  padding: 10px !important;
  top: 35px !important;
}

.phInfographics .infographics__items .wrap-items .infographics__item .infographics__title {
  margin-bottom: 4px;
}

.phInfographics .infographics__items .wrap-items .infographics__item .infographics__blockExcerpt {
  padding-bottom: 0;
  padding-left: 0;
  width: auto;
}

.phInfographics .infographics__items .wrap-items .infographics__item .infographics__blockExcerpt p {
  font-size: 13px;
  line-height: 1.4em;
  text-align: center;
}

.phInfographics .infographics__items .wrap-items .infographics__item .pageHeader__author-text-design {
  border: 0;
  padding-bottom: 0;
  padding-right: 0;
  text-align: center;
  width: auto;
}

.phInfographics .infographics__items .wrap-items .infographics__item:hover .infographics__wrap-intro-content,
.phInfographics .infographics__items .wrap-items .infographics__item:hover .infographics__permalink {
  opacity: 1 !important;
}

.phInfographics .infographics__items .wrap-items .infographics__item:hover .infographics__permalink {
  pointer-events: all !important;
}

.phInfographics .infographics__items .wrap-items .infographics__title {
  margin-top: 0;
}

.phInfographics .infographics__items .wrap-items .infographics__permalink {
  left: 50% !important;
  pointer-events: none !important;
  -webkit-transform: translate(-50%, 123%) !important;
      -ms-transform: translate(-50%, 123%) !important;
          transform: translate(-50%, 123%) !important;
}

.phInfographics .infographics__items .wrap-items .pageHeader__author-text,
.phInfographics .infographics__items .wrap-items .pageHeader__design-author {
  display: none;
}

.randNews {
  padding-top: 65px;
}

.randNews__sectionTitle {
  color: #000;
  font-size: 30px;
  line-height: 1.4em;
  margin: 0;
  text-align: center;
}

.randNews__textUnderTitle {
  display: table;
  font-size: 13px;
  line-height: 1.4em;
  margin-left: auto;
  margin-right: auto;
  margin-top: 11px;
  max-width: 400px;
  text-align: center;
}

.randNews__postItems {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  margin-top: 30px;
}

.randNews .news__category {
  -webkit-transform: translate(0);
      -ms-transform: translate(0);
          transform: translate(0);
}

.randNews__postItem {
  margin-left: 15px;
  margin-right: 15px;
  margin-top: 37px;
  width: calc(50% - 30px);
}

.randNews__title {
  font-size: 22px;
  line-height: 1.3em;
  margin: 31px 0 0;
}

.randNews__title a {
  color: inherit;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.randNews__title a:hover {
  color: #24a9bf;
}

.randNews__author {
  font-size: 14px;
  line-height: 1.4em;
  margin: 6px 0 0;
}

.randNews__excerpt {
  padding: 4px 0 8px;
}

.randNews__excerpt p {
  font-size: 14px;
  line-height: 1.4em;
}

.randNews__blockImage {
  display: block;
  padding-bottom: 43%;
  position: relative;
}

.randNews__blockImage:hover:before {
  opacity: 0.3;
}

.randNews__blockImage:before {
  background-color: #000;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  top: 0;
  z-index: 1;
}

.randNews__image {
  left: 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

/**
 * Swiper 6.4.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2020 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: December 9, 2020
 */

@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
       -o-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

/* 3D Effects */

.swiper-container-3d {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */

.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

:root {
  --swiper-navigation-size: 44px;
  /*
   --swiper-navigation-color: var(--swiper-theme-color);
   */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  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;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-prev.swiper-button-white,
.swiper-button-next.swiper-button-white {
  --swiper-navigation-color: #ffffff;
}

.swiper-button-prev.swiper-button-black,
.swiper-button-next.swiper-button-black {
  --swiper-navigation-color: #000000;
}

.swiper-button-lock {
  display: none;
}

:root {
  /*
   --swiper-pagination-color: var(--swiper-theme-color);
   */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
      -ms-transform: scale(0.33);
          transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
      -ms-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
      -ms-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
      -ms-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
      -ms-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Progress */

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
      -ms-transform-origin: right top;
          transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white {
  --swiper-pagination-color: #ffffff;
}

.swiper-pagination-black {
  --swiper-pagination-color: #000000;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  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;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */

:root {
  /*
   --swiper-preloader-color: var(--swiper-theme-color);
   */
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
      -ms-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/* a11y */

.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
       -o-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
      -ms-transform-origin: 0 0;
          transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
      -ms-transform-origin: 100% 0;
          transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.reviews {
  background-color: #fbf3e8;
}

.reviews__wrapSlider {
  overflow: hidden;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 80px;
  padding-top: 66px;
}

.reviews .section-title {
  background-color: #fff;
  font-size: 30px;
  line-height: 1.4em;
  padding-bottom: 29px;
  padding-top: 35px;
}

.reviews__blockImage {
  background-color: #fff;
  border-radius: 50%;
  height: 200px;
  left: 50%;
  overflow: hidden;
  position: relative;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 200px;
}

.reviews__image {
  left: 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0;
  width: 100%;
}

.reviews__name,
.reviews__review {
  text-align: center;
}

.reviews__name {
  color: #943616;
  font-size: 26px;
  line-height: 1em;
  margin: 47px 0 20px;
}

.reviews__review {
  font-size: 13px;
  line-height: 1.7em;
  max-width: 265px;
  margin-left: auto;
  margin-right: auto;
}

.reviews__quote {
  color: #943616;
  left: 50%;
  margin-top: 58px;
  position: relative;
  -webkit-transform: translateX(-50%) rotate(180deg);
      -ms-transform: translateX(-50%) rotate(180deg);
          transform: translateX(-50%) rotate(180deg);
  text-align: center;
  width: 36px;
}

.reviews .swiper-pagination-bullets {
  left: 50%;
  -webkit-transform: translate(-50%, 20px);
      -ms-transform: translate(-50%, 20px);
          transform: translate(-50%, 20px);
}

.reviews .swiper-pagination-bullets .swiper-pagination-bullet {
  background: none !important;
  border: 2px solid #57bbbf;
  height: 20px;
  margin: 8px !important;
  position: relative;
  width: 20px;
}

.reviews .swiper-pagination-bullets .swiper-pagination-bullet:before {
  background-color: #57bbbf;
  border-radius: 50%;
  content: "";
  left: 50%;
  height: 12px;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
  width: 12px;
}

.reviews .swiper-pagination-bullet-active {
  opacity: 0.7;
}

html.no-scroll,
body.no-scroll {
  overflow: hidden;
}

.popup {
  background-color: rgba(8, 8, 8, 0.7);
  bottom: 0;
  left: 0;
  opacity: 0;
  overflow: auto;
  min-height: 100vh;
  position: fixed;
  right: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  top: 0;
  visibility: hidden;
  width: 100%;
  z-index: 1000;
}

.popup.show-popup {
  opacity: 1;
  visibility: visible;
  z-index: 1000;
}

.popup__wrapBody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  padding: 30px 15px;
}

.popup__body {
  background-color: #ffffff;
  -webkit-box-shadow: 0px 2px 10px #080808;
          box-shadow: 0px 2px 10px #080808;
  border-radius: 8px;
  margin: auto;
  overflow: hidden;
  max-width: 640px;
  padding: 0 25px 25px;
}

.popup__close {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.18);
          box-shadow: 0 0 12px rgba(0, 0, 0, 0.18);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 25px;
  margin-left: auto;
  position: relative;
  right: 0;
  top: 15px;
  width: 25px;
}

.popup__close:hover svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.popup__close svg {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.popup__title {
  font-size: 24px;
  margin-bottom: 50px;
  margin-top: 35px;
  text-align: center;
}

.popup__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 14px;
}

.popup__wrapField {
  margin-bottom: 15px;
  width: calc(50% - 10px);
}

.popup__wrapField:nth-child(odd) {
  margin-right: 10px;
}

.popup__wrapField:nth-child(even) {
  margin-left: 10px;
}

.popup__wrapField:nth-child(9) {
  margin-right: 0;
  width: 100%;
}

.popup__wrapField.invalid .popup__field {
  border-color: #ff0000;
}

.popup__wrapField.valid .popup__field {
  border-color: #008000;
}

.popup__wrapField.empty .popup__required,
.popup__wrapField.number .popup__symbols {
  display: block;
  opacity: 1;
  visibility: visible;
}

.popup__field {
  border: 1px solid #ddd;
  color: #717171;
  height: 40px;
  font-size: inherit;
  line-height: 40px;
  padding: 0 15px;
  width: 100%;
}

.popup__field[name="invisible"] {
  display: none;
}

.popup__field::-webkit-input-placeholder {
  color: inherit;
}

.popup__field::-moz-placeholder {
  color: inherit;
}

.popup__field:-ms-input-placeholder {
  color: inherit;
}

.popup__field::-ms-input-placeholder {
  color: inherit;
}

.popup__field::placeholder {
  color: inherit;
}

.popup__notification {
  margin-top: 2px;
}

.popup__required {
  color: inherit;
  color: #ff0000;
  font-size: 14px;
  opacity: 0;
  display: none;
  margin-right: 5px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  visibility: hidden;
}

.popup__symbols {
  color: inherit;
  color: #ff0000;
  font-size: 14px;
  opacity: 0;
  display: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  visibility: hidden;
}

.popup__text-after-sending {
  display: none;
  margin-left: 10px;
  margin-right: 10px;
  width: 100%;
}

.popup__text-after-sending.good {
  display: block;
}

.popup__text-after-sending p {
  margin: 0 0 15px;
}

.popup__submit {
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
  cursor: pointer;
  height: 40px;
  min-width: 129px;
  margin-left: auto;
  padding: 0 20px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.popup__submit:hover {
  background-color: transparent;
  color: #000;
}

#popup-to-network-of-institution .popup__form,
#popup-to-network-of-expert .popup__form {
  font-family: "Open Sans", sans-serif;
  margin-left: -10px;
  margin-right: -10px;
}

#popup-to-network-of-institution .popup__wrapField,
#popup-to-network-of-expert .popup__wrapField {
  margin-left: 10px !important;
  margin-right: 10px !important;
  width: calc(33.3333% - 20px);
}

#popup-to-network-of-institution .popup__wrapField input,
#popup-to-network-of-institution .popup__wrapField textarea,
#popup-to-network-of-expert .popup__wrapField input,
#popup-to-network-of-expert .popup__wrapField textarea {
  font-family: "Open Sans", sans-serif;
}

#popup-to-network-of-institution .popup__wrapField-textarea,
#popup-to-network-of-expert .popup__wrapField-textarea {
  margin-bottom: 0;
  width: 100%;
}

#popup-to-network-of-institution .popup__wrapField-textarea textarea,
#popup-to-network-of-expert .popup__wrapField-textarea textarea {
  line-height: 18px;
  min-height: 200px;
  padding-bottom: 12px;
  padding-top: 12px;
  resize: none;
}

#popup-to-network-of-institution .popup__submit,
#popup-to-network-of-expert .popup__submit {
  margin-right: 10px;
  margin-top: 10px;
}

#popup-to-network-of-institution #text-after-sending-to-network-of-expert,
#popup-to-network-of-expert #text-after-sending-to-network-of-expert {
  margin-left: 10px;
}

#popup-to-network-of-institution #text-after-sending-to-network-of-expert p,
#popup-to-network-of-expert #text-after-sending-to-network-of-expert p {
  margin-bottom: 0;
}

.page-title {
  margin: 4px 0 0;
  text-transform: capitalize;
}

.page-category {
  padding-bottom: 75px;
}

.page-category .container {
  overflow: hidden;
}

.page-category .news__category {
  -webkit-transform: translate(0);
      -ms-transform: translate(0);
          transform: translate(0);
}

.page-category .randNews__postItems {
  margin-top: 23px;
}

.pageHeader {
  height: 250px;
  overflow: hidden;
  position: relative;
  left: 50%;
  min-width: 1008px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.pageHeader__image {
  position: absolute;
  top: 0;
}

.page-chain .pageHeader {
  background-color: #ccc;
  height: auto;
  padding-bottom: 33px;
  padding-top: 32px;
}

.page-chain .pageHeader .page-title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
}

.page-chain .pageHeader .page-title:after {
  background-color: #000;
  content: "";
  display: block;
  height: 2px;
  margin: 34px auto 0;
  width: 40px;
}

.page-chain .pageHeader__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -11.5px;
  margin-right: -11.5px;
  margin-top: 5px;
}

.page-chain .pageHeader__item {
  background-color: #dedede;
  margin-left: 11.5px;
  margin-right: 11.5px;
  padding: 23px 6%;
  width: calc(50% - 23px);
}

.page-chain .pageHeader__itemBlockIcon {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 90px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 15px;
}

.page-chain .pageHeader__image {
  left: 50%;
  height: 100%;
  position: relative;
  margin-right: auto;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: auto;
}

.page-chain .pageHeader__itemText {
  font-size: 15px;
  text-align: center;
}

.page-chain .pageHeader__itemButton {
  background-color: #000;
  border: 1px solid transparent;
  color: #fff;
  display: table;
  font-size: 13px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 28px;
  width: 273px;
  max-width: 100%;
  padding: 11px 15px 12px;
  text-align: center;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.page-chain .pageHeader__itemButton:hover {
  background-color: #fff;
  border: 1px solid #000;
  color: #000;
}

.page-chain .page-content-title {
  font-size: 25px;
  line-height: 30px;
  margin: 46px auto 0;
  max-width: 550px;
  text-align: center;
}

.page-chain .pageHeader,
.page-infographics .pageHeader {
  left: 0;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  min-width: 100%;
}

.phInfographics,
.page-infographics {
  overflow: hidden;
}

.phInfographics .pageHeader,
.page-infographics .pageHeader {
  background-color: #ccc;
  height: auto;
  padding-bottom: 25px;
  padding-top: 29px;
  text-align: center;
}

.phInfographics .pageHeader .page-title,
.page-infographics .pageHeader .page-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2em;
  letter-spacing: 2px;
  text-transform: none;
}

.phInfographics .pageHeader .page-title:after,
.page-infographics .pageHeader .page-title:after {
  background-color: #000;
  content: "";
  display: block;
  height: 2px;
  margin: 23px auto 0;
  width: 40px;
}

.phInfographics .pageHeader__text-under-title,
.page-infographics .pageHeader__text-under-title {
  font-size: 14px;
  line-height: 1.4em;
  margin: 17px auto 0;
  max-width: 568px;
}

.phInfographics .pageHeader__author-text-design,
.page-infographics .pageHeader__author-text-design {
  font-size: 13px;
  line-height: 1.4em;
  padding-top: 18px;
}

.phInfographics .pageHeader__author-text-design strong,
.page-infographics .pageHeader__author-text-design strong {
  font-size: 14px;
}

.phInfographics .pageHeader__author-text,
.page-infographics .pageHeader__author-text {
  margin: 0;
}

.phInfographics .pageHeader__design-author,
.page-infographics .pageHeader__design-author {
  margin: 0;
}

.phInfographics .page-infographics__additional-text-block,
.page-infographics .page-infographics__additional-text-block {
  margin-top: 25px;
  padding-left: 80px;
  padding-right: 80px;
}

.phInfographics .page-infographics__additional-text-block:after,
.page-infographics .page-infographics__additional-text-block:after {
  background-color: #000;
  content: "";
  display: block;
  height: 2px;
  margin: 42px auto 0;
  width: 63px;
}

.phInfographics .page-infographics__additional-text-block p,
.page-infographics .page-infographics__additional-text-block p {
  font-size: 14px;
  line-height: 1.4em;
  text-align: justify;
}

.phInfographics #page-content-btn-top,
.page-infographics #page-content-btn-top {
  margin: 32px auto 46px;
}

.phInfographics .infographics__items,
.page-infographics .infographics__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -34px;
  margin-right: -34px;
  margin-bottom: 40px;
  margin-top: 26px;
  padding-left: 80px;
  padding-right: 80px;
}

.phInfographics .infographics__item,
.page-infographics .infographics__item {
  margin-bottom: 38px;
  margin-left: 34px;
  margin-right: 34px;
  padding-bottom: 35%;
  position: relative;
  width: calc(33.3333% - 68px);
}

.phInfographics .infographics__item:hover .infographics__wrap-intro-content,
.phInfographics .infographics__item:hover .infographics__permalink,
.page-infographics .infographics__item:hover .infographics__wrap-intro-content,
.page-infographics .infographics__item:hover .infographics__permalink {
  opacity: 1;
}

.phInfographics .infographics__item:hover .infographics__permalink,
.page-infographics .infographics__item:hover .infographics__permalink {
  pointer-events: all;
}

.phInfographics .infographics__image,
.page-infographics .infographics__image {
  left: 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

.phInfographics .infographics__wrap-intro-content,
.page-infographics .infographics__wrap-intro-content {
  background-color: #fff;
  bottom: 22px;
  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;
  left: 20px;
  right: 20px;
  opacity: 0;
  padding: 10px;
  position: absolute;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  top: 35px;
  text-align: center;
  z-index: 1;
}

.phInfographics .infographics__wrap-intro-content p,
.page-infographics .infographics__wrap-intro-content p {
  font-size: 13px;
  line-height: 1.4em;
}

.phInfographics .infographics__title,
.page-infographics .infographics__title {
  font-size: 17px;
  line-height: 1.4em;
  font-weight: 400;
  margin-bottom: 4px;
}

.phInfographics .infographics__permalink,
.page-infographics .infographics__permalink {
  background-color: #000;
  border: 1px solid transparent;
  color: #fff;
  bottom: 0;
  left: 50%;
  font-size: 13px;
  letter-spacing: 0.1em;
  padding: 3px 8px 4px;
  position: absolute;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: translate(-50%, 70%);
      -ms-transform: translate(-50%, 70%);
          transform: translate(-50%, 70%);
  text-align: center;
  width: 142px;
  z-index: 1;
}

.phInfographics .infographics__permalink:hover,
.page-infographics .infographics__permalink:hover {
  background-color: #fff;
  border: 1px solid #000;
  color: #000;
}

.block-text {
  margin: 40px 0 56px;
}

.block-text p {
  font-size: 15px;
  line-height: 1.4em;
  margin-bottom: 19px;
}

.additionalContent__network_title {
  font-size: 25px;
  line-height: 1.2em;
  margin: 50px 0 54px;
  text-align: center;
}

.additionalContent__items {
  margin-top: 50px;
}

.additionalContent__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 80px;
}

.additionalContent__blockImage {
  height: 188px;
  overflow: hidden;
  position: relative;
  width: 174px;
}

.additionalContent__image {
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
}

.additionalContent__itemContent {
  padding-left: 54px;
  width: calc(100% - 174px);
}

.additionalContent__network_name {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4em;
  margin: 3px 0 26px;
}

.additionalContent__network_text {
  color: #585858;
  font-size: 14px;
  line-height: 1.4em;
}

.additionalContent__network_link {
  background: #fff;
  border: 1px solid #57bbbf;
  color: #57bbbf;
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.1em;
  min-width: 174px;
  padding: 2px 8px 4px;
  text-align: center;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.additionalContent__network_link:hover {
  background-color: #57bbbf;
  color: #fff;
}

.additionalContent__network_link svg {
  margin-left: 5px;
  position: relative;
  top: 1px;
  width: 12px;
}

.networkExperts {
  padding-bottom: 103px;
}

.networkExperts__title {
  font-size: 23px;
  margin-top: 82px;
  text-align: center;
}

.networkExperts__wrapSlider {
  overflow: hidden;
  padding-top: 12px;
}

.networkExperts__slide {
  background-color: #f0f0f0;
  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: 241px;
  padding-bottom: 9px;
}

.networkExperts__blockImage {
  background-color: inherit;
  display: block;
  margin-bottom: 19px;
  position: relative;
  text-align: center;
}

.networkExperts__blockImage .chosen {
  padding-bottom: 95.2%;
  position: relative;
}

.networkExperts__blockImage .chosen img {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  width: 100%;
}

.networkExperts__blockImage .default {
  background-color: inherit;
  padding: 35px 15px 53.2%;
}

.networkExperts__blockImage .default img {
  left: 50%;
  -webkit-transform: translate(-50%, -10%);
      -ms-transform: translate(-50%, -10%);
          transform: translate(-50%, -10%);
  max-width: 38%;
}

.networkExperts__image {
  background-color: inherit;
  position: absolute;
  z-index: 1;
}

.networkExperts__iconCV {
  background-color: inherit;
  bottom: -5px;
  position: absolute;
  right: 0px;
  padding-top: 3px;
  width: 33px;
  z-index: 1;
}

.networkExperts__iconCV svg {
  width: inherit;
}

.networkExperts__name {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: 1px;
  margin-bottom: auto;
  margin-top: auto;
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
}

.networkExperts .swiper-pagination-bullets {
  left: 50%;
  -webkit-transform: translate(-50%, 20px);
      -ms-transform: translate(-50%, 20px);
          transform: translate(-50%, 20px);
  position: relative;
  padding-bottom: 15px;
}

.networkExperts .swiper-pagination-bullets .swiper-pagination-bullet {
  background: none !important;
  border: 2px solid #57bbbf;
  height: 20px;
  margin: 8px !important;
  position: relative;
  width: 20px;
}

.networkExperts .swiper-pagination-bullets .swiper-pagination-bullet:before {
  background-color: #57bbbf;
  border-radius: 50%;
  content: "";
  left: 50%;
  height: 12px;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
  width: 12px;
}

.networkExperts .swiper-pagination-bullet-active {
  opacity: 0.7;
}

input[name="to-network-of-expert-invisible"],
input[name="to-network-of-institution-invisible"] {
  display: none;
}

.wpcf7 form .wpcf7-response-output {
  margin: 0;
  padding: 0;
  font-size: 14px;
  border: none;
}

.wpcf7-not-valid-tip {
  font-size: 14px;
  margin-bottom: 12px;
}

.wpcf7 .ajax-loader {
  display: table;
  margin-left: auto;
  -webkit-transform: translate(-538%, -135%);
      -ms-transform: translate(-538%, -135%);
          transform: translate(-538%, -135%);
}

.wpcf7 .wpcf7-submit {
  display: table;
  margin-left: auto;
}

.wpcf7 p {
  margin: 0;
}

.wpcf7 p br {
  display: none;
}

.wpcf7-not-valid-tip {
  color: inherit;
}

.wpcf7 .wpcf7-form-control-wrap,
.wpcf7__wrapField,
.contact .wpcf7-form-control-wrap,
.contact__wrapField {
  margin-bottom: 7px !important;
}

.wpcf7 .wpcf7-form-control-wrap,
.contact .wpcf7-form-control-wrap {
  display: block;
}

.wpcf7 .wpcf7-form-control-wrap,
.wpcf7__wrapField,
.contact .wpcf7-form-control-wrap,
.contact__wrapField {
  margin-bottom: 7px;
}

.wpcf7 .wpcf7-form-control-wrap .wpcf7-not-valid-tip,
.wpcf7 .wpcf7-form-control-wrap.invalid .contact__field,
.wpcf7__wrapField .wpcf7-not-valid-tip,
.wpcf7__wrapField.invalid .contact__field,
.contact .wpcf7-form-control-wrap .wpcf7-not-valid-tip,
.contact .wpcf7-form-control-wrap.invalid .contact__field,
.contact__wrapField .wpcf7-not-valid-tip,
.contact__wrapField.invalid .contact__field {
  border-color: #ff6b6b;
}

.wpcf7 .wpcf7-form-control-wrap.valid .contact__field,
.wpcf7__wrapField.valid .contact__field,
.contact .wpcf7-form-control-wrap.valid .contact__field,
.contact__wrapField.valid .contact__field {
  border-color: #03c303;
}

.wpcf7 .wpcf7-form-control-wrap.empty .contact__required,
.wpcf7 .wpcf7-form-control-wrap.number .contact__symbols,
.wpcf7__wrapField.empty .contact__required,
.wpcf7__wrapField.number .contact__symbols,
.contact .wpcf7-form-control-wrap.empty .contact__required,
.contact .wpcf7-form-control-wrap.number .contact__symbols,
.contact__wrapField.empty .contact__required,
.contact__wrapField.number .contact__symbols {
  display: block;
  opacity: 1;
  visibility: visible;
}

.wpcf7 .wpcf7-text,
.wpcf7 .wpcf7-textarea,
.wpcf7__field,
.contact .wpcf7-text,
.contact .wpcf7-textarea,
.contact__field {
  background-color: #fff;
  border: 1px solid transparent;
  height: 40px;
  font-family: inherit;
  font-size: 14px;
  padding-left: 22px;
  padding-right: 22px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
}

.wpcf7 .wpcf7-text:hover,
.wpcf7 .wpcf7-textarea:hover,
.wpcf7__field:hover,
.contact .wpcf7-text:hover,
.contact .wpcf7-textarea:hover,
.contact__field:hover {
  border: 1px solid #000;
}

.wpcf7 .wpcf7-text::-webkit-input-placeholder, .wpcf7 .wpcf7-textarea::-webkit-input-placeholder, .wpcf7__field::-webkit-input-placeholder, .contact .wpcf7-text::-webkit-input-placeholder, .contact .wpcf7-textarea::-webkit-input-placeholder, .contact__field::-webkit-input-placeholder {
  color: inherit;
}

.wpcf7 .wpcf7-text::-moz-placeholder, .wpcf7 .wpcf7-textarea::-moz-placeholder, .wpcf7__field::-moz-placeholder, .contact .wpcf7-text::-moz-placeholder, .contact .wpcf7-textarea::-moz-placeholder, .contact__field::-moz-placeholder {
  color: inherit;
}

.wpcf7 .wpcf7-text:-ms-input-placeholder, .wpcf7 .wpcf7-textarea:-ms-input-placeholder, .wpcf7__field:-ms-input-placeholder, .contact .wpcf7-text:-ms-input-placeholder, .contact .wpcf7-textarea:-ms-input-placeholder, .contact__field:-ms-input-placeholder {
  color: inherit;
}

.wpcf7 .wpcf7-text::-ms-input-placeholder, .wpcf7 .wpcf7-textarea::-ms-input-placeholder, .wpcf7__field::-ms-input-placeholder, .contact .wpcf7-text::-ms-input-placeholder, .contact .wpcf7-textarea::-ms-input-placeholder, .contact__field::-ms-input-placeholder {
  color: inherit;
}

.wpcf7 .wpcf7-text::placeholder,
.wpcf7 .wpcf7-textarea::placeholder,
.wpcf7__field::placeholder,
.contact .wpcf7-text::placeholder,
.contact .wpcf7-textarea::placeholder,
.contact__field::placeholder {
  color: inherit;
}

.wpcf7 .wpcf7-text.invisible,
.wpcf7 .wpcf7-textarea.invisible,
.wpcf7__field.invisible,
.contact .wpcf7-text.invisible,
.contact .wpcf7-textarea.invisible,
.contact__field.invisible {
  display: none;
}

.wpcf7 .wpcf7-textarea,
.wpcf7__field-message,
.contact .wpcf7-textarea,
.contact__field-message {
  height: 126px;
  resize: none;
  padding-bottom: 12px;
  padding-top: 12px;
}

.wpcf7__notification,
.contact__notification {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 2px;
}

.wpcf7__required,
.contact__required {
  color: inherit;
  font-size: 14px;
  opacity: 0;
  display: none;
  margin-right: 5px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  visibility: hidden;
}

.wpcf7__symbols,
.contact__symbols {
  color: inherit;
  font-size: 14px;
  opacity: 0;
  display: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  visibility: hidden;
}

.wpcf7__wrapField-wrapTextarea .contact__notification,
.contact__wrapField-wrapTextarea .contact__notification {
  margin-top: 0;
}

.wpcf7 .wpcf7-submit,
.wpcf7__wrapButtonText button,
.contact .wpcf7-submit,
.contact__wrapButtonText button {
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
  cursor: pointer;
  height: 40px;
  min-width: 129px;
  padding: 0 20px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.wpcf7 .wpcf7-submit:hover,
.wpcf7__wrapButtonText button:hover,
.contact .wpcf7-submit:hover,
.contact__wrapButtonText button:hover {
  background-color: transparent;
  color: #000;
}

.wpcf7__wrapButtonText,
.contact__wrapButtonText {
  text-align: right;
}

.wpcf7__textAfterSending,
.contact__textAfterSending {
  display: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.wpcf7__textAfterSending p,
.contact__textAfterSending p {
  margin: 0 0 8px;
}

.wpcf7__textAfterSending.good,
.contact__textAfterSending.good {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.wp-block-image {
  margin-left: 0;
  margin-right: 0;
  text-align: center;
}

#wrap-post-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 35px;
  padding-top: 80px;
}

#wrap-post-navigation .page-numbers {
  border: 1px solid #000;
  border-radius: 3px;
  color: inherit;
  line-height: 32px;
  display: inline-block;
  margin: 5px 2px;
  padding: 1px 13px;
  text-align: center;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

#wrap-post-navigation .page-numbers:hover,
#wrap-post-navigation .page-numbers.current {
  background-color: #000;
  color: #fff;
}

#wrap-post-navigation .page-numbers.dots,
#wrap-post-navigation .page-numbers.prev,
#wrap-post-navigation .page-numbers.next {
  background-color: none;
  border: none;
  border-radius: 0;
}

#wrap-post-navigation .page-numbers.dots {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

#wrap-post-navigation .page-numbers.dots:hover {
  background: none;
  color: inherit;
}

#wrap-post-navigation .page-numbers.prev,
#wrap-post-navigation .page-numbers.next {
  padding: 0;
}

#wrap-post-navigation .page-numbers.prev:hover,
#wrap-post-navigation .page-numbers.next:hover {
  background: none;
  color: inherit;
}

#wrap-post-navigation .page-numbers.prev {
  margin-right: 22px;
}

#wrap-post-navigation .page-numbers.next {
  margin-left: 15px;
}

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

.error404__above-title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

.error404__title {
  font-size: 240px;
  text-align: center;
}

.error404__text {
  font-size: 16px;
  line-height: 28px;
  max-width: 660px;
  text-align: center;
}

.error404__link {
  padding: 9px 20px 11px !important;
}

.article__header {
  background-color: #cacaca;
  padding-bottom: 38.3%;
  position: relative;
}

.article__image {
  left: 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

.article__headerWrapCategoryTitle {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
}

.article__headerWrapCategoryTitle:before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(80%, rgba(0, 0, 0, 0.5)));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 80%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 80%);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}

.article__category {
  color: #e9db89;
  display: inline-block;
  left: 50%;
  margin-bottom: 2px;
  padding: 1px 27px 3px;
  position: relative;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.article__category p {
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 2px;
  margin: 0 !important;
}

.article__category.analityka {
  background-color: #943616;
}

.article__category.doslidzhennya {
  background-color: #2b7c74;
}

.article__title {
  color: #fff;
  font-size: 38px;
  line-height: 1.2em;
  margin: 0 auto;
  max-width: 600px;
  text-align: center;
}

.article__title:after {
  background-color: #ccc;
  content: "";
  display: block;
  height: 2px;
  margin: 19px auto 24px;
  width: 40px;
}

.article__wrap-author-excerpt {
  margin-bottom: 39px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 15px;
  text-align: center;
}

.article__wrap-author-excerpt:before,
.article__wrap-author-excerpt:after {
  background-color: #2f2e2e;
  content: "";
  display: block;
  height: 1px;
  margin-left: inherit;
  margin-right: inherit;
  width: 284px;
}

.article__aboutWhomArticle {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4em;
  margin: 9px 0 8px 0 !important;
}

.article__desc {
  margin: -10px 0 16px !important;
}

.article p {
  font-size: 14px;
  line-height: 1.5em;
  margin-bottom: 19px;
}

.article p:nth-child(1) {
  margin-top: 35px;
}

.article .wp-block-quote {
  border-bottom: 1px solid #2f2e2e;
  margin-left: 0;
  margin-right: 0;
  border-top: 1px solid #2f2e2e;
}

.article .wp-block-quote p {
  font-size: 32px;
  font-weight: 300;
  line-height: 1.4em;
  margin: 12px 0 14px;
}

.error404__link,
#page-content-btn-top,
#article-btn-top {
  background-color: #57bbbf;
  color: #fff;
  display: table;
  font-size: 15px;
  margin: 48px auto 46px;
  min-width: 142px;
  padding: 8px 20px 12px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  text-align: center;
}

.error404__link:hover,
#page-content-btn-top:hover,
#article-btn-top:hover {
  background-color: #a0a09f;
}

.footer {
  background-color: #57bbbf;
  color: #000;
  padding-bottom: 34px;
  padding-top: 36px;
}

.footer__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 50%;
}

.footer__title {
  font-size: 23px;
  line-height: 1.4em;
  margin-bottom: 24px;
}

.footer__title:before {
  background-color: #000;
  content: "";
  display: block;
  height: 2px;
  margin-bottom: 23px;
  width: 40px;
}

.footer__info {
  margin-bottom: 26px;
}

.footer__info p {
  font-size: 13px;
  line-height: 1.4em;
  margin: 4px 0;
}

.footer__info p.address {
  margin-bottom: 26px;
}

.footer__info p a {
  color: inherit;
}

.footer__listSocial {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  list-style: none;
}

.footer__listSocialItem {
  margin: 0 12px;
}

.footer__listSocialItem:first-child {
  margin-left: 0;
}

.footer__listSocialLink {
  height: 19px;
  color: inherit;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  width: 19px;
}

.footer__listSocialLink:hover.vk {
  color: #2787f5;
}

.footer__listSocialLink:hover.facebook {
  color: #026ae3;
}

.footer__listSocialLink:hover.twitter {
  color: #1da1f2;
}

.footer__listSocialLink:hover.instagram {
  color: #96109c;
}

.footer__listSocialLink:hover.youtube {
  color: #ff0000;
}

.footer__listSocialLink svg {
  height: inherit;
  width: auto;
}

.footer__blockLogo {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 21px 0 3px;
}

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

.footer__logo {
  margin-right: 18px;
}

.footer__siteDesc {
  color: #254f51;
  font-size: 9px;
  line-height: 1.4em;
  letter-spacing: 5px;
  max-width: 130px;
  text-transform: uppercase;
}

.footer__prl {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #254f51;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.footer__prl:hover {
  color: #f4eab1;
}

.footer__prl svg {
  height: 51px;
  margin-left: 50px;
  margin-right: 15px;
  min-width: 68px;
}

.footer__prl p {
  font-size: 14px;
  line-height: 18px;
  margin: 0;
  max-width: 115px;
}

.footer__blockCopyright {
  padding-right: 25px;
}

.footer__copyright {
  font-size: 14px;
  line-height: 1.4em;
  margin-bottom: 10px;
}

.footer__textUndercopyright p {
  font-size: 13px;
  line-height: 1.4em;
  margin: 0;
}

.footer .wpcf7,
.footer .contact__form {
  margin-bottom: -50px;
  margin-top: 50px;
}

#btn-top {
  color: #000;
  cursor: pointer;
  display: block;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  margin: 110px 0 0 auto;
  text-align: right;
  width: 23px;
  z-index: 99;
}

#btn-top:hover {
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license
Copyright (c) 2013 Daniel Eden
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

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

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}

@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    -ms-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    -ms-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    -ms-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    -ms-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    -ms-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    -ms-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    -ms-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
}

@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    -ms-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    -ms-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    -ms-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    -ms-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    -ms-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    -ms-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate(80deg);
    -ms-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    -ms-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  100% {
    -webkit-transform: translateY(700px);
    -ms-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    -ms-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    -ms-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@media screen and (min-width: 642px) {
  .topmenu ul li {
    margin: 0 0 35px;
  }

  .topmenu ul li a {
    font-size: 21px;
  }
}

@media screen and (min-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header.scrollPage .top-panel {
    height: 50px;
  }

  .header.scrollPage .topmenu__list {
    top: 50px;
  }

  .header.scrollPage .topmenu__list.open {
    height: calc(100vh - 50px);
  }
}

@media screen and (min-width: 783px) {
  body.admin-bar .header {
    top: 32px;
  }

  .topmenu {
    top: 32px;
  }
}

@media screen and (min-width: 992px) {
  .header.scrollPage .logo {
    font-size: 28px;
  }

  .header__burger {
    display: none;
  }

  .header__burgerIcon {
    height: 3px;
  }

  .header__burgerIcon:before {
    top: -10px;
  }

  .header__burgerIcon:after {
    top: 10px;
  }

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

  .topmenu ul li {
    margin: 0 15px;
  }

  .topmenu ul li a {
    font-size: 16px;
  }
}

@media screen and (min-width: 1140px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media screen and (min-width: 1200px) {
  .header.scrollPage .top-panel {
    height: 70px;
  }

  .header.scrollPage .topmenu__list {
    -webkit-box-shadow: none;
            box-shadow: none;
    top: 0;
  }

  .header.scrollPage .topmenu__list.open {
    height: auto;
  }
}

@media screen and (min-width: 1400px) {
  .header.scrollPage .logo {
    font-size: 34px;
  }
}

@media screen and (max-width: 1280px) {
  .firstScreen__siteDesc {
    font-size: 18px;
    line-height: 28px;
    max-width: 210px;
    margin-bottom: 60px;
    padding-top: 65px;
  }

  .firstScreen__mainTitle {
    font-size: 31px;
    line-height: 40px;
  }

  .firstScreen__descText {
    font-size: 15px;
  }
}

@media screen and (max-width: 1200px) {
  .phInfographics .page-infographics__additional-text-block,
  .page-infographics .page-infographics__additional-text-block {
    padding-left: 0;
    padding-right: 0;
  }

  .phInfographics .infographics__items,
  .page-infographics .infographics__items {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (max-width: 1024px) {
  .firstScreen {
    height: auto;
  }

  .firstScreen:before {
    background-color: rgba(0, 0, 0, 0.4);
    bottom: 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 1;
  }

  .firstScreen__image {
    bottom: -174px;
    margin-left: -14px;
    top: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-60%);
        -ms-transform: translateX(-60%);
            transform: translateX(-60%);
    min-width: 1900px;
  }

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

  .firstScreen__item:nth-child(1) {
    position: relative;
    width: 100%;
    z-index: 2;
  }

  .firstScreen__item:nth-child(2) {
    margin-top: 50px;
    position: relative;
    width: 100%;
  }

  .firstScreen__item:nth-child(2):before {
    background-color: #0f0f0f;
    content: "";
    display: block;
    left: -25px;
    height: 50px;
    position: absolute;
    right: 0;
    top: -40px;
    width: 120%;
    z-index: 14;
  }

  .firstScreen__siteDesc {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .firstScreen__mainTitle {
    margin-left: auto;
    margin-right: auto;
    max-width: 520px;
    text-align: center;
  }

  .firstScreen__mainTitle span {
    display: inline-block;
    margin-left: auto;
    margin-right: 0;
    text-align: center;
  }

  .firstScreen__descText {
    margin-top: 50px;
    padding-left: 0;
    padding-right: 0;
  }

  .firstScreen #playpause-fs-video.wrap-fs-video {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    z-index: 1;
  }

  .news__title {
    font-size: 17px;
    line-height: 24px;
  }

  .phInfographics .infographics__item:nth-child(1) {
    width: 65% !important;
  }

  .phInfographics .infographics__items {
    padding-right: 20px !important;
  }

  .phInfographics .infographics__items .wrap-items {
    margin-right: 15px;
  }

  .phInfographics .infographics__items,
  .page-infographics .infographics__items {
    margin-left: -15px;
    margin-right: -15px;
  }

  .phInfographics .infographics__item,
  .page-infographics .infographics__item {
    margin-left: 15px;
    margin-right: 15px;
    padding-bottom: 39%;
    width: calc(33.3333% - 30px);
  }

  .footer__prl svg {
    margin-left: 30px;
  }
}

@media screen and (max-width: 991px) {
  .header .container.opent-menu .header__burger {
    -webkit-transform: rotateY(-180deg);
            transform: rotateY(-180deg);
  }

  .header .container.opent-menu .header__burgerIcon {
    background-color: #000;
  }

  .header .container.opent-menu .header__burgerIcon:before,
  .header .container.opent-menu .header__burgerIcon:after {
    background-color: #c4c4c4;
    top: 0;
  }

  .header .container.opent-menu .header__burgerIcon:before {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }

  .header .container.opent-menu .header__burgerIcon:after {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }

  .header .container.opent-menu #topmenu {
    right: 0;
  }

  .topmenu {
    background-color: #000;
    bottom: 0;
    padding-top: 80px;
    position: fixed;
    right: -100%;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    width: 280px;
  }

  .topmenu ul {
    overflow-y: auto;
    height: 80vh;
    padding-bottom: 80px;
    padding-top: 20px;
    margin-top: 0;
  }

  .news__postItems {
    margin-left: -10px;
    margin-right: -10px;
  }

  .news__postItem {
    margin-left: 10px;
    margin-right: 10px;
    width: calc(33.3333% - 20px);
  }
}

@media screen and (max-width: 960px) {
  .error404__above-title {
    font-size: 19px;
  }

  .error404__title {
    font-size: 180px;
  }

  .error404__text {
    font-size: 15px;
    line-height: 24px;
    max-width: 620px;
  }

  .article__header {
    min-height: 350px;
    padding-bottom: 0;
  }

  .footer .wpcf7,
  .footer .contact__form {
    padding-left: 50px;
  }
}

@media screen and (max-width: 800px) {
  .news__postItems.six-or-nine .news__postItem {
    width: calc(50% - 20px) !important;
  }

  .news__postItems.six-or-nine .news__postItem {
    margin-left: 10px;
    margin-right: 10px;
    width: calc(50% - 20px) !important;
  }

  .news__postItems.six-or-nine .news__postItem:hover .news__introContent {
    margin-bottom: 12%;
    margin-top: -12%;
  }

  .page-chain .pageHeader__item {
    padding: 23px 15px;
  }

  .page-chain .pageHeader__itemBlockIcon {
    height: 75px;
  }

  .page-chain .pageHeader__itemText {
    font-size: 14px;
    ine-height: 19px;
  }

  .networkExperts__blockImage .default {
    padding-bottom: 35%;
  }

  .footer__item {
    width: 100%;
  }

  .footer__title {
    text-align: center;
  }

  .footer__title:before {
    margin-left: auto;
    margin-right: auto;
  }

  .footer__info {
    text-align: center;
  }

  .footer__listSocial {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 50px;
  }

  .footer__blockLogo {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .footer__siteDesc {
    margin-right: auto;
  }

  .footer__blockCopyright {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding-right: 0;
  }

  .footer__textUndercopyright p br {
    display: none;
  }

  .footer .wpcf7,
  .footer .contact__form {
    margin-bottom: 35px;
    padding-left: 0;
  }

  #btn-top {
    margin: 50px auto 0;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .phInfographics .infographics__items {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }

  .phInfographics .infographics__item:nth-child(1) {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    width: 100% !important;
  }

  .phInfographics .infographics__item:nth-child(1) {
    width: 100%;
  }

  .phInfographics .infographics__items {
    margin-right: 0 !important;
    padding-right: 0 !important;
  }

  .phInfographics .infographics__items .wrap-items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-right: 0;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
  }

  .phInfographics .infographics__items .wrap-items .infographics__item {
    margin: 20px 10px 0 !important;
    width: 100%;
  }

  .phInfographics .infographics__items,
  .page-infographics .infographics__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: 0;
    margin-right: 0;
  }

  .phInfographics .infographics__item,
  .page-infographics .infographics__item {
    height: 346px;
    margin-left: auto;
    margin-right: auto;
    width: 261px;
  }

  .article__title {
    font-size: 28px;
    line-height: 1.2em;
    max-width: 350px;
  }
}

@media screen and (max-width: 740px) {
  .news__postItems {
    margin-left: 0;
    margin-right: 0;
  }

  .news__postItem {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }

  .news__postItem:hover .news__introContent {
    margin-bottom: 7%;
    margin-top: -7%;
  }

  .randNews__postItems {
    margin-left: 0;
    margin-right: 0;
  }

  .randNews__postItem {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
}

@media screen and (max-width: 668px) {
  .firstScreen__image {
    bottom: -132px;
    margin-left: -10px;
    min-width: 1435px;
  }

  .firstScreen #playpause-fs-video.wrap-fs-video video {
    width: 470px;
  }
}

@media screen and (max-width: 600px) {
  .wrapper {
    margin-top: 60px;
  }

  .header {
    min-height: 60px;
  }

  .header__wrapLogo a {
    margin-right: 10px;
    margin-top: 5px;
    max-width: 42px;
  }

  .header__siteDesc {
    font-size: 7px;
  }

  .firstScreen__item:nth-child(2) {
    margin-top: 35px;
  }

  .firstScreen__siteDesc {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 40px;
  }

  .firstScreen__mainTitle {
    font-size: 28px;
    line-height: 37px;
  }

  .firstScreen__descText {
    margin-top: 35px;
  }

  .news__postItems.six-or-nine .news__postItem {
    margin-left: 0;
    margin-right: 0;
    width: 100% !important;
  }

  #popup-to-network-of-institution .popup__wrapField,
  #popup-to-network-of-expert .popup__wrapField {
    width: 100%;
  }

  .page-chain .pageHeader__items {
    margin-left: 0;
    margin-right: 0;
  }

  .page-chain .pageHeader__item {
    margin: 0 auto 35px;
    width: 320px;
    max-width: 100%;
  }

  .page-chain .pageHeader__item:last-child {
    margin-bottom: 15px;
  }

  .additionalContent__blockImage {
    margin: 0 auto 25px;
  }

  .additionalContent__itemContent {
    padding-left: 0;
    width: 100%;
  }

  .additionalContent__network_name {
    text-align: center;
  }

  .additionalContent__network_link {
    display: table;
    margin-left: auto;
    margin-right: auto;
  }

  .error404__above-title {
    font-size: 17px;
  }

  .error404__title {
    font-size: 120px;
  }

  .error404__text {
    font-size: 13px;
    line-height: 21px;
  }
}

@media screen and (max-width: 500px) {
  .firstScreen__image {
    bottom: -111px;
    margin-left: -10px;
    min-width: 1215px;
  }

  .firstScreen #playpause-fs-video.wrap-fs-video {
    bottom: 55px;
  }

  .firstScreen #playpause-fs-video.wrap-fs-video video {
    width: 400px;
  }

  .firstScreen #playpause-fs-video.wrap-fs-video.paused-video svg {
    width: 50px;
  }

  .phInfographics .infographics__item:nth-child(1) .infographics__wrap-intro-content {
    -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;
    left: 15px;
    right: 15px;
    margin-left: 0;
    margin-right: 0;
    margin-top: 15px;
    max-width: calc(100% - 30px);
    position: relative;
  }

  .phInfographics .infographics__item:nth-child(1) .infographics__title {
    margin: 8px 0 16px;
  }

  .phInfographics .infographics__item:nth-child(1) .infographics__blockExcerpt {
    width: 100%;
  }

  .phInfographics .infographics__item:nth-child(1) .infographics__blockExcerpt p {
    padding-bottom: 15px;
    padding-top: 15px;
    text-align: center;
  }

  .phInfographics .infographics__item:nth-child(1) .infographics__permalink {
    left: 50%;
    -webkit-transform: translate(-50%, 50%) !important;
        -ms-transform: translate(-50%, 50%) !important;
            transform: translate(-50%, 50%) !important;
  }

  .phInfographics .infographics__item:nth-child(1) .pageHeader__author-text-design {
    border-bottom: 1px solid #000;
    padding-bottom: 15px;
    border-right: none;
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
    width: 100%;
  }

  .phInfographics .infographics__items .wrap-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .phInfographics .infographics__items .wrap-items .infographics__item:first-child {
    margin-bottom: 15px !important;
  }

  .phInfographics .infographics__items .wrap-items .infographics__item .infographics__wrap-intro-content {
    position: absolute;
  }

  .phInfographics .infographics__items .wrap-items .infographics__item .infographics__blockExcerpt {
    padding-right: 0;
  }

  .phInfographics .infographics__items .wrap-items .infographics__item .infographics__blockExcerpt p {
    padding-bottom: 15px;
    padding-top: 0;
  }

  .phInfographics .infographics__items .wrap-items .infographics__permalink {
    -webkit-transform: translate(-50%, 123%) !important;
        -ms-transform: translate(-50%, 123%) !important;
            transform: translate(-50%, 123%) !important;
  }
}

@media screen and (max-width: 480px) {
  .footer__blockLogo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .footer__wrapLogoText {
    margin-bottom: 35px;
  }

  .footer__prl svg {
    margin-left: 0;
  }
}

@media screen and (max-width: 460px) {
  .firstScreen__image {
    bottom: -102px;
    margin-left: -9px;
    min-width: 1105px;
  }

  .firstScreen__siteDesc {
    font-size: 14px;
    line-height: 21px;
  }

  .firstScreen__mainTitle {
    font-size: 21px;
    line-height: 30px;
  }

  .firstScreen__descText {
    font-size: 14px;
  }

  .firstScreen #playpause-fs-video.wrap-fs-video video {
    width: 360px;
  }

  .popup__wrapField {
    width: 100%;
  }

  .popup__wrapField:nth-child(odd) {
    margin-right: 0;
  }

  .popup__wrapField:nth-child(even) {
    margin-left: 0;
  }
}

@media screen and (max-width: 400px) {
  .firstScreen__image {
    bottom: -90px;
    margin-left: -8px;
    min-width: 977px;
  }

  .firstScreen #playpause-fs-video.wrap-fs-video {
    bottom: 56px;
  }

  .firstScreen #playpause-fs-video.wrap-fs-video video {
    width: 320px;
  }
}

@media screen and (max-width: 360px) {
  .firstScreen__image {
    bottom: -78px;
    margin-left: -7px;
    min-width: 850px;
  }

  .firstScreen #playpause-fs-video.wrap-fs-video video {
    width: 280px;
  }
}