
/*--------------------------*/
/* Cleverin website */
/* author: zoi ộp */
/* www.zoiop.com */



@font-face
{
font-family: notosans;
src: url(fonts/NotoSans-Regular.ttf);
font-weight: normal;
}

@font-face
{
font-family: notosans;
src: url(fonts/NotoSans-Bold.ttf);
font-weight: bold;
}

@font-face
{
font-family: notosans-thin;
src: url(fonts/NotoSans-ExtraCondensedThin.ttf);
font-weight: normal;
}



@font-face
{
font-family: uvnvan;
src: url(fonts/UVNVan_R_0.TTF);
font-weight: normal;
}

@font-face
{
font-family: uvnvan;
src: url(fonts/UVNVan_1.TTF);
font-weight: bold;
}

@font-face
{
font-family: gotham;
src: url(fonts/Gotham-Ultra.otf);
font-weight: bold;
}




 html, body {
  background-color: #fff;
  min-width: 100%;
  min-height:100%;
  margin: 0;
  font-family: notosans;
  color: #333;
  font-size: 12pt;
  position: relative;
  touch-action: manipulation;
  color:#1037A3;
  overflow-x: hidden;
  counter-reset: card;
}

body, html, div, li, a
{
  touch-action: manipulation;
}


table
{
  border-collapse: collapse;
    border-spacing: 0;
}

a[href^="tel"] {
  color: inherit; /* Inherit text color of parent element. */
  text-decoration: none; /* Remove underline. */
  /* Additional css `propery: value;` pairs here */
}

input[type="button"]
{
    
    border: none;
    outline:none;
    outline: 0 !important;
}

a, a:visited
{
  //color: #333;
  color: inherit;
  text-decoration: none;
}

ul, li
{
  padding: 0;
}
section
{
  width: 100%;
  position: relative;
  display: block;
  padding: 0;
  margin: 0;
  
}


.loadingscreen
{
  background: #063CA3;
  min-height: 100%;
  width: 100%;
  display: block;
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
}

.line-break
{
  display: none;
  width: 100%;
}
.hide 
{
  display: none!important;
}
.br-desktop
{

}
.bluebg
{
  background: #063CA3;
  min-height: 100%;
}

.lightbluebg
{
  background: #F5F7FD;
  min-height: 100%;
}

.bubblebg
{
  overflow: hidden;
  min-height: 100%;
  z-index: 0;
}

.bubblebg::before
{
  content: "";
  width: 400px;
  height: 400px;
  display: block;
  border-radius: 50%;
  background: rgba(6,60,160,0.03);
  position: absolute;
  top: -70px;
  left:-90px;
  z-index: -1;
}

.bubblebg::after
{
  content: "";
  width: 500px;
  height: 500px;
  display: block;
  border-radius: 50%;
  background: rgba(6,60,160,0.03);
  position: absolute;
  bottom: -70px;
  right:-90px;
  z-index: -1;
}

.patternbg
{
  background-image: url("../img/bg-pattern.svg");
  background-repeat: repeat;
  background-size: 15px 15px;
  min-height: 100%;
}

.dot-bg
{
  position: relative;
}

.dot-bg::before
{
  content: "";
  display: block;
  width: 100px;
  height: 100px;
  background: url(../img/dot-bg.svg);
  background-size: 100% auto;
  position: absolute;
  top: -20px;
  right: -30px;
  transform: rotate(15deg);

}

.dot-bg::after
{
  content: "";
  display: block;
  width: 100px;
  height: 100px;
  background: url(../img/dot-bg2.svg);
  background-size: 100% auto;
  position: absolute;
  top: 80%;
  left: -20px;
  transform: rotate(65deg);
  z-index: -1;

}

.dot-bg .card:nth-child(2)::before
{
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  background: url(../img/dot-bg3.svg);
  background-size: 100% auto;
  position: absolute;
  top: -50px;
  left: 20%;
  transform: rotate(15deg);
  z-index: -1;
}

.dot-bg .card:nth-child(2)::after
{
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background: url(../img/dot-bg3.svg);
  background-size: 100% auto;
  position: absolute;
  top: 97%;
  right: -30px;
  transform: rotate(65deg);
  z-index: -1;

}

.container
{
  width: 1280px;
  margin: -1px auto 0 auto;
  display: block;
  padding: 1px 0;

}
.clearfix:after{
    clear: both;
    content: "";
    display: block;
    width: 0px;
    height: 0px;
}

.button
{
  display: block;
  width: 200px;
  height: 45px;
  border: #fff 2px solid;
  border-radius: 30px;
  cursor: pointer;
  text-align: center;
  color: #fff;
  transition: all 300ms ease-in-out;
}
.button span
{
  width: 100%;
  line-height: 45px;
  font-weight: bold;
  color: #fff;
  transition: all 300ms ease-in-out;  
  font-size: 14pt;
}

.button:hover
{
  background: #fff;
}

.button:hover span
{
  color:#053CA2;
}

.arrow-btn
{
  background: #fff;
  position: relative;
}
.arrow-btn::before
{
  content: "";
  display: block;
  position: absolute;
  border-top: 3px  #053CA2 solid;
  border-right: 3px  #053CA2 solid;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%) rotate(45deg);
  z-index: 1;
  opacity: 0;
  transition: all 300ms ease-in-out;  
}
.arrow-btn:hover::before
{
  opacity: 1;
  right: 15px;
}


.arrow-btn span
{
  
  color: #053CA2;
}

.arrow-btn:hover span
{
  margin-right: 10px;
}

.blue-btn span
{
  color: #fff;
}

.blue-btn
{
  background: #053CA2;
}
.blue-btn:hover span
{
  color: #fff;
}

.blue-btn::before
{
  border-top: #fff 3px solid;
  border-right: #fff 3px solid;
}

.blue-btn:hover
{
  background: #053CA2;
}

.br-mobile
{
  display: none;
}

.section-header
{
  font-family: uvnvan;
  font-size: 24pt;
  font-weight: bold;
  text-align: center;
  margin-top: 150px;
  letter-spacing: .02em;
}

.card-container
{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
}

.card-container .card
{
  display: block;
  width: 350px;
  height: 350px;
  margin: 10px;
  border-radius: 20px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(27,69,150,0.15);
  -moz-box-shadow: 0px 0px 20px 0px rgba(27,69,150,0.15);
  box-shadow: 0px 0px 20px 0px rgba(27,69,150,0.15);
  position: relative;
}

