@import url(./css/fonts.css);

:root {
  --primary: #e5002d;
  --secondary: #22303f;
  --light: #f5f5f5;
  --dark: #26231f;
  --bs-family: "Graphik", sans-serif;
  --switzer-family: 'Switzer', sans-serif;
  --graphik-family: 'Graphik Super', sans-serif;
}

body {
  font-family: var(--bs-family);
  padding: 0;
  margin: 0;
  font-size: 15px;
  color: var(--dark);
  background-color: #f3f3f3;
}
p {
  font-size: 20px;
  line-height: 33px;
}
.container {
  max-width: 1400px;
}
.container-sm {
  max-width: 1414px;
}
.container-lg {
  max-width: 1614px;
}
.btn-common {
  border-right: 4px solid var(--secondary);
  padding-right: 4px;
  text-decoration: none;
  display: inline-block;
  transition: all ease-in-out 0.3s 0s;
}
.btn-common span {
  background: var(--primary);
  font-size: 21px;
  color: var(--bs-white);
  padding: 23px 43px;
  display: inline-block;
  transition: all ease-in-out 0.3s 0s;
  font-weight: 500;
}
.btn-common:hover {
  border-color: var(--primary);
  padding-right: 0;
}
.btn-common:hover span {
  background: var(--secondary);
  color: var(--bs-white);
}
.secondary-btn {
  border-color: var(--secondary);
}
.secondary-btn span {
  background: var(--secondary);
  color: var(--bs-white);
}
img {
  max-width: 100%;
}


/* ================================================ */

/* Header css Start */
header {
  background: var(--bs-white);
  width: 100%;
  border-top: 5px solid var(--primary);
}
.topStrip {
  overflow: hidden;
}
.topStrip ul {
  float: right;
  padding: 0;
  margin: 0;
  display: flex;
  list-style: none;
  position: relative;
}
.topStrip ul:after{
  content: "";
  width: 2000%;
  height: 100%;
  position: absolute;
  right: -1950%;
  background: var(--primary);
}
.topStrip ul:before{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left:0;
  background: var(--primary);
  transform: skew(30deg);
}
.topStrip ul li {
  padding:1px 0 6px 46px;
  position: relative;
  z-index: 1;
}
.topStrip ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  display: flex;
  align-items: center;
  font-weight: 500
}

.navbar {
  width: 100%;
  padding: 0;
  margin: 22px 0;
  flex: 1;
}
.navbar-nav {
  width: 100%;
}
.navbar-nav ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  justify-content:flex-end;
  width: 100%;
  align-items: center;
  gap: 50px;
}
.navbar-expand-lg .navbar-nav ul li.nav-link{
	padding: 0;
}
.navbar-nav ul li a {
  color: var(--bs-black);
  font-size: 20px;
  margin: 0;
  font-weight: 500;
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  padding-right: var(--bs-navbar-nav-link-padding-x);
  padding-left: var(--bs-navbar-nav-link-padding-x);
  text-decoration: none;
}

.navbar-nav .nav-link.active a, .nav-link a:focus, .nav-link a:hover {
  color: var(--primary);
}
.navbar-nav ul li.contact-btn  a{
  border: 2px solid var(--primary);
  text-decoration: none;
  padding: 12px 48px;
  transition: all ease-in-out 0.3s 0s;
  display: block;
}
.navbar-nav ul li.contact-btn:hover  a{
  background: var(--primary);
  color: var(--bs-white);
}

/* Header css end */
.homeSliderOuter {
  position: relative;
}
.banner img.w-100 {
  min-height: 350px;
  object-fit: cover;
}
.bannerCaption {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  height: 100%;
  display: flex;
  align-items: flex-end;
  text-align: center;
  padding-bottom: 320px;
}
.bannerCaption h1 {
  color: var(--bs-white);
  font-size: 56px;
  margin: 0;
  font-weight: 600;
  text-shadow: 5px 3px 5px rgba(0,0,0,0.4);
}
.bannerCaption h2 {
  color: var(--bs-white);
  font-size: 25px;
  margin: 25px auto 35px auto;
  text-shadow: 5px 3px 5px rgba(0,0,0,0.4);
  font-weight: 400;
  max-width: 75%;
  line-height: 35px;
}
.bannerCaption .btn-common{
  border-right-color: #0071ba;
}
.bannerCaption .btn-common:hover{
  border-right-color: var(--primary);
}
.bannerCaption .btn-common span {
  font-size: 23px;
  padding: 30px 60px;
}

