*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
}

body {
  /*
    300 : Light
    400 : Regular
    600 : bold
    700 : EB
  */
  font-family: 'NanumSquare', sans-serif !important;
  min-width: 1366px;
  overflow: auto;
}

@media (max-width: 1024px) {
  body {
    min-width: initial;
  }
}

a {
  text-decoration: none;
  color: #000;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

input {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}

figure img {
  vertical-align: bottom;
}

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .container {
    padding: 0 16px;
  }
}

.globing-section {
  position: relative;
  min-height: 100vh;
}

@media (max-width: 1024px) {
  .globing-section {
    min-height: calc(var(--vh, 1vh) * 100);
  }
}

.position-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.common__layout {
  position: relative;
}

.common__layout .common__position {
  position: absolute;
  top: 50%;
  left: 0;
  width: 50%;
  transform: translateY(-50%);
}

.common__layout .common__position.common__position__right {
  left: initial;
  right: 0;
}

@media (max-width: 1024px) {
  .common__layout .common__position {
    position: static;
    transform: inherit;
    width: 100%;
  }
}

.common__layout .common__info .common__title {
  font-size: 54px;
  font-weight: 400;
  line-height: 70px;
  margin-bottom: 86px;
}

@media (max-width: 1024px) {
  .common__layout .common__info .common__title {
    font-size: 27px;
    line-height: 37px;
    margin-bottom: 56px;
  }
}

.common__layout .common__info .common__pagination {
  font-size: 0;
  margin-bottom: 54px;
}

.common__layout .common__info .common__pagination .swiper-pagination {
  position: static;
  text-align: left;
}

@media (max-width: 1024px) {
  .common__layout .common__info .common__pagination .swiper-pagination {
    text-align: left;
  }
}

.common__layout .common__info .common__pagination span {
  display: inline-block;
  font-size: 20px;
  font-weight: 300;
  color: #778b98;
  margin-right: 32px;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  opacity: 1;
  outline: 0;
  text-align: center;
}

@media (max-width: 1024px) {
  .common__layout .common__info .common__pagination span {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    margin-right: 24px;
  }
}

.common__layout .common__info .common__pagination span:last-child {
  margin-right: 0;
}

.common__layout .common__info .common__pagination span:after {
  display: block;
  content: '';
  width: 100%;
  height: 2px;
  margin-top: 8px;
  background: transparent;
}

.common__layout .common__info .common__pagination span:hover {
  color: #ff2a3f;
}

.common__layout .common__info .common__pagination span.swiper-pagination-bullet-active {
  font-weight: 600;
  color: #ff2a3f;
}

.common__layout .common__info .common__pagination span.swiper-pagination-bullet-active:after {
  background: #ff2a3f;
}

.common__layout .common__info .common__text-box .swiper-common-text .swiper-slide {
  opacity: 0 !important;
}

.common__layout .common__info .common__text-box .swiper-common-text .swiper-slide-active {
  opacity: 1 !important;
}

.common__layout .common__info .common__text {
  font-size: 20px;
  line-height: 30px;
  color: #000;
}

.common__layout .common__device {
  position: relative;
  width: 370px;
  height: 717px;
}

@media (max-width: 1024px) {
  .common__layout .common__device {
    width: 260px;
    height: 520px;
    margin-left: auto;
    margin-right: auto;
  }
}

.common__layout .common__speech {
  position: absolute;
  z-index: 5;
}

@media (max-width: 1024px) {
  .common__layout .common__speech {
    display: none;
  }
}

.common__layout .common__speech.common__speech01 {
  top: 80px;
  right: -122px;
}

.common__layout .common__speech.common__speech02 {
  top: 86px;
  left: -122px;
}

.common__layout .common__speech.common__speech03 {
  bottom: 180px;
  right: -90px;
}

.common__layout .common__speech.common__speech04 {
  bottom: 90px;
  left: -90px;
  z-index: 0;
}

.common__layout .common__speech.common__speech05 {
  bottom: 60px;
  right: -112px;
}

.common__layout .common__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-46%, -49%);
  z-index: -1;
}

@media (max-width: 1024px) {
  .common__layout .common__bg {
    display: none;
  }
}

.common__layout .common__bg img {
  width: 820px;
}

.common__layout .common__screen {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 340px;
  border-radius: 30px;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .common__layout .common__screen {
    top: 8px;
    width: 240px;
  }
}

.common__layout .common__screen img {
  width: 100%;
}

.common__layout .common__phone {
  position: absolute;
  top: 0;
  left: 0;
}

.common__layout .common__phone img {
  width: 100%;
}

.clear-both:after {
  display: block;
  content: '';
  clear: both;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.position-relative {
  position: relative;
}

.a11y-hidden {
  overflow: hidden;
  position: absolute !important;
  top: -9999em;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
}

.mobile-hidden {
  display: block !important;
}

@media (max-width: 1024px) {
  .mobile-hidden {
    display: none !important;
  }
}

.mobile-hidden-inline {
  display: inline-block !important;
}

@media (max-width: 1024px) {
  .mobile-hidden-inline {
    display: none !important;
  }
}

.mobile-visible {
  display: none !important;
}

@media (max-width: 1024px) {
  .mobile-visible {
    display: block !important;
  }
}

.mobile-visible-inline {
  display: none !important;
}

@media (max-width: 1024px) {
  .mobile-visible-inline {
    display: inline-block !important;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: 0.3s;
  z-index: 100;
}

header.result-header {
  background: #48555d;
}

header.keyword-header a {
  color: #000;
}

header.keyword-header.fixed .hamburger span {
  background: #fff;
}

header.keyword-header.fixed a {
  color: #fff;
}

header.keyword-header.fixed a:hover,
header.keyword-header.fixed a.active {
  color: #ff485a;
}

@media (max-width: 1024px) {
  header.keyword-header.fixed a {
    color: #000;
    font-weight: 800;
  }
}

header.keyword-header .hamburger span {
  background: #000;
}

header.sns-header svg .cls-1 {
  fill: #000;
}

header.sns-header .hamburger span {
  background: #000;
}

@media (max-width: 1024px) {
  header.sns-header.fixed .hamburger span {
    background: #fff;
  }
}

header.sns-header.fixed .hamburger.open span {
  background: #48555d;
}

header.fixed {
  background: #48555d;
}

header.fixed nav li {
  padding-top: 12px;
  padding-bottom: 12px;
}

@media (max-width: 1024px) {
  header.fixed nav li {
    padding-top: 0;
    padding-bottom: 0;
  }
}

header.fixed .header__sub {
  top: 90%;
}

@media (max-width: 1024px) {
  header {
    padding-top: 0px;
  }

  header.fixed,
  header.result-header {
    padding-top: 0;
    padding-bottom: 0;
  }

  header .header-inner {
    height: 60px;
  }
}

header h1 {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

header a img {
  height: 32px;
  vertical-align: bottom;
}

@media (max-width: 1024px) {
  header .hamburger {
    position: absolute;
    top: 50%;
    right: 0;
    width: 25px;
    transform: translateY(-50%);
    z-index: 10;
  }

  header .hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
    margin-bottom: 6px;
    transform-origin: 100%;
  }

  header .hamburger span:last-child {
    margin-bottom: 0;
  }

  header .hamburger.open span {
    background: #48555d;
  }

  header .hamburger.open span:nth-child(1) {
    transform: rotate(-45deg);
  }

  header .hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  header .hamburger.open span:nth-child(3) {
    transform: rotate(45deg);
  }
}

header nav {
  float: right;
}

@media (max-width: 1024px) {
  header nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    height: 100vh;
    background: #fff;
    padding-left: 32px;
    padding-top: 68px;
  }

  header nav.open {
    display: block;
  }
}

header nav ul {
  font-size: 0;
}

header nav li {
  position: relative;
  display: inline-block;
  margin-right: 44px;
  line-height: 47px;
  padding-top: 30px;
  padding-bottom: 30px;
  transition: 0.3s;
}

header nav li:last-child {
  margin-right: 0;
}

header nav li:hover .header__sub {
  display: block;
}

@media (max-width: 1024px) {
  header nav li {
    display: block;
    margin-right: 0;
    padding: 0;
  }
}

header nav a {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  vertical-align: bottom;
  transition: 0.3s;
}

header nav a:hover,
header nav a.active {
  color: #ff485a;
}

@media (max-width: 1024px) {
  header nav a {
    color: #000;
    font-weight: 800;
  }
}

.top-logo {
  display: block;
}

.fixed-logo {
  display: none;
}

.fixed .top-logo {
  display: none;
}

.fixed .fixed-logo {
  display: block;
}

.header__sub {
  display: none;
  position: absolute;
  left: -36px;
  top: 80%;
  width: 152px;
  padding: 10px 0;
  background: #fff;
  box-shadow: 2px 2px 10px -3px rgba(0, 0, 0, 0.3);
}

.header__sub li {
  display: block;
  margin: 0;
  padding: 12px 0;
  line-height: 1;
}

.header__sub a {
  display: block;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 600;
  color: #48555d !important;
}

.header__sub a:hover,
.header__sub a.active {
  color: #ff485a !important;
}

footer {
  padding: 72px 0 215px 0;
  background: #313131;
}

@media (max-width: 1024px) {
  footer {
    padding: 72px 0;
  }
}

footer p {
  font-size: 16px;
  font-weight: 300;
  line-height: 32px;
  color: #fff;
}

@media (max-width: 1024px) {
  footer p {
    font-size: 14px;
    line-height: 26px;
  }
}

footer .line {
  color: #444;
  font-weight: 300;
}

@media (max-width: 1024px) {
  footer .line {
    display: none;
  }
}

footer .copyright {
  font-size: 14px;
  font-weight: 300;
  color: #6E6E6E;
}

@media (max-width: 1024px) {
  footer .copyright {
    font-size: 12px;
  }
}

@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: $themeColor;
}

