body {
  /*font-family: "Raleway", sans-serif;*/
  overflow-x: hidden;
  padding: 71px 0 0 0;
}

main {
  line-height: 2rem;
}

.wrapper {
  max-width: 1360px;
  margin: 0 auto;
}

/* Banner ===================================================================== */
.banner {line-height: 0;}
.banner-mobile { display: none; }
@media (max-width: 576px) {
  .banner-pc { display: none; }
  .banner-mobile { display: block; }  
}
@media (max-width: 414px) {
	.banner { padding-top: 40px;}
}

/* Products ===================================================================== */
.products-wrap {
  margin-top: 5%;
}

.products-zone {
  max-width: 1200px;
  margin: 0 auto;
}
.products-zone a:hover {
  color: #00b1cf;
}
.products-zone .products-title {
  text-align: center;
  margin-bottom: 20px; color: #00b1cf;
}
.products-zone .products-title span {
  color: #00b1cf;
}
.products-zone .products-title h1 {
  font-weight: 600;
}

.products-list {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 62%;
}
.products-list img {
  max-height: 100%;
}
.products-list .img-center a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.products-list:hover .products-overlay {
  transform: scale(1);
}
.products-list .products-overlay {
  position: absolute;
  z-index: 10;
  left: 0%;
  top: 0%;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.5s;
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transform: scale(0);
  pointer-events: none;
  padding: 0 5%;
  text-align: center;
}
.products-list .products-overlay .products-name {
  position: relative;
}
.products-list .products-overlay .products-name:before {
  position: absolute;
  top: 40px;
  left: calc(50% - 25px);
  content: "";
  background-color: #000;
  width: 50px;
  height: 1px;
}

/* Counter ===================================================================== */
.parallax__container {
  clip: rect(0, auto, auto, 0);
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -100;
}

.parallax {
  position: fixed;
  top: 0;
  transform: translate3d(0, 0, 0);
  transform-style: preserve-3d;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-counter {
  background-image: url("../images/idx-counter.jpg");
}

.counter-box {
  padding: 150px 0 150px 0;
}

.counter-list {
  /*background-color: rgba(255, 255, 255, 0.7);
  border-radius: 100%;
  max-width: 150px;
  padding: 40px 0px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 0 13px -3px rgba(0, 0, 0, 0.3);
  border: 3px solid #fff;*/ text-align: center;
}
.counter-list .number {
  font-size: 1.6rem; line-height: 1.25; letter-spacing: 0.2rem; color: #fff; padding: 12px calc(20px + 2%); position: relative; background: rgba(0,0,0,.7); display: inline-block; border-radius: 0 15px;
}
.counter-list .number:before, .counter-list .number:after { content: ""; position: absolute; width: 35px; height: 15px; border-style: solid; border-color: #df3025;}
.counter-list .number:before { border-width: 2px 0 0 2px; left: -1px; top:-1px; }
.counter-list .number:after { border-width: 0 2px 2px 0; right: -1px; bottom:-1px; }

@media (max-width: 992px) {
  .counter-list {
    margin-bottom: 40px;
  }
}

/* About Us ===================================================================== */
.about-wrap {
  /*margin-top: 120px;
  margin-bottom: -140px;*/ padding: calc(20px + 5%) 0 0 0;
}
.about-wrap:hover .about-pic {
  transform: scale(0.92);
}
@media (max-width: 992px) {
  .about-wrap {
    /*margin-top: 30px;
    margin-bottom: -60px;*/
  }
	.about-wrap .about-pic { margin-top: 20px;}
}

.about-title {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 2rem;
  line-height: 2.5rem;
  color: #000;
}
@media (max-width: 576px) {
  .about-title {
    font-size: 23px;
    line-height: 27px;
  }
}

.about-text a:hover {
  color: #00b1cf;
}

.btn-about-out {
  text-align: center;
  margin-top: 10px;
}

.btn-about {
  padding: 7px 40px;
  display: inline-block;
  position: relative;
  color: #fff !important;
  background: linear-gradient(#00b1cf, #00b1cf);
  border-radius: 5px;
  overflow: hidden;
  transition: 0.5s;
}
.btn-about:before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  transition: 0.5s;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
}
.btn-about:hover {
  color: #fff;
  transform: scale(1.1);
}
.btn-about:hover:before {
  transform: translate(-50%, -50%) scale(50);
}
.btn-about:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  vertical-align: middle;
  transform: rotate(135deg);
  display: block;
  right: 20px;
  top: 2px;
  bottom: 0;
  margin: auto;
}

.about-pic {
  padding: 0px 0 0 0;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 576px) {
  .about-pic {
    display: none;
  }
}

/* FAQ =================================================================== */
.wrap-faq-bg {
  background-color: #a8e8e7;
  margin-top: 120px;
  /*box-shadow: 0 0 15px 0 #00aa6e inset;*/
}
@media (max-width: 980px) {
  /*.wrap-faq-bg { padding-bottom: 30px;}*/
}
.wrap-faq-bg .row  { align-items: flex-end;}
@media (max-width: 576px) {
  .wrap-faq-bg {
    margin-top: 150px;
  }
}

.wrap-faq {
  padding: 30px 0 0 0;
}
.wrap-faq:hover .faq-pic {
  /*transform: scale(0.9);*/
}

.faq-pic {
  /*margin-top: -100px;*/
  text-align: center;
  transition: all 0.5s ease-in-out;
}

.faq-zone {
  margin-top: 30px; padding-bottom: 35px;
}
.faq-zone .faq-title {
  font-size: 2rem;
  color: #fff;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 576px) {
  .faq-zone .faq-title {
    font-size: 25px;
  }
}
.faq-zone .faq-list {
  position: relative;
  background-color: #fff;
  color: #000;
  border-radius: 30px;
  padding: 10px 10px 10px 80px;
  cursor: pointer;
  margin-bottom: 35px;
  line-height: 1.5rem;
  transition: all 0.5s;
}
.faq-zone .faq-list:hover {
  /*color: #fff;*/
}
.faq-zone .faq-list:hover .faq-circle {
  transform: scale(0.9);
  box-shadow: 0 5px 12px 0px #00aa6e;
}
.faq-zone .faq-list .faq-circle {
  position: absolute;
  top: -7px;
  left: 0px;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 3.5rem;
  background-color: #00aa6e;
  border-radius: 100%;
  font-size: 1.2rem;
  color: #fff;
  transition: all 0.5s;
  font-weight: bold;
}

/* Contact =================================================================== */
.wrapper-contact {
  background-color: #fff;
  padding: 15px 0;
}
.wrapper-contact .contact-info {
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  position: relative;
}
@media (max-width: 576px) {
  .wrapper-contact .contact-info {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
}
.wrapper-contact .contact-info a {
  position: relative;
  color: #000;
  padding: 0 70px;
  filter: drop-shadow(2px 1px 0px rgba(255, 255, 255, 0.9));
}
@media (max-width: 576px) {
  .wrapper-contact .contact-info a {
    padding: 0 60px;
  }
}
.wrapper-contact .contact-info a::before {
  position: absolute;
  top: 0;
  left: 15px;
  content: "";
  background: url(icons/icon-mail-3.svg) no-repeat;
  padding: 18px;
}
@media (max-width: 576px) {
  .wrapper-contact .contact-info a::before {
    top: -4px;
  }
}