.bannerBottom {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.bannerBottom img {
  width: 100%;
}
.homeSlider .slick-dots button {
  width: 26px;
  height: 26px;
  border-radius: 50px;
  border: 2px solid transparent;
  background: none;
  position: relative;
}
.homeSlider .slick-dots {
  position: absolute;
  padding: 0;
  margin: 0;
  list-style: none;
  bottom: 245px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.homeSlider .slick-dots button::after {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--bs-white);
  position: absolute;
  border-radius: 50px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.homeSlider .slick-dots .slick-active button {
  width: 26px;
  height: 26px;
  border-radius: 50px;
  border-color:var(--bs-white);
  background: none;
  position: relative;
  margin: 0 4px;
}
.homeSlider .slick-dots .slick-active button::after {
  content: "";
  width: 9px;
  height: 9px;
  background:var(--primary);
}


/* Footer css start */
.footer{
  background:url(../img/footerShap.png) no-repeat center top;
  background-size: 100% 238px;
  padding-top: 238px;
  
}
.home .footer{
  margin-top: -228px;
}
.footerInner {
  background: #090f1b;
}
.ftrTop {
  padding: 40px 0 50px 0;
}
.footer p {
  color: var(--bs-white);
}
.ftrTop h3 {
  color: var(--bs-white);
  font-size: 22px;
  font-weight: 50;
  margin: 25px 0;
}
.quickLinks ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.quickLinks ul li {
  margin: 10px 0;
  display: block;
}
.quickLinks ul li a {
  text-decoration: none;
  color: var(--bs-white);
  font-size: 18px;
  transition: all ease-in-out 0.3s 0s;
}
.quickLinks ul li a:hover {
  text-decoration: underline;
  color: var(--primary);
}


.ftr-location ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.ftr-location ul li {
  display: flex;
  align-items: flex-start;
  gap:8px;
}
.ftr-location ul li img {
  margin-top: 5px;
}

.ftr-location ul li a {
  color: var(--bs-white);
  text-decoration: none;
}
.ftr-location ul li a:hover{
  color: var(--primary);
}
.ftr-location ul li p {
  margin: 0;
  flex: 1;
  font-size: 18px;
  line-height: 30px;
}


.ftr-social ul{
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ftr-social ul li {
  display: flex;
}
.ftr-social ul li::after {
  content: "";
  width: 13px;
  height: 28px;
  background: url(../img/socialDevider.png) no-repeat center center;
  padding: 0 20px;
}
.ftr-social ul li:last-child:after{
  display: none;
}
.ftr-social ul li img {
  filter: brightness(0) invert(1);
  transition: all ease-in-out 0.3s 0s;
}
.ftr-social ul li a:hover img {
  filter: inherit;
  transition: all ease-in-out 0.3s 0s;
}
.copyright {
  border-top: 1px solid #1a202b;
  text-align: center;
  padding: 40px 0;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.copyright p {
  color:var(--bs-white);
  margin: 0;
  font-size: 18px;
}


#button {
  display: flex;
  background-color: var(--primary);
  width: 60px;
  height: 60px;
  position: fixed;
  bottom: 80px;
  right: 50px;
  transition: background-color .3s, opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

#button img{
  filter: brightness(0) invert(1);
}
#button:hover {
  cursor: pointer;
  background-color: var(--secondary);
}
#button:active {
  background-color: var(--secondary);
}
#button.show {
  opacity: 1;
  visibility: visible;
}
#button:hover img{
  filter: inherit;
}
/* About Block */

.article{
  padding: 135px 0;
  background-color: #fff;
}
.title span{
 font-size: 23px;
 color: var(--primary);
 font-weight: 600;
}
.title h1{
   font-size: 60px;
   color: var(--secondary);
   font-weight: 600;
   position: relative;
}
.title h1::after {
  content: "";
  height: 9px;
  width: 257px;
  background: var(--primary);
  display: block;
  margin: 25px 0;
  clip-path: polygon(0 0%, 100% 0%, 97% 100%, 0% 100%);
}
.Text-panel p {
  color: #5a5a5a;
}
.Text-panel {
  max-width: 570px;
  margin-left: auto;
}
.productImage {
  width: calc(100% - 80px);
  position: relative;
  margin-left: auto;
}
.productImage img {
  position: relative;
  width: 100%;
}

