@keyframes slide-down {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slide-up {
  0% {
    transform: translateY(-150px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes zoom-in {
  0% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1.35, 1.35);
  }
}
@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    -ms-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    -ms-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    -ms-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    -ms-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    -ms-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    -ms-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    -ms-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    -ms-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceIn {
  -webkit-animation: bounceIn 0.75s;
  animation: bounceIn 0.75s;
}

.bounceOut {
  -webkit-animation: bounceOut 0.75s;
  animation: bounceOut 0.75s;
}

.loader {
  position: absolute;
  margin: 0 auto;
  top: 60px;
  left: 0;
  right: 0;
  z-index: 99;
  width: 48px;
  height: 48px;
  display: inline-block;
  pointer-events: none;
  transition: opacity ease 0.5s, visibility ease 0.5s;
}
.loader.off {
  opacity: 0;
  visibility: hidden;
}

.loader::after,
.loader::before {
  content: "";
  box-sizing: border-box;
  width: 48px;
  height: 48px;
  border: 2px solid #000;
  position: absolute;
  left: 0;
  top: 0;
  animation: rotation 2s ease-in-out infinite alternate;
}

.loader::after {
  border-color: #FF6F00;
  animation-direction: alternate-reverse;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotationBig {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-200px, -200px, 0) scale(0.8);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}
@keyframes move {
  0% {
    transform: translate3d(0, 0, 0);
  }
  25% {
    transform: translate3d(100px, -80px, 0);
  }
  50% {
    transform: translate3d(-60px, -150px, 0);
  }
  75% {
    transform: translate3d(-120px, 50px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes hueRotate {
  0% {
    filter: hue-rotate(0deg);
  }
  50% {
    filter: hue-rotate(60deg);
  }
  100% {
    filter: hue-rotate(0deg);
  }
}
@media (min-width: 1200px) {
  body.safari-css section.banner-module .line-decor {
    height: 0;
    transition: height ease 1s 0.3s;
  }
  body.safari-css section.banner-module .title {
    transition: clip-path ease 0.8s 0.4s, -webkit-clip-path ease 0.8s 0.4s;
    -webkit-clip-path: polygon(0 0, 0 100%, 0% 100%, 0% 0);
    clip-path: polygon(0 0, 0 100%, 0% 100%, 0% 0);
  }
  body.safari-css section.banner-module .description {
    transition: clip-path ease 0.8s 0.6s, -webkit-clip-path ease 0.8s 0.6s;
    -webkit-clip-path: polygon(0 0, 0 100%, 0% 100%, 0% 0);
    clip-path: polygon(0 0, 0 100%, 0% 100%, 0% 0);
  }
  body.safari-css section.banner-module .image {
    opacity: 0;
    transition: opacity ease 1.5s;
  }
  body.safari-css section.banner-module .logo-decor .part-01 {
    opacity: 0;
    transform: scale(0.7) translateX(-10px) translateY(-10px);
    transition: opacity ease 0.5s, transform ease 0.5s;
  }
  body.safari-css section.banner-module .logo-decor .part-02 {
    opacity: 0;
    transform: scale(0.7) translateX(10px) translateY(10px);
    transition: opacity ease 0.5s 0.2s, transform ease 0.5s 0.2s;
  }
  body.safari-css section.banner-module video {
    opacity: 0;
    transition: opacity ease 2s 0.2s;
  }
  body.safari-css section.banner-module.animate video {
    opacity: 1;
  }
  body.safari-css section.banner-module.animate .title {
    -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
    clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
  }
  body.safari-css section.banner-module.animate .description {
    -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
    clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
  }
  body.safari-css section.banner-module.animate .line-decor {
    height: 100%;
  }
  body.safari-css section.banner-module.animate .image {
    opacity: 1;
  }
  body.safari-css section.banner-module.animate .logo-decor .part-01 {
    opacity: 1;
    transform: scale(1) translateX(0px);
  }
  body.safari-css section.banner-module.animate .logo-decor .part-01 path {
    fill: #fff;
  }
  body.safari-css section.banner-module.animate .logo-decor .part-02 {
    opacity: 1;
    transform: scale(1) translateX(0px);
  }
  body.safari-css section.banner-module.animate .logo-decor .part-02 path {
    fill: #fff;
  }
}
@media (min-width: 1200px) {
  body .animateRun footer.main-footer video {
    animation-play-state: running;
  }
  body .animateRun .circle-big-decor,
  body .animateRun .bubble-decor:not(.no-animate) {
    animation-play-state: running;
  }
  body .waves-decor {
    animation-duration: 15s;
    animation-name: hueRotate;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-play-state: paused;
    will-change: filter;
    backface-visibility: hidden;
  }
  body .bubble-decor {
    animation-duration: 80s;
    animation-delay: -7.1s;
    animation-name: move;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-play-state: paused;
    will-change: transform;
    backface-visibility: hidden;
  }
  body .circle-big-decor {
    animation-duration: 35.6s;
    animation-delay: -5.2s;
    animation-name: rotationBig;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-play-state: paused;
    will-change: transform;
    backface-visibility: hidden;
  }
  body .circle-decor:not(.no-animate) {
    animation-duration: 35.6s;
    animation-delay: -5.2s;
    animation-name: rotation;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-play-state: paused;
    will-change: transform;
    backface-visibility: hidden;
  }
  body footer.main-footer.animate .divider span:nth-child(1) {
    width: 100%;
  }
  body footer.main-footer.animate .divider span:nth-child(2) {
    width: 100%;
  }
  body footer.main-footer .divider span:nth-child(1) {
    width: 0;
  }
  body footer.main-footer .divider span:nth-child(2) {
    width: 0;
  }
  body section:not(.banner-module).animate .pre-title,
  body section:not(.banner-module).animate h2.title,
  body section:not(.banner-module).animate .preview,
  body section:not(.banner-module).animate .description,
  body section:not(.banner-module).animate .button-holder {
    opacity: 1;
    clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
    -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
  }
  body section:not(.banner-module).animate .divider span:nth-child(1) {
    width: 100%;
  }
  body section:not(.banner-module).animate .divider span:nth-child(2) {
    width: 100%;
  }
  body section:not(.banner-module) .divider span:nth-child(1) {
    width: 0;
  }
  body section:not(.banner-module) .divider span:nth-child(2) {
    width: 0;
  }
  body section:not(.banner-module) .pre-title,
  body section:not(.banner-module) h2.title,
  body section:not(.banner-module) .preview,
  body section:not(.banner-module) .description,
  body section:not(.banner-module) .button-holder {
    clip-path: polygon(0 0, 0 100%, 0% 100%, 0% 0);
    -webkit-clip-path: polygon(0 0, 0 100%, 0% 100%, 0% 0);
    transition: clip-path ease 1.5s, -webkit-clip-path ease 1.5s, opacity ease 1.5s;
  }
  body section:not(.banner-module) .button-holder {
    transition: clip-path ease 0.7s 0.3s, -webkit-clip-path ease 0.7s 0.3s, opacity ease 0.7s 0.3s;
    padding-bottom: 5px;
    padding-right: 5px;
  }
  body section.image-boxes-module.animate .box-holder,
  body section.icon-boxes-module.animate .box-holder {
    clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
    -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
  }
  body section.image-boxes-module .box-holder,
  body section.icon-boxes-module .box-holder {
    transition: clip-path ease 0.6s, -webkit-clip-path ease 0.6s;
    clip-path: polygon(0 0, 0 100%, 0% 100%, 0% 0);
    -webkit-clip-path: polygon(0 0, 0 100%, 0% 100%, 0% 0);
  }
  body section.image-boxes-module .box-holder:nth-child(2),
  body section.icon-boxes-module .box-holder:nth-child(2) {
    transition-delay: 0.1s;
  }
  body section.image-boxes-module .box-holder:nth-child(3),
  body section.icon-boxes-module .box-holder:nth-child(3) {
    transition-delay: 0.2s;
  }
  body section.image-boxes-module .box-holder:nth-child(4),
  body section.icon-boxes-module .box-holder:nth-child(4) {
    transition-delay: 0.3s;
  }
  body section.image-boxes-module .box-holder:nth-child(5),
  body section.icon-boxes-module .box-holder:nth-child(5) {
    transition-delay: 0.4s;
  }
  body section.image-boxes-module .box-holder:nth-child(6),
  body section.icon-boxes-module .box-holder:nth-child(6) {
    transition-delay: 0.1s;
  }
  body section.image-boxes-module .box-holder:nth-child(7),
  body section.icon-boxes-module .box-holder:nth-child(7) {
    transition-delay: 0.2s;
  }
  body section.image-boxes-module .box-holder:nth-child(8),
  body section.icon-boxes-module .box-holder:nth-child(8) {
    transition-delay: 0.3s;
  }
  body section.image-boxes-module .box-holder:nth-child(9),
  body section.icon-boxes-module .box-holder:nth-child(9) {
    transition-delay: 0.5s;
  }
  body section.news-module.animate .post-holder.delay-no {
    clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
    -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
  }
  body section.news-module .post-holder.animate {
    clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
    -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
  }
  body section.news-module .post-holder {
    transition: clip-path linear 0.5s, -webkit-clip-path linear 0.5s;
    clip-path: polygon(0 0, 0 0%, 100% 0%, 100% 0);
    -webkit-clip-path: polygon(0 0, 0 0%, 100% 0%, 100% 0);
  }
  body section.news-module .post-holder.delay:nth-child(1) {
    transition-delay: 0.4s;
  }
  body section.news-module .post-holder.delay:nth-child(2) {
    transition-delay: 0.4s;
  }
  body section.news-module .post-holder.delay:nth-child(3) {
    transition-delay: 0.4s;
  }
  body section.accordion-boxes-module.animate .slider {
    clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
    -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
  }
  body section.accordion-boxes-module .slider {
    transition: clip-path ease 0.6s 1s, -webkit-clip-path ease 0.6s 1s;
    clip-path: polygon(0 0, 0 0%, 100% 0%, 100% 0);
    -webkit-clip-path: polygon(0 0, 0 0%, 100% 0%, 100% 0);
  }
  body section.image-content-module .box.animate .content-holder {
    clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
    -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
  }
  body section.image-content-module .box.animate .figure-animate {
    clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
    -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
  }
  body section.image-content-module .box .figure-animate {
    clip-path: polygon(0 0, 0 100%, 0% 100%, 0% 0);
    -webkit-clip-path: polygon(0 0, 0 100%, 0% 100%, 0% 0);
    transition: clip-path ease 0.6s, -webkit-clip-path ease 0.6s;
  }
  body section.image-content-module .box.static-box .content-holder {
    transition: clip-path ease 0.6s 0.5s, -webkit-clip-path ease 0.6s 0.5s;
  }
  body section.image-content-module .content-holder {
    padding-bottom: 5px;
    transition: clip-path linear 2s, -webkit-clip-path linear 2s;
    clip-path: polygon(0 0, 0 0%, 100% 0%, 100% 0);
    -webkit-clip-path: polygon(0 0, 0 0%, 100% 0%, 100% 0);
  }
  body section.banner-module .line-decor {
    height: 0;
    transition: height ease 1s 0.3s;
  }
  body section.banner-module .title {
    transition: clip-path ease 0.8s 0.4s, -webkit-clip-path ease 0.8s 0.4s;
    -webkit-clip-path: polygon(0 0, 0 100%, 0% 100%, 0% 0);
    clip-path: polygon(0 0, 0 100%, 0% 100%, 0% 0);
  }
  body section.banner-module .description {
    transition: clip-path ease 0.8s 0.6s, -webkit-clip-path ease 0.8s 0.6s;
    -webkit-clip-path: polygon(0 0, 0 100%, 0% 100%, 0% 0);
    clip-path: polygon(0 0, 0 100%, 0% 100%, 0% 0);
  }
  body section.banner-module .image {
    opacity: 0;
    transition: opacity ease 1.5s;
  }
  body section.banner-module .logo-decor .part-01 {
    opacity: 0;
    transform: scale(0.7) translateX(-10px) translateY(-10px);
    transition: opacity ease 0.5s, transform ease 0.5s;
  }
  body section.banner-module .logo-decor .part-02 {
    opacity: 0;
    transform: scale(0.7) translateX(10px) translateY(10px);
    transition: opacity ease 0.5s 0.2s, transform ease 0.5s 0.2s;
  }
  body section.banner-module video {
    opacity: 0;
    transition: opacity ease 2s 0.1s;
  }
  body section.banner-module.animate video {
    opacity: 1;
  }
  body section.banner-module.animate .title {
    -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
    clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
  }
  body section.banner-module.animate .description {
    -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
    clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
  }
  body section.banner-module.animate .line-decor {
    height: 100%;
  }
  body section.banner-module.animate .image {
    opacity: 1;
  }
  body section.banner-module.animate .logo-decor .part-01 {
    opacity: 1;
    transform: scale(1) translateX(0px);
  }
  body section.banner-module.animate .logo-decor .part-01 path {
    fill: #fff;
  }
  body section.banner-module.animate .logo-decor .part-02 {
    opacity: 1;
    transform: scale(1) translateX(0px);
  }
  body section.banner-module.animate .logo-decor .part-02 path {
    fill: #fff;
  }
}
@media (max-width: 1200px) {
  .animateRun .circle-big-decor,
  .animateRun .bubble-decor:not(.no-animate) {
    animation-play-state: running;
  }
  .bubble-decor {
    animation-duration: 80s;
    animation-delay: -7.1s;
    animation-name: move;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-play-state: paused;
    will-change: transform;
    backface-visibility: hidden;
  }
  section.banner-module .line-decor {
    height: 0;
    transition: height ease 1s 0.3s;
  }
  section.banner-module .title {
    transition: clip-path ease 0.8s 0.4s, -webkit-clip-path ease 0.8s 0.4s;
    clip-path: polygon(0 0, 0 100%, 0% 100%, 0% 0);
    -webkit-clip-path: polygon(0 0, 0 100%, 0% 100%, 0% 0);
  }
  section.banner-module .description {
    transition: clip-path ease 0.8s 0.6s, -webkit-clip-path ease 0.8s 0.6s;
    clip-path: polygon(0 0, 0 100%, 0% 100%, 0% 0);
    -webkit-clip-path: polygon(0 0, 0 100%, 0% 100%, 0% 0);
  }
  section.banner-module .image {
    opacity: 0;
    transition: opacity ease 1.5s;
  }
  section.banner-module .logo-decor .part-01 {
    opacity: 0;
    transform: scale(0.7) translateX(-10px) translateY(-10px);
    transition: opacity ease 0.5s, transform ease 0.5s;
  }
  section.banner-module .logo-decor .part-02 {
    opacity: 0;
    transform: scale(0.7) translateX(10px) translateY(10px);
    transition: opacity ease 0.5s 0.2s, transform ease 0.5s 0.2s;
  }
  section.banner-module video {
    opacity: 0;
    transition: opacity ease 2s 0.1s;
  }
  section.banner-module.animate video {
    opacity: 1;
  }
  section.banner-module.animate .title {
    clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
    -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
  }
  section.banner-module.animate .description {
    clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
    -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
  }
  section.banner-module.animate .line-decor {
    height: 100%;
  }
  section.banner-module.animate .image {
    opacity: 1;
  }
  section.banner-module.animate .logo-decor .part-01 {
    opacity: 1;
    transform: scale(1) translateX(0px);
  }
  section.banner-module.animate .logo-decor .part-01 path {
    fill: #fff;
  }
  section.banner-module.animate .logo-decor .part-02 {
    opacity: 1;
    transform: scale(1) translateX(0px);
  }
  section.banner-module.animate .logo-decor .part-02 path {
    fill: #fff;
  }
}