.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 {
  flex-direction: column;
}

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

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

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

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

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

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

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

/* Auto Height */

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

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

/* 3D Effects */

.swiper-container-3d {
  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 {
  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: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  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: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  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 {
  scroll-snap-type: x mandatory;
}

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

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

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  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 {
  transform: scale(0.33);
  position: relative;
}

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

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

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

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

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

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  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;
  box-shadow: 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%;
  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%;
  transform: translateY(-50%);
  width: 8px;
}

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

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

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

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

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

/* 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%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  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: $paginationColorValue;
}

.swiper-pagination-black {
  --swiper-pagination-color: $paginationColorValue;
}

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

: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: flex;
  align-items: 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;
}

.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: $navColorValue;
}

.swiper-button-prev.swiper-button-black,
.swiper-button-next.swiper-button-black {
  --swiper-navigation-color: $navColorValue;
}

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

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

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  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;
}

/*!
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;
  -ms-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;
  -ms-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;
  -ms-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;
  -ms-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;
  -ms-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;
}

@keyframes hover-color {
  from {
    border-color: #c0c0c0;
  }

  to {
    border-color: #48555d;
  }
}

.magic-radio,
.magic-checkbox {
  position: absolute;
  display: none;
}

.magic-radio[disabled],
.magic-checkbox[disabled] {
  cursor: not-allowed;
}

.magic-radio + label,
.magic-checkbox + label {
  position: relative;
  display: block;
  padding-left: 30px;
  cursor: pointer;
  vertical-align: middle;
}

.magic-radio + label:hover:before,
.magic-checkbox + label:hover:before {
  animation-duration: 0.4s;
  animation-fill-mode: both;
  animation-name: hover-color;
}

.magic-radio + label:before,
.magic-checkbox + label:before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 20px;
  height: 20px;
  content: '';
  border: 1px solid #c0c0c0;
}

.magic-radio + label:after,
.magic-checkbox + label:after {
  position: absolute;
  display: none;
  content: '';
}

.magic-radio[disabled] + label,
.magic-checkbox[disabled] + label {
  cursor: not-allowed;
  color: #e4e4e4;
}

.magic-radio[disabled] + label:hover,
.magic-radio[disabled] + label:before,
.magic-radio[disabled] + label:after,
.magic-checkbox[disabled] + label:hover,
.magic-checkbox[disabled] + label:before,
.magic-checkbox[disabled] + label:after {
  cursor: not-allowed;
}

.magic-radio[disabled] + label:hover:before,
.magic-checkbox[disabled] + label:hover:before {
  border: 1px solid #e4e4e4;
  animation-name: none;
}

.magic-radio[disabled] + label:before,
.magic-checkbox[disabled] + label:before {
  border-color: #e4e4e4;
}

.magic-radio:checked + label:before,
.magic-checkbox:checked + label:before {
  animation-name: none;
}

.magic-radio:checked + label:after,
.magic-checkbox:checked + label:after {
  display: block;
}

.magic-radio + label:before {
  border-radius: 50%;
}

.magic-radio + label:after {
  top: 6px;
  left: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #48555d;
}

.magic-radio:checked + label:before {
  border: 1px solid #48555d;
}

.magic-radio:checked[disabled] + label:before {
  border: 1px solid #93a2ab;
}

.magic-radio:checked[disabled] + label:after {
  background: #93a2ab;
}

.magic-checkbox + label:before {
  border-radius: 3px;
}

.magic-checkbox + label:after {
  top: 2px;
  left: 7px;
  box-sizing: border-box;
  width: 6px;
  height: 12px;
  transform: rotate(45deg);
  border-width: 2px;
  border-style: solid;
  border-color: #fff;
  border-top: 0;
  border-left: 0;
}

.magic-checkbox:checked + label:before {
  border: #48555d;
  background: #48555d;
}

.magic-checkbox:checked[disabled] + label:before {
  border: #93a2ab;
  background: #93a2ab;
}

.globing-main .globing-section {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .globing-main .common__layout .float-left,
  .globing-main .common__layout .float-right {
    float: none;
    margin-top: 60px;
  }
}

.main-visual {
  height: 100vh;
}

@media (max-width: 1024px) {
  .main-visual {
    height: calc(var(--vh, 1vh) * 100);
  }
}

.main-visual .swiper-slide {
  height: 100vh;
  background-size: cover !important;
}

@media (max-width: 1024px) {
  .main-visual .swiper-slide {
    height: calc(var(--vh, 1vh) * 100);
  }
}

.main-visual .swiper-slide .position-relative {
  height: 100vh;
}

@media (max-width: 1024px) {
  .main-visual .swiper-slide .position-relative {
    height: calc(var(--vh, 1vh) * 100);
  }
}

.main-visual .swiper-slide01 {
  background: url("../../assets/img/main/main-01.jpg") no-repeat center;
}

@media (max-width: 1024px) {
  .main-visual .swiper-slide01 {
    background: url("../../assets/img/main/main-mobile01.png") no-repeat center;
  }
}

.main-visual .swiper-slide02 {
  background: url("../../assets/img/main/main-02.jpg") no-repeat center;
}

@media (max-width: 1024px) {
  .main-visual .swiper-slide02 {
    background: url("../../assets/img/main/main-mobile02.png") no-repeat center;
  }
}

.main-visual .swiper-slide03 {
  background: url("../../assets/img/main/main-03.jpg") no-repeat center;
}

@media (max-width: 1024px) {
  .main-visual .swiper-slide03 {
    background: url("../../assets/img/main/main-mobile03.png") no-repeat center;
  }
}

.main-visual .swiper-button-prev {
  left: 5%;
}

.main-visual .swiper-button-prev img {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  height: 50px;
}

.main-visual .swiper-button-next {
  right: 5%;
}

.main-visual .swiper-button-prev,
.main-visual .swiper-button-next {
  width: auto;
  height: auto;
}

@media (max-width: 1024px) {
  .main-visual .swiper-button-prev,
  .main-visual .swiper-button-next {
    display: none;
  }
}

.main-visual .swiper-button-prev:after,
.main-visual .swiper-button-next:after {
  display: none;
}

.main-visual .swiper-pagination-bullets {
  bottom: 50%;
  right: 30px;
  width: initial;
  transform: translateY(50%);
  left: inherit;
}

@media (max-width: 1024px) {
  .main-visual .swiper-pagination-bullets {
    width: 100%;
    right: 0;
    top: 290px;
    bottom: inherit;
    transform: inherit;
  }
}

.main-visual .swiper-pagination-bullets .swiper-pagination-bullet {
  display: block;
  margin-bottom: 17px;
  background: #fff;
}

@media (max-width: 1024px) {
  .main-visual .swiper-pagination-bullets .swiper-pagination-bullet {
    display: inline-block;
    margin-bottom: 0;
    width: 6px;
    height: 6px;
  }
}

.main-visual .swiper-pagination-bullets .swiper-pagination-bullet:last-child {
  margin-bottom: 0;
}

.main-visual .swiper-pagination-bullets .swiper-pagination-bullet-active {
  background: #fff;
}

.main-visual .visual__textbox {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 1024px) {
  .main-visual .visual__textbox {
    top: 90px;
    width: 100%;
    transform: inherit;
  }
}

.main-visual .visual__textbox .visual__title {
  font-size: 60px;
  font-weight: 800;
  line-height: 68px;
  margin-bottom: 60px;
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.6s;
}

@media (max-width: 1024px) {
  .main-visual .visual__textbox .visual__title {
    font-size: 34px;
    font-weight: 300;
    line-height: 39px;
    margin-bottom: 30px;
    text-align: center;
  }
}

.main-visual .visual__textbox .visual__text {
  font-size: 30px;
  line-height: 38px;
  color: #fff;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.9s;
}

@media (max-width: 1024px) {
  .main-visual .visual__textbox .visual__text {
    font-size: 20px;
    font-weight: 300;
    text-align: center;
    line-height: 26px;
    word-break: keep-all;
  }
}

.main-visual .visual__textbox .visual__btn {
  opacity: 0;
  transition: 0.6s;
}

.main-visual .visual__textbox .visual__btn a {
  margin-right: 8px;
}

@media (max-width: 1024px) {
  .main-visual .visual__textbox .visual__btn {
    display: none;
  }
}

.main-visual .swiper-slide-active .visual__title {
  transition-delay: 0.3s;
  transform: translateY(0);
  opacity: 1;
}

.main-visual .swiper-slide-active .visual__text {
  transition-delay: 0.6s;
  transform: translateY(0);
  opacity: 1;
}

.main-visual .swiper-slide-active .visual__btn {
  transition-delay: 1.2s;
  opacity: 1;
}

.main-visual .visual__mouse {
  position: absolute;
  bottom: 54px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .main-visual .visual__mouse {
    display: none;
  }
}

.main-visual .visual__mouse figure img {
  vertical-align: bottom;
}

.btn-download {
  display: none;
}

@media (max-width: 1024px) {
  .btn-download {
    display: block;
    position: fixed;
    bottom: 16px;
    width: calc(100% - 32px);
    left: 16px;
    height: 50px;
    font-size: 16px;
    line-height: 50px;
    color: #fff;
    background: #ff2a3f;
    text-align: center;
    border-radius: 6px;
    transition: 0.3s;
    z-index: 20;
  }

  .btn-download.active {
    width: 100%;
    left: 0;
    bottom: 0;
    border-radius: 0;
  }
}

.main-sns {
  background-image: linear-gradient(to bottom, #f5f7f9, #ecf0f1);
}

@media (max-width: 1024px) {
  .main-sns {
    padding: 70px 0;
  }
}

@media (max-width: 1024px) {
  .main-sns .position-center {
    position: static;
    transform: inherit;
  }
}

.main-sns h2 {
  font-size: 50px;
  font-weight: 300;
  line-height: 58px;
  text-align: center;
  margin-bottom: 65px;
}

@media (max-width: 1024px) {
  .main-sns h2 {
    font-size: 28px;
  }
}

.main-sns .sns__table {
  display: table;
  width: 100%;
}

@media (max-width: 1024px) {
  .main-sns .sns__table {
    display: block;
  }
}

.main-sns .sns__table-cell {
  position: relative;
  display: table-cell;
  width: 50%;
  text-align: center;
}

@media (max-width: 1024px) {
  .main-sns .sns__table-cell {
    display: block;
    width: 100%;
  }

  .main-sns .sns__table-cell.sns__table-cell + .sns__table-cell {
    margin-top: 72px;
  }
}

.main-sns .sns__info {
  padding-bottom: 80px;
}

.main-sns .sns__info figure {
  margin-bottom: 33px;
}

.main-sns .sns__info .sns__title {
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 12px;
}

@media (max-width: 1024px) {
  .main-sns .sns__info .sns__title {
    font-size: 28px;
  }
}

.main-sns .sns__info .sns__count {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 40px;
}

@media (max-width: 1024px) {
  .main-sns .sns__info .sns__count {
    font-size: 38px;
  }
}

.main-sns .sns__info .sns__text {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
}

@media (max-width: 1024px) {
  .main-sns .sns__info .sns__text {
    font-size: 16px;
  }
}

.main-sns .sns__info .sns__text__blog {
  line-height: 50px;
}

@media (max-width: 1024px) {
  .main-sns .sns__info .sns__text__blog {
    line-height: 28px;
  }
}

.main-sns .sns__button {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 300px;
  text-align: center;
  transform: translateX(-50%);
}

.main-sns .sns__button a {
  display: block;
  height: 50px;
  line-height: 50px;
  border-radius: 12px;
  color: #fff;
}

.main-sns .sns__button.sns__button__blog a {
  background-image: linear-gradient(90deg, #75d141 12%, #4ecc4e 100%);
}

.main-sns .sns__button.sns__button__insta a {
  background-image: linear-gradient(90deg, #77a0ff 0%, #d398ff 100%);
}

.main-detail .swiper-slide-active .detail-action {
  animation: fadeInLeft 2s;
}

@media (max-width: 1024px) {
  .main-detail .swiper-slide-active .detail-action {
    animation: fadeIn 2s;
  }
}

.main-detail .swiper-button-prev {
  left: 5%;
}

.main-detail .swiper-button-prev img {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.main-detail .swiper-pagination .swiper-pagination-bullet-active {
  background: #48555d;
}

@media (max-width: 1024px) {
  .main-detail .swiper-button-prev {
    left: 10px;
  }
}

.main-detail .swiper-button-next {
  right: 5%;
}

@media (max-width: 1024px) {
  .main-detail .swiper-button-next {
    right: 10px;
  }
}

.main-detail .swiper-button-prev,
.main-detail .swiper-button-next {
  width: auto;
  height: auto;
  height: 30px;
}

@media (max-width: 1024px) {
  .main-detail .swiper-button-prev,
  .main-detail .swiper-button-next {
    display: block;
    top: 70%;
  }

  .main-detail .swiper-button-prev img,
  .main-detail .swiper-button-next img {
    width: 30px;
  }
}

.main-detail .swiper-button-prev:after,
.main-detail .swiper-button-next:after {
  display: none;
}

@media (max-width: 1024px) {
  .main-detail .float-right {
    margin-top: 60px;
  }
}

.main-account {
  background: url("../../assets/img/bg-circle.png") no-repeat 0;
  background-size: cover;
}

@media (max-width: 1024px) {
  .main-account {
    padding: 70px 0;
  }
}

@media (max-width: 1024px) {
  .main-account .position-center {
    position: static;
    transform: inherit;
  }
}

.main-account-blog {
  background: #eeebea url("../../assets/img/bg-circle-brown.png") no-repeat 0;
  background-size: cover;
}

@media (max-width: 1024px) {
  .main-account-blog {
    padding: 70px 0;
  }
}

@media (max-width: 1024px) {
  .main-account-blog .position-center {
    position: static;
    transform: inherit;
  }
}

.main-account-blog .common__layout .common__info .common__title {
  margin-bottom: 30px;
}

.main-account-blog .common__sub-info {
  font-size: 22px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 86px;
}

@media (max-width: 1024px) {
  .main-account-blog .common__sub-info {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 56px;
  }
}

.main-account-insta {
  background: #eceaf2 url("../../assets/img/bg-circle-violet.png") no-repeat 0;
  background-size: cover;
}

@media (max-width: 1024px) {
  .main-account-insta {
    padding: 70px 0;
  }
}

@media (max-width: 1024px) {
  .main-account-insta .position-center {
    position: static;
    transform: inherit;
  }
}

.main-account-insta .common__layout .common__info .common__title {
  margin-bottom: 30px;
}

.main-account-insta .common__sub-info {
  font-size: 22px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 86px;
}

@media (max-width: 1024px) {
  .main-account-insta .common__sub-info {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 56px;
  }
}

.main-support {
  background: #f8f8ff;
}

@media (max-width: 1024px) {
  .main-support {
    padding: 70px 0;
  }
}

@media (max-width: 1024px) {
  .main-support .position-center {
    position: static;
    transform: inherit;
  }
}

@media (max-width: 1024px) {
  .main-campaign {
    padding: 70px 0;
    min-height: 100vh;
    box-sizing: content-box;
  }
}

@media (max-width: 1024px) {
  .main-campaign .position-center {
    position: static;
    transform: inherit;
  }
}

.main-campaign .common__layout .common__info .common__title {
  margin-bottom: 50px;
}

.main-campaign .common__pagination {
  position: relative;
  top: 70px;
}

@media (max-width: 1024px) {
  .main-campaign .common__pagination {
    position: static;
  }
}

.main-campaign .common__text-box {
  position: relative;
  top: 70px;
}

@media (max-width: 1024px) {
  .main-campaign .common__text-box {
    position: static;
  }
}

.main-campaign .common__device {
  width: 540px;
  margin-right: -48px;
}

@media (max-width: 1024px) {
  .main-campaign .common__device {
    width: 340px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
}

.main-campaign .common__device .common__phone img {
  width: 100%;
}

.main-campaign .common__device .swiper-container {
  overflow: visible;
}

.main-campaign .common__device .swiper-slide {
  opacity: 0 !important;
}

.main-campaign .common__device .swiper-slide img {
  width: 592px;
}

@media (max-width: 1024px) {
  .main-campaign .common__device .swiper-slide img {
    width: 100%;
  }
}

.main-campaign .common__device .swiper-slide-active {
  opacity: 1 !important;
}

.bg__campaign {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
}

.bg__campaign .swiper-slide {
  height: 100vh;
}

@media (max-width: 1024px) {
  .bg__campaign .swiper-slide {
    opacity: 0.5;
  }
}

.bg__campaign .campaign-slide01 {
  background: url("../../assets/img/campaign/bg-campaign01.jpg") no-repeat center;
  background-size: cover;
}

.bg__campaign .campaign-slide02 {
  background: url("../../assets/img/campaign/bg-campaign02.jpg") no-repeat center;
  background-size: cover;
}

.bg__campaign .campaign-slide03 {
  background: url("../../assets/img/campaign/bg-campaign03.jpg") no-repeat center;
  background-size: cover;
}

.main-youtube {
  background: url("../../assets/img/youtube/bg-youtube.jpg") no-repeat 0;
  background-size: cover;
}

@media (min-width: 1025px) and (max-width: 1919px) {
  .main-youtube {
    padding: 120px 0;
    height: 100vh;
    box-sizing: content-box;
  }
}

@media (max-width: 1024px) {
  .main-youtube {
    padding: 30px 0;
    min-height: 640px;
    box-sizing: content-box;
  }
}

@media (min-width: 768px) and (max-height: 1079px) {
  .main-youtube {
    min-height: 980px;
  }
}

@media (max-width: 1024px) {
  .main-youtube .position-center {
    position: static;
    transform: inherit;
  }
}

.main-youtube .youtube__position {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  transform: translateX(-50%);
}

.main-youtube .youtube__top {
  text-align: center;
}

.main-youtube .youtube__top .common__info {
  margin-bottom: 30px;
}

.main-youtube .youtube__top .common__title,
.main-youtube .youtube__top .common__text {
  color: #fff;
}

.main-youtube .youtube__top .common__pagination div {
  display: block;
}

.main-youtube .youtube__top .common__pagination span {
  width: 110px;
  font-weight: 600;
  color: #ff2a3f;
}

@media (max-width: 1024px) {
  .main-youtube .youtube__top .common__pagination span {
    width: 70px;
  }
}

.main-youtube .youtube__top .common__pagination span:after {
  background: #ff2a3f;
}

.main-youtube .youtube__bottom figure {
  max-width: 1080px;
  margin: 0 auto;
}

.main-youtube .youtube__bottom figure img {
  width: 100%;
  vertical-align: bottom;
}

.main-benefit .swiper-slide-active .benefit-action {
  animation: fadeInLeft 2s;
}

@media (max-width: 1024px) {
  .main-benefit .swiper-slide-active .benefit-action {
    animation: fadeIn 2s;
  }
}

.main-benefit .swiper-button-prev {
  left: 5%;
}

.main-benefit .swiper-button-prev img {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.main-benefit .swiper-button-next {
  right: 5%;
}

.main-benefit .swiper-button-prev,
.main-benefit .swiper-button-next {
  width: auto;
  height: auto;
  height: 50px;
}

@media (max-width: 1024px) {
  .main-benefit .swiper-button-prev,
  .main-benefit .swiper-button-next {
    display: none;
  }
}

.main-benefit .swiper-button-prev:after,
.main-benefit .swiper-button-next:after {
  display: none;
}

.main-point {
  background: url("../../assets/img/bg-circle.png") no-repeat 0;
  background-size: cover;
}

@media (max-width: 1024px) {
  .main-point {
    padding: 70px 0;
  }
}

@media (max-width: 1024px) {
  .main-point .position-center {
    position: static;
    transform: inherit;
  }
}

.main-rank {
  background: url("../../assets/img/bg-circle.png") no-repeat 0;
  background-size: cover;
}

@media (max-width: 1024px) {
  .main-rank {
    padding: 70px 0;
  }
}

@media (max-width: 1024px) {
  .main-rank .position-center {
    position: static;
    transform: inherit;
  }
}

.lds-ripple {
  display: inline-block;
  position: relative;
  width: 56px;
  height: 56px;
}

.lds-ripple div {
  position: absolute;
  border: 4px solid #000;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1.4s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.lds-ripple div:nth-child(2) {
  animation-delay: -0.6s;
}

@keyframes lds-ripple {
  0% {
    top: 24px;
    left: 24px;
    width: 0;
    height: 0;
    opacity: 1;
  }

  100% {
    top: 0px;
    left: 0px;
    width: 48px;
    height: 48px;
    opacity: 0;
  }
}

.progress {
  width: 98px;
  height: 98px;
  line-height: 98px;
  background: none;
  margin: 0 auto;
  box-shadow: none;
  position: relative;
}

.progress:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid transparent;
  position: absolute;
  top: 0;
  left: 0;
}

.progress > span {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
}

.progress .progress-left {
  left: 0;
}

.progress .progress-bar {
  width: 100%;
  height: 100%;
  background: none;
  border-width: 2px;
  border-style: solid;
  position: absolute;
  top: 0;
  border-color: #ff4053;
}

.progress .progress-left .progress-bar {
  left: 100%;
  border-top-right-radius: 49px;
  border-bottom-right-radius: 49px;
  border-left: 0;
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.progress .progress-right {
  right: 0;
}

.progress .progress-right .progress-bar {
  left: -100%;
  border-top-left-radius: 49px;
  border-bottom-left-radius: 49px;
  border-right: 0;
  -webkit-transform-origin: center right;
  transform-origin: center right;
}

.progress .progress-value {
  display: flex;
  border-radius: 50%;
  font-size: 36px;
  text-align: center;
  line-height: 20px;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-weight: 300;
}

.progress .progress-value div {
  margin-top: 10px;
}

.progress .progress-value span {
  font-size: 12px;
  text-transform: uppercase;
}

/* This for loop creates the 	necessary css animation names
Due to the split circle of progress-left and progress right, we must use the animations on each side.
*/

.progress[data-percentage="10"] .progress-right .progress-bar {
  animation: loading-1 1s linear forwards;
}

.progress[data-percentage="10"] .progress-left .progress-bar {
  animation: 0;
}

.progress[data-percentage="20"] .progress-right .progress-bar {
  animation: loading-2 1s linear forwards;
}

.progress[data-percentage="20"] .progress-left .progress-bar {
  animation: 0;
}

.progress[data-percentage="30"] .progress-right .progress-bar {
  animation: loading-3 1s linear forwards;
}

.progress[data-percentage="30"] .progress-left .progress-bar {
  animation: 0;
}

.progress[data-percentage="40"] .progress-right .progress-bar {
  animation: loading-4 1s linear forwards;
}

.progress[data-percentage="40"] .progress-left .progress-bar {
  animation: 0;
}

.progress[data-percentage="50"] .progress-right .progress-bar {
  animation: loading-5 1s linear forwards;
}

.progress[data-percentage="50"] .progress-left .progress-bar {
  animation: 0;
}

.progress[data-percentage="60"] .progress-right .progress-bar {
  animation: loading-5 1s linear forwards;
}

.progress[data-percentage="60"] .progress-left .progress-bar {
  animation: loading-1 1s linear forwards 1s;
}

.progress[data-percentage="70"] .progress-right .progress-bar {
  animation: loading-5 1s linear forwards;
}

.progress[data-percentage="70"] .progress-left .progress-bar {
  animation: loading-2 1s linear forwards 1s;
}

.progress[data-percentage="80"] .progress-right .progress-bar {
  animation: loading-5 1s linear forwards;
}

.progress[data-percentage="80"] .progress-left .progress-bar {
  animation: loading-3 1s linear forwards 1s;
}

.progress[data-percentage="90"] .progress-right .progress-bar {
  animation: loading-5 1s linear forwards;
}

.progress[data-percentage="90"] .progress-left .progress-bar {
  animation: loading-4 1s linear forwards 1s;
}

.progress[data-percentage="100"] .progress-right .progress-bar {
  animation: loading-5 1s linear forwards;
}

.progress[data-percentage="100"] .progress-left .progress-bar {
  animation: loading-5 1s linear forwards 1s;
}

@keyframes loading-1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

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

@keyframes loading-2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

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

@keyframes loading-3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

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

@keyframes loading-4 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

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

@keyframes loading-5 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

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

.progress {
  margin-bottom: 1em;
}

.sns-line {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

@media (max-width: 1024px) {
  .sns-line {
    display: none;
  }
}

.sns-line figure img {
  width: 100%;
  vertical-align: bottom;
}

.bg__blog {
  background-image: linear-gradient(to bottom, #4ecc4e, #8ce161);
}

.bg__instagram {
  background-image: linear-gradient(to bottom, #77a0ff, #d398ff);
}

.bg__youtube {
  background-image: linear-gradient(to bottom, #ff8181, #ff5858);
}

.sns__step01 {
  display: block;
}

.sns__step02 {
  display: none;
  position: relative;
  z-index: 10;
}

.sns__step02 .analysis__header {
  padding-top: 120px;
}

@media (max-width: 1024px) {
  .sns__step02 .analysis__header {
    padding-top: 0;
  }
}

.sns__step02 .analysis__footer {
  padding-bottom: 120px;
}

@media (max-width: 1024px) {
  .sns__step02 .analysis__footer {
    padding-bottom: 80px;
  }
}

@media (max-width: 1024px) {
  .sns__step02 {
    padding-top: 90px;
  }
}

@media (max-width: 1024px) {
  .sns__step02.position-center {
    position: static;
    transform: inherit;
  }
}

.sns__step03 {
  display: none;
}

@media (max-width: 1024px) {
  .sns__step03.position-center {
    position: static;
    transform: inherit;
  }
}

.sns__step03 .sns__header {
  text-align: center;
  padding: 50px;
  margin-bottom: 52px;
}

@media (max-width: 1024px) {
  .sns__step03 .sns__header {
    position: relative;
    padding-left: 0;
    padding-right: 0;
    text-align: left !important;
  }

  .sns__step03 .sns__header .sns__mobile-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
  }
}

.sns__step03 .sns__header figure {
  display: inline-block;
  border-radius: 50%;
  animation: pulse 1.8s ease-out infinite;
}

@media (max-width: 1024px) {
  .sns__step03 .sns__header figure {
    position: absolute;
    right: 0px;
    bottom: 37px;
  }

  .sns__step03 .sns__header figure:before {
    position: absolute;
    top: 59px;
    left: -73px;
    display: none;
    content: '';
    width: 103px;
    height: 2px;
    background: #ff2a3f;
    transform: rotate(-28deg);
    transform-origin: 0;
  }

  .sns__step03 .sns__header figure img {
    position: relative;
    width: 30px;
    z-index: 10;
  }
}

@media (max-width: 1024px) {
  .sns__step03 .globing-btn {
    height: 50px;
    line-height: 50px;
    background: #ff2a3f;
    font-size: 18px;
    color: #fff;
  }

  .sns__step03 .globing-btn.sns__btn__blog {
    color: #fff;
    background: #ff2a3f;
  }

  .sns__step03 .globing-btn.sns__btn__insta {
    color: #fff;
    background: #ff2a3f;
  }
    
  .sns__step03 .globing-btn.sns__btn__youtube {
    color: #fff;
    background: #fb5a5a;
  }
}

@media (max-width: 1024px) {
  .sns__step03 .sns__color__blog {
    color: #ff2a3f;
  }
}

@media (max-width: 1024px) {
  .sns__step03 .sns__color__insta {
    color: #007aff;
  }
}

.sns__header {
  text-align: center;
  padding: 50px;
  margin-bottom: 52px;
}

@media (max-width: 1024px) {
  .sns__header {
    position: relative;
    padding-left: 0;
    padding-right: 0;
  }
}

.sns__header figure {
  display: inline-block;
  border-radius: 50%;
  animation: pulse 1.8s ease-out infinite;
}

@media (max-width: 1024px) {
  .sns__header figure img {
    position: relative;
    width: 30px;
    z-index: 10;
  }
}

.sns__header-mobile {
  display: inline-block;
  width: 100%;
  text-align: left;
  padding-bottom: 12px;
  background: url(../../assets/img/red-line.svg) no-repeat -20px bottom;
  background-size: cover;
}

.sns__header-mobile .mobile__img {
  padding-right: 6px;
}

.sns__header-mobile img {
  height: 56px;
}

.sns__header-mobile span {
  display: block;
  font-size: 16px;
  color: #000;
  padding-bottom: 4px;
}

.sns__header-mobile p {
  font-size: 36px;
  font-weight: 700;
  color: #ff2a3f;
}

.sns__body {
  text-align: center;
}

.sns__body h2 {
  font-size: 54px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 54px;
}

@media (max-width: 1024px) {
  .sns__body h2 {
    font-size: 30px;
  }
}

.sns__body p {
  font-size: 22px;
  line-height: 32px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 45px;
}

@media (max-width: 1024px) {
  .sns__body p {
    font-size: 18px;
  }
}

.sns__footer {
  text-align: center;
}

.sns__footer .sns__input-box {
  margin-bottom: 40px;
}

.sns__footer input {
  width: 100%;
  max-width: 400px;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  color: #000;
  padding: 20px;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  border-radius: 12px;
  outline: 0;
}

.sns__footer input::placeholder {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
}

.globing-btn {
  display: inline-block;
  width: 190px;
  height: 70px;
  line-height: 70px;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  border: none;
  border-radius: 35px;
  background: #fff;
}

.globing-btn.sns__btn__blog {
  color: #65ce46;
  box-shadow: 0 13px 25px 0 rgba(86, 194, 167, 0.16);
}

.globing-btn.sns__btn__insta {
  color: #929dff;
  box-shadow: 0 13px 25px 0 rgba(86, 194, 167, 0.16);
}
.globing-btn.sns__btn__youtube {
  color: #fb5a5a;
  box-shadow: 0 13px 25px 0 rgba(86, 194, 167, 0.16);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7), 0 0 0 0 rgba(255, 255, 255, 0.7);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0), 0 0 0 67px rgba(255, 255, 255, 0);
  }
}

@keyframes pulse-red {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 42, 63, 0.7), 0 0 0 0 rgba(255, 42, 63, 0.7);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 42, 63, 0), 0 0 0 40px rgba(255, 42, 63, 0);
  }
}