.productImage::before {
  content: "";
  position: absolute;
  width: calc(100% - 80px);
  height: calc(100% - 30px);
  border: 2px solid var(--primary);
  top: 80px;
  left: -50px;
  border-radius: 3px;
}
.right .productImage {
  margin-right: auto;
  margin-left: 0;
}
.right .productImage::before {
  right: -50px;
  left: auto;
}
.right .Text-panel {
  margin-right: auto;
  margin-left: 0;
  max-width: 710px;
}
.grayBg{
  background-color: #f3f3f3;
}
.excellanceYear {
  position: absolute;
  bottom: 45px;
  left: 0;
  padding-right: 20px;
}
.excellanceYear::after {
  content: "";
  position: absolute;
  background: rgba(255,255,255,.3);
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  clip-path: polygon(0% 0%, 85% 0%, 100% 100%, 0% 100%);
  padding-right: 20px;
}
.excellanceYearInn {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 50px;
  position: relative;
  z-index: 1;
}
.excellanceYearInn::after {
  content: "";
  position: absolute;
  background: var(--primary);
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  clip-path: polygon(0% 0%, 85% 0%, 100% 100%, 0% 100%);
}
.excellanceYearInn ul {
  position: relative;
  z-index: 1;
  padding: 0;
  margin: 0;
}
.excellanceYearInn ul li {
  font-size: 23px;
  font-weight: 600;
  color: var(--bs-white);
  position: relative;
  padding: 0 0 0 27px;
  list-style: none;
}
.excellanceYearInn ul li::before {
  content: "";
  width: 13px;
  height: 13px;
  position: absolute;
  left: 0;
  top: 9px;
  background: var(--primary);
  border: 2px solid var(--bs-white);
  transform: rotate(45deg);
}
.yearCircle {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,.3);
  width: 148px;
  height: 148px;
  border-radius: 50%;
  text-align: center;
  padding: 14px;
}
.yearCircle img {
  max-width: 111px;
}
.yearCount {
  font-size: 65px;
  font-weight: 700;
  color: var(--bs-white);
  line-height: 1;
}
.yearCircle span {
  color: var(--bs-white);
  font-size: 14px;
  font-weight: 500;
}


.promo-video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 150px;
  height: 150px;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.waves-block {
  min-width: 150px;
  min-height: 150px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.video {
  height: 80px;
  width: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 100%;
  background: transparent;
  color: #fff;
  display: inline-block;
  background: var(--primary);
  z-index: 999;
}
.video img{
  width: auto;
}
@keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  50% {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}

.fa-play:before {
  content: "\f04b";
}

.waves {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255,0.2);
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  border-radius: 100%;
  right: 0px;
  bottom: 0px;
  z-index: -1;
   -webkit-animation: waves 3s ease-in-out infinite;
  animation: waves 3s ease-in-out infinite;
}


.populationContorl{
  background: #eef5fa url("../img/controlpopulation-bg.png") no-repeat;
  background-size: contain;
  background-position: bottom;
}
.populationContorl .container {
  max-width: 1280px;
}
.populationContorl .Text-panel {
  max-width: 100%;
}
.populationBox {
  position: relative;
  margin: 0 15px;
  transition: all ease-in-out 0.3s 0s;
}
.populationBox_inner {
  padding:25px 12px;
  background: #ffff;
  text-align: center;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  min-height: 234px;
  margin-top: 70px;
  position: relative;
  z-index: 1;
  transition: all ease-in-out 0.3s 0s;
}
.populationBox::after{
  content: '';
  position: absolute;
  background-color: var(--primary);
  width: 100px;
  height: 100px;
  bottom: -3px;
  right: -3px;
  transition: all ease-in-out 0.3s 0s;
}
.populationBox::before{
  content: '';
  position: absolute;
  background-color: var(--primary);
  width: 100px;
  height: 100px;
  top: -3px;
  left: -3px;
  transition: all ease-in-out 0.3s 0s;
}
.populationBox:hover .populationBox_inner{
  box-shadow: none;
}
.populationBox:hover::before{
  top: -5px;
  left: -5px;
}
.populationBox:hover::after{
  bottom: -5px;
  right: -5px;
}
.p-count{
  font-size: 50px;
  font-weight: 600;
  margin-top: 3px;
}
.populationBox p {
  color: #525156;
  font-size: 17px;
  line-height: normal;
  margin: 0;
}
.populationContorl .btn-common span {
  font-size: 17px;
  padding: 18px 43px;
}


