/* ==========================================================================
   responsive size
   ========================================================================== */
/* ==========================================================================
   MAIN
   ========================================================================== */
html {
  font-size: 16px;
}

.act_ready {
  transition: all 2s ease;
  opacity: 0;
  transform: translateY(-20px);
}
.act_ready.act {
  opacity: 1;
  transform: translateY(0);
}

.sec1 {
  position: relative;
  width: 100vw;
  height: 200vh;
  overflow: visible;
}
.sec1 img.background_1 {
  position: absolute;
  right: 0;
  height: 100vh;
}
.sec1 .intro {
  position: relative;
  width: 100vw;
  height: 200vh;
  background-color: #fafafa;
  transition: background-color 1s ease-in-out;
}
.sec1 .intro.active {
  background-color: rgba(250, 250, 250, 0);
}
.sec1 .intro .intro_outbox {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
}
.sec1 .intro .intro_outbox .intro_slogan {
  position: relative;
  width: 100%;
  height: 40px;
  margin: 10px 0;
  overflow: hidden;
}
.sec1 .intro .intro_outbox .intro_slogan.slogan_2 {
  transition-delay: 0.7s;
}
.sec1 .intro .intro_outbox .intro_slogan > .slogan_text {
  position: absolute;
  top: 0;
  font-size: 30px;
  text-align: center;
  transition: transform 2s ease-in-out;
  transform: translateY(43px);
}
.sec1 .intro .intro_outbox .intro_slogan.active > .slogan_text {
  transform: translateY(0);
  animation: logoReveal 5s ease-in-out 0 none normal forwards;
}
@keyframes logoReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.sec1 .intro .products_box {
  position: absolute;
  top: 100vh;
  height: 100vh;
  width: 100vw;
  padding-top: 50px;
  background-color: rgba(255, 255, 255, 0.5333333333);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
}
.sec1 .intro .products_box .sec_title .main {
  font-size: 40px;
}
.sec1 .intro .products_box .products {
  margin: 50px 0;
}
.sec1 .intro .products_box .products .product_card {
  width: 220px;
  height: -moz-fit-content;
  height: fit-content;
}
.sec1 .intro .products_box .products .product_card img {
  width: 180px;
  height: auto;
  margin: 20px 0;
}
.sec1 .intro .products_box .slogan {
  margin-top: 50px;
}

.sec2 {
  position: relative;
  background-color: #f1f1f1;
  padding: 50px 0;
}
.sec2 .content_1 {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  margin: 150px 0;
  position: relative;
}
.sec2 .content_1 .image_box {
  position: relative;
  width: 80%;
  height: 50vh;
  overflow: hidden;
}
.sec2 .content_1 .image_box .images_1 {
  height: 120%;
}
.sec2 .content_1 .right_box {
  position: absolute;
  top: 100px;
  right: 0;
  display: flex;
  width: 50%;
  font-size: 27px;
  color: #111111;
}
.sec2 .content_2 {
  width: 1000px;
  height: -moz-fit-content;
  height: fit-content;
  margin: 50px 0;
}
.sec2 .content_2 .image_box {
  width: 50%;
  height: auto;
  overflow: hidden;
}
.sec2 .content_2 .image_box .images_1 {
  width: 100%;
  height: auto;
}
.sec2 .content_2 .left_box {
  display: flex;
  width: 50%;
  height: auto;
  padding: 15px;
  font-size: 20px;
  color: #333333;
  text-align: right;
}
.sec2 .content_2 .left_box > div {
  margin: 5px 0;
}
.sec2 .content_3 {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  margin: 50px 0;
}
.sec2 .content_3 .images_1 {
  width: 60%;
  height: auto;
}
.sec2 .content_3 .text_box {
  display: flex;
  width: 50%;
  height: auto;
  margin-top: 30px;
  font-size: 18px;
  color: #333333;
  text-align: center;
}