.analysis__header figure {
  display: inline-block;
  width: 78px;
  height: 78px;
  background: #fff;
  border-radius: 50%;
  overflow: hidden;
}

.analysis__header figure img {
  width: 100%;
}

.analysis__loading {
  text-align: center;
  padding-top: 12px;
}

.analysis__loading p {
  padding-top: 16px;
  padding-bottom: 20px;
  font-size: 40px;
  font-weight: 600;
  color: #fff;
}

@media (max-width: 1024px) {
  .analysis__loading p {
    font-size: 28px;
  }
}

.analysis__body {
  text-align: center;
}

.analysis__body .analysis__hash-list {
  padding-bottom: 20px;
  font-size: 0;
}

.analysis__body .analysis__hash-list span {
  display: inline-block;
  height: 30px;
  line-height: 28px;
  text-align: center;
  font-size: 16px;
  color: #ff2a3f;
  border: 2px solid #ff2a3f;
  background: #fff;
  border-radius: 6px;
  padding: 0 16px;
  margin-bottom: 10px;
  margin-right: 6px;
}

.analysis__body .analysis__hash-list span:last-child {
  margin-right: 0;
}

.analysis__body p {
  padding-bottom: 48px;
  font-size: 22px;
  font-weight: 400;
  color: #fff;
}