.ourProjects {
  text-align: center;
}
.ourProjects .title h1::after {
  margin: 25px auto;
  clip-path: polygon(0% 0%, 100% 0%, 97% 100%, 3% 100%);
}

.project-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -7px;
  margin-right: -7px;
}
.project-7 {
  flex: 0 0 auto;
  width: 53.333%;
  padding-left: 5px;
  padding-right: 5px;
}
.project-5 {
  flex: 0 0 auto;
  width: 46.667%;
  padding-left: 5px;
  padding-right: 5px;
}
.project-6 {
  flex: 0 0 auto;
  width: 50%;
  padding-left: 5px;
  padding-right: 5px;
  margin-bottom: 8px;
}
.project-12 {
  flex: 0 0 auto;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
}
.project-row img {
  width: 100%;
  height: 100%;
}
.project-row .position-relative {
  height: 100%;
  overflow: hidden;
}
.projectHover {
  position: absolute;
  bottom: -100%;
  background: rgba(229, 0, 45, .74);
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  height: 100%;
  padding: 20px;
  transition: all ease-in-out 0.3s 0s;
}
.project-row .position-relative:hover .projectHover{
  bottom: 0;
}
.projectHover h3 {
  width: 100%;
  color: var(--bs-white);
  font-size: 25px;
  font-weight: 700;
}
.projectHover p {
  font-size: 15px;
  line-height: 25px;
  color: var(--bs-white);
}


.airSystem{
  background: #2b313b;
  padding-bottom: 275px;
}
.airSystem .title {
  text-align: center;
}
.airSystem .title span {
  color: var(--bs-white);
}
.airSystem .title h1 {
  color: var(--bs-white);
}
.airSystem .title :after,
.benefitCommunity .title :after {
  margin: 25px auto;
}
.cleanerSystem {
  margin-top: 100px;
  position: relative;
}
.tokaiLogo {
  max-width: 38%;
  margin: auto;
}

.cleanerSystem ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cleanerSystem ul li {
  width: 29%;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  position: absolute;
}
.count {
  width: 60px;
  height: 60px;
  background: var(--primary);
  font-size: 30px;
  font-weight: 600;
  color: var(--bs-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-family: 'Switzer', sans-serif;
}
.cleanerSystem ul li p {
  margin: 0;
  color: var(--bs-white);
  font-size: 17px;
  line-height: 30px;
  width: 100%;
  flex: 1;
}
.cleanerSystem ul li:nth-child(1), .cleanerSystem ul li:nth-child(2), .cleanerSystem ul li:nth-child(3) {
  flex-direction: row-reverse;
  text-align: right;
}
.cleanerSystem ul li:nth-child(4) {
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
}
.cleanerSystem ul li:nth-child(4) p {
  width: 100%;
  flex: auto;
}

.system01 {
  top: -40px;
}
.system02 {
  top: 200px;
  left: -50px;
}
.system03 {
  top: 430px;
}
.system04 {
  left: 50%;
  transform: translateX(-50%);
  margin-top: -10px;
}
.system05 {
  top: 430px;
  right: 50px;
}
.system06 {
  top: 200px;
  right: 0;
}
.system07 {
  top: -40px;
  right: 50px;
}


/* Contact section */
.contactWrapper{
  background: #fff url(../img/contactBg.png) no-repeat center center;
  background-size: cover;
  padding-bottom: 380px;
}
.contactInner {
  background: #fff;
  padding: 40px;
  border-radius: 6px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  display: flex;
  flex-wrap: wrap;
}
.contactDetail {
  width: 39%;
  padding-right: 50px;
  padding-top: 30px;
}
.contactDetail h2 {
  font-size: 50px;
  font-weight: normal;
  margin-bottom: 50px;
}
.contactDetail ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.contactDetail ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}
.contactDetail ul li img {
  width: 21px;
  margin-right: 12px;
  margin-top: 5px;
}
.contactDetail ul li p {
  width: 100%;
  flex: 1;
  color: #525156;
  line-height: 28px;
  margin: 0;
}
.contactDetail ul li b {
  color: #090f1b;
  display: block;
  font-size: 22px;
  font-weight: 600;
}
.contactDetail ul li p a {
  color: #525156;
  text-decoration: none;
}
.contactDetail ul li p a:hover{
  color: var(--primary);
}
.contact-logo {
  margin-top: 110px;
}
.contact-logo img{
  max-width: 346px;
}