.sec3 {
  width: 100%;
  padding: 80px 0;
}
.sec3 .title {
  font-size: 25px;
  font-weight: 400;
  margin-bottom: 30px;
}
.sec3 .affiliates_box .company {
  position: relative;
  width: 300px;
  height: 500px;
  background-color: #e1e1e1;
  padding: 20px;
  margin: 15px;
  transition: background-color 0.4s ease;
}
.sec3 .affiliates_box .company .logo_box {
  height: 130px;
}
.sec3 .affiliates_box .company .logo_box .logo {
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.sec3 .affiliates_box .company .name {
  font-size: 18px;
  font-weight: 400;
}
.sec3 .affiliates_box .company .desc {
  font-size: 14px;
  color: #555;
}
.sec3 .affiliates_box .company .thumb {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 140px;
  height: 140px;
}
.sec3 .affiliates_box .company:nth-of-type(2), .sec3 .affiliates_box .company:nth-of-type(4) {
  background-color: #555;
  color: #fff;
}
.sec3 .affiliates_box .company:nth-of-type(2) .desc, .sec3 .affiliates_box .company:nth-of-type(4) .desc {
  color: #bbb;
}
.sec3 .affiliates_box .company:hover {
  background-color: #f3f3f3;
}
.sec3 .affiliates_box .company:nth-of-type(2):hover, .sec3 .affiliates_box .company:nth-of-type(4):hover {
  background-color: #333;
}

@media (max-width: 600px) {
  .sec1 {
    overflow: hidden;
  }
  .sec1 img.background_1 {
    right: -60%;
  }
  .sec1 .intro .products_box {
    padding-top: 20px;
  }
  .sec1 .intro .products_box .sec_title .main {
    font-size: 30px;
  }
  .sec1 .intro .products_box .products {
    width: 100%;
    flex-flow: row wrap;
    margin: 0;
  }
  .sec1 .intro .products_box .products .product_card {
    width: 150px;
    margin: 0 12px;
  }
  .sec1 .intro .products_box .products .product_card img {
    margin: 15px 0;
    width: 140px;
  }
  .sec1 .intro .products_box .slogan {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
  }
  .sec2 {
    overflow: hidden;
  }
  .sec2 .content_1 {
    margin: 150px 0 80px;
  }
  .sec2 .content_1 .image_box .images_1 {
    margin-left: -400px;
    height: 120%;
  }
  .sec2 .content_1 .right_box {
    top: 40px;
    width: 70%;
  }
  .sec2 .content_2 {
    width: 100%;
    margin: 20px 0;
  }
  .sec2 .content_2 .image_box .images_1 {
    width: 150%;
    margin-left: -25%;
  }
  .sec2 .content_2 .left_box > div {
    font-size: 18px;
  }
  .sec2 .content_3 .images_1 {
    width: 90%;
  }
  .sec2 .content_3 .text_box {
    display: flex;
    width: 90%;
    height: auto;
    margin-top: 30px;
    font-size: 16px;
    color: #333333;
    text-align: center;
  }
  .sec3 {
    overflow: hidden;
  }
  .sec3 .title {
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 30px;
  }
  .sec3 .affiliates_box {
    flex-direction: column;
  }
  .sec3 .affiliates_box .company {
    position: relative;
    width: 300px;
    height: 500px;
    background-color: #e1e1e1;
    padding: 20px;
    margin: 15px;
    transition: background-color 0.4s ease;
  }
  .sec3 .affiliates_box .company .logo_box {
    height: 130px;
  }
  .sec3 .affiliates_box .company .logo_box .logo {
    height: -moz-fit-content;
    height: fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .sec3 .affiliates_box .company .name {
    font-size: 18px;
    font-weight: 400;
  }
  .sec3 .affiliates_box .company .desc {
    font-size: 14px;
    color: #555;
  }
  .sec3 .affiliates_box .company .thumb {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 140px;
    height: 140px;
  }
  .sec3 .affiliates_box .company:nth-of-type(2), .sec3 .affiliates_box .company:nth-of-type(4) {
    background-color: #555;
    color: #fff;
  }
  .sec3 .affiliates_box .company:nth-of-type(2) .desc, .sec3 .affiliates_box .company:nth-of-type(4) .desc {
    color: #bbb;
  }
  .sec3 .affiliates_box .company:hover {
    background-color: #f3f3f3;
  }
  .sec3 .affiliates_box .company:nth-of-type(2):hover, .sec3 .affiliates_box .company:nth-of-type(4):hover {
    background-color: #333;
  }
}/*# sourceMappingURL=index.css.map */