@media (max-width: 1024px) {
  .analysis__body p {
    font-size: 18px;
  }
}

.analysis__footer .analysis__gallery {
  text-align: center;
}

.analysis__footer .analysis__gallery ul {
  display: inline-block;
  font-size: 0;
  width: 100%;
  max-width: 760px;
}

.analysis__footer .analysis__gallery ul li {
  display: inline-block;
  width: 50%;
  padding-right: 10px;
  margin-bottom: 20px;
  vertical-align: top;
}

.analysis__footer .analysis__gallery ul li:nth-child(2n) {
  padding-right: 0;
  padding-left: 10px;
}

@media (max-width: 1024px) {
  .analysis__footer .analysis__gallery ul li {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .analysis__footer .analysis__gallery ul li:nth-child(2n) {
    padding-right: 0;
    padding-left: 0;
  }
}

.analysis__footer .analysis__gallery .gallery__box {
  position: relative;
  width: 100%;
  height: 124px;
  background: #e2e2e2;
  border-radius: 10px;
  border: 5px solid #fff;
  text-align: left;
  padding: 12px;
  background-size: cover;
}

.analysis__footer .analysis__gallery .gallery__box:before {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 50%;
  border-radius: 6px;
}

.analysis__footer .analysis__gallery .gallery__box .gallery__title {
  position: relative;
  font-size: 14px;
  margin-bottom: 6px;
  color: #fff;
}

.analysis__footer .analysis__gallery .gallery__box .gallery__rank {
  position: relative;
  font-size: 12px;
  color: #4ecc4e;
}

.analysis__footer .analysis__gallery .gallery__box .gallery__rank div {
  display: inline-flex;
  align-items: center;
}

.analysis__footer .analysis__gallery .gallery__box .gallery__rank div svg {
  margin-right: 6px;
}

.analysis__footer .analysis__gallery .gallery__box .gallery__rank div + div {
  margin-left: 10px;
}

.analysis__footer .analysis__gallery .gallery__box .gallery__rank.cls-white {
  color: #fff;
}

.analysis__footer .analysis__gallery .gallery__box .gallery__date {
  position: relative;
  font-size: 10px;
  margin-top: 6px;
  color: #48555d;
}

.analysis__footer .instagram__gallery ul {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}

.analysis__footer .instagram__gallery ul li {
  padding-bottom: 15px;
}

.analysis__footer .instagram__gallery ul .gallery__list {
  width: 100%;
  height: 100px;
}

.analysis__footer .instagram__gallery ul img {
  width: 100%;
}

.analysis__footer .instagram__gallery .insta__gallery-box {
  padding: 16px 12px;
  border-radius: 15px;
  background: #fff;
}

.analysis__footer .instagram__gallery .insta__gallery-box .gallery__title {
  font-size: 12px;
  color: #333;
  padding-bottom: 20px;
}

.analysis__footer .instagram__gallery .insta__gallery-box .gallery__title span {
  color: #ff2a3f;
}

.analysis__footer .instagram__gallery .insta__gallery-box .gallery__thumbnail {
  display: flex;
  justify-content: space-between;
}

.analysis__footer .instagram__gallery .insta__gallery-box .gallery__thumbnail .thumbnail__list {
  display: inline-block;
  width: 31%;
  padding-bottom: 31%;
  background: #e2e2e2;
  border-radius: 6px;
  background-size: cover;
  border: 3px solid #fff;
}

.analysis__footer .instagram__gallery .insta__gallery-box .gallery__thumbnail .thumbnail__list.active {
  border: 3px solid #ff2a3f;
}

.analysis__footer .instagram__gallery .insta__gallery-box.hash-box .hash__tag {
  margin-bottom: 16px;
}

.analysis__footer .instagram__gallery .insta__gallery-box.hash-box .gallery__thumbnail .thumbnail__list {
  width: 18%;
  padding-bottom: 14%;
}

.analysis__footer .instagram__gallery .insta__gallery-box.hash-box .gallery__thumbnail .thumbnail__list.active {
  border: 2px solid #ff2a3f;
}

@media (max-width: 1024px) {
  .analysis-complete {
    padding-bottom: 90px;
  }
}

.analysis-complete .sns__header {
  text-align: left;
}

@media (max-width: 1024px) {
  .analysis-complete .sns__header {
    text-align: center;
    padding-top: 90px;
  }

  .analysis-complete .sns__header figure {
    animation: pulse-red 1.8s ease-out infinite;
  }
}

.analysis-complete .common__info .common__title {
  color: #fff;
  margin-bottom: 38px;
}

@media (max-width: 1024px) {
  .analysis-complete .common__info .common__title {
    font-size: 16px;
    text-align: center;
    margin-bottom: 12px;
    color: #000;
  }
}

.analysis-complete .common__info .common__text {
  color: #fff;
  margin-bottom: 38px;
}

@media (max-width: 1024px) {
  .analysis-complete .common__info .common__text {
    display: none;
    color: #000;
  }
}

.analysis-complete .globing-btn {
  display: block;
  width: 240px;
}

@media (max-width: 1024px) {
  .analysis-complete .globing-btn {
    margin: 0 auto;
  }
}

.analysis-complete .complete__info {
  color: #fff;
  padding: 24px;
  border-radius: 8px;
  background: #48555d;
}

.analysis-complete .complete__info .float-left,
.analysis-complete .complete__info .float-right {
  width: 50%;
}

.analysis-complete .complete__info .info__text {
  font-size: 12px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 10px;
}

.analysis-complete .complete__info .info__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #fff;
  word-break: keep-all;
}