.contactForm {
  width: 61%;
  background: var(--primary);
  border-radius: 5px;
  padding:35px 50px 50px 50px;
}
.contactForm h2 {
  font-size: 45px;
  font-weight: 600;
  color: var(--bs-white);
  margin-bottom: 20px;
}
.contactForm .row {
  margin-left: -8px;
  margin-right: -8px;
}
.contactForm .row>*{
  padding-left: 8px;
  padding-right: 8px;
}
.contactInner .form-control {
  background-color: #f8f8f8;
  height: 75px;
  border-radius: 2px;
  border: none;
  font-size: 19px;
  color: #525156;
  font-weight: 500;
  padding:22px 30px;
}
.contactInner input[type="submit"] {
  width: 100%;
  background: #090f1b;
  border: none;
  border-radius: 5px;
  height: 75px;
  color: #fff;
  font-size: 23px;
  text-transform: uppercase;
  font-weight: 600;
  transition: all ease-in-out 0.3s 0s;
}
.contactInner input[type="submit"]:hover {
  width: 100%;
  background: #fff;
  color: #090f1b;
}
.contactInner textarea.form-control {
  height: auto;
  resize: none;
}
.text-name {
  background-image: url(../img/text-user.png);
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) center;
}
.text-num{
  background-image: url(../img/text-call.png);
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) center;
}
.text-mail{
  background-image: url(../img/text-mail.png);
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) center;
}
.text-msg{
  background-image: url(../img/text-edit.png);
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) 30px;
}
.contactInner select{
  background-image: url(../img/select-arrow.png);
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) center;
  -webkit-appearance: none;
  appearance: none;
}

.article.generalInfo {
  padding:100px 0;
}
.generalInfoContent ul {
  list-style:none;
  padding-left: 50px;
  margin-top: 50px;
  margin-bottom: 0;
}
.generalInfoContent ul li {
  color: #5a5a5a;
  font-size: 20px;
  line-height: 33px;
  position: relative;
  padding:0 0 30px 30px;
  min-height: 65px;
}
.generalInfoContent ul li:last-child{
  padding-bottom: 0;
  min-height: inherit;
}
.generalInfoContent ul li::before {
  width: 11px;
  height: 11px;
  background: var(--primary);
  position: absolute;
  left: 0;
  top: 10px;
  content: "";
  border-radius:20px;
}
.generalInfoContent ul li::after {
  content: "";
  width: 1px;
  height: calc(100% - 31px);
  background: var(--secondary);
  position: absolute;
  left: 5px;
  top: 31px;
}
.generalInfoContent ul li:last-child::after{
  display: none;
}

