
body {
  font-family: 'gothambook', 'Montserrat', 'Noto Sans JP', sans-serif;
  font-weight: 300;
}
.content {
  font-family: 'Open Sans', 'Noto Sans JP', sans-serif;
}

.icon-linkedin:before {
    content: '\eaca';
}

.icon-facebook:before {
    content: '\ea90';
}

.icon-whatsapp:before {
    content: '\ea93';
}

.icon-instagram:before {
    content: '\ea92';
}

.text-shadow {
    text-shadow: 1px 1px 0px #000;
}

*{
  /* -webkit-transform: translateZ(0) */
}

b,
strong {
  font-weight: bold;
}

p{
  margin-bottom:1em;
  /* font-family: gothamlight; */
}

/* menu */
.mopen {
  float: left;
  display: block;
  background: rgba(255, 255, 255, 0);
  position: relative;
  z-index: 1000;
}

.mopen span {
  transition: all 0.3s;
  transform: rotate(0deg);
  width: 30px;
  height: 5px;
  display: block;
  background: #FFF;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -25px;
  border-radius: 25px;
}

.mopen span.bg-primary {
  background: #009b9b;
}

.mopen .top {
  transform: translateY(-10px);
}
.mopen .bottom {
  transform: translateY(10px);
}

/* .mopen.is-open span {
  background: #fff;
}
.mopen.is-open .middle {
  background: rgba(255, 255, 255, 0);
}
.mopen.is-open .top {
  transform: rotate(-45deg) translateY(0px);
}
.mopen.is-open .bottom {
  transform: rotate(45deg) translateY(0px);
} */

.submenu-products-mobile, .submenu-services-mobile {
  display: none;
}

.submenu-products-mobile.is-visible, .submenu-services-mobile.is-visible{
  display: flex;
}

/* menu bg */
/* #overlay {
  visibility: hidden;
  display: flex;
  transition: 0.3s linear;
  position: absolute;
  z-index: 900;
  align-items: center;
  justify-content: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #222;
  opacity: 0;
}
#overlay.open {
  visibility: visible;
  opacity: 0.95;
}
body.scroll-lock {
  position: fixed;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
}
.scroll-top {
  background-color: #222;
  text-align: center;
  color: #fff;
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 3rem;
  height: 3rem;
  display: flex;
  flex-direction: column;
  z-index: 1000;
  padding-top: 0.75em;
  padding-bottom: 0.75em;
  cursor: pointer;
} */

.anim-top{
  right:302;
}

/* Chat Widget */

@-webkit-keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(0, 199, 177, 0.4);
    }
    75%, 100% {
      box-shadow: 0 0 0 2rem rgba(0, 199, 177, 0);
    }
  }
  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(0, 199, 177, 0.4);
    }
    75%, 100% {
      box-shadow: 0 0 0 2rem rgba(0, 199, 177, 0);
    }
  }
  
  .chat-widget {
    position: fixed;
    right: 2rem;
    bottom: 2em;
    z-index: 8000;
  }
  .chat-widget--bubble {
    display: block;
    padding: 2rem;
    position: absolute;
    right: 0;
    bottom: 4.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transform-origin: 90% 100%;
    transition: opacity 400ms ease, transform 400ms ease;
    opacity: 1;
    transform: translateY(0rem) scale(1, 1) skew(0deg, 0deg);
  }
  .chat-widget--bubble.-hide {
    opacity: 0;
    transform: translateY(3rem) scale(0, 0) skew(0deg, 50deg);
  }  
  
  .chat-widget--button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    border-radius: 50%;
    box-shadow: 0 0 0 -2px black, 0 2px 4px 0 rgba(0, 0, 0, 0.3);
    transition: box-shadow 250ms ease;
  }

  .chat-widget--button::before, .chat-widget--button::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    border-radius: 50%;
    /* -webkit-animation: pulse 2s ease-in-out 5;
            animation: pulse 2s ease-in-out 5; */
  }
  /* .chat-widget--button::after {
    -webkit-animation-delay: 0.5s;
            animation-delay: 0.5s;
  } */


  .chat-widget--button-text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 11rem;
    height: 2rem;
    position: absolute;
    right: 5.2em;
    bottom: 0.9em;
    z-index: 1;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transform-origin: 90% 90%;
    transition: opacity 400ms ease, transform 400ms ease;
    opacity: 1;
    background-color: #FFF;
  }

  .chat-widget--button-text.-hide {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }  


  /* .submenu-products {
    opacity: 1;
    transition: all 0.6s linear 0.4s;
  } */

  .submenu-products {
    opacity: 0;
    display: none;
    transition: all .5s ease-in-out;
  }
  
  .submenu-products.show {
    opacity: 1;
  }

  /* #menu-products:hover .submenu-products {display: block; background-color: red; transition: all 2s linear;} */

  /* .dropdown:hover .dropdown-content {display: block;} */


  .show-scroll-nav {
    position: fixed;
    top: 0;
    z-index: 50;
  }


  .swiper-pagination-bullet{
    background: white !important;
  }

  .swiper-pagination.bullets-primary > .swiper-pagination-bullet{
    background: #009b9b !important;
    width:0.8rem;
    height:0.8rem;
  }

  .swiper-wrapper.bottom-bullets{
    padding-bottom: 3rem;
}