.analysis-complete .complete__info .info__ul {
  margin-left: -4px;
}

.analysis-complete .complete__info .info__ul li {
  position: relative;
  font-size: 10px;
  color: #fff;
  line-height: 18px;
  padding-left: 30px;
  padding-bottom: 16px;
}

.analysis-complete .complete__info .info__ul li:before {
  position: absolute;
  top: 40%;
  left: 0;
  transform: translateY(-50%);
  display: block;
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
}

.analysis-complete .complete__info .info__ul li:after {
  position: absolute;
  top: 50%;
  left: 2px;
  content: '';
  display: block;
  width: 1px;
  height: 78%;
  border-left: 1px dotted #fff;
}

.analysis-complete .complete__info .info__ul li:last-child {
  padding-bottom: 0;
}

.analysis-complete .complete__info .info__ul li:last-child:after {
  display: none;
}

.analysis-complete .complete__info .info__ul li span {
  font-size: 15px;
  font-weight: 700;
}

.analysis-complete .complete__public {
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #fff;
  text-align: center;
}

@media (max-width: 1024px) {
  .analysis-complete .complete__public {
    color: #000;
  }
}

.analysis-complete .complete__public span {
  color: #ff2a3f;
}

@media (max-width: 1024px) {
  .sns__device {
    display: none;
  }
}