.benefitCommunity{
  background-image: url(.../img/benefitCommunityBg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.benefitCommunityBox{
  position: relative;
  height: calc(100% - 50px);
  margin-top: 50px;
}
.benefitCommunityBoxInn {
  padding:35px;
  background:#ffff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  position: relative;
  z-index: 1;
  transition:all ease-in-out 0.3s 0s;
  height:100%;
}
.benefitCommunityBox::before {
  content: '';
  position: absolute;
  background-color: var(--primary);
  width: 100px;
  height: 100px;
  top: -3px;
  left: -3px;
  transition:all ease-in-out 0.3s 0s;
}
.benefitCommunityBox::after {
  position: absolute;
  background-color: var(--primary);
  width: 100px;
  height: 100px;
  bottom: -3px;
  right: -3px;
  transition:all ease-in-out 0.3s 0s;
  content: "";
}
.benefitCommunityBox h3 {
  font-size: 30px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 15px;
}
.benefitCommunityBox ul {
  padding:0;
  margin:0;
  list-style:none;
}
.benefitCommunityBox ul li {
  color: #5a5a5a;
  font-size: 20px;
  line-height: 33px;
  position: relative;
  padding:0 0 25px 30px;
}
.benefitCommunityBox ul li::before {
  content: "";
  width: 11px;
  height: 11px;
  background: var(--primary);
  position: absolute;
  left: 0;
  top: 10px;
  border-radius:20px;
}


/* Faq Page*/
.faq .accordion-item {
  border:none;
  border-radius:0 !important;
  margin-bottom: 12px;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
}
.faq {
  background-color: #f3f3f3;
}
.faq .container{
  max-width: 1090px;
}
.faq h3 {
  font-size: 25px;
  font-weight: 600;
  color: #000;
  margin-bottom: 40px;
  margin-top: 90px;
}
.accordion-item:first-of-type > .accordion-header .accordion-button{
  border-radius: 0;
}
.accordion-button:focus {
  box-shadow: inherit;
}
.accordion-button:not(.collapsed) {
  border-left: 5px solid var(--primary);
  border-radius:0 !important;
  background:none;
  box-shadow: inherit;
  color: #000;
}
.accordion-collapse {
  border-left: 5px solid var(--primary);
}

.accordion-button {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  border-left: 5px solid transparent;
  padding-top: 26px;
  padding-bottom: 25px;
}
.faq .accordion-body{
  padding-bottom: 30px;
  padding-top: 0;
}
.accordion-body p {
  font-size: 18px;
  color: #5a5a5a;
  line-height: 33px;
  margin-bottom: 5px;
}
.faq .accordion-button::after {
  background-image: url(../img/faq-arrow.svg);
  width: 23px;
  height: 23px;
  background-size: contain;
}
.faq .accordion-button:not(.collapsed)::after {
  transform: rotate(45deg);
}

/*------------------------------------*\
         Media Queries
\*------------------------------------*/
@media (max-width: 1400px) {
  p {
    font-size: 18px;
    line-height: 28px;
  }
  .bannerCaption .btn-common span {
    font-size: 21px;
    padding: 25px 50px;
  }
  .btn-common span {
    font-size: 18px;
    padding: 18px 35px;
  }
  .title h1 {
    font-size: 52px;
  }
  .article {
    padding:80px 0;
  }
  .homeSlider .slick-dots{
    bottom: 175px;
  }
  .bannerCaption{
    padding-bottom: 250px;
  }
  .bannerCaption h1{
    font-size: 42px;
  }
  .bannerCaption h2 {
    font-size: 21px;
    max-width: 65%;
    line-height: 28px;
  }
  .excellanceYear {
    bottom: 20px;
  }
  .excellanceYearInn{
    padding: 15px 60px 15px 30px;
  }
  .yearCircle{
    width: 110px;
    height: 110px;
  }
  .yearCount {
    font-size: 42px;
  }
  .yearCircle span{
    font-size: 12px;
  }
  .excellanceYearInn ul li {
    font-size: 18px;
  }
  .p-count {
    font-size: 42px;
  }
  .tokaiLogo {
    max-width: 32%;
  }
  .system01 {
    left: 50px;
  }
  .system02 {
    left: 0
  }
  .system03 {
    left: 50px;
  }
  .contactInner {
    padding: 30px;
  }
  .contactForm {
    padding: 27px 35px 35px 35px;
  }
  .contactInner .form-control {
    height: 65px;
    padding: 15px 20px;
  }
  .contactInner input[type="submit"]{
    height: 65px;
  }
  .productImage {
    width: calc(100% - 60px);
  }
  .productImage::before {
    width: calc(100% - 60px);
    top: 60px;
    left: -30px;
  }
  .right .productImage::before {
    right: -30px;
  }
  .airSystem {
    padding-bottom: 275px;
  }
  .contactWrapper{
    padding-bottom: 240px;
  }
  .footer {
    background-size: 100% 168px;
    padding-top: 168px;
  }
  .home .footer{
    margin-top: -168px;
  }
}
@media (max-width: 1200px) {
  .navbar-brand {
    max-width: 300px;
  }
  .navbar-nav ul{
    gap: 35px;
  }

}


@media (max-width: 1100px) {
  .topStrip ul li a{
    font-size: 16px;
  }
  .navbar-brand {
    max-width: 220px;
  }
  .navbar-nav ul li a{
    font-size: 16px;
	display: block;
    padding-left: 0;
	padding-right: 0;
  }
  .navbar {
    padding: 0 0 0 50px;
    margin: 12px 0;
  }
  .navbar-nav ul li.contact-btn a {
    padding: 7px 28px;
  }
  .bannerCaption h1 {
    font-size: 30px;
  }
  .bannerCaption h2 {
    font-size: 18px;
    max-width: 65%;
    line-height: normal;
    margin: 15px auto 25px auto;
  }
  .bannerCaption .btn-common span {
    font-size: 18px;
    padding: 18px 30px;
  }
  .btn-common span {
    font-size: 16px;
    padding: 16px 30px;
  }
  .title h1 {
    font-size: 42px;
  }
  .Text-panel {
    margin: 0 15px;
  }
  .p-count {
    font-size: 36px;
  }
  .populationBox p{
    font-size: 16px;
  }
  .projectHover h3{
    font-size: 18px;
  }
  .projectHover{
    padding: 10px;
  }
  .projectHover p {
    font-size: 13px;
    line-height: normal;
  }
  .cleanerSystem ul li p {
    font-size: 15px;
    line-height: normal;
  }
  .count {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  .system02, .system06 {
    top: 130px;
  }
  .system03, .system05 {
    top: 290px;
  }
  .airSystem {
    padding-bottom: 235px;
  }
  .ftr-location ul li p {
    font-size: 15px;
    line-height: 28px;
  }
  .quickLinks ul li a, .footer p{
    font-size: 15px;
  }
  .copyright{
    padding: 20px 0;
  }
  
}

@media (max-width: 991px) {
  header {
    position: relative;
  }
  .navbar {
    justify-content: flex-end;
    padding: 0;
    position: static;
  }
  .navbar-toggler:focus{
    box-shadow: none;
  }
  .navbar-collapse {
    position: absolute;
    background: rgba(0,0,0,0.9);
    top: 95px;
    z-index: 9;
    width: 100%;
    left: 0;
  }
  .navbar-nav ul {
    flex-wrap: wrap;
    padding: 25px;
    gap: 0;
  }
  .navbar-nav ul li {
    width: 100%;
    margin: 7px 0;
  }
  .navbar-nav ul li a {
    color: var(--bs-white);
  }
  .navbar-nav ul li.contact-btn a {
    display: inline-block;
  }
  .navbar-toggler-icon{
    background: url(../img/menuClose.svg) no-repeat center center;
  }
  .collapsed .navbar-toggler-icon{
    background: url(../img/menuOpen.svg) no-repeat center center;
  }

 

  .homeSlider .slick-dots {
    bottom: 110px;
  }
  .bannerCaption {
    padding-bottom: 160px;
  }
  .article, .article.generalInfo {
    padding: 50px 0;
  }
  .Text-panel {
    margin: 25px;
    max-width: 100%;
  }
  .populationContorl .Text-panel {
    margin: 0;
  }
  .populationBox{
    margin: 0;
  }
  .project-7 {
    width: 100%;
    margin-bottom: 10px;
  }
  .project-5 {
    width: 100%;
  }
  .article.right .row .col-lg-6:nth-child(1) {
    order: 2;
  }
  .cleanerSystem ul li {
    width: calc(50% - 15px);
    position: static;
    text-align: left;
    gap: 20px;
  }
  .cleanerSystem ul {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
  }
  .cleanerSystem ul li:nth-child(1), .cleanerSystem ul li:nth-child(2), .cleanerSystem ul li:nth-child(3) {
    flex-direction: row;
    text-align: left;
  }
  .cleanerSystem ul li:nth-child(4) {
    text-align: left;
    flex-wrap: nowrap;
    justify-content: center;
  }
  .cleanerSystem ul li:nth-child(4) p {
    flex: 1;
  }
  .system04 {
    left: 50%;
    transform: none;
    margin-top: 0;
  }
  .cleanerSystem {
    margin-top: 40px;
  }
  .tokaiLogo {
    max-width: 300px;
  }
  .contact-logo {
    margin-top: 50px;
  }
  .contactDetail {
    width: 100%;
    order: 2;
    padding-right: 0;
  }
  .contactForm {
    width: 100%;
  }
  .right .Text-panel {
    margin: 25px;
    max-width: 100%;
  }
  .contactWrapper {
    padding-bottom: 240px;
  }
  .ftr-location ul li a {
    word-break: break-all;
  }
  .contactDetail h2 {
    font-size: 36px;
    margin-bottom: 30px;
  }



}

@media (max-width: 767px) {
  .topStrip ul li a {
    font-size: 13px;
  }
  .topStrip ul li {
    padding: 1px 0 6px 20px;
  }
  .homeSlider .slick-slide img {
    display: block;
    min-height: 300px;
  }
  .bannerCaption {
    padding-bottom: 50px;
    align-items: center;
  }
  .bannerCaption .btn-common span {
    font-size: 14px;
    padding: 8px 10px;
  }
  .bannerCaption h2 {
    font-size: 14px;
    max-width: 100%;
    margin: 10px auto 15px auto;
  }
  .bannerCaption h1 {
    font-size: 21px;
  }
  .title h1 {
    font-size: 36px;
  }
  p {
    font-size: 16px;
    line-height: 26px;
  }
  .title h1::after {
    height: 5px;
    width: 180px;
    margin: 15px 0;
  }
  .Text-panel {
    margin: 15px;
  }
  .productImage {
    width: calc(100% - 40px);
    margin: auto;
  }
  .productImage::before {
    width: calc(100% - 10px);
    top: 20px;
    left: -10px;
    height: calc(100% - 10px);
  }
  .excellanceYearInn ul li {
    font-size: 14px;
    margin: 2px 0;
  }
  .yearCircle {
    width: 70px;
    height: 70px;
    padding: 5px;
  }
  .yearCount {
    font-size: 21px;
  }
  .yearCircle span {
    font-size: 10px;
    top: -4px;
    position: relative;
  }
  .excellanceYearInn {
    padding: 8px 30px 8px 10px;
    gap: 10px;
  }
  .excellanceYear{
    padding-right: 10px;
    bottom: 0;
  }
  .excellanceYearInn ul li::before {
    width: 10px;
    height: 10px;
    top: 5px;
  }
  .video {
    height: 50px;
    width: 50px;
    line-height: 50px;
  }
  .video img {
    width: 14px;
  }
  .populationBox_inner{
    margin-top: 30px;
  }
  .projectHover {
    padding: 5px;
  }
  .projectHover h3 {
    font-size: 15px;
  }
  .projectHover p {
    font-size: 11px;
    margin: 0;
  }
  .right .productImage::before {
    right: -10px;
  }
  .right .productImage{
    margin: auto;
  }
  .cleanerSystem ul li{
    width: 100%;
  }
  .contactInner {
    padding: 15px;
  }
  .contactForm {
    padding: 27px 15px 15px 15px;
  }
  .contactForm h2 {
    font-size: 30px;
  }
  .contactInner .form-control {
    height: 45px;
    padding: 15px 15px;
    font-size: 15px;
  }
  .text-name, .text-num, .text-mail, .contactInner select, .text-msg {
    background-position: calc(100% - 10px) 20px;
    background-size: 12px;
  }
  .contactInner input[type="submit"] {
    height: 55px;
    font-size: 16px;
  }
  .contactDetail ul li{
    margin-bottom: 15px;
  }
  .contactDetail ul li b{
    font-size: 18px;
  }
  .contactDetail{
    padding: 30px 0;
  }
  .footer {
    background-size: 100% 58px;
    padding-top: 58px;
  }
  .home .footer{
    margin-top: -58px;
  }
  .contactWrapper {
    padding-bottom: 120px;
  }
  .ftrTop .col {
    width: 100%;
    flex: auto;
  }
  .copyright {
    flex-wrap: wrap;
    justify-content: center;
  }
  #button {
    width: 40px;
    height: 40px;
    bottom: 30px;
    right: 30px;
  }
  .generalInfoContent ul {
    padding-left: 30px;
    margin-top: 30px;
  }
  .generalInfoContent ul li, .benefitCommunityBox ul li {
    font-size: 16px;
    line-height: 26px;
  }
  .generalInfoContent ul li::before{
    top: 7px;
  }
  .generalInfoContent ul li::after{
    top: 28px;
  }
  .benefitCommunityBox h3 {
    font-size: 24px;
  }
  .accordion-button {
    font-size: 16px;
    padding: 15px 25px 15px 15px;
  }
  .accordion-body p {
    font-size: 15px;
    line-height: 24px;
  }
  .faq .accordion-button::after {
    margin-right: -18px;
    background-size: 16px;
  }
  .faq h3 {
    font-size: 21px;
    margin-bottom: 20px;
    margin-top: 50px;
  }

}

@media (max-width: 575px) {
  .contact-logo img {
    max-width: 100%;
  } 
}