.card .content
{
  width: 100%;
  height: 40%;
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

  
.card .title
{
  display: block;
  width: calc(100% - 20px);
  margin: 0 auto;
  text-align: center;
  font-family: uvnvan;
  font-size: 16pt;
  font-weight: bold;
  color: #0051A1;
}

.card .info
{
  width: calc(100% - 30px);
  margin: 0 auto;
  text-align: center;
}

.card .extra
{
  font-size: 10pt;
  margin: 0 auto;
  text-align: center;
  width: calc(100% - 30px);
}

.center-block
{
  display: block;
  width: auto;
  max-width: 800px;
  margin: 50px auto;
}

.light-text
{
  opacity: 0.7;
}

.fixed-nav
{
  position: fixed!important;
}

.block h4
{
  font-weight: bold;
  font-family: uvnvan;
  font-size: 20pt;
  letter-spacing: .04em;
  margin-bottom: 30px;
}

.block .main-info,
.block .note
{
  margin-top: 20;
  margin-bottom: 30px;
}

.block .main-info p
{
  margin-top: 0;
  margin-bottom: 0.8em;
}

.block .note p,
.block .note li
{
  opacity: 0.8;
  font-size: 9pt;
  margin-top: 0;
  margin-bottom: 0.3em;
}

.block .note li
{
  margin-left: 1.4em;
}

.block .note .custombullet
{
  list-style: none;
}



.block .note .custombullet li::before
{
  content: "*";
    margin-left: -1.4em;
    margin-right: .8em;
  display: inline-block;

}

.lightbox
{
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgba(6,60,163,0.8);
  top:0;
  left: 0;
  z-index: 15;
}
.light-video 
{
  display: none;
}

.video .light-video 
{
  display: block;
  width: 900px;
  height: 506px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.light-video-container
{
  display: block;
  width: 100%;
  height: 100%;
}

.light-video iframe
{
  width: 100%;
  height: 100%;
}

.scrolltop
{
  display: block;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  position: fixed;
  right: 50px;
  bottom: 50px;
  webkit-box-shadow:0px 4px 15px -4px rgba(27,69,150,0.4);
   -moz-box-shadow: 0px 4px 15px -4px rgba(27,69,150,0.4);
        box-shadow: 0px 4px 15px -4px rgba(27,69,150,0.4);
    transform: translate(50%, 50%);
    cursor: pointer;
    transition: all 300ms ease-in-out;
  opacity: 0.5;    
}
.scrolltop:hover
{
  opacity: 1!important;
}

.scrolltop::before
{
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: #1037A3 2px solid;
  border-right: #1037A3 2px solid;
  top: 50%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: all 300ms ease-in-out;

}
.scrolltop::after
{
  content: "";
  display: block;
  width: 2px;
  height: 18px;
  background: #1037A3;
  top: 50%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 300ms ease-in-out;
}
.scrolltop:hover::before
{
  transform: translate(-50%, -75%) rotate(-45deg);
}
.scrolltop:hover::after
{
  transform: translate(-50%, -75%);
}


.lang-cont
{
  width: 50px;
  height: 50px;
  display: block;
  
  background: #fff;
  border-radius: 50px;
  position: fixed;
  right: 25px;
  bottom: 25px;
  webkit-box-shadow:0px 4px 15px -4px rgba(27,69,150,0.4);
   -moz-box-shadow: 0px 4px 15px -4px rgba(27,69,150,0.4);
        box-shadow: 0px 4px 15px -4px rgba(27,69,150,0.4);
  transition: all 300ms ease-in-out;
  opacity: 0.5;  
  overflow: hidden;  
}



.lang-cont-up
{
  bottom: 90px;
}
.lang-cont:hover,
.lang-cont-expand
{
  height: 200px;
  opacity: 1!important;
}


.lang-group
{
  display: block;
  width: 200px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 200%) rotate(90deg);
  text-align: center;
  transition: all 300ms ease-in-out;
}

.lang-cont::before
{
  content: attr(lang);
  display: block;
  font-weight: bold;
  width: 50px;
  height: 50px;
  position: absolute;
  top:0;
  left: 0;
  text-align: center;
  line-height: 50px;
  transition: all 300ms ease-in-out;
}

.lang-cont:hover::before,
.lang-cont-expand::before
{
  top: -50px;
}

.lang-cont:hover .lang-group,
.lang-cont-expand .lang-group
{
  transform: translate(-50%, -50%) rotate(90deg);
}
.lang-group span
{
  display: inline-block;
  width: 90px;
  height: 40px;
  margin: 5px 3px;
  line-height: 40px;
  font-size: 10pt;
  cursor: pointer;
  border-radius: 30px;
  transition: all 300ms ease-in-out;
}
.lang-group .lang-vi
{
  width: 95px;
  margin-right: 0;
}

.lang-group span.active,
.lang-group span:hover
{
  background: #EAEEF7;
}

.footer .lang-cont::before
{
	display: none;
}

.footer .lang-cont,
.footer .lang-cont:hover
{
	width: 200px;
	height: 50px;
	opacity: 1;
	position: relative;
	right: auto;
	bottom: auto;
	margin: 30px auto 50px auto;
	background: none;
	webkit-box-shadow:none;
   -moz-box-shadow: none;
    box-shadow: none;
    color: #fff;
}
.footer .lang-cont .lang-group,
.footer .lang-cont:hover .lang-group
{
	transform: translate(-50%, -50%) rotate(0deg);
}
.footer .lang-group span.active,
.footer .lang-group span:hover
{
  background: rgba(255,255,255, 0.3);
}

/*--------------------------*/
/* end global css*/

section.menu
{
  height: 60px;
  //background: #eee;
  position: fixed; 
  //color: #fff;
  z-index: 15;
}

section.menu::before
{
  display: block;
  content: "";
  position: absolute;
  top:-100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: -1;
  transition: all 300ms ease-in-out;
  webkit-box-shadow:0px 9px 15px -10px rgba(27,69,150,0.15);
    -moz-box-shadow: 0px 9px 15px -10px rgba(27,69,150,0.15);
    box-shadow: 0px 9px 15px -10px rgba(27,69,150,0.15);
}

section.showmenu
{
  color:#1037A3;
}

section.showmenu::before
{
  top:0;
}

.menu .logo
{
  width: 200px;
  height: 40px;
  margin: 10px;
  display: block;
  float: left;

}

.menu .logo .header-logo-svg 
{
  fill: #fff;
  width: 200px;
  height: 40px;
  z-index: 10;
  transition: all 300ms ease-in-out;
}

.menu .logo .hiddenlogo
{
  opacity: 0;
}

.showmenu .logo .header-logo-svg 
{
  fill: #1037A3;
}

.showmenu .logo .hiddenlogo
{
  opacity: 1;
}


.menu ul
{
  padding: 0;
  margin: 0;
  display: block;
  width: auto;
  margin-right: 100px;
  float: right;
  position: relative;
  display: none;
}

.menu ul li
{
  text-decoration: none;
  display: inline-block;
  
  line-height: 30px;
  margin: 15px 0px;
  padding: 0 10px;
  position: relative;
  cursor: pointer;
  z-index: 5;

}


.menu ul li::after
{
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  background: #2FE0FF;
  border-radius: 50%;
  top: 35px;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 300ms ease-in-out;
}
.menu ul li:hover::after
{
  width: 8px;
  height: 8px;
}

.menu ul li:first-child
{
  z-index: 6;
}
.menu ul li ul
{
  position: absolute;
  opacity: 0;
  z-index: -2;
  top:0px;
  left: -170px;
  height: 50px;
  width: 100%;
  background: #fff;
  width: 800px;
  text-align: center;
  
  margin-right: 0;
  padding-top: 10px;
  display: none;
}
.menu ul li:hover
{

}
.menu ul li ul.showw
{
  opacity: 1;
  top:30px;
  pointer-events: auto;
  display: none;
}


.menu ul li ul::before
{
  content: "";
  display: block;
  z-index: -100;
  width: 400%;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  left: -200%;
   webkit-box-shadow:0px 9px 15px -10px rgba(27,69,150,0.15);
    -moz-box-shadow: 0px 9px 15px -10px rgba(27,69,150,0.15);
    box-shadow: 0px 9px 15px -10px rgba(27,69,150,0.15);
}

.menu ul li ul li
{
  line-height: 30px;
  margin: 5px 5px 15px 5px;
}
.menu ul li ul li .menu-icon
{
  width: auto;
    height: 20px;
    margin: 0 5px -3px 0;
    fill: #1037A3;
    transition: all 300ms ease-in-out;
}

.menu ul li ul li:hover .menu-icon
{
  transform: scale(1.1) rotate(-15deg);
}

.menu .burger,
.lightbox .close
{
  width: 34px;
  height: 30px;
  position: relative;
  display: block;
  float: right;
  margin: 15px;
  z-index: 10;
  cursor: pointer;
}
.video .close
{
  transform: translateX(160%);
}

.slider .close
{
  transform: translate(200%, -50%);
}

.menu .burger::before
{
  content:"";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top:50%;
  left:50%;
  padding: 10px;
  border-radius: 5px;
  background: #063CA3;
  opacity: 0.3;
   transform: translate(-50%, -50%);
   transition: all 300ms ease-in-out;

}

.showmenu .burger::before
{
  opacity: 0;
}
.menu .burger div,
.lightbox .close div
{
  width: 100%;
  height: 4px;
  background: #fff;
  border-radius: 2px;
  position: absolute;
  transition: all 300ms ease-in-out;
}

.showmenu .burger div
{
  background: #063CA3;
}
.menu .burger .top
{
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.menu .burger .middle
{
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.menu .burger .bottom
{
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.showmenu .burger .top,
.lightbox .close .top
{
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.showmenu .burger .middle
{
  width: 0;
}

.showmenu .burger .bottom,
.lightbox .close .bottom
{
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}


/*----footer-------------------*/
.footer
{
  min-height: auto;
  padding-bottom: 1px;
  padding-top: 1px;
}

.footer-logo
{
  margin: 50px auto 30px auto;
  display: block;
  max-width: 230px;
}


.footer-products, .footer-menu
{
  width: auto;
  display: block;
  text-align: center;
  
}

.footer-products li,
.footer-menu li
{
  cursor: pointer;
  display: inline-block;
  color: #fff;
  margin: 10px 25px;
  position: relative;
}
.footer-products
{
  margin-bottom: 0;
} 
.footer-menu 
{
  margin-top: 0;
  margin-bottom: 50px;
}

.footer-menu li::after
{
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 100%;
  right: -26px;
  top: 0;
  background: #fff;
  opacity: 0.7;
}

.footer-menu li:last-child::after
{
  display: none;;
}

.footer-products li .menu-icon
{
  width: auto;
    height: 20px;
    margin: 0 5px -3px 0;
    fill: #fff;
    transition: all 300ms ease-in-out;
}

.footer-products li:hover .menu-icon
{
  transform: scale(1.1) rotate(-15deg);
}

.copyrights
{
  display: block;
  background: #09328D;
  padding: 10px 0;
  color: #fff;
}

.copyrights span
{
  display: block;
  float: left;
  opacity: .5;
  font-size: 10pt;
  line-height: 50px;
}

.copyrights .bottom-logo
{
  display: block;
  float: right;
  width: auto;
  height: 30px;
  margin-top: 10px;
  margin-right: 10px;
}


/* -----------intro----------- */


.home-intro
{
  color: #fff;
  padding: 1px 0px;
  overflow: hidden;
}

.home-intro .container::before,
.product-intro .container::before
{
  content: "";
  display: block;
  position: absolute;
  top: 10%;
  left: 80%;
  transform: translate(-50%, -50%) scale(1.1);
  width: 1000px;
  height: 1000px;
  border-radius: 500px;
  border: #0D4EA9 150px solid;
  box-sizing: border-box;
  z-index: 0;
}


.home-intro .container
{
 min-height: 100vh;
 position: relative;
 display: flex;
 align-items: center;
}

.home-intro .block
{
  width: 50%;
  display: block;
  margin: 100px auto 80px 10px;
  z-index: 2;
}

.home-intro .intro-logo
{
  display: block;
  width: 300px;
  height: auto;
  margin-bottom: 30px;
}

.home-intro .description
{
  font-size: 16pt;
  margin-top: 50px;
  line-height: 1.6em;
}

.highlight
{
  font-family: uvnvan;
  letter-spacing: .04em;
  font-size: 1.1em;
  color: #5DC1F2;
}

.upsize
{
  font-size: 1.6em;
  line-height: 0.7em;
}

.downsize
{
  line-height: 1.3em;
    font-size: 90%;
}

.home-intro .button
{
  margin-top: 50px;
}

.home-intro .intro-img
{
  position: relative;

}
.home-intro .intro-img img
{
    width: 450px;
    transform: rotate(15deg);
    margin: 50px 50px 0 0;
    animation: introanim 3.5s ease-in-out both;
    animation-iteration-count: infinite;
}

@keyframes introanim 
{
  0%, 100% 
  {
    transform: translate(0, -1%) rotate(16deg) scale(1);
  }
50% {
    transform: translate(0, 2%) rotate(13deg) scale(0.95);
}
}

.jp
{
  font-weight: bold;
  color: #fff;
  display: block;
  text-align: center;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  background: rgb(209, 46, 38, 0.9);
  position: absolute;
  bottom: 3%;
    right: 15%;
  transform: translate(-50%, -50%) rotate(10deg);
  vertical-align: middle;
  text-transform: uppercase;
  font-size: 12pt;
  z-index: 5;
  
}

.jp::after
{
  content: "";
  display: block;
  position: absolute;
  top:50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 5px #fff solid;
  opacity: .2;
}

.jp > div
{
  margin-top: 26px;
}

/*--- principles ----------------*/

.principles .section-header
{
  margin-bottom: 0px;
}

.principles .sub-header
{
  margin-top: 8px;
  text-align: center;
  font-size: 16pt;
}

.principles .sub-header .orange
{
  color: #FD7217;
}

.principles .card-container
{
  margin: 100px auto  80px auto;
}

.principles .card img
{
  width: 80%;
  display: block;
  height: auto;
  margin: 20px auto;

}

.principles .card 
{
  margin: 30px;
  
}


.principles .random001
{
  display: flex;
  justify-content: center;
  align-items: center;

}

.principles .random001 p
{
  margin: 20px;
}

.principles .random001 .p02
{
  line-height: 2em;
  position: relative;
}

.principles .random001 .p02::before
{
  content: "{";
    display: block;
    font-size: 80px;
    position: absolute;
    top: 50%;
    left: -30px;
    transform: translate(0, -80%);
    font-family: notosans-thin;

}

.tab {
  background: #eee;
  border-radius: 20px;
  margin: 50px auto 150px auto;
  width: 100%;
  max-width: 900px;
  overflow: hidden;
  border: none;

}
.tab img
{
  width: auto;
  height: 60px;
  display: block;
  margin: 10px auto -8px auto;
}
.tab th, .tab td
{
  line-height: 50px;
  text-align: center;

}

.tab thead
{
  background: #063CA3;
  color: #fff;
}
.tab thead th:nth-child(2n)
{
  background: #2F56B1;
}

.tab tbody tr 
{
  background: #E6EBF6;
}

.tab tbody tr td:nth-child(2n)
{
  background: #EAEEF7;
}

.tab tbody tr:nth-child(2n)
{
  background: #DAE2F1;
}

.tab tbody tr:nth-child(2n) td:nth-child(2n)
{
  background: #E0E6F3;
}

.tab span.dot
{
  width: 10px;
  height: 10px;
  display: inline-block;
  background: #FD7217;
  border-radius: 50%;
}

/* ------ certificate --------*/

.certificate
{
  min-height: auto;
}

.certificate .sub-header
{
  margin-top: 8px;
  text-align: center;
  font-size: 16pt;
  font-weight: bold;
}

.certificate .center-block
{
  font-size: 11pt;
  margin-bottom: 150px;
}

.certificate .light-text
{
  text-align: right;
  font-size: 11pt;
}


/* ------ home products --------*/
section.products
{
  overflow: hidden;
}

section.products-0height
{
  height: 0;
  overflow: visible;
  z-index: 10;
}
.products .products-nav
{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  margin-top: -75px;
  
}

.products .products-nav .item
{
  display: block;
  width: 110px;
  height: 110px;
  border-radius:50%;
  background: #4793EB;//#fff;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(27,69,150,0.15);
  -moz-box-shadow: 0px 0px 20px 0px rgba(27,69,150,0.15);
  box-shadow: 0px 0px 20px 0px rgba(27,69,150,0.15);
  margin: 25px;
  position: relative;
  cursor: pointer;
    transition: all 300ms ease-in-out;

}

.products .products-nav .item:hover,
.products .products-nav .active-item
{
  transform: scale(1.05);
}


.products .products-nav .item::before
{
  width: 0px;
  height: 0px;
  content: "";
  display: block;
  position: absolute;
  bottom: -5px;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: #fff;//#5DC1F2;
  transition: all 300ms ease-in-out;
  opacity: 0;


}
.products .products-nav .item:hover::before,
.products .products-nav .active-item::before
{
  bottom: -25px;
  opacity: 1;
  width: 10px;
  height: 10px;
}

.products .products-nav .item img
{
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65%;
  height: auto;
  transition: all 300ms ease-in-out;
}

.products .products-nav .item:hover img,
.products .products-nav .active-item img
{
  transform: translate(-50%, -50%) rotate(15deg);
}

.products .products-nav .item .name
{
  position: absolute;
  left: 50%;
  bottom: -85%;
  color: #fff;
  text-align: center;
  width: 100%;
  height: auto;
  display: block;
  transform: translate(-50%, -50%);
  opacity: 0;
    transition: all 300ms ease-in-out;

}

.products .products-nav .item:hover .name,
.products .products-nav .active-item .name
{
  bottom: -100%;
  opacity: 1;
}


.product-display
{
  display: flex;
  align-items: center;
  min-height: 100vh;
  justify-content: space-between;

}

.product-info
{
  display: block;
  width: auto;
  max-width: 560px;
  color: #fff;
  z-index: 1;
  margin: 150px 10px 150px 10px;
}

.product-info h4
{
  font-weight: bold;
  font-family: uvnvan;
  font-size: 20pt;
  letter-spacing: .04em;
  margin-bottom: 50px;
}

.product-info .main-info,
.product-info .note
{
  margin-top: 20;
  margin-bottom: 30px;
}

.product-info .main-info p
{
  margin-top: 0;
  margin-bottom: 0.8em;
}

.product-info .note p
{
  opacity: 0.7;
  font-size: 9pt;
  margin-top: 0;
  margin-bottom: 0.3em;
}


.product-img
{
  width: 50%;
  display: block;
  height: 600px;
  position: relative;
}


.product-img .img-container
{ 
  position: absolute;
  width: auto;
  height: 100%;
  display: block;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0%);
}

.product-img .img-container img
{
  width: auto;
  height: 100%;
}

.pen
{
  width: calc(100% + 50px);
}

.product-info .upsize {
    font-size: 1.6em;
    line-height: 1.5em;
}

.pen .main-info
{
  width: 80%;
  margin-bottom: 50px;
}

.product-img .pen-img {
    
    height: 90%;
    margin-top: 10%;
    transform: translate(-50%, 0) rotate(15deg);
}
.product-img .pen-img img,
.product-img .hang-img img,
.product-img .spray-img img,
.product-img .minispray-img img
{
  animation: introanim 3.5s ease-in-out both;
    animation-iteration-count: infinite;
}
.product-img .hang-img {
    
    height: 110%;
    margin-top: -10%;
    transform: translate(-40%, 0) rotate(15deg);
}
.product-img .minispray-img {
    
    height: 110%;
    margin-top: -4%;
    transform: translate(-40%, 0) rotate(8deg);
}
.product-img .spray-img {
    
    height: 110%;
    margin-top: -4%;
    transform: translate(-40%, 0) rotate(8deg);
}
.hang .main-info,
.spray .main-info,
.minispray .main-info
{
  margin-bottom: 50px;
}
.product-bg01
{
  width: 500px;
  height: 500px;
  display: block;
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #328ECF;
}
.product-bg02
{
  width: 750px;
  height: 750px;
  display: block;
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #1169B9;
  
}

.product-bg03
{
  width: 1000px;
  height: 1000px;
  display: block;
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #0D4EA9;
  
}

.products .detail
{
  position: absolute;
}

.products .p60g
{
  top: 10%;
  left: -5%;
}
.products .p150g
{
  bottom: -5%;
  right: 0%;
  text-align: right;
}

.products .p150g .capa
{
  margin: 0 0 0 auto;
}

.products .detail p
{
  color: #fff;
  font-size: 12pt;
  margin: 5px 0;
}

.products .detail .capa
{
  display: inline-block;
    background: #fff;
    line-height: 30px;
    height: 30px;
    padding: 2px 15px;
    border-radius: 20px;
    font-weight: bold;
    width: auto;
}

/* ------ dust ----------------*/

.dust
{
  min-height: auto;
}

.dust .container
{
  display: flex;
  justify-content: space-between;
}

.dust .block
{
  width: 40%;//30%;
  max-width: 450px;
  margin: 120px auto 100px 10px;

}

.dust .anim
{
  width: 65%;
  margin: 120px auto 100px auto;
  display: flex;
  justify-content: center;
}

.dust .anim img
{
  width: 100%;
}

/* ------- infographic ---------------- */

.infographic
{
  z-index: 0;
  min-height: auto;
}

.infographic .container
{
  display: flex;
  justify-content: space-between;
}

.virus-kill
{
  width: 100%;
  max-width: 350px;
  height: auto;
  display: block;
  text-align: center;
  margin: 100px 50px;
}

.virus-kill p
{
  margin: 0 auto;
}

.virus-kill .slogan
{

}

.virus-kill .slogan .p1
{
  font-family: uvnvan;
  font-size:100pt;
  color: #149CDE;
  font-weight: bold;
  line-height: .7em;
  margin-bottom: .2em;
}

.virus-kill .slogan .p2
{
  font-weight: bold;
  font-size: 22pt;
}

.virus-kill .slogan .p3
{
  font-size: 14pt;
}

.virus-kill .img-container
{
  display: block;
  width: 100%;
  position: relative;
  height: auto;
}
.virus-kill .img-container img
{
  width: 80%;
  height: auto;
  margin: 50px auto 0 auto;
  display: block;
}

.virus-kill .product-bg01
{
  background: #8CBEE7;
  opacity: 0.7;
  z-index: -1;
  width: 200px;
  height: 200px;
  top: 0;
}
.virus-kill .product-bg02
{
  background: #A9CCED;
  opacity: 0.7;
  z-index: -1;
  width: 300px;
  height: 300px;
  top: 0;
}
.virus-kill .product-bg03
{
  background: #CFE2F5;
  opacity: 0.7;
  z-index: -1;
  width: 400px;
  height: 400px;
  top: 0;
}


.recommend 
{
  margin: 0px 50px;
}
.recommend .svg {
  /* Appearance */
  transform: rotate(-90deg);
}

.recommend .circle {
  
  /* Appearance */
  fill: #43B7ED;
}

.recommend .circle-center {
  
  /* Appearance */
  fill: #1278BE;
}

.recommend #pie {
    
  /* Appearance */
  stroke: #09328D;
  stroke-dasharray: 0 1099;
  stroke-width: 50;
  transition: stroke-dasharray .5s ease-out;
}

.recommend .pie-wrapper {
  /* Positioning */
  position: relative;
  width: 400px;
  height: 400px;
  margin: 100px auto 50px auto; 
}

.recommend .pie-inner
{
  position: absolute;
  display: block;
  width: 100%;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20pt;
  color: #fff;
  text-align: center;
  
}
.recommend .pie-inner h4

{
  margin: 0 0 5px 0;
}

.recommend .pie-inner .num
{
  font-family: uvnvan;
  font-size: 64pt;
  line-height: .7em;
}

.recommend .block
{
  max-width: 640px;
  margin: 30px auto 50px auto;
}

.recommend .block .note p,
.recommend .block .note li
{
  font-size: 10pt;
  opacity: 1;
}

.fullnote
{
  display: block;
  width: calc(100% - 100px);
  padding: 50px;
  border-top: #09328D 1px solid;
  margin-bottom: 0!important;
}

/* --------- company ----------*/

.company
{
  min-height: auto;
}
.company::after
{
  display: none;
}

.company .container
{
  display: flex;
    justify-content: space-between;
    align-items: center;
}

.company .block {
    width: 100%;
    max-width: 450px;
    margin: 120px auto 100px 10px;
}

.company-logo
{
  width: 300px;
  margin:0px 0px 40px 0px;
  display: block;
}

.company .illustration
{
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  position: relative;
  margin: 100px auto; 
}

.company .illustration::before
{
  content: "";
  display: block;
  position: absolute;
  transform: translate(-50%, -50%);
  background: rgba(6,60,160,0.03);
  width: 800px;
  height: 800px;
  border-radius:50%;
  top: 50%;
  left: 50%;
  z-index: -1;
}

.company .illustration .dot-bg::after
{
  background: url(../img/dot-bg3.svg);
  width: 50px;
    height: 50px;
}
.company .illustration .dot-bg::before
{
  top: 60%;
  z-index: -1;
}

.company .illustration img
{
  width: 100%;
  height: auto;
  display: block;
}

/* --------- video ----------*/

.video
{
  min-height: auto;
  color: #fff;
}

.video .section-header
{
  color: #fff;
  margin-top: 10px;
  letter-spacing: .04em;
}

.list-video
{
  width: 100%;
  display: flex;
  justify-content: space-around;
  height: auto;
  margin: 50px auto;
}

.list-video .video-item
{
  display: block;
  position: relative;
  width: 500px;
  height: auto; 
  border: #fff 3px solid;
  margin: 20px;
  cursor: pointer;
}
.list-video .video-item::after
{
  content: "";
  display: block;
  position: absolute;
  top:50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 0 25px 45px;
  border-color: transparent transparent transparent #ffffff;
    transition: all 300ms ease-in-out;

}
.list-video .video-item:hover::after
{
  transform: translate(-50%, -50%) scale(1.1);
}
.list-video .video-item img
{
  width: 100%;
  height: auto;
  display: block;
}

.video .center-block
{
  text-align: center;
  margin-bottom: 100px;
}

.video .center-block .light-text
{
  font-size: 10pt;
}

/* ------ product page ------- */
/* ------ product intro ------- */

.product-intro
{
  color: #fff;
  min-height: 90vh;
}

.product-intro .container
{
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 90vh;

}

.product-intro .block
{
  max-width: 500px;
  margin: 150px 20px;
  z-index: 4;
}

.product-intro .block h4
{
  font-size: 28pt;
}

.product-intro .block p
{
  margin-bottom: 0.8em;
}
.product-intro .block .upsize
{
  line-height: 1.5em;
  font-size: 1.2em;
  font-weight: bold;
}
.product-intro ul
{
  margin: 0;
}

.product-intro .intro-img
{
  margin: 150px auto 0 auto;
  max-width: 450px;
  z-index: 4;
}
.product-intro .intro-img img
{
  display: block;
  width: 100%; 
  height: auto;
}

.p-pen .intro-img 
{
  width: 50%;
}
.p-hang .intro-img
{
  width: 30%;
    margin-top: 80px;
}
.p-minispray .intro-img 
{
  width: 11%;
  margin-top: 120px;
}

/* ------ product highlight ------- */

.product-highlight
{
  min-height: auto;
}

.product-highlight .container
{
  display: flex;
  justify-content: space-between;
}

.product-highlight .block
{
  margin: 120px 20px;
  display: block;
  width:  40%;
  max-width: 450px;
}

.product-highlight .block .main-info
{
  margin-top: 20px;
}

.product-highlight .highlight-block
{
  display: block;
  margin: 120px 20px 80px 20px;
  width: 60%;
}

.highlight-block h4
{
  text-align: center;
  font-size: 20pt;
  font-family: uvnvan;
  letter-spacing: 0.08em;
  margin-top: 0;
}
.highlight-block .upsize
{
  font-size: 1.15em;
}
.highlight-block .highlight
{
  font-size: 1.3em;
}
.highlight-block img
{
  width: 100%;
  height: auto;
  display: block;
}

#p-pen-anim,
#p-hang-anim
{
  transform: scale(1.2);
}

.highlight-block #p-dust-kill
{
  transform: scale(1.1);
}

.p-pen .product-highlight .block .main-info,
.p-hang .product-highlight .block .main-info
{
  margin-top: 0;
  margin-bottom: 0;
}

.p-pen .product-highlight .block,
.p-hang .product-highlight .block
{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    margin: 80px 20px;
}
.p-pen .product-highlight .highlight-block,
.p-hang .product-highlight .highlight-block
{
  margin: 80px 20px;
}

.p-pen .product-highlight div.br-mobile,
.p-hang .product-highlight div.br-mobile
{
  display: none;
}

.p-spray .product-highlight .container
{
  display: block;
}

.product-highlight .sub-header
{
  text-align: center;
  display: block;
  width: auto;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-family: uvnvan;
  font-weight: bold;
  font-size: 16pt;
}

.product-highlight .illus-container
{
  width: 85%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.product-highlight .illus-container .illus-block
{
  display: block;
  width: 450px;
  margin: 30px 50px;
  text-align: center;
}

.product-highlight .illus-container .illus-block img
{
  width: 100%;
  height: auto;
  display: block;
}

.button-label
{
  display: inline-block;
  width: auto;
  height: 45px;
  padding: 0 25px;
  background: #1037A2;
  border-radius: 25px;
  margin: 10px auto;
}
.button-label span
{
  font-weight: bold;
  color: #fff;
  line-height: 45px;
}

.p-spray .product-highlight .block
{
  margin: 30px auto 50px auto;
  width: 100%;
  max-width: 800px;

}


/* --------product size------ */

.product-size
{
  position: relative;
  min-height: auto;
  color: #fff;
}

.product-size::before
{
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #2F7BC6;
  
}

.product-size::after
{
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: #1D65BF;
  
}

.product-size .container
{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.product-size .block
{
  z-index: 5;
  width: 50%;
  margin: 50px 0 ;
  display: flex;
  align-items: flex-end;
}

.product-size .block h4
{
  margin-bottom: 0.4em;
}
.product-size .block img
{
  width: 300px;
  height: auto;
  margin: 0;
}

.product-size .left-block
{
  justify-content: flex-start;
  flex-direction: row-reverse;
  text-align: right;
}

/*----------- guide -------------*/

.guides 
{
  padding-bottom: 30px;
}

.guides .section-header
{
  margin-bottom: 100px;
}
.guides .mid-section-header
{
  margin-top: 100px;
}

.guides .mid-section-header-2
{
  margin-bottom: 0;
}

.guides .sub-header
{
  font-family: uvnvan;
  font-size: 18pt;
  font-weight: bold;
  margin-bottom: 100px;
  text-align: center;
  margin-top: 0;
}

.guides .card-container
{
  margin-bottom: 100px;
  flex-wrap: wrap;
  justify-content: center;
}

.p-hang .guides .card-container
{
  justify-content: center;
}

.guide-container
{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 50px 0;

}
.guide-container .guide-block
{
  display: block;
  width: auto;
  max-width: calc(50% - 40px);
  height: auto;
  margin: 0 20px;
}
.guide-container .guide-block h4
{
  font-family: uvnvan;
  font-size: 18pt;
  font-weight: bold;
  margin-bottom: 0.5em;
  letter-spacing: 0.04em;
}

.guide-container .guide-block li
{
  list-style: none;
  margin-bottom: 0.3em;
  margin-left: 1.5em;

}
.guide-container .guide-block li p
{
  margin-top: 0.3em;
  margin-bottom: 0;
}
.guide-container .guide-block li p:last-child
{
  
  margin-bottom: 0.8em;
}

.guide-container .guide-block li::before {
  content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: #14c3f4; /* Change the color */
  font-weight: bold; /* If you want it to be bold */
  display: inline-block; /* Needed to add space between the bullet and the text */
  width: 1em; /* Also needed for space (tweak if needed) */
  margin-left: -1em; /* Also needed for space (tweak if needed) */
  line-height: 0.5em;
    font-size: 1.5em;
    padding-bottom: -5px;
    transform: translate(0em ,0.15em);
}

.separator
{
  width: 100%;
  height: 1px;
  background: #1037A3;
  display: block;
  margin: 10px 0;
}



.guides .card-container .card
{
  height: auto;
  width: 350px;
}
.guides .card-container .card .card-inner
{
  display: block;
  width: 100%;
  padding-top: 100%;
  height: 0;
}
.guides .card-container .card img
{
  position: absolute;
  width: 90%;
  display: block;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.guides .small-card
{
  justify-content: center;
  flex-wrap: wrap;
}

.guides .small-card .card
{
  width: 280px;

}

.guides .small-card .card img
{
  top: 42%;
}
.guides .small-card .card .content
{
  height: 35%;
}

.guides .counter
{
  counter-reset: card;
}

.guides .counter .card::after
{
  counter-increment: card;
  content: counter(card);
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  color: #fff;
  border-radius: 50%;
  background: #3479C6;
  font-family: uvnvan;
  font-weight: bold;
  font-size: 16pt;
  line-height: 37px;
  top:0;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
}

.p-spray .guides .counter
{
  justify-content: center;
}
.p-spray .guides .counter .card .content
{
  height: 35%;
}



/* ------ mechanism page ------- */
/* ------ mechanism intro ------- */

.mechanism-intro
{
  min-height: auto;
  color: #fff;

}

.mechanism-intro .container
{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mechanism-intro .block 
{
  width: 50%;
  max-width: 550px;
  margin: 200px auto 30px 20px;
}


.mechanism-intro .block h4
{
  font-size: 32pt;
}
.mechanism-intro .block .main-info
{
  font-size: 14pt;
}

.mechanism-intro .block .upsize
{
  font-size: 1.3em;
}
.mechanism-intro .intro-img
{
  display: block;
  width: 50%;
  height: auto;
  margin-bottom: -250px;
  z-index: 5;
}
.mechanism-intro .intro-img img
{
  width: 100%;
  height: auto;
}


/* ------ clo2 ------- */

.clo2 .center-block
{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
}

.clo2 .center-block img
{
  display: block;
  width: 120px;
  height: auto;
  margin: 10px 20px;
}

.clo2 .center-block p
{
  margin: 20px;
  width: auto;
  max-width: 550px;
}

.clo2 .center-block .upsize
{
  font-size: 1.3em;
}

/*--- mechanism animation ----------------*/

.mechanism-anim .center-block
{
  margin-bottom: 80px;
}

.mechanism-anim .center-block img
{
  width: 80%;
  display: block;
  margin: auto;
}

.mechanism-anim .center-block .mechanism-sub
{
  font-family: uvnvan;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.05em;
  font-size: 16pt;
  margin-top: -10px;
}

/*--- comparison ----------------*/

.comparison .section-header
{
  letter-spacing: 0.04em;
}

.comparison .card-group
{
  display: block;
  width: calc(100% - 20px);
  background: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(27,69,150,0.15);
  -moz-box-shadow: 0px 0px 20px 0px rgba(27,69,150,0.15);
  box-shadow: 0px 0px 20px 0px rgba(27,69,150,0.15);
  height: auto;
  padding: 30px 0;
  height: auto;
  margin: 120px auto;
  text-align: center;
}
.comparison .card-group:last-child
{
  margin: -20px auto 150px auto;
}

.comparison .card-group .group-title
{
  text-transform: uppercase;
  font-size: 20pt;
  margin-top: 50px;
  margin-bottom: 0;
}
.comparison .card-group .group-subtitle
{
  margin-top: 0;
}

.comparison .card-group ul
{
  display: flex;
  justify-content: space-around;
  width: calc(100% - 60px);
  height: auto;
  flex-wrap: nowrap;
  margin: 50px auto 0 auto;
  counter-reset: step;
}

.comparison .card-group .step
{
  list-style: none;
  display: block;
  width: 250px;
  height: auto;
  margin: 10px 10px;
  position: relative;
}

.comparison .card-group .step .img-container
{
  width: 200px;
  height: auto;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  border: 3px #0C4FA1 solid;
  margin: 10px auto 20px auto;
}
.comparison .card-group .step::after
{
  counter-increment: step;
    content: counter(step);
    display: block;
    position: absolute;
    width: 40px;
    height: 40px;
    color: #fff;
    border-radius: 50%;
    background: #3479C6;
    font-family: uvnvan;
    font-weight: bold;
    font-size: 16pt;
    line-height: 37px;
    top: 20px;
    left: 30px;
    text-align: center;
    transform: translate(-50%, -50%) scale(1.1);
}

.comparison .card-group .step .img-container img
{
  width: 100%;
  height: 100%;
  display: block;
}

/*--- uses ----------------*/

.menubg
{
  height: 60px;
}

.gallery .container
{
  width: calc(100% - 40px);
}

.gallery .section-header
{
  font-size: 32pt;
}

.gallery .button-group
{
  text-align: center;
  margin: 50px auto;
}

.gallery .button-group .button
{
  border: #1037A3 3px solid;
  height: 40px;
  width: auto;
  display: inline-block;
  padding: 0 25px;
  margin: 10px;
}
.gallery .button-group .button span
{
  color: #1037A3 ;
  line-height: 40px;
  font-size: 12pt;
}

.gallery .button-group .active
{
  background: #1037A3 ;
}
.gallery .button-group .active span
{
  color: #fff;
}

.gallery .grid
{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin:100px auto;
}

.transparent
{
  opacity: 0;
}

.gallery .grid .item
{
  display: block;
  width: 400px;
  height: 360px;
  margin: 12px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 40px 0px rgba(27,69,150,0.15);
  -moz-box-shadow: 0px 0px 40px 0px rgba(27,69,150,0.15);
  box-shadow: 0px 0px 40px 0px rgba(27,69,150,0.15);
  border-radius: 20px;
  cursor: pointer;
  transition: all 200ms ease-in-out;

}

.gallery .grid .item .img-container
{
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  width: 384px;
  height: 270px;
  margin: 8px;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;


}

.gallery .grid .item .description
{
  display: none;
}
.gallery .grid .item .img-container img
{
  display: none;
  width: auto;
  height: 100%;
  transition: all 300ms ease-in-out;
}

.gallery .grid .item:hover .img-container img
{
  transform: scale(1.05);
}
.gallery .grid .item .img-container img:first-child
{
  display: block;
}

.gallery .grid .item .company-name
{
  width: calc(100% - 30px);
  margin: 0 15px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 65px;
}
.gallery .grid .item .company-name p
{
  display: block;
}

.light-slider
{
  display: none;
  position: absolute;
  width: 800px;
  height:auto;
  border-radius: 20px;
  background: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.slider .light-slider
{
  display: block;
}

.light-slider .slider
{
  
}

.light-slider .title
{
  display: block;
  width: calc(100% - 80px);
  position: relative;
  margin: 10px 40px 10px 40px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  letter-spacing: 0.02em;
    
}
.light-slider .title span
{
  font-size: 20pt;
  font-family: uvnvan;
  font-weight: bold;
}
.light-slider .description
{
  display: block;
  width: calc(100% - 80px);
  position: relative;
  margin: 20px 40px 50px 40px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.light-slider .slider
{
  position: relative;
  width: calc(100% - 80px);
  height: auto;
  display: block;
  margin: 10px 40px;
}

.slider .item
{
  width: 720px;
  height: 435px;
}

.light-slider .slider .owl-carousel
{
  
  

}

.light-slider .slider .owl-carousel .owl-nav button.owl-prev
{
  position: absolute;
  top: 45%;
  left: 0;
  background: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: block;
  transform: translate(-50%, -50%);
  -webkit-box-shadow: 0px 0px 15px 0px rgba(27,69,150,0.15);
  -moz-box-shadow: 0px 0px 15px 0px rgba(27,69,150,0.15);
  box-shadow: 0px 0px 15px 0px rgba(27,69,150,0.15);
  outline: none;
}
.light-slider .slider .owl-carousel .owl-nav button.owl-next
{
  position: absolute;
  top: 45%;
  right: 0;
  background: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: block;
  transform: translate(50%, -50%);
  -webkit-box-shadow: 0px 0px 15px 0px rgba(27,69,150,0.15);
  -moz-box-shadow: 0px 0px 15px 0px rgba(27,69,150,0.15);
  box-shadow: 0px 0px 15px 0px rgba(27,69,150,0.15);
  outline: none;
}
.light-slider .slider .owl-carousel .owl-nav button.owl-prev span,
.light-slider .slider .owl-carousel .owl-nav button.owl-next span
{
  font-size: 35pt;
  line-height: 28px;
  color: #1037A3;
}

.owl-carousel button.owl-dot {
    background: 0 0;
    color: inherit;
    border: none;
    padding: 0!important;
    font: inherit;
    outline: none;
}

.owl-dots 
{
  text-align: center;
  margin-top: 10px;
}

.owl-dots .owl-dot.active span
{
  background: #1CB8F2;
}

.owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
}

.owl-carousel .owl-wrapper {
    display: flex !important;
}
.owl-carousel .owl-item img {
    
    
} 

/* -------taiko ------------- */

.taiko-intro
{
  
}
.taiko-intro .container
{

}

.taiko-intro img
{
  width: 80%;
  max-width: 600px;
  margin: 250px auto -50px auto ;
  display: block;
  z-index: 10;
}

.overview .center-block
{
  margin: 150px auto 80px auto;
  text-align: center;
}

.overview .block-container
{
  display: flex;
  justify-content: space-between;
  margin: 30px auto 80px auto;

}

.overview .block-container .block
{
  display: block;
    width: auto;
    max-width: calc(50% - 60px);
    height: auto;
    margin: 0 20px;
}

.overview .table-note
{
  font-size: 10pt;
  font-style: italic;
}

.overview table td
{
  vertical-align: top;
  padding: 6px 2px;
}
.overview table  tr td:first-child
{
  font-weight: bold;
  width: 35%;
}
.overview ul
{
  list-style: none;
}
.overview ul li
{
  margin-bottom: 20px;
}
.overview ul p
{
  margin-top: 0.4em;
}

.business-map
{
  background: #e1f5fe;
}

.business-map .container
{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.business-map .block
{
  margin: 50px 20px;
  display: block;
  width: calc(50% - 60px);
  max-width: 450px;

}
.business-map img
{
  display: block;
  width: 50%;
}

.business-map ul li
{
  display: inline-block;
  width: 40%;
  margin: 5px auto 5px 1em;
  position: relative;
}

.business-map ul li::before
{
  content: "";
  width: 4px;
  height: 4px;
  position: absolute;
  background: #0A3CA5;
  left: -1em;
  top: .6em;
}

.taiko-products .product-container
{
  width: 100%;
  margin: 120px auto 80px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.taiko-products .block
{
  width: calc(50% - 40px);
  max-width: 400px;
  margin: 20px 40px;
  position: relative;
  z-index: 1;
}

.taiko-products .section-header
{
  letter-spacing: 0.04em;
}

.taiko-products .block img
{
  width: 100%;
}

.taiko-products .taiko-cleverin
{
  text-align: right;
}
.taiko-cleverin .p-info
{
  margin-top: -100px;
}

.block .p-info .name
{
  font-size: 32pt;
  font-family: uvnvan;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
}
.block .p-info .description
{
  font-size: 18pt;
  font-weight: bold;
  margin: 0;
}

.taiko-products .taiko-cleverin
{
  margin-top: 150px;
  z-index: 2;
}
.taiko-products .taiko-seirogan
{
  margin-top: -50px;

}

.taiko-cleverin::before
{
  width: 450px;
  height: 450px;
  content: "";
  display: block;
  position: absolute;
  top: 40%;
  left: 60%;
  transform: translate(-50%, -50%);
  background: #E1F5FF;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.8;
}

.taiko-seirogan::before
{
  width: 400px;
  height: 400px;
  content: "";
  display: block;
  position: absolute;
  top: 30%;
  left: 30%;
  transform: translate(-50%, -50%);
  background: #FFEFE0;
  border-radius: 50%;
  z-index: -3;
  opacity: 0.8;
}

.taiko-products .taiko-seirogan img
{
  width: 90%;
  margin: auto auto auto 0;
}

 .taiko-seirogan .name
 {
  color: #EB6B00;
 }
 .taiko-seirogan .description
 {
  color: #EB4D0B;
 }

 .contact
 {
  background: #1D65BF;
  color: #fff;
 }

.contact .section-header
{
  letter-spacing: 0.04em;
}
.contact .locations
{
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 80px auto 50px auto;
}

.contact .location
{
  width: calc(25% - 40px);
  margin: 0 20px 30px 20px;
}
.contact .location p
{
  margin-bottom: 0;
  margin-top: .5em;
}

.contact .location p b
{
  font-size: 1.15em;
  margin-top: 1em;
}
.location img
{
  width: 60px;
  height: auto;
  margin-left: -10px;
}

.contact .section-header
{
  margin-top: 120px;
}

.contact .center-block
{
  text-align: center;
  margin: 50px auto 100px auto;
}

/* --------------------------- */
/* --------------------------- */


@media screen and  (min-width: 1367px)
{
.home-intro .intro-img {
    transform: scale(1.1) translateY(-20px);
}
}

/* --------------------------- */
/* --------------------------- */


@media screen and  (max-width: 1366px) and  (min-width: 1023px)  {
.container
{
  width: 1000px;
}
.menu ul {
  margin-right: 10px;
}

.home-intro .intro-img img
{
  margin: 50px 0 0 0 ;
}
.home-intro .description
{
  width: 95%;
}

.home-intro .br-desktop
{
  display: none;
}

.jp
{
  bottom: 3%;
    right: 7%;
    
}

/*--- principles ----------------*/

.principles .card
{
  margin: 10px;
  height: 300px;
}

.card .content {
  height: 35%;
}

.product-info
{
  max-width: 500px;
}
.product-info .br-desktop
{
  display: none;
}
.product-img {
  height: 550px;
  margin-right: -50px;
}
.products .p150g
{
  right:5%;
}

/* ----- dust ---------------*/

.dust .block
{
  width: 40%;
}

.dust .block .br-desktop
{
  display: none;
}

.dust .anim
{
  width: 55%;
  }
.dust .anim #dust-kill
{
  transform: scale(1.15) translate(20px, 0);
}

/* --- infographic  --------------*/

.recommend .pie-wrapper {
  margin: 100px auto 0px auto;
  transform: scale(.9);
}

.recommend {
  margin: 0px 20px;
}



/* ------ product page ------- */
/* ------ product intro ------- */

.product-intro .block 
{
  max-width: 400px;
}

/* ------ product highlight ------- */

.product-highlight .block
{
  margin-bottom: 80px;
}

.highlight-block .upsize
{
  font-size: 1em;
}
.highlight-block .highlight
{
  font-size: 1.2em;
}
.highlight-block  img
{
  margin-top: 80px;
}

.product-highlight .block .main-info
{
  margin-top: 15px;
}

.p-spray .product-intro .block
{
  max-width: 450px;
}

.p-pen .highlight-block img,
.p-hang .highlight-block img
{
  transform: scale(1.2);
  margin-top: 0;
}

.product-highlight .illus-container
{
  width: 100%;
}


.highlight-block #p-dust-kill
{
  transform: scale(1.1);
}


.p-hang .intro-img
{
  width: 35%;
}

/* --------product size------ */

.product-size .block img
{
  width: 250px;
}

/*----------- guide -------------*/

.guides .card-container .card
{
  width: 30%;
  
  height: auto;
}
.guides .card-container .card .card-inner
{
  display: block;
  width: 100%;
  padding-top: 100%;
  height: 0;
}
.guides .card-container .card img
{
  
}


.guides .small-card
{
  justify-content: center;
  flex-wrap: wrap;
}

.guides .small-card .card
{
  width: 280px;
  height: auto;
  padding-top: 0;

}

.guides .dynamic-card .card
{
  width: 230px;
}

/* ------ mechanism page ------- */
/* ------ mechanism intro ------- */

.mechanism-intro .block {
    max-width: 450px;
    margin: 120px auto 30px 20px;
}
.mechanism-intro .intro-img {
    margin-bottom: -200px;
}

.mechanism-intro .block h4 {
    font-size: 28pt;
}

/* ---------- clo2 ---------------- */

.clo2 .section-header
{
  margin-top: 120px;
  letter-spacing: 0.04em;
}
/*--- comparison ----------------*/

.comparison .section-header
{
  margin-top: 100px;
}

.comparison .card-group .step .img-container
{
  width: 180px;
  border-radius: 15px;
}

.comparison .card-group .step::after
{
  transform: translate(-50%, -50%) scale(1);
}

/* ------- uses --------------- */

.light-slider
{
  width: 640px;
  
}

.light-slider .title
{
  height: 80px;
}

.light-slider  .description
{
  font-size: 11pt;
  margin-bottom: 20px;
  margin-top: 10px;
}

.light-slider .title span
{
  font-size: 18pt;
  line-height: 1.2em;
}
.light-slider .slider
{
  width: calc(100% - 120px);
  margin-right: auto;
  margin-left: auto;
}
.slider .item
{
  width: 100%;
  height: 270px; 
}

.contact .location
{
  width: calc(25% - 20px);
  margin: 0 10px;
}


}

/* --------------------------- */
/* --------------------------- */

@media screen and  (max-width: 1024px) and  (min-width: 768px)  {
.container
{
  width: calc( 100% - 80px);
  margin-left: 40px;
  margin-right: 40px;
}
.center-block {
    margin: 50px 20px;
}
.menu ul {
  margin-right: 5px;
}

.showmenu .logo {
    display: none;}

.menu ul {
    float: left;
}

.home-intro .intro-img img
{
  width: 400px;
  margin: 50px 0 0 0 ;
}
.home-intro .intro-logo
{
  width: 250px;
}
.home-intro .br-desktop
  {
    display: none;
  }

  .jp
{
  bottom: 0%;
    right: 3%;
    
}
/*--- principles ----------------*/

.principles .card
{
  margin: 10px;
  height: 280px;
}

.card .content {
  height: 35%;
}

.principles .card img {
    width: auto;
    height: 80%;
    max-width: 100%;
}

/* ----- products ------------------- */


  .product-display
  {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
.product-info .br-desktop
{
  display: none;
}
.product-img {
  
  margin-right: -50px;
}
.products .p150g
{
  right:5%;
}

.products .detail p
{
  font-size: 10pt;
}
.product-img
  {
    height: 500px;
    margin: 150px 0 50px 0;
  }
  .product-info {
    width: 100%;
    max-width: 600px;
    margin: 0 10px;
  }
  .product-info h4
  {
    text-align: center;
  }
  .product-info .button
  {
    margin: 0 auto 100px auto;
  }
  .pen
  {
    width: 100%;
  }
  .pen .main-info
  {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

/* ----- dust ---------------*/

.dust .container
{
  flex-wrap: wrap;
    flex-direction: column-reverse;
}

.dust .block
{
  width: 100%;
  margin: 00px auto 50px auto;
  max-width: 600px;
}

.dust .block .br-desktop
{
  display: none;
}

.dust .block h4
{
  text-align: center;
}

.dust .anim
{
  width: 100%;
  margin: 80px auto 0px auto;
  max-width: 600px;

}

.dust .anim #dust-kill
{
  transform: scale(1.15);
}

/* ------- infographic ---------------- */

.recommend {
    margin: 0px 20px;
}
.virus-kill
{
    max-width: 300px;
    margin: 100px 30px;
}
.virus-kill .slogan .p1 {
  font-size: 72pt;
}
.virus-kill .slogan .p3 {
    font-size: 12pt;
}
.recommend .pie-wrapper
{
  transform: scale(.85);
  margin-top: 50px;
  margin-bottom: 0;
}
/* --------- company ----------*/
.company .block {
    max-width: 400px;
    margin: 100px 20px 80px 10px;
}

.company .illustration
{
  max-width: 400px;
}
.company .illustration::before
{
  left: 70%;
}

/* --------- video ----------*/

.list-video .video-item
{
  margin: 15px;
}
.list-video .video-item::after
{
  border-width: 18px 0 18px 30px;

}

.video .light-video 
{
  width: 640px;
  height: 360px;
}
/* ------ product page ------- */
/* ------ product intro ------- */

.product-intro .block 
{
  max-width: 50%; 
}

.p-hang .intro-img
{
  width: 35%;
}

/* ------ product highlight ------- */

.product-highlight .container
{
  flex-direction: column;
}
.product-highlight .block,
.product-highlight .highlight-block
{
  width: auto;
  max-width: 800px;
  margin: 100px 20px;
}

.product-highlight .section-header,
.product-highlight .sub-header
{
  letter-spacing: 0.04em;
}

.highlight-block .upsize
{
  font-size: 1.15em;
}
.highlight-block .highlight
{
  font-size: 1.3em;
}

.product-highlight .block
{
  margin-top: -100px;
}
.highlight-block  img
{
  margin-top: 0px;
}

.product-highlight .block .main-info
{
  margin-top: 15px;
}

.p-pen .product-highlight .container,
.p-hang .product-highlight .container
{
  flex-direction: row;
}
.p-pen .product-highlight .block,
.p-pen .product-highlight .highlight-block,
.p-hang .product-highlight .block,
.p-hang .product-highlight .highlight-block
{
  width: 45%;
  display: flex;

}
.p-pen .product-highlight .highlight-block img,
.p-hang .product-highlight .highlight-block img
{
  transform: scale(1.2);
}

.product-highlight .illus-container
{
  width: 100%;
}
.product-highlight .illus-container .illus-block
{
  margin: 30px;
}



/* --------product size------ */

.product-size .block img
{
  width: 250px;
}

.product-size .block,
.product-size .left-block,
.product-size .right-block
{
  align-items: flex-start;
    flex-direction: column;
    margin-bottom: 20px;
}
.product-size .left-block
{
  align-items: flex-end;
}

.product-size .left-block > div
{
  margin-right: 40px;
}
.product-size .right-block > div
{
  margin-left: 40px;
}
.product-size .block h4
{
  margin-top: 10px;
}

/* ---------- guides ----------*/

.guides .card-container .card
{
  width: 280px;
}
.guides .section-header {
    margin-bottom: 80px;
    margin-top: 100px;
}
.guides .mid-section-header {
    margin-bottom: 80px;
    margin-top: 70px;
}
.guides .small-card
{
  justify-content: center;
  flex-wrap: wrap;
}

.guides .small-card .card
{
  width: 280px;
  height: auto;
  padding-top: 0;

}

.guides .dynamic-card .line-break
{
  display: block;
}

.p-spray .guides .dynamic-card .card {
    width: 210px;
}
.p-spray .guides .dynamic-card .line-break
{
  display: none;
}


/* ------ mechanism page ------- */
/* ------ mechanism intro ------- */

.mechanism-intro .container
{
  flex-direction: column-reverse;
}
.mechanism-intro .block
{
  width: 100%;
  max-width: 640px;
  text-align: center;
  margin: -40px auto 50px auto;
}

.mechanism-intro .block h4
{
  margin-top: 10px;
}
.mechanism-intro .block .main-info
{
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.mechanism-intro .intro-img
{
  width: 70%;
  max-width: 500px;
  margin: 80px auto 10px auto;
}
/* ------ clo2 ------- */

.clo2 .section-header
{
  margin-top: 80px;
}

/*--- comparison ----------------*/

.comparison .section-header
{
  margin-top: 100px;
}


.comparison .card-group ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.comparison .card-group .step .img-container
{
  width: 200px;
  border-radius: 15px;
}

.comparison .card-group .step::after
{
  transform: translate(-50%, -50%) scale(1);
}
.comparison .line-break
{
  display: block;
}


/* ------- uses --------------- */

.light-slider
{
  width: 640px;
  
}

.light-slider .title
{
  height: 80px;
}

.light-slider  .description
{
  font-size: 11pt;
  margin-bottom: 20px;
  margin-top: 10px;
}

.light-slider .title span
{
  font-size: 18pt;
  line-height: 1.2em;
}
.light-slider .slider
{
  width: calc(100% - 120px);
  margin-right: auto;
  margin-left: auto;
}
.slider .item
{
  width: 100%;
  height: 270px; 
}


.contact .locations
{
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 80px auto 50px auto;
}

.contact .location
{
  width: calc(50% - 40px);
  max-width: 320px;
  
}
.location img
{
  width: 80px;
  height: auto;
  margin-left: -10px;
}


}

/* --------------------------- */
/* specific css for responsive menu */
@media screen and  (max-width: 960px) and  (min-width: 768px)  {
  .showmenu .logo
  {
    display: none;
  }
  .menu ul
  {
    float: left;
  }
  .menu ul li ul
  {
    left: -155px;
  }
  .home-intro .intro-img img
  {
    width: 350px;
    margin: 50px 0 0 0 ;
  }

/*----intro-------*/

.home-intro .container
{
  flex-direction: column-reverse;
  height: auto;
}

.home-intro .container::before,
.product-intro .container::before
{
  left: 70%;
  transform: translate(-50%, -50%) scale(.8);
}

.home-intro .intro-img img
{
  width: 420px;
  margin: 80px 0 0 0;
}

.home-intro .intro-logo
{
  display: none;
}

.home-intro .block
{
  width: 100%;
  margin-top: 0;
  margin-left: 0;
  text-align: center;
}

.home-intro .block .custom-name
{
  display: block;
  font-size: 1.6em;
  line-height: 1.5em; 
}

.home-intro .description {
    margin-top: 20px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.home-intro .button
{
  margin: 50px auto 30px auto;
}

.jp
{
  bottom: 0%;
    right: 7%;
    transform: translate(-50%, -50%) rotate(10deg) scale(.9);
}




  .footer-products li, .footer-menu li
  {
    margin: 10px 12px;
  }
  .footer-menu li::after
  {
    right: -12px;
  }
  .products .products-nav
  {
    margin-top: -65px;
  }
  .products .products-nav   .item
  {
    width: 90px;
    height: 90px;
    margin:20px;

  }
  .products .products-nav .item:last-child .name
  {
    width: 110%;
  }
    .products .products-nav .item .name
  {
    bottom: -100%;
    font-size: 90%;
  }
  .products .products-nav .item:hover .name,
  .products .products-nav .active-item .name
  {
    bottom: -115%;
  }

  /* --------- infographic  ----------*/
  .infographic .container
  {
    flex-direction: column;
  }
  .virus-kill {
    margin-left: 100px;
  }
  .recommend .pie-wrapper {
    transform: scale(.85);
    margin: -280px -30px 0px auto;
    z-index: -1;
  }
  .recommend .block
  {
    max-width: 600px;
  }

  /* --------- company ----------*/
  .company .container
  {
    flex-direction: column-reverse;
  }
  .company::before
  {
    display: none;
  }
  .company .company-logo
  {
    display: none;
  }
  .company .block {
    width: 100%;
    max-width: 600px;
    margin: 0 10px 80px 10px;
  }
  .company .block .button
  {
    margin-left: auto;
    margin-right: auto;
  }
  .company .illustration {
    margin-bottom: 50px;
  }
  .company .illustration::before
  {
    left: 50%;top:-10%;
    width: 700px;
    height: 700px;
  }

/* ------ product page ------- */
/* ------ product intro ------- */
 
.product-intro .container
{
  flex-direction: column-reverse;
}
.product-intro .block
{
  margin: -80px auto 50px auto;
  max-width: 800px;
}
.product-intro .block h4,
.product-intro .block .main-info
{
  text-align: center;
}

.product-intro .block .note
{
  margin-top: 50px;
}


#p-pen-anim,
#p-hang-anim
{
  transform: scale(1.1);
}

.p-pen .product-highlight .container,
.p-hang .product-highlight .container
{
  display: flex;
  flex-direction: column-reverse;
}

 
.p-pen .product-highlight .block h4.br-desktop,
.p-hang .product-highlight .block h4.br-desktop
{
  display: none;
} 

.p-pen .product-highlight .block,
.p-hang .product-highlight .block
{
  width: 80%;
  max-width: 800px;
  margin: 50px auto;
  text-align: center;
  display: block;
}


.p-hang .intro-img
{
  width: 45%; margin-top: 150px;
}

.p-pen .product-highlight .highlight-block,
.p-hang .product-highlight .highlight-block
{
  margin: -80px auto -50px auto;
  width: 100%;
  max-width: 800px;
}
.p-pen .product-highlight .highlight-block img,
.p-hang .product-highlight .highlight-block img
{
  transform: none;
}

.p-pen .product-highlight div.br-mobile,
.p-hang .product-highlight div.br-mobile
{
  display: block; 
  margin-top: 80px;
}

.product-highlight .illus-container .illus-block
{
  margin: 20px;
}

.p-spray .product-highlight .br-desktop
{
  display: none;
}

.p-spray .guides .dynamic-card .card {
    width: 210px;
}
.p-spray .guides .dynamic-card .line-break
{
  display: none;
}
/* ----------guides----------- */

.guides .card .title
{
  font-size: 14pt;
}

/* ------------ uses ----------- */


.gallery .container {
  width: calc(100% - 40px);
  margin-left: 20px;
  margin-right: 20px;
}

.gallery .button-group
{
  width: 90%;
  max-width: 600px;
}

.gallery .grid .item {
    
    width: 340px;
    height: 340px;
  }
.gallery .grid .item .img-container {
    
    width: 324px;
    height: 250px;
  }

.slider .close {
    transform: translate(50%, -200%);
}

/* -------taiko ------------- */


.overview .center-block
{
  max-width: 600px;
}

.overview .block-container
{
  flex-direction: column;

}
.overview .block-container .block
{
  width: calc(100% - 40px);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.business-map .container
{
  flex-direction: column;
}
.business-map .container .block
{
  max-width: 600px;
  width: 100%;
}

.business-map img
{
  margin:-20px  auto 80px auto;
  width: 100%;
  max-width: 600px;
}

.taiko-products .upsize
{
  font-size: 1.2em;
}

.taiko-products .section-header
{
  margin-top: 100px;
}

.taiko-cleverin .p-info {
    margin-top: -70px;
}
.taiko-seirogan::before
{
  width: 100%;
  height: 0;
  padding-top: 100%;
  transform: translate(-50%, -50%) scale(1.1);
  left: 20%;
}
.taiko-cleverin::before
{
  width: 100%;
  height: 0;
  padding-top: 100%;
  transform: translate(-50%, -50%) scale(1.2);
}


}

/* --------------------------- */
/* ----- mobile css ---------- */
@media screen and  (min-width: 768px) {
.menu > .container > .primary-menu > ul > .lang-cont
{
  display: none!important;
}
}

@media screen and  (min-width: 768px) and (max-width: 840px) {

.menu
{
	font-size: 10.5pt;
}

}

@media screen and  (max-width: 767px) {

.scrolltop
{
 bottom: 40px;
 right: 40px;
}

.showmenu .scrolltop
{
  display: none;
}
.menu > .container > .primary-menu > ul > .lang-cont
{
  display: none!important;
}
/*
.lang-cont
{
	right: 15px;
	bottom: 15px;
}

.lang-cont:hover
{
	width: 50px;
	height: 50px;
}

.lang-cont-expand
{
	height: 200px!important;
}

.lang-cont:hover::before
{
	top: 0px;
}

.lang-cont-expand::before
{
	top: -50px!important;
}

.lang-cont:hover .lang-group 
{
    transform: translate(-50%, 200%) rotate(90deg);
}
.lang-cont-expand .lang-group
{
	transform: translate(-50%, -50%) rotate(90deg)!important;
}
.lang-cont-up
{
	bottom: 80px;
}

/*
.lang-cont,
.lang-cont:hover {
    width: calc(100% - 80px);
    height: 50px;
    display: block;
    background: none;
    border-radius: 50px;
    position: relative;
    right: auto;
    bottom: auto;
    margin: 40px 40px -60px 40px;
    webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    transition: all 300ms ease-in-out;
    opacity: 1;
    text-align: center;
  }
  .lang-cont::before
  {
    display: none;
  }
.lang-cont:hover .lang-group,
.lang-group {
    
    transform: translate(-50%, -50%) rotate(0deg);
}
*/

.bubblebg::before {
    width: 300px;
    height: 300px;
    top: -140px;
    left: -70px;
}

.bubblebg::after {
    width: 300px;
    height: 300px;
    bottom: -140px;
    right: -60px;
}

.container
{
  width: calc(100% - 40px);
  margin-right: 20px;
  margin-left: 20px;
}

.lightbox .close
{
 margin: 25px 28px 25px 25px; 
}
.br-desktop
{
  display: none;
}

.br-mobile
{
  display: block;
}

.section-header
{
  margin-top: 80px;
  font-size: 17pt;
}

.sub-header
{
  font-size: 12pt;
}

.card-container
{
  flex-wrap: wrap;
  
}

.card-container .card
{
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  border-radius: 15px;
}

.card .title
{
  font-size: 14pt;
}


section.menu::before
{
  position: fixed;
  width: 100%;
  height: 100%;
  left: -100%;
  top: 0;

}

section.showmenu::before
{
  top: 0;
  left:0;
}

.menu .logo {
  margin: 20px 20px 20px 0;
}

.menu .burger
{
  margin: 25px 9px 0 0 ;
}


.menu ul
{
  position: fixed;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}
.menu ul li::after
{
  display: none;
}

.menu ul li::before
{
  content: "";
  display: none;
  width: 100%;
  height: 1px;
  background: #A7B6F5;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
}
.menu ul li
{
  display: block;
  width: calc(100% - 80px);
  margin: 16px 40px;
  text-align: center;
  padding: 0;
  font-size: 14pt;
  overflow: hidden;
  cursor: default;
}

.menu ul li:last-child
{
  margin-bottom: 0;
}
.menu ul li span
{
  position: relative;
  font-weight: bold;
}
.menu ul li span::before
{
  content: "";
  position: absolute;
  width: 200px;
  height: 1px;
  background: #A7B6F5;
  top:50%;
  left: -220px;
  z-index: -1;
  opacity: 00%;
  transition: all 500ms ease-in-out;
  transition-delay: 300ms;
}
.menu ul li span::after
{
  content: "";
  position: absolute;
  width: 200px;
  height: 1px;
  background: #A7B6F5;
  top:50%;
  right: -220px;
  z-index: -1;
  opacity: 00%;
  transition: all 500ms ease-in-out;
  transition-delay: 300ms;
}

.showmenu ul li span::before,
.showmenu ul li span::after
{
  opacity: 50%;
}

.menu ul li ul
{
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  opacity: 1;
  z-index: 3;
  margin: 0;
  transform: none;
  background: none;
}

.menu ul li ul::before
{
  display: none;
}
.menu ul li ul li
{
  display: block;
  width: 330px;
  height: auto;
  
  margin: 16px auto;
  text-align: left;
}
.menu ul li ul li span
{
  font-weight: normal;
}

.menu ul li ul li:last-child
{
  margin-bottom: 0;
}
.menu ul li ul li span::before,
.menu ul li ul li span::after
{
  display: none;
}

.menu ul li ul li .menu-icon
{
  margin:0 15px -3px 25%;
}

/*----intro-------*/

.home-intro .container
{
  flex-direction: column-reverse;
  height: auto;
}

.home-intro .container::before,
.product-intro .container::before
{
  left: 70%;
  transform: translate(-50%, -50%) scale(.6);
}

.home-intro .intro-img img
{
  width: 320px;
  margin: 80px 0 0 0;
}

.home-intro .intro-logo
{
  display: none;
}

.home-intro .block
{
  width: 100%;
  margin-top: 0;
  margin-left: 0;
  text-align: center;
}

.home-intro .block .custom-name
{
  display: block;
  font-size: 1.6em;
  line-height: 1.5em;
}

.home-intro .description {
    margin-top: 20px;
}

.home-intro .button
{
  margin: 50px auto 30px auto;
}

.jp
{
  bottom: -2%;
    right: -6%;
    transform: translate(-50%, -50%) rotate(10deg) scale(.9);
}

/*----footer-------------------*/

.footer-products li
{
  display: inline-block;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  margin: 8px;
  position: relative;
}

.footer-products li .menu-icon
{
  fill: #3C64D1;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}

.footer-products li:hover .menu-icon
{
  transform: translate(-50%, -50%) scale(1.1) rotate(-15deg);
}

.footer-products li span
{
  display: none;
}

.footer-menu
{
  margin-top: 20px;
}
.footer-menu li
{
  margin: 6px 25px;
}

.footer-menu li:nth-child(2)::after
{
  display: none;
}

.copyrights .bottom-logo
{
  float: none;
  margin-right: auto;
  margin-left: auto;
  height: 20px;
}
.copyrights span
{
  float: none;
  font-size: 8.5pt;
  text-align: center;
  line-height: 20px;
  margin-top: 5px;
}

/* ---  principles ------------*/

.principles .sub-header
{
  font-size: 12pt;
}

.principles .card-container
{
  margin-top: 50px;
  margin-bottom: 50px;
}

.principles .card
{
  margin: 10px 0;
  height: 250px;
}

.principles .card .content
{
  height: 35%;
}

.principles .card img
{
  width: auto;
  height: 110%;
  margin-top: -20px;
}

.principles .random001
{
  font-size: 10pt;
}

.principles .random001 .p01
{
  margin-left: 0;
  width: 27%;
  text-align: right;
}

.principles .random001 .p02
{
  margin-right: 0;
  margin-left: 18px;
}

.principles .random001 .p02::before
{
  font-size: 45pt;
}

.tab
{
  font-size: 8pt;
  border-radius: 15px;
  margin: 30px auto 80px auto;
  max-width: 390px;
  
}

.tab th, .tab td
{
  line-height: 30px;

  text-overflow: ellipsis;
}

.tab thead th
{
  line-height: 1.6em;
  padding: 10px 2px 8px 2px;
}

.tab th:not(:first-child)
{
  padding: 10px 10px;
}

.tab th:last-child,
.tab td:last-child
{
  
    
    
}

.tab th:first-child,
.tab td:first-child
{
  width: 30%;
  
}

/**/

.tab img
{
  height: 40px;
}

.tab thead
{
  background: #5278BF;
  color: #fff;
}
.tab thead th:nth-child(2n)
{
  background: #3460B4;
}


.tab tbody tr 
{
  background: #E6EBF6;
}

.tab tbody tr td:nth-child(2n)
{
  background: #EAEEF7;
}

.tab tbody tr:nth-child(2n)
{
  background: #DAE2F1;
}

.tab tbody tr:nth-child(2n) td:nth-child(2n)
{
  background: #E0E6F3;
}

.tab thead tr th:first-child,
.tab tbody tr td:first-child
{
  background: #063CA3;
  color: #fff;
}
.tab tbody tr:nth-child(2n+1) td:first-child
{
  background: #2F56B1;
}

/* ------ certificate --------*/

.certificate .dot-bg::before
{
  transform: rotate(15deg) scale(0.8);
  right: -130px;
  top: -50px;

}

.certificate .sub-header
{
  margin-top: 25px;
  text-align: center;
  font-size: 12pt;
  font-weight: bold;
}

.certificate .center-block
{
  font-size: 10pt;
  margin-bottom: 80px;
  text-align: justify;
  margin: 50px 20px 80px 20px;
}

.certificate .light-text
{
  text-align: center;
  font-size: 10pt;

}

/*--- home products --------*/

.products .products-nav
  {
    width: 60px;
    height: 100vh;
    align-content: center;
    flex-wrap: wrap;
    margin: 0;
    position: absolute;
    top: 0;
    left: 10px;
  }
  .products .products-nav .item
  {
    width: 50px;
    height: 50px;
    margin:15px 0;

  }
  .products .products-nav .item .name
  {
    display: none;
  }
  .products .products-nav .item::before
  {
    bottom: 50%;

    left: 100%;
    transform: translate(-50%, 50%);
  }
  .products .products-nav .item:hover::before, 
  .products .products-nav .active-item::before
  {
    bottom: 50%; 
    left: 100%;
    width: 12px;
    height: 12px;
  }
  .products .products-nav .item:hover, .products .products-nav .active-item {
    transform: scale(1.10);
  }

 .product-display
  {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    width: calc(100% - 105px);
    margin: 0 20px 0 auto;
  }
.product-info .br-desktop
{
  display: none;
}
.product-info h4 
{
  text-align: left;
  font-size: 16pt;
  line-height: 1.4em;
  margin-bottom: 30px;
}

.products .p150g
{
  right: 0%;
  bottom: -8%;
}
.products .p60g
{
  top: 0%;
  left: 10%;
  width: 140px;
}

.products .detail p
{
  font-size: 9pt;
}
  .product-img
  {
    height: 400px;
    width: calc(100% - 0px);
    max-width: 350px;
    margin: 80px auto 50px auto;
  }
  .product-img .img-container
  {
    width: 100%;
    height: 100%;
  }
  .product-img .img-container img {
    width: 90%;
    height: auto;
    display: block;
  }
  .c-put img
  {
    width: 80%;
    margin: 0 auto 0 auto;
  }
  .product-info {
    width: calc(100% - 0px);
    margin: 10px auto 0 auto;

  }
 
  .product-info .button
  {
    margin: 0 auto 100px auto;
  }

  .product-bg01
  {
    width: 300px;
    height: 300px;
  }

  .product-bg02
  {
    width: 450px;
    height: 450px;
  }

  .product-bg03
  {
    width: 600px;
    height: 600px;
  }
  .pen, 
  .hang,
  .spray,
  .minispray
  {
    width: 100%;
    margin-top: -20px;
  }
  .product-img .hang-img,
  .product-img .spray-img,
  .product-img .minispray-img
  {
    margin-left: -20px;
  }
  
  .pen .main-info
  {
    text-align: left;
    margin-left: auto;
    width: 100%;
    margin-right: auto;
  }
  .product-img .pen-img img
  {
    width: auto;
    height: 90%;
    margin-left: auto;
    margin-right:auto;
  }
  .product-info .upsize {
    font-size: 1.2em;
  }
  .product-img .hang-img img,
  .product-img .spray-img img
  {
    width: auto;
    height: 110%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .product-img .minispray-img img
  {
    height: 100%;
    width: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
  }

/* ----- dust ---------------*/

.dust .container
{
  flex-wrap: nowrap;
  flex-direction: column-reverse;
}

.dust .block
{
  width: 100%;
  margin: 00px auto 50px auto;
  max-width: 600px;
}

.dust .block .br-desktop
{
  display: none;
}

.dust .block h4
{
  text-align: center;
}

.dust .anim
{
  width: 100%;
  margin: 50px auto 0px auto;
  max-width: 600px;
  overflow: hidden;
  display: initial;
}

.dust .anim img
{
  width: 121%;
  margin-left: 0;
}
.dust .anim #dust-kill
{
  width: 121%;
  margin-left: -10%;
}

/* ------- infographic ---------------- */

.infographic .container {
  flex-wrap: nowrap;
  flex-direction: column;
}

.virus-kill {
    width: 100%;
    max-width: auto;
    margin: 100px auto 50px auto;
}
.virus-kill .slogan .p1
{
  font-size: 72px;
}

.virus-kill .img-container img
{
  width: 65%
}
.virus-kill .product-bg03
{
  width: 360px;
  height: 360px;
}
.virus-kill .product-bg02
{
  width: 260px;
  height: 260px;
}
.virus-kill .product-bg01
{
  width: 160px;
  height: 160px;
}

.recommend
{
  margin: 0;
}
.recommend .pie-wrapper {
    position: relative;
    
    margin: 0px auto;
    transform: scale(.8);
    left: -10px;
}
.fullnote {
    width: calc(100% - 00px);
    padding: 50px 0;
}

/* --------- company ----------*/
  .company::before {
      width: 500px;
      height: 500px;
      top: -200px;
      left: 50%;
      transform:translate(-50%, 0); 
      display: none;
  }
  .company .container
  {
    flex-direction: column-reverse;
  }
  .company .company-logo
  {
    display: none;
  }
  .company .block {
    width: 100%;
    max-width: 600px;
    margin: 0 10px 80px 10px;
  }
  .company .block .button
  {
    margin-left: auto;
    margin-right: auto;
  }
  .company .illustration {
    margin-bottom: 30px;
    margin-top: 80px;
    width: 85%;
  }
  .company .illustration::before
  {
    left: 50%;top:-10%;
    width: 500px;
    height: 500px;
  }
  /* --------- video ----------*/
  .list-video
  {
    flex-direction: column;
  }
  .list-video .video-item
  {
    width: calc(100% - 6px);
    max-width: 500px;
    margin: 15px auto;
  }
  .video .center-block
  {
    margin: 30px 20px 50px 20px;
    font-size: 10pt;
  }
  .video .center-block .light-text
  {
    font-size: 9pt;
  }

  .video .light-video  
  {
    width: 100%;
    height: 56.25vw;;
  }
  .video .close
  {
    transform: none;
  }

  .video .light-video .close
  {
    display: none;
  }

/* ------ product page ------- */
/* ------ product intro ------- */
 
.product-intro .container
{
  flex-direction: column-reverse;
}
.product-intro .block
{
  margin: -50px auto 30px auto;
  max-width: 640px;
}
.product-intro .block h4,
.product-intro .block .main-info
{
  text-align: center;
}
.product-intro .block h4
{
  font-size: 20pt;
}

.product-intro .block .upsize
{
  margin-bottom: 0.8em;
}

.product-intro .block .note
{
  margin-top: 50px;
}
.highlight-block #p-dust-kill {
    transform: scale(1.2) translate(-5px, 0px);
}

.p-pen .block li,
.p-hang .block li
{
  list-style: none;
  text-align: center;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.product-intro .intro-img
{
  width: 75%;
  max-width: 350px;
}

.p-hang .intro-img
{
  width: 70%;
  margin-top: 100px;
}
.p-spray .intro-img
{
  width: 35%;
  margin-top: 150px;
}


.p-minispray .intro-img
{
  width: 25%;
  margin-top: 150px;
}

/* ------ product highlight ------- */

.product-highlight .container
{
  flex-direction: column;
}
.product-highlight .block,
.product-highlight .highlight-block
{
  width: auto;
  max-width: 800px;
  margin: 60px auto 50px auto;
}
.product-highlight .block
{
  margin-top: -30px;
  max-width: 640px;
}
.product-highlight .highlight-block
{
  max-width: 500px;
}

.highlight-block .upsize
{
  font-size: 1em;
}
.highlight-block .highlight
{
  font-size: 1.2em;
}

.highlight-block h4,
.product-highlight .block h4
{
  font-size: 18pt;
}

.p-hang .highlight-block h4,
.p-hang .product-highlight .block h4
{
  font-size: 17pt;
}
.highlight-block  img
{
  margin-top: 0px;
}

.product-highlight .block .main-info
{
  margin-top: 15px;
}


#p-pen-anim,
#p-hang-anim
{
  transform: scale(1.3);
}


.p-pen .product-highlight .container,
.p-hang .product-highlight .container
{
  display: flex;
  flex-direction: column-reverse;
}


.p-pen .product-highlight .block h4.br-desktop,
.p-hang .product-highlight .block h4.br-desktop
{
  display: none;
} 

.p-pen .product-highlight .block,
.p-hang .product-highlight .block
{
  width: 100%;
  max-width: 800px;
  margin: 50px auto;
  text-align: center;
  display: block;
}

.p-pen .product-highlight .highlight-block,
.p-hang .product-highlight .highlight-block
{
  margin: -50px auto -20px auto;
  width: 100%;
  max-width: 800px;
}
.p-pen .product-highlight .highlight-block img,
.p-hang .product-highlight .highlight-block img
{
  transform: scale(1.2);
}

.p-pen .product-highlight div.br-mobile,
.p-hang .product-highlight div.br-mobile
{
  display: block; 
  margin-top: 40px;
}

.p-spray .product-highlight .sub-header
{
  font-size: 11pt;
  max-width: 500px;
}
.p-spray .product-highlight .block
{
  max-width: 640px;
}

.product-highlight .illus-container
{
  width: 100%;
  flex-direction: column;
}
.product-highlight .illus-container .illus-block
{
  width: 100%;
  max-width: 460px;
}
.product-highlight .illus-container .illus-block:nth-child(2)
{
  margin-top: 0;
}


/* --------product size------ */

.product-size .block img
{
  width: 100%;
  max-width: 250px;

}
.product-size .container
{
  margin: 0;
  width: 100%;
}

.product-size .block,
.product-size .left-block,
.product-size .right-block
{
  align-items: center;
    flex-direction: column;
    margin-bottom: 20px;
    width: calc( 50% - 20px);
    margin-left: 10px;
    margin-right: 10px;
}


.product-size .left-block > div
{
  margin: 20px auto;
  text-align: center;
}
.product-size .right-block > div
{
  margin: 20px auto;
  text-align: center;
}
.product-size .block h4
{
  margin-top: 10px;
  font-size: 18pt;
}


/*----------- guide -------------*/

.separator
{
  display: none;
}

.p-spray .separator
{
  display: block;
}

.guides .card-container
{
  margin-bottom: 50px;
}

.guide-container
{
  flex-direction: column;
}
.guides .section-header {
    margin-bottom: 60px;
}
.guides .mid-section-header {
    margin-top: 70px;
}
.guides .mid-section-header-2 {
    margin-bottom: 0;
}
.guides .sub-header {
  font-size: 14pt;
  margin-bottom: 50px;
}

.guides .single-sub-header
{
  margin-top: 65px;
}

.guide-container .guide-block
{
  width: auto;
  max-width: 640px;
  margin: 0 auto;
}

.guide-container .guide-block h4
{
  margin-top: 0.6em;
  font-size: 16pt;
}

.guides .card-container .card
{
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.guides .card-container .card .card-inner
{
  padding-top: 70%;
}
.guides .card-container .card .content
{
  height: 35%;  
}
.guides .card-container .card img
{
  width: 80%;
  top: 43%;
}

.small-card .card .info
{
  width: calc(100% - 60px);
  margin-left: 30px;
  margin-right: 30px;
}

.guides .counter .card
{
  margin-top: 30px;
}

.p-spray .guides .card-container .card img {
  width: 75%;
}

.p-minispray .random004  ul
{
  margin-bottom: -10px;
}


/* ------ mechanism page ------- */
/* ------ mechanism intro ------- */

.mechanism-intro .container
{
  flex-direction: column-reverse;
}
.mechanism-intro .block
{
  width: 100%;
  max-width: 640px;
  text-align: center;
  margin: -20px auto 60px auto;
}

.mechanism-intro .block h4
{
  margin-top: 10px;
  font-size: 20pt;
}
.mechanism-intro .block .main-info
{
  width: 100%;
  font-size: 14pt;
}
.mechanism-intro .intro-img
{
  width: 100%;
  max-width: 500px;
  margin: 150px auto 10px auto;
}
/* ------ clo2 ------- */

.clo2 .section-header
{
  margin-top: 90px;
}

.clo2 .container
{
  position: relative;
}

.clo2 .center-block
{
  flex-direction: column;
  margin-bottom: 50px;
  margin-top: 0px;
}
.clo2 .center-block p
{
  text-align: center;
  margin: 20px 0;
}
.clo2 .center-block img
{
  margin: 0;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
/*--- mechanism animation ----------------*/

.mechanism-anim .center-block
{
  margin-bottom: 50px;
}

.mechanism-anim .center-block img
{
  width: 100%;
  display: block;
  margin: auto;
}

.mechanism-anim .center-block .mechanism-sub
{
  font-family: uvnvan;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.05em;
  font-size: 14pt;
  margin-top: 0px;
  width: 80%;
  margin: 0 auto;
}

/*--- comparison ----------------*/

.comparison .section-header
{
  margin-top: 80px;
}

.comparison .card-group
{
 margin: 80px auto; 
 max-width: 600px;
}

.comparison .card-group:last-child {
    margin: -20px auto 80px auto;
}
.comparison .card-group .group-title,
.comparison .card-group .group-subtitle
{
  width: calc(100% - 40px);
  margin-left: 20px;
  margin-right: 20px;
  display: block;
}

.comparison .card-group .group-title {
    font-size: 16pt;
    margin-top: 20px;
}

.comparison .card-group ul {
    display: flex;
    justify-content: center;
    width: calc(100% - 20px);
    flex-wrap: wrap;
    margin: 30px auto -15px auto;
    counter-reset: step;
    flex-direction: column;
    max-width: 500px;
}

.comparison .card-group .step
{
  display: flex;
  justify-content: flex-start;
  width: calc(100% - 20px);
  height: auto;
  align-items: center;
}

.comparison .card-group .step::after
{
  display: none;
}
.comparison .card-group .step .img-container
{
  width: 90px;
  height: 90px;
  border-radius: 15px;
  margin: 0 0 0 2px;

}
.comparison .card-group .step .img-container img
{
  transform: scale(1.3) translateY(7%);
}
.comparison .card-group .step .step-description
{
  display: block;
  width: calc(100% - 110px);
  margin: 10px 10px 10px 15px;
  text-align: left;
}

/*--- uses ----------------*/

.menubg {
    height: 75px;
}

.gallery .section-header {
    font-size: 18pt;
}
.gallery .button-group .button {
    border: #1037A3 2.5px solid;
    height: 32px;
    
    padding: 0 12px;
    margin: 5px 1px;
}
.gallery .button-group .button span {
    line-height: 32px;
    font-size: 10pt;
}

.gallery .grid
{
  margin-top: 70px;
}

.gallery .grid .item
{
  width: 100%;    
  max-width: 400px;
  height: 320px;    
  margin: 10px auto;
  border-radius: 15px;
}
.gallery .grid .item .img-container {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    width: calc(100% - 12px);
    height: 240px;
    margin: 6px;
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
}

.gallery .grid .item .img-container img
{
  height: 110%;
}
.gallery .grid .item .company-name {
  height: 65px;
}


.light-slider
{
  width: calc(100% - 40px);
  
  max-width: 480px;

}

.light-slider .title
{
  height: 70px;
  width: calc(100% - 40px);
  margin: 10px 20px 10px 20px;
}

.light-slider  .description
{
  font-size: 10pt;
  width: calc(100% - 40px);
  margin: 10px auto 20px auto;
}
  
.light-slider .title span
{
  font-size: 16pt;
  line-height: 1.4em;
}
.light-slider .slider
{
  width: calc(100% - 40px);
  max-width: 360px;
  margin: 10px auto;
}
.slider .item
{
  width: 100%;
  height: 200px; 
}
.light-slider .slider .owl-carousel .owl-nav button.owl-next,
.light-slider .slider .owl-carousel .owl-nav button.owl-prev
{
  width: 40px;
  height: 40px;
  margin: 0 5px;
}
.slider .close 
{
  transform: translate(0);
}
.light-slider .close
{
  display: none;
}



/* -------taiko ------------- */


.taiko-intro img 
{
    width: 90%;
    margin: 200px auto -20px auto;
    max-width: 500px;
}

.overview .center-block
{
      margin: 120px auto 50px auto;
      max-width: 460px;
}

.overview .block-container
{
  flex-direction: column;

}
.overview .block-container .block
{
  width: 100%;
  max-width: 460px;
  margin: 10px auto 0 auto;
}

.overview .block-container .block h4
{
  text-align: center;
  margin-bottom: 40px;
}

.overview .table-note
{
  
  text-align: right;
}

.overview table td
{
  border-bottom: 1px solid rgba(6,60,163, 0.2);
  padding: 8px 2px;
}
.overview table tr:last-child td
{
  border: none;
}

.overview .dot-bg::before,
.overview .dot-bg::after
{
  width: 60px;
  height: 60px;
}


.business-map .container
{
  flex-direction: column;
  text-align: center;
}
.business-map .container .block
{
  max-width: 460px;
  width: 100%;
}
.business-map .block h4
{
  margin-top: 20px;
}

.business-map img
{
  margin:-20px  auto 80px auto;
  width: 100%;
  max-width: 460px;
}

.business-map ul 
{
  text-align: left;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.business-map ul li
{
  width: calc(50% - 20px);
}


.taiko-products .upsize,
.contact .upsize
{
  font-size: 20pt;
}

.taiko-products .section-header
{
  margin-top: 80px;
}

.product-container
{
  flex-direction: column-reverse;
}


.taiko-products .block {
    width: 100%;
    max-width: 460px;
    margin: 20px auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    
}

.block .p-info .name
{
  font-size: 18pt;
}
.block .p-info .description
{
  font-size: 10pt;
}

.taiko-products .product-container {
   
    margin: 80px auto 50px auto;
  }

.taiko-products .taiko-seirogan
{
  flex-direction: row-reverse;
  text-align: right;
}
.taiko-products .taiko-seirogan img 
{
  width: 50%;
  margin: auto 12px auto 14px;

}

.taiko-products .taiko-cleverin img 
{
  width: 50%;
  margin: auto 14px auto 12px;
}
.taiko-products .taiko-cleverin
{
  text-align: left;
  margin-bottom: 0;
}
.taiko-cleverin .p-info {
    margin-top: -70px;
}
.taiko-seirogan::before
{
  width: 50%;
    height: 0;
    padding-top: 50%;
    transform: translate(-50%, -50%) scale(1.1);
    left: 60%;
}
.taiko-cleverin::before {
    width: 56%;
    height: 0;
    padding-top: 55%;
    transform: translate(-50%, -50%) scale(1.2);
    top: 20%;
    left: 50%;
}


.contact .locations
{
  
  justify-content: center;
  flex-direction: column;
  margin: 40px auto 50px auto;
}

.contact .location
{
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin: 20px auto;
}
.location img
{
  width: 60px;
  height: auto;
  margin: 0 15px 0 0px;
}

.contact .center-block
{
  text-align: left;
  max-width: 460px;
  margin-bottom: 70px;
}

.contact .section-header
{
  margin-top: 80px;
}

}