.hash__tag {
  position: relative;
  display: inline-block;
  height: 24px;
  line-height: 22px;
  text-align: center;
  font-size: 12px;
  color: #ff2a3f;
  border: 1px solid #ff2a3f;
  background: #fff;
  border-radius: 6px;
  padding: 0 10px;
  margin-bottom: 6px;
}

#pc .cls-1 {
  fill: #4ecc4e;
}

#pc .cls-1.cls-white {
  fill: #fff;
}

#mobile .cls-1 {
  fill: #4ecc4e;
}

#mobile .cls-1.cls-white {
  fill: #fff;
}

.hash {
  background: url("../../assets/img/hash/bg-hash.jpg") no-repeat 0;
  background-size: cover;
}

.channel {
  background: url("../../assets/img/youtube/bg-channel.jpg") no-repeat 0;
  background-size: cover;
  padding-bottom: 120px;
}

.hash .hash__header {
  padding-top: 180px;
  padding-bottom: 57px;
  text-align: center;
}

@media (max-width: 1024px) {
  .hash .hash__header {
    padding-top: 90px;
    padding-bottom: 40px;
  }
}

.hash .hash__header h2 {
  font-size: 54px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 17px;
}

@media (max-width: 1024px) {
  .hash .hash__header h2 {
    font-size: 30px;
  }
}

.hash .hash__header p {
  font-size: 22px;
  line-height: 32px;
  font-weight: 300;
  color: #fff;
}

@media (max-width: 1024px) {
  .hash .hash__header p {
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    word-break: keep-all;
  }
}

.hash .hash__body .hash__table {
  display: table;
  margin: 0 auto 50px auto;
}

@media (max-width: 1024px) {
  .hash .hash__body .hash__table {
    width: 100%;
  }
}

.hash .hash__body .hash__table-cell {
  display: table-cell;
  text-align: center;
}

.hash .hash__body .hash__table-cell:first-child {
  padding-right: 37px;
}

@media (max-width: 1024px) {
  .hash .hash__body .hash__table-cell:first-child {
    padding-right: 0;
  }
}

.hash .hash__body .hash__table-cell:last-child {
  padding-left: 37px;
}

@media (max-width: 1024px) {
  .hash .hash__body .hash__table-cell:last-child {
    padding-left: 0;
  }
}

.hash .hash__body .hash__table-cell figure {
  margin-bottom: 8px;
}

.hash .hash__body .hash__table-cell p {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.hash .hash__body .hash__table-cell span {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
}

.hash .hash__body .hash__search-area {
  margin-bottom: 40px;
}

.hash .hash__body .hash__search-box {
  max-width: 530px;
  margin: 0 auto;
  padding: 24px;
  background: rgba(255, 255, 255, 0.7);
  border: 5px solid rgba(255, 42, 63, 0.3);
  border-radius: 16px;
}

@media (max-width: 1024px) {
  .hash .hash__body .hash__search-box {
    border-width: 3px;
    border-radius: 8px;
    padding: 12px;
  }
}

.hash .hash__body .hash__sharp {
  float: left;
  padding-right: 24px;
}

@media (max-width: 1024px) {
  .hash .hash__body .hash__sharp {
    padding-right: 12px;
  }
}

.hash .hash__body .hash__sharp img {
  height: 23px;
  vertical-align: bottom;
}

.hash .hash__body .hash__input-box {
  float: left;
  width: calc(100% - 94px);
}

.channel .hash__body .hash__input-box {
  width: calc(100% - 98px);
}

@media (max-width: 1024px) {
  .hash .hash__body .hash__input-box {
    width: calc(100% - 70px);
  }
}

.hash .hash__body .hash__input-box input {
  width: 100%;
  height: 23px;
  line-height: 23px;
  font-size: 20px;
  background: transparent;
  border: 0;
  border-left: 1px solid #a3b5c2;
  padding: 0;
  padding-left: 24px;
  outline: 0;
}
.channel .hash__body .hash__input-box input {
  padding-left: 0;
  border-left: none;
}

@media (max-width: 1024px) {
  .hash .hash__body .hash__input-box input {
    font-size: 14px;
    padding-left: 12px;
  }
}

.hash .hash__body .hash__input-box input::placeholder {
  color: #a3b5c2;
}

@media (max-width: 1024px) {
  .hash .hash__body .hash__input-box input::placeholder {
    font-size: 14px;
  }
}

.hash .hash__body .hash__search {
  float: left;
  padding-left: 24px;
}

@media (max-width: 1024px) {
  .hash .hash__body .hash__search {
    padding-left: 12px;
  }
}

.hash .hash__body .hash__search img {
  vertical-align: bottom;
}

.channel .hash__body .hash__search a {
  color: #ff4053;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
}

@media (max-width: 1024px) {
    .channel .hash__body .hash__search a {
        display: block;
        font-size: 14px;
        line-height: 23px;
        padding-top: 3px;
    }
}

.hash .hash__footer .hash__category {
  position: relative;
  overflow: hidden;
  text-align: center;
  margin-bottom: 55px;
}

.hash .hash__footer .hash__category:before,
.hash .hash__footer .hash__category:after {
  position: absolute;
  display: block;
  content: '';
  width: 50%;
  height: 2px;
  margin-top: -1px;
  background: #fff;
}

.hash .hash__footer .hash__category:before {
  top: 50%;
  left: -130px;
}

.hash .hash__footer .hash__category:after {
  top: 50%;
  right: -130px;
}

.hash .hash__footer .hash__category p {
  display: inline-block;
  font-size: 24px;
  font-weight: 400;
  color: #fff;
}

.hash .hash__footer .hash__category__group {
  padding-bottom: 60px;
}

.hash .hash__footer .hash__category__group ul {
  font-size: 0;
  max-width: 900px;
  margin: 0 auto;
}

.hash .hash__footer .hash__category__group ul .hash__category__list {
  display: inline-block;
  width: 33.333333%;
  padding: 7px 10px;
}

@media (max-width: 1024px) {
  .hash .hash__footer .hash__category__group ul .hash__category__list {
    width: 50%;
    padding: 5px;
  }
}

/* .hash .hash__footer .hash__category__group ul .hash__category__list:nth-child(1) figure {
  background: url("../../assets/img/hash/hash-dummy01.jpg") no-repeat center;
}

.hash .hash__footer .hash__category__group ul .hash__category__list:nth-child(2) figure {
  background: url("../../assets/img/hash/hash-dummy02.jpg") no-repeat center;
}

.hash .hash__footer .hash__category__group ul .hash__category__list:nth-child(3) figure {
  background: url("../../assets/img/hash/hash-dummy03.jpg") no-repeat center;
}

.hash .hash__footer .hash__category__group ul .hash__category__list:nth-child(4) figure {
  background: url("../../assets/img/hash/hash-dummy04.jpg") no-repeat center;
}

.hash .hash__footer .hash__category__group ul .hash__category__list:nth-child(5) figure {
  background: url("../../assets/img/hash/hash-dummy05.jpg") no-repeat center;
}

.hash .hash__footer .hash__category__group ul .hash__category__list:nth-child(6) figure {
  background: url("../../assets/img/hash/hash-dummy06.jpg") no-repeat center;
} */

.hash .hash__footer .hash__category__group ul .hash__category__list figure {
  position: relative;
  background-size: cover;
  padding-bottom: 100%;
  border: 4px solid #fff;
  border-radius: 12px;
}

@media (max-width: 1024px) {
  .hash .hash__footer .hash__category__group ul .hash__category__list figure {
    padding-bottom: 95%;
  }
}

.hash .hash__footer .hash__category__group ul .hash__category__list figcaption {
  font-size: 32px;
  font-weight: 400;
  color: #fff;
  text-align: center;
}

@media (max-width: 1024px) {
  .hash .hash__footer .hash__category__group ul .hash__category__list figcaption {
    font-size: 18px;
  }
}

.result {
  padding-top: 107px;
}

.result .btn__share {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  width: 70px;
}

.result .btn__share img {
  width: 100%;
}

@media (max-width: 1024px) {
  .result .btn__share {
    width: 50px;
    bottom: 66px;
    right: 16px;
  }
}

.result .magic-radio + label,
.result .magic-checkbox + label {
  width: 20px;
  height: 20px;
  padding-left: 0;
}

@media (max-width: 1024px) {
  .result {
    padding-top: 60px;
  }
}

.result .result__header {
  padding-top: 50px;
  padding-bottom: 40px;
}

@media (max-width: 1024px) {
  .result .result__header {
    padding-top: 30px;
    padding-bottom: 20px;
  }
}

.result .result__header h3 {
  font-size: 30px;
  font-weight: 600;
  color: #ff2a3f;
  height: 45px;
  line-height: 45px;
}

@media (max-width: 1024px) {
  .result .result__header h3 {
    font-size: 22px;
  }
}

.result .result__header .btn-hash {
  display: block;
  width: 130px;
  height: 45px;
  font-size: 16px;
  line-height: 45px;
  color: #fff;
  background: #ff2a3f;
  text-align: center;
  border-radius: 10px;
}

@media (max-width: 1024px) {
  .result .result__header .btn-hash {
    position: fixed;
    bottom: 16px;
    width: calc(100% - 32px);
    height: 50px;
    line-height: 50px;
    left: 16px;
    transition: 0.3s;
    z-index: 100;
  }

  .result .result__header .btn-hash.active {
    width: 100%;
    left: 0;
    bottom: 0;
    border-radius: 0;
  }
}

.result .result__body {
  overflow: auto;
  padding-bottom: 60px;
}

@media (max-width: 1024px) {
  .result .result__body {
    padding-bottom: 0;
  }
}

.result .result__body table {
  width: 100%;
  min-width: 1080px;
}

.result .result__body table tr th,
.result .result__body table tr td {
  text-align: center;
}

.result .result__body table tr th:first-child,
.result .result__body table tr td:first-child {
  width: 40px;
}

.result .result__body table tr th:first-child label,
.result .result__body table tr td:first-child label {
  display: inline-block;
  text-align: center;
}

.result .result__body table tr th img,
.result .result__body table tr th span,
.result .result__body table tr td img,
.result .result__body table tr td span {
  vertical-align: middle;
}

.result .result__body table th {
  font-weight: 400;
  height: 60px;
  border-top: 1px solid #CBD6DE;
  border-bottom: 1px solid #CBD6DE;
}

.result .result__body table th img {
  margin-right: 4px;
}

.result .result__body table td {
  font-weight: 600;
  height: 65px;
}

.result .result__body table tbody tr:nth-child(2n-1) td {
  background: #f5f8fb;
}

.result .result__ul li {
  overflow: hidden;
  margin-bottom: 20px;
  padding: 0 8px 10px 8px;
  border-bottom: 10px solid #efefef;
}

.result .result__ul li:first-child {
  border-top: 10px solid #efefef;
  padding-top: 16px;
}

.result .result__ul li:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.result .result__ul li .float-left {
  width: 156px;
  height: 120px;
}

.result .result__ul li .float-left .result-checkbox {
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
}

.result .result__ul li .float-left figure {
  display: inline-block;
  width: 120px;
  vertical-align: middle;
}

.result .result__ul li .float-left img {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
}

.result .result__ul li .float-right {
  width: calc(100% - 166px);
}

.result .result__ul li .float-right p {
  font-size: 12px;
  line-height: 16px;
}

.result .result__ul li .float-right p span {
  font-weight: 600;
}

.result .result__ul .analysis__hash-list {
  padding-bottom: 10px;
  font-size: 0;
}

.result .result__ul .analysis__hash-list .magic-checkbox + label {
  display: inline-block;
  vertical-align: middle;
}

.result .result__ul .analysis__hash-list span {
  display: inline-block;
  height: 24px;
  line-height: 22px;
  text-align: center;
  font-size: 12px;
  color: #ff2a3f;
  border: 2px solid #ff2a3f;
  background: #fff;
  border-radius: 6px;
  padding: 0 8px;
  vertical-align: middle;
}

.justify-margin {
  margin: 0 -16px;
}

.keyword .keyword__header {
  padding-top: 180px;
  padding-bottom: 57px;
  text-align: center;
}

@media (max-width: 1024px) {
  .keyword .keyword__header {
    padding-top: 90px;
    padding-bottom: 40px;
  }
}

.keyword .keyword__header h2 {
  font-size: 54px;
  font-weight: 700;
  color: #000;
  margin-bottom: 17px;
}

@media (max-width: 1024px) {
  .keyword .keyword__header h2 {
    font-size: 30px;
  }
}

.keyword .keyword__header p {
  font-size: 22px;
  line-height: 32px;
  font-weight: 300;
  color: #000;
}

@media (max-width: 1024px) {
  .keyword .keyword__header p {
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    word-break: keep-all;
  }
}

.keyword .keyword__body .keyword__table {
  display: table;
  margin: 0 auto 50px auto;
}

@media (max-width: 1024px) {
  .keyword .keyword__body .keyword__table {
    width: 100%;
  }
}

.keyword .keyword__body .keyword__table-cell {
  display: table-cell;
  text-align: center;
}

.keyword .keyword__body .keyword__table-cell:first-child {
  padding-right: 37px;
}

@media (max-width: 1024px) {
  .keyword .keyword__body .keyword__table-cell:first-child {
    padding-right: 0;
  }
}

.keyword .keyword__body .keyword__table-cell:last-child {
  padding-left: 37px;
}

@media (max-width: 1024px) {
  .keyword .keyword__body .keyword__table-cell:last-child {
    padding-left: 0;
  }
}

.keyword .keyword__body .keyword__table-cell figure {
  margin-bottom: 8px;
}

.keyword .keyword__body .keyword__table-cell p {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.keyword .keyword__body .keyword__table-cell span {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
}

.keyword .keyword__body .keyword__search-area {
  margin-bottom: 40px;
}

.keyword .keyword__body .keyword__search-box {
  max-width: 530px;
  margin: 0 auto;
  padding: 24px;
  background: rgba(255, 255, 255, 0.7);
  border: 5px solid rgba(255, 42, 63, 0.3);
  border-radius: 16px;
}

@media (max-width: 1024px) {
  .keyword .keyword__body .keyword__search-box {
    border-width: 3px;
    border-radius: 8px;
    padding: 12px;
  }
}

.keyword .keyword__body .keyword__input-box {
  float: left;
  width: calc(100% - 35px);
}

@media (max-width: 1024px) {
  .keyword .keyword__body .keyword__input-box {
    width: calc(100% - 35px);
  }
}

.keyword .keyword__body .keyword__input-box input {
  width: 100%;
  height: 23px;
  line-height: 23px;
  font-size: 20px;
  background: transparent;
  border: 0;
  padding: 0;
  outline: 0;
}

@media (max-width: 1024px) {
  .keyword .keyword__body .keyword__input-box input {
    font-size: 14px;
    padding-left: 12px;
  }
}

.keyword .keyword__body .keyword__input-box input::placeholder {
  color: #a3b5c2;
}

@media (max-width: 1024px) {
  .keyword .keyword__body .keyword__input-box input::placeholder {
    font-size: 14px;
  }
}

.keyword .keyword__body .keyword__search {
  float: left;
  padding-left: 12px;
}

@media (max-width: 1024px) {
  .keyword .keyword__body .keyword__search {
    padding-left: 12px;
  }
}

.keyword .keyword__body .keyword__search img {
  vertical-align: bottom;
}

.keyword .keyword__footer {
  margin-top: 60px;
}

.keyword .keyword__footer figure {
  text-align: center;
}

.keyword .keyword__footer figure img {
  width: 100%;
  max-width: 210px;
}

.keyword .keyword__footer figure figcaption {
  font-size: 16px;
  padding-top: 20px;
  color: #ff485a;
}

.result__table {
  display: table;
  margin: 0 auto 60px auto;
}

@media (max-width: 1024px) {
  .result__table {
    width: 100%;
    max-width: 530px;
  }
}

.result__table .result__table-cell {
  position: relative;
  display: table-cell;
  width: 50%;
  text-align: center;
  padding-left: 30px;
}

@media (max-width: 1024px) {
  .result__table .result__table-cell {
    padding-left: 0;
  }
}

.result__table .result__table-cell:first-child {
  padding-right: 30px;
  padding-left: 0;
}

@media (max-width: 1024px) {
  .result__table .result__table-cell:first-child {
    padding-right: 0;
  }
}

.result__table .result__table-cell:first-child:after {
  position: absolute;
  top: 50%;
  right: 0;
  content: '';
  display: block;
  width: 1px;
  height: 30px;
  margin-top: -15px;
  background: #48555d;
}

.result__table .result__table-cell .result__title {
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 10px;
  color: #48555d;
}

@media (max-width: 1024px) {
  .result__table .result__table-cell .result__title {
    font-size: 14px;
  }
}

.result__table .result__table-cell .result__text {
  font-size: 54px;
  color: #000;
}

@media (max-width: 1024px) {
  .result__table .result__table-cell .result__text {
    font-size: 30px;
  }
}

.keyword .keyword-result__body table {
  min-width: auto;
}

.keyword .keyword-result__body table th span span {
  display: inline;
}

@media (max-width: 1024px) {
  .keyword .keyword-result__body table th span span {
    display: none;
  }
}

.keyword .keyword-result__body table th:nth-child(3),
.keyword .keyword-result__body table th:nth-child(4) {
  width: 160px;
}

@media (max-width: 1024px) {
  .keyword .keyword-result__body table th:nth-child(3),
  .keyword .keyword-result__body table th:nth-child(4) {
    width: auto;
  }
}

.keyword .keyword-result__body table tr.keyword-match td {
  color: #ff485a;
}

.keyword .keyword-result__body table tr th:first-child,
.keyword .keyword-result__body table tr td:first-child {
  width: 40px;
}

.keyword .keyword-result__body table tr th:first-child label,
.keyword .keyword-result__body table tr td:first-child label {
  display: inline-block;
  text-align: center;
}

.keyword .keyword-result__body table tr th:nth-child(2),
.keyword .keyword-result__body table tr td:nth-child(2) {
  text-align: left;
  padding-left: 10px;
}

/* 유튜브 채널 */
.youtube-list li {
  display: block;
  width: 100% !important;
  margin: 0 0 20px 0 !important;
  padding: 0 !important;
}

.youtube__article {
    padding: 20px;
    background: #fff;
    border-radius: 6px;
}

.article__top {
    display:table;
    width: 100%;
}

.article__thumbnail {
    display:table-cell;
    position:relative;
    vertical-align:top;
    width: 40%;
}

.article__thumbnail img {
    width: 100%;
}

.article__thumbnail .article__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}

.article__thumbnail .article__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.article__contents {
    position:relative;
    display:table-cell;
    vertical-align:top;
}

.article__contents p {
    padding-left: 10px;
    font-size: 14px;
    font-weight: bold;
    text-align: left;
}

.article__contents span {
    position: absolute;
    bottom:0;
    right:0;
    font-size: 12px;
    color: #ccc;
}

.article__bottom {
    margin-top: 20px;
}

.article__ul {
    display: table !important;
    width: 100% !important;
}

.article__ul li {
    display:table-cell !important;
    width:20% !important;
    padding: 0 !important;
    margin: 0 !important;
    border-right: 1px solid #ededed;
}

.article__ul li:last-child {
    border-right: none;
}

.article__ul li .article__icon-box {
    text-align: center;
    margin-bottom: 8px;
}

.article__ul li p {
    font-size: 12px;
    color: #8498af;
    margin-bottom: 8px;
}

.article__ul li span {
    font-size: 16px;
    font-weight: bold;
    color: #000;
}

.channel__contents {
  padding: 20px 10px;
  background: #eff3f6;
}
@media (max-width: 1024px) {
  .channel__contents {
    padding: 10px 10px;
  }
}

.channel__contents .contents__top {}
.channel__contents .contents__top ul {
    font-size: 0;
    width: 100%;
}
.channel__contents .contents__top ul li {
    display:inline-block;
    width: 33.333333%;
    height: 190px;
    padding: 0 10px;
}

@media (max-width: 1024px) {
    .channel__contents .contents__top ul li {
        width: 100%;
        height: 180px;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 10px;
    }
}

.channel__contents .contents__top ul li .panel, 
.channel__contents .contents__bottom ul li .panel {
    position: relative;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 10px;
}

.channel__contents .contents__top ul li .panel .position-center {
    text-align: center;
}

.channel__contents .contents__top ul li .panel .panel-text {
    font-size: 18px;
    color: #8498af;
}

.channel__contents .contents__top ul li .panel .panel-lg-text {
    font-size: 36px;
    font-weight: bold;
    color: #000;
}

.channel__contents .contents__top ul li .panel .panel-lg-text.red {
    color: #ff4053;
    margin: 10px 0;
}

.panel-icon {
    display:inline-block;
    padding-left: 70px;
    text-align: left;
}
.panel-subscribe {
    background: url("../../assets/img/icon/icon-plus-one.svg") no-repeat left center;
}

.panel-prediction {
    padding-left: 55px;
    background: url("../../assets/img/icon/icon-dollor.svg") no-repeat left center;
}

.panel-view {
  background: url("../../assets/img/icon/icon-view-one.svg") no-repeat left center;    
}

.channel-title {
    font-size: 26px;
    font-weight: bold;
    padding-left: 40px;
    background: url("../../assets/img/icon/icon-calc.svg") no-repeat left center;
    word-break: keep-all;
}
.channel__contents .contents__bottom {
}
.channel__contents .contents__bottom ul {
    display: flex;
    width: 100%;
    padding-top: 20px;
}
@media (max-width: 1024px) {
    .channel__contents .contents__bottom ul {
        display: flex;
        flex-direction: column;
        padding-top: 0;
    }
}
.channel__contents .contents__bottom ul li {
    padding: 0 10px;
    vertical-align: top;
}

@media (max-width: 1024px) {
    .channel__contents .contents__bottom ul li + li {
        margin-top: 10px;
    }
}

.channel__contents .contents__bottom ul li .panel {
    padding: 65px 20px;
}
.channel__contents .contents__bottom ul li:first-child {width: 66.666666%;}
.channel__contents .contents__bottom ul li:first-child .panel {padding-left: 60px; padding-right: 60px;}

@media (max-width: 1024px) {
    .channel__contents .contents__bottom ul li .panel {
        padding: 20px;
    }
    .channel__contents .contents__bottom ul li:first-child .panel {padding-left: 10px; padding-right: 10px;}
}
.channel__contents .contents__bottom ul li:last-child {width: 33.333333%;}

@media (max-width: 1024px) {
    .channel__contents .contents__bottom ul li:first-child {width: 100%; padding-left:0; padding-right:0;}
    .channel__contents .contents__bottom ul li:last-child {width: 100%;
    padding-left:0; padding-right:0;}
}
.channel__contents .contents__bottom .prediction-box {}
.channel__contents .contents__bottom .prediction-box p {font-size: 18px;}
.channel__contents .contents__bottom .prediction-box span { font-size: 26px; font-weight: bold;}
.channel__contents .contents__bottom .prediction-box + .prediction-box {
    margin-top: 40px;
}
.channel__contents .contents__bottom {}
.channel__contents .contents__bottom {}

.channel-slider {padding: 30px 0;}
.slider-bar {position: relative; height: 10px; background: #e3e8ee;}
.slider-gauge {position: absolute; left:0; top:0; width: 30%; height: 10px; background: #ff4053;}
.slider-gauge .position-relative {height: 10px;}
.slider-circle {position: absolute; top: 50%; right:-20px; transform:translateY(-50%); width: 40px; height:40px; background: #ff4053; border-radius: 15px;}

@media (max-width: 1024px) {
    .slider-circle {
        width: 30px;
        height: 30px;
    }
}

.chnnel-view-day {}
.chnnel-view-day .flex {display:flex; align-items:center; justify-content: space-between; margin-top:10px;}

@media (max-width: 1024px) {
  .chnnel-view-day .flex {
  }
}

.chnnel-view-day .flex .day-view {font-size: 23px; font-weight: bold; color: #000;}
.chnnel-view-day .flex .view-number {color: #ff4053; font-size: 36px; font-weight: bold;}

@media (max-width: 1024px) {
    .chnnel-view-day .flex .view-number {
        font-size: 30px;
    }
}

.channel-text {
    margin-top: 10px;
    font-size:16px;
    color: #8498af;
}
.cpm-box {margin-top: 40px;}

.channel-text + .channel-text {
    margin-top: 40px;
}

.channel__slider {
  -webkit-appearance: none;
  width:100%;
  background: transparent;
}

.channel__slider:focus {
    outline: none;
}

/* 슬라이더 트랙 */
.channel__slider::-webkit-slider-runnable-track {
    height: 10px;
}

/* 슬라이더 컨트롤러 */
.channel__slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    background: #ff4053;
    width: 40px;
    height: 40px;
    border-radius: 15px;
    margin-top: -15px;
}
