@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@media (min-width: 1025px) {
  .container {
    max-width: 1240px;
    margin: 0 auto;
  }
}
form .form-control {
  outline: none;
}

.fixed {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999;
  background-color: #ffffff;
}
header{
	border-bottom:1px solid #C4131C;
	box-shadow: 0 4px 8px 0 rgba(16, 16, 16, 0.02);
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0px 14px;
}
header nav #humburger {
  display: none;
}
header nav #humburger .humburger-close {
  display: none;
}
header nav .logo {
  height: 32px;
}
header nav .navmenu-1 {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
header nav select {
  background-image: none;
  -moz-appearance: none; /* Firefox */
  -webkit-appearance: none; /* Safari and Chrome */
  appearance: none;
  background-color: transparent;
  padding: 4px 24px;
  border: none;
  outline: none;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  font-family: "Noto Sans JP";
}
header nav .land-sel {
  position: relative;
  z-index: 1;
  background-color: #F2F2F2;
  border-radius: 16px;
  padding: 0px 0px;
  border: none;
}
header nav .land-sel::before {
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 8px;
  content: "";
}
header nav .land-sel::before {
  background-image: url(../images/icons/gworld-lang.png);
  left: 8px;
}
header nav .land-sel img {
  background-image: url(../images/icons/down-arrow-down.svg);
  right: 8px;
  display: block;
  top: 8px;
  position: absolute;
  width: 12px;
  height: 12px;
  z-index: -1;
}
header nav ul {
  display: flex;
  align-items: center;
  justify-content: end;
  position:relative;
 
}
header nav ul li {
  overflow: hidden;
}
header nav ul li:last-child {
	padding-right: 0;
}
header nav ul li {
	padding-right:32px
}
header nav ul li:hover{
	
}
header nav ul li.dropdown {
  padding-right: 42px;
}
header nav ul .dropdown.open:hover, li .dropdown a p {
  transition: 0.3s ease;
}
header nav ul .dropdown.open:hover .dropdown a:hover p {
  font-weight: 500;
  color: #C4131C;
}
header nav ul .dropdown.open:hover  a:hover svg {
  transform: rotate(180deg);
  top: 6px;
}
header nav ul .dropdown.open:hover  a:hover svg path {
  stroke: #C4131C;
}
header nav ul .dropdown a svg {
  position: absolute;
  right: -16px;
  top: 3px;
}
header nav ul .dropdown a p{
	position:relative;
}
.dropdown-menu:hover,
.dropdown:hover{
	
}
header nav ul li.active a p{
	color:#C4131C;
	font-weight:400;
}
header nav ul li:hover .dropdown-menu {
  visibility: visible;
}
header nav ul li .dropdown-menu {
  position: absolute;
    top: 17px;
  z-index: 9;
  visibility: hidden;
}
header nav ul li .dropdown-menu ul {
  flex-direction: column;
  row-gap: 13px;
  align-items: start;
  padding: 10px 22px;
  border: 1px solid rgba(249, 249, 249, 0.06);
  background: rgba(253, 253, 253, 0.8);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  border-radius: 8px;
  position: relative;
  margin-top: 10px;
}
header nav ul li .dropdown-menu ul::before {
  content: "";
  border-radius: 8px;
  border: 1px solid rgba(249, 249, 249, 0.06);
  background: rgba(253, 253, 253, 0.8);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: none;
}
header nav ul li .dropdown-menu ul li a  {
  transition: none;
}
header nav ul li .dropdown-menu ul li a:hover  {
  font-weight: 400;
  color:#C4131C;
}
header nav ul li::after {
  content: "";
  position: absolute;
  right: -18px;
  width: 1px;
  height: 20px;
  background-color: #231F20;
  bottom: 0px;
  display: none;
}
header nav ul li:nth-last-child(1)::after {
  display: none;
}
header nav ul li a {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #231F20;
  overflow: hidden;
  position: relative;
}
header nav ul:first-child p {
  font-weight: 500;
  color: #4A4748;
  font-size: 12px;
}
header nav ul:first-child li.active p {
  color: #C4131C;
  font-weight: 500;
}
header nav ul li a p {
  position: relative;
  transition: transform 500ms;
  -webkit-transition: -webkit-transform 500ms;
  -moz-transition: transform 500ms;
  color: #231F20;
  font-weight: 400;
}
header nav ul li a::before {
  content: attr(data-hover);
  position: absolute;
  top: 0px;
  left: 0;
  transform: translateY(30px);
  transition: transform 500ms;
  -webkit-transition: -webkit-transform 500ms;
  -moz-transition: transform 500ms;
  color: #C4131C;
  text-wrap: nowrap;
}
header nav ul:first-child li a::before {
  font-weight: 500;
  font-size: 12px;
}
header nav ul li:hover a:hover p {
  transform: translateY(-30px);
}
header nav ul li:hover a:hover::before {
  transform: translateY(0px);
}
header nav ul .dropdown.open a p {
  color: #C4131C;
}
.swiper-pagination-bullet {
  width: 30px;
  height: 2px;
  background-color: #FEF4F4;
  opacity: 1;
  border-radius: 0px;
}

.swiper-pagination-bullet-active {
  background-color: #C4131C;
}

footer {
  padding: 96px 0px 64px;
}
footer a, footer .copyrights {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #4A4748;
}
footer .copyrights {
  text-align: center;
  padding-top: 40px;
}
footer .row {
  display: grid;
  grid-template-columns: 164px 182px 240px 306px;
  justify-content: space-between;
  border-bottom: 1px solid #C4131C;
  padding-bottom: 48px;
}
footer .row .col form .form-control {
  font-size: 14px;
  line-height: 18px;
}
footer .row .col form svg {
  position: absolute;
}
footer .row .col form svg:nth-child(2) {
  left: 0;
  top: 6px;
}
footer .row .col form svg:nth-child(3) {
  right: 0;
  top: 2px;
}
footer .row .col div {
  display: flex;
  align-items: center;
  -moz-column-gap: 12px;
       column-gap: 12px;
}
footer .row .col p {
  font-weight: 700;
  padding-top: 10px;
  color: #C4131C;
}
footer .row .col:nth-child(2) p {
  margin-bottom: 31px;
}
footer .row .col:nth-child(3) ul {
  margin-bottom: 58px;
}
footer .row .col:nth-child(3) ul li a {
  font-weight: 500;
}
footer .row .col:nth-child(3) p {
  margin-bottom: 34px;
}
footer .row .col:nth-child(3) p:nth-child(3) {
  margin-bottom: 32px;
  padding-top: 0px;
}
footer .row .col:nth-child(4) p {
  margin-bottom: 46px;
}
footer .row ul li {
  padding-bottom: 20px;
  line-height: 22px;
}
footer .row ul li:nth-last-child(1) {
  padding-bottom: 0px;
}

.player {
  text-align: center;
  position: relative;
}
.player img {
  border-radius: 16px;
}
.player img:nth-child(2), .player img svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.player video{
  width: 100%;
}
.about-the-leadership .player iframe{
	width: 860.444px;
	height: 484px;
}
.our-president .row {
  flex-direction: row-reverse;
  -moz-column-gap: 48px;
       column-gap: 48px;
  margin-bottom: 0px;
  align-items: center;
}
.our-president .row .col:nth-child(1) {
  width: 752px;
}
.our-president .row .col:nth-child(1) p {
  margin-bottom: 16px;
}
.our-president .row .col:nth-child(1) p:nth-child(7) {
  margin-bottom: 0px;
}
.our-president .row .col:nth-child(1) .d-flex {
  display: flex;
  align-items: center;
  -moz-column-gap: 12px;
       column-gap: 12px;
  width: 421px;
}
.our-president .row .col:nth-child(2) {
  width: 556px;
}
.our-president .row .col:nth-child(2) img {
  border-radius: 300px 300px 0px 300px;
}
.our-president .row .col:nth-child(2) div {
  position: relative;
}
.our-president .row .col:nth-child(2) div::before {
  content: "";
  background-image: url(../images/index/circle-red-stroke.svg);
  background-repeat: no-repeat;
  width: 521px;
  height: 552px;
  top: -5px;
  left: -14px;
  position: absolute;
  background-size: contain;
  z-index: -2;
}
.our-president .row .col:nth-child(2) div img {
  border-radius: 50% 50% 0% 50%;
  width: 100%;
}

.our-second-sec .row .col h2 {
  width: 90%;
  margin-bottom: 32px;
}
.our-second-sec .row .col p {
  margin-bottom: 16px;
}
.our-second-sec .row .col p:nth-child(3) {
  margin-bottom: 24px;
}
.our-second-sec .row .col:nth-child(2) img {
  border-radius: 0px 88px 0px 88px;
}
.our-second-sec .row .col:nth-child(2) img:nth-child(2) {
  width: 157px;
  height: auto;
  border-radius: 0px 40px;
  position: absolute;
  bottom: 0;
  right: 0;
}
.our-second-sec .row .col:nth-child(2)::before {
  display: none;
}
.our-second-sec .row .col:nth-child(2)::after {
  display: none;
}

form {
  position: relative;
}
form .form-control, form .form-select {
  padding: 0px 0px 13px 26px;
  border: none;
  border-bottom: 1px solid #4A4748;
  font-family: "Noto Sans", sans-serif;
  width: 100%;
  outline: none;
  background-color: transparent;
}

.pink-box {
  border-radius: 48px 0px;
  background-color: #FEF4F4;
  padding: 24px;
  display: flex;
  align-items: center;
  -moz-column-gap: 85px;
       column-gap: 85px;
}
.pink-box .content h5 {
  width: 90%;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.pink-box .content h5::before {
  content: "";
  width: 80px;
  height: 80px;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODIiIGhlaWdodD0iODAiIHZpZXdCb3g9IjAgMCA4MiA4MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAuNzExMDMgMzkuNTAwMUMwLjc1ODA5MSA2MS4zNjA4IDE3LjY1MDIgODAuNTgxNyA0MC45NzkgNzkuNjExOEM0Mi4zOTczIDc5LjYzMDUgNDMuNzk4IDc5LjU3NDYgNDUuMTc4IDc5LjQ1MTZMODEuMTc2NyA3OC42NjUyTDgxLjA5MTggMzkuMTY2Mkw4MS4wNDY5IDM5LjIxMjVDODAuMjgxMyAxNy45NjUgNjIuNTQzMiAwLjczMjc5IDQwLjgwODEgMC40NDY4M0MxOC42MTYzIDAuMTU0OTE5IDAuNjY0MTYzIDE3LjYzOTUgMC43MTEwMyAzOS41MDAxWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==');
  position: absolute;
  background-repeat: no-repeat;
  left: -36px;
  top: -11px;
  z-index: -1;
}

.global-list {
  display: flex;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
.global-list li {
  padding: 0px 0px 0px 26px;
  position: relative;
}
.global-list li::before {
  content: "";
  background-image: url(../images/icons/stoke-icon-list.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 5px;
  left: 0;
}
.global-list li p {
  color: #4A4748;
}
.global-list li p:nth-child(1) {
  font-weight: 700;
  color: #231F20;
}

.swiper-arrow {
  width: 44px;
  height: 44px;
  background-color: #C0BFBF;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: 50%;
}
.swiper-arrow:hover {
  background-color: #C4131C;
}

h2 {
  width: -moz-fit-content;
  width: fit-content;
}
h2 svg {
  position: absolute;
  bottom: -11px;
  right: 0;
  width: 100%;
}
h2 svg path {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s ease-out;
}

h2.aos-animate svg path {
  transform: scaleX(1);
}

.hero-main h1 {
  margin-bottom: 16px;
  width: 975px;
}
.hero-main p {
  margin-bottom: 56px;
  max-width: 713px;
  color: #ffffff;
  font-size: 18px;
  line-height: 26px;
}
.hero-main .swiper-slide {
  position: relative;
  min-height: 648px;
  height: 100%;
  z-index: 1;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  margin: 0px;
}
.hero-main .swiper-slide .container {
  margin: auto;
  width: 100%;
}
.hero-main .swiper-slide::before {
  content: "";
  background: linear-gradient(84deg, #1D1D1D -0.58%, rgba(98, 98, 98, 0.41) 61.06%, rgba(147, 147, 147, 0) 83.24%);
  mix-blend-mode: multiply;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.hero-main .swiper-slide a {
  color: #ffffff;
  font-weight: 500;
}
.hero-main .swiper-slide a:hover {
  color: #C4131C;
}
.hero-main .swiper-slide .slider-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
}
.hero-main .swiper-pagination-hero {
  width: auto;
}
.hero-main .pos-dots {
  position: absolute;
  bottom: 56px;
  z-index: 9;
  width: 100%;
}

.creating-the-next-feature {
  padding: 104px 0px 103px;
  position: relative;
}
.creating-the-next-feature::before {
  content: "";
  background-image: url(../images/index/top-fream-ring.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0px;
  top: 0;
  width: 370px;
  height: 175px;
  display: none;
}
.creating-the-next-feature::after {
  width: 386.648px;
  height: 39%;
  content: "";
  background-image: url(../images/index/bottom-fream-ring.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  bottom: -3px;
  display: none;
}
.creating-the-next-feature h2 {
  text-align: center;
  position: relative;
  z-index: 1;
  line-height: 50px;
  width: 100%;
}
.creating-the-next-feature h2:nth-child(2) {
  margin-bottom: 31px;
}
.creating-the-next-feature h2:nth-child(2)::before {
  display: none;
}
@keyframes buttonArrow {
  0% {
    background-position: 0 0px, 0px 0px;
  }
  100% {
    background-position: 8px 0px, 0px 0px;
  }
}
.creating-the-next-feature h2:nth-child(1) {
  margin-bottom: 28px;
}
.creating-the-next-feature h2:nth-child(1)::before {
  content: "";
  position: absolute;
  width: 769.5px;
  height: 40px;
  bottom: -11px;
  background: url(../images/index/vector-line.svg), no-repeat;
  background-repeat: no-repeat;
  z-index: -1;
}
.creating-the-next-feature h2:nth-child(1)::after {
  content: "";
  background: url(../images/icons/years-forword.svg);
  background-repeat: repeat;
  position: absolute;
  width: 20px;
  height: 15.028px;
  right: 16.1%;
  top: 29px;
  transition: opacity 0.5s cubic-bezier(0.84, -0.01, 0.25, 0.99);
  animation-name: buttonArrow;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.creating-the-next-feature h2 span {
  font-size: 56px;
  line-height: 64px;
  font-weight: 900;
  background-color: #ffffff;
  color: #C4131C;
  margin-left: 75px;
}
.creating-the-next-feature p {
  text-align: center;
  max-width: 680px;
  margin: 0px auto;
}

.welcome-to-maruyama-sec {
  background-color: #F2F2F2;
  padding: 80px 0px 200px;
  position: relative;
  z-index: 1;
}
.welcome-to-maruyama-sec .bottom-pos-banner {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45%;
  z-index: -2;
}
.welcome-to-maruyama-sec h2, .welcome-to-maruyama-sec a {
  color: #231F20;
}
.welcome-to-maruyama-sec .row {
  -moz-column-gap: 49px;
       column-gap: 49px;
  align-items: end;
}
.welcome-to-maruyama-sec .row .col h2 {
  width: 90%;
  margin-bottom: 32px;
}
.welcome-to-maruyama-sec .row .col h2::before {
  bottom: -8px;
  height: 8px;
}
.welcome-to-maruyama-sec .row .col p {
  margin-bottom: 8px;
  color: #4A4748;
}
.welcome-to-maruyama-sec .row .col p:nth-last-child(2) {
  margin-bottom: 24px;
}
.welcome-to-maruyama-sec .row .col:nth-child(1) {
  width: 461px;
}
.welcome-to-maruyama-sec .row .col:nth-child(2) {
  position: relative;
  width: 59%;
}
.welcome-to-maruyama-sec .row .col:nth-child(2) div {
  position: relative;
}
.welcome-to-maruyama-sec .row .col:nth-child(2) div::before {
  content: "";
  background-image: url(../images/index/circle-red-stroke.svg);
  background-repeat: no-repeat;
  width: 403px;
  height: 438px;
  position: absolute;
  background-size: contain;
  top: 15px;
  left: 1px;
  z-index: -2;
}
.welcome-to-maruyama-sec .row .col:nth-child(2) div img {
  border-radius: 50% 50% 0% 50%;
  width: 407px;
  position: relative;
  /* height: 446.752px; */
  top: 30px;
}
.welcome-to-maruyama-sec .row .col:nth-child(2) .pos-img {
  position: absolute;
  right: 3%;
  top: 15%;
  border-radius: 50% 50% 50% 0%;
  z-index: -1;
}

.global-sustainable-sol {
  padding: 72px 0px;
  background-color: #F2F2F2;
}
.global-sustainable-sol h2, .global-sustainable-sol a {
  color: #231F20;
}
.global-sustainable-sol h2::before, .global-sustainable-sol a::before {
  right: 114px;
  bottom: 1px;
}
.global-sustainable-sol .row {
  align-items: center;
}
.global-sustainable-sol .row .col:nth-child(1) {
  width: 672px;
}
.global-sustainable-sol .row .col:nth-child(2) {
  width: 570px;
  height: 376px;
  position: relative;
  z-index: 1;
}
.global-sustainable-sol .row .col:nth-child(2) svg {
  position: absolute;
  bottom: -52px;
  left: -58px;
}
.global-sustainable-sol .row .col:nth-child(2)::before {
  content: "";
  background: linear-gradient(270deg, rgba(29, 71, 22, 0.7) 0%, rgba(29, 71, 22, 0) 95.33%);
  width: 100%;
  height: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.global-sustainable-sol .row .col:nth-child(2)::after {
  content: "";
  background: linear-gradient(270deg, rgba(29, 71, 22, 0.7) 0%, rgba(29, 71, 22, 0) 95.33%);
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.global-sustainable-sol .row .col:nth-child(2) img {
  width: 100%;
  height: 100%;
}
.global-sustainable-sol h2 {
  margin-bottom: 24px;
}
.global-sustainable-sol p {
  margin-bottom: 40px;
  color: #4A4748;
  width: 90%;
}

.ground-breaking {
  padding: 72px 0px;
}
.ground-breaking .content {
  text-align: center;
  width: 616px;
  margin: 0 auto 40px;
}
.ground-breaking .content h2 {
  margin-bottom: 24px;
}
.ground-breaking .content h2::before {
  bottom: -6px;
  width: 218.709px;
  background-repeat: no-repeat;
  background-size: cover;
  right: 28%;
}
.ground-breaking .content p {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
}
.ground-breaking .row {
  flex-wrap: wrap;
  -moz-column-gap: 39px;
       column-gap: 39px;
}
.ground-breaking .row .col {
  width: 600px;
  padding: 35px 32px;
  position: relative;
  z-index: 1;
}
.ground-breaking .row .col h4 {
  margin-bottom: 27px;
}
.ground-breaking .row .col::before {
  content: "";
  background-color: #FEF4F4;
  width: 100%;
  height: 297px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.ground-breaking .row .col div {
  display: flex;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
.ground-breaking .row .col div p {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
}
.ground-breaking .learnmore {
  justify-content: center;
}

.home-product {
  padding: 80px 0px;
}
.home-product::before, .home-product::after {
  display: none;
}
.home-product .dxlogo-bx {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 138px 40px 107px;
  background-color: #ffffff;
  border-radius: 56px 0px;
  margin-bottom: 80px;
}
.home-product .dxlogo-bx img {
  width: 369px;
  height: 105px;
}
.home-product .dxlogo-bx div {
  position: relative;
  z-index: 1;
  width: 505px;
}
.home-product .dxlogo-bx div svg {
  position: absolute;
  left: -40px;
  top: -31px;
  z-index: -1;
}
.home-product .buttom-box {
  position: relative;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border-radius: 400px 400px 0px 400px;
  margin-top: 80px;
  padding: 48px 56px 48px 64px;
}

.home-product .buttom-box div {
  position: relative;
  z-index: 1;
}
.home-product .buttom-box div h4 {
  font-size: 30px;
  margin-bottom: 24px;
  max-width: 600px;
  text-align: center;
  line-height: 1.3;
}

.home-product .buttom-box button {
  background-color: #fff;
  font-size: 16px;
  font-weight: 500;
  border: none;
}

.our-product {
  padding: 80px 0px;
  background-color: #F2F2F2;
  position: relative;
}
.our-product::before {
  content: "";
  background-color: #ffffff;
  border-radius: 0px 328px 0px 0px;
  width: 100px;
  height: 180px;
  position: absolute;
  left: 0;
  top: 135px;
}
.our-product::after {
  content: "";
  width: 99.854px;
  height: 203px;
  background-color: #ffffff;
  border-radius: 0px 0px 0px 999px;
  position: absolute;
  top: 0;
  right: 0;
}
.our-product .content {
  text-align: center;
  margin-bottom: 48px;
}
.our-product .content h2 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 30px;
}
.our-product .content p {
  width: 680px;
  margin: 0 auto;
}
.our-product .learnmore {
  justify-content: center;
}
.our-product .row {
  -moz-column-gap: 69px;
       column-gap: 69px;
  border-bottom: 3px solid #231F20;
  margin-bottom: 30px;
  align-items: center;
}
.our-product .row .col .learnmore {
  justify-content: left;
  margin-top: 16px;
}
/* .our-product .row .col ul {
  display: flex;
  width: 95%;
  margin: 0 auto;
  height: 395px;
  -o-object-fit: cover;
     object-fit: cover;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.our-product .row .col ul .resp-tab-item {
  position: relative;
} */
/* .our-product .row .col ul .resp-tab-active {
  width: 100%;
  position: relative;
} */
/* .our-product .row .col ul .resp-tab-active::before {
  content: "";
  opacity: 0.79;
  background: linear-gradient(180deg, rgba(235, 34, 39, 0) 55.85%, #EB2227 100%);
  width: 280px;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0px;
  z-index: 1;
  transform: skewX(-10deg);
} */
/* .our-product .row .col ul .resp-tab-active img {
  width: 280px !important;
} */
/* .our-product .row .col ul li {
  height: 100%;
} */
/* .our-product .row .col ul li img {
  width: 180px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.our-product .row .col ul li:nth-child(1) img {
  margin-left: 40px;
} */
.our-product .row .col ul {
  display: flex;
  padding: 0;
  padding-left: 74px;
  margin: 0 auto;
  height: 395px;
  -moz-column-gap: 8px;
  column-gap: 8px;
  overflow: hidden;
}
.our-product .row .col ul .resp-tab-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  transform: skew(-14deg);
  height: 388px;
  width: 150px;
  transition: width 500ms ease;
  bottom: -8px;
}
.our-product .row .col ul .resp-tab-active {
  width: 100%;
  width: 240px;
  position: relative;
}
.our-product .row .col ul li img {
  height: 388px;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 63%;
  width: auto;
  transform: translate(-50%, -50%) skew(14deg);
  transition: left 500ms ease;
}
.our-product .row .col ul .resp-tab-active img {
  left: 50%;
}
/* .our-product .row .col ul li:nth-child(2) {
  margin: 0px 20px;
}
.our-product .row .col ul li:nth-child(2) img {
  margin-left: -20px;
}
.our-product .row .col ul li:nth-child(3) img {
  margin-left: -20px;
} */
/* .our-product .row .col ul img {
  height: 100%;
  transform: skewX(-10deg);
  transition: width 500ms ease;
} */
.our-product .row .col ul img:nth-child(2) {
  display: none;
}
.our-product .row .col:nth-child(2) {
  width: 450px;
}
.our-product .row .col:nth-child(2) h3 {
  margin-bottom: 15px;
  width: 310px;
  text-align: left;
}
.our-product .row .col:nth-child(2) p {
  margin-bottom: 0px;
  text-align: left;
  width: 100%;
  margin: 0;
}
.our-product .row .col:nth-child(1) {
  width: 55%;
}
.our-product .row .col:nth-child(1) .old-img-grp {
  display: flex;
  width: 95%;
  margin: 0 auto;
}
.our-product .row .col:nth-child(1) .old-img-grp img {
  width: 100%;
  margin-left: -82px;
  height: 388px;
}
.our-product .row .col:nth-child(1) .old-img-grp img:nth-child(1) {
  margin-left: 34px;
}
.our-product .row .col .prod-tab-content p {
  font-size: 14px;
}

.better-tomorrow {
  padding: 80px 0px 64px;
  background-color: #F2F2F2;
}
.better-tomorrow .row {
  -moz-column-gap: 82px;
       column-gap: 82px;
}
.better-tomorrow .row h2 {
  margin-bottom: 24px;
}
.better-tomorrow .row .col:nth-child(2) img {
  border-radius: 0px 88px 0 88px;
}
.better-tomorrow .row ul li {
  display: flex;
  -moz-column-gap: 18px;
       column-gap: 18px;
  align-items: flex-start;
  padding-bottom: 18px;
}
.better-tomorrow .row ul li:nth-last-child(1) {
  padding-bottom: 0px;
}
.better-tomorrow .row ul li:nth-last-child(1) p {
  margin-bottom: 32px;
}
.better-tomorrow .row ul li p {
  margin-bottom: 0px;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
}
.better-tomorrow .row ul li h4 {
  margin-bottom: 12px;
}
.better-tomorrow .row p {
  margin-bottom: 37px;
  color: #4A4748;
}

.responsiblity-sustain {
  padding: 104px 0px 174px;
  background-image: url(../images/index/responsible-sustain-bg.png);
  color: #ffffff;
  position: relative;
  z-index: 1;
  display: none;
}
.responsiblity-sustain h2 {
  color: #ffffff;
}
.responsiblity-sustain h2::before {
  background-image: url(../images/icons/feature-vector.png);
  height: 10px;
  right: 51px;
  bottom: -6px;
  width: 135px;
}
.responsiblity-sustain p {
  color: #ffffff;
}
.responsiblity-sustain .row {
  -moz-column-gap: 80px;
       column-gap: 80px;
}
.responsiblity-sustain .row a {
  color: #ffffff;
}
.responsiblity-sustain .row .col:nth-child(1) {
  width: 499px;
}
.responsiblity-sustain .row .col:nth-child(2) {
  width: 664px;
}
.responsiblity-sustain .row .col:nth-child(2) p {
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  margin-bottom: 32px;
}
.responsiblity-sustain .row .col:nth-child(2) ul {
  display: flex;
  -moz-column-gap: 18px;
       column-gap: 18px;
  margin-bottom: 40px;
}
.responsiblity-sustain .row .col:nth-child(2) ul li span {
  display: block;
  width: 99%;
}

.latest-news {
  position: relative;
  padding: 64px 0px 88px;
  background-color: #ffffff;
  overflow-x: hidden;
}
.latest-news a {
  color: #231F20;
  font-weight: 500;
  text-decoration: underline;
}
.latest-news h2::before {
  width: 175px;
  height: 11px;
  background-image: url(../images/icons/info-vector.svg);
  right: 0;
  bottom: -11px;
}
.latest-news .row {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.latest-news .card {
  padding: 16px 16px 24px;
  border-radius: 32px 32px 0px 32px;
  background-color: #ffffff;
  border: 1px solid #D3D2D2;
}
.latest-news .card img {
  border-radius: 24px 24px 0px 24px;
  width: 100%;
  height: 240px;
}
.latest-news .card .card-body {
  padding: 16px 8px 0px;
  background-color: #ffffff;
}
.latest-news .card .card-body ul {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}
.latest-news .card .card-body ul li {
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  font-size: 12px;
  line-height: normal;
}
.latest-news .card .card-body ul li:nth-child(1) {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.72px;
}
.latest-news .card .card-body ul li:nth-child(2) {
  padding: 6px 12px;
  border-radius: 0px 12px;
  background-color: #F2F2F2;
  font-weight: 500;
}
.latest-news .card .card-body p {
  margin-bottom: 20px;
  font-weight: 500;
  color: #231F20;
  text-decoration: none;
  text-overflow: ellipsis;
  height: 72px;
  overflow: hidden;
}
.latest-news .card .card-body a {
  text-decoration: none;
}
.latest-news .news-slider {
  margin-bottom: 0px;
}
.latest-news .news-slider .swiper-wrapper {
  margin-bottom: 0px;
}
.latest-news .news-slider .swiper-pagination-1 {
  justify-content: center;
  display: none;
}

.careers-at {
  padding: 128px 0px 80px;
  color: #ffffff;
  background-color: #F2F2F2;
}
.careers-at .row .col:nth-child(1) {
  padding: 112px 64px 119px;
  border-radius: 0px 0px 0px 60px;
  background: #070E29;
  width: 704px;
}
.careers-at .row .col:nth-child(2) {
  width: 536px;
}
.careers-at .row .col:nth-child(2) img {
  width: 100%;
}
.careers-at .row .col h2 {
  font-size: 32px;
  line-height: 38px;
  font-weight: 600;
  margin-bottom: 34px;
  color: #ffffff;
  width: 337px;
  color: #F1F1F1;
}
.careers-at .row .col h2 svg {
  bottom: -10px;
}
.page-template-about-us .careers-at .row .col h2 svg path {
  transform: none;
}
.page-template-about-us .about-inclusive-feature::before {
	display: none;
}
.careers-at .row .col h2::before {
  width: 168px;
  height: 5px;
  right: 0;
  bottom: -3px;
  z-index: -1;
}
.careers-at .row .col p {
  color: #D3D2D2;
}
.careers-at .row .col p:nth-child(2) {
  margin-bottom: 16px;
}
.careers-at .row .col p:nth-child(3) {
  margin-bottom: 24px;
}
.careers-at .row .col img {
  border-radius: 0px 60px 0px 0px;
  height: 100%;
}
.careers-at .row .col a {
  color: #F2F2F2;
}
.careers-at .row .col a:hover {
  color: #C4131C;
}
.careers-at .row .col {
  position: relative;
}
/* .careers-at .row .col:nth-child(2)::before {
  background: linear-gradient(180deg, rgba(217, 217, 217, 0) 32.55%, rgba(200, 32, 49, 0.83) 118.24%);
  mix-blend-mode: hard-light;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 459.772px;
  content: "";
  z-index: 1;
} */

.aboutus-main {
  padding: 158px 0px;
/*   background-image: url(../images/aboutus/about-banner-main.png); */
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  color: #ffffff;
}
.aboutus-main::before {
  content: "";
  background: radial-gradient(280.5% 63.33% at 36.67% 58.24%, rgba(29, 29, 29, 0.8) 0%, #1D1D1D 51%);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  opacity: 0.48;
  mix-blend-mode: multiply;
}
.aboutus-main .content {
  text-align: center;
}
.aboutus-main .content h1 {
  width: 880px;
  margin: 0 auto 24px;
}
.page-template-about-us .aboutus-main .content h1 {
  max-width: 852px;
}
.aboutus-main .content p {
  font-size: 22px;
  line-height: 28px;
  font-weight: 400;
  max-width: 815px;
  margin: 0px auto;
}

.aboutus-mission {
  padding: 80px 0px;
}
.aboutus-mission p {
  margin-bottom: 0px;
}
.aboutus-mission h3 {
  margin-bottom: 10px;
}
.aboutus-mission h2::before {
  width: 205px;
}
.aboutus-mission .row {
  align-items: center;
  -moz-column-gap: 72px;
       column-gap: 72px;
}
.page-template-about-us .aboutus-mission .row .col:nth-child(1) {
  width: 785px;
}
.aboutus-mission .row .col:nth-child(2) div img {
  border-radius: 88px 0px;
  top: 0;
  width: 100%;
}

.about-president {
  padding: 0px 0px 80px;
}
.about-president h2 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0px auto 39px;
}
.about-president h2::before {
  width: 180px;
  right: 0;
}
.about-president h2 svg {
  bottom: -11px;
}
.about-president .row .col:nth-child(1) .name-board h5 {
  color: #4A4748;
  margin: 0px 0px 24px;
}
.about-president .row .col:nth-child(1) .name-board h3 {
  margin-bottom: 12px;
}
.about-president .row .col:nth-child(1) .justify-end {
  justify-content: end;
  margin-bottom: 32px;
}
.about-president .row .col:nth-child(1) h5 {
  margin: 12px 0px;
  width: -moz-fit-content;
  width: fit-content;
  color: #231F20;
}

.sustainability-action .row {
  -moz-column-gap: 32px;
       column-gap: 32px;
}
.sustainability-action .row .card {
  width: 33.3%;
  padding: 0px;
  border: none;
}
.sustainability-action .row .card img {
  height: 100%;
}
.sustainability-action .row .card .card-body p {
  font-weight: 400;
  color: #4A4748;
}

.celebrating-years {
  padding: 64px 0px 61px;
}
.celebrating-years::before {
  width: 100px;
  height: 142px;
  bottom: 0;
  top: inherit;
}
.celebrating-years .player video, .celebrating-years .player iframe {
  width: 800px;
  height: 400px;
}
.celebrating-years .content {
  margin-bottom: 32px;
}
.celebrating-years .content h2 {
  margin-bottom: 28px;
  width: -moz-fit-content;
  width: fit-content;
}
.celebrating-years .content h2::before {
  bottom: -8px;
  width: 173px;
}
.celebrating-years .content h2 svg {
  bottom: -11px;
}

.legacy-excellence {
  padding: 80px 0px;
  text-align: center;
}
.legacy-excellence h2 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 56px;
}
.legacy-excellence h2::before {
  width: 215px;
  height: 8px;
  bottom: -10px;
  right: 0;
}
.legacy-excellence h2 svg {
  bottom: -8px;
}
.legacy-excellence .learnmore {
  justify-content: center;
}
.legacy-excellence .row {
  margin-bottom: 40px;
}
.legacy-excellence .row .col {
  padding: 16px 51px 16px 50px;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  border-right: 1px solid #D3D2D2;
}
.legacy-excellence .row .col h3 {
  font-size: 48px;
  line-height: 56px;
  font-weight: 700;
  color: #C4131C;
}
.legacy-excellence .row .col:nth-child(1) {
  padding-left: 0;
}
.legacy-excellence .row .col:nth-last-child(1) {
  padding-right: 0px;
  border-right: none;
}

.our-values {
  padding: 80px 0px;
  background-color: #F2F2F2;
}
.our-values .content {
  text-align: center;
  margin-bottom: 32px;
}
.our-values .content h2 {
  margin-bottom: 24px;
}
.our-values .content h2 svg {
  bottom: -8px;
}
.our-values .content p {
  margin-bottom: 32px;
  width: 662px;
  margin: 0 auto;
}
.our-values .content p span,
.our-values .content p strong {
  color: #C4131C;
  font-weight: 700;
}
.our-values .row {
  -moz-column-gap: 40px;
       column-gap: 40px;
}
.our-values .row .col {
  width: 280px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  background: #FFF;
  box-shadow: 0px 8px 19px 0px rgba(0, 0, 0, 0.06);
}
.our-values .row .col:nth-child(-n+2) h5 {
  width: 67%;
  line-height: normal;
}
.our-values .row .col img {
  height: 64px;
  width: 64px;
}

.sustainability-action {
  padding-bottom: 0px;
  padding-top: 78px;
  overflow: hidden;
}
.sustainability-action .content {
  width: 607px;
  margin: 0 auto 52px;
  text-align: center;
}
.sustainability-action .content h2 {
  margin-top: 12px;
}
.sustainability-action .content h2::before {
  right: 14%;
  width: 138px;
}
.sustainability-action .row {
  margin-bottom: 0px;
}
.sustainability-action .card {
  background-color: #F2F2F2;
  width: 33%;
  padding: 0px;
  border: none;
}
.sustainability-action .card img {
  border-radius: 0px;
  height: 100%;
}
.sustainability-action .card .card-body {
  background-color: #F2F2F2;
  padding: 20px 32px 48px;
}
.sustainability-action .card .card-body h5 {
  margin-bottom: 12px;
}
.sustainability-action .card .card-body p {
  margin-bottom: 0px;
  font-weight: 400;
  color: #4A4748;
}
.sustainability-action .sus-act-slide .row {
  justify-content: center;
}
.sustainability-action .sus-act-slide .row .card {
  width: 31.9%;
}

.about-the-leadership {
  padding: 80px 0px 68px;
}
.about-the-leadership .content {
  text-align: center;
  margin-bottom: 32px;
}
.about-the-leadership .content h2 {
  margin-bottom: 40px;
}
.about-the-leadership .content h2 svg {
  bottom: -11px;
  left: 0%;
}
.about-the-leadership .content p {
  width: 60%;
  margin: 0 auto;
}
.about-the-leadership .player {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}
.about-the-leadership .player::before, .about-the-leadership .player::after {
  content: "";
  width: 104px;
  height: 105px;
  background-image: url(../images/aboutus/pink-border.svg);
  background-repeat: no-repeat;
  position: absolute;
}
.about-the-leadership .player::before {
  left: 0;
  top: 29px;
}
.about-the-leadership .player::after {
  right: 0;
  bottom: 38px;
}
.about-the-leadership .player video {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  border-radius: 16px;
}
.about-the-leadership h2 {
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0px auto 51px;
}
.about-the-leadership h2 svg {
  bottom: -8px;
  left: 0;
}
.about-the-leadership .team-slider-01 {
  margin-bottom: 68px;
}
.about-the-leadership .team-slider-01 .swiper-wrapper .col p:first-child {
  margin-top: 16px;
  margin-bottom: 4px;
}
.about-the-leadership .swiper-wrapper {
  -moz-column-gap: 25px;
       column-gap: 25px;
  justify-content: center;
}
.about-the-leadership .swiper-wrapper:nth-child(2) {
  margin-bottom: 64px;
}
.about-the-leadership .swiper-wrapper:nth-child(6) {
  margin-bottom: 0px;
}
.about-the-leadership .swiper-wrapper .col {
  width: 228px;
}
.about-the-leadership .swiper-wrapper .col img {
  border-radius: 40px 40px 40px 0px;
}
.about-the-leadership .swiper-wrapper .col p {
  font-weight: 700;
}
.about-the-leadership .swiper-wrapper .col p:nth-child(3) {
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #4A4748;
}

.about-inclusive-feature {
  border-radius: 0px 0px 100px 0px;
  padding: 80px 0px 110px;
  background: #070E29;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.about-inclusive-feature::before {
  content: "";
  width: 68px;
  height: 174px;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #ffffff;
  opacity: 0.1;
  border-radius: 0px 0px 0px 90px;
}
.page-template-solution .about-inclusive-feature .swiper-arrow {
  display: none;
}
.about-inclusive-feature p {
  color: #C0BFBF;
}
.about-inclusive-feature h2 {
  color: #ffffff;
  margin-bottom: 36px;
}
.about-inclusive-feature .row {
  -moz-column-gap: 56px;
       column-gap: 56px;
}
.about-inclusive-feature .row .col:nth-last-child(1) {
  width: 486px;
}
.about-inclusive-feature .row .col:nth-child(2) {
  width: 338px;
}
.about-inclusive-feature .row .col:nth-child(1) {
  width: 400px;
}
.about-inclusive-feature .row .col .font-14 {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
}
.about-inclusive-feature .row .col ul {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
  margin-bottom: 40px;
}
.about-inclusive-feature .row .col ul li {
  border-left: 2px solid #C4131C;
  padding: 4px 16px;
}
.about-inclusive-feature .row .col ul li p:nth-child(1) {
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.aboutus-global {
  padding: 80px 0px 0px;
}
.aboutus-global .row {
/*   margin-bottom: 80px; */
  border-radius: 60px 0px 60px 0px;
}
.aboutus-global .row:nth-child(1) {
  flex-direction: row-reverse;
  background-color: #FEF4F4;
}
.aboutus-global .row:nth-child(1) .col:nth-child(1) {
  border-radius: 0px 60px 60px 60px;
  padding: 43px 48px;
  background-color: #FEF4F4;
}
.aboutus-global .row:nth-child(1) .col:nth-child(1) h2 {
  color: #231F20;
  font-weight: 900;
  width: 71%;
}
.aboutus-global .row:nth-child(1) .col:nth-child(1) h2::before {
  right: 32%;
}
.aboutus-global .row:nth-child(1) .col:nth-child(1) p {
  color: #4A4748;
}
.aboutus-global .row:nth-child(1) .col:nth-child(2)::before {
  display: none;
}
.aboutus-global .row:nth-child(1) .col:nth-child(2) img {
  border-radius: 60px 0px 60px 0px;
}
.aboutus-global .row p:nth-child(4) {
  margin-bottom: 32px;
}
.aboutus-global .row p:nth-child(3) {
  margin-bottom: 16px;
}
.aboutus-global .row .learnmore {
  color: #231F20 !important;
}
.aboutus-global .row .learnmore svg path:nth-child(2) {
  stroke: #231F20;
}
.aboutus-global .careers-at .row {
  flex-direction: row;
  background-color: #F2F2F2;
  margin-bottom: 0px;
}
.aboutus-global .careers-at .row .col:nth-child(1) {
  border-radius: 0px 0px 0px 60px;
  background-color: #ffffff;
  padding: 103px 64px;
  border-top: 3px solid #C4131C;
}
.aboutus-global .careers-at .row .col:nth-child(1) p {
  margin-bottom: 32px;
}
.aboutus-global .careers-at .row .col:nth-child(1) h2 {
  font-size: 40px;
  margin-bottom: 32px;
  width: -moz-fit-content;
  width: fit-content;
}
.aboutus-global .careers-at .row .col:nth-child(1) h2::before {
  right: 0;
}
.aboutus-global .careers-at .row .col:nth-child(2) {
  background-color: #ffffff;
  border-radius: 0px 60px 0px 0px;
  width: 623px;
}
.aboutus-global .careers-at .row .col:nth-child(2)::before, .aboutus-global .careers-at .row .col:nth-child(2) img {
  border-radius: 0px 60px;
}

.ab-careerat .careers-at {
  padding: 80px 0px;
}

.guiding-philosophy {
  padding: 32px 0px 104px;
}
.guiding-philosophy .row {
  justify-content: space-between;
}
.guiding-philosophy .row .col:nth-child(2) {
  width: 56%;
}
.guiding-philosophy .row .col p {
  font-size: 18px;
  line-height: 30px;
  line-height: normal;
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
  color: #231F20;
}
.guiding-philosophy .row .col p:nth-last-child(1) {
  margin-bottom: 0px;
}
.guiding-philosophy .row .col p svg {
  position: absolute;
  left: -47px;
  top: -35px;
  z-index: -1;
}
.guiding-philosophy .row .col p span {
  color: #C4131C;
  font-weight: 700;
}

.our-gallery-about {
  padding: 80px 0px 64px;
}
.our-gallery-about .container {
  overflow: hidden;
}
.our-gallery-about .container .player {
  margin-bottom: 32px;
  position: relative;
}
.our-gallery-about .container .player::before {
  content: "";
  background-color: #ffffff;
  opacity: 20%;
  border-radius: 40px;
  width: 72px;
  height: 72px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.2);
}
.our-gallery-about .container .player img {
  border-radius: 0px;
}
.our-gallery-about .container .player video {
  height: 524px;
  -o-object-fit: cover;
     object-fit: cover;
}
.our-gallery-about .container .video-pagination {
  position: relative;
  z-index: 99;
  margin-bottom: 48px;
  justify-content: center;
  display: flex;
}
.our-gallery-about .container .row {
  justify-content: space-between;
  align-items: center;
}
.our-gallery-about .container .row h3, .our-gallery-about .container .row a {
  color: #ffffff;
}
.our-gallery-about .container .row .col:nth-child(1) {
  width: 934px;
}
.our-gallery-about .container .row .col:nth-child(1) h3 {
  background: linear-gradient(180deg, #FFF 0%, #ABAFC0 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 28px;
  line-height: 44px;
  font-weight: 500;
}
.our-gallery-about .container .row .col:nth-child(2) {
  width: 170px;
}

.company-story-main .content p {
  color: #ffffff;
}
.company-story-main .content h1 {
  width: 700px;
}

.our-company-president {
  padding: 80px 0px 83px;
}
.our-company-president .text-center {
  margin-bottom: 55px;
}
.our-company-president .row .col:nth-child(1) .d-flex:nth-child(3) {
  justify-content: end;
  margin-bottom: 32px;
}
.our-company-president .row .col:nth-child(1) ul {
  border-radius: 16px 16px 0px 0px;
  background: linear-gradient(180deg, rgba(255, 240, 242, 0.6) 0%, rgba(255, 240, 242, 0) 100%);
  padding: 24px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.our-company-president .row .col:nth-child(1) ul li {
  position: relative;
  padding-left: 20px;
  color: #231F20;
}
.our-company-president .row .col:nth-child(1) ul li::before {
  content: "";
  background-image: url(../images/icons/stoke-icon-list.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 5px;
  left: 0;
}
.our-company-president .row .col:nth-child(1) h4 {
  text-align: end;
  margin-bottom: 8px;
}
.our-company-president .row .col:nth-child(1) h5:nth-child(7) {
  text-align: end;
}
.our-company-president .row .col:nth-child(1) h5:nth-child(2) {
  margin: 12px 0px 20px;
  width: -moz-fit-content;
  width: fit-content;
  color: #231F20;
}
.our-company-president .row .col:nth-child(1) p:nth-child(6) {
  margin-bottom: 24px;
}
.our-company-president .row .col:nth-child(1) p:nth-child(8) {
  text-align: end;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  letter-spacing: 0.14px;
}

.vision-our-company {
  padding: 112px 0px 96px;
}
.vision-our-company span {
  color: #C4131C;
  font-size: 14px;
  line-height: 18px;
  font-weight: 900;
}
.vision-our-company p {
  width: 86%;
  margin-bottom: 0px;
}
.vision-our-company .row .col:nth-child(2)::before, .vision-our-company .row .col:nth-child(2)::after {
  display: none;
}
.vision-our-company .row .col:nth-child(2) img {
  border-radius: 0px 40px;
  width: 524px;
  margin: 0 auto;
  display: block;
}
.vision-our-company .row .col:nth-child(2) svg {
  left: inherit;
  right: 0;
}
.vision-our-company .row .col:nth-child(2) svg:nth-child(3) {
  top: -24px;
  bottom: inherit;
  right: -14px;
  left: inherit;
  width: 100%;
}

.our-stories-mission .row {
  flex-direction: row-reverse;
}
.our-stories-mission .row .col h2 {
  width: 80%;
}
.our-stories-mission .row .col p {
  margin-bottom: 24px;
}
.our-stories-mission .row .col p:nth-last-child(2) {
  color: #231F20;
  font-weight: 500;
  margin-bottom: 16px;
}
.our-stories-mission .row .row {
  -moz-column-gap: 16px;
       column-gap: 16px;
}
.our-stories-mission .row .row .col {
  width: 220px;
  padding: 40px 42px 61px 41px;
  border-radius: 184px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 240, 242, 0.6) 0%, rgba(255, 240, 242, 0) 100%);
}
.our-stories-mission .row .row .col p {
  margin-bottom: 8px;
}
.our-stories-mission .row .row .col p:nth-child(2) {
  font-weight: 700;
  color: #231F20;
}
.our-stories-mission .row .row .col p:nth-child(3) {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
}
.our-stories-mission .row .row .col img {
  margin-bottom: 8px;
}

.driving-innovation {
  padding: 96px 0px;
  position: relative;
  z-index: 1;
}
.driving-innovation .pos-svg {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.driving-innovation .row {
  -moz-column-gap: 102px;
       column-gap: 102px;
}
.driving-innovation .row .col:nth-child(1) {
  width: 496px;
}
.driving-innovation .row .col:nth-child(2) {
  width: 646px;
}
.driving-innovation .row .col p {
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
  margin-bottom: 16px;
}

.shared-purpose {
  padding: 80px 0px;
}
.shared-purpose .careers-at {
  padding: 0px;
}
.shared-purpose .careers-at .row {
  flex-direction: row-reverse;
}
.shared-purpose .careers-at .row .col:nth-child(2) {
  border-radius: 88px 0px 0px;
}
.shared-purpose .careers-at .row .col:nth-child(2) img {
  border-radius: 88px 0px;
}
.shared-purpose .careers-at .row .col:nth-child(1) {
  border-radius: 0px 0px 60px 0px;
  padding: 46px 40px 64px;
}
.shared-purpose .careers-at .row .col:nth-child(1) h2 {
  width: 81%;
}
.shared-purpose .careers-at .row .col:nth-child(1) p {
  margin-bottom: 16px;
}
.shared-purpose .careers-at .row .col:nth-child(1) p:nth-child(3) {
  margin-bottom: 32px;
}

.ourproduct-main {
  background-image: url(../images/our-product/our-product-banner.png);
}
.ourproduct-main .content p {
  color: #ffffff;
}

.since-product {
  padding: 80px 0px;
  position: relative;
  z-index: 1;
}
.since-product .before-svg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.since-product .after-svg {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.since-product .content {
  text-align: center;
  width: 835px;
  margin: 0 auto;
}
.since-product .content h6 {
  margin-bottom: 48px;
}

.ope-sec {
  padding: 80px 0px;
  background-color: #F2F2F2;
}
.ope-sec .content {
  text-align: center;
  margin-bottom: 54px;
}
.ope-sec .content h2 {
  margin-top: 8px;
}
.ope-sec .learnmore {
  justify-content: center;
}
.ope-sec .row:nth-child(2) {
  margin-bottom: 40px;
}
.ope-sec .row:nth-child(3) {
  -moz-column-gap: 48px;
       column-gap: 48px;
  margin-bottom: 32px;
}
.ope-sec .row:nth-child(3) .col {
  width: 30%;
}
.ope-sec .row:nth-child(3) .col p {
  color: #231F20;
}
.ope-sec .row .col {
 width: 285px;
/* 	clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);	  */
}
/* .ope-sec .row .col:nth-child(odd) {
clip-path: polygon(12% 0, 100% 0%, 94% 100%, 0% 100%);
}

.ope-sec .row .col:nth-child(even) {
  clip-path: polygon(12% 0, 100% 0%, 94% 100%, 0% 100%);
} */
.water-reivented {
  padding: 64px 0px 76px;
}
.water-reivented .row {
  -moz-column-gap: 77px;
       column-gap: 77px;
}
.water-reivented .row .col:nth-child(1) {
  width: 49%;
}
.water-reivented .row .col:nth-child(1) span {
  margin-bottom: 10px;
  font-weight: 900;
}
.water-reivented .row .col:nth-child(1) h2 {
  margin: 8px 0px 32px;
}
.water-reivented .row .col:nth-child(1) h2 span {
  margin-bottom: 0px;
}
.water-reivented .row .col:nth-child(1) p {
  margin-bottom: 16px;
}
.water-reivented .row .col:nth-child(1) p:nth-child(4) {
  margin-bottom: 32px;
}
.water-reivented .row .col:nth-child(2) {
  position: relative;
  z-index: 1;
}
.water-reivented .row .col:nth-child(2) img {
  border-radius: 50%;
}
.water-reivented .row .col:nth-child(2) img:nth-child(2) {
  position: absolute;
  right: -50%;
  top: 0;
  z-index: -1;
}
.water-reivented .row .col:nth-child(2) img:nth-child(3) {
  position: absolute;
  right: -45%;
  top: 44%;
  z-index: -1;
}

.yield-efficiency {
  padding: 0px 0px 80px;
}
.yield-efficiency .container {
  overflow: hidden;
}
.yield-efficiency .content {
  text-align: center;
  margin-bottom: 40px;
}
.yield-efficiency .content h2 {
  margin-top: 8px;
  margin-bottom: 20px;
}
.yield-efficiency .content p {
  max-width: 856px;
  margin: 0 auto;
}
.yield-efficiency .sliderTab {
  text-align: center;
  border-bottom: 1px solid #D3D2D2;
}
.yield-efficiency .sliderTab .swiper-slide {
  width: 50%;
  text-align: center;
}
.yield-efficiency .sliderTab h4 {
  color: #4A4748;
  padding-bottom: 24px;
  text-align: center;
}
.yield-efficiency .on h4 {
  color: #231F20;
  border-bottom: 1px solid #C4131C;
}
.yield-efficiency .row .col {
  width: 392px;
}
.yield-efficiency .row .col .card .card-body h5 {
  margin-bottom: 12px;
}
.yield-efficiency .content-1 .row .col {
  width: 602px;
}
.yield-efficiency #item2 .card img {
  height: 232px;
  -o-object-fit: cover;
     object-fit: cover;
}
.yield-efficiency #item2 .card .card-body {
  padding: 24px 37px;
}
.yield-efficiency #item2 .card .card-body h5 {
  margin-bottom: 10px;
}
.yield-efficiency .tab-content, .yield-efficiency .sliderContent {
  padding: 24px 0px 0px;
}
.yield-efficiency .tab-content p, .yield-efficiency .sliderContent p {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}
.yield-efficiency .tab-content .row, .yield-efficiency .sliderContent .row {
  border: none;
  -moz-column-gap: 32px;
       column-gap: 32px;
}
.yield-efficiency .tab-content .row .col .card, .yield-efficiency .sliderContent .row .col .card {
  border-radius: 40px 40px 0px 40px;
  border: 1px solid #D3D2D2;
  background: #F2F2F2;
}
.yield-efficiency .tab-content .row .col .card img, .yield-efficiency .sliderContent .row .col .card img {
  mix-blend-mode: multiply;
  display: block;
  margin: auto;
}
.yield-efficiency .tab-content .row .col .card .card-body, .yield-efficiency .sliderContent .row .col .card .card-body {
  text-align: left;
  padding: 24px 40px;
  background-color: #ffffff;
  border-radius: 0px 0px 0px 40px;
}
.yield-efficiency .tab-content .row .col .card .card-body p, .yield-efficiency .sliderContent .row .col .card .card-body p {
  width: 100%;
  text-align: left;
  margin: 0;
}
.yield-efficiency .swiper-container {
  width: 11240px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.ourproduct-whychoose .row {
  justify-content: space-between;
  align-items: center;
}
.ourproduct-whychoose .row .col:nth-child(1) {
  width: 49%;
  text-align: center;
}
.ourproduct-whychoose .row .col:nth-child(2) {
  width: 49%;
}
.ourproduct-whychoose .row .col:nth-child(2) ul li {
  padding: 4px 8px 4px 24px;
}
.ourproduct-whychoose .row .col:nth-child(2) .row .col:nth-child(1) {
  width: 100%;
}
.ourproduct-whychoose .row .col:nth-child(2) .row .col h6 {
  text-align: left;
  color: #ffffff;
  font-weight: 400;
}
.ourproduct-whychoose .row .col:nth-child(2) .row .col a {
  color: #ffffff;
}

.mufb-main {
  background-image: url(../images/mufb/mufb-main-banner.png);
}
.mufb-main .content p {
  color: #ffffff;
  max-width: 750px;
}
.mufb-main .content h1 {
  width: 78%;
}

.fine-bubbles {
  padding: 80px 0px;
}
.fine-bubbles .row .col:nth-child(1) {
  width: 53%;
}
.fine-bubbles .row .col:nth-child(1) p {
  color: #231F20;
  margin-bottom: 8px;
}
.fine-bubbles .row .col:nth-child(1) h2 {
  width: 58%;
  margin: 0px 0px 24px;
}
.fine-bubbles .row .col:nth-child(2) img {
  border: 4px solid #ffffff;
}
.fine-bubbles .row .col:nth-child(2) img:nth-child(1) {
  height: 266px;
  width: 266px;
}
.fine-bubbles .row .col:nth-child(2) img:nth-child(2) {
  width: 310px;
  height: 310px;
  right: -89%;
  top: 10%;
}
.fine-bubbles .row .col:nth-child(2) img:nth-child(3) {
  width: 188px;
  height: 188px;
  right: 0%;
  bottom: -10%;
  z-index: -2;
}

.our-mufb-pro {
  padding: 80px 0px;
}
.our-mufb-pro h2 {
  text-align: center;
  margin-bottom: 63px;
}
.our-mufb-pro .row {
  align-items: center;
  -moz-column-gap: 48px;
       column-gap: 48px;
  margin-bottom: 80px;
}
/* .our-mufb-pro .row:nth-child(odd){
	flex-direction:row-reverse;
} */
.our-mufb-pro .row .col {
  width: 50%;
  position: relative;
}
.our-mufb-pro .row .col img:nth-child(2) {
  position: absolute;
  right: 32px;
  bottom: 32px;
}
.our-mufb-pro .row h5 {
  margin: 24px 0px 16px;
}
.our-mufb-pro .row .title-board {
  margin-bottom: 16px;
  border-left: 2px solid #C4131C;
  padding-left: 16px;
}
.our-mufb-pro .row .title-board h4 {
  font-size: 24px;
}
.our-mufb-pro .row .title-board p {
  margin-top: 4px;
  font-weight: 700;
}
.our-mufb-pro .row p {
  font-weight: 500;
}
.our-mufb-pro .row ul li {
  position: relative;
  padding: 0px 0px 16px 26px;
  color: #4A4748;
  font-size: 14px;
  line-height: 22px;
}
.our-mufb-pro .row ul li::before {
  content: "";
  background-image: url(../images/icons/stoke-icon-list.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 5px;
  left: 0;
}

.whats-next {
  position: relative;
  padding: 80px 0px;
}
.whats-next::before {
  display: none;
}
.whats-next .before-svg {
  position: absolute;
  bottom: 0;
  left: 0;
}
.whats-next .after-svg {
  position: absolute;
  top: 0;
  right: 0;
}
.whats-next .content {
  text-align: center;
}
.whats-next .content h2 {
  margin-bottom: 40px;
}
.whats-next .content p {
  font-size: 18px;
  margin-bottom: 48px;
  color: #C0BFBF;
}
.whats-next .content a {
  color: #ffffff;
  justify-content: center;
}

.why-mufb-tech {
  padding: 79px 0px 80px;
}
.why-mufb-tech .row {
  flex-direction: row-reverse;
  align-items: center;
}
.why-mufb-tech .row h2 {
  margin-bottom: 40px;
}
.why-mufb-tech .row h2 svg {
  right: 0;
  left: inherit;
}
.why-mufb-tech .row p {
  margin-bottom: 24px;
}
.why-mufb-tech .row ul li {
  -moz-column-gap: 24px;
       column-gap: 24px;
  padding-bottom: 32px;
}
.why-mufb-tech .row ul li h4 {
  font-size: 24px;
  margin-bottom: 8px;
}

.career-main {
  background-image: url(../images/career/career-main-banner.png);
}
.career-main .content p {
  color: #ffffff;
  max-width: 650px;
}

.career-president {
  padding: 86px 0px 80px;
  position: relative;
}
.career-president .curve-pos {
  position: absolute;
  right: 0;
  top: 0;
}
.career-president .row .col:nth-child(1) .d-flex {
  width: 391px;
}
.career-president .row .col:nth-child(2) div {
  text-align: center;
}
.career-president .row .col:nth-child(2) div::before {
  width: 419.9px;
  height: 425.129px;
  left: 6%;
  top: 0;
}
.career-president .row .col:nth-child(2) div img {
  height: 420px;
  max-width: 420px;
}
.career-president .row .col h2 {
  margin: 0 0 32px;
}
.career-president .row .col .justify-end {
  margin-bottom: 16px;
  justify-content: end;
}
.career-president .row .col p {
  width: 85%;
}
.career-president .row .col .name-board h3 {
  margin-bottom: 12px;
}

.cop {
  display: none;
}

.career-opportunities {
  padding: 80px 0px;
}
.career-opportunities h2 {
  margin-left: auto;
  margin-right: auto;
}
.career-opportunities .main-row .col:nth-child(1) {
  width: 417px !important;
  overflow-y: scroll;
}
.career-opportunities .sliderTab .swiper-slide {
  width: 33%;
}
.career-opportunities .tab-content p, .career-opportunities .sliderContent p {
  text-align: left;
  width: 100%;
}
.career-opportunities .tab-content .row, .career-opportunities .sliderContent .row {
  -moz-column-gap: 0px;
       column-gap: 0px;
}
.career-opportunities .tab-content .row .col, .career-opportunities .sliderContent .row .col {
  border-right: 1px solid #D3D2D2;
  padding: 24px 40px;
  width: 33.3%;
}
.career-opportunities .tab-content .row .col:nth-last-child(1), .career-opportunities .sliderContent .row .col:nth-last-child(1) {
  border: none;
}
.career-opportunities .tab-content .row .col p, .career-opportunities .sliderContent .row .col p {
  margin-bottom: 12px;
}
.career-opportunities .tab-content .row .col p:nth-last-child(1), .career-opportunities .sliderContent .row .col p:nth-last-child(1) {
  margin-bottom: 24px;
}
.career-opportunities .tab-content .row .col h5, .career-opportunities .sliderContent .row .col h5 {
  margin-bottom: 12px;
}

.carrer-growth {
  padding: 65px 0px 0px;
}
.carrer-growth .container {
  overflow: hidden;
}
.carrer-growth h2::before {
  width: 148px;
  right: 50%;
}
.carrer-growth h2 svg {
  right: inherit;
  left: 0;
}
.carrer-growth .row:nth-child(1) {
  margin-bottom: 66px;
  -moz-column-gap: 0px;
       column-gap: 0px;
  align-items: end;
}
.carrer-growth .row:nth-child(1) .col:nth-child(1) {
  width: 42%;
}
.carrer-growth .row:nth-child(1) .col:nth-child(2) {
  width: 580px;
}
.carrer-growth .row .card {
  padding: 0px;
  border: none;
}
.carrer-growth .row .card img {
  border-radius: 0px;
}

.our-promise {
  padding: 80px 0px;
}
.our-promise .content {
  margin-bottom: 40px;
  text-align: center;
}
.our-promise .content h2 {
  margin-bottom: 32px;
}
.our-promise .content p {
  width: 51%;
  margin: 0 auto;
}
.our-promise .row {
  row-gap: 56px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.our-promise .row .col {
  width: 33%;
}
.our-promise .row .col img {
  margin-bottom: 12px;
}
.our-promise .row .col h5 {
  margin-bottom: 8px;
}
.our-promise .row .col p {
  width: 94%;
}

.our-employees {
  padding: 0px 0px 80px;
}
.our-employees h2 {
  margin-bottom: 56px;
  text-align: center;
}
.our-employees .box {
  border-radius: 96px 0px;
  border: 1px solid #C4131C;
  padding: 64px 134px;
  position: relative;
}
.our-employees .box h6 {
  margin-bottom: 40px;
  text-align: center;
  width: 99%;
  line-height: 30px;
}
.our-employees .box .next {
  right: -22px;
}
.our-employees .box .prev {
  left: -22px;
}
.our-employees .perfile {
  display: flex;
  justify-content: center;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
.our-employees .perfile img {
  border-radius: 50%;
}

.whychoose-maruyama {
  background-color: #F1F1F1;
}
.whychoose-maruyama h2, .whychoose-maruyama p {
  color: #231F20;
}
.whychoose-maruyama h2 svg {
  right: inherit;
  left: 0;
}
.whychoose-maruyama .row .col img {
  height: 100%;
  margin-left: -60px;
}
.whychoose-maruyama .row .col:nth-child(2) {
  width: 470px;
}
.whychoose-maruyama .row .col ul {
  margin-bottom: 0px;
  row-gap: 24px;
}
.whychoose-maruyama .row .col ul li p {
  color: #4A4748;
}
.whychoose-maruyama .row .col ul li p:nth-child(1) {
  color: #231F20;
}
.whychoose-maruyama .row .col ul li p:nth-child(2) {
  font-size: 14px;
  line-height: 22px;
}

.feature-together {
  padding: 80px 0px;
}
.feature-together::before {
  display: none;
}
.feature-together h2 svg {
  right: inherit;
  left: 0;
}
.feature-together .row {
  justify-content: space-between;
}
.feature-together .row .col:nth-child(1) {
  width: 495px;
}
.feature-together .row .col:nth-child(2) {
  width: 500px;
}
.feature-together .row .col form {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
.feature-together .row .col form .form-control, .feature-together .row .col form .form-select {
  padding: 0px 0px 11px 0px;
  color: #C0BFBF;
}
.feature-together .row .col form a {
  color: #ffffff;
}
.feature-together .row .col form .radio-group {
  position: relative;
}
.feature-together .row .col form .radio-group .outline-btn {
  padding: 8px 40px;
  border: 1px solid #C0BFBF;
  background-color: transparent;
  color: #C0BFBF;
}
.feature-together .row .col form .radio-group .radio {
  position: absolute;
  left: 0;
  top: 10px;
  visibility: hidden;
}
.feature-together .row .col form .radio-categories {
  display: flex;
  -moz-column-gap: 33px;
       column-gap: 33px;
}

.ope-main {
  padding: 154px 0px 163px;
}
.ope-main .content h3 {
  font-size: 40px;
}

.maruyama-advantages {
  background-color: #F2F2F2;
  padding: 80px 0px;
}
.maruyama-advantages .row .col:nth-child(2) {
  padding: 48px 63px 57px 57px;
  border-radius: 0px 0px 88px 0px;
}
.maruyama-advantages .row .col:nth-child(1) img {
  border-radius: 0px 88px 0px 88px;
  width: 100%;
  height: 100%;
}
.maruyama-advantages .row .col h2 {
  margin-top: 8px;
  margin-bottom: 32px;
}
.maruyama-advantages .row .col h2 svg {
  bottom: -8px;
}
.maruyama-advantages .row .col p {
  margin-bottom: 32px;
}
.maruyama-advantages .row .col ul li {
  padding: 0px 0px 37px 0px;
  display: flex;
  align-items: flex-start;
}
.maruyama-advantages .row .col ul li h5 {
  margin-bottom: 8px;
}
.maruyama-advantages .row .col ul li img {
  margin-right: 16px;
}
.maruyama-advantages .row .col ul li p {
  margin-bottom: 0px;
}
.maruyama-advantages .row .col ul li:nth-last-child(1) {
  padding-bottom: 0px;
}

.ope-main {
  background-image: url(../images/ope/ope-main-banner.png);
}
.ope-main .content h1 {
  margin-bottom: 0px;
}
.ope-main .content h3 {
  color: #ffffff;
  margin: 16px 0px 24px;
}
.ope-main .content h3 span {
  color: #C4131C;
}
.ope-main .content p {
  color: #ffffff;
}

.product-line-up {
  padding: 80px 0px 0px;
}
.product-line-up h2 {
  margin-bottom: 48px;
  text-align: center;
}
.product-line-up .master-advanced-left-tab.active h4 {
  font-weight: 700;
  color: #C4131C;
}
.product-line-up .master-advanced-left-tab h4 {
  font-weight: 500;
  color: #4A4748;
  border-bottom: 1px solid #EBEBEB;
  padding: 20px 0px;
}
.product-line-up .master-advanced-left-tab:nth-child(1) h4 {
  padding-top: 0px;
}
.product-line-up .line-up-explo {
  display: flex;
  -moz-column-gap: 50px;
       column-gap: 50px;
}
.product-line-up .line-up-explo .nav-tap {
  width: 344px;
}
.product-line-up .line-up-explo .nav-tap a h4 {
  font-size: 20px;
}
.product-line-up .line-up-explo .product-swiper {
  width: 830px;
}
.product-line-up .line-up-explo #item3 .row .col:nth-child(1) {
  padding: 38px 66px;
  text-align: center;
}
.product-line-up .line-up-explo #item4 .row .col:nth-child(1) {
  padding: 39px 52.823px 18.004px 53.824px;
  text-align: center;
}
.product-line-up .line-up-explo #item4 .row .col:nth-child(1) img {
  width: 100%;
}
.product-line-up .line-up-explo #item6 .row .col:nth-child(1) {
  padding: 43px 46px 18.004px 48px;
  text-align: center;
}
.product-line-up .line-up-explo #item6 .row .col:nth-child(1) img {
  width: 100%;
}
.product-line-up .line-up-explo .tab-content h5 {
  color: #4A4748;
  margin-bottom: 16px;
}
.product-line-up .line-up-explo .tab-content .row {
  align-items: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
  margin-bottom: 30px;
}
.product-line-up .line-up-explo .tab-content .row .col {
  width: 50%;
  position: relative;
  z-index: 1;
}
.product-line-up .line-up-explo .tab-content .row .col .product-slider {
  overflow: hidden;
}
.product-line-up .line-up-explo .tab-content .row .col svg {
  position: absolute;
  top: -35px;
  left: -26px;
  z-index: -1;
}
.product-line-up .line-up-explo .tab-content .row .col:nth-child(1) {
  border-radius: 56px 0px;
  border: 1px solid #F2F2F2;
/*   padding: 14px 79.9px 12px 82.37px; */
}
.product-line-up .line-up-explo .tab-content .row .col h3 {
  margin-bottom: 8px;
}
.product-line-up .line-up-explo .tab-content ul {
  display: flex;
  -moz-column-gap: 16px;
       column-gap: 16px;
  margin-bottom: 24px;
}
.product-line-up .line-up-explo .tab-content ul li {
  padding: 0px 0px 0px 26px;
  position: relative;
  width: 33%;
}
.product-line-up .line-up-explo .tab-content ul li::before {
  content: "";
  background-image: url(../images/icons/stoke-icon-list.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 5px;
  left: 0;
}
.product-line-up .line-up-explo .tab-content ul li p {
  color: #4A4748;
}
.product-line-up .line-up-explo .tab-content ul li p:nth-child(1) {
  font-weight: 700;
  color: #231F20;
  margin-bottom: 8px;
}
.product-line-up .line-up-explo .tab-content .best-title {
  border-left: 2px solid #C4131C;
  padding-left: 16px;
  font-weight: 500;
  line-height: normal;
  color: #231F20;
}
.product-line-up .line-up-explo .tab-content .best-title span {
  color: #C4131C;
}

.ultra-bubble-performance {
  padding: 96px 0px 80px;
}

.take-next {
  padding: 80px 0px;
}
.take-next .content h2 {
  margin-bottom: 40px;
}
.take-next .content p {
  font-size: 18px;
  font-weight: 500;
  width: 39%;
  margin: 0 auto 26px;
}

.relentless-sec {
  padding: 80px 0px;
}
.relentless-sec .content {
  margin-bottom: 68px;
  text-align: center;
}
.relentless-sec .row {
  -moz-column-gap: 48px;
       column-gap: 48px;
}
.relentless-sec .row .col:nth-child(1) {
  width: 55%;
}
.relentless-sec .row .col ul {
  display: grid;
  grid-template-columns: 50% 50%;
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 24px;
  margin-bottom: 24px;
}
.relentless-sec .row .col ul li p {
  margin-bottom: 0px;
}
.relentless-sec .row .col h3 {
  margin-bottom: 8px;
}
.relentless-sec .row .col h5 {
  margin-bottom: 15px;
  color: #4A4748;
}
.relentless-sec .row .col p {
  margin-bottom: 24px;
}
.relentless-sec .row .col img {
  border-radius: 0px 80px;
}

.innovation-main {
  background-image: url(../images/innovation/innov-main.png);
}
.innovation-main .content h1 {
  margin-bottom: 24px;
}

.hydrogen-revolution {
  background-color: #F2F2F2;
}
.hydrogen-revolution .row {
  flex-direction: row-reverse;
}
.hydrogen-revolution .row .col .mb-0 {
  margin-bottom: 0px;
}

.purposeful-innovation {
  padding: 0px 0px 80px 0px;
}
.purposeful-innovation .row:nth-child(2) {
  -moz-column-gap: 85px;
       column-gap: 85px;
  align-items: center;
  margin-bottom: 68px;
}
.purposeful-innovation .row:nth-child(3) {
  -moz-column-gap: 48px;
       column-gap: 48px;
}
.purposeful-innovation .row .col {
  width: 50%;
}
.purposeful-innovation .row .box {
  padding: 24px 32px;
  width: 33%;
}
.purposeful-innovation .row .box h3 {
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.purposeful-innovation .row .box h3::before {
  content: "";
  background-image: url(../images/innovation/heading-bg.svg);
  background-repeat: no-repeat;
  width: 90px;
  height: 90px;
  position: absolute;
  left: -32px;
  top: -16px;
  z-index: -2;
}

.res-innovation-everystep {
  padding: 80px 0px;
  background-image: url("../images/innovation/inno-everystep-bg.png");
  background-repeat: no-repeat;
  position: relative;
}
.res-innovation-everystep::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.5;
  background: linear-gradient(253deg, rgba(255, 255, 255, 0) 58.26%, rgba(255, 255, 255, 0.7) 87.73%), linear-gradient(180deg, rgba(255, 255, 255, 0) 60.56%, #FFF 80.11%);
}
.res-innovation-everystep ul {
  display: flex;
  flex-direction: column;
  row-gap: 56px;
}
.res-innovation-everystep ul li {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 21px;
       column-gap: 21px;
}
.res-innovation-everystep ul li h5 {
  margin-bottom: 16px;
}
.res-innovation-everystep ul li p {
  color: #4A4748;
}
.res-innovation-everystep .row {
  align-items: center;
}
.res-innovation-everystep .row .col:nth-child(1) p {
  width: 75%;
}
.res-innovation-everystep h2 {
  margin: 8px 0px 28px;
}

.greener-tomorrow {
  padding: 80px 0px 64px;
}
.greener-tomorrow .content {
  text-align: center;
  margin-bottom: 44px;
}
.greener-tomorrow .row {
  justify-content: center;
  -moz-column-gap: 56px;
       column-gap: 56px;
  flex-wrap: wrap;
  row-gap: 24px;
}
.greener-tomorrow .row .col {
  width: 30%;
  text-align: center;
}
.greener-tomorrow .row .col img, .greener-tomorrow .row .col h5 {
  margin-bottom: 16px;
}

.join-moment h2 {
  margin-bottom: 40px;
}
.join-moment h6 {
  margin-bottom: 16px;
  color: #C0BFBF;
}
.join-moment h5 {
  margin-bottom: 24px;
  color: #D3D2D2;
}
.join-moment .content {
  margin-bottom: 0px;
}

.feature-vision {
  padding: 0px 0px 104px;
  position: relative;
}
.feature-vision .before-svg {
  position: absolute;
  bottom: 0;
  left: 0;
}
.feature-vision img {
  border-radius: 0px 96px;
  margin-bottom: 104px;
  width: 100%;
}
.feature-vision .row {
  justify-content: space-between;
}
.feature-vision .row .col:nth-child(2) {
  width: 42%;
}
.feature-vision .row .col p {
  color: #231F20;
}

.news-main {
  background-image: url(../images/news/news-main.png);
}
.news-main .content {
/*   width: 60%; */
  margin: 0 auto;
}
.news-main .content h1 {
  margin-bottom: 24px;
  max-width: 50%;
}

.press-releases {
  background-color: #ffffff;
  padding: 80px 0px;
}
.press-releases .container {
  position: relative;
}
.press-releases .swiper-arrow {
  top: 0;
}
.press-releases .prev {
  right: 80px;
}
.press-releases .next {
  right: 0;
}
.press-releases .content {
  text-align: center;
  margin-bottom: 52px;
}
.press-releases .content h2 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-top: 8px;
}
.press-releases .content h2::before {
  width: 180px;
}
.press-releases .card {
  padding: 16px 16px 24px;
  border-radius: 32px 32px 0px 32px;
}
.press-releases .card img {
  border-radius: 24px 24px 0px 24px;
}
.press-releases .card .card-body {
  padding: 16px 8px 0px;
}
.press-releases .card .card-body ul {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}
.press-releases .card .card-body ul li {
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  font-size: 12px;
  line-height: normal;
}
.press-releases .card .card-body ul li:nth-child(1) {
  font-weight: 900;
}
.press-releases .card .card-body ul li:nth-child(2) {
  padding: 6px 12px;
  border-radius: 0px 12px;
  background-color: #ffffff;
  font-weight: 500;
}
.press-releases .card .card-body p {
  margin-bottom: 20px;
  font-weight: 500;
  color: #231F20;
}

.featured-media {
  background-color: #070E29;
  border-radius: 0px 0px 100px 0px;
}
.featured-media .content {
  margin-bottom: 24px;
}
.featured-media .content h2 {
  margin-bottom: 44px;
}
.featured-media .prev, .featured-media .next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #4A4748;
  position: absolute;
  top: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(-50%);
}
.featured-media .prev svg, .featured-media .next svg {
  width: 25px;
  height: 25px;
}
.featured-media .next {
  right: 9%;
}
.featured-media .prev {
  left: 12%;
}
.featured-media .video-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 21px 0px 0px;
}
.featured-media .video-pagination .swiper-pagination-bullet {
  border-radius: 50%;
}
.featured-media .video-pagination .swiper-pagination-bullet:nth-child(1) {
  width: 10px;
  height: 10px;
}
.featured-media .video-pagination .swiper-pagination-bullet:nth-child(2) {
  width: 8px;
  height: 8px;
}
.featured-media .video-pagination .swiper-pagination-bullet:nth-child(n+4) {
  width: 6px;
  height: 6px;
}
.featured-media h2 {
  color: #ffffff;
}
.featured-media h4 {
  color: #ffffff;
}
.featured-media::before, .featured-media::after {
  opacity: 0.1;
  width: 100px;
  height: 121.214px;
}

.insights-blogs {
  padding: 56px 0px 83px;
  background-color: #F1F1F1;
}
.insights-blogs .content h2 {
  margin-top: 8px;
}
.insights-blogs .swiper-arrow {
  top: 33px;
  z-index: 99;
}
.insights-blogs .prev {
  right: 80px;
}
.insights-blogs .next {
  right: 0;
}
.insights-blogs .container {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.insights-blogs .content {
  margin-bottom: 48px;
  text-align: center;
}
.insights-blogs .card .card-body {
  padding: 16px 16px 0px;
}
.insights-blogs .card .card-body p {
  color: #231F20;
  margin-top: 16px;
}
.insights-blogs .card .card-body p:nth-child(1) {
  color: #4A4748;
  margin-bottom: 16px !important;
}

.news-cards .card .imgthumb {
  position: relative;
}
.news-cards .card .imgthumb img {
  width: 100%;
}
.news-cards .card .imgthumb p {
  position: absolute;
  right: 16px;
  bottom: 16px;
  font-size: 12px;
  line-height: normal;
  width: -moz-fit-content !important;
  width: fit-content !important;
  font-weight: 900;
  letter-spacing: 0.72px;
  text-transform: uppercase;
  padding: 4px 12px;
  background-color: #ffffff;
  color: #C4131C;
}
.news-cards .card .card-body {
  padding: 0px 16px;
}
.news-cards .card .card-body p {
  margin-bottom: 16px;
}
.news-cards .card .card-body p:nth-child(1) {
  font-weight: 700;
  margin-bottom: 0px;
}

.missan-update .content {
  width: 63%;
  margin: 0 auto 54px;
  text-align: center;
}
.missan-update .content h2 {
  margin-bottom: 54px;
}
.missan-update .content h2 svg {
  bottom: -11px;
}
.missan-update .before-svg {
  position: absolute;
  bottom: 0;
  left: -10px;
  width: 100px;
  height: 106px;
}
.missan-update .card img {
  border-radius: 48px 48px 0 48px;
}
.missan-update .card .imgthumb p {
  display: none;
}
.missan-update .card .card-body p {
  color: #D3D2D2;
  font-size: 14px;
  margin-top: 16px;
}
.missan-update .card .card-body p:nth-child(1) {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}
.missan-update .card .card-body p:nth-child(2) {
  color: #C0BFBF;
  margin-bottom: 21px;
}
.missan-update .card .card-body p.font-14 {
  margin-top: 0px;
  margin-bottom: 16px;
}
.missan-update .card .card-body a {
  color: #ffffff;
  display: flex;
  align-items: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
  font-weight: 500;
  text-decoration: underline;
}

.solution-main {
  background-image: url(../images/solution/solution-main.png);
}
.solution-main .content p {
  color: #ffffff;
}

.trilored-solution h2 {
  margin-bottom: 60px;
}
.trilored-solution .row {
  margin-bottom: 64px;
}
.trilored-solution .row:nth-last-child(1) {
  margin-bottom: 0px;
}
.trilored-solution .row .col .title-board {
  margin-bottom: 40px;
  padding-left: 20px;
}
.trilored-solution .row .col .title-board h5 {
  margin: 0px;
}
.trilored-solution .row .col .title-board h3 {
  margin-top: 8px;
}
.trilored-solution .row .col ul li {
  display: flex;
  align-items: flex-start;
  padding: 0px 0px 32px;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
.trilored-solution .row .col ul li::before {
  display: none;
}
.trilored-solution .row .col ul li h5 {
  margin: 0px;
  color: #231F20;
}
.trilored-solution .row .col ul li img {
  border-radius: 0px;
}
.trilored-solution .row .col ul li div h5 {
  margin-bottom: 12px;
}
.trilored-solution .row .col img {
  border-radius: 0 80px;
}

.real-result-field {
  padding: 0px 0px 80px;
}
.real-result-field h2 {
  width: 45%;
  margin: 0 auto;
}
.real-result-field .master-advanced-left-tab h4 {
  font-weight: 400;
}
.real-result-field .active h4 {
  font-weight: 900;
}
.real-result-field .sliderTab a h4 {
  font-weight: 400;
}
.real-result-field .sliderTab .swiper-slide-thumb-active a h4 {
  font-weight: 600;
}
.real-result-field .swiper-container .row .col h6 {
  line-height: 30px;
}
.real-result-field .swiper-container .row .col ul li div h5 {
  margin-bottom: 8px;
}
.real-result-field .swiper-container .row .col ul li div p {
  font-size: 18px;
}
.real-result-field .tab-content .row, .real-result-field .sliderContent .row {
  align-items: center;
}
.real-result-field .tab-content .row .col, .real-result-field .sliderContent .row .col {
  padding: 16px;
  border: none;
}
.real-result-field .tab-content .row .col h6, .real-result-field .sliderContent .row .col h6 {
  margin-bottom: 32px;
}
.real-result-field .tab-content .row .col ul li, .real-result-field .sliderContent .row .col ul li {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
.real-result-field .tab-content .row .col ul li h5, .real-result-field .sliderContent .row .col ul li h5 {
  margin-bottom: 0px;
}
.real-result-field .tab-content .row .col ul li p, .real-result-field .sliderContent .row .col ul li p {
  width: 92%;
  margin-left: 0px;
}
.real-result-field .tab-content .row .col:nth-child(1), .real-result-field .sliderContent .row .col:nth-child(1) {
  width: 48%;
}
.real-result-field .tab-content .row .col:nth-child(1) img, .real-result-field .sliderContent .row .col:nth-child(1) img {
  width: 100%;
  border-radius: 0px 56px;
}
.real-result-field .tab-content .row .col:nth-child(2), .real-result-field .sliderContent .row .col:nth-child(2) {
  padding: 0px 0px 0px 23px;
  width: 53%;
}

.save-crops .container {
  overflow: hidden;
  position: relative;
}
.save-crops .swiper-arrow {
  z-index: 99;
}
.save-crops .next {
  right: 0px;
}
.save-crops .prev {
  left: 0px;
}
.save-crops .maruyama-before-slider {
  margin-bottom: 23px;
}
.save-crops .maruyama-before-slider .swiper-slide {
  justify-content: center;
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.save-crops .maruyama-before-slider .card {
  width: -moz-fit-content;
  width: fit-content;
}
.save-crops .maruyama-before-slider .card:nth-child(odd) .font-14 {
  color: #ffffff;
}
.save-crops .maruyama-before-slider .card:nth-child(odd) img {
  border-radius: 16px 0px 0px 16px;
}
.save-crops .maruyama-before-slider .card .font-14 {
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.84px;
  margin-bottom: 13px;
}
.save-crops .maruyama-before-slider .card img {
  width: 100%;
  border-radius: 0px 16px 16px 0px;
}
.save-crops .maruyama-before-slider .card .card-body {
  text-align: center;
}
.save-crops .maruyama-before-slider .card .card-body p {
  font-weight: 400;
  width: 349px;
  margin: 0 auto;
}
.save-crops .content {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}
.save-crops .content .d-flex {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  align-items: center;
}
.save-crops .content h5 {
  margin: 12px 0px;
}
.save-crops .content .justify-end {
  justify-content: end;
  margin-bottom: 8px;
}
.save-crops .content .name-board p {
  font-weight: 700;
  margin-bottom: 0px;
}
.save-crops .content .name-board p:nth-child(1) {
  color: #ffffff;
  margin-bottom: 8px;
}
.save-crops .content .name-board p:nth-child(2) {
  font-weight: 500;
}

.getin-touch .before-svg {
  position: absolute;
  left: 0;
  bottom: 0;
}
.getin-touch h2 svg {
  left: inherit;
  right: 0;
}
.getin-touch .row {
  -moz-column-gap: 80px;
       column-gap: 80px;
}
.getin-touch .row .col:nth-child(2) {
  width: 847px;
}
.getin-touch .row .col:nth-child(1) {
  width: 316px;
}
.getin-touch .row .col form {
  flex-direction: row;
  flex-wrap: wrap;
  -moz-column-gap: 41px;
       column-gap: 41px;
}

.getin-touch .row .col:nth-last-child(-n+2) {
  width: 100%;
}
.getin-touch br{
	display:none;
}

.info-main {
  padding: 89px 0px;
  background-image: url(../images/location-info/info-main-banner.png);
}
.info-main .content {
  text-align: center;
}

.our-offices-factories {
  padding: 80px 0px 77px;
}
.our-offices-factories #map {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.our-offices-factories h2 {
  text-align: center;
  margin-bottom: 51px;
}
.our-offices-factories .main-row {
  border: none;
}
.our-offices-factories .main-row img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.our-offices-factories .main-row .col:nth-child(1) {
  width: 390px;
  padding: 0px 24px 18px;
  border: 1px solid #F1F1F1;
  border-left: none;
  border-right: none;
}
.our-offices-factories .main-row .col:nth-child(2) {
  width: 70%;
}
.our-offices-factories .main-row .row .col {
  width: 50% !important;
  text-align: center;
  border: none;
}
.our-offices-factories .main-row .row .col:nth-child(1) {
  padding: 0px;
}
.our-offices-factories .main-row .tab-content ul li {
  padding: 24px 0px;
  border-bottom: 1px solid #D3D2D2;
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
.our-offices-factories .main-row .tab-content ul li:nth-child(1) {
  padding-top: 0px;
}
.our-offices-factories .main-row .tab-content ul li p {
  margin-bottom: 0px;
  color: #231F20;
}
.our-offices-factories .main-row .tab-content ul li p:nth-child(1) {
  font-weight: 700;
  color: #231F20;
}
.our-offices-factories .main-row .tab-content ul li p:nth-child(2) {
  color: #4A4748;
}
.our-offices-factories .main-row .tab-content ul li p:nth-last-child(2) {
  margin-bottom: 12px;
}
.our-offices-factories .main-row .tab-content ul li p a {
  text-decoration: none;
}
.our-offices-factories .main-row .tab-content ul li a {
  color: #231F20;
  text-decoration: underline;
  font-weight: 500;
}
.our-offices-factories .main-row .tab-content ul li p.bold {
  font-weight: 500;
}
.our-offices-factories .main-row .tab-content ul li a img {
  margin-right: 8px;
}

.find-a-dealer {
  padding: 0px 0px 82px;
}
.find-a-dealer .content {
  text-align: center;
  margin-bottom: 40px;
}
.find-a-dealer .content h2 {
  margin-bottom: 24px;
}
.find-a-dealer .content p {
  margin-bottom: 32px;
}
.find-a-dealer .content form {
  display: flex;
  -moz-column-gap: 40px;
       column-gap: 40px;
  width: 840px;
  margin: 0 auto;
}
.find-a-dealer .content form div {
  width: 50%;
}
.find-a-dealer .content form div .form-select {
  color: #4A4748;
  border-color: #4A4748;
  border-radius: 8px 8px 0px 0px;
  padding: 9px 16px 14px;
}
.find-a-dealer .row {
  -moz-column-gap: 41px;
       column-gap: 41px;
}
.find-a-dealer .row .col {
  border: 1px solid #C4131C;
  border-radius: 24px 0px;
  padding: 18px 24px 24px;
  width: 50%;
}
.find-a-dealer .row .col ul li {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
.find-a-dealer .row .col ul li p {
  margin-bottom: 16px;
}
.find-a-dealer .row .col ul li p:nth-child(1) {
  font-weight: 700;
  color: #231F20;
  margin-bottom: 18px;
}
.find-a-dealer .row .col ul li p a {
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  color: #4A4748;
}

.maruyama-feature-events {
  padding: 0px 0px 80px;
}
.maruyama-feature-events .content {
  text-align: center;
  margin-bottom: 33px;
}
.maruyama-feature-events .content h2 {
  margin-bottom: 24px;
}
.maruyama-feature-events .row {
  -moz-column-gap: 46px;
       column-gap: 46px;
  align-items: center;
}
.maruyama-feature-events .row .col {
  width: 50%;
}
.maruyama-feature-events .row .col:nth-child(1) {
  width: 53%;
}
.maruyama-feature-events .row .col:nth-child(1) img {
  border-radius: 48px 48px 0px 48px;
}
.maruyama-feature-events .row .col ul {
  display: flex;
  flex-direction: column;
  row-gap: 18px;
  margin-bottom: 32px;
}
.maruyama-feature-events .row .col ul li {
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 900;
}
.maruyama-feature-events .row .col h3 {
  font-size: 32px;
  line-height: 38px;
  margin-bottom: 32px;
}

.cmpy-history {
  padding: 192px 0px;
}

.cmpy-history-sec {
  padding: 103px 0px 0px;
}
.cmpy-history-sec .container {
  position: relative;
  z-index: 1;
}
.cmpy-history-sec .rocket {
  position: absolute;
  width: 80px;
  top: -45px;
  left: 12.1%;
  height: 80px;
  background-color: #FEF4F4;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.cmpy-history-sec .row {
  flex-wrap: wrap;
  position: relative;
}
.cmpy-history-sec .row::before {
  content: "";
  height: 100%;
  width: 2px;
  position: absolute;
  left: 15.3%;
  top: 0;
  border-right: 2px dotted transparent;
  bottom: 0;
  border-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMiIgaGVpZ2h0PSI5NjQ4IiB2aWV3Qm94PSIwIDAgMiA5NjQ4IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNMSAxTDEgOTY0NyIgc3Ryb2tlPSIjQzBCRkJGIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWRhc2hhcnJheT0iMSA3Ii8+Cjwvc3ZnPgo=");
  border-image-slice: 1;
}
.cmpy-history-sec .row .full-width {
  width: 84% !important;
  text-align: end;
  padding-bottom: 52px;
}
.cmpy-history-sec .row .align-self {
  align-self: center;
  position: relative;
  width: 189px;
  height: 65px;
}
.cmpy-history-sec .row .align-self h3 {
  margin-left: 0;
  position: absolute !important;
  right: -33%;
  background-color: #C4131C;
  color: #ffffff;
}
.cmpy-history-sec .row .align-self h3::before {
  display: none;
}
.cmpy-history-sec .row .col {
  padding-bottom: 40px;
}
.cmpy-history-sec .row .col:nth-child(odd) {
  padding-right: 67px;
}
.cmpy-history-sec .row .col:nth-child(odd) h3 {
  padding: 16px 32px;
  border-radius: 24px 0px;
  border: 1px solid #C4131C;
  position: relative;
}
.cmpy-history-sec .row .col:nth-child(odd) h3::before {
  content: "";
  background-image: url(../images/icons/year-pin.svg);
  background-repeat: no-repeat;
  width: 79.001px;
  height: 24px;
  position: absolute;
  right: -80px;
  top: 16px;
}
.cmpy-history-sec .row .col:nth-child(even) {
  padding-left: 64px;
  width: 75%;
  align-self: center;
}
.cmpy-history-sec .row .col:nth-child(even) p {
  margin-top: 8px;
}
.cmpy-history-sec .row .col:nth-child(even) img {
  margin-top: 24px;
}
.cmpy-history-sec .row .col:nth-child(even) h3 {
  font-weight: 700;
  line-height: normal;
}
.cmpy-history-sec .row .col:nth-child(even) h3 span {
  color: #C4131C;
}
.cmpy-history-sec .row .col h3.celebrate {
  border: none;
  position: relative;
}
.cmpy-history-sec .row .col h3.celebrate::after {
  content: "";
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTI2IiBoZWlnaHQ9IjYzIiB2aWV3Qm94PSIwIDAgMTI2IDYzIiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNMSA2MS42NTg5VjEuMzYzNzFDMSAxLjE4MjE0IDEuMTc0NjYgMS4wNTE2NiAxLjM0ODc3IDEuMTAzMTZDNDEuNTg4IDEzLjAwNSA4NC40MTIgMTMuMDA1IDEyNC42NTEgMS4xMDMxNkMxMjQuODI1IDEuMDUxNjYgMTI1IDEuMTgyMTQgMTI1IDEuMzYzN1Y2MS42NTg5QzEyNSA2MS44MjcgMTI0LjgzNiA2MS45NDYgMTI0LjY3NiA2MS44OTM1Qzg0LjYxMjcgNDguNzI3IDQxLjM4NzMgNDguNzI3IDEuMzI0MDMgNjEuODkzNUMxLjE2NDMyIDYxLjk0NiAxIDYxLjgyNyAxIDYxLjY1ODlaIiBmaWxsPSIjRkVGNEY0IiBzdHJva2U9IiNDNDEzMUMiIHN0cm9rZS13aWR0aD0iMiIvPgo8L3N2Zz4K");
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 1px;
  z-index: -1;
}
.cmpy-history-sec .row .upcoming-arrow {
  position: absolute;
  bottom: 15px;
  margin-left: 173px;
  display: block;
  width: 37px;
  height: 60px;
  animation:
  bounce 1s infinite ease-in-out,
  opacityPulse 1s infinite ease-in-out;
}
@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    10% {
        transform: translateY(3px);
    }

    20% {
        transform: translateY(6px);
    }

    30% {
        transform: translateY(9px);
    }

    40% {
        transform: translateY(12px);
    }

    50% {
        transform: translateY(15px);
    }

    60% {
        transform: translateY(18px);
    }

    70% {
        transform: translateY(21px);
    }

    80% {
        transform: translateY(24px);
    }

    90% {
        transform: translateY(27px);
    }

    100% {
        transform: translateY(30px);
    }
}

@keyframes opacityPulse {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 0.1;
    }

    20% {
        opacity: 0.2;
    }

    30% {
        opacity: 0.3;
    }

    40% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.5;
    }

    60% {
        opacity: 0.6;
    }

    70% {
        opacity: 0.7;
    }

    80% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.9;
    }

    100% {
        opacity: 1;
    }
}
.our-offices-factories .tab-content {
  display: none;
}
.our-offices-factories .tab-content.active {
  display: block;
}
.our-offices-factories .tab h4 {
  font-weight: 400;
  padding-bottom: 8px;
  cursor: pointer;
  color: #231F20;
  line-height: normal;
  font-size: 16px;
}
.our-offices-factories .tab.active h4 {
  border-bottom: 2px solid #C4131C;
  font-weight: 700;
}
.page-template-location-information .career-opportunities .main-row .col .row .col:nth-child(1) {
  padding: 0;
}
.gallery-taps {
  padding: 41px 0px 48px;
}
.gallery-taps .btn {
  padding: 8px 16px;
  border-radius: 48px;
  background-color: #F2F2F2;
  border: none;
  outline: none;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
}
.gallery-taps .active {
  border: 1px solid #C4131C;
  background-color: #ffffff;
  color: #C4131C !important;
  line-height: 20px;
}
.gallery-taps nav, .gallery-taps .swich-tap {
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  justify-content: center;
}
.gallery-taps .swich-tap {
  -moz-column-gap: 16px;
       column-gap: 16px;
  margin-bottom: 16px;
}
.gallery-taps .swich-tap .btn {
  font-weight: 900;
  letter-spacing: 0.72px;
  text-transform: uppercase;
  color: #231F20;
}
.gallery-taps nav {
  margin-bottom: 27px;
}
.gallery-taps nav .btn {
  color: #4A4748;
}




.gallery-grid iframe{
	width:100%;
	height:100%;
}


.gallery-main .content h1 {
  margin-bottom: 16px;
}
.gallery-main .content p {
  color: #ffffff;
  max-width: 535px;
}

.blog-main {
  padding: 80px 0px 0px;
}
.blog-main .content {
  text-align: center;
}
.blog-main .content h1 {
  padding: 0px 60px;
  color: #231F20;
  margin-top: 8px;
  margin-bottom: 32px;
}
.blog-main .content h1 span {
  position: relative;
}
.blog-main .content h1 span svg {
  position: absolute;
  bottom: -8px;
  right: 0;
  width: 100%;
}
.blog-main .content p {
  color: #231F20;
  max-width: 100%;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
}
.blog-main img {
  padding: 56px 0px;
}

.blog-contents .container {
  max-width: 940px;
  margin: 0 auto;
}
.blog-contents ul {
  list-style-type: disc;
  margin-bottom: 16px;
}
.blog-contents ul li {
  list-style-position: inside;
  padding: 0px 0px 16px;
}
.blog-contents ul li:nth-last-child(1) {
  padding: 0px;
}
.blog-contents .msg {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0px 0px 16px;
}
.blog-contents .justify-end {
  justify-content: end;
}
.blog-contents .d-flex {
  display: flex;
}

.blog01 div p {
  margin-bottom: 16px;
}
.blog01 div p:nth-last-child(1) {
  margin-bottom: 0px;
}
.blog01 div:nth-child(1) ul li {
  padding: 0px 0px 8px;
}
.blog01 h3 {
  margin-bottom: 24px;
}
.blog01 img {
  padding: 56px 0px 32px;
}
.blog01 .assignments {
  padding: 0px 0px 40px;
}
.blog01 ol {
  margin-bottom: 24px;
}
.blog01 ol li {
  padding: 0px 0px 16px 0px;
  list-style-position: inside;
}
.blog01 ol li:nth-last-child(1) {
  padding: 0px 0px 0px;
}
.blog01 p, .blog01 li {
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  color: #4A4748;
}
.blog01 .space--40 h5 {
  margin: 12px 0px;
}
.blog01 .space--40 p {
  margin-bottom: 24px;
}

.other-blogs {
  padding: 104px 0 105px;
  background: #fff;
}
.other-blogs h2 {
  margin: 0px auto 52px;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  width: 100%;
}
.other-blogs .blog-card {
  width: 31%;
}
.other-blogs .blog-card .blog-img {
  position: relative;
  border-radius: 0px 56px;
}
.other-blogs .blog-card .blog-img img {
  width: 100%;
  display: block;
  border-radius: 0px 56px;
}
.other-blogs .blog-card .blog-img .blog-date {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: #ffffff;
  color: #fff;
  font-size: 12px;
  line-height: normal;
  font-weight: 900;
  color: #C4131C;
  padding: 4px 12px;
}
.other-blogs .blog-card .blog-img .blog-count {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff4b4b;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 8px;
  display: none;
}
.other-blogs .blog-card .blog-content {
  padding: 15px;
}
.other-blogs .blog-card .blog-content .blog-title {
  font-size: 16px;
  line-height: normal;
  font-weight: 700;
  margin-bottom: 16px;
}
.other-blogs .blog-card .blog-content .learn-more {
  font-size: 14px;
  color: red;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.other-blogs .blog-card .blog-content .learn-more::after {
  content: "→";
  margin-left: 5px;
}

.page-template-blog4 .blog-main .container {
  max-width: 940px;
}
.page-template-blog4 .blog-main .content h1 {
  padding: 0px;
}
.page-template-blog4 .blog-main .content p {
  margin-bottom: 16px;
}
.page-template-blog4 .blog-main .content p:nth-last-child(1) {
  margin-bottom: 0px;
}
.page-template-blog4 .blog-contents p, .blg04 .blog-contents li {
  font-size: 18px;
  line-height: 30px;
  color: #4A4748;
}
.page-template-blog4 .blog-contents h3 {
  margin-bottom: 24px;
  color: #231F20;
}
.page-template-blog4 .blog-contents .twstock-hytro-engi {
  display: flex;
  align-items: center;
  -moz-column-gap: 32px;
       column-gap: 32px;
  margin-bottom: 40px;
}
.page-template-blog4 .blog-contents .twstock-hytro-engi h5 {
  text-align: center;
}
.page-template-blog4 .blog-contents .twstock-hytro-engi .flex-content h3 {
  margin-bottom: 24px;
}
.page-template-blog4 .blog-contents .ope-products {
  padding: 0px 0px 56px;
}
.page-template-blog4 .blog-contents .ope-products h5 {
  text-align: center;
  margin-bottom: 40px;
}
.page-template-blog4 .blog-contents .ope-products p {
  margin-bottom: 40px;
}
.page-template-blog4 .blog-contents .ope-products img {
  margin: auto;
  display: flex;
  justify-content: center;
}
.page-template-blog4 .blog-contents .innovation-everystep p, .blg04 .blog-contents .innovation-everystep li {
  margin-bottom: 16px;
}
.page-template-blog4 .blog-contents .innovation-everystep h4 {
  margin-bottom: 24px;
}
.page-template-blog4 .blog-contents .innovation-everystep div {
  padding: 24px 0px 40px;
}
.page-template-blog4 .blog-contents .innovation-everystep div h5 {
  text-align: center;
  margin-bottom: 56px;
}
.page-template-blog4 .blog-contents .innovation-everystep div img {
  display: flex;
  justify-content: center;
  margin: auto;
}
.page-template-blog4 .blog-contents .realworld-app {
  padding: 0px 0px 36px;
}
.page-template-blog4 .blog-contents .realworld-app ul {
  margin: 16px 0px;
}
.page-template-blog4 .blog-contents .carbon-neutrality p {
  margin-bottom: 16px;
}
.page-template-blog4 .blog-contents .carbon-neutrality p:nth-last-child(1) {
  margin-bottom: 0px;
  width: 75%;
}

.page-template-blog2 .blog-contents div {
  margin-bottom: 40px;
}
.page-template-blog2 .blog-contents div:nth-last-child(1) {
  margin-bottom: 0px;
}
.page-template-blog2 .blog-contents div h3 {
  margin-bottom: 24px;
}
.page-template-blog2 .blog-contents div p {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 16px;
}
.page-template-blog2 .blog-contents div p:nth-last-child(1) {
  margin-bottom: 0px;
}
.blog-contents .imgcontent {
  margin-bottom: 32px;
}
.imgcontent figure img {
  border-radius: 0 24px 0 0;
  padding: 0;	
}
.imgcontent figcaption, .imgcontent h5 {
  margin-top: -5px;
  border-radius: 0 0 0 24px;
  background-color: #FDE9E9;
  padding: 24px 24px;
  text-align: center;
}
.page-template-blog2 .blog-contents .blog-vision {
  display: flex;
  flex-direction: column;
}
.page-template-blog2 .blog-contents .blog-vision p {
  margin: 0px;
}
.page-template-blog2 .blog-contents .blog-vision div {
  margin-bottom: 0px;
}
.page-template-blog2 .blog-contents .vision-box {
  margin: 24px 0px 24px !important;
  padding: 40px;
  border-radius: 48px 0;
  background: #FEF4F4;
}
.page-template-blog2 .blog-contents .vision-box .msg {
  margin-bottom: 40px;
}
.page-template-blog2 .blog-contents .vision-box .msg:nth-last-child(1) {
  margin-bottom: 0px;
}
.page-template-blog2 .blog-contents .vision-box .msg h5 {
  font-size: 18px;
  margin: 12px 0px;
}
.page-template-blog2 .blog-contents .vision-box p {
  margin-bottom: 24px;
  color: #231F20;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-style: normal;
  overflow-x: hidden;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

h1, .font-56 {
  font-size: 56px;
  line-height: 64px;
  font-weight: 900;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

h2 {
  font-size: 40px;
  line-height: 50px;
  font-weight: 900;
  color: #231F20;
  position: relative;
  z-index: 1;
}
h2 span {
  position: relative;
}

h3 {
  font-size: 24px;
  line-height: 31px;
  font-weight: 900;
  color: #231F20;
}

h4 {
  font-size: 22px;
  line-height: 28px;
  font-weight: 900;
  color: #231F20;
}

h5 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
}

h6 {
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  color: #231F20;
}

.font-14 {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
}

p {
  color: #4A4748;
}

.text-center {
  text-align: center;
  margin-bottom: 39px;
}

.learnmore {
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  font-weight: 500;
  color: #231F20;
}
.learnmore svg path:nth-child(1) {
  transition: transform 500ms ease;
}
.learnmore:hover {
  color: #C4131C;
  text-decoration: underline;
}
.learnmore:hover svg path:nth-child(1) {
  transform: translate(5px, -5px);
}

.primary-title {
  color: #C4131C;
  font-size: 14px;
  line-height: 22px;
  font-weight: 900;
  letter-spacing: 0.84px;
  text-transform: uppercase;
}

.row {
  display: flex;
}

.bg-white {
  background-color: #ffffff;
}

.w-100 {
  width: 100%;
}

.mob-show {
  display: block;
}
.page-template-about-us .welcome-to-maruyama-sec .row .col:nth-child(2) div::before,
.page-template-about-us .our-gallery-about .container .player::before {
	display: none !important;
}
@media screen and (max-width: 1024px) {
  #humburger.active .humburger {
    display: none;
  }
  #humburger.active .humburger-close {
    display: block;
  }
  .humburger-body {
    overflow: hidden;
  }
  .humburger-body header nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9;
    background-color: #ffffff;
    padding: 15px 24px;
  }
  .navmenu-1 {
    position: fixed;
    left: -100%;
    top: 62px;
    display: flex;
    flex-direction: column-reverse !important;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding: 24px 24px 30px;
    text-align: start;
    z-index: 9;
    align-items: flex-start !important;
    justify-content: flex-end;
    background-color: #ffffff;
    border-top: 1px solid #C4131C;
    box-sizing: border-box;
    transition: 0.3s;
  }
  .navmenu-1 ul {
    flex-direction: column;
    align-items: start;
    padding: 0px;
  }
  .navmenu-1 ul .land-sel {
    display: none;
  }
  .navmenu-1 ul li {
    padding: 16px 0px;
  }
  .navmenu-1 ul li a {
    font-size: 16px;
    line-height: 20px;
    color: #231F20;
    display: block;
  }
  .navmenu-1 ul li a::before {
    display: none;
  }
  .navmenu-1 ul li a svg {
    display: none;
  }
  .navmenu-1 ul li .dropdown-menu {
    padding: 0px 0px;
    position: static;
    display: block;
    visibility: visible;
    background-color: #ffffff;
  }
  .navmenu-1 ul li .dropdown-menu ul {
    row-gap: 0px;
    padding: 0px;
    background-color: transparent;
    border: transparent;
  }
  .navmenu-1 ul li .dropdown-menu ul li {
    padding: 16px 0px 16px;
  }
  .navmenu-1 ul li .dropdown-menu ul li:nth-child(1) {
    padding-top: 0px;
  }
  .navmenu-1 ul li .dropdown-menu ul li:nth-last-child(1) {
    padding-bottom: 0px;
  }
  header nav .navmenu-1 ul li.dropdown .dropdown-menu ul {
    margin: 0;
  }
  header nav .navmenu-1 ul li.dropdown a {
    display: none;
  }
  header nav .navmenu-1 ul li.dropdown .dropdown-menu a {
    display: block;
  }
  .navmenu-1 ul li .dropdown-menu ul li a {
    width: 100%;
  }
  .navmenu-1 ul li .dropdown-menu ul li a svg {
    display: none;
  }
  .navmenu-1.active {
    left: 0;
    gap: 0;
  }
  section {
    overflow: hidden;
  }
  .swiper-container h4 {
    width: -moz-max-content;
    width: max-content;
  }
  .container {
    max-width: 960px;
    margin: 0 auto;
  }
  .learnmore {
    font-size: 16px;
  }
  header nav {
    align-items: center;
  }
  header nav #humburger {
    display: block;
  }
  header nav .navmenu-1 ul {
    width: 100%;
  }
  header nav .navmenu-1 ul li {
    width: 100%;
	  padding-right: 0;
  }
  header nav .navmenu-1 ul li a::after {
    content: "";
    background-image: url(../images/icons/mob-menu-arrow-left.svg);
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 4px;
    right: 0px;
  }
  .creating-the-next-feature h2:nth-child(1)::after {
    right: 7.5%;
  }
  header nav ul li:hover a:hover p {
    transform: translateY(0px);
  }
  header nav ul li a p {
    display: inline;
  }
  .ground-breaking .row {
    flex-wrap: wrap;
  }
  .ground-breaking .row .col div img {
    width: 50%;
  }
  .our-product .row .col ul .resp-tab-item img {
    width: 120px;
  }
  .our-product .row .col ul .resp-tab-item:nth-child(1) img {
    margin-left: 30px;
  }
  .our-product .row .col ul .resp-tab-active::before {
    width: 200px;
  }
  .our-product .row .col ul .resp-tab-active img {
    width: 200px !important;
  }
  .better-tomorrow .row .col {
    width: 50%;
  }
  .better-tomorrow .row .col h2 {
    font-size: 38px;
    line-height: 43px;
  }
  .better-tomorrow .row .col:nth-child(2) img {
    width: 100%;
  }
  .careers-at {
    padding: 80px 0px;
  }
  .careers-at .row .col img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .welcome-to-maruyama-sec .row .col:nth-child(2) div img {
    width: 290px;
  }
  .welcome-to-maruyama-sec .row .col:nth-child(2) div::before {
    width: 290px;
    height: 321px;
    top: 24px;
    left: -11px;
  }
  .welcome-to-maruyama-sec .row .col:nth-child(2) .pos-img {
    width: 250px;
  }
  .home-product .dxlogo-bx {
    padding: 30px 20px;
  }
  .home-product .dxlogo-bx img {
    width: 30%;
    height: auto;
  }
  .home-product .buttom-box div {
    width: 50%;
  }
  .aboutus-mission .row .col:nth-child(2) div::before {
    display: none;
  }
  .aboutus-mission .row .col:nth-child(2) div img {
    width: 100%;
  }
  .our-president .row .col:nth-child(2) div::before {
    content: "";
    background-image: url(../images/index/circle-red-stroke.svg);
    background-repeat: no-repeat;
    width: 400px;
    height: 512px;
    top: -5px;
    left: -13px;
  }
  .our-values .row {
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
  .our-values .row .col {
    padding: 30px 24px;
  }
  .sustainability-action .card .card-body {
    background-color: #F2F2F2;
    padding: 20px 10px 20px;
  }
  .sustainability-action .card .card-body h5 {
    font-size: 18px;
    line-height: 14px;
  }
  .about-the-leadership .player::before, .about-the-leadership .player::after {
    width: 51px;
    height: 51px;
    background-size: contain;
  }
  .whychoose-maruyama .row {
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  .whychoose-maruyama .row .col {
    width: 50%;
  }
  .whychoose-maruyama .row .col:nth-child(2) {
    width: 33% !important;
  }
  .whychoose-maruyama .row .col:nth-child(2) img {
    width: 345px;
    margin-left: -30px;
    height: auto;
  }
  .whychoose-maruyama .row .col:nth-child(1) {
    width: 50% !important;
  }
  .carrer-growth .row:nth-child(1) {
    -moz-column-gap: 0px;
         column-gap: 0px;
    justify-content: space-between;
  }
  .carrer-growth .card .card-body h5 {
    font-size: 20px;
    line-height: 28px;
  }
  .maruyama-feature-events .row .col:nth-child(1) img {
    width: 100%;
  }
  .getin-touch .row .col:nth-child(1) {
    width: 50%;
  }
  .real-result-field .swiper-container h4 {
    width: -moz-fit-content;
    width: fit-content;
    padding: 0px 30px 24px;
  }
  .real-result-field .sliderTab .swiper-slide {
    width: -moz-max-content;
    width: max-content;
  }
  .ope-sec .row:nth-child(3) {
    -moz-column-gap: 32px;
         column-gap: 32px;
  }
  .ope-sec .row:nth-child(3) .col {
    width: 100%;
  }
  .ope-sec .row .col {
    width: 225px;
  }
  .ope-sec .row .col img {
    width: 280px;
  }
  .water-reivented .row {
    align-items: center;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
  .water-reivented .row .col:nth-child(2) img:nth-child(1) {
    width: 290px;
  }
  .water-reivented .row .col:nth-child(2) img:nth-child(2) {
    right: -40%;
    top: -40%;
  }
  .water-reivented .row .col:nth-child(2) img:nth-child(3) {
    right: -41%;
    bottom: -13%;
  }
  .purposeful-innovation .row {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .purposeful-innovation .row .box {
    padding: 20px;
  }
  .greener-tomorrow .row {
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
  .feature-vision .row .col:nth-child(2) {
    width: 55%;
  }
  .product-line-up .line-up-explo .product-swiper {
    width: 677px;
  }
  .cmpy-history-sec .row .full-width {
    width: 80% !important;
  }
}
@media screen and (max-width: 991px) {
  section {
    overflow: hidden;
  }
  .container {
    max-width: 720px;
  }
  .creating-the-next-feature h2:nth-child(1) {
    text-align: left;
  }
  .creating-the-next-feature h2:nth-child(1)::before {
    width: 100%;
  }
  .creating-the-next-feature h2:nth-child(1)::after {
    top: 21px;
    right: 0;
  }
  .creating-the-next-feature h2:nth-child(1) span {
    margin-left: 32px;
    font-size: 48px;
    line-height: 56px;
  }
  .home-product .dxlogo-bx {
    padding: 30px 20px;
  }
  .home-product .dxlogo-bx img {
    width: 30%;
    height: auto;
  }
  .home-product .dxlogo-bx div {
    width: 56%;
  }
  .home-product .buttom-box {
    flex-wrap: wrap;
  }
  .home-product .buttom-box div {
    width: 60%;
  }
  .home-product .buttom-box button {
    padding: 48px 48px 48px 48px;
  }
  .aboutus-main .content h1 {
    width: 100%;
  }
  .hero-main h1 {
    width: 100%;
    font-size: 40px;
    line-height: 48px;
  }
  .hero-main p {
    width: 100%;
  }
  .our-product {
    z-index: 1;
  }
  .our-product::after {
    z-index: -1;
  }
  .our-product .row {
    flex-wrap: wrap;
    border: none;
    row-gap: 30px;
  }
  .our-product .row .col {
    width: 100% !important;
  }
  .our-product .row .col:nth-child(2), .our-product .row .col:nth-child(2) {
    width: 100% !important;
  }
  .our-product .row .col ul {
    border-bottom: 1px solid #231F20;
  }
  .our-product .row .col ul .resp-tab-item img {
    width: 188px;
  }
  .our-product .row .col ul .resp-tab-active::before {
    width: 249px !important;
  }
  .our-product .row .col ul .resp-tab-active img {
    width: auto !important;
  }
  .our-values .content {
    text-align: center;
  }
  .our-values .content h2 {
    margin: 0px auto 24px;
  }
  .careers-at .row .col:nth-child(1) {
    padding: 40px 30px;
  }
  .our-president .row .col:nth-child(2) div::before {
    content: "";
    background-image: url(../images/index/circle-red-stroke.svg);
    background-repeat: no-repeat;
    width: 398px;
    height: 255px;
    top: -5px;
    left: -10px;
  }
  .aboutus-mission .row .col h2 {
    margin-bottom: 15px;
  }
  .aboutus-mission .row .col:nth-child(2) {
    height: 363px;
  }
  .aboutus-mission .row .col:nth-child(2) img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .player img:nth-child(1) {
    width: 100%;
  }
  .legacy-excellence .row .col {
    padding: 0px 20px 0px 20px;
  }
  .our-values .row {
    flex-wrap: wrap;
    row-gap: 15px;
  }
  .our-values .row .col {
    width: 48%;
  }
  .about-the-leadership .content p {
    width: 85%;
  }
  .about-the-leadership .row {
    -moz-column-gap: 0px;
         column-gap: 0px;
    justify-content: unset;
  }
  .aboutus-mission .row .col h2 {
    width: -moz-fit-content !important;
    width: fit-content !important;
  }
  .aboutus-mission .row .col:nth-child(2) {
    width: 86%;
  }
  .aboutus-mission .row .col:nth-child(2) div {
    height: 100%;
  }
  .about-inclusive-feature .row {
    flex-wrap: wrap;
    -moz-column-gap: 28px;
         column-gap: 28px;
    row-gap: 28px;
  }
  .about-inclusive-feature .row .col:nth-child(1) {
    width: 48%;
  }
  .about-inclusive-feature .row .col:nth-child(2) {
    width: 48%;
  }
  .about-inclusive-feature .row .col:nth-child(3) {
    width: 100%;
  }
  .about-inclusive-feature .row .col ul {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .about-inclusive-feature .row .col ul li {
    width: 50%;
  }
  .aboutus-global .row:nth-child(1) .col:nth-child(1) h2 {
    width: 100%;
  }
  .our-gallery-about .container .player video {
    height: auto;
  }
  .career-president .row .col:nth-child(1) .d-flex {
    width: auto;
  }
  .career-president .row .col:nth-child(2) div::before {
    width: 341px;
  }
  .career-president .row .col:nth-child(2) div img {
    height: auto;
  }
  .career-president .row .col p {
    width: 100%;
  }
  .career-president .row .col:nth-child(1), .career-president .row .col:nth-child(2) {
    width: 50% !important;
  }
  .whychoose-maruyama .row {
    flex-wrap: wrap;
    row-gap: 30px;
  }
  .our-employees .box {
    padding: 64px 64px;
  }
  .feature-together .row {
    flex-wrap: wrap;
    row-gap: 30px;
  }
  .feature-together .row .col:nth-child(1), .feature-together .row .col:nth-child(2) {
    width: 100%;
  }
  .carrer-growth .content-warp {
    flex-wrap: wrap;
    row-gap: 15px;
  }
  .carrer-growth .content-warp .col:nth-child(2) {
    width: 90% !important;
  }
  .carrer-growth .row:nth-child(1) {
    row-gap: 24px;
  }
  .carrer-growth .row:nth-child(1) .col:nth-child(1) {
    width: 70%;
  }
  .our-promise .row .col {
    width: 50%;
  }
  .find-a-dealer .content form {
    width: 100%;
  }
  .find-a-dealer .row {
    flex-wrap: wrap;
    -moz-column-gap: 20px;
         column-gap: 20px;
    row-gap: 20px;
  }
  .find-a-dealer .row .col {
    width: 48%;
  }
  .maruyama-feature-events .row .col:nth-child(1) {
    height: 341px;
  }
  .maruyama-feature-events .row .col:nth-child(1) img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .maruyama-feature-events .row .col h3 {
    margin-bottom: 20px;
  }
  .maruyama-feature-events .row .col ul {
    margin-bottom: 15px;
  }
  .maruyama-feature-events .row .col h5 {
    margin-bottom: 10px;
  }
  .real-result-field .sliderContent .row .col:nth-child(1) {
    width: 48%;
    height: 390px;
    padding: 0px;
  }
  .real-result-field .sliderContent .row .col:nth-child(1) img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .yield-efficiency .sliderContent .row .col .card img {
    width: 100%;
  }
  .ourproduct-whychoose .row .col:nth-child(1), .ourproduct-whychoose .row .col:nth-child(2) {
    width: 100%;
  }
  .since-product .content {
    width: 100%;
  }
  .res-innovation-everystep .row .col:nth-child(1) {
    width: 100%;
  }
  .relentless-sec .row {
    flex-direction: column-reverse;
    row-gap: 30px;
  }
  .relentless-sec .row .col:nth-child(2) {
    margin: 0 auto;
  }
  .relentless-sec .row .col:nth-child(1) {
    width: 100%;
  }
  .purposeful-innovation .row:nth-child(3) {
    flex-wrap: wrap;
    -moz-column-gap: 0px;
         column-gap: 0px;
  }
  .purposeful-innovation .row:nth-child(3) .box {
    width: 50%;
  }
  .fine-bubbles .row {
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
  .fine-bubbles .row .col:nth-child(1) h2 {
    width: 100%;
  }
  .fine-bubbles .row .col:nth-child(2) img:nth-child(1) {
    width: 240px;
    height: 240px;
  }
  .fine-bubbles .row .col:nth-child(2) img:nth-child(2) {
    width: 250px;
    height: 250px;
  }
  .our-mufb-pro .row .col img:nth-child(1) {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .pink-box {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .pink-box .content h5 {
    width: 100%;
  }
  .product-line-up .line-up-explo {
    flex-wrap: wrap;
  }
  .product-line-up .line-up-explo .nav-tap {
    width: 100%;
    display: flex;
    align-items: end;
    overflow-x: scroll;
  }
  .product-line-up .line-up-explo .nav-tap h4 {
    width: -moz-max-content;
    width: max-content;
    padding: 15px 16px;
  }
  .product-line-up .line-up-explo .product-swiper {
    width: 100%;
  }
  .ope-sec .row .col {
    width: 165px;
  }
  .ope-sec .row .col img {
    width: 205px;
  }
  .water-reivented {
    padding: 120px 0px 80px;
  }
  .water-reivented .row {
    flex-direction: column-reverse;
    align-items: start;
    row-gap: 80px;
  }
  .water-reivented .row .col:nth-child(1) {
    width: 100%;
  }
  .water-reivented .row .col:nth-child(2) img:nth-child(1) {
    width: 390px;
  }
  .water-reivented .row .col:nth-child(2) img:nth-child(2) {
    top: 0;
  }
  .gallery-taps .gallery-item img {
    height: 100%;
  }
  .cmpy-history-sec .rocket {
    top: -61px;
    left: 0.1%;
    height: 80px;
  }
  .cmpy-history-sec .row {
    position: relative;
    z-index: 1;
    row-gap: 50px;
    padding-left: 80px;
  }
  .cmpy-history-sec .row::before {
    content: "";
    height: 100%;
    width: 1px;
    position: absolute;
    left: 40px;
    top: 0;
    border-right: 2px dotted transparent;
    bottom: 0;
    border-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMiIgaGVpZ2h0PSI5NjQ4IiB2aWV3Qm94PSIwIDAgMiA5NjQ4IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNMSAxTDEgOTY0NyIgc3Ryb2tlPSIjQzBCRkJGIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWRhc2hhcnJheT0iMSA3Ii8+Cjwvc3ZnPgo=");
    border-image-slice: 1;
  }
  .cmpy-history-sec .row .align-self h3 {
    right: inherit;
    left: 0px;
  }
  .cmpy-history-sec .row .align-self:nth-child(1) {
    margin-top: 90px;
  }
  .cmpy-history-sec .row img {
    width: 100%;
  }
  .cmpy-history-sec .row .full-width {
    width: 70% !important;
  }
  .cmpy-history-sec .row .full-width svg {
    width: 56px;
    height: 56px;
  }
  .cmpy-history-sec .row .col {
    border: none !important;
    padding-bottom: 0px;
  }
  .cmpy-history-sec .row .col:nth-child(odd) {
    border-left: none !important;
    border-right: 0px;
  }
  .cmpy-history-sec .row .col:nth-child(odd) h3 {
    width: -moz-fit-content;
    width: fit-content;
    z-index: 1;
  }
  .cmpy-history-sec .row .col:nth-child(odd) h3::before {
    width: 70px;
    height: 26px;
    background-size: contain;
    position: absolute;
    right: 100px;
    top: 16px;
    z-index: -1;
    transform: rotate(180deg);
  }
  .cmpy-history-sec .row .col:nth-child(even) {
    padding-left: 32px;
  }
  footer {
    padding: 50px 0px 40px;
  }
  footer .row {
    display: flex;
    flex-wrap: wrap;
    row-gap: 30px;
  }
  footer .row .col:nth-child(1) {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .container {
    padding: 0px 20px;
  }
  .creating-the-next-feature h2 {
    font-size: 38px;
  }
  .our-product .row .col ul .resp-tab-item img {
    width: 206px;
  }
  .our-product .row .col ul .resp-tab-active img {
    width: 235px;
  }
  .our-product .row .col ul .resp-tab-active::before {
    width: 235px;
  }
  .about-inclusive-feature .row .col:nth-child(1) {
    width: 55%;
  }
  .about-inclusive-feature .row .col:nth-child(2) {
    width: 40%;
  }
  .about-inclusive-feature .row .col:nth-child(2) img {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  section {
    overflow: hidden;
  }
  body {
    font-size: 14px;
    line-height: 22px;
  }
  p {
    width: 100% !important;
  }
  .content {
    width: 100% !important;
  }
  h1, h2 {
    width: -moz-fit-content !important;
    width: fit-content !important;
  }
  h2 {
    font-size: 22px;
    line-height: 31px;
  }
  .container {
    padding: 0px 0px;
  }
  .row {
    flex-wrap: wrap;
  }
  .row .col {
    width: 100% !important;
  }
  header nav {
    padding: 15px 24px;
    border-bottom: 1px solid #C4131C;
  }
  .hero-main h1 {
    width: 100%;
    font-size: 30px;
    line-height: 36px;
  }
  .hero-main p {
    max-width: 100%;
    font-size: 16px;
  }
  .hero-main .swiper-slide {
    padding: 280px 24px 72px;
    height: 676px;
  }
  .hero-main .swiper-slide .slider-banner {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .hero-main .pos-dots {
    bottom: 32px;
    left: 24px;
  }
  .creating-the-next-feature {
    padding: 56px 24px;
  }
  .creating-the-next-feature h2 {
    font-size: 18px;
    line-height: 26px;
  }
  .creating-the-next-feature h2:nth-child(1) {
    margin-bottom: 19px;
    text-align: center;
  }
  .creating-the-next-feature h2:nth-child(1)::before {
    background-size: contain;
    bottom: -30px;
  }
  .creating-the-next-feature h2:nth-child(1)::after {
    right: -30px;
    width: 21px;
    background-size: contain;
    top: 9px;
  }
  .creating-the-next-feature h2:nth-child(1) span {
    font-size: 18px;
    line-height: 26px;
    margin-left: 41px;
    margin-right: 27px;
  }
  .creating-the-next-feature h2:nth-child(2) {
    margin: 0 auto 24px;
  }
  .creating-the-next-feature h2:nth-child(1)::before {
    width: 100%;
  }
  .creating-the-next-feature p {
    max-width: 100%;
  }
  .ground-breaking {
    padding: 61px 24px 48px;
  }
  .ground-breaking .content {
    width: 100%;
    margin-bottom: 24px;
  }
  .ground-breaking .content p {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
  }
  .ground-breaking .row {
    row-gap: 24px;
    margin-bottom: 26px;
  }
  .ground-breaking .row .col {
    padding: 0px 16px 23px;
    position: relative;
  }
  .ground-breaking .row .col::before {
    top: inherit;
    bottom: 0;
    height: 344px;
  }
  .ground-breaking .row .col h4 {
    position: absolute;
    left: 16px;
    top: 50%;
    font-size: 20px;
    font-weight: 700;
  }
  .ground-breaking .row .col img {
    height: 206px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .ground-breaking .row .col div {
    flex-direction: column;
    row-gap: 64px;
  }
  .ground-breaking .row .col div img {
    width: 100%;
  }
  .ground-breaking a.learnmore {
    font-size: 16px;
  }
  .our-product {
    background-color: #ffffff;
    padding: 0px 24px;
    z-index: 1;
  }
  .our-product::after {
    display: none;
  }
  .our-product::before {
    background: linear-gradient(180deg, rgba(242, 242, 242, 0) 0%, #F2F2F2 100%);
    height: 280px;
    top: inherit;
    width: 100%;
    bottom: 50px;
    border-radius: 0px;
    z-index: -1;
  }
  .our-product .content {
    margin-bottom: 24px;
  }
  .our-product .content h2 {
    width: 100%;
    margin-bottom: 24px;
  }
  .our-product .content p {
    width: 100%;
  }
  .our-product .row {
    border: none;
    row-gap: 18px;
  }
  .our-product .row .col {
    text-align: center;
  }
  .our-product .row .col .learnmore {
    justify-content: left;
    margin-top: 24px;
  }
  .our-product .row .col:nth-child(2) h3 {
    font-size: 20px;
    line-height: normal;
    margin-bottom: 16px;
    text-align: center;
  }
  .our-product .row .col:nth-child(2) p {
    text-align: center;
  }
  .our-product .row .col ul {
    width: 100%;
    max-width: 327px;
    height: 236px;
    padding: 0 25px;
    gap: 5px;
  }
  .our-product .row .col ul .resp-tab-item {
    height: 100%;
    transform: skew(-11deg);
    bottom: -8px;
  }
  .our-product .row .col ul .resp-tab-active {
    width: 261px;
  }
  .our-product .row .col ul .resp-tab-item:nth-child(1) img {
    left: 42%;
    width: 206px !important;
    height: 100% !important;
    margin: 0;
  }
  .our-product .row .col ul .resp-tab-item img {
    height: 100% !important;
    width: auto !important;
  }
  .our-product .row .col ul .resp-tab-active::before {
    width: 130px !important;
    right: 3px;
  }
  .home-product {
    padding: 0px 24px 0px;
  }
  .home-product .container {
    position: relative;
  }
  .home-product .dxlogo-bx {
    border-radius: 48px 0px;
    background-color: #FEF4F4;
    padding: 69px 26px 57px;
    flex-direction: column;
    row-gap: 54px;
    margin-bottom: 0px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
  }
  .home-product .dxlogo-bx img {
    width: 100%;
    height: auto;
    mix-blend-mode: multiply;
  }
  .home-product .dxlogo-bx div {
    width: 100%;
  }
  .home-product .dxlogo-bx div svg {
    width: 48px;
    height: 48px;
    left: 10px;
    top: -10px;
  }
  .home-product .dxlogo-bx div svg path {
    fill: #ffffff;
  }
  .home-product .dxlogo-bx div h5 {
    font-size: 16px;
    text-align: center;
  }
  .home-product .buttom-box {
    flex-wrap: wrap;
    visibility: hidden;
    margin-top: 48px;
    height: 353px;
  }
  .home-product .buttom-box div {
    width: 60%;
  }
  .home-product .buttom-box button {
    padding: 48px 48px 48px 48px;
  }
  .welcome-to-maruyama-sec {
    padding: 55px 24px 50px;
  }
  .welcome-to-maruyama-sec h2 {
    font-size: 22px;
    line-height: 30px;
  }
  .welcome-to-maruyama-sec .bottom-pos-banner {
    bottom: inherit;
    top: 18%;
    height: 162px;
  }
  .welcome-to-maruyama-sec .row {
    flex-direction: column-reverse;
    row-gap: 82px;
  }
  .welcome-to-maruyama-sec .row .col:nth-child(2) div::before {
    width: 100%;
    height: 100%;
    top: 20px;
    left: -13px;
  }
  .welcome-to-maruyama-sec .row .col:nth-child(2) div img {
    border-radius: 50% 50% 0% 50%;
    width: 75%;
  }
  .welcome-to-maruyama-sec .row .col:nth-child(2) .pos-img {
    width: 50%;
  }
  .latest-news {
    padding: 48px 24px;
  }
  .latest-news .row {
    margin-bottom: 28px;
  }
  .latest-news .card .card-body p {
    font-size: 16px;
  }
  .better-tomorrow {
    padding: 246px 24px 0px;
    background-color: #ffffff;
  }
  .better-tomorrow .container {
    position: relative;
  }
  .better-tomorrow h2, .better-tomorrow p {
    position: absolute;
    top: -188px;
    text-align: center;
  }
  .better-tomorrow p {
    top: -100px;
  }
  .better-tomorrow .row {
    flex-direction: column-reverse;
    row-gap: 33px;
  }
  .better-tomorrow .row .col h2 {
    font-size: 22px;
    line-height: normal;
  }
  .better-tomorrow .row .col:nth-child(2) img {
    width: 100%;
    border-radius: 0px 40px;
    margin-top: 24px;
  }
  .better-tomorrow .row .col ul li img {
    width: 40px;
  }
  .better-tomorrow .row .col ul li p {
    position: static;
    text-align: left;
    font-size: 14px;
  }
  .better-tomorrow .row .col ul li h4 {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 8px;
  }
  .careers-at {
    padding: 0px 24px;
    background-color: #ffffff;
  }
  .careers-at .row {
    flex-direction: column-reverse;
  }
  .careers-at .row .col:nth-child(1) {
    padding: 40px 24px 48px;
  }
  .careers-at .row .col img {
    border-radius: 50px 0px 0px 0px;
  }
  .careers-at .row .col h2 {
    width: 100%;
    font-size: 20px;
    line-height: 27px;
    margin-bottom: 20px;
  }
  .aboutus-main {
    padding: 306px 24px 48px;
    background-position: center bottom;
  }
  .aboutus-main .content h1 {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 8px;
  }
  .aboutus-main .content p {
    font-size: 16px;
    line-height: 26px;
    width: 100%;
  }
  .aboutus-mission {
    padding: 48px 24px 48px;
  }
  .aboutus-mission h2 span svg {
    bottom: -8px;
  }
  .aboutus-mission .row {
    row-gap: 22.88px !important;
  }
  .aboutus-mission .row .col:nth-child(2) {
    height: auto;
  }
  .aboutus-mission .row .col:nth-child(2) div::before {
    display: none;
  }
  .aboutus-mission .row .col:nth-child(2) div img {
    border-radius: 49px 0px;
    width: 100%;
  }
  .aboutus-mission .row .col h2 {
    margin-top: 8px;
    margin-bottom: 24px;
  }
  .aboutus-mission .row .col p {
    margin-bottom: 0px;
  }
  .about-president {
    padding: 0px 24px 48px;
  }
  .about-president .row {
    flex-direction: column-reverse;
    row-gap: 24px;
  }
  .about-president .row p {
    text-align: center;
  }
  .about-president .row .col:nth-child(1) .d-flex {
    width: 100%;
  }
  .about-president .row .col:nth-child(1) h5 {
    text-align: center;
    margin: 12px 0px;
  }
  .about-president .row .col:nth-child(1) .name-board {
    text-align: center;
  }
  .about-president .row .col:nth-child(1) .name-board h5 {
    width: auto;
    font-size: 16px;
    line-height: normal;
  }
  .about-president .row .col:nth-child(1) .name-board h3 {
    margin: 0px 0px 0px;
    font-size: 20px;
    line-height: normal;
  }
  .about-president .row .col:nth-child(1) .justify-end {
    margin-bottom: 24px;
  }
  .about-president .row .col:nth-child(1) .mb-0 {
    margin-bottom: 0px;
  }
  .about-president .row .col:nth-child(2) div::before {
    width: 100%;
    height: 100%;
  }
  .celebrating-years {
    background-color: #F2F2F2;
    padding: 51px 24px;
  }
  .celebrating-years::before {
    display: block;
    bottom: 0;
    left: 0;
    top: inherit;
    right: inherit;
    background: #ffffff;
    width: 56px;
    height: 109px;
  }
  .celebrating-years::after {
    display: block;
    width: 56px;
    height: 95px;
  }
  .celebrating-years .player img:nth-child(1) {
    width: 100%;
    border-radius: 6.24px;
  }
  .celebrating-years .content {
    margin-bottom: 16px;
  }
  .celebrating-years .content h2 {
    margin-bottom: 26px;
  }
  .legacy-excellence {
    padding: 48px 24px;
  }
  .legacy-excellence h2 {
    margin-bottom: 32px;
  }
  .legacy-excellence .row {
    row-gap: 24px;
    margin-bottom: 32px;
  }
  .legacy-excellence .row .col {
    padding: 0px 0px 24px 0px;
    border-bottom: 1px solid #D3D2D2;
    border-right: 0px;
    row-gap: 8px;
  }
  .legacy-excellence .row .col:nth-last-child(1) {
    border: none;
    padding: 0px;
  }
  .legacy-excellence .row .col h3 {
    font-size: 30px;
    line-height: 36px;
    font-weight: 900;
  }
  .legacy-excellence .row .col h5 {
    font-size: 16px;
    line-height: normal;
  }
  .our-values {
    padding: 48px 24px 51px;
  }
  .our-values .content {
    margin-bottom: 32px;
  }
  .our-values .content h2 {
    margin-bottom: 24px;
  }
  .our-values .row {
    row-gap: 24px;
  }
  .our-values .row .col {
    row-gap: 0px;
    padding: 24px 32px;
  }
  .our-values .row .col img {
    width: 48px;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: 16px;
  }
  .our-values .row .col h5 {
    font-size: 16px;
    margin-bottom: 6px;
    width: 100%;
  }
  .our-values .row .col:nth-child(-n+2) h5 {
    width: 100%;
  }
  .sustainability-action {
    padding: 48px 24px 24px;
    position: relative;
  }
  .sustainability-action .content {
    margin: 0 auto 36px;
  }
  .sustainability-action .content .primary-title {
    font-size: 12px;
  }
  .sustainability-action .content h2 {
    margin-top: 8px;
  }
  .sustainability-action .row {
    flex-wrap: nowrap;
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
  .sustainability-action .row .card {
    width: 100%;
  }
  .sustainability-action .row .card img {
    border-radius: 0px;
  }
  .sustainability-action .row .card .card-body {
    padding: 24px;
  }
  .sustainability-action .row .card .card-body h5 {
    font-size: 16px;
    line-height: normal;
    margin-bottom: 8px;
  }
  .sustainability-action .row .card .card-body p {
    height: 44px;
  }
  .sustainability-action .sus-act-slide .row .card {
    width: 100%;
  }
  .sustainability-action .sus-act-slide .card .card-body {
    padding: 24px;
  }
  .sustainability-action .sus-act-slide .card .card-body h5 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .sustainability-action .sus-act-slide .card .card-body p {
    font-size: 14px;
    height: auto;
  }
  .sustainability-action .swiper-pagination-news {
    position: absolute;
    left: 0;
    bottom: 0;
    text-align: center;
  }
  .about-the-leadership {
    padding: 48px 24px;
  }
  .about-the-leadership h2 {
    line-height: normal;
    margin-bottom: 34px;
  }
  .about-the-leadership h2:nth-last-child(3) svg {
    width: 105px;
    left: inherit;
    right: 0;
  }
  .about-the-leadership .content {
    margin-bottom: 24px;
  }
  .about-the-leadership .content h2 {
    margin-bottom: 32px;
  }
  .about-the-leadership .content p {
    font-size: 16px;
  }
  .about-the-leadership .row {
    flex-wrap: nowrap;
    margin-bottom: 0px;
  }
  .about-the-leadership .swiper-wrapper {
    -moz-column-gap: 0px;
         column-gap: 0px;
    justify-content: left;
  }
  .about-the-leadership .player {
    margin-bottom: 48px;
  }
  .about-the-leadership .player::before, .about-the-leadership .player::after {
    display: none;
  }
  .about-the-leadership .player img:nth-child(1) {
    width: 100%;
  }
  .about-the-leadership .team-slider-01 .row .col, .about-the-leadership .team-slider-02 .row .col {
    width: 240px !important;
  }
  .about-the-leadership .team-slider-02 .row {
    margin-bottom: 0px;
  }
  .about-the-leadership .swiper-pagination-team01 {
    margin-bottom: 56px;
    text-align: center;
  }
  .about-the-leadership .swiper-wrapper .col p {
    font-size: 16px;
  }
  .about-the-leadership .swiper-wrapper .col p:nth-child(2) {
    margin-top: 12px;
    margin-bottom: 4px;
  }
  .about-the-leadership .team-slider-01 {
    margin-bottom: 30px;
  }
  .about-inclusive-feature {
    padding: 48px 24px;
  }
  .about-inclusive-feature .row {
    row-gap: 24px;
  }
  .about-inclusive-feature .row .col h2 {
    margin-bottom: 23px;
  }
  .about-inclusive-feature .row .col ul {
    row-gap: 16px;
    margin-bottom: 16px;
  }
  .about-inclusive-feature .row .col ul li {
    width: 100%;
  }
  .about-inclusive-feature .row .col ul li p:nth-child(1) {
    font-size: 16px;
  }
  .guiding-philosophy {
    padding: 0px 24px 48px;
  }
  .guiding-philosophy .row {
    row-gap: 46px;
  }
  .guiding-philosophy .row .col .primary-title {
    font-size: 12px;
  }
  .guiding-philosophy .row .col h2 {
    margin-top: 8px;
  }
  .guiding-philosophy .row .col h2 br {
    display: none;
  }
  .guiding-philosophy .row .col p {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 24px;
  }
  .guiding-philosophy .row .col p svg {
    left: -16px;
    top: -14px;
    width: 56px;
    height: 56px;
  }
  .aboutus-global {
    padding: 48px 24px;
    position: relative;
  }
  .aboutus-global::before {
    content: "";
    background-color: #F2F2F2;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 41%;
    width: 100%;
  }
  .aboutus-global .row {
    flex-direction: column-reverse;
    margin-bottom: 96px;
  }
  .aboutus-global .row:nth-child(1) {
    flex-direction: column-reverse;
  }
  .aboutus-global .row:nth-child(1) .col .primary-title {
    font-size: 12px;
  }
  .aboutus-global .row:nth-child(1) .col h2 {
    font-size: 22px;
    margin-top: 8px;
    margin-bottom: 36px;
  }
  .aboutus-global .row:nth-child(1) .col:nth-child(1) {
    padding: 24px 16px 48px;
    border-radius: 48px 0px;
  }
  .aboutus-global .row:nth-child(1) .col:nth-child(2) img {
    border-radius: 45.158px 0;
  }
  .aboutus-global .careers-at {
    padding: 0px;
  }
  .aboutus-global .careers-at .row {
    margin-bottom: 0px;
  }
  .aboutus-global .careers-at .row .col:nth-child(1) {
    border: 0px;
    padding: 32px 24px;
    border-radius: 0px 0px 0px 48px;
  }
  .aboutus-global .careers-at .row .col:nth-child(1) h2 {
    font-size: 22px;
    margin-bottom: 26px;
  }
  .aboutus-global .careers-at .row .col:nth-child(1) p {
    margin-bottom: 16px;
  }
  .aboutus-global .careers-at .row .col:nth-child(2) img {
    border-radius: 0px 40px;
  }
  .our-gallery-about {
    border-radius: 0px 0px 48px 0px;
  }
  .our-gallery-about .container .player {
    margin-bottom: 24px;
  }
  .our-gallery-about .container .player img:nth-child(1) {
    width: 100%;
  }
  .our-gallery-about .container .video-pagination {
    margin-bottom: 24px;
  }
  .our-gallery-about .container .row .col:nth-child(1) h3 {
    font-size: 18px;
    line-height: 28px;
  }
  .ab-careerat .row .col p {
    margin-bottom: 24px;
  }
  .ab-careerat .row .col p:nth-child(3) {
    margin-bottom: 8px;
  }
  .ab-careerat .careers-at .row col:nth-child(1) {
    padding: 32px 16px;
    border-radius: 0px 0px 0px 48px;
  }
  .our-gallery-about .container .player video {
    height: 217px;
  }
  .ourproduct-main {
    padding: 277px 24px 48px;
  }
  .since-product {
    padding: 72px 24px 56px;
  }
  .since-product .content h6 {
    font-size: 16px;
    margin-bottom: 24px;
  }
  .since-product .before-svg {
    width: 47.633px;
    height: 61px;
  }
  .since-product .after-svg {
    width: 51.633px;
    height: 81px;
  }
  .ope-sec {
    padding: 48px 0px;
  }
  .ope-sec .content {
    padding: 0px 24px;
    margin-bottom: 40px;
  }
  .ope-sec .content .primary-title {
    font-size: 12px;
  }
  .ope-sec .learnmore {
    justify-content: left;
    padding-left: 24px;
  }
  .ope-sec .row:nth-child(3) {
    padding: 0px 24px;
    row-gap: 8px;
  }
  .ope-sec .row:nth-child(2) {
    flex-wrap: nowrap;
    margin-bottom: 24px;
  }
  .ope-sec .row:nth-child(2) .col {
    width: 27% !important;
  }
  .ope-sec .row:nth-child(2) .col:nth-child(1) {
    margin-left: -30px;
  }
  .ope-sec .row:nth-child(2) .col img {
    width: 125px;
  }
  .water-reivented {
    padding: 48px 24px;
  }
  .water-reivented .row {
    flex-direction: column-reverse;
    row-gap: 54px;
  }
  .water-reivented .row .col .primary-title {
    font-size: 12px;
  }
  .water-reivented .row .col:nth-child(2) img:nth-child(1) {
    width: 200.305px;
    height: 200.305px;
  }
  .water-reivented .row .col:nth-child(2) img:nth-child(2) {
    width: 140.868px;
    height: 140.868px;
    right: 9%;
    top: -9%;
  }
  .water-reivented .row .col:nth-child(2) img:nth-child(3) {
    width: 131.831px;
    height: 131.831px;
    right: 10%;
    bottom: -13%;
    z-index: 0;
  }
  .water-reivented .row .col:nth-child(1) h2 {
    margin: 8px 0px 26px;
  }
  .water-reivented .row .col:nth-child(1) p {
    margin-bottom: 8px;
  }
  .yield-efficiency {
    padding: 0px 24px 48px;
  }
  .yield-efficiency .content {
    margin-bottom: 24px;
  }
  .yield-efficiency .content .primary-title {
    font-size: 12px;
  }
  .yield-efficiency .row {
    flex-wrap: nowrap;
  }
  .yield-efficiency .tab-content .row, .yield-efficiency .sliderContent .row {
    -moz-column-gap: 0px;
         column-gap: 0px;
  }
  .yield-efficiency .tab-content .row .col .card, .yield-efficiency .sliderContent .row .col .card {
    border-radius: 20px 20px 0px;
  }
  .yield-efficiency .tab-content .row .col .card img, .yield-efficiency .sliderContent .row .col .card img {
    width: 100%;
    height: 206px;
    -o-object-fit: cover;
       object-fit: cover;
    padding: 32px 53px;
  }
  .yield-efficiency .tab-content .row .col .card .card-body, .yield-efficiency .sliderContent .row .col .card .card-body {
    padding: 24px 16px;
    border-radius: 0px 0px 0px 20px;
  }
  .yield-efficiency .tab-content .row .col .card .card-body h5, .yield-efficiency .sliderContent .row .col .card .card-body h5 {
    font-size: 16px;
    line-height: normal;
    margin-bottom: 8px;
  }
  .yield-efficiency .sliderTab .swiper-slide {
    width: 100%;
  }
  .yield-efficiency .sliderTab .swiper-slide h4 {
    width: -moz-max-content;
    width: max-content;
    margin: auto;
  }
  .yield-efficiency .sliderTab__next, .yield-efficiency .sliderTab__prev {
    position: absolute;
    z-index: 9;
  }
  .yield-efficiency .sliderTab__next {
    right: 0;
  }
  .product-line-up h2 {
    margin-bottom: 24px;
    padding: 0px 24px;
  }
  .product-line-up .nav-tap {
    margin-bottom: 16px;
  }
  .product-line-up .line-up-explo .product-swiper {
    width: 100%;
  }
  .product-line-up .line-up-explo .product-swiper .swiper-wrapper {
    width: 250px;
    height: 270px;
  }
  .product-line-up .line-up-explo .product-swiper .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
  }
  .product-line-up .line-up-explo .tab-content .row {
    margin-bottom: 16px;
  }
  .product-line-up .line-up-explo .tab-content .row .col:nth-child(1) {
    border-radius: 48px 0px;
  }
  .product-line-up .line-up-explo .tab-content h5 {
    font-size: 14px;
    line-height: normal;
  }
  .product-line-up .line-up-explo .tab-content h3 {
    font-size: 18px;
    line-height: 22px;
  }
  .ourproduct-whychoose::before {
    width: 40px;
    height: 102px;
  }
  .ourproduct-whychoose .row {
    row-gap: 40px;
  }
  .ourproduct-whychoose .row .col:nth-child(1) img {
    width: 100%;
  }
  .ourproduct-whychoose .row .col h2 {
    margin-bottom: 16px;
  }
  .ourproduct-whychoose .row .col:nth-child(2) .row .col h6 {
    font-size: 14px;
    line-height: 21px;
    font-weight: 500;
  }
  .ourproduct-whychoose .row .col:nth-child(2) ul li {
    padding: 4px 8px 4px 16px;
  }
  .fine-bubbles {
    padding: 64px 24px 48px;
  }
  .fine-bubbles .row .col:nth-child(1) h2 {
    margin: 0px 0px 22px;
  }
  .fine-bubbles .row .col:nth-child(1) p:nth-child(4) {
    margin-bottom: 0px;
  }
  .why-mufb-tech {
    padding: 48px 24px;
    background-color: #F2F2F2;
  }
  .why-mufb-tech h2, .why-mufb-tech p {
    position: static;
  }
  .why-mufb-tech .row {
    row-gap: 24px;
  }
  .why-mufb-tech .row .col h2 {
    margin-bottom: 28px;
  }
  .why-mufb-tech .row .col ul li {
    padding-bottom: 24px;
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
  .why-mufb-tech .row .col ul li h4 {
    font-size: 16px;
    line-height: 17px;
  }
  .why-mufb-tech .row .col ul li:nth-last-child(1) {
    padding-bottom: 0px;
  }
  .why-mufb-tech .row .col ul li:nth-last-child(1) p {
    margin-bottom: 0pc;
  }
  .why-mufb-tech .row .col:nth-child(2) img {
    margin-top: 0;
  }
  .our-mufb-pro {
    padding: 48px 24px;
  }
  .our-mufb-pro .row {
    row-gap: 18px;
    margin-bottom: 39px;
  }
  .our-mufb-pro .row:nth-child(even) {
    flex-direction: column-reverse;
  }
  .our-mufb-pro .row .col img:nth-child(1) {
    width: 100%;
  }
  .our-mufb-pro .row .col .title-board h4 {
    font-size: 18px;
  }
  .our-mufb-pro .row .col h5 {
    font-size: 16px;
  }
  .our-mufb-pro .row .col ul li:nth-last-child(1) {
    padding-bottom: 0px;
  }
  .pink-box {
    flex-direction: column;
    padding: 24px 24px 40px;
    border-radius: 48px 0px;
    row-gap: 24px;
  }
  .pink-box img {
    width: 100%;
  }
  .pink-box .content h5 {
    width: 100%;
    font-size: 16px;
    line-height: 23px;
    margin-bottom: 24px;
  }
  .pink-box .content h5::before {
    display: none;
  }
  .whats-next {
    padding: 99px 24px;
    border-radius: 0px 0px 56px 0px;
  }
  .whats-next .after-svg {
    width: 40px;
    height: 50px;
  }
  .whats-next .before-svg {
    width: 32px;
    height: 65px;
  }
  .whats-next .content h2 {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 22px;
  }
  .whats-next .content p {
    font-size: 16px;
    margin-bottom: 24px;
    font-weight: 700;
  }
  .career-opportunities {
    padding: 27px 24px 0px;
  }
  .career-opportunities .sliderTab .swiper-slide {
    width: 50%;
  }
  .career-opportunities .sliderContent .row .col {
    padding: 0px;
  }
  .whychoose-maruyama {
    border-radius: 0px;
  }
  .whychoose-maruyama .row .col h2 {
    margin-bottom: 25px;
  }
  .whychoose-maruyama .row .col ul {
    row-gap: 16px;
  }
  .whychoose-maruyama .row .col ul li {
    padding: 0px 0px 0px 16px;
  }
  .whychoose-maruyama .row .col ul li p:nth-child(1) {
    font-size: 16px;
    line-height: normal;
    font-weight: 700;
  }
  .carrer-growth .row:nth-child(1) {
    row-gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
  }
  .carrer-growth .sus-act-slide .row:nth-child(1) {
    flex-wrap: nowrap;
  }
  .our-promise {
    padding: 48px 24px;
  }
  .our-promise .content {
    margin-bottom: 24px;
  }
  .our-promise .content h2 {
    margin-bottom: 24px;
    line-height: normal;
  }
  .our-promise .row {
    row-gap: 32px;
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
  .our-promise .row .col {
    width: 148px !important;
  }
  .our-promise .row .col img {
    margin-bottom: 8px;
    width: 56px;
    height: 56px;
  }
  .our-promise .row .col h5 {
    font-size: 14px;
    line-height: normal;
    margin-bottom: 8px;
    width: 78%;
  }
  .career-president .curve-pos {
    display: none;
  }
  .career-president .row .col h2 {
    margin: 0 32px;
  }
  .career-president .row .col:nth-child(1) .justify-end {
    margin-bottom: 16px;
  }
  .career-president .row .col:nth-child(1) .name-board {
    text-align: left;
  }
  .career-president .row .col:nth-child(1) .name-board h5 {
    margin: 0px 0px 16px;
    text-align: left;
  }
  .career-president .row .col p {
    text-align: left;
  }
  .our-employees {
    padding: 0px 24px 48px;
  }
  .our-employees h2 {
    margin-bottom: 36px;
  }
  .our-employees .box {
    padding: 32px 16px;
    border-radius: 48px 0px;
  }
  .our-employees .box h6 {
    font-size: 14px;
    line-height: 22px;
    padding: 0px 14.5px;
    margin-bottom: 24px;
    width: 100%;
  }
  .our-employees .perfile {
    flex-wrap: wrap;
    row-gap: 10px;
    text-align: center;
  }
  .our-employees .perfile h4 {
    font-size: 14px;
    line-height: normal;
  }
  .feature-together {
    border-radius: 0px 0px 56px 0px;
  }
  .feature-together .row {
    row-gap: 38px;
  }
  .feature-together .row .col form {
    row-gap: 0px;
  }
  .feature-together .row .col form .radio-categories {
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
  .feature-together .row .col form div {
    margin-bottom: 32px;
  }
  .feature-together .row .col form div:nth-last-child(1) {
    margin-bottom: 0px;
  }
  .feature-together .row .col form .radio-group {
    margin-bottom: 0px;
  }
  .feature-together .row .col form .radio-group .outline-btn {
    padding: 8px 17px;
  }
  .feature-together .row .col form .form-control {
    padding: 0px 0px 12px 0px;
  }
  .career-president {
    padding: 111px 24px 48px;
  }
  .career-president h2 {
    position: absolute;
    top: -425px;
    left: 0px;
    text-align: center;
  }
  .career-president .row .col:nth-child(1), .career-president .row .col:nth-child(2) {
    width: 100% !important;
  }
  .career-president .name-board h3 {
    margin-bottom: 4px;
  }
  .career-president .name-board h5 {
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 16px;
  }
  .whychoose-maruyama h2 {
    margin-bottom: 25px;
  }
  .whychoose-maruyama .row {
    row-gap: 32px;
  }
  .whychoose-maruyama .row .col:nth-child(1), .whychoose-maruyama .row .col:nth-child(2) {
    width: 100% !important;
  }
  .whychoose-maruyama .row .col:nth-child(1) img, .whychoose-maruyama .row .col:nth-child(2) img {
    width: 100%;
    margin-left: 0px;
  }
  .whychoose-maruyama .row .col img {
    height: 100%;
    margin-left: 0px;
    width: 100%;
  }
  .ope-main {
    padding: 272px 24px 48px;
  }
  .ope-main .content h3 {
    font-size: 22px;
    line-height: 25px;
    margin: 8px 0px;
  }
  .maruyama-advantages {
    padding: 48px 24px;
  }
  .maruyama-advantages .row .col:nth-child(1) img {
    width: 100%;
    border-radius: 48px 0px 0px 0px;
  }
  .maruyama-advantages .row .col:nth-child(2) {
    padding: 32px 16px 40px;
    border-radius: 0px 0px 48px 0px;
  }
  .maruyama-advantages .row .col:nth-child(2) p {
    font-size: 16px;
    line-height: 24px;
  }
  .maruyama-advantages .row .col:nth-child(2) ul li p {
    font-size: 14px;
  }
  .maruyama-advantages .row .col .primary-title {
    font-size: 12px;
  }
  .maruyama-advantages .row .col h2 {
    margin-bottom: 23px;
    line-height: 27px;
  }
  .maruyama-advantages .row .col p {
    margin-bottom: 16px;
  }
  .maruyama-advantages .row .col ul li {
    padding: 0px 0px 16px 0px;
  }
  .maruyama-advantages .row .col ul li img {
    margin-right: 8px;
  }
  .maruyama-advantages .row .col ul li h5 {
    font-size: 16px;
    line-height: 23px;
  }
  .product-line-up {
    padding: 48px 24px;
  }
  .product-line-up .line-up-explo {
    flex-wrap: wrap;
  }
  .product-line-up .line-up-explo .nav-tap {
    width: 100%;
    display: flex;
    align-items: end;
    overflow-x: scroll;
  }
  .product-line-up .line-up-explo .nav-tap a h4 {
    font-size: 16px;
  }
  .product-line-up .line-up-explo .nav-tap h4 {
    width: -moz-max-content;
    width: max-content;
    padding: 15px 16px;
  }
  .product-line-up .line-up-explo .tab-content {
    width: 100%;
  }
  .product-line-up .line-up-explo .tab-content .row {
    row-gap: 45px;
  }
  .product-line-up .line-up-explo .tab-content .row .col:nth-child(1) {
    padding: 22px 31px;
  }
  .product-line-up .line-up-explo .tab-content .row .col svg {
    width: 72px;
    height: 73.137px;
    top: -20px;
    left: 0px;
  }
  .product-line-up .line-up-explo .tab-content ul {
    flex-wrap: wrap;
    row-gap: 16px;
    margin-bottom: 28px;
  }
  .product-line-up .line-up-explo .tab-content ul li {
    width: 100%;
  }
  .product-line-up .line-up-explo .tab-content ul li p:nth-child(1) {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .product-line-up .line-up-explo .tab-content .best-title {
    margin-left: 12px;
  }
  .product-line-up .master-advanced-left-tab.active h4 {
    border-bottom: 1px solid #C4131C;
  }
  .product-line-up .swiper-pagination {
    display: none;
  }
  .ultra-bubble-performance {
    padding: 0px 24px 48px;
  }
  .take-next {
    padding: 56px 24px;
  }
  .take-next .content h2 {
    margin-bottom: 32px;
  }
  .take-next .content p {
    font-size: 16px;
    font-weight: 400;
  }
  .press-releases {
    padding: 48px 24px 112px;
    position: relative;
  }
  .press-releases .content {
    margin-bottom: 32px;
  }
  .press-releases .content .primary-title {
    font-size: 12px;
    line-height: normal;
    letter-spacing: 0.72px;
  }
  .press-releases .container {
    position: unset;
  }
  .press-releases .card .card-body p {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 16px;
  }
  .press-releases .swiper-arrow {
    bottom: 48px;
    top: inherit;
  }
  .press-releases .prev {
    right: 55%;
  }
  .press-releases .next {
    right: 35%;
  }
  .insights-blogs .content {
    margin-bottom: 32px;
  }
  .insights-blogs .content .primary-title {
    font-size: 12px;
    width: 70%;
    display: block;
    margin: auto;
  }
  .insights-blogs .card .card-body p {
    font-size: 16px;
  }
  .featured-media {
    background-color: #070E29;
    padding: 48px 24px;
    border-radius: 0px;
  }
  .featured-media .content h4 {
    font-size: 18px;
    line-height: 28px;
  }
  .featured-media .player video {
    width: 100%;
    height: 184px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .featured-media .container {
    overflow: hidden;
  }
  .featured-media .prev, .featured-media .next {
    z-index: 99;
    width: 32px;
    height: 32px;
    top: 62%;
  }
  .featured-media .prev {
    left: 24px;
  }
  .featured-media .next {
    right: 0;
  }
  .news-cards {
    padding: 48px 24px 120px;
    position: relative;
  }
  .news-cards .container {
    position: unset;
  }
  .news-cards .swiper-arrow {
    bottom: 48px;
    top: inherit;
  }
  .news-cards .prev {
    right: 55%;
  }
  .news-cards .next {
    right: 35%;
  }
  .news-cards .card img {
    width: 100%;
  }
  .news-cards .card .card-body a img {
    width: 32px;
  }
  .missan-update {
    padding: 48px 24px;
    border-radius: 0px 0px 48px;
  }
  .missan-update .content {
    margin-bottom: 32px;
  }
  .missan-update .content .primary-title {
    font-size: 12px;
  }
  .missan-update .content h2 {
    margin-top: 8px;
  }
  .relentless-sec {
    padding: 48px 24px;
  }
  .relentless-sec .content {
    margin-bottom: 32px;
  }
  .relentless-sec .row {
    flex-direction: column-reverse;
    row-gap: 24px;
  }
  .relentless-sec .row .col img {
    width: 100%;
    border-radius: 0px 48px;
  }
  .relentless-sec .row .col h3 {
    line-height: normal;
    font-size: 18px;
  }
  .relentless-sec .row .col h5 {
    line-height: normal;
    font-size: 16px;
    margin-bottom: 8px;
  }
  .relentless-sec .row .col ul {
    grid-template-columns: 100%;
    row-gap: 16px;
  }
  .relentless-sec .row .col p {
    margin-bottom: 16px;
  }
  .purposeful-innovation {
    padding: 48px 24px 24px;
  }
  .purposeful-innovation h2 {
    margin-bottom: 20px;
  }
  .purposeful-innovation .row:nth-child(2) {
    margin-bottom: 16px;
  }
  .purposeful-innovation .row:nth-child(1) {
    margin-bottom: 16px;
  }
  .purposeful-innovation .row:nth-child(3) .box {
    width: 100%;
    padding: 24px;
  }
  .purposeful-innovation .row:nth-child(3) .box br {
    display: none;
  }
  .purposeful-innovation .row:nth-child(3) .box h3 {
    font-size: 16px;
    line-height: normal;
  }
  .purposeful-innovation .row:nth-child(3) .box h3::before {
    width: 48px;
    height: 48px;
    background-size: contain;
    left: -20px;
    top: -13px;
  }
  .res-innovation-everystep {
    padding: 48px 24px;
  }
  .res-innovation-everystep .row {
    row-gap: 32px;
  }
  .res-innovation-everystep .row ul {
    row-gap: 24px;
  }
  .res-innovation-everystep .row ul li h5 {
    margin-bottom: 4px;
  }
  .greener-tomorrow {
    padding: 48px 24px;
  }
  .greener-tomorrow .content {
    margin-bottom: 38px;
  }
  .greener-tomorrow .row .col h5 {
    margin-bottom: 8px;
  }
  .feature-vision {
    position: relative;
    padding: 0px 0px 48px;
  }
  .feature-vision img {
    border-radius: 0px 56px;
    margin-bottom: 48px;
    height: 368px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .feature-vision .row {
    row-gap: 30px;
    padding: 0px 24px;
  }
  .feature-vision .before-svg {
    width: 50px;
    height: 77px;
    bottom: inherit;
    top: 49%;
    left: inherit;
    right: 0;
    transform: rotate(-180deg);
  }
  .feature-vision p {
    font-size: 16px;
    line-height: 24px;
  }
  .join-moment {
    border-radius: 0px 0px 56px 0px;
  }
  .join-moment .content h2 {
    margin-bottom: 23px;
  }
  .join-moment .content h6 {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 8px;
  }
  .join-moment .content h5 {
    font-size: 16px;
    line-height: normal;
    margin-bottom: 32px;
  }
  .join-moment .before-svg {
    width: 48px;
    height: 62px;
  }
  .solution-main {
    padding: 330px 24px 48px;
  }
  .trilored-solution {
    padding: 48px 24px 54px;
  }
  .trilored-solution h2 {
    margin-bottom: 20px;
  }
  .trilored-solution .w-100 {
    border-radius: 0px 56px;
  }
  .trilored-solution .row {
    row-gap: 28px;
  }
  .trilored-solution .row .col .title-board {
    margin-bottom: 20px;
    padding-left: 16px;
  }
  .trilored-solution .row .col .title-board .primary-title {
    font-size: 12px;
  }
  .trilored-solution .row .col .title-board h3 {
    font-size: 18px;
    line-height: normal;
  }
  .trilored-solution .row .col ul li {
    padding: 0px 0px 24px;
  }
  .trilored-solution .row .col ul li div h5 {
    margin-bottom: 8px;
  }
  .trilored-solution .row .col ul li img {
    width: 48px !important;
    height: 48px;
  }
  .trilored-solution .row .col ul li h5 {
    font-size: 16px;
    line-height: normal;
  }
  .trilored-solution .row .col ul li p {
    font-size: 12px;
  }
  .real-result-field {
    padding: 0px 24px 48px;
  }
  .real-result-field .content {
    margin-bottom: 0px;
  }
  .real-result-field .content h2 {
    margin-bottom: 26px;
  }
  .real-result-field .sliderTab .swiper-slide {
    width: 100%;
  }
  .real-result-field .sliderTab .swiper-slide h4 {
    width: -moz-max-content;
    width: max-content;
    padding: 0px 16px 16px;
    font-size: 18px;
    line-height: normal;
  }
  .real-result-field .row {
    overflow-x: scroll;
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
  .real-result-field .row .col h4 {
    width: -moz-max-content;
    width: max-content;
    padding: 0px 16px 16px;
    font-size: 18px;
    line-height: normal;
  }
  .real-result-field .tab-content, .real-result-field .sliderContent {
    padding: 16px 0px 0px;
  }
  .real-result-field .tab-content .row, .real-result-field .sliderContent .row {
    flex-direction: column;
    row-gap: 24px;
  }
  .real-result-field .tab-content .row .col, .real-result-field .sliderContent .row .col {
    padding: 0px;
  }
  .real-result-field .tab-content .row .col:nth-child(1), .real-result-field .sliderContent .row .col:nth-child(1) {
    height: auto;
  }
  .real-result-field .tab-content .row .col:nth-child(2), .real-result-field .sliderContent .row .col:nth-child(2) {
    padding: 0px;
  }
  .real-result-field .tab-content .row .col:nth-child(2) h6, .real-result-field .sliderContent .row .col:nth-child(2) h6 {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 16px;
  }
  .real-result-field .tab-content .row .col:nth-child(2) ul li h5, .real-result-field .sliderContent .row .col:nth-child(2) ul li h5 {
    font-size: 18px;
  }
  .real-result-field .tab-content .row .col:nth-child(2) ul li p, .real-result-field .sliderContent .row .col:nth-child(2) ul li p {
    font-size: 14px;
    margin-bottom: 0px;
  }
  .save-crops {
    padding: 56px 24px;
  }
  .save-crops .maruyama-before-slider {
    width: 100%;
  }
  .save-crops .maruyama-before-slider .swiper-wrapper .swiper-slide {
    flex-direction: column;
  }
  .save-crops .maruyama-before-slider .swiper-wrapper .swiper-slide .card:nth-child(1) h3 {
    font-size: 12px;
    margin-bottom: 72px;
  }
  .save-crops .maruyama-before-slider .swiper-wrapper .swiper-slide .card:nth-child(1) .card-body {
    position: absolute;
    top: 22px;
  }
  .save-crops .maruyama-before-slider .swiper-wrapper .swiper-slide .card:nth-child(1) .card-body p {
    margin-top: 8px;
  }
  .save-crops .maruyama-before-slider .swiper-wrapper .swiper-slide .card:nth-child(2) img {
    margin-bottom: 16px;
  }
  .save-crops .maruyama-before-slider .swiper-wrapper .swiper-slide .card:nth-child(2) h3 {
    position: absolute;
    bottom: 22px;
    width: 100%;
    margin-bottom: 16px;
  }
  .save-crops .content h5 {
    margin: 8px 0px 16px;
  }
  .save-crops .content .justify-end {
    margin-bottom: 24px;
  }
  .save-crops .content .name-board p:nth-child(1) {
    font-size: 16px;
  }
  .save-crops .swiper-arrow {
    bottom: 59%;
  }
  .save-crops .next {
    right: 0;
  }
  .our-offices-factories {
    padding: 48px 0px;
  }
  .our-offices-factories h2 {
    margin-bottom: 23.74px;
  }
  .our-offices-factories .main-row {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    row-gap: 0px;
  }
  .our-offices-factories .main-row .row .col:nth-child(1) {
    box-shadow: none;
  }
  .our-offices-factories .main-row .col:nth-child(1) {
    padding: 27px 24px 29px;
    width: 100% !important;
    border: none;
    box-shadow: 4px 0px 12px 0px rgba(0, 0, 0, 0.08);
  }
  .our-offices-factories .main-row .col:nth-child(2) img {
    width: 100%;
    height: 310.724px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .our-offices-factories .main-row .tab-content p {
    margin-bottom: 0px;
  }
  .find-a-dealer {
    padding: 0px 24px 48px;
  }
  .find-a-dealer .content form {
    width: 100%;
    flex-wrap: wrap;
  }
  .find-a-dealer .content form div {
    width: 100%;
  }
  .find-a-dealer .row {
    row-gap: 32px;
  }
  .maruyama-feature-events {
    padding: 0px 24px 48px;
  }
  .maruyama-feature-events .content {
    margin-bottom: 20.66px;
  }
  .maruyama-feature-events .content h2 {
    margin-bottom: 23px;
  }
  .maruyama-feature-events .row {
    row-gap: 24px;
  }
  .maruyama-feature-events .row .col:nth-child(1) img {
    width: 100%;
    border-radius: 22.92px 22.92px 0px 22.92px;
  }
  .maruyama-feature-events .row .col h3 {
    font-size: 22px;
    line-height: normal;
    margin-bottom: 16px;
  }
  .maruyama-feature-events .row .col ul {
    row-gap: 15px;
    margin-bottom: 24px;
  }
  .maruyama-feature-events .row .col h5 {
    margin-bottom: 8px;
  }
  .getin-touch h2 {
    margin-bottom: 23px;
  }
  .getin-touch .row {
    row-gap: 32px;
  }
  .getin-touch .before-svg {
    display: none;
  }
  .getin-touch form {
    row-gap: 32px;
  }
  .gallery-taps {
    padding: 31px 0px 0px;
  }
  .gallery-taps .overflw {
    overflow-x: scroll;
    width: 100%;
  }
  .gallery-taps .overflw nav {
    width: -moz-max-content;
    width: max-content;
    padding-left: 24px;
  }
  .gallery-taps .tab-content {
    padding: 0px 24px;
  }
  .gallery-taps .tab-content .d-grid {
    display: none;
    flex-wrap: wrap;
    position: relative;
  }
  .gallery-taps .tab-content .d-grid img {
    height: 100%;
    width: 47%;
  }
  .gallery-taps .tab-content .d-grid img:nth-child(1), .gallery-taps .tab-content .d-grid img:nth-child(2) {
    width: 47%;
  }
  .gallery-taps .tab-content .d-grid img:nth-child(3) {
    width: 100%;
  }
  .gallery-taps .tab-content .d-grid img:nth-child(5) {
    width: 48%;
  }
  .gallery-taps .tab-content .d-grid div img {
    width: 100%;
  }
  .gallery-taps .tab-content .d-grid div:nth-child(7), .gallery-taps .tab-content .d-grid div:nth-child(10), .gallery-taps .tab-content .d-grid div:nth-child(13), .gallery-taps .tab-content .d-grid div:nth-child(16), .gallery-taps .tab-content .d-grid div:nth-child(19), .gallery-taps .tab-content .d-grid div:nth-child(17) {
    position: relative;
    top: 0px;
    width: 47%;
  }
  .gallery-taps .tab-content .d-grid div:nth-child(7) img, .gallery-taps .tab-content .d-grid div:nth-child(10) img, .gallery-taps .tab-content .d-grid div:nth-child(13) img, .gallery-taps .tab-content .d-grid div:nth-child(16) img, .gallery-taps .tab-content .d-grid div:nth-child(19) img, .gallery-taps .tab-content .d-grid div:nth-child(17) img {
    width: 100%;
  }
  .gallery-taps .tab-content .d-grid div:nth-child(4), .gallery-taps .tab-content .d-grid div:nth-child(11), .gallery-taps .tab-content .d-grid div:nth-child(14), .gallery-taps .tab-content .d-grid div:nth-child(12), .gallery-taps .tab-content .d-grid div:nth-child(15), .gallery-taps .tab-content .d-grid div:nth-child(18) {
    width: 47%;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
  }
  .gallery-taps .tab-content .d-grid div:nth-child(4) img, .gallery-taps .tab-content .d-grid div:nth-child(11) img, .gallery-taps .tab-content .d-grid div:nth-child(14) img, .gallery-taps .tab-content .d-grid div:nth-child(12) img, .gallery-taps .tab-content .d-grid div:nth-child(15) img, .gallery-taps .tab-content .d-grid div:nth-child(18) img {
    width: 100%;
  }
  .gallery-taps .tab-content .d-grid div:nth-child(5), .gallery-taps .tab-content .d-grid div:nth-child(8), .gallery-taps .tab-content .d-grid div:nth-child(9), .gallery-taps .tab-content .d-grid div:nth-child(11), .gallery-taps .tab-content .d-grid div:nth-child(10) {
    width: 47%;
  }
  .gallery-taps .tab-content .d-grid div:nth-child(5) img:nth-child(1), .gallery-taps .tab-content .d-grid div:nth-child(8) img:nth-child(1), .gallery-taps .tab-content .d-grid div:nth-child(9) img:nth-child(1), .gallery-taps .tab-content .d-grid div:nth-child(11) img:nth-child(1), .gallery-taps .tab-content .d-grid div:nth-child(10) img:nth-child(1) {
    width: 100%;
  }
  .gallery-taps .tab-content .d-grid div:nth-child(6) img:nth-child(1) {
    width: 100%;
  }
  .gallery-taps .tab-content .d-grid div:nth-child(7) {
    position: absolute;
    top: 50%;
    right: 0px;
    /* display: flex
    ; */
    /* justify-content: end; */
    /* margin-left: 0; */
    width: 47%;
  }
  .gallery-taps .tab-content .d-grid div:nth-child(7) img:nth-child(1) {
    width: 100%;
  }
  .gallery-taps .tab-content .row .col {
    width: 47% !important;
  }
  .gallery-taps .tab-content .gallery-grid {
    -moz-column-count: 2;
         column-count: 2;
    grid-template-columns: auto auto;
  }
  .cmpy-history-sec {
    padding: 96px 24px 0px 32px;
  }
  .cmpy-history-sec .rocket {
    left: -8.9%;
    width: 58px;
    height: 58px;
  }
  .cmpy-history-sec .rocket svg {
    width: 38.4px;
    height: 38.4px;
  }
  .cmpy-history-sec .row {
    position: relative;
    z-index: 1;
    row-gap: 26px;
    padding-left: 0px;
  }
  .cmpy-history-sec .row::before {
    content: "";
    height: 100%;
    width: 2px;
    position: absolute;
    left: 0;
    top: 0;
    border-right: 2px dotted transparent;
    bottom: 0;
    border-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMiIgaGVpZ2h0PSI5NjQ4IiB2aWV3Qm94PSIwIDAgMiA5NjQ4IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNMSAxTDEgOTY0NyIgc3Ryb2tlPSIjQzBCRkJGIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWRhc2hhcnJheT0iMSA3Ii8+Cjwvc3ZnPgo=");
    border-image-slice: 1;
  }
  .cmpy-history-sec .row .align-self h3 {
    right: inherit;
    left: 0px;
  }
  .cmpy-history-sec .row .align-self:nth-child(1) {
    margin-top: 90px;
  }
  .cmpy-history-sec .row img {
    width: 100%;
  }
  .cmpy-history-sec .row .full-width {
    position: absolute;
    right: 0;
    top: 0;
  }
  .cmpy-history-sec .row .full-width svg {
    width: 56px;
    height: 56px;
  }
  .cmpy-history-sec .row .col {
    border: none !important;
    padding-bottom: 0px;
  }
  .cmpy-history-sec .row .col:nth-child(odd) {
    border-left: none !important;
    border-right: 0px;
  }
  .cmpy-history-sec .row .col:nth-child(odd) h3 {
    width: -moz-fit-content;
    width: fit-content;
    margin-left: 41px;
    padding: 12px 24px;
    z-index: 1;
  }
  .cmpy-history-sec .row .col:nth-child(odd) h3::before {
    width: 48px;
    height: 26px;
    background-size: contain;
    position: absolute;
    right: 92px;
    top: 16px;
    z-index: -1;
    transform: rotate(180deg);
  }
  .cmpy-history-sec .row .col:nth-child(even) {
    padding-left: 32px;
  }
  .cmpy-history-sec .row .col h3 {
    font-size: 18px;
  }
  .cmpy-history-sec .row .col h3.celebrate::after {
    top: 5px;
  }
  .cmpy-history-sec .row .col p {
    font-size: 16px;
  }
  .cmpy-history-sec .row .upcoming-arrow {
    margin-left: -18px;
  }
  .why-mufb-tech .row .col h2 {
    font-size: 22px;
  }
  .why-mufb-tech .row .col h2, .why-mufb-tech .row .col p {
    text-align: left;
  }
  .our-mufb-pro h2 {
    margin-bottom: 24px;
  }
  .our-mufb-pro .row .col img:nth-child(2) {
    width: 62px;
    bottom: 16px;
    right: 16px;
  }
  .gallery-taps .gallery-grid {
    grid-auto-rows: 10px;
    gap: 10px;
    padding: 0px 24px;
  }
  .gallery-taps .gallery-column {
    flex: 1 1;
    min-width: 158px;
    gap: 10px;
  }
  .gallery-taps img {
    height: 100%;
  }
  .ourproduct-whychoose .row h2 svg {
    visibility: hidden;
  }
  .blog-main {
    padding: 48px 0px 0px;
  }
  .blog-main .content {
    width: 100%;
    padding: 0px 24px;
  }
  .blog-main .content .primary-title {
    font-size: 12px;
  }
  .blog-main .content h1 {
    font-size: 24px;
    line-height: normal;
    padding: 0px;
    margin: 8px 0px 32px;
  }
  .blog-main .content p {
    font-size: 16px;
    line-height: 24px;
  }
  .blog-main img {
    padding: 32px 0px 0px;
    height: 536px;
    aspect-ratio: 803.61/536;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .blog-contents {
    padding: 19px 24px 0px;
  }
  .blog-contents h4, .blog-contents h3 {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 16px;
  }
  .blog-contents h5 {
    font-size: 16px;
    line-height: 24px;
  }
  .blog-contents ul {
    margin-bottom: 12px;
  }
  .blog-contents p, .blog-contents li {
    font-size: 14px;
    line-height: 22px;
  }
  .blog-contents p {
    margin-bottom: 12px;
  }
  .blog-contents p:nth-last-child(1) {
    margin-bottom: 0px;
    padding: 0px;
  }
  .blog-contents li {
    padding: 0px 0px 12px;
  }
  .blog-contents li:nth-last-child(1) {
    padding: 0px;
  }
  .blog-contents ol {
    margin-bottom: 12px;
  }
  .blog-contents img {
    width: 100%;
    height: 240px;
    -o-object-fit: cover;
       object-fit: cover;
    padding: 40px 0px 24px;
  }
	.imgcontent img{
		padding:0px;
	}
  .blog01 .space--40 p {
    margin-bottom: 16px;
  }
  .blog01 div p {
    margin-bottom: 12px;
  }
  .blog01 ol li {
    padding: 0px 0px 12px 0px;
  }
  .blg02 .blog-contents div .vision-box {
    padding: 24px;
  }
  .blg02 .blog-contents div h3 {
    margin-bottom: 16px;
  }
  .blg02 .blog-contents div p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 12px;
  }
  .blg02 .blog-contents .blog-vision {
    row-gap: 0px;
  }
  .blg02 .blog-contents .imgcontent {
    margin-bottom: 24px;
  }
  .blg02 .blog-contents .imgcontent h5 {
    padding: 16px 24px;
  }
  .blg02 .blog-contents .imgcontent img {
    padding: 0;
  }
  .blg04 .blog-contents {
    padding: 16px 24px 0px;
  }
  .blg04 .blog-contents .twstock-hytro-engi {
    flex-wrap: wrap;
    row-gap: 45px;
  }
  .blg04 .blog-contents .twstock-hytro-engi div {
    width: 100%;
  }
  .blg04 .blog-contents .twstock-hytro-engi div img {
    border-radius: 0px 32px;
    height: 416px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .blg04 .blog-contents ul li {
    padding: 0px;
  }
  .blg04 .blog-contents ul li:nth-last-child(1) {
    margin-bottom: 0px;
  }
  .blg04 .blog-contents .ope-products h5 {
    margin-bottom: 40px;
  }
  .other-blogs {
    padding: 80px 24px 0px;
  }
  .other-blogs h2 {
    margin: 0px auto 32px;
  }
  .other-blogs .arrows {
    display: flex;
    justify-content: center;
    -moz-column-gap: 48px;
         column-gap: 48px;
  }
  footer {
    padding: 56px 40px 40px;
  }
  footer .row {
    grid-template-columns: 100%;
    row-gap: 40px;
  }
  footer .row .col:nth-child(2) p {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 24px;
  }
  footer .row .col:nth-child(4) p {
    margin-bottom: 25px;
  }
  footer .row .col:nth-child(4) form {
    width: 100%;
  }
  footer .copyrights {
    padding: 40px 36px 0px;
  }
}
@media screen and (max-width: 374.98px) {
  .creating-the-next-feature .container {
    overflow: hidden;
  }
  .creating-the-next-feature h2:nth-child(1)::before {
    width: 117%;
  }
  .creating-the-next-feature h2:nth-child(1) span {
    font-size: 18px;
    line-height: 15px;
    margin-left: 41px;
    margin-right: 0px;
  }
  .welcome-to-maruyama-sec .row {
    row-gap: 110px;
  }
}
@media (min-width: 402px) and (max-width: 683.98px) {
  h2 {
    width: -moz-fit-content !important;
    width: fit-content !important;
  }
  .content h2 {
    margin-left: auto;
    margin-right: auto;
  }
  .ground-breaking .row .col h4 {
    top: 55%;
  }
  .water-reivented .row .col:nth-child(2) img:nth-child(2) {
    right: 30%;
  }
  .water-reivented .row .col:nth-child(2) img:nth-child(3) {
    right: 30%;
  }
}/*# sourceMappingURL=style.css.map */
.vision-box {
  margin: 24px 0px 24px !important;
  padding: 40px;
  border-radius: 48px 0;
  background: #FEF4F4;
}
.cpt-img img{
	padding-bottom: 0;
}
.cpt-img figcaption{
	margin:16px 0 0 0;
	text-align: center;
}
.msg h5{
	font-size: 18px;
	margin: 12px 0px;
}
section.blog-contents.blog01 p strong {
    color: #231F20;
}
/* blockquote{
	position: relative;
}
blockquote p{
	font-weight: 700 !important;
	margin: 12px 0px !important;
}
blockquote p:after{
	position: absolute;
    content: '';
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIyIiBoZWlnaHQ9IjE1IiB2aWV3Qm94PSIwIDAgMTIyIDE1IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNMzQgOEgxMjIiIHN0cm9rZT0iI0M0MTMxQyIvPgo8cGF0aCBkPSJNMTkuMDU2IDBMMTkuMzIzNiAwLjc1NTM5NEMxNy41MDM2IDEuMjk0OTYgMTYuMDk0MSAyLjEwNDMyIDE1LjA5NDkgMy4xODM0NUMxNC4wOTU3IDQuMjYyNTkgMTMuNTk2MSA1LjM3NzcgMTMuNTk2MSA2LjUyODc4QzEzLjU5NjEgNy40MjgwNiAxMy45MzUxIDcuODc3NyAxNC42MTMxIDcuODc3N0MxNS4wNzcgNy44Nzc3IDE1LjYxMjMgNy43NTE4IDE2LjIxOSA3LjVDMTYuODYxMyA3LjI0ODIgMTcuNTM5MyA3LjEyMjMgMTguMjUzIDcuMTIyM0MxOS4zOTUgNy4xMjIzIDIwLjMwNDkgNy40ODIwMSAyMC45ODMgOC4yMDE0NEMyMS42NjEgOC44ODQ4OSAyMiA5LjgwMjE2IDIyIDEwLjk1MzJDMjIgMTIuMTQwMyAyMS41NzE4IDEzLjExMTUgMjAuNzE1MyAxMy44NjY5QzE5Ljg1ODkgMTQuNjIyMyAxOC43NTI2IDE1IDE3LjM5NjYgMTVDMTUuNzkwOCAxNSAxNC41MjM5IDE0LjQ0MjQgMTMuNTk2MSAxMy4zMjczQzEyLjcwNCAxMi4xNzYzIDEyLjI1NzkgMTAuNjExNSAxMi4yNTc5IDguNjMzMDlDMTIuMjU3OSA2LjQzODg1IDEyLjgyODkgNC42MjIzIDEzLjk3MDggMy4xODM0NUMxNS4xNDg0IDEuNzQ0NiAxNi44NDM1IDAuNjgzNDUzIDE5LjA1NiAwWk02Ljc5ODA1IDBMNy4wNjU2OSAwLjc1NTM5NEM1LjI0NTc0IDEuMjk0OTYgMy44MzYxNyAyLjEwNDMyIDIuODM2OTggMy4xODM0NUMxLjgzNzc5IDQuMjYyNTkgMS4zMzgyIDUuMzc3NyAxLjMzODIgNi41Mjg3OEMxLjMzODIgNy40MjgwNiAxLjY3NzIxIDcuODc3NyAyLjM1NTIzIDcuODc3N0MyLjgxOTE0IDcuODc3NyAzLjM1NDQyIDcuNzUxOCAzLjk2MTA3IDcuNUM0LjYwMzQxIDcuMjQ4MiA1LjI4MTQzIDcuMTIyMyA1Ljk5NTEzIDcuMTIyM0M3LjEzNzA2IDcuMTIyMyA4LjA0NzA0IDcuNDgyMDEgOC43MjUwNiA4LjIwMTQ0QzkuNDAzMDggOC44ODQ4OSA5Ljc0MjA5IDkuODAyMTYgOS43NDIwOSAxMC45NTMyQzkuNzQyMDkgMTIuMTQwMyA5LjMxMzg3IDEzLjExMTUgOC40NTc0MiAxMy44NjY5QzcuNjAwOTcgMTQuNjIyMyA2LjQ5NDczIDE1IDUuMTM4NjkgMTVDMy41MzI4NSAxNSAyLjI2NjAyIDE0LjQ0MjQgMS4zMzgyIDEzLjMyNzNDMC40NDYwNjYgMTIuMTc2MyAwIDEwLjYxMTUgMCA4LjYzMzA5QzAgNi40Mzg4NSAwLjU3MDk2NSA0LjYyMjMgMS43MTI5IDMuMTgzNDVDMi44OTA1MSAxLjc0NDYgNC41ODU1NiAwLjY4MzQ1MyA2Ljc5ODA1IDBaIiBmaWxsPSIjQzQxMzFDIi8+Cjwvc3ZnPgo=);
    width: 112px;
    height: 15px;
    background-repeat: no-repeat;
    left: 0px;
    top: -27px;
}
blockquote p:before{
	position: absolute;
    content: '';
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIyIiBoZWlnaHQ9IjE1IiB2aWV3Qm94PSIwIDAgMTIyIDE1IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNODggOEgwIiBzdHJva2U9IiNDNDEzMUMiLz4KPHBhdGggZD0iTTEwMi45NDQgMEwxMDIuNjc2IDAuNzU1Mzk0QzEwNC40OTYgMS4yOTQ5NiAxMDUuOTA2IDIuMTA0MzIgMTA2LjkwNSAzLjE4MzQ1QzEwNy45MDQgNC4yNjI1OSAxMDguNDA0IDUuMzc3NyAxMDguNDA0IDYuNTI4NzhDMTA4LjQwNCA3LjQyODA2IDEwOC4wNjUgNy44Nzc3IDEwNy4zODcgNy44Nzc3QzEwNi45MjMgNy44Nzc3IDEwNi4zODggNy43NTE4IDEwNS43ODEgNy41QzEwNS4xMzkgNy4yNDgyIDEwNC40NjEgNy4xMjIzIDEwMy43NDcgNy4xMjIzQzEwMi42MDUgNy4xMjIzIDEwMS42OTUgNy40ODIwMSAxMDEuMDE3IDguMjAxNDRDMTAwLjMzOSA4Ljg4NDg5IDEwMCA5LjgwMjE2IDEwMCAxMC45NTMyQzEwMCAxMi4xNDAzIDEwMC40MjggMTMuMTExNSAxMDEuMjg1IDEzLjg2NjlDMTAyLjE0MSAxNC42MjIzIDEwMy4yNDcgMTUgMTA0LjYwMyAxNUMxMDYuMjA5IDE1IDEwNy40NzYgMTQuNDQyNCAxMDguNDA0IDEzLjMyNzNDMTA5LjI5NiAxMi4xNzYzIDEwOS43NDIgMTAuNjExNSAxMDkuNzQyIDguNjMzMDlDMTA5Ljc0MiA2LjQzODg1IDEwOS4xNzEgNC42MjIzIDEwOC4wMjkgMy4xODM0NUMxMDYuODUyIDEuNzQ0NiAxMDUuMTU3IDAuNjgzNDUzIDEwMi45NDQgMFpNMTE1LjIwMiAwTDExNC45MzQgMC43NTUzOTRDMTE2Ljc1NCAxLjI5NDk2IDExOC4xNjQgMi4xMDQzMiAxMTkuMTYzIDMuMTgzNDVDMTIwLjE2MiA0LjI2MjU5IDEyMC42NjIgNS4zNzc3IDEyMC42NjIgNi41Mjg3OEMxMjAuNjYyIDcuNDI4MDYgMTIwLjMyMyA3Ljg3NzcgMTE5LjY0NSA3Ljg3NzdDMTE5LjE4MSA3Ljg3NzcgMTE4LjY0NiA3Ljc1MTggMTE4LjAzOSA3LjVDMTE3LjM5NyA3LjI0ODIgMTE2LjcxOSA3LjEyMjMgMTE2LjAwNSA3LjEyMjNDMTE0Ljg2MyA3LjEyMjMgMTEzLjk1MyA3LjQ4MjAxIDExMy4yNzUgOC4yMDE0NEMxMTIuNTk3IDguODg0ODkgMTEyLjI1OCA5LjgwMjE2IDExMi4yNTggMTAuOTUzMkMxMTIuMjU4IDEyLjE0MDMgMTEyLjY4NiAxMy4xMTE1IDExMy41NDMgMTMuODY2OUMxMTQuMzk5IDE0LjYyMjMgMTE1LjUwNSAxNSAxMTYuODYxIDE1QzExOC40NjcgMTUgMTE5LjczNCAxNC40NDI0IDEyMC42NjIgMTMuMzI3M0MxMjEuNTU0IDEyLjE3NjMgMTIyIDEwLjYxMTUgMTIyIDguNjMzMDlDMTIyIDYuNDM4ODUgMTIxLjQyOSA0LjYyMjMgMTIwLjI4NyAzLjE4MzQ1QzExOS4xMDkgMS43NDQ2IDExNy40MTQgMC42ODM0NTMgMTE1LjIwMiAwWiIgZmlsbD0iI0M0MTMxQyIvPgo8L3N2Zz4K);
    width: 122px;
    height: 15px;
    background-repeat: no-repeat;
	right: 0;
    bottom: -27px;
} */
@media screen and (max-width: 640px) {
	.msg h5{
    	font-size: 16px;
	}
	.imgcontent figcaption {
    	padding: 16px 24px;
	}
	.vision-box {
    	padding: 24px;
	}
	.cpt-img img{
    	height: auto;
	}
}
/* // Privacy & terms styles// */
section.privacy {
    max-width: 940px;
    margin: 112px auto 0;
    padding: 0;
}
.privacy h1 br{
	display:none;
}
section.blog-main.privacy .content h1 {
    text-align: left;
    padding: 0 30px 0 0;
    margin-bottom: 24px;
}
section.blog-main.privacy .content p{
    text-align: left;
    margin-bottom: 32px;
    line-height: 30px; 
}
.blog-main.privacy h4{
    margin-bottom: 16px;
}
.blog-main.privacy p{
    margin-bottom: 32px;
}
.blog-main.privacy .global-list{
    display: block;
    padding-left: 40px;
    margin-bottom: 32px;
}
.blog-main.privacy .global-list li{
    margin-bottom: 16px;
}
.blog-main.privacy ol.para-list {
    padding-left: 32px;
}
.blog-main.privacy ol.para-list li p{
    margin-bottom: 16px;
    color: #231F20;
}
.blog-main.privacy ol.para-list li p:nth-child(1){
    margin-bottom: 8px;
}
.blog-main.privacy ol.para-list li:nth-child(-n+2){
   width: 44%;
}  
.blog-main.privacy h5{
    width: 43%;
    margin-bottom: 16px;
    font-weight: 900;
}
.blog-main.privacy .para-one{
    margin-bottom: 16px;
}
@media screen and (max-width: 640px){
    section.privacy{
        margin: 0;
        padding: 48px 24px 0;
    }

    section.blog-main.privacy .content p {
        margin-bottom: 24px;
        line-height: 24px;
    }
    section.blog-main.privacy .content{
        padding: 0;
    }
    .blog-main.privacy h4 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    section.blog-main.privacy p {
        margin-bottom: 24px;
    }
    .blog-main.privacy .global-list {
        padding-left: 24px;
        margin-bottom: 24px;
    }
    .blog-main.privacy .global-list li {
        margin-bottom: 8px;
    }
    .blog-main.privacy ol.para-list li:nth-child(-n+2) {
        width: 100%;
    }
    .blog-main.privacy ol.para-list li p {
        margin-bottom: 8px;
    }
    .blog-main.privacy ol.para-list li:last-child {
        margin-bottom: 24px;
    }
    .blog-main.privacy h5{
        width: 100%;
		font-size: 18px;
    }
	section.blog-main.privacy p.font-14{
		font-size: 12px;
	}
}
/* Bug Fixing */
.our-product.home-product .product-rightside-img {
    position: absolute;
    top: 345px;
    left: 0;
}
.featured-media .video-slider .video-wrapper.player iframe,
.our-product.celebrating-years .video-wrapper.player iframe,
.about-the-leadership .video-wrapper.player iframe{
	border-radius: 16px;
}
.our-offices-factories .row.main-row{
	height: 446px;
}
.our-offices-factories .row.main-row .row .col{
	overflow: hidden;
}
.career-opportunities .main-row .col:nth-child(1) {
    scrollbar-width: thin;
    scrollbar-color: #DEDEDE transparent;
}
.career-opportunities .main-row .col:nth-child(1)::-webkit-scrollbar {
    width: 8px;
}
.career-opportunities .main-row .col:nth-child(1)::-webkit-scrollbar-track {
    background: transparent;
}
.career-opportunities .main-row .col:nth-child(1)::-webkit-scrollbar-thumb {
    background-color: #DEDEDE;
    border-radius: 4px;
}
.career-opportunities .main-row .col:nth-child(1)::-webkit-scrollbar-button {
    display: none;
    height: 0;
}
.page-template-location-information .our-offices-factories .row.main-row .col .row{
	padding-top: 24px !important;
  position: sticky;
  top: 0;
  background: #fff;
}
.page-template-location-information .career-opportunities .main-row .col:nth-child(1) {
  padding: 0 24px 0;
  cursor: pointer;
}
a.direction-a-link {
    display: flex;
    gap: 8px;
}
.our-offices-factories .category-filters button.category-button {
    font-size: 12px;
    padding: 4px 16px;
    background: none;
    border-radius: 24px;
    border: 1px solid #F2F2F2;
    margin: 0 3px 16px 0;
	cursor: pointer;
}
.our-offices-factories .category-filters button.category-button:hover,
.our-offices-factories .category-filters button.category-button.active {
	background: #FEF4F4;
	border: 1px solid #FEF4F4
}
.feature-vision img{
    height: 540px;
}
.product-line-up .product-slider .product-pagination{
    text-align: center;
	margin-bottom: 6px;
}
.product-line-up .product-slider .product-pagination .swiper-pagination-bullet{
	width: 8px;
    height: 8px;
    border-radius: 8px;
	background: #D3D2D2;
}
.product-line-up .product-slider .product-pagination .swiper-pagination-bullet-active{
	background: #C4131C;
}
.yield-efficiency .swiper-container .content-2 .sub-slider .card img{
	height: 235px;
}
.press-releases{
	position: relative;
}
.press-releases::before,.latest-news::before{
	content: '';
    position: absolute;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, #FFF 87.99%);
    width: 150px;
    height: 458px;
    top: 214px;
    right: 0;
    z-index: 5;
}
.latest-news::before {
    top: 144px !important;
}
.maruyama-advantages .row .col{
	width: 50%;
}
.our-mufb-pro.trilored-solution .row:nth-child(3) {
    flex-direction: row;
}
.page-template-careers .feature-together {
  display: none;
}
.page-template-careers .our-employees .box .swiper-arrow.is-disabled{
  background-color: #C0BFBF;
}
.page-template-careers .our-employees .box .swiper-arrow {
  background-color: #C4131C;
}
.page-template-solution .our-mufb-pro.trilored-solution ul p {
  font-weight: 400;
  color: #4A4748;
}
.page-template-solution .save-crops .maruyama-before-slider .card .card-body p,
.page-template-solution .save-crops .content h5 {
  color: #FFF;
}
.page-template-solution .save-crops .content .name-board p:nth-child(1) {
  margin-bottom: 3px;
}
.page-template-location-information .maruyama-feature-events {
  display: none;
}
.ourproduct-whychoose .row .col:nth-child(2) .row .col a.learnmore:hover {
    color: #C4131C;
}
.career-opportunities .sliderContent .row .col p:nth-last-child(1) {
    color: #231F20;
}
.page-template-location-information .feature-together .row .col form .learnmore .form-control {
  padding: 0;
  cursor: pointer;
}
.page-template-location-information .feature-together .row .col form .learnmore .form-control:hover {
  color: #C4131C;
}
/* 03-09-2025 */
section.latest-news.bg-white.sustainability-action::before{
    display: none;
}
.product-line-up .line-up-explo .swiper .tab-content .row .col .product-slider .swiper-slide a img{
	width: 100%;
}
.product-line-up .line-up-explo .swiper .tab-content .row .col .product-slider .product-pagination{
	z-index: 1;
}
@media screen and (max-width: 640px){
	.our-product.home-product .product-rightside-img {
		display: none;
	}
	.feature-vision img {
    	height: 358px;
	}
	.press-releases::before,.latest-news::before{
		display: none;
	}
	.celebrating-years .player video, .celebrating-years .player iframe,
	.about-the-leadership .video-wrapper.player iframe{
    	width: 100%;
    	height: 184px;
		border-radius: 8px;
	}
	.swiper-pagination-team02{
		text-align: center;
	}
	/* 	13-08-25 */
}
@media screen and (min-width: 1024px) {
  .page-template-about-us .legacy-excellence .row .col {
    max-width: calc(100% / 3);
  }
  .page-template-about-us .legacy-excellence .row .col:nth-child(1) {
    padding-left: 16px;
  }
  .page-template-careers .whychoose-maruyama .row {
    display: grid;
    grid-template-columns: 326px auto 388px;
    column-gap: 48px;
    align-items: center;
  }
  .page-template-careers .whychoose-maruyama .row .col ul li {
    padding: 0px 16px;
  }
  .page-template-careers .whychoose-maruyama .row .col:nth-child(1),
  .page-template-careers .whychoose-maruyama .row .col:nth-child(2),
  .page-template-careers .whychoose-maruyama .row .col:nth-child(3) {
    width: auto;
  }
  .page-template-careers .whychoose-maruyama .row .col img {
    height: auto;
    margin: 0;
  }
  .page-template-solution .solution-main .content p {
    width: 40%;
  }
  .page-template-solution .our-mufb-pro.trilored-solution ul {
    margin-right: 40px;
  }
  .page-template-solution .save-crops .content .name-board p:nth-child(2) {
    font-size: 14px;
  }
  .find-a-dealer .row {
    justify-content: center;
  }
  .find-a-dealer .row .col {
    width: calc(100% / 3);
  }
  .page-template-our-product .since-product a {
      position: relative;
      top: 24px;
  }
  .page-template-our-product .since-product a .upcoming-arrow {
    position: absolute;
    bottom: 15px;
    display: block;
    width: 24px;
    height: 30px;
    animation: bounce 1s infinite ease-in-out, opacityPulse 1s infinite ease-in-out;
    left: 0;
    right: 0;
  }
  .page-template-careers .our-promise {
    padding: 0px 0px 80px;
  }
  .page-template-our-product .water-reivented .row .col:nth-child(1) h2 span {
    display: block;
    width: inherit;
  }
  .page-template-location-information .aboutus-main .content p {
    width: 500px;
  }
  .social-slider .card {
    min-width: 380px;
  }
  .social-slider .card .card-body a {
    position: relative;
    text-decoration: none;
  }
  .social-slider .card .card-body a::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 98px;
    height: 1px;
    background: #fff;
  }
}
.page-template-location-information .our-offices-factories .main-row .tab-content ul li:last-child {
    margin-bottom: 36px;
}
.find-a-dealer .row .col ul li p a:hover {
    text-decoration: underline;
}
.better-tomorrow .row .col a.learnmore{
	margin-left: 66px;
}
.home .careers-at{
	padding: 80px 0px;
}
.our-values .row .col h5,
.about-the-leadership .swiper-wrapper .col p:nth-child(2){
	color: #231F20;
}
.about-inclusive-feature svg.svg-bg{
	position: absolute;
	top: 0;
	right: 0;
}
.careers-at a.learnmore:hover,
.about-inclusive-feature .video-slider .row .col a.learnmore:hover,
.about-inclusive-feature.whats-next .content a.learnmore:hover{
    color: #C4131C !important;
    text-decoration: underline;
}
.ope-sec {
    position: relative;
}
.ope-sec:before {
    position: absolute;
	content: "";
	width: 100px;
	height: 126px;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEyNiIgdmlld0JveD0iMCAwIDEwMCAxMjYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0wIDEwMEMwIDQ0Ljc3MTUgNDQuNzcxNSAwIDEwMCAwVjEyNkgwVjEwMFoiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=');
	background-repeat: no-repeat;
	bottom: -1px;
	right: 0;
}
.yield-efficiency .swiper-wrapper a h4{
	font-weight: 400;
}
.yield-efficiency .swiper-wrapper .on a h4{
	font-weight: 900;
}
.fine-bubbles{
	position: relative;
}
.fine-bubbles svg.svg-bg{
	position: absolute;
	left: 0;
	top: 0;
}
.maruyama-advantages.mufb-tech .row .col p,
.product-line-up .line-up-explo .swiper .tab-content .row .col p,
.carrer-growth .row.content-warp .col p,
.our-promise .content p{
	color:#231F20;
}
.maruyama-advantages.mufb-tech .row .col ul li p {
    color: #4A4748 !important;
}
.maruyama-advantages.demand-more .row{
	background: #fff;
	border-radius: 88px 0;
}
.maruyama-advantages.demand-more .row .col:nth-child(1) img{
	border-radius: 88px 0 0 0;
}
.relentless-sec .row .col ul.global-list li p:nth-child(1){
	margin-bottom: 8px;
}
.feature-vision .row .col p{
	font-size: 20px;
	line-height: 32px;
}
.our-employees .box .employee-slider .perfile p{
	font-weight: 700;
}
.legacy-excellence .row .col:nth-child(3) p{
    margin: 0 auto;
    width: 92%;
}
.page-template-news .insights-blogs .card .card-body p:nth-child(1) {
  color: #231F20;
}
.page-template-news .press-releases .card .card-body ul li:nth-child(2) {
  border-radius: 0 12px;
  background: #F2F2F2;
}
.page-template-news .latest-news.press-releases .swiper-arrow,
.page-template-news .insights-blogs.news-cards .swiper-arrow {
    background-color: #C4131C;
}
.page-template-news .insights-blogs.news-cards .swiper-arrow.is-disabled {
    background-color: #C0BFBF;
}
.page-template-news .latest-news.press-releases.rightshadow .prev, 
.page-template-news .latest-news.press-releases.leftshadow .next {
    background-color: #C0BFBF;
}
.press-releases::before {
    z-index: 1;
}
.press-releases.rightshadow::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, #FFF 87.99%);
    left: auto;
    right: 0;
    z-index: 5;
}
.press-releases.leftshadow::before {
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.00) 0%, #FFF 87.99%);
    left: 0;
    right: auto;
    z-index: 5;
}
.cmpy-history-sec .rocket img {
    width: 64px;
    height: 64px;
}
.career-down-arrow {
    position: absolute;
    bottom: -30px;
    margin-left: 162px;
    display: block;
    width: 60px;
    height: 80px;
}
.career-down-arrow .arrow-container {
    height: 80px;
    position: relative;
    overflow: hidden;
}
.career-down-arrow .arrow {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 37px;
    height: 60px;
    animation: verticalLoop 3s linear infinite;
}
.career-down-arrow::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);
    z-index: 1;
}
.career-down-arrow .arrow.second {
    animation-delay: 1.5s;
}
.page-template-home .small-seamless {
  position: absolute;
  right: 16.1%;
  top: 20px;
  z-index: 1111;
  width: 30px;
  height: 30px;
  overflow: hidden;
}
.page-template-home .small-seamless .arrow-container {
  width: 40px; /* visible area */
  height: 30px;
  overflow: hidden;
  position: relative;
}
.page-template-home .small-seamless .arrow-track {
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  animation: moveLR 2s linear infinite;
}
@keyframes moveLR {
  0% {
      transform: translateX(-50%) translateY(-50%);
  }
  100% {
      transform: translateX(0) translateY(-50%);
  }
}
.page-template-home .small-seamless .arrow-track svg {
  flex-shrink: 0;
  margin-right: 5px;
  position: relative;
  left: auto;
  bottom: auto;
  right: auto;
  top: auto;
  width: auto;
}
.page-template-home .creating-the-next-feature h2:nth-child(1)::after {
  display: none;
}
@keyframes verticalLoop {
    0% {
        top: -70px;
    }
    100% {
        top: calc(100% + 10px);
    }
}
.page-template-home .our-product .row .col ul .resp-tab-active::before {
  display: none;
}
.skw-animation .skew-wrapper {
  position: relative;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}
.skw-animation .overlay-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.skw-animation .overlay-lines::before, 
.skw-animation .overlay-lines::after {
  content: '';
  position: absolute;
  width: 150%;
  background: rgba(196, 19, 28, 1);
  opacity: 0;
  transform: rotate(-30deg);
  transform-origin: left center;
}
.skw-animation .overlay-lines::before {
  height: 8px;
}
.skw-animation .overlay-lines::after {
  height: 18px;
}
.skw-animation .skew-wrapper:hover .overlay-lines::before {
  animation: line-move-vertical 1.8s linear forwards;
}
.skw-animation .skew-wrapper:hover .overlay-lines::after {
  animation: line-move-vertical 1.8s linear forwards;
  animation-delay: 0.08s;
}
@keyframes line-move-vertical {
  0% {
    top: -20%;
    opacity: 0;
  }
  100% {
    top: 140%;
    opacity: 0.4;
  }
}
@media screen and (max-width: 640px){
	.ope-sec:before {
		width: 58px;
		height: 73px;
	}
  .page-template-home .small-seamless {
    right: 4px;
    top: 1px;
    width: 14px;
  }
  .page-template-home .small-seamless svg {
    width: 14px;
    height: 10.182px;
  }
  .career-down-arrow {
    position: absolute;
    bottom: -23px;
    margin-left: -13px;
    display: block;
    height: 80px;
    width: 31px;
  }
  .career-down-arrow .arrow-container {
    height: 80px;
  }
  .cmpy-history-sec .row {
    padding-bottom: 112px;
  }
  .cmpy-history-sec .row::before {
    height: calc(100% - 48px);
  }
  .cmpy-history-sec .row .col:nth-child(even) img {
    width: auto;
    max-width: 206px;
  }
  .cmpy-history-sec .rocket {
	  left: -7.8%;
  }
  .cmpy-history-sec .rocket img {
    width: 56px;
    height: 56px;
  }
  .page-template-company-histroy .aboutus-main .content h1 {
    max-width: 88%;
  }
  .page-template-company-histroy .aboutus-main .content p {
    max-width: 85%;
  }
}
@media screen and (max-width: 1024px) {
    .blog-main img.mobile-view {
        height: 100%;
        width: 100%;
        object-fit: contain;
        aspect-ratio: auto;
    }
    .blog-main img.desktop-view {
        display: none;
    }
}
@media screen and (min-width: 1024px) {
  .blog-main img.desktop-view {
      height: 100%;
      width: 100%;
      object-fit: contain;
      aspect-ratio: auto;
  }
  .blog-main img.mobile-view {
      display: none;
  }
	.blog-main .content h1 {
		width: 82%;
    margin: 8px auto 32px;
	}
	.page-template-news .press-releases .card {
    min-width: 350px;
    border-color: #F2F2F2;
  }
  .page-template-news .latest-news .card img {
    height: auto;
  }
}
/* 16-08-2025 */
@media screen and (max-width: 640px) {
    .page-template-home .small-seamless {
        right: -19px;
    }
	.creating-the-next-feature {
        padding: 24px 24px 12px;
    }
	.creating-the-next-feature .leftsvg {
		width: 55px;
		height: 55px;
	}
	.creating-the-next-feature h2:nth-child(1) {
        margin-top: 24px;
    }
	.creating-the-next-feature p {
        margin-bottom: 43px;
    }
	.creating-the-next-feature .rightsvg {
		width: 35px;
		height: 35px;
		bottom: 0;
	}
	.better-tomorrow .row .col p{
		font-size: 16px;
	}
	.better-tomorrow .row .col ul li p{
		font-size: 14px;
	}
	.better-tomorrow .row {
        row-gap: 24px;
    }
	.ground-breaking .row .col div p {
    	margin-bottom: 12px;
	}
	.our-product .row .col .learnmore {
        justify-content: center;
    }
	.careers-at .row .col:nth-child(1) {
        margin-top: -7px;
    }
	.home .careers-at {
		padding: 0 24px;
	}
	header nav ul:first-child p{
		font-size: 16px;
	}
	section.careers-at.bg-white.aboutus-global.ab-careerat.global-presence{
		background: #F2F2F2;
	}
	.aboutus-global::before {
		display: none;
	}
	.aboutus-global .row {
		margin-bottom: 0px;
    }
	.info-main {
		padding: 145px 24px 48px;
	}
	.cmpy-history-sec .row .align-self h3 {
		padding: 12px 28px !important;
	}
	.cmpy-history-sec .rocket{
		margin-top: 24px;
    	z-index: 999;
	}
	.cmpy-history-sec {
		padding: 71px 24px 0px 32px;
    }
/* 	.cmpy-history-sec .row .col:nth-child(even) img {
        margin-right: 9px;
        max-width: 123px;
    } */
	.res-innovation-everystep{
		background-position: center;
		background-size: cover;
	}
	.aboutus-main .content h1 {
        max-width: 100%;
    }
	.press-releases .card img {
		height: inherit;
	}
	.other-blogs {
        padding: 80px 24px 0px;
    }
	.insights-blogs.other-blogs .swiper-arrow{
		bottom: 0;
		top: inherit;
	}
	.insights-blogs .container {
    	padding-bottom: 32px;
	}
	.insights-blogs .prev {
   	 	right: 55%;
	}
	.insights-blogs .next {
    	right: 35%;
	}
	.blog3-mobile-img img{
		height: unset;
	}
	.our-mufb-pro .row:nth-child(odd) {
    	flex-direction: column-reverse;
	}
	.fine-bubbles {
        padding: 48px 24px;
    }
	.fine-bubbles .row .col:nth-child(2) img:nth-child(2){
		width: 197px;
		height: 196.298px;
		right: 0;
		top: 18px;
	}
	.fine-bubbles .row .col:nth-child(2) img:nth-child(3){
		width: 119px;
        height: 119.045px;
        right: 42%;
        top: 150px;
        z-index: -2;
	}
	.fine-bubbles .row .col:nth-child(1) h2 {
        margin: 24px 0px 22px;
    }
	.water-reivented.fine-bubbles .svg-bg{
		display: none;
	}
	.ourproduct-whychoose .row .col:nth-child(1) img {
        width: 60%;
    }
	.home-product .buttom-box {
		text-align: center;
		visibility: visible;
		border-radius: 80px 80px 0 80px;
		padding: 40px 24px;
		height: unset;
	}
	.home-product .buttom-box div h4 {
    	font-size: 20px;
		margin-top: 64px;
	}
	.home-product .buttom-box div {
		width: 100%;
    }
	.loexpo-info {
    	padding: 48px 24px !important;
	}
	.loexpo-info .buttom-box .catlogbox-rght-svg svg{
		display: none;
	}
	.loexpo-info .buttom-box .catlogbox-lft-svg {
		left: 0;
	}
	.loexpo-info .buttom-box .catlogbox-lft-svg svg{
		width: 48px;
		height: 48px;
		margin-top: -20px;
	}
	.water-reivented .row .col:nth-child(1) {
        margin-top: 24px;
    }
	.water-reivented .row .col:nth-child(2) img:nth-child(2) {
        width: 130px;
        height: 130px;
        right: 5px;
        top: 15px;
        z-index: 1;
    }
	.water-reivented .row .col:nth-child(2) img:nth-child(3) {
        width: 131.831px;
        height: 131.831px;
        right: 15%;
        top: 127px;
        z-index: 2;
    }
	.our-product.celebrating-years .content h2{
		padding: 0 25px;
	}
}
/* 26-08-2025 */
/* iPad Air Portrait */
@media screen and (min-width: 768px) and (max-width: 1024px) {
	.blog-main {
		padding: 60px 0px 0px;
	}
	.blog-main.gallery-main .content h1{
		font-size: 40px;
		line-height: 48px;
	}
	.blog-main .content p{
		font-size: 16px;
	}
	.blog-contents .container {
	    max-width: 720px;
	}
	.blog-contents.blog01 p{
		font-size: 16px;
		line-height: 28px;
	}
	.blog01 div p {
    	margin-bottom: 14px;
	}
/* 	section.blog-contents.blog01 p strong {
        font-size: 16px !important;
    } */
	.msg h5, .blog-contents ul li {
	    font-size: 16px;
	}
	.blog-contents.blog01 .wp-block-list li{
		font-size: 16px;
	}
	.insights-blogs .swiper-arrow {
    	top: 10px;
	}
	.blog-main.privacy .content h1{
		font-size: 40px;
		line-height: 48px;
	}
	.blog-main.privacy h4{
		font-size: 20px;
	}
	section.privacy {
		margin: 80px auto 0;
	}
	.blog-main.privacy .global-list {
    	padding-left: 32px;
	}
	.aboutus-main.gallery-main .content h1{
		font-size: 40px;
    	line-height: 48px;
	}
	.aboutus-main .content p {
    	font-size: 18px;
		line-height: 26px;
	}
	.gallery-taps .btn {
    	padding: 6px 10px;
	}
	.better-tomorrow{
		padding: 240px 0px 64px;
		background-color: #fff;
	}
	.page-template-home .welcome-to-maruyama-sec .row{
        padding-bottom: 80px;
    }
	.better-tomorrow .container{
        position: relative;
    }
	.better-tomorrow .row .col h2{
		position: absolute;
		top: -205px;
	}
	.better-tomorrow .row .col p{
		position: absolute;
		top: -90px;
		z-index: 999;
	}
	.better-tomorrow .row .col ul li p{
		position: relative;
		top: 0;
	}
	.home-product .dxlogo-bx{
		background-color: #FEF4F4;
	}
	.home-product .dxlogo-bx svg path{
		fill: #fff;
	}
	.our-product{
		background-color: #fff;
	}
	.our-product .row .col .resp-tabs-container-item .prod-tab-content h3 {
		width: 100%;
		text-align: center;
	}
	.our-product .row .col .resp-tabs-container-item .prod-tab-content p {
    	text-align: center;
	}
	.our-product .row .col .learnmore {
    	justify-content: center;
	}
	footer .row .col:nth-child(4) p {
    	margin-bottom: 30px;
	}
	.page-template-about-us .aboutus-main .content h1 {
    	max-width: 595px;
	}
	.aboutus-mission .row .col:nth-child(2) div img {
        object-position: right;
    }
	.aboutus-mission .row {
    	column-gap: 56px;
	}
	.legacy-excellence .row .col {
    	width: 35%;
	}
	.about-inclusive-feature .row .col ul{
		flex-wrap: nowrap;
	}
	.about-inclusive-feature .row .col:nth-child(3) {
		width: 720px !important;
    }
	section.careers-at.global-presence {
    	padding-top: 0;
	}
	.aboutus-global .careers-at .row .col:nth-child(1) {
		width: 100%;
		border-top: 0px solid #C4131C;
	}
	.cmpy-history-sec .row .col:nth-child(odd) h3::before{
		right: 120px;
	}
	.cmpy-history-sec .row .col:nth-child(odd) h3{
		margin-left: 20px;
	}
	.trilored-solution .row .col ul li:nth-last-child(1) {
		padding-bottom: 0px;
	}
	.page-template-solution .trilored-solution .row:nth-last-child(1) {
		margin-bottom: 0;
	}
	.real-result-field .swiper-container h4{
		padding: 0px 30px 16px;
	}
	.real-result-field .sliderContent .row .col:nth-child(1) img{
		object-position: right;
	}
	.res-innovation-everystep .row {
		align-items: flex-start;
		flex-direction: column;
	}
	.res-innovation-everystep ul{
		row-gap: 28px;
	}
	.res-innovation-everystep .row .col:nth-child(1) {
		margin-bottom: 26px;
	}
	.res-innovation-everystep ul li h5, .res-innovation-everystep h2 {
		margin-bottom: 12px;
	}
	section.feature-vision picture img {
	    object-position: left;
	}
	.join-moment h5 {
		width: 70%;
		margin: 0 auto 24px;
		color: #D3D2D2;
	}
	.join-moment h6{
		width: 63%;
    	margin: 0 auto 16px;
	}
	section.maruyama-advantages.demand-more .row .col h2 {
		width: 75%;
	}
	.product-line-up .line-up-explo .nav-tap{
		scrollbar-width: thin;	
	}
	.product-line-up .master-advanced-left-tab.active h4 {
		border-bottom: 1px solid;
	}
	.product-line-up .line-up-explo .tab-content .best-title{
		margin-left: 8px;
	}
	section.our-product.celebrating-years.featured-media{
		background-color: #070E29;
	}
	.career-main picture img {
		object-position: right;
	}
	.ope-main picture img{
		object-position: left;
	}
	.ourproduct-main picture img{
		object-position: left;
	}
	.career-president h2 {
        top: -20px !important;
        font-size: 30px;
    }
	.about-inclusive-feature .row .col ul li{
		text-align: center;
	}
	section.about-inclusive-feature.whychoose-maruyama .row{
		justify-content: space-around;
	}
	.our-product.home-product .buttom-box{
		background: #F2F2F2 !important;
	}
}
/* iPad Air Landscape */
@media only screen 
  and (min-device-width: 820px) 
  and (max-device-width: 1180px) 
  and (orientation: landscape) 
  and (-webkit-min-device-pixel-ratio: 2) {
	  footer .row .col:nth-child(4) p {
    	margin-bottom: 34px;
	  }
	  .careers-at .row .col:nth-child(2) img{
	    object-fit: cover;
	  }
	  .about-inclusive-feature .row{
		column-gap: 0px;
	  }
	  .page-template-mufe-range .fine-bubbles .row .col:nth-child(1) h2 {
        width: 75%;
	  }
	  .product-line-up .line-up-explo .product-swiper{
		height: 70vh;
	}
}	
.our-offices-factories .main-row{
	position:relative;
}
.our-offices-factories .main-row .col:nth-child(1){

}
.our-offices-factories .fix-bottom p{
	display:flex;
	align-items:center;
	font-size:12px;
	font-weight: 500;
line-height: 18px;
	color:#231F20;
}
.career-opportunities .main-row .col .row{
	padding-top:0px !important;
}
.career-opportunities .main-row .col .row .col{
	border-bottom:1px solid #F2F2F2;
	width:50%;
}
.career-opportunities .main-row .col .row .col:nth-child(1){
	width:50% !important;
}
.career-opportunities .main-row .col:nth-child(1) {
    width: 30% !important;
	padding:27px 24px;
}
.career-opportunities .main-row .col{
	width:70%;
}
.our-offices-factories .fix-bottom{
	position:absolute;
	bottom:0;
	left:0;
	width: 414px;
	background:#fff;
	display:flex;
	justify-content:center;
	column-gap:27px;
	padding:8px 0px;
	box-shadow: -4px 0 6px 0 rgba(0, 0, 0, 0.10);
}
picture img{
	width:100% !important;
	height:100%;
	    object-fit: cover;
}
picture{
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	object-fit:cover;
	object-position:center;
	z-index:-1;
}
/* Hide the default radio */
input[type="radio"] {
  display: none;
}

/* Custom label styling */
.wpcf7-radio .wpcf7-list-item-label {
 
 padding: 8px 40px;
  transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.20);
}

.outline-btn{
	display:flex;	
}
.learnmore p .form-control{
	padding:0px;
	border:none;
	font-size: 16px;
font-style: normal;
font-weight: 500;
}
.learnmore p{
	display: inline-grid;
    grid-template-columns: auto auto auto;
    column-gap: 8px;
}
.learnmore br{
	display:none;
}
.product-swiper .swiper-slide{
	transition: all 0.8s ease-in-out;
}
/* Selected/active state */
input[type="radio"]:checked + .wpcf7-list-item-label {
 border: 1px solid #C4131C;
}
.getin-touch .row .col:nth-child(2) form .col{width: 46.4%;}
.getin-touch .row .col:nth-child(2) form .col:nth-last-child(3),
.getin-touch .row .col:nth-child(2) form .col:nth-last-child(4) {
  width: 100% !important;
}
.getin-touch .row .col:nth-child(2) form .col textarea {
	height:48px;
}
.product-line-up .line-up-explo .product-swiper{
	    height: 93vh;
}
.home-product .buttom-box .catlogbox-rght-svg{
	position:absolute;
	left:0px;
}
.home-product .buttom-box svg{
	
}
.product-line-up .line-up-explo .tab-content .row .col .product-slider {
	width: 472px;
height: 348.102px;
}
.latest-news .row .learnmore svg{
	display:none;
}
.hero-main .swiper-slide h1{
	    width: 839px;
}
.hero-main .first-slide h1{
	    width: 95%;

}
.product-line-up .line-up-explo .tab-content .row .col:nth-child(1) {
	overflow:hidden;
}
.product-line-up .product-slider .product-pagination {
    text-align: center;
    margin-bottom: 6px;
    position: absolute;
    bottom: 0;
}
.catlogbox-rght-svg{
	position:absolute;
	left:64px !important;
	top:57px;
}
.catlogbox-lft-svg{
	position:absolute !important;
	right:60.94px;
	top:57px;
}
.gallery-grid iframe {
    width: 100%;
    height: 100%;
    min-height: 268px;
}
.ultra-bubble-performance .pink-box img{
	width:248px;
	border-radius:32px 0px;
}
/* .skw-animation .row .col:nth-child(2){
	position:relative;
	transform: skewX(-13deg);
	overflow:hidden;
}
.skw-animation .row .col:nth-child(2):before{
	position: absolute;
    top: 0;
    left: 8%;
    z-index: 2;
    display: block;
    content: '';
    width: 20%;
    height: 90%;
	    opacity: 0;
	background: -webkit-linear-gradient(left, #F9BDBE  0%, #C4131C 100%);
    background: linear-gradient(to right, #F9BDBE 0%, #C4131C 100%);
    -webkit-transform: skewX(-25deg); */
    transform: skewX(-13deg);
}
.skw-animation .row .aos-animate:before{
		-webkit-animation: shine .75s;
	animation: shine .75s;
}
@-webkit-keyframes shine {
	100% {
		left: 100%;
		opacity:0.5;
	}
}
@keyframes shine {
	100% {
		left: 100%;
		opacity:0.5;
	}
}
.aos-animate .scroll-shake{
	animation: shake 0.5s ease-in-out;
}
@keyframes shake {
  0%   { transform: translateX(0); }
  25%  { transform: translateX(-5px); }
  50%  { transform: translateX(5px); }
  75%  { transform: translateX(-5px); }
  100% { transform: translateX(0); }
} */
.our-product .row .col ul .resp-tab-active::before{
	display:none;
}
.our-product.home-product .product-rightside-img {
    position: absolute;
    top: 345px;
	left: -45px;
}
.image-col{
	position:relative;
	z-index:9;
}
.whychoose-maruyama .image-col .skew-wrapper:before, .skew-wrapper:after{
	background:#F1F1F1;
}

.skew-wrapper {
 	position:relative;
	height:100%;
	clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}
.skew-wrapper img{
	height:100%;
}
.skew-wrapper::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 4%;
/*   background: linear-gradient(
    45deg,
    transparent,
    rgba(255,255,255,0.7),
    transparent
  ); */
	clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  background: linear-gradient(
  30deg,                         /* angle */
  rgba(196, 19, 28, 1) 0%,        /* #C4131C solid at start */
  rgba(249, 189, 190, 0) 100%     /* #F9BDBE transparent at end */
);
  top: 0%;
  left: 0%;
  opacity: 0;
	background-repeat:no-repeat;
  animation: shimmerSweep 2s linear infinite;
	    transform: rotate(-30deg);
}

@keyframes shimmerSweep {
  0% {
    top: 0%;
    left: 0%;
    opacity: 0;
  }
  25% {
    opacity: 45%; /* fade in */
  }
  50% {
    top: 50%;
    left:0%;
    opacity: 0; /* fade out as it leaves */
  }
  100% {
    top: 100%;
    left: 0%;
    opacity: 70%;
  }
}
@keyframes shimmer {
  0% { background-position: -100% 0; }
   50% { background-position: 50% 1; }
  100% { background-position: 100% 0; }
}
.skew-wrapper:after{
	content: '';
    background: #070E29;
    width: 44px;
    height: 102%;
    position: absolute;
   top: 0;
    right: 0;
	display:none;
    transform: rotate(5deg) translate(18px, -3px);
}
.skew-wrapper img {



}

.shine {
  position: relative;
  overflow: hidden;
}
.shine::before {
     background: linear-gradient(
    90deg,
    #C4131C 0%,
    #F9BDBE 50%,
    #C4131C 100%
  );
    content: "";
    display: block;
    height: 100%;
    left: 13%;
    position: absolute;
    top: 0;
    transform: skewX(-13deg);
    width: 9%;
    z-index: 2;

}
.shine:hover::before, .shine:focus::before {
  -webkit-animation: shine 0.85s infinite;
          animation: shine 0.85s infinite;
}
@-webkit-keyframes shine {
  100% {
    left: 78%;
  }
}
@keyframes shine {
  100% {
    left: 78%;
  }
}
.about-inclusive-feature .row {
	
}

.about-inclusive-feature .row .col:nth-child(3){	
	width: 458px;
}
.our-offices-factories {
    padding: 80px 0px 80px;
}
.loexpo-info{
	padding:0px 0px 80px;
}
.loexpo-info .buttom-box{
	background-color:#F2F2F2;
	margin:0px;
}
.creating-the-next-feature .container{
	position:relative;
}
.creating-the-next-feature .leftsvg{
	position:absolute;
	top:0px;
	left:0px;
}
.creating-the-next-feature .rightsvg{
	position:absolute;
	right:0;
}
.page-template-location-information .our-offices-factories .main-row .tab-content ul li:last-child {
    margin-bottom: 36px;
}
.page-template-location-information .feature-together .row .col form .form-control::placeholder {
    color: #C0BFBF;
}
.page-template-location-information .feature-together .row .col form .form-control {
    color: #C0BFBF;
    font-size: 16px;
    font-family: "Noto Sans JP";
    line-height: 24px;
}
[data-aos="reveal-left"] {
  position: relative;
/* clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%); */
  transition: transform 1.2s ease-in-out;
 
}
[data-aos="reveal-left"]:before{
	content:'';
	width:310px;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	background-color:#F2F2F2;
	z-index:1;
	transition:3s ease-in-out;
	clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
	
}

[data-aos="reveal-left"] img {
/*   transform: scaleX(0); */
/* 	background-color:#F2F2F2; */
/* 	width:0px; */
	width:0;
	height:386px;
  transform-origin: left center; 
 transition:3s ease-in-out;

}

/* When AOS triggers */
[data-aos="reveal-left"].aos-animate:before{
	width:10%;
	opacity:0;
}
[data-aos="reveal-left"].aos-animate img {
  width:368px;
}
.page-template-about-us .skw-animation .skew-wrapper::before,
.page-template-careers .skew-wrapper::before {
  display: none;
}
@media screen and (min-width: 1024px) {
  .page-template-home .latest-news .card {
    border: 1px solid #F2F2F2;
  }
  .page-template-home .latest-news .card img {
    height: auto;
  }
  .page-template-mufe-range .fine-bubbles .row .col:nth-child(1) h2 {
    width: 57%;
  }
  .page-template-mufe-range .home-product .buttom-box,
  .page-template-ope-range .loexpo-info .buttom-box {
    margin-top: 80px;
  }
  .page-template-news .aboutus-main .content p {
    max-width: 60%;
  }
  .about-inclusive-feature .row .col:first-child {
    width: 34%;
  }
  section.blog-main.privacy .content h1 {
    margin-left: 0;
  }
  .career-down-arrow {
	bottom: -50px;
  }
}
.page-template-home .our-product .row .col ul .resp-tab-item {
  transition: width 700ms cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.page-template-home .small-seamless .arrow-track {
    animation: moveLR 2.5s linear infinite;
}
.career-down-arrow .arrow-container::after {
    width: 100%;
    height: 16px;
    content: "";
    position: absolute;
    top: 0;
    z-index: 2;
    background: linear-gradient(358deg, rgba(255, 255, 255, 0.00) 0%, #ffffff 100%);
    left: 0;
}
.career-down-arrow .arrow-container::before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, #ffffff 20%, #ffffff00 100%);
    z-index: 0;
}
.page-template-our-product .arrow-container {
    height: 60px;
    position: relative;
    overflow: hidden;
}
.page-template-our-product .since-product a .upcoming-arrow {
    right: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 60px;
    animation: verticalTwoLineLoop 0.8s linear infinite;
}
.page-template-our-product .since-product a .upcoming-arrow.second {
    display: none;
}
.page-template-our-product .arrow-container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 15px;
    width: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);
}
.page-template-our-product .since-product a {
	top: 0;
}
.newsletter-field p {
  padding: 0 !important;
  margin: 0;
}
.newsletter-field .newsletter-icon {
  position: absolute;
  top: 7px;
  left: 0;
  z-index: 1;
}
.wpcf7-not-valid-tip {
  font-size: 12px;
}
.wpcf7 form.sent .wpcf7-response-output {
  font-size: 14px;
  padding: 0;
  border: none;
  margin: 8px 0 0 3px;
  color: #4A4748;
}
.newsletter-field .newsletter-submit {
  position: absolute;
  top: 5px;
  right: 20px;
  z-index: 1;
  cursor: pointer;
}
.wpcf7-form.sent .newsletter-field .newsletter-submit svg {
  display: none;
}
.wpcf7-form.submitting .newsletter-submit svg {
  display: none;
}
.wpcf7-form.submitting .newsletter-submit::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin-top: -12px;
  margin-left: -12px;
  border: 3px solid #fff;
  border-top: 3px solid #C4131C;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 2;
}
.wpcf7-form.sent .newsletter-field .newsletter-submit::before {
  content: "";
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzc0OTFfOTg4NikiPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTAgMTJDMCA4LjgxNzQgMS4yNjQyOCA1Ljc2NTE2IDMuNTE0NzIgMy41MTQ3MkM1Ljc2NTE2IDEuMjY0MjggOC44MTc0IDAgMTIgMEMxNS4xODI2IDAgMTguMjM0OCAxLjI2NDI4IDIwLjQ4NTMgMy41MTQ3MkMyMi43MzU3IDUuNzY1MTYgMjQgOC44MTc0IDI0IDEyQzI0IDE1LjE4MjYgMjIuNzM1NyAxOC4yMzQ4IDIwLjQ4NTMgMjAuNDg1M0MxOC4yMzQ4IDIyLjczNTcgMTUuMTgyNiAyNCAxMiAyNEM4LjgxNzQgMjQgNS43NjUxNiAyMi43MzU3IDMuNTE0NzIgMjAuNDg1M0MxLjI2NDI4IDE4LjIzNDggMCAxNS4xODI2IDAgMTJaTTExLjMxNTIgMTcuMTM2TDE4LjIyNCA4LjQ5OTJMMTYuOTc2IDcuNTAwOEwxMS4wODQ4IDE0Ljg2MjRMNi45MTIgMTEuMzg1Nkw1Ljg4OCAxMi42MTQ0TDExLjMxNTIgMTcuMTM2WiIgZmlsbD0iIzAwQkQxNiIvPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzc0OTFfOTg4NiI+CjxyZWN0IHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K");
  width: 20px;
  height: 20px;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
}
.wpcf7-form.sent .newsletter-field .newsletter-submit,
.wpcf7-form.submitting .newsletter-submit {
  width: 24px;
  height: 24px;
  border: none;
  background: none;
  right: 4px;
  top: 7px;
}
@keyframes verticalTwoLineLoop {
    0% {
        top: -7px;
    }
    100% {
        top: 21px;
    }
}
@keyframes line-move-vertical {
  0% {
    top: -20%;
    opacity: 0;
  }
  100% {
    top: 150%;
    opacity: 0.4;
  }
}
@media screen and (max-width: 640px) {
  .our-offices-factories {
      padding: 48px 0px;
  }
  .our-offices-factories .row.main-row {
    height: auto;
    flex-direction: column-reverse;
    flex-wrap: nowrap;
  }
  .page-template-location-information .career-opportunities .main-row .col:nth-child(1) {
    padding: 0 24px 0;
    cursor: pointer;
    width: 100% !important;
    position: relative;
    float: none;
    height: auto;
  }
  .page-template-location-information .our-offices-factories .row.main-row .col .row {
    padding-top: 24px !important;
  }
  .our-offices-factories .fix-bottom {
    padding: 8px 24px;
    flex-wrap: nowrap;
    right: 0;
    gap: 3px;
    width: auto;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .our-offices-factories .fix-bottom p {
    align-items: center;
    justify-content: center;
    font-size: 12px;
    gap: 4px;
  }
  .our-offices-factories .fix-bottom p svg, .our-offices-factories .fix-bottom p img {
    width: 24px;
    height: 24px;
  }
  .our-offices-factories #map {
    height: 310px;
  }
  .newsletter-field .newsletter-submit {
    right: 9%;
  }
  .home-product .buttom-box div h4 {
    font-weight: 700;
  }
  footer .copyrights {
    padding: 24px 0 0px;
    width: 213px !important;
    margin: auto;
  }
  footer .newsletter-field p {
    padding: 0 !important;
    margin: 0 !important;
  }
  footer .row {
    padding-bottom: 40px;
  }
  footer .row .col:nth-child(2) p,
  footer .row .col:nth-child(3) p,
  footer .row .col:nth-child(3) p:nth-child(3),
  footer .row .col:nth-child(4) p {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 24px;
    padding-top: 0;
  }
  .newsletter-field .newsletter-icon {
    top: 14%;
    left: 1%;
  }
}
.ope-sec .container {
  position: relative;
}
.ope-sec .row.ope-zoom-animation {
  gap: 8px;
}
.ope-sec .row.ope-zoom-animation .col {
  width: 271px;
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  transform: skew(-10deg);
  height: 388px;
  scale: 0;
  transition: scale 4s ease;
}
.ope-sec .row.ope-zoom-animation .col.aos-animate {
  scale: 1;
}
.ope-sec .row.ope-zoom-animation .col:first-child {
  margin-left: 52px;
}
.ope-sec .row.ope-zoom-animation .col img {
  height: 388px;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  transform: translate(-50%, -50%) skew(10deg);
}
.ope-sec .row.ope-zoom-animation .col::before {
  display: none;
}
.skw-animation .image-col.aos-animate {
  scale: 1;
}
.skw-animation .image-col {
  scale: 0;
  transition: scale 4s ease;
}
.page-template-our-product .arrow-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 12px;
  width: 100%;
  background: linear-gradient(360deg, rgba(255, 255, 255, 0.00) 0%, #fff 114%);
  z-index: 1;
}
.page-template-our-product .arrow-container::after {
  z-index: 1;
}
.page-template-our-product .since-product a .upcoming-arrow.second {
  display: block;
  animation-delay: 0.5s;
}
.page-template-our-product .since-product a .upcoming-arrow.second path:nth-child(1) {
  display: none;
}
section.feature-vision picture {
  position: relative;
}
.hero-main .swiper-slide a.learnmore path:nth-child(1) {
  fill: #C4131C;
}
@keyframes verticalTwoLineLoop {
  0% {
      top: -33px;
  }
  100% {
      top: 21px;
  }
}
.single-post .other-blogs .blog-card .blog-img img {
  height: auto;
}
.single-post .other-blogs {
  padding: 104px 0 0;
}
.page-template-home .ground-breaking picture {
  position: relative;
}
.page-template-home .ground-breaking picture img {
  width: auto !important;
  height: auto;
  object-fit: none;
}
/* header nav ul li.land-sel {
  display: none;
}
header nav .navmenu-1 ul:nth-child(1) li:nth-child(3) {
  padding-right: 0;
} */
.our-product-arrow-container {
  width: 22px;
  height: 26px;
  background-size: 100% 20px;
  animation: SpecialmoveArrows 0.8s linear infinite;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyMCAyMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggb3BhY2l0eT0iMC4zIiBkPSJNMTcuNDk3NyAxMS45ODg4TDEwLjAwMDcgMTkuMjk2OEwyLjUwMzcyIDExLjk4ODhDMi4zNjk3OCAxMS44NTggMi4xODk5NyAxMS43ODQ3IDIuMDAyNzIgMTEuNzg0N0MxLjgxNTQ4IDExLjc4NDcgMS42MzU2NyAxMS44NTggMS41MDE3MiAxMS45ODg4QzEuNDM2ODcgMTIuMDUyMyAxLjM4NTM0IDEyLjEyODIgMS4zNTAxNyAxMi4yMTE5QzEuMzE0OTkgMTIuMjk1NiAxLjI5Njg3IDEyLjM4NTUgMS4yOTY4OCAxMi40NzYzQzEuMjk2ODcgMTIuNTY3MSAxLjMxNDk5IDEyLjY1NyAxLjM1MDE3IDEyLjc0MDdDMS4zODUzNCAxMi44MjQ0IDEuNDM2ODcgMTIuOTAwMyAxLjUwMTcyIDEyLjk2MzhMOS40NzcyMiAyMC43Mzk4QzkuNjE3MjkgMjAuODc2MyA5LjgwNTE0IDIwLjk1MjcgMTAuMDAwNyAyMC45NTI3QzEwLjE5NjMgMjAuOTUyNyAxMC4zODQyIDIwLjg3NjMgMTAuNTI0MiAyMC43Mzk4TDE4LjQ5OTcgMTIuOTY1M0MxOC41NjUgMTIuOTAxNyAxOC42MTcgMTIuODI1NyAxOC42NTI0IDEyLjc0MTdDMTguNjg3OCAxMi42NTc3IDE4LjcwNjEgMTIuNTY3NSAxOC43MDYxIDEyLjQ3NjNDMTguNzA2MSAxMi4zODUxIDE4LjY4NzggMTIuMjk0OSAxOC42NTI0IDEyLjIxMDlDMTguNjE3IDEyLjEyNjkgMTguNTY1IDEyLjA1MDkgMTguNDk5NyAxMS45ODczQzE4LjM2NTggMTEuODU2NSAxOC4xODYgMTEuNzgzMiAxNy45OTg3IDExLjc4MzJDMTcuODExNSAxMS43ODMyIDE3LjYzMTcgMTEuODU2NSAxNy40OTc3IDExLjk4NzNWMTEuOTg4OFoiIGZpbGw9IiNDNDEzMUMiIHN0cm9rZT0iI0M0MTMxQyIvPgo8cGF0aCBkPSJNMTcuNDk3NyAxLjIwNTZMMTAuMDAwNyA4LjUxMzZMMi41MDM3MiAxLjIwNTZDMi4zNjk3OCAxLjA3NDc1IDIuMTg5OTcgMS4wMDE1IDIuMDAyNzIgMS4wMDE1QzEuODE1NDggMS4wMDE1IDEuNjM1NjcgMS4wNzQ3NSAxLjUwMTcyIDEuMjA1NkMxLjQzNjg3IDEuMjY5MTQgMS4zODUzNCAxLjM0NDk5IDEuMzUwMTcgMS40Mjg3QzEuMzE0OTkgMS41MTI0MSAxLjI5Njg3IDEuNjAyMyAxLjI5Njg4IDEuNjkzMUMxLjI5Njg3IDEuNzgzOSAxLjMxNDk5IDEuODczNzggMS4zNTAxNyAxLjk1NzQ5QzEuMzg1MzQgMi4wNDEyIDEuNDM2ODcgMi4xMTcwNSAxLjUwMTcyIDIuMTgwNkw5LjQ3NzIyIDkuOTU2NkM5LjYxNzI5IDEwLjA5MzEgOS44MDUxNCAxMC4xNjk1IDEwLjAwMDcgMTAuMTY5NUMxMC4xOTYzIDEwLjE2OTUgMTAuMzg0MiAxMC4wOTMxIDEwLjUyNDIgOS45NTY2TDE4LjQ5OTcgMi4xODIxQzE4LjU2NSAyLjExODUgMTguNjE3IDIuMDQyNDcgMTguNjUyNCAxLjk1ODQ4QzE4LjY4NzggMS44NzQ1IDE4LjcwNjEgMS43ODQyNiAxOC43MDYxIDEuNjkzMUMxOC43MDYxIDEuNjAxOTQgMTguNjg3OCAxLjUxMTcgMTguNjUyNCAxLjQyNzcxQzE4LjYxNyAxLjM0MzczIDE4LjU2NSAxLjI2NzY5IDE4LjQ5OTcgMS4yMDQxQzE4LjM2NTggMS4wNzMyNSAxOC4xODYgMSAxNy45OTg3IDFDMTcuODExNSAxIDE3LjYzMTcgMS4wNzMyNSAxNy40OTc3IDEuMjA0MVYxLjIwNTZaIiBmaWxsPSIjQzQxMzFDIiBzdHJva2U9IiNDNDEzMUMiLz4KPC9zdmc+Cg==");
  position: relative;
  margin: auto;
}
.our-product-arrow-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 22px;
  height: 4px;
  right: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);
  z-index: 1;
}
@keyframes SpecialmoveArrows {
  0% {
      background-position-y: 0;
  }
  100% {
      background-position-y: 20px;
  }
}
.creating-the-next-feature .rightsvg {
  z-index: -1;
}
.ope-sec .row.ope-zoom-animation .col {
  width: 271px;
  height: 388px;
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  transform: skew(-10deg) scaleX(0);
  transition: transform 1.5s ease;
}
.ope-sec .row.ope-zoom-animation .col.aos-animate {
  transform: skew(-10deg) scaleX(1);
}
.ope-sec .row.ope-zoom-animation .col::before,
.ope-sec .row.ope-zoom-animation .col::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #F2F2F2;
  display: block;
  z-index: 1;
  transition: opacity 1.2s ease;
}
.ope-sec .row.ope-zoom-animation .col::before {
  clip-path: polygon(0% 0, 0% 100%, 35% 0);
}
.ope-sec .row.ope-zoom-animation .col::after {
  clip-path: polygon(65% 100%, 100% 100%, 100% 0);
  z-index: 6;
}
.ope-sec .row.ope-zoom-animation .col.aos-animate::before,
.ope-sec .row.ope-zoom-animation .col.aos-animate::after {
  opacity: 0;
}
.ope-sec .row.ope-zoom-animation .col:nth-child(1),
.ope-sec .row.ope-zoom-animation .col:nth-child(2) {
  transform-origin: left;
}
.ope-sec .row.ope-zoom-animation .col:nth-child(3){
  transform-origin: right;
}
@media screen and (max-width: 640px) {
  .ope-sec .row.ope-zoom-animation {
    gap: 4px;
    margin: 0 14px 24px 14px;
  }
  .ope-sec .row.ope-zoom-animation .col:first-child {
    margin-left: 0px;
  }
  .ope-sec .row.ope-zoom-animation .col,
  .ope-sec .row.ope-zoom-animation .col img {
    height: 134px;
  }
  .feature-vision img {
    height: auto;
  }
}
@media screen and (max-width: 1024px) {
  .page-template-home .latest-news .card img {
    height: auto;
  }
  .page-template-home .home-product .dxlogo-bx {
    position: relative;
    margin-bottom: 48px;
  }
  .page-template-home .home-product .dxlogo-bx div svg {
    left: 0;
    top: -15px;
  }
  .page-template-home .home-product .buttom-box {
    border-radius: 80px 80px 0 80px;
    background: #F2F2F2;
  }
  .page-template-home .home-product .buttom-box .catlogbox-rght-svg {
    display: none;
  }
  .page-template-home .home-product .buttom-box .catlogbox-lft-svg path {
    fill: #FFF;
  }
  .page-template-home .home-product .buttom-box .catlogbox-lft-svg {
    left: 0;
    right: 0;
    top: 42px;
    position: relative;
  }
  .page-template-home .home-product .buttom-box svg {
    width: 47.253px;
    height: 47.998px;
  }
  .page-template-home .hero-main p {
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 16px;
  }
  .page-template-home .ground-breaking picture {
    text-align: center;
    width: 100% !important;
  }
  .page-template-home .hero-main .learnmore svg path:nth-child(1) {
    fill: #C4131C;
  }
  .page-template-home .better-tomorrow .row .col a.learnmore {
    margin-left: 0;
  }
  .page-template-home .better-tomorrow .row ul li:nth-last-child(1) p {
    margin-bottom: 24px;
  }
  .page-template-home .ground-breaking .row .col h4 {
    top: 58%;
  }
  .page-template-home .ground-breaking .row .col:nth-child(2) h4 {
    top: 56%;
  }
  .page-template-home .ground-breaking .row .col div p {
    margin-bottom: 0;
  }
  .newsletter-field .newsletter-submit {
    background: none;
    border: none;
  }
  footer .row .col form .form-control {
    border-radius: 0px;
  }
  footer .wpcf7 {
    width: 100%;
  }
  .page-template-about-us .sustainability-action {
    padding: 48px 24px 32px;
  }
  .skw-animation .skew-wrapper {
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
    height: auto;
    margin: auto;
    display: block;
  }
  .page-template-our-product .ope-sec:before {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTgiIGhlaWdodD0iNzMiIHZpZXdCb3g9IjAgMCA1OCA3MyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTS0xLjAxNjY3ZS0wNSA1OEMtNC41NTE4ZS0wNiAyNS45Njc1IDI1Ljk2NzUgNC41Mjg4M2UtMDYgNTggMS4wMTE1NGUtMDVMNTggNzNMLTEuMjc5NmUtMDUgNzNMLTEuMDE2NjdlLTA1IDU4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==");
  }
  .page-template-our-product .water-reivented .row .col:nth-child(1) p {
    color: #231F20;
  }
  .page-template-our-product .yield-efficiency .content h2 {
    margin-left: auto;
    margin-right: auto;
    width: 278px !important;
  }
  .page-template-our-product .yield-efficiency .swiper-wrapper .on a h4 {
    font-weight: 700;
    font-size: 16px;
  }
  .page-template-our-product .yield-efficiency .sliderTab .swiper-slide h4 {
    width: auto;
    margin: auto;
    font-size: 16px;
    padding-bottom: 10px;
    line-height: 22px;
  }
  .page-template-our-product .yield-efficiency .sliderTab .swiper-slide {
    width: 50%;
  }
  .page-template-our-product .yield-efficiency .sliderContent p {
    margin-bottom: 24px;
  }
  .page-template-mufe-range .maruyama-advantages .row .col:nth-child(2) {
    padding: 32px 0 0;
  }
  .page-template-mufe-range .maruyama-advantages .row .col:nth-child(2) h2 + p {
    margin-bottom: 24px;
  }
  .page-template-mufe-range .maruyama-advantages .row .col ul li {
    padding: 0px 0px 24px 0px;
  }
  .page-template-mufe-range .maruyama-advantages .row .col ul li img {
    margin-right: 16px;
    width: 40px;
    height: 40px;
  }
  .page-template-mufe-range .our-mufb-pro .row ul li {
    color: #231F20;
  }
  .page-template-mufe-range .pink-box .content h5 {
    line-height: 24px;
    font-weight: 600;
  }
  .page-template-mufe-range .whats-next .content p {
    font-weight: 600;
  }
  .pink-box .content h5::before {
    content: "";
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODIiIGhlaWdodD0iODAiIHZpZXdCb3g9IjAgMCA4MiA4MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAuNzExMDMgMzkuNTAwMUMwLjc1ODA5MSA2MS4zNjA4IDE3LjY1MDIgODAuNTgxNyA0MC45NzkgNzkuNjExOEM0Mi4zOTczIDc5LjYzMDUgNDMuNzk4IDc5LjU3NDYgNDUuMTc4IDc5LjQ1MTZMODEuMTc2NyA3OC42NjUyTDgxLjA5MTggMzkuMTY2Mkw4MS4wNDY5IDM5LjIxMjVDODAuMjgxMyAxNy45NjUgNjIuNTQzMiAwLjczMjc5IDQwLjgwODEgMC40NDY4M0MxOC42MTYzIDAuMTU0OTE5IDAuNjY0MTYzIDE3LjYzOTUgMC43MTEwMyAzOS41MDAxWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==");
    position: absolute;
    background-repeat: no-repeat;
    top: -12px;
    left: -17px;
    z-index: -1;
    display: block;
    width: 54px;
    height: 54px;
    background-size: cover;
  }
  .product-line-up .line-up-explo .product-swiper {
    height: auto;
  }
  .product-line-up .line-up-explo .product-swiper .swiper-wrapper {
    width: auto;
    height: 269px;
    align-items: center;
  }
  .product-line-up .line-up-explo .tab-content .row .col .product-slider {
    width: auto;
    height: auto;
  }
  .product-line-up .line-up-explo .nav-tap {
    margin-bottom: 0;
  }
  .product-line-up .line-up-explo .tab-content .row .col:last-child {
    padding-left: 16px;
    padding-right: 16px;
  }
  .page-template-innovation-sustainability .primary-title {
    font-size: 12px;
  }
  .page-template-innovation-sustainability .primary-title + h2 {
    font-size: 22px;
    margin-top: 6px;
  }
  .page-template-innovation-sustainability .relentless-sec .row .col ul.global-list li p:nth-child(1) {
    font-size: 16px;
  }
  .page-template-innovation-sustainability .purposeful-innovation {
    padding-top: 0;
  }
  .res-innovation-everystep .row ul li h5 {
    font-size: 18px;
  }
  .page-template-innovation-sustainability .greener-tomorrow .row .col h5 {
    font-size: 18px;
    width: 198px;
    margin: 0 auto 8px;
  }
  .page-template-innovation-sustainability .feature-vision .before-svg {
    transform: rotate(-180deg) !important;
    top: 44%;
  }
  .page-template-innovation-sustainability .feature-vision .row .col p {
    font-size: 16px;
    line-height: 24px;
  }
  .page-template-solution .yield-efficiency .swiper-wrapper .on a h4 {
    font-weight: 800;
  }
  .our-offices-factories .main-row .tab-content ul li p:nth-child(1) {
    font-size: 16px;
  }
  .our-offices-factories .main-row .tab-content ul li a.direction-a-link {
    font-size: 16px;
  }
  .page-template-location-information .loexpo-info {
    padding: 0 24px 48px !important;
  }
  .page-template-location-information .find-a-dealer .content {
    margin-bottom: 24px;
  }
  .page-template-location-information .find-a-dealer .row .col ul li p:nth-child(1) {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .page-template-location-information .find-a-dealer .row .col {
    padding: 16px;
  }
  .page-template-location-information .find-a-dealer .content form div .form-select {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .page-template-location-information .find-a-dealer .content form div:nth-child(2) .form-select {
    margin-bottom: 0;
  }
  .page-template-location-information .find-a-dealer .row .col ul li p:last-child {
    margin-bottom: 0;
  }
  .page-template-location-information .feature-together .row .col form .form-control {
    font-size: 14px;
  }
  section.blog-contents.blog01 p strong {
    font-size: 18px;
  }
  .other-blogs {
    padding: 55px 24px 0px;
  }
  .ground-breaking picture {
    position: relative;
    object-fit: contain;
    height: auto;
  }
  .ground-breaking .row .col div img {
    height: auto;
  }
  .our-product .row .col:nth-child(2) h3 {
    margin-left: auto;
    margin-right: auto;
  }
  .about-inclusive-feature svg.svg-bg {
    width: 17.095px;
    height: 36.696px;
  }
  .product-line-up .line-up-explo .product-swiper .swiper-wrapper .swiper-slide img {
    width: 100%;
    margin: auto;
    display: block;
    object-fit: contain;
  }
  .page-template-innovation-sustainability .feature-vision .before-svg {
    top: 359px;
  }
  .career-president h2 {
    top: -483px;
    right: 0;
    margin: auto !important;
  }
  .career-president h2 {
    top: -433px;
  }
  .page-template-careers .swiper-arrow {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .page-template-our-product .loexpo-info {
    padding-top: 0px !important;
  }
  .page-template-news .whats-next svg {
    display: none;
  }
  .page-template-news .join-moment.news-cards .swiper-pagination-news {
    margin-top: 8px;
  }
  .single-post .other-blogs {
    padding: 80px 24px 0;
  }
  .single-post .insights-blogs .container {
    padding-bottom: 56px;
  }
  .hero-main .swiper-slide {
    height: 600px;
  }
  .water-reivented .row .col:nth-child(2) img:nth-child(1) {
    z-index: 3;
  }
  .water-reivented .row .col:nth-child(2) img:nth-child(2) {
    z-index: 1;
  }
  .water-reivented .row .col:nth-child(2) img:nth-child(3) {
    z-index: 2;
  }
  .page-template-solution section.yield-efficiency.career-opportunities.real-result-field .sliderTab__prev, 
  .page-template-solution section.yield-efficiency.career-opportunities.real-result-field .sliderTab__next {
    display: none;
  }
  .page-template-solution .yield-efficiency .swiper-wrapper .on a h4 {
    font-weight: 800;
    margin: 0;
  }
  .page-template-solution .real-result-field .sliderTab .swiper-slide:nth-child(1) {
    width: 66%;
  }
  .page-template-solution .real-result-field .sliderTab .swiper-slide:nth-child(2) {
    width: 80%;
  }
  .page-template-solution .real-result-field .sliderTab .swiper-slide h4 {
    font-size: 16px;
  }
  .page-template-home .creating-the-next-feature h2:nth-child(1) {
    margin-left: auto;
    margin-right: auto;
  }
  .page-template-home .small-seamless {
    right: 0;
  }
}
@media screen and (max-width: 415px) {
  .page-template-home .creating-the-next-feature h2:nth-child(1) span {
    margin-right: 43px;
  }
  
  .career-president h2 {
    top: -456px;
  }
  .page-template-home .ground-breaking .row .col h4 {
    top: 232px;
  }
  .page-template-home .ground-breaking .row .col:nth-child(2) h4 {
    top: 232px;
  }
}
@media screen and (max-width: 384.98px) {
  .page-template-home .creating-the-next-feature h2:nth-child(1) span {
    margin-right: 0;
  }
  .creating-the-next-feature h2:nth-child(1) span {
    margin-right: 29px;
    margin-left: 41px;
  }
}
@media screen and (max-width: 374.98px) {
  .page-template-home .creating-the-next-feature h2:nth-child(1) {
    margin-left: 0;
    margin-right: auto;
}
  .page-template-home .creating-the-next-feature h2:nth-child(1) span {
    margin-right: 8px;
}
  .page-template-home .small-seamless {
    right: -16px;
  }
  .career-president h2 {
    top: -407px;
  }
  .page-template-innovation-sustainability .feature-vision .before-svg {
    top: 44%;
  }
}
@media screen and (max-width: 320.98px) {
  .creating-the-next-feature h2:nth-child(1),
  .creating-the-next-feature h2:nth-child(1) span,
  .creating-the-next-feature h2:nth-child(2) {
    font-size: 16px;
  }
}
.single-post .insights-blogs.other-blogs .swiper-arrow.swiper-button-disabled {
  background-color: #C0BFBF;
}
.single-post .insights-blogs.other-blogs .swiper-arrow {
  background-color: #C4131C;
}
.page-template-about-us .about-inclusive-feature .row .col:nth-child(2),
.page-template-careers .whychoose-maruyama .row .col:nth-child(2) {
  align-items: center;
  display: flex;
  justify-content: center;
  clip-path: none;
  scale: none;
}
.page-template-about-us .skw-animation .image-col .skew-wrapper,
.page-template-careers .skw-animation .image-col .skew-wrapper {
  transform: skew(-10deg) scaleX(1);
  position: relative;
  width: 268px;
  overflow: hidden;
  display: flex;
  cursor: pointer;
  transform: skew(-10deg) scaleX(0);
  transition: transform 1.5s ease;
  clip-path: none;
}
.page-template-about-us .skw-animation .image-col.aos-animate .skew-wrapper,
.page-template-careers .skw-animation .image-col.aos-animate .skew-wrapper {
  transform: skew(-10deg) scaleX(1);
}
.page-template-about-us .skw-animation .image-col .skew-wrapper img,
.page-template-careers .skw-animation .image-col .skew-wrapper img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  transform: translate(-50%, -50%) skew(10deg);
}
.page-template-about-us .skw-animation .overlay-lines::before,
.page-template-about-us .skw-animation .overlay-lines::after,
.page-template-careers .skw-animation .overlay-lines::before,
.page-template-careers .skw-animation .overlay-lines::after {
  left: -13%;
  z-index: 11;
}
.page-template-careers .skw-animation .image-col .skew-wrapper {
  height: 441px;
  width: 328px;
}
.page-template-careers .our-employees .box .swiper-arrow {
  top: 0;
  bottom: 0;
  margin: auto;
}
.page-template-ope-range .product-line-up .product-swiper .tab-content .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-template-ope-range .product-line-up .swiper-autoheight .swiper-wrapper {
  align-items: center;
}
.product-line-up .line-up-explo .tab-content .row .col .product-slider {
  width: 393px;
}
.page-template-ope-range .loexpo-info,
.page-template-mufe-range .loexpo-info,
.page-template-ope-range .loexpo-info {
  padding-bottom: 0px;
}
@media screen and (min-width: 1024px) {
  .page-template-our-product .yield-efficiency {
    padding-bottom: 68px;
  }
}
.page-template-location-information .contact-success {
  text-align: center;
  display: none;
}
.page-template-location-information .contact-success #tick-container {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  position: relative;
}
.page-template-location-information .contact-success #tick-container svg {
  min-width: 130px;
  min-height: 130px;
  position: absolute;
  left: -25px;
  top: -16px;
}
.page-template-location-information .contact-success h5 {
  line-height: normal;
  margin-bottom: 8px;
}
.page-template-location-information .contact-success p {
  margin-bottom: 24px;
}
.page-template-location-information .contact-success a {
  justify-content: center;
  color: #fff;
}
.flip-animation {
  position: relative;
  z-index: 111111;
  overflow: hidden;
}
.our-offices-factories .flip-animation {
  position: relative;
  z-index: 1111;
  overflow: hidden;
  margin-bottom: 40px;
}
.our-offices-factories .flip-animation h2,
.find-a-dealer .flip-animation h2 {
  margin-bottom: 16px;
}
.find-a-dealer .flip-animation p {
  margin-bottom: 0;
}
.find-a-dealer .flip-animation {
  margin-bottom: 8px;
}
.find-a-dealer .flip-animation.description {
  margin-bottom: 32px;
}
@media screen and (max-width: 1024px) {
  .page-template-about-us .about-inclusive-feature.skw-animation .row .col:nth-child(2),
  .page-template-careers .about-inclusive-feature.skw-animation .row .col:nth-child(2) {
    height: 326px;
  }
  .page-template-about-us .skw-animation .image-col .skew-wrapper img,
  .page-template-careers .skw-animation .image-col .skew-wrapper img {
    transform: translate(-50%, -50%) skew(6deg);
  }
  .page-template-about-us .skw-animation .image-col.aos-animate .skew-wrapper,
  .page-template-careers .skw-animation .image-col.aos-animate .skew-wrapper {
    transform: skew(-6deg) scaleX(1);
    height: inherit;
  }
  .page-template-about-us .skw-animation .image-col .skew-wrapper,
  .page-template-careers .skw-animation .image-col .skew-wrapper {
    width: 245px;
  }
  .product-line-up .line-up-explo .tab-content .row .col .product-slider {
    width: auto;
  }
  .product-line-up .line-up-explo .product-swiper {
    margin-top: 16px;
  }
  .product-line-up .line-up-explo .product-swiper .swiper-wrapper {
    height: 326px;
  }
  .page-template-mufe-range .water-reivented .row .col:nth-child(2),
  .page-template-our-product .water-reivented .row .col:nth-child(2) {
    width: 312px !important;
    margin: auto;
  }
  .page-template-mufe-range .water-reivented .row .col:nth-child(2) img:nth-child(1),
  .page-template-our-product .water-reivented .row .col:nth-child(2) img:nth-child(1) {
    z-index: 3;
    position: relative;
  }
  .our-offices-factories .flip-animation {
    margin-bottom: 8px;
  }
  .find-a-dealer .flip-animation .description {
    margin-bottom: 24px;
  }
}
.wpcf7 form.invalid .wpcf7-response-output {
  display: none;
}
footer .row .col div.newsletter-field p {
  margin-bottom: 0 !important;
}
.creating-the-next-feature .rightsvg {
  bottom: 0;
}
.page-template-ope-range .fancybox__container {
  z-index: 11111;
}
/* .grecaptcha-badge {
    display: none !important;
} */
.page-template-about-us .about-president .flip-animation {
    margin: 0px auto 23px;
}
.page-template-about-us .celebrating-years .content .flip-animation {
    margin-bottom: 12px;
}
.page-template-about-us .about-president .flip-animation h2,
.page-template-about-us .celebrating-years .content .flip-animation h2,
.page-template-about-us .legacy-excellence .flip-animation h2,
.page-template-about-us .our-values .content .flip-animation h2,
.page-template-about-us .about-the-leadership .content .flip-animation h2,
.page-template-about-us .about-the-leadership h2,
.page-template-solution .trilored-solution .flip-animation h2 {
    margin-bottom: 16px;
}
.page-template-about-us .legacy-excellence .flip-animation {
    margin: 0 auto 40px;
}
.page-template-about-us .our-values .content .flip-animation {
    margin-bottom: 8px;
}
.page-template-about-us .about-the-leadership .content .flip-animation {
    margin-bottom: 24px;
}
.page-template-about-us .about-the-leadership .flip-animation {
    margin-bottom: 35px;
}
.page-template-solution .trilored-solution .flip-animation {
    margin-bottom: 44px;
}
header.fixed {
    z-index: 999999;
}
.page-template-our-product .ope-sec h2 {
    margin-bottom: 16px;
}
.page-template-our-product .yield-efficiency .content .flip-animation:nth-child(2){
    margin-top: 8px;
    margin-bottom: 20px;
}
.page-template-our-product .yield-efficiency .content .flip-animation h2 {
    margin: 0 auto 16px;
}
.page-template-innovation-sustainability .relentless-sec .flip-animation:nth-child(2) h2,
.page-template-innovation-sustainability .greener-tomorrow .flip-animation:nth-child(2) h2 {
    margin-bottom: 16px;
}
.page-template-mufe-range .mufb-main video {
    position: absolute;
    top: 0;
    height: 526px;
    left: 0;
    right: 0;
    object-fit: cover;
}
.page-template-company-histroy .news-main .content h1 {
    max-width: 880px;
}
.home-product .buttom-box {
	overflow: hidden;
}
.newsletter-field .newsletter-submit {
	border: none;
}
.page-template-home .welcome-to-maruyama-sec .row .col:nth-child(2) .pos-img {
    top: 8%;
}
.page-template-home .welcome-to-maruyama-sec .row {
    align-items: start;
}
.page-template-ope-range .fancybox__container {
    z-index: 1111111;
}
.page-template-about-us .about-the-leadership .player::before,
.page-template-about-us .about-the-leadership .player::after {
    transform: rotate(0deg);
    opacity: 0;
}
.page-template-about-us .about-the-leadership .player.aos-animate::before,
.page-template-about-us .about-the-leadership .player.aos-animate::after {
    opacity: 1;
}
.page-template-about-us .about-the-leadership .player::before {
    left: -58%;
}
.page-template-about-us .about-the-leadership .player.aos-animate::before {
    left: 0;
    transform: rotate(720deg);
    transition: left 2s ease-out, transform 2s ease-out, opacity 2s ease-out;
}
.page-template-about-us .about-the-leadership .player::after {
    right: -58%;
}
.page-template-about-us .about-the-leadership .player.aos-animate::after {
    right: 0;
    transform: rotate(-720deg);
    transition: right 2s ease-out, transform 2s ease-out, opacity 2s ease-out;
}
.page-template-location-information .feature-together .row .col form select.form-control option {
    color: #231F20;
}
.page-template-location-information .feature-together .row .col form .form-control:-webkit-autofill,
.page-template-location-information .feature-together .row .col form .form-control:-webkit-autofill:hover,
.page-template-location-information .feature-together .row .col form .form-control:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px #070E29 inset !important;
    -webkit-text-fill-color: #C0BFBF !important;
    background: transparent !important;
    transition: background-color 9999s ease-in-out 0s !important;
}
@media screen and (min-width: 1024px) {
  .page-template-home .welcome-to-maruyama-sec .row .col:nth-child(2) .pos-img:nth-child(2) {
      width: 331.897px;
      height: 330.412px;
  }
  .page-template-news .press-releases .content h2 {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 768px) {
  .page-template-mufe-range .mufb-main video {
    height: 100vh;   
  }
}
@media screen and (max-width: 1024px) {
    .page-template-about-us .celebrating-years .content .flip-animation {
        margin-bottom: 10px;
    }
    .page-template-about-us .legacy-excellence .flip-animation {
        margin-bottom: 16px;
    }
    .page-template-about-us .celebrating-years .content .flip-animation h2,
    .page-template-about-us .legacy-excellence .flip-animation h2,
    .page-template-about-us .about-the-leadership .content .flip-animation h2,
    .page-template-about-us .about-the-leadership h2 {
        margin-bottom: 16px;
    }
    .page-template-solution .our-mufb-pro .flip-animation h2 {
        margin-bottom: 64px;
    }
    .page-template-about-us .about-the-leadership .content .flip-animation,
    .page-template-solution .our-mufb-pro .flip-animation {
        margin-bottom: 8px;
        z-index: 1;
    }
    .page-template-about-us .about-the-leadership .flip-animation {
        margin-bottom: 18px;
    }
    .page-template-our-product .yield-efficiency .content .flip-animation:nth-child(2) {
        margin-bottom: 5px;
    }
    .page-template-mufe-range .mufb-main video {
      height: 588px;
    }
    .page-template-company-histroy .aboutus-main .content h1 {
        max-width: 88%;
    }
    .page-template-home .welcome-to-maruyama-sec .row .col:nth-child(2) .pos-img {
        top: 15%;
    }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .page-template-home .hero-main .swiper-slide h1 {
        width: 70%;
    }
    .page-template-home .creating-the-next-feature {
        padding-top: 64px;
    }
    .page-template-home .creating-the-next-feature p {
        z-index: 1;
        position: relative;
    }
    .page-template-home .creating-the-next-feature .small-seamless {
        top: 14px;
    }    
    .page-template-home .welcome-to-maruyama-sec {
        padding-bottom: 0;
    }
    .page-template-home .welcome-to-maruyama-sec .row {
        row-gap: 110px;
        flex-direction: column-reverse;
    }
    .page-template-home .welcome-to-maruyama-sec .row .col {
        width: 100% !important;
    }
    .page-template-home .welcome-to-maruyama-sec .row .col:nth-child(2) div img {
        border-radius: 50% 50% 0% 50%;
        width: 60%;
    }
    .page-template-home .welcome-to-maruyama-sec .row .col:nth-child(2) .pos-img {
        width: 50%;
    }
    .page-template-home .welcome-to-maruyama-sec .bottom-pos-banner {
        bottom: inherit;
        top: 18%;
        height: 400px;
    }
    .page-template-home .welcome-to-maruyama-sec .row .col:nth-child(2) div::before {
        width: 403px;
        height: 438px;
    }
    .page-template-home .ground-breaking .row .col {
        width: auto;
    }
    .page-template-home .our-product {
        padding: 64px 0px;
    }
    .page-template-home .our-product h5 {
        font-size: 18px;
    }
    .page-template-home .our-product .row .col ul .resp-tab-item:nth-child(1) img {
        margin-left: 0;
    }
    .page-template-home .our-product .row .col ul .resp-tab-item img {
        width: 335px;
    }
    .page-template-home .our-product .row .col ul .resp-tab-active img {
        width: 335px !important;
    }
    .page-template-home .our-product .row .col:nth-child(2) h3 {
        margin-left: 0;
    }
    .page-template-home .home-product .buttom-box {
        background: #FFF;
    }
    .page-template-home .home-product .buttom-box .catlogbox-rght-svg,
    .page-template-our-product .loexpo-info .buttom-box .catlogbox-rght-svg,
    .page-template-mufe-range .loexpo-info .buttom-box .catlogbox-rght-svg,
    .page-template-ope-range .loexpo-info .buttom-box .catlogbox-rght-svg,
    .page-template-location-information .loexpo-info .buttom-box .catlogbox-rght-svg {
        display: block;
        text-align: right;
        height: 100%;
        top: 0;
        width: 86%;
    }
    .page-template-home .home-product .buttom-box .catlogbox-lft-svg svg,
    .page-template-our-product .loexpo-info .buttom-box .catlogbox-lft-svg svg,
    .page-template-mufe-range .loexpo-info .buttom-box .catlogbox-lft-svg svg,
    .page-template-ope-range .loexpo-info .buttom-box .catlogbox-lft-svg svg,
    .page-template-location-information .loexpo-info .buttom-box .catlogbox-lft-svg svg {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        margin: auto;
        width: 64px;
        height: 64px;
    }
    .page-template-home .home-product .buttom-box .catlogbox-lft-svg,
    .page-template-our-product .loexpo-info .buttom-box .catlogbox-lft-svg,
    .page-template-mufe-range .loexpo-info .buttom-box .catlogbox-lft-svg,
    .page-template-ope-range .loexpo-info .buttom-box .catlogbox-lft-svg,
    .page-template-location-information .loexpo-info .buttom-box .catlogbox-lft-svg {
        left: 0;
        right: 0;
        top: 0;
        display: block;
        height: 100%;
    }
    .page-template-home .home-product .buttom-box .catlogbox-rght-svg svg,
    .page-template-our-product .loexpo-info .buttom-box .catlogbox-rght-svg svg,
    .page-template-mufe-range .loexpo-info .buttom-box .catlogbox-rght-svg svg,
    .page-template-ope-range .loexpo-info .buttom-box .catlogbox-rght-svg svg,
    .page-template-location-information .loexpo-info .buttom-box .catlogbox-rght-svg svg {
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        margin: auto;
        width: 64px;
        height: 64px;
    }
    .page-template-home .home-product .buttom-box .catlogbox-lft-svg path {
        fill: #FEF4F4;
    }
    .page-template-home .home-product .buttom-box div,
    .page-template-our-product .loexpo-info .buttom-box div,
    .page-template-mufe-range .loexpo-info .buttom-box div,
    .page-template-ope-range .loexpo-info .buttom-box div,
    .page-template-location-information .loexpo-info .buttom-box div {
        width: 90%;
        margin: auto;
    }
    .page-template-home .home-product .buttom-box div h4,
    .page-template-our-product .loexpo-info .buttom-box div h4,
    .page-template-mufe-range .loexpo-info .buttom-box div h4,
    .page-template-ope-range .loexpo-info .buttom-box div h4,
    .page-template-location-information .loexpo-info .buttom-box div h4 {
        font-size: 24px;
    }    
    .page-template-home .home-product .buttom-box div:nth-child(2),
    .page-template-our-product .loexpo-info .buttom-box div:nth-child(2),
    .page-template-mufe-range .loexpo-info .buttom-box div:nth-child(2),
    .page-template-ope-range .loexpo-info .buttom-box div:nth-child(2),
    .page-template-location-information .loexpo-info .buttom-box div:nth-child(2) {
        width: 80%;
        margin: auto;
    }
    .page-template-mufe-range .whats-next,
    .page-template-ope-range .take-next {
        margin-bottom: 64px;
    }
    .page-template-location-information .find-a-dealer .row {
        justify-content: center;
    }
    .page-template-location-information .our-offices-factories .row.main-row {
        flex-direction: column-reverse;
        height: auto;
    }
    .page-template-location-information .career-opportunities .main-row .col:nth-child(1),
    .page-template-location-information .our-offices-factories .fix-bottom {
        width: 100% !important;
    }
    .page-template-location-information .career-opportunities .main-row .col:nth-child(3) {
        height: 446px;
        width: 100%;
    }
    .celebrating-years .player video, .celebrating-years .player iframe {
        width: 100%;
    }
    .page-template-about-us .about-the-leadership .player::before, 
    .page-template-about-us .about-the-leadership .player::after {
        display: none;
    }
    .page-template-about-us .about-the-leadership .swiper-wrapper {
        column-gap: unset;
        justify-content: unset;
    }
    .page-template-about-us .about-the-leadership .team-slider-01,
    .page-template-about-us .about-the-leadership .team-slider-02 {
        margin-left: 24px;
        margin-bottom: 30px;
    }
    .page-template-about-us .swiper-pagination-bullets.swiper-pagination-horizontal {
        margin-left: 24px;
    }
    .page-template-company-histroy .cmpy-history-sec .row img {
        width: 50%;
    }
    .page-template-company-histroy .cmpy-history-sec .rocket {
        z-index: 111;
    }
    .page-template-company-histroy .cmpy-history-sec .row::before {
        left: 41px;
    }
    .page-template-solution .real-result-field .sliderTab .swiper-slide {
        width: 33% !important;
        margin-right: 0 !important;
    }
    .page-template-solution .real-result-field h2 {
        width: auto;
    }
    .page-template-our-product .ope-sec:before {
        display: none;
    }
    .page-template-mufe-range .water-reivented .row .col:nth-child(2), 
    .page-template-our-product .water-reivented .row .col:nth-child(2) {
        width: 77% !important;
    }
    .page-template-our-product .water-reivented .row .col:nth-child(2) img:nth-child(2),
    .page-template-our-product .water-reivented .row .col:nth-child(2) img:nth-child(3) {
        right: 0%;
    }
    .page-template-our-product .yield-efficiency .content .flip-animation h2 {
        width: auto !important;
    }
    .page-template-our-product .yield-efficiency .sliderContent .row {
        column-gap: 0;
    }
    .page-template-mufe-range .water-reivented .row .col:nth-child(2) img:nth-child(1) {
        width: 390px;
        height: auto;
    }
    .page-template-mufe-range .water-reivented .row .col:nth-child(2) img:nth-child(2) {
        right: 0;
    }
    .page-template-mufe-range .water-reivented .row .col:nth-child(2) img:nth-child(3) {
        right: 37px;
        bottom: 0%;
    }
    .page-template-mufe-range .maruyama-advantages .row .col:nth-child(1) {
        display: flex;
    }
    .page-template-mufe-range .maruyama-advantages .row .col:nth-child(1) img {
        height: auto;
        margin: auto;
    }
    .page-template-mufe-range .maruyama-advantages .row {
        gap: 16px;
    }
    .page-template-ope-range .maruyama-advantages.demand-more .row .col {
        width: 100%;
    }
    .page-template-ope-range .maruyama-advantages.demand-more .row {
        flex-direction: column;
    }
    .page-template-news .news-main .content h1,
    .page-template-news .missan-update .content {
        max-width: 100%;
        width: 100%;
    }
    .page-template-news .latest-news::before,
    .page-template-news .press-releases.rightshadow::before {
        height: 64%;
        margin: auto;
        bottom: 0;
    }
    .page-template-news .press-releases .content h2,
    .page-template-news .insights-blogs .content h2 {
        margin-bottom: 16px;
    }
    header nav ul:first-child p {
        font-size: 16px;
    }
    .our-offices-factories .flip-animation {
        z-index: 1;
    }
    .page-template-solution .trilored-solution .row .col ul li img {
        width: 64px !important;
    }
    .page-template-ope-range .take-next .content p {
        width: 60%;
    }
    .page-template-innovation-sustainability .feature-vision .before-svg {
        bottom: 0;
        position: absolute;
        top: auto;
        transform: none !important;
    }
    .page-template-news .missan-update .content h2 svg {
        display: block;
    }
    .page-template-news .missan-update .content h2 {
      margin-bottom: 24px;
      font-size: 40px;
    }
    .page-template-careers .career-president .row .col:nth-child(2) div::before {
        width: 100%;
        height: 100%;
    }
    .page-template-our-product .ope-sec .row.ope-zoom-animation {
      justify-content: center;
    }
    .page-template-our-product .ope-sec .row.ope-zoom-animation .col:first-child {
      margin-left: 0;
    }
    .page-template-our-product .ope-sec .row.ope-zoom-animation .col {
      width: calc((100% / 4) - 32px);
    }
    .career-down-arrow {
      margin-left: -67px;
      background: #fff;
    }
    .page-template-home .better-tomorrow .row {
      flex-direction: column-reverse;
      row-gap: 82px;
    }
    .page-template-home .better-tomorrow .row .col {
      width: 100%;
    }
    .page-template-about-us .aboutus-global .row:nth-child(1) {
      flex-direction: column-reverse;
    }
    .page-template-about-us .careers-at .row .col:nth-child(2) {
      width: 100%;
    }
    .page-template-solution .trilored-solution .row .col {
      width: 100%;
      row-gap: 48px;
    }
    .page-template-solution .our-mufb-pro.trilored-solution .row:nth-child(3) {
      flex-direction: column;
    }
  .page-template-solution .trilored-solution .row {
    margin-bottom: 64px;
    flex-direction: column-reverse;
    row-gap: 48px;
  }
  .page-template-mufe-range .maruyama-advantages .row {
    flex-direction: column;
  }
  .page-template-mufe-range .maruyama-advantages .row .col,
  .page-template-mufe-range .our-mufb-pro .row .col {
    width: 100%;
  }
  .page-template-mufe-range .our-mufb-pro .row:nth-child(odd) {
    flex-direction: column-reverse;
  }
  .page-template-mufe-range .our-mufb-pro .row {
    flex-direction: column-reverse;
    gap: 48px;
  }
}
/* iPad Air Landscape */
@media only screen 
  and (min-device-width: 820px) 
  and (max-device-width: 1180px) 
  and (orientation: landscape) 
  and (-webkit-min-device-pixel-ratio: 2) {
    .hero-main .swiper-slide .container {
      margin: auto 24px;
    }
    .page-template-home .small-seamless {
        right: 13%;
    }
    .page-template-home .ground-breaking .row {
        column-gap: 24px;
    }
    .page-template-home .ground-breaking .row .col {
        width: calc(50% - 24px);
    }
    .page-template-home .ground-breaking .row .col::before {
        height: 338px;
    }
    .home-product .dxlogo-bx {
        padding: 40px 80px 40px 80px;
    }
    .catlogbox-rght-svg {
        left: 40px !important;
    }
    .catlogbox-lft-svg {
        right: 40px;
    }
    .page-template-about-us .our-president .row .col:nth-child(2) div::before {
        width: 466px;
    }
    .about-the-leadership .team-slider-01,
    .about-the-leadership .team-slider-02 {
        margin: 0 24px 36px;
    }
    /* .about-the-leadership .swiper-wrapper {
        column-gap: 0;
        justify-content: unset;
    } */
    .about-the-leadership .swiper-pagination-team01 {
        margin-left: 24px;
    }
    .cmpy-history-sec .row .col:nth-child(1) {
        padding-top: 96px;
    }
    .page-template-solution .real-result-field h2 {
        width: 50%
    }
    .page-template-our-product .water-reivented .row {
        column-gap: 24px;
    }
    .page-template-our-product .water-reivented .row .col:nth-child(2) img:nth-child(3) {
        bottom: 20%;
    }
    .page-template-our-product .yield-efficiency .content-1 .row .col {
        width: calc(50% - 16px);
    }
    .page-template-our-product .yield-efficiency .content-2 .row .col {
        width: calc((100% / 3) - 24px);
    }
    .page-template-mufe-range .mufb-main video {
        height: 526px;
    }
    .page-template-mufe-range .water-reivented .row {
        column-gap: 64px;
    }
    .page-template-mufe-range .fine-bubbles .row .col:nth-child(1) {
        width: 50%;
    }
    .page-template-mufe-range .fine-bubbles .row .col:nth-child(2) img:nth-child(3) {
        bottom: 0%;
        z-index: -1;
    }
    .page-template-mufe-range .our-mufb-pro .row .col img:first-child {
        width: 100%;
    }
    .page-template-innovation-sustainability .feature-vision .before-svg {
        bottom: 0;
        position: absolute;
        top: auto;
        transform: none !important;
    }
    .page-template-news .insights-blogs .container {
        width: auto;
    }
    .page-template-news .insights-blogs .content h2 {
        margin-bottom: 16px;
    }
    .page-template-news .social-slider .card {
        min-width: auto;
    }
    .page-template-news .missan-update .content {
        margin-bottom: 24px;
    }
    .page-template-news .missan-update .content h2 svg {
        display: block;
    }
    .page-template-careers .career-president .row .col:nth-child(2) div::before {
        width: 100%;
        height: 100%;
        left: 0%;
        top: 0;
    }
    .page-template-careers .latest-news::before {
        display: none;
    }
    .page-template-our-product .ope-sec .row.ope-zoom-animation {
      justify-content: center;
    }
    .page-template-our-product .ope-sec .row.ope-zoom-animation .col:first-child {
      margin-left: 0;
    }
    .page-template-our-product .ope-sec .row.ope-zoom-animation .col {
      width: calc((100% / 4) - 32px);
    }
    .page-template-mufe-range .mufb-main {
      background: none;
    }
    .page-template-mufe-range .mufb-main::before {
      display: none;
    }
    .career-down-arrow {
      margin-left: 144px;
    }
}
footer .row .col div.contact-container {
  display: block !important;
}
footer .row .col .contact-information {
  display: block !important;
}
footer .row .col div.contact-container.d-show .contact-information {
  display: none !important;
}
footer .container .row .col:nth-child(3) div.contact-information .title,
footer .container .row .col:nth-child(3) div.contact-form__footer .title {
  display: block !important;
  text-align: left;
  font-weight: 700;
  padding-top: 10px;
  color: #C4131C;
  margin-bottom: 31px;
}
footer .container .row .col:nth-child(3) div.contact-information ul {
  margin-bottom: 50px;
}
footer .container .row .col:nth-child(3) div.contact-information li {
  line-height: normal !important;
  padding: 0 !important;
}
footer .container .row .col:nth-child(3) div.contact-information p {
  color: #231F20 !important;
  font-size: 14px;
  font-style: normal;
  font-weight: 400 !important;
  line-height: 22px;
  padding: 0 !important;
  margin: 0 0 20px !important;
}
footer .container .row .col:nth-child(3) div.contact-information ul li button {
  color: #231F20 !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 500 !important;
  line-height: normal;
  border: none;
  background: none;
  border-bottom: 1px solid #231F20;
  cursor: pointer;
}
footer .row .col div.contact-container.d-show div.contact-form__footer{
  display: block !important;
}
footer .row .col div.contact-form__footer {
  display: none !important;
  padding: 32px 40px;
  width: 266px;
  border-radius: 32px 32px 0 32px;
  border: 1px solid #F2F2F2;
  background: #FFF;
}
footer .row .col div.contact-form__footer .footer__header {
  display: block;
  position: relative;
}
footer .container .row .col:nth-child(3) div.contact-form__footer .title {
  padding-top: 0;
}
.contact-form__footer .close {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTcuNzU3ODEgMTYuMjQzOEwxNi4yNDM4IDcuNzU3ODFNMTYuMjQzOCAxNi4yNDM4TDcuNzU3ODEgNy43NTc4MSIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=");
  width: 24px;
  height: 24px;
  display: block;
  background-position: center;
  position: absolute;
  top: 3px;
  right: -3px;
  cursor: pointer;
}
footer .row .col div.contact-form__footer .col p {
  margin-bottom: 24px;
  padding-top: 0;
}
footer .row .col div.contact-form__footer .col input, footer .row .col div.contact-form__footer .col textarea,
footer .row .col div.contact-form__footer .col select {
  padding: 0 0 13px;
  color: #4A4748;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
footer .row .col div.contact-form__footer .col textarea {
  height: 60px;
  resize: none;
}
footer .row .col div.contact-form__footer .learnmore p {
  padding-top: 8px;
  gap: 8px !important;
  color: #231F20 !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 600 !important;
  line-height: normal;
  align-items: center;
  font-family: "Noto Sans JP";
  margin-bottom: 0;
}
footer .row .col div.contact-form__footer .learnmore {
  cursor: pointer;
}
footer .row .col div.contact-form__footer .learnmore:hover {
  text-decoration: none;
}
footer .row .col div.contact-form__footer .learnmore input[type="submit"] {
  color: #231F20;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  font-family: "Noto Sans JP";
  padding-left: 48px;
  padding-top: 8px;
  padding-bottom: 8px;
}
footer .row .col div.contact-form__footer .wpcf7-response-output {
  text-align: center;
  margin: 80px 0 !important;
  flex-direction: column;
  font-size: 14px;
  padding: 0;
  border: none;
  color: #4A4748;
}
footer .row .col div.contact-form__footer .wpcf7-form.sent .wpcf7-response-output {
  display: block;
}
footer .row .col div.contact-form__footer .wpcf7-response-output::before {
  content: "";
  width: 24px !important;
  height: 24px !important;
  display: block !important;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0wIDEyQzAgOC44MTc0IDEuMjY0MjggNS43NjUxNiAzLjUxNDcyIDMuNTE0NzJDNS43NjUxNiAxLjI2NDI4IDguODE3NCAwIDEyIDBDMTUuMTgyNiAwIDE4LjIzNDggMS4yNjQyOCAyMC40ODUzIDMuNTE0NzJDMjIuNzM1NyA1Ljc2NTE2IDI0IDguODE3NCAyNCAxMkMyNCAxNS4xODI2IDIyLjczNTcgMTguMjM0OCAyMC40ODUzIDIwLjQ4NTNDMTguMjM0OCAyMi43MzU3IDE1LjE4MjYgMjQgMTIgMjRDOC44MTc0IDI0IDUuNzY1MTYgMjIuNzM1NyAzLjUxNDcyIDIwLjQ4NTNDMS4yNjQyOCAxOC4yMzQ4IDAgMTUuMTgyNiAwIDEyWk0xMS4zMTUyIDE3LjEzNkwxOC4yMjQgOC40OTkyTDE2Ljk3NiA3LjUwMDhMMTEuMDg0OCAxNC44NjI0TDYuOTEyIDExLjM4NTZMNS44ODggMTIuNjE0NEwxMS4zMTUyIDE3LjEzNloiIGZpbGw9IiMwMEJEMTYiLz4KPC9zdmc+Cg==");
  background-repeat: no-repeat;
  padding: 0;
  margin-bottom: 16px !important;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
footer .row .col div.contact-form__footer form.wpcf7-form.sent .col, form.wpcf7-form.sent .learnmore {
  display: none;
}
.page-template-home .press-releases .arrows .next.swiper-arrow.swiper-button-disabled {
  background-color: #C0BFBF;
}
.page-template-home .press-releases .arrows .next.swiper-arrow, .arrows .prev.swiper-arrow {
  background: #C4131C;
  cursor: pointer;
}
.page-template-home .press-releases .arrows .swiper-arrow.swiper-button-disabled {
    background-color: #C0BFBF;
}
.page-template-home .press-releases .item-center {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
footer .container .row .col:nth-child(4) div.contact-information .title {
	display: block !important;
    text-align: left;
    font-weight: 700;
    padding-top: 10px;
    color: #C4131C;
    margin-bottom: 31px;
}
@media screen and (max-width: 1200px) {
  /* footer .row .col div.contact-form__footer {
    width: auto;
  } */
  footer .container .row .col:nth-child(3) div.contact-information .title, footer .container .row .col:nth-child(3) div.contact-form__footer .title, footer .container .row .col:nth-child(4) div.contact-information .title {
    font-size: 16px;
  }
}
.page-template-home .press-releases .arrows .swiper-arrow,
.page-template-news .latest-news.press-releases .swiper-arrow {
    display: none;
}
/* footer .row {
  grid-template-columns: 164px 182px 350px;
}
footer .container .row .col:nth-child(1) div.contact-information .title {
  display: block !important;
  text-align: left;
  font-weight: 700;
  padding-top: 10px;
  color: #C4131C;
  margin-top: 90px;
  margin-bottom: 30px;
}
footer .row .col div.contact-form__footer {
  display: block !important;
  padding: 0;
  width: auto;
  border: none;
} */
footer .container .row .col:nth-child(3) div.contact-information .country p {
  width: 100%;
}
footer .container .row .col:nth-child(3) div.contact-information p {
  margin: 0 0 24px !important;
}
footer .row .col div.contact-form__footer .col input::placeholder, footer .row .col div.contact-form__footer .col textarea::placeholder, footer .row .col div.contact-form__footer .col select::placeholder {
  color: #4A4748;
  opacity: 1;
}
footer .row .col div.contact-form__footer .learnmore {
  margin: 8px 0 24px;
}
footer .row .col div.contact-form__footer .col.privary p {
  display: grid;
  gap: 8px;
  align-items: baseline;
  margin-bottom: 16px !important;
  grid-template-columns: 15px auto;
  color: #231F20 !important;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
}
footer .row .col div.contact-form__footer .col.privary p a,
.getin-touch .row .col:nth-child(2) form .col.privary p a {
  color: #1B75BC;
}
footer .row .col div.contact-form__footer .col.privary p .required-star,
.getin-touch .row .col:nth-child(2) form .col.privary p span.required-star {
  margin: 0 !important;
  color: #C4131C !important;
}
footer .row .col div.contact-form__footer .col.privary input[type="checkbox"],
.getin-touch .row .col:nth-child(2) form .col.privary input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 15px;
  height: 15px;
  border: 1.5px solid #231F20;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  background-color: #fff;
  top: 4px;
}
footer .row .col div.contact-form__footer .col.privary input[type="checkbox"]:checked,
.getin-touch .row .col:nth-child(2) form .col.privary input[type="checkbox"]:checked {
  background-color: #fff;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOCIgaGVpZ2h0PSI3IiB2aWV3Qm94PSIwIDAgOCA3IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNMC4zMjAzMTIgMi44MTI1TDMuMzIwMzEgNS4zMTI1TDcuMzIwMzEgMC4zMTI1IiBzdHJva2U9IiMyMzFGMjAiLz4KPC9zdmc+Cg==");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 8px;
}
.getin-touch .row .col:nth-child(2) form .col.privary input[type="checkbox"] {
  border: 1.5px solid #fff;
  background: #231F20;
}
.getin-touch .row .col:nth-child(2) form .col.privary input[type="checkbox"]:checked {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOCIgaGVpZ2h0PSI3IiB2aWV3Qm94PSIwIDAgOCA3IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNMC4zMjAzMTIgMi44MTI1TDMuMzIwMzEgNS4zMTI1TDcuMzIwMzEgMC4zMTI1IiBzdHJva2U9IndoaXRlIi8+Cjwvc3ZnPgo=");
  background-color: #231F20;
}
.getin-touch .row .col:nth-child(2) form .col.privary p {
  color: #C0BFBF;
  margin-bottom: 16px;
  font-size: 14px;
}
.getin-touch .row .col:nth-child(2) form .col.privary p span {
  margin-left: 8px;
  top: 2px;
  position: relative;
}
/* footer .row .col div.contact-form__footer .col.privary.end p {
  margin-left: 22px !important;
  display: flex;
} */
.getin-touch .row .col:nth-child(2) form .col.privary {
  width: 100%;
}
.getin-touch .row .col:nth-child(2) form .col.privary p:last-child {
    margin-left: 0;
}
@media screen and (max-width: 768px) {
  footer .row .col div.contact-form__footer .col p span,
  footer .row .col div.contact-form__footer .col p a,
  .getin-touch .row .col:nth-child(2) form .col.privary p span,
  .getin-touch .row .col:nth-child(2) form .col.privary p a {
    font-size: 12px;
  }
  /* footer .container .row .col:nth-child(3) div.contact-information .learnmore p {
    width: 87px !important;
  } */
  .getin-touch .row .col:nth-child(2) form .col.privary p {
    display: grid;
    grid-template-columns: 16px auto;
    align-items: baseline;
  }
  .getin-touch .row .col:nth-child(2) form .col.privary p:last-child {
    display: block;
    margin-left: 0px;
  }
}
/* 18-11-25 */
@media screen and (min-width: 1200px) {
  .hero-main .swiper-slide h1{
    width: 1000px;
  }
  .hero-main p{
    max-width: 780px;
  }
  .page-template-about-us .hero-main.aboutus-main .content h1 {
      width: 880px;
  }
  .creating-the-next-feature h2:nth-child(1)::before{
    width: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAwIiBoZWlnaHQ9IjM5IiB2aWV3Qm94PSIwIDAgOTAwIDM5IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNMCAzOC41QzEzOS40ODUgMzguNSA0NTguMjg5IDM4LjUgNDkzLjc3MyAzOC41QzQ5NS45MzEgMzguNSA0OTcuODQ5IDM3LjYyNzYgNDk5LjM1NSAzNi4wODA5TDUzMS42NDUgMi45MTkwN0M1MzMuMTUxIDEuMzcyNDEgNTM1LjIxOCAwLjUgNTM3LjM3NiAwLjVIOTAwIiBzdHJva2U9IiMyMzFGMjAiLz4KPC9zdmc+Cg==') no-repeat;
  }
  .page-template-home .small-seamless{
    right: 11%;
  }
  .creating-the-next-feature p{
    max-width: 853px;
  }
  .welcome-to-maruyama-sec .row .col h2{
    width: 85%;
  }
  .page-template-home .welcome-to-maruyama-sec .row .col:nth-child(1){
    width: 456px;
  }
  .ground-breaking .content{
    width: 635px;
  }
  .ground-breaking .row .col::before{
    height: 316px;
  }
  .home-product .dxlogo-bx{
    padding: 40px 94px 40px 107px;
  }
  .home-product .dxlogo-bx div{
    width: 549px;
  }
   .home-product .buttom-box .catlogbox-rght-svg{
    z-index: 0;	
  }
  .careers-at .row .col h2{
    width: 357px;
  }
  .page-template-about-us .aboutus-main .content p{
    max-width: 1000px;
  }
  .welcome-to-maruyama-sec .row .col:nth-child(1) {
      width: 612px;
  }
  .welcome-to-maruyama-sec .row .col h2 {
      width: 65%;
  }
  .our-president .row .col:nth-child(1) .d-flex{
    width: 485px;
  }
  .our-values .content p{
    width: 720px;
  }
  .sustainability-action .content{
    width: 670px;
  }
  .latest-news.bg-white.sustainability-action .content .flip-animation{
    overflow: visible;
  }
  .about-the-leadership .content p{
    width: 56%;
  }	
  .page-template-about-us .about-inclusive-feature .row .col h2{
    width: 412px;
  }
  .our-gallery-about .container .row .col:nth-child(2) {
      width: 230px;
  }
  .aboutus-global .row:nth-child(1) .col:nth-child(1) p{
    width: 530px;
  }
  .page-template-solution .solution-main .content p{
    width: 46%;
  }
  .our-mufb-pro.trilored-solution .container > .row:nth-child(4) .title-board h3 {
      width: 95%;
  }
  .real-result-field h2{
    width: 65%;
  }
  .career-opportunities .sliderTab .swiper-slide {
      width: 28%;
      margin: 0 auto;
    height: auto;
  }
  .yield-efficiency .on {
      border-bottom: 1px solid #C4131C;
  }
  .yield-efficiency .on h4 {
      border-bottom: none;
  }
  .save-crops .maruyama-before-slider .card .card-body p{
    width: 441px;
  }
  .take-next .content p{
    width: 45%;
  }
  .page-template-innovation-sustainability .aboutus-main.ope-main.innovation-main .content h1{
    width: 700px;
  }
  .aboutus-main .content p {
      max-width: 837px;
  }
  .since-product .content{
    width: 1065px;
  }
  .water-reivented .row .col:nth-child(1){
    width: 52%;
  }
  .page-template-our-product .water-reivented .row .col:nth-child(1) h2 span{
    display: inline;
  }
  .yield-efficiency .tab-content p, .yield-efficiency .sliderContent p{
    width: 990px;
  }
  .about-inclusive-feature .row .col h2 {
      width: 100%;
  }
  .mufb-main .content h1 {
      width: 1060px;
  }
  .page-template-mufe-range .fine-bubbles .row .col:nth-child(1) h2{
    width: 65% !important;
  }
  .page-template-mufe-range .about-inclusive-feature.whats-next .content .flip-animation p{
    width: 55%;
      margin: 0 auto 48px;
  }
  .ope-main .content h1{
    width: 1036px;
  }
  .page-template-ope-range .take-next .content p{
    width: 55%;
  }
  .blog-main.privacy ol.para-list li:nth-child(-n+2),
  .blog-main.privacy h5{
    width: 60%;
  }
  .postid-4927 .blog-main .content h1{
    width: 100%;
  }
  .page-template-about-us .latest-news.bg-white.sustainability-action .card .card-body{
    padding: 20px 32px 24px;
      min-height: 184px;
  }
  .page-template-about-us .latest-news.bg-white.sustainability-action .card .card-body p{
    overflow: visible;
  }
  .page-template-about-us .about-inclusive-feature.our-gallery-about .container .row .col:nth-child(1){
    width: 934px;
  }
  .page-template-solution .aboutus-main .content h1 {
      width: 880px;
  }
  .page-template-mufe-range .maruyama-advantages.mufb-tech .row .col:nth-child(2) {
      padding: 48px 0px 57px 57px;
  }	
  .page-template-news .aboutus-main.ope-main.news-main .content {
      width: 85%;
  }
  .page-template-news section.about-inclusive-feature.whats-next.take-next.join-moment.news-cards.missan-update .social-slider .card .card-body a::after{
    width: 141px;
  }
  .page-template-careers .aboutus-main.career-main .content .flip-animation p {
      max-width: 640px;
  }
  .page-template-careers .our-president.about-president.career-president .row .col p {
      width: 89%;
  }
  .page-template-careers section.latest-news.bg-white.sustainability-action.carrer-growth .card .card-body p{
    overflow: visible;
  }
  .page-template-location-information .find-a-dealer .content .flip-animation p{
      margin: 0 auto;
      width: 65%;
  }
  .page-template-galleries .gallery-main .content p {
    max-width: 615px;
  }
  .page-template-news .insights-blogs.news-cards h2 {
      margin-bottom: 16px;
  }
  .page-template-innovation-sustainability .purposeful-innovation p {
      position: relative;
      z-index: 1;
  }
  .page-template-innovation-sustainability .res-innovation-everystep h2 {
      max-width: 508px;
  }
  .page-template-innovation-sustainability .feature-vision .row .col:nth-child(2) {
      max-width: 718px;
      width: auto;
  }
}
@media screen and (max-width: 374.98px){
	.page-template-home .creating-the-next-feature h2:nth-child(1){
		padding: 0 6px;
		display: flex;
		align-items: self-end;
	}
	.creating-the-next-feature h2:nth-child(1)::before{
		background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzEyIiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMzEyIDI0IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNMCAyMy41SDE1Ni4zMTdDMTU3Ljg2MyAyMy41IDE1OS4zNDkgMjIuOTAzNyAxNjAuNDY1IDIxLjgzNTNMMTgxLjAyNCAyLjE2NDc0QzE4Mi4xNDEgMS4wOTYzMyAxODMuNjI3IDAuNSAxODUuMTcyIDAuNUgzMTIiIHN0cm9rZT0iIzIzMUYyMCIvPgo8L3N2Zz4K') no-repeat;
		bottom: -25px;
	}
	.page-template-home .creating-the-next-feature h2:nth-child(1) span{
		margin: 0;
		width: 87px;
		left: -20px;
		top: -10px;
	}
	.page-template-home .small-seamless {
		right: 2.1%;
		top: 43%;
	}
	.ground-breaking .content h2 svg {
		bottom: -10px;
		right: 45px;
		width: 118px;
	}
	.home-product .dxlogo-bx div{
		width: 100%;
	}
	.home-product .dxlogo-bx{
    	padding: 69px 26px 57px;
	}
	.welcome-to-maruyama-sec .row .col h2 {
 	   	width: 80% !important;
	}
	.welcome-to-maruyama-sec.aboutus-mission.bg-white .row .col h2 span svg{
		width: 69px;
    	right: 75px;
	}
	.our-president .row .col:nth-child(1) .d-flex {
    	width: 100%;
	}
	.about-the-leadership .content p{
		font-size: 14px;
	}
	.legacy-excellence a.learnmore{
		font-size: 14px;
    	font-weight: 400;
	}
	.page-template-solution .real-result-field .sliderTab .swiper-slide h4{
		width: 100%;
	}
	.career-opportunities .sliderTab .swiper-slide {
    	width: 85%;
	}
	.save-crops .maruyama-before-slider .card:nth-child(odd) img{
		margin-top: 16px;
	}
	.save-crops .maruyama-before-slider .swiper-wrapper .swiper-slide .card:nth-child(2) h3{
		bottom: 55px;
	}
	.save-crops .maruyama-before-slider .card:nth-of-type(2) .card-body p{
		margin-top: 16px;
	}
	.water-reivented .row .col h2 span svg{
		width: 82px;
    	right: 47px;
	}
	.page-template-our-product .yield-efficiency .sliderTab .swiper-slide h4{
		width: 75%;
	}
	.page-template-mufe-range .fine-bubbles .row .col:nth-child(1) h2{
		width: 75% !important;
	}
	.page-template-mufe-range .water-reivented .row .col h2 span svg {
        width: 110px;
        right: 0px;
    }
	.page-template-mufe-range .our-mufb-pro .row:nth-child(odd) {
        flex-direction: column;
    }
	.blog-main.privacy ol.para-list li:nth-child(-n+2),
	.blog-main.privacy h5{
    	width: 100%;
	}
	.page-template-solution .our-mufb-pro.trilored-solution .flip-animation h2{
		margin-bottom: 16px;
	}
	.page-template-mufe-range .maruyama-advantages.mufb-tech .row .col:nth-child(2){
		padding: 32px 0 0;
	}
	.page-template-news .latest-news.press-releases.rightshadow .content .flip-animation h2{
		height: 40px;
	}
	.page-template-news .latest-news.press-releases.rightshadow .content .flip-animation h2 span svg{
		bottom: -10px;
	}
}
@media screen and (min-width: 910px){
	.page-template-innovation-sustainability .join-moment h5 {
		max-width: 75%;
		margin: 0 auto 24px;
	}
  .page-template-home .creating-the-next-feature h2:nth-child(1) .inline {
    display: inline;
  }
  .page-template-home .creating-the-next-feature h2:nth-child(1)::before {
    width: 885.5px;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAwIiBoZWlnaHQ9IjM5IiB2aWV3Qm94PSIwIDAgOTAwIDM5IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNMCAzOC41QzEzOS40ODUgMzguNSA0NTguMjg5IDM4LjUgNDkzLjc3MyAzOC41QzQ5NS45MzEgMzguNSA0OTcuODQ5IDM3LjYyNzYgNDk5LjM1NSAzNi4wODA5TDUzMS42NDUgMi45MTkwN0M1MzMuMTUxIDEuMzcyNDEgNTM1LjIxOCAwLjUgNTM3LjM3NiAwLjVIOTAwIiBzdHJva2U9IiMyMzFGMjAiLz4KPC9zdmc+Cg==");
  }
  .page-template-home .small-seamless {
    right: 12.1%;
  }
}
@media screen and (min-width: 919px) and (max-width: 1024px) {
  .page-template-home .creating-the-next-feature h2:nth-child(1) .inline {
    display: inline-block;
    width: 510px;
    text-align: center;
  }
  .creating-the-next-feature h2:nth-child(1) span {
    font-size: 48px;
    line-height: 56px;
    position: relative;
    left: -11px;
    top: -3px;
  }
  .page-template-home .creating-the-next-feature .small-seamless {
    top: 13px;
    right: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 919px) {
  .page-template-home .creating-the-next-feature h2:nth-child(1) {
    margin-left: 0;
    margin-right: auto;
    width: 100%;
    display: flex;
    align-items: end;
    justify-content: space-between;
  }
  .page-template-home .creating-the-next-feature h2:nth-child(1)::before {
    width: 100%;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAwIiBoZWlnaHQ9IjM5IiB2aWV3Qm94PSIwIDAgOTAwIDM5IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNMCAzOC41QzEzOS40ODUgMzguNSA0NTguMjg5IDM4LjUgNDkzLjc3MyAzOC41QzQ5NS45MzEgMzguNSA0OTcuODQ5IDM3LjYyNzYgNDk5LjM1NSAzNi4wODA5TDUzMS42NDUgMi45MTkwN0M1MzMuMTUxIDEuMzcyNDEgNTM1LjIxOCAwLjUgNTM3LjM3NiAwLjVIOTAwIiBzdHJva2U9IiMyMzFGMjAiLz4KPC9zdmc+Cg==");
    height: 75px;
    bottom: -49px;
    background-size: contain;
  }
  .page-template-home .creating-the-next-feature h2:nth-child(1) .inline {
    display: inline-block;
    width: 412px;
    text-align: center;
  }
  .creating-the-next-feature h2:nth-child(1) span {
    font-size: 48px;
    line-height: 56px;
    position: relative;
    left: -48px;
    top: -3px;
  }
  .page-template-home .creating-the-next-feature .small-seamless {
    top: 59px;
    right: 0;
  }
}
@media screen and (min-width: 415px) and (max-width: 768px) {
  .page-template-home .creating-the-next-feature .leftsvg {
    top: -8px;
    left: 16px;
  }
  .page-template-home .creating-the-next-feature h2:nth-child(1) {
    width: 100% !important;
    margin-right: 0;
  }
  .page-template-home .creating-the-next-feature h2:nth-child(1)::before {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzEyIiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMzEyIDI0IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNMCAyMy41SDE1Ni4zMTdDMTU3Ljg2MyAyMy41IDE1OS4zNDkgMjIuOTAzNyAxNjAuNDY1IDIxLjgzNTNMMTgxLjAyNCAyLjE2NDc0QzE4Mi4xNDEgMS4wOTYzMyAxODMuNjI3IDAuNSAxODUuMTcyIDAuNUgzMTIiIHN0cm9rZT0iIzIzMUYyMCIvPgo8L3N2Zz4K");
    left: 0;
    width: 100%;
  }
  .page-template-home .creating-the-next-feature h2:nth-child(1) .inline {
    display: inline-block;
    width: 415px;
  }
  .page-template-home .small-seamless {
    top: 27px;
    right: 0;
  }
}
@media screen and (max-width: 415px) {
  .page-template-home .creating-the-next-feature h2:nth-child(1) span {
    margin-right: 33px;
    margin-left: 0px;
    text-wrap: nowrap;
  }
  .page-template-home .creating-the-next-feature h2:nth-child(1)::before {
    width: 100%; 
    background-size: contain;
  }
  .page-template-home .creating-the-next-feature h2:nth-child(1) {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 8px;
  }
  .page-template-home .creating-the-next-feature h2:nth-child(1) .inline {
    display: inline-block;
    width: 200px;
  }
  .page-template-home .small-seamless {
    right: 0;
    top: 27px;
  }
}
@media screen and (max-width: 374.98px) {
  .page-template-home .creating-the-next-feature h2:nth-child(1) {
    width: 100% !important;
    margin-left: 0;
    margin-right: 0;
  }
  .page-template-home .creating-the-next-feature h2:nth-child(1)::before {
    width: 100%;
    left: 0;
  }
  .page-template-home .creating-the-next-feature h2:nth-child(1) span {
    margin-right: -6px;
    margin-left: 21px;
  }
  .page-template-home .creating-the-next-feature .leftsvg {
    top: 13px;
    left: 16px;
  }
  .page-template-home .creating-the-next-feature h2:nth-child(1) .inline {
    width: 116px;
  }
  .page-template-home .small-seamless {
    right: 0;
    top: 22px;
  }
}
.product-line-up .line-up-explo .swiper .product-swiper .swiper-slide {
    background: #fff;
}
.land-sel.land-sel-mobile-view {
  display: none;
}
.page-template-location-information .feature-together .row .col form .form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
}
.getin-touch .row .col:nth-child(2) form .col textarea {
  resize: none;
}
.getin-touch .row .col:nth-child(2) form .col.country span {
  position: relative;
}
.getin-touch .row .col:nth-child(2) form .col.country span::after {
  content: "";
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOSIgaGVpZ2h0PSI1IiB2aWV3Qm94PSIwIDAgOSA1IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNMC41MDAwMDEgMC41MDAwMzJDMC41MDAwMDEgMC41MDAwMzIgMy40NDU5MyA0LjUgNC41IDQuNUM1LjU1NDEzIDQuNSA4LjUgMC41IDguNSAwLjUiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K");
  width: 10px;
  height: 5px;
  right: 8px;
  bottom: 3px;
  z-index: 1;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .humburger-body .land-sel.land-sel-mobile-view {
    display: block;
  }
  .page-template-mufe-range .maruyama-advantages .row .col:nth-child(2) {
    padding: 32px 0 0 !important;
  }
  .page-template-mufe-range .our-mufb-pro .row:nth-child(odd) {
    flex-direction: column;
  }
  /* footer .container .row .col:nth-child(3) div.contact-information .col p {
    width: 100%;
  } */
}
/* 27-11-25 */
@media screen and (max-width: 576px) {
	.page-template-home .creating-the-next-feature h2:nth-child(1) .inline{
		padding-bottom: 10px;
	}
	.page-template-home .small-seamless {
        right: 5px;
        top: 38px;
    }
	.creating-the-next-feature .leftsvg {
		top: -20px;
		left: 25px;
	}
	.page-template-home .home-product .dxlogo-bx{
		padding:26px;
	}
	.home-product .dxlogo-bx div h5{
		width: 100%;
    	margin: 0 auto;
    	z-index: 2;
	}
	.page-template-home .home-product .dxlogo-bx div svg{
		left: 22%;
        z-index: -1;
	}
	.our-president .row .col:nth-child(1) .d-flex {
		width: 100%;
	}
	.page-template-solution .real-result-field .sliderTab .swiper-slide h4 {
		width: 85%;
	}
	.career-opportunities .sliderTab .swiper-slide{
		width:90%;
	}
	.save-crops .maruyama-before-slider .swiper-wrapper .swiper-slide .card:nth-child(1) .card-body p{
		margin-top: 0;
	}
	.page-template-solution .save-crops .maruyama-before-slider .card .card-body p:nth-of-type(1){
		margin-top: 10px;
	}
	.save-crops .maruyama-before-slider .swiper-wrapper .swiper-slide .card:nth-child(2) h3{
		font-size: 12px;
		bottom: 50px;
	}
	.page-template-home .better-tomorrow .row .col h2 {
		max-width: 87% !important;
        margin: auto !important;
        left: 0;
        right: 0;
	}
	.page-template-home .ground-breaking .content h2 {
		max-width: 90%;
	}
	.page-template-mufe-range .fine-bubbles .row .col:nth-child(1) h2 {
		width: 70% !important;
	}
	.page-template-our-product .yield-efficiency .sliderTab .swiper-slide {
        max-width: 48%;
    }
	.product-line-up .line-up-explo .tab-content .best-title{
		margin-left: 0;
	}
	.page-template-innovation-sustainability .greener-tomorrow .row .col h5{
		width: 100%;
	}
	.page-template-innovation-sustainability .feature-vision .before-svg{
		top: 49%;
	}
}
@media screen and (max-width: 380px) {
	.page-template-home .creating-the-next-feature h2:nth-child(1) .inline{
		padding-bottom: 10px;
        margin-left: 25px;
	}
	.page-template-home .small-seamless{
		top: 33px !important;
	}
	.page-template-home .better-tomorrow .row .col h2,
	.page-template-home .ground-breaking .content h2{
		max-width: 100% !important;
	}
	.welcome-to-maruyama-sec .row {
        row-gap: 135px;
    }
	.page-template-home .home-product .dxlogo-bx div svg{
		left: 0;
	}
	.our-product .row .col:nth-child(2) h3{
		max-width: 100%;
	}
	.welcome-to-maruyama-sec.aboutus-mission.bg-white .row .col h2 span svg{
		width: 100%;
        right: 0;
	}
	.page-template-about-us .latest-news.sustainability-action .content h2{
		height: 100px;
	}
	.page-template-about-us .latest-news.sustainability-action .content h2 span svg{
		bottom: -5px;
	}
	.page-template-solution section.yield-efficiency.career-opportunities.real-result-field .sliderTab .swiper-slide.on{
		border-bottom: 1px solid #C4131C;
		height: auto;
	}
	.page-template-solution section.yield-efficiency.career-opportunities.real-result-field .on h4{
		border: none;
	}
	.save-crops .maruyama-before-slider .swiper-wrapper .swiper-slide .card:nth-child(2) h3{
		bottom: 74px;
	}
	.page-template-mufe-range .mufb-main video{
		min-height: 635px;
	}
	.page-template-mufe-range .water-reivented .row .col:nth-child(2), .page-template-our-product .water-reivented .row .col:nth-child(2){
		width: 100% !important;
	}
	.page-template-mufe-range .fine-bubbles .row .col:nth-child(1) h2 {
        width: 85% !important;
    }
	.page-template-innovation-sustainability .feature-vision .before-svg {
        top: 38%;
    }
	.our-promise .row .col h5{
		width: 100%;
	}
	.our-promise .row .col{
		width: 100% !important;
        text-align: center;
	}
}
@media screen and (min-width: 415px) and (max-width: 574px) {
	.page-template-home .creating-the-next-feature h2:nth-child(1){
		display: flex;
    	align-items: center;
	}
	.page-template-home .creating-the-next-feature h2:nth-child(1) .inline{
		width: 55%;
	}
	.creating-the-next-feature h2:nth-child(1)::before{
		bottom: -11px;
	}
	.page-template-home .small-seamless {
        right: 10px;
        top: 19px;
    }
	.page-template-home .ground-breaking .row .col:nth-child(2) h4,
	.page-template-home .ground-breaking .row .col h4{
        top: 50%;
    }
	.page-template-about-us section.latest-news.bg-white.sustainability-action .content h2{
		min-height: 75px;
	}
	.page-template-innovation-sustainability .feature-vision .before-svg {
        top: 51.2%;
    }
	.page-template-careers section.our-president.about-president.career-president h2{
		top: -470px;
	}
}
@media screen and (min-width:768px) and (max-width:1024px){
	.page-template-about-us section.about-inclusive-feature.our-gallery-about .row .col:nth-child(2){
		width: 100%;
		justify-content: flex-start;
	}
	.page-template-about-us .about-the-leadership .swiper-pagination-team01 {
		margin-bottom: 80px;
	}
	.page-template-solution section.yield-efficiency.career-opportunities.real-result-field .sliderTab .swiper-slide.on{
		border-bottom: 1px solid #C4131C;
		height: auto;
	}
	.page-template-solution section.yield-efficiency.career-opportunities.real-result-field .on h4{
		border: none;
	}
	.page-template-solution section.about-inclusive-feature.whats-next.take-next.join-moment.news-cards.our-president.save-crops .content h5,
	.page-template-solution .content .name-board p{
        width: 100%;
	}
	.page-template-our-product .ope-sec .content .flip-animation h2{
		width: 90%;
	}
	.page-template-our-product .yield-efficiency .sliderContent .row .col .card .card-body{
		padding:20px;
	}
	.page-template-ope-range section.about-inclusive-feature.whats-next.take-next .content p {
        width: 100%;
    }
	.page-template-innovation-sustainability section.about-inclusive-feature.whats-next.take-next.join-moment .content :is(h5 , h6){
		width: 100%;
	}
	.page-template-careers section.latest-news.bg-white.sustainability-action.carrer-growth .row:nth-child(1) .col:nth-child(1){
        width: 100%;
    }
	.page-template-careers .our-promise .content p {
    	width: 100%;
	}
}
@media screen and (min-width:1024px) and (max-width:1100px){
	.page-template-home .hero-main .swiper-slide h1 {
        width: 100%;
	}
	.page-template-home .hero-main p{
		max-width: 85%;
	}
	.page-template-home .welcome-to-maruyama-sec .row .col:nth-child(2) div img{
		width: 55%;
	}
	.page-template-home .our-product.home-product .row{
		flex-direction: column;
    	row-gap: 56px;
		border: none;
	}
	.our-product .row .col:nth-child(1) {
		width: 74%;
		margin: 0 auto;
	}
	.page-template-home .our-product.home-product .row .col:nth-child(2) {
		width: 80%;
	}
	.page-template-home .home-product .buttom-box div:nth-child(2), .page-template-our-product .loexpo-info .buttom-box div:nth-child(2), .page-template-mufe-range .loexpo-info .buttom-box div:nth-child(2), .page-template-ope-range .loexpo-info .buttom-box div:nth-child(2), .page-template-location-information .loexpo-info .buttom-box div:nth-child(2) {
        width: 70%;
    }
	.page-template-home .careers-at .row .col h2{
		width: 100%;
	}
	.page-template-about-us .aboutus-main .content h1 {
        max-width: 100%;
    }
	.page-template-about-us .welcome-to-maruyama-sec.aboutus-mission.bg-white .row .col h2{
		width: 80%;
	} 
	.page-template-about-us .our-president.about-president .row .col:nth-child(1) .d-flex{
		width: 100%;
	}
	.page-template-about-us section.latest-news.bg-white.sustainability-action .content h2{
		height: 110px;
	}
	.page-template-about-us .about-inclusive-feature .row {
		flex-wrap: wrap;
	}
	.page-template-about-us .about-inclusive-feature .row .col:first-child {
        width: 50%;
    }
	.page-template-about-us .about-inclusive-feature .row .col:nth-child(3) {
        width: 100% !important;
        margin-top: 64px;
    }
	.about-inclusive-feature .row .col ul {
        flex-direction: row;
    }
	.about-inclusive-feature .row .col ul li:nth-child(1){
		border: none;
	}
	.about-inclusive-feature .row .col ul li{
		width: 100%;
	}
	.page-template-about-us section.about-inclusive-feature.our-gallery-about .row .col:first-child {
        width: 100%;
        margin-bottom: 36px;
    }
	.page-template-about-us .latest-news.bg-white.sustainability-action .card .card-body p{
		overflow: visible;
	}
	.page-template-about-us .latest-news.bg-white.sustainability-action .card .card-body{
		height: 185px;
	}
	.page-template-about-us section.latest-news.bg-white.sustainability-action .content h2 span svg{
		bottom: -5px;
	}
	.page-template-solution .solution-main .content p {
    width: 100%;
  }
	.water-reivented .row .col:nth-child(2) img:nth-child(2){
		top: -25%;
	}
	.page-template-our-product section.about-inclusive-feature.ourproduct-whychoose .row {
		flex-direction: column;
		row-gap: 56px;
	}
	.page-template-our-product section.about-inclusive-feature.ourproduct-whychoose .row .col:first-child {
        width: 100%;
    }
	.page-template-our-product section.about-inclusive-feature.ourproduct-whychoose .row .col:nth-child(2) {
		width: 100%;
	}
	.page-template-mufe-range .water-reivented .row .col:nth-child(2) img:nth-child(1) {
        width: 290px;
		height: auto;
	}
	.page-template-mufe-range .water-reivented .row .col:nth-child(2) img:nth-child(2) {
    right: 15px;
		top: -15%;
		width: 236px;
    height: auto;
  }
	.page-template-mufe-range .water-reivented .row .col:nth-child(2) img:nth-child(3) {
		right: 15px;
		width: 240px;
		height: 240px;
	}
	.page-template-mufe-range .fine-bubbles .row .col:nth-child(1) h2 {
        width: 100%;
    }
	.product-line-up .line-up-explo .tab-content .row .col svg {
    	position: absolute;
    	top: 5px;
	}
	.page-template-careers .our-president.about-president.career-president .row .col:nth-child(2) div img {
    	height: auto;
	}	
	.page-template-careers .our-president.about-president.career-president .row .col:nth-child(1) .d-flex {
    	width: 95%;
	}
	.page-template-careers section.latest-news.bg-white.sustainability-action.carrer-growth .card .card-body p{
		overflow: visible;
	}
	.page-template-careers section.latest-news.bg-white.sustainability-action.carrer-growth .card .card-body{
		height: 205px;
	}
	.page-template-location-information section#contact_form_location .row .col:first-child {
        width: 50%;
    }
	.page-template-careers section.about-inclusive-feature.whychoose-maruyama.skw-animation .row{
		display: flex;
        flex-wrap: wrap;
        row-gap: 48px;
	}
	.page-template-careers section.about-inclusive-feature.whychoose-maruyama.skw-animation .row .col:nth-child(3){
		width: 100% !important;
	}
	.aboutus-global .careers-at .row .col:nth-child(1){
		padding: 48px 64px;
	}
	.page-template-home .better-tomorrow .row .col h2{
		top: -175px;
	}
	.page-template-home .better-tomorrow .row{
		row-gap: 58px;
	}
	.cmpy-history-sec .row .col:nth-child(odd) h3::before{
		rotate: 180deg;
	}
	.cmpy-history-sec .row .col:nth-child(odd) h3{
		left: 88px;
	}
	.page-template-our-product .yield-efficiency .sliderContent .row{
		justify-content: space-between;
	}
	.yield-efficiency .content-1 .row .col {
		width: 48%;
	}
	.yield-efficiency .tab-content .row .col .card img, .yield-efficiency .sliderContent .row .col .card img{
		width: 100%;
	}
}
@media only screen and (max-width: 320px){
	.ground-breaking .row .col div img {
        width: 100% !important;
    }
	.ground-breaking .row .col::before {
        min-height: calc(100% - 145px);
    }
	.page-template-home .ground-breaking .row .col h4,
	.page-template-home .ground-breaking .row .col:nth-child(2) h4{
        top: 200px;
    }
}
/* 03-12-25 (testing 3.0) */
	.page-template-home .press-releases.latest-news .item-center a.learnmore {
		text-decoration: none;
	}
	footer form#contact_form__footer .col select.form-control {
    	width: 98%;
	}
	.page-template-ope-range .product-line-up .line-up-explo .swiper .tab-content .row .col .product-slider .swiper-slide a img {
		width: 85%;
		margin: auto;
		display: block;
	}
	.our-offices-factories .main-row .tab-content ul li p {
		width: auto;
	}
	.page-template-about-us .guiding-philosophy .row .col:nth-child(2){
		padding-top: 28px;
	}
@media only screen and (max-width: 767px){
	.page-template-about-us section.about-inclusive-feature.our-gallery-about .row .col:nth-child(2){
		justify-content: left;
	}
	.save-crops .maruyama-before-slider .swiper-wrapper .swiper-slide .card:nth-child(2) h3 {
    bottom: 50px;
  }
  .careers-at .row .col:nth-child(1) {
    border-radius: 0px 0px 60px 0;
  }
}
@media only screen and (max-width:1200px){
	header nav ul li .dropdown-menu ul li.active a {
		color: #C4131C;
		font-weight: 400;
	}
}
@media screen and (min-width:320px) and (max-width:1024px){
	header nav ul:first-child p{
		font-size: 16px;
	}
}
@media screen and (min-width:324px) and (max-width:360px){
	.page-template-innovation-sustainability .feature-vision .before-svg {
        top: 43%;
  }
}
@media screen and (max-width:624px) and (min-width:320px){
	.page-template-location-information .our-offices-factories .main-row .tab-content ul li:last-child {
		margin-bottom: 66px;
	}
}
@media only screen 
  and (min-width: 768px)
  and (max-width: 1366px) {
    .humburger-body .land-sel.land-sel-mobile-view {
      right: -30%;
    }
    .humburger-body header nav {
      padding: 15px 24px;
    }
    .page-template-home .better-tomorrow .row {
      row-gap: 24px;
    }
    .page-template-home .better-tomorrow {
      padding-top: 259px;
    }
    .page-template-home .home-product .buttom-box .catlogbox-rght-svg path, 
    .page-template-our-product .loexpo-info .buttom-box .catlogbox-rght-svg path, 
    .page-template-mufe-range .loexpo-info .buttom-box .catlogbox-rght-svg  path, 
    .page-template-ope-range .loexpo-info .buttom-box .catlogbox-rght-svg path, 
    .page-template-location-information .loexpo-info .buttom-box .catlogbox-rght-svg path {
      fill: #fff !important;
    }
    .page-template-home .home-product .buttom-box .catlogbox-lft-svg path, 
    .page-template-our-product .loexpo-info .buttom-box .catlogbox-lft-svg path, 
    .page-template-mufe-range .loexpo-info .buttom-box .catlogbox-lft-svg  path, 
    .page-template-ope-range .loexpo-info .buttom-box .catlogbox-lft-svg path, 
    .page-template-location-information .loexpo-info .buttom-box .catlogbox-lft-svg path {
      fill: #fff !important;
    }
}
@media only screen 
  and (min-width: 1024px)
  and (max-width: 1100px) {
    .page-template-home .welcome-to-maruyama-sec .row .col:nth-child(2) .pos-img {
      right: 8%;
    }
    .page-template-home .welcome-to-maruyama-sec .row .col:nth-child(2) div img:first-child {
      left: 6%;
    }
    .page-template-home .welcome-to-maruyama-sec .row .col:nth-child(2) div::before {
      left: 5%;
    }
    .cmpy-history-sec .rocket {
      left: 3px;
    }
}
@media only screen 
  and (min-device-width: 1364px)
  and (max-device-width: 1400px)
  and (orientation: landscape) {
    .page-template-home .ground-breaking .row {
      flex-direction: row;
    }
    .page-template-home .ground-breaking .row .col {
      width: 600px;
    }
}
@media only screen 
  and (min-width: 768px)
  and (max-width: 1366px) {
	.page-template-home .creating-the-next-feature,
	.page-template-home .welcome-to-maruyama-sec .row {
        padding-bottom: 64px;
    }
	.page-template-home section.our-product.home-product .buttom-box{
		margin-top: 64px;
	}
	.page-template-home section.press-releases.latest-news.rightshadow{
	 	padding-bottom: 64px;
	}	
	.page-template-mufe-range section.water-reivented.fine-bubbles{
		padding-bottom: 32px;
	}
	.page-template-mufe-range section.maruyama-advantages.mufb-tech{
		padding-bottom: 40px;	  
	}  
	.page-template-mufe-range .our-mufb-pro .row{
		margin-bottom: 48px;
	}  
	.purposeful-innovation .row .box h3{
		z-index: -1;  
	}  
	.page-template-careers section.our-president.about-president.career-president .row{
		column-gap: 32px;	  
	}  
  .page-template-about-us .guiding-philosophy {
    padding: 32px 0px;
  }
  .page-template-about-us .aboutus-global .careers-at .row .col:nth-child(1) {
    padding: 56px 48px;
  }
  .page-template-solution .real-result-field h2 {
    width: 85%;
  }
  .page-template-ope-range .product-line-up .line-up-explo .product-swiper {
    height: auto;
  }
  .page-template-solution section.yield-efficiency.career-opportunities.real-result-field .on h4,
  .page-template-solution .real-result-field .sliderTab .swiper-slide h4 {
    margin: auto;
  }
  .page-template-ope-range .loexpo-info, .page-template-mufe-range .loexpo-info, .page-template-ope-range .loexpo-info {
    padding: 0px 0px 80px;
  }
  .page-template-news .press-releases .card {
    min-width: auto;
  }
  .page-template-news .social-slider .card .card-body a::after {
    width: 141px;
  }
  .page-template-news .latest-news.press-releases .swiper-arrow {
    display: flex;
  }
}
@media only screen 
  and (min-device-width: 768px)
  and (max-device-width: 1366px)
  and (orientation: landscape) {
  .career-down-arrow {
    margin-left: 13%;
  }
  .page-template-location-information .about-inclusive-feature .row {
    column-gap: 24px;
  }
  .getin-touch .row .col:nth-child(2) form .col:nth-last-child(3), .getin-touch .row .col:nth-child(2) form .col:nth-last-child(4) {
    width: 98.5% !important;
  }
  .cmpy-history-sec .row .col:nth-child(1) {
    margin-bottom: 80px;
  }
  
  .page-template-location-information .our-offices-factories .main-row .tab-content ul li:last-child {
    margin-bottom: 64px;
  }
  .page-template-location-information .our-offices-factories .row.main-row .col .row {
    top: -3px;
  }
  .single-post .insights-blogs .container {
    width: auto;
  }
  .page-template-news .social-slider .card {
    min-width: auto;
  }
  .page-template-about-us .our-president .row .col:nth-child(2) div::before { 
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .career-opportunities .sliderTab .swiper-slide a {
    height: 100%;
    display: block;
  }
  .getin-touch .row .col:nth-child(2) form .col:nth-last-child(3), .getin-touch .row .col:nth-child(2) form .col:nth-last-child(4) {
    width: 98.5% !important;
  }
}
@media screen and (max-width: 576px) {
  .page-template-solution .real-result-field .sliderTab .swiper-slide h4,
  .page-template-solution .career-opportunities .sliderTab .swiper-slide {
    width: 100%;
  }
  .product-line-up .line-up-explo .product-swiper {
    height: auto;
  }
  .page-template-news .latest-news .news-slider .swiper-pagination-1 {
    top: 24px;
    position: relative;
    display: block !important;
  }
  .page-template-news .insights-blogs .content h2 {
    margin-bottom: 16px;
  }
  .page-template-location-information .getin-touch .row .col:nth-child(2) form .col.privary p:last-child {
    display: grid;
  }
  .page-template-mufe-range .water-reivented .row .col:nth-child(1) h2 span,
	.page-template-our-product .water-reivented .row .col:nth-child(1) h2 span{
    margin-bottom: 16px;
    display: inline-block;
  }
  .page-template-gallery .gallery-taps .gallery-grid {
    display: block;
  }
}
@media screen and (min-width: 363px) and (max-width: 380px) {
  .page-template-innovation-sustainability .feature-vision .before-svg {
    top: 45%;
  } 
  .page-template-home .creating-the-next-feature h2:nth-child(1) .inline {
    padding-bottom: 8px;
    margin-left: 0;
    width: 185px;
  }
}
@media screen and (min-width: 380px) and (max-width: 395px) {
  .page-template-home .ground-breaking .content h2 {
    max-width: 100%;
  }
}

@media screen and (min-width: 361px) and (max-width: 375px) {
  .page-template-home .small-seamless { top: 32px !important; }
}
@media screen and (min-width: 375px) and (max-width: 378px) {
  .page-template-home .small-seamless { top: 35px !important; }
}
@media screen and (min-width: 454px) and (max-width: 574px) {
  .creating-the-next-feature h2:nth-child(1) span {
    margin-top: -22px;
  }
  .page-template-home .small-seamless {
    top: -8px;
  }
}
@media screen and (min-width: 574px) and (max-width: 640px) { 
  .page-template-home .creating-the-next-feature h2:nth-child(1)::before {
    top: 13px;
  }
  .page-template-home .creating-the-next-feature h2:nth-child(1){
    width: 88% !important;
    margin-right: auto;
    margin-bottom: 28px;
  }
  .page-template-home .creating-the-next-feature h2:nth-child(1) .inline {
    width: auto;
    margin-right: 51px;
  }
  .page-template-home .small-seamless {
    right: 11px;
    top: -1px;
  }
}
@media screen and (min-width: 640px) and (max-width: 640px) {
  .page-template-home .creating-the-next-feature h2:nth-child(1)::before {
    top: 30px;
  }
}
@media screen and (min-width: 640px) and (max-width: 767px) { 
  .page-template-home .creating-the-next-feature h2:nth-child(1) {
    width: 79% !important;
    margin-right: auto;
    margin-left: auto;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 8px;
  }
  .page-template-home .creating-the-next-feature h2:nth-child(1) .inline {
    width: auto;
  }
  .page-template-home .creating-the-next-feature h2:nth-child(1) .inline {
    margin-left: 16px;
  }
  .page-template-home .creating-the-next-feature h2:nth-child(1) span {
    margin-left: 20%;
    font-size: 18px;
    line-height: 58px;    
  }
  .page-template-home .creating-the-next-feature h2:nth-child(2) {
    font-size: 18px;
    margin-left: auto;
    margin-right: auto;
  }
  .creating-the-next-feature {
    padding: 64px 0px 64px;
  }
  .creating-the-next-feature p {
    z-index: 1;
    position: relative;
  }
  .page-template-home .small-seamless {
    top: 15px;
  }
  .page-template-home .creating-the-next-feature h2:nth-child(1)::before {
    background-size: contain;
  }
}
@media screen and (min-width: 690px) and (max-width: 767px) { 
  .page-template-home .creating-the-next-feature h2:nth-child(1) {
    width: 76% !important;
  }
}
@media screen and (min-width: 920px) and (max-width: 991px) { 
  .page-template-home .creating-the-next-feature h2,
  .page-template-home .creating-the-next-feature h2:nth-child(1) .inline,
  .page-template-home .creating-the-next-feature h2:nth-child(1) span {
    font-size: 24px;
  }
  .page-template-home .creating-the-next-feature h2:nth-child(1) .inline {
    width: auto;
  }
  .page-template-home .creating-the-next-feature h2:nth-child(1) {
    width: 88% !important;
    margin-bottom: 0;
  }
  .page-template-home .creating-the-next-feature h2:nth-child(1) span {
    position: relative;
    left: 21%;
  }
  .page-template-home .creating-the-next-feature .container {
    margin: 0 auto;
  }
  .page-template-home .creating-the-next-feature h2:nth-child(1)::before {
    background-image: url('../images/index/vector-line.svg');
    width: 100%;
    background-size: contain;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1230px) {
  .page-template-home .creating-the-next-feature h2 {
    width: 83%;
    margin: auto auto 16px;
    text-align: left;
  }
  .page-template-home .creating-the-next-feature h2:nth-child(1)::before {
    background-size: contain;
    margin: auto;
    left: 0;
    right: 0;
    width: 100%;
  }
  .page-template-home .creating-the-next-feature h2:nth-child(1) .inline {
    font-size: 36px;
  }
  .page-template-home .creating-the-next-feature h2 span {
    font-size: 36px;
    margin-left: 16%;
  }
  .page-template-home .small-seamless {
    right: 0;
  }
  .page-template-home .creating-the-next-feature h2:nth-child(2) {
    margin-bottom: 31px;
    font-size: 36px;
    text-align: center;
  }
}
@media screen and (min-width: 1180px) and (max-width: 1230px) {
  .page-template-home .creating-the-next-feature h2 {
    width: 77%;
  }
  .page-template-home .small-seamless {
    right: 3%;
  }
}

@media screen and (min-width: 640px)  and (max-width: 767px){
  .welcome-to-maruyama-sec {
    padding: 55px 24px 50px;
  }
  .welcome-to-maruyama-sec h2 {
    font-size: 22px;
    line-height: 30px;
  }
  .welcome-to-maruyama-sec .bottom-pos-banner {
    bottom: inherit;
    top: 18%;
    height: 162px;
  }
  .welcome-to-maruyama-sec .row {
    flex-direction: column-reverse;
    row-gap: 82px;
  }
  .welcome-to-maruyama-sec .row .col:nth-child(2) div::before {
    width: 100%;
    height: 100%;
    top: 20px;
    left: -13px;
  }
  .welcome-to-maruyama-sec .row .col:nth-child(2) div img {
    border-radius: 50% 50% 0% 50%;
    width: 75%;
  }
  .welcome-to-maruyama-sec .row .col:nth-child(2) .pos-img {
    top: 15%;
    right: -85px;
    width: 59%;
  }
}
@media screen and (min-width: 300px) {
  .welcome-to-maruyama-sec .bottom-pos-banner { top: 20%; }
}
@media screen and (min-width: 320px) {
  .welcome-to-maruyama-sec .bottom-pos-banner { top: 19%; }
}
@media screen and (min-width: 340px) {
  .welcome-to-maruyama-sec .bottom-pos-banner { top: 22%; }
}
@media screen and (min-width: 350px) {
  .welcome-to-maruyama-sec .bottom-pos-banner { top: 24%; }
}
@media screen and (min-width: 410px) {
  .welcome-to-maruyama-sec .bottom-pos-banner { top: 221px; }
}
@media screen and (min-width: 420px) {
  .welcome-to-maruyama-sec .bottom-pos-banner { top: 26%; }
}
@media screen and (min-width: 440px) {
  .welcome-to-maruyama-sec .bottom-pos-banner { top: 28%; }
}
@media screen and (min-width: 460px) {
  .welcome-to-maruyama-sec .bottom-pos-banner { top: 29%; }
}
@media screen and (min-width: 470px) {
  .welcome-to-maruyama-sec .bottom-pos-banner { top: 30%; }
}
@media screen and (min-width: 480px) {
  .welcome-to-maruyama-sec .bottom-pos-banner { top: 31%; }
}
@media screen and (min-width: 490px) {
  .welcome-to-maruyama-sec .bottom-pos-banner { top: 32%; }
}
@media screen and (min-width: 500px) {
  .welcome-to-maruyama-sec .bottom-pos-banner { top: 34%; }
}
@media screen and (min-width: 520px) {
  .welcome-to-maruyama-sec .bottom-pos-banner { top: 35%; }
}
@media screen and (min-width: 540px) {
  .welcome-to-maruyama-sec .bottom-pos-banner { top: 36% }
} 
@media screen and (min-width: 550px) {
  .welcome-to-maruyama-sec .bottom-pos-banner { top: 37% }
}
@media screen and (min-width: 560px) {
  .welcome-to-maruyama-sec .bottom-pos-banner { top: 38%; }
}
@media screen and (min-width: 580px) {
  .welcome-to-maruyama-sec .bottom-pos-banner { top: 39%; }
}
@media screen and (min-width: 600px) {
  .welcome-to-maruyama-sec .bottom-pos-banner { top: 40%; }
}
@media screen and (min-width: 620px) {
  .welcome-to-maruyama-sec .bottom-pos-banner { top: 41%; }
}
@media screen and (min-width: 630px) {
  .welcome-to-maruyama-sec .bottom-pos-banner { top: 42%; }
}
@media screen and (min-width: 640px) {
  .welcome-to-maruyama-sec .bottom-pos-banner { top: 40%; height: 162px; }
  .welcome-to-maruyama-sec .row .col:nth-child(2) div::before {
    width: 100%;
    height: 100%;
    left: -13px;
  }
}
@media screen and (min-width: 641px) {
  .welcome-to-maruyama-sec .bottom-pos-banner { top: 26%; }
}
@media screen and (min-width: 680px) {
  .welcome-to-maruyama-sec .bottom-pos-banner { top: 27%; }
}
@media screen and (min-width: 992px) {
  .welcome-to-maruyama-sec .bottom-pos-banner { top: 50%; }
}
@media screen and (min-width: 1024px) {
  .welcome-to-maruyama-sec .bottom-pos-banner { top: 48%; height: 400px; }
}
@media screen and (min-width: 1200px) {
  .welcome-to-maruyama-sec .bottom-pos-banner { top: 48%; }
}
@media screen and (min-width: 700px) {
  .welcome-to-maruyama-sec .bottom-pos-banner { top: 28%; }
}
@media screen and (min-width: 730px) {
  .page-template-home .welcome-to-maruyama-sec .bottom-pos-banner { top: 29%; }
}
@media screen and (min-width: 740px) {
  .page-template-home .welcome-to-maruyama-sec .bottom-pos-banner { top: 30%; }
}
@media screen and (min-width: 760px) {
  .page-template-home .welcome-to-maruyama-sec .bottom-pos-banner { top: 30%; }
}
@media screen and (min-width: 768px) {
  .page-template-home .welcome-to-maruyama-sec .bottom-pos-banner { top: 19%; }
}
@media screen and (min-width: 992px) {
  .page-template-home .welcome-to-maruyama-sec .bottom-pos-banner { top: 29%; }
}
@media screen and (min-width: 1024px) {
  .page-template-home .welcome-to-maruyama-sec .bottom-pos-banner { top: 21%; }
}
@media screen and (min-width: 1025px) {
  .page-template-home .welcome-to-maruyama-sec .bottom-pos-banner { 
    top: unset;
  }
}
@media screen and (min-width: 542px) and (max-width: 640px) {
  .page-template-home .better-tomorrow .row .col h2 {
    width: 400px !important;
    margin-right: auto;
    margin-left: auto;
    right: 0;
    left: 0;
  }
}
@media screen and (min-width: 639px) and (max-width: 640px) {
  .page-template-home .better-tomorrow .row .col h2 {
    top: -182px;
  }
  .page-template-home .better-tomorrow p {
    top: -92px;
  }
}
@media screen and (min-width: 641px) and (max-width: 768px) {
  .page-template-home .better-tomorrow {
    padding-top: 259px;
  }
  .page-template-home .better-tomorrow .container {
    position: relative;
  }
  .page-template-home .better-tomorrow .row {
    row-gap: 24px;
    flex-direction: column-reverse;
  }
  .page-template-home .better-tomorrow .row .col {
    width: 100%;
  }
  .page-template-home .better-tomorrow .row .col h2 {
    position: absolute;
    top: -205px;
  }
  .page-template-home .better-tomorrow .row .col p {
    position: absolute;
    top: -90px;
    z-index: 999;
  }
  .page-template-home .better-tomorrow .row .col {
    width: 100%;
  }
  .page-template-home .better-tomorrow .row .col:nth-child(2) img {
    width: 100%;
  }
  .page-template-home .better-tomorrow {
    background-color: #fff;
  }
  .page-template-home .better-tomorrow .row .col div p {
    position: relative;
    top: unset;
  }
}
@media screen and (min-width: 992px) and (max-width: 1023px) {
  .page-template-home .better-tomorrow {
    padding-top: 200px;
  }
  .page-template-home .better-tomorrow .row .col h2 {
    top: -156px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1024px) {
  .page-template-home .better-tomorrow {
    padding-top: 259px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1100px) {
  .page-template-home .better-tomorrow .row .col h2 span {
    display: inline-block;
  }
  .page-template-home .better-tomorrow {
    padding-top: 80px;
  }
  .page-template-home .better-tomorrow .row .col h2 {
    top: unset;
  }
  .page-template-home .ground-breaking picture img {
    width: 100% !important;
    object-fit: contain;
  }

}
@media screen and (min-width: 1181px) and (max-width: 1270px) {
  .page-template-home .better-tomorrow .container {
    margin: 0 24px;
  }
}
@media screen and (min-width: 1260px) and (max-width: 1364px) {
  .page-template-home .ground-breaking .row {
    flex-direction: row;
  }
  .page-template-home .ground-breaking .row .col {
    width: calc(50% - 24px);
  }
}
@media screen and (min-width: 1101px) and (max-width: 1260px) {
  .page-template-home .ground-breaking picture {
    width: auto;
  }
}
@media screen and (min-width: 640px) and (max-width: 577px) {
  .page-template-home .ground-breaking .content h2 span {
    display: inline-block;
  }
}
@media screen and (min-width: 450px) and (max-width: 640px) {
  .page-template-home .home-product .dxlogo-bx img {
    object-fit: contain;
    width: auto;
    margin: auto;
  }
}
@media screen and (min-width: 640px) and (max-width: 1100px) {
  .page-template-home .our-product .row .col ul {
    width: 100%;
    max-width: 327px;
    height: 236px;
    padding: 0 25px;
    gap: 5px;
    border-bottom: 1px solid #231F20;
  }
  .page-template-home .our-product .row .col ul .resp-tab-item {
    height: 100%;
    transform: skew(-11deg);
    bottom: -8px;
  }
  .page-template-home .our-product .row .col ul .resp-tab-active {
    width: 261px;
  }
  .page-template-home .our-product .row .col ul .resp-tab-item:nth-child(1) img {
    left: 42%;
    width: 206px !important;
    height: 100% !important;
    margin: 0;
  }
  .page-template-home .our-product .row .col:nth-child(2) h3 {
    width: auto;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .page-template-home .our-product .row .col .prod-tab-content p {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .page-template-home .our-product .row .col:nth-child(2),
  .page-template-home .our-product .row .col:nth-child(1) {
    width: auto;
  }
  .page-template-home .our-product .row {
    column-gap: 0;
  }
}
@media screen and (min-width: 1100px) and (max-width: 1230px) {
  .page-template-home .our-product .row .col ul {
    width: 100%;
    max-width: 327px;
    height: 236px;
    padding: 0 25px;
    gap: 5px;
    border-bottom: 1px solid #231F20;
  }
  .page-template-home .our-product .row .col ul .resp-tab-item {
    height: 100%;
    transform: skew(-11deg);
    bottom: -8px;
  }
  .page-template-home .our-product .row .col ul .resp-tab-active {
    width: 261px;
  }
  .page-template-home .our-product .row .col ul .resp-tab-item:nth-child(1) img {
    left: 42%;
    width: 206px !important;
    height: 100% !important;
    margin: 0;
  }
  .our-product.home-product .row {
    flex-direction: column;
    row-gap: 56px;
    border: none;
  }
  .our-product .row .col:nth-child(2) {
    width: 572px;
  }
  .page-template-home .our-product .row .col:nth-child(2) h3,
  .page-template-home .our-product .row .col .prod-tab-content p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .page-template-home .home-product.our-product {
    background: #fff;
  }
  .home-product .dxlogo-bx svg path {
    fill: #fff;
  }
  .page-template-home .home-product .dxlogo-bx {
    background-color: #FEF4F4;
  }
  .page-template-home .home-product .buttom-box {
    border-radius: 80px 80px 0 80px;
  }
  .page-template-home .home-product .buttom-box .catlogbox-lft-svg {
    left: 0;
    right: 0;
    top: 42px;
    position: relative;
  }
  .page-template-home .home-product .buttom-box svg {
    width: 47.253px;
    height: 47.998px;
  }
  .page-template-home .home-product .buttom-box .catlogbox-lft-svg svg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 64px;
    height: 64px;
  }
  .page-template-home .home-product .buttom-box .catlogbox-lft-svg {
    left: 28px;
    right: 0;
    top: 0;
    display: block;
    height: 100%;
  }
  .page-template-home .home-product .buttom-box div:nth-child(2) {
    width: 80%;
    margin: auto;
  }
  .page-template-home .home-product .buttom-box div h4 {
    font-size: 24px;
  }
  .page-template-home .home-product .buttom-box .catlogbox-rght-svg {
    display: block;
    text-align: right;
    height: 100%;
    top: 0;
    width: 86%;
  }
  .page-template-home .home-product .buttom-box .catlogbox-rght-svg svg {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 64px;
    height: 64px;
  }
  .page-template-home .home-product .buttom-box .catlogbox-rght-svg path {
    fill: #fff;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1366px) {
  .page-template-home .home-product .buttom-box .catlogbox-rght-svg path,
  .page-template-home .home-product .buttom-box .catlogbox-lft-svg path {
    fill: #FEF4F4 !important;
  }
}
@media screen and (min-width: 640px) and (max-width: 768px) {
  .page-template-about-us .aboutus-mission .row .col:nth-child(2) div img {
    border-radius: 49px 0;
    width: 100%;
  }
  .page-template-about-us .aboutus-mission .row .col:nth-child(1) {
    width: auto;
  }
  .page-template-about-us .aboutus-mission .row .col:nth-child(2) {
    width: 100%;
    height: auto;
  }
  .page-template-about-us .aboutus-mission .row {
    row-gap: 40px;
  }
  .page-template-about-us .about-president .row {
    flex-direction: column-reverse;
    row-gap: 24px;
  }
  .page-template-about-us .about-president .row .col {
    width: 100%;
  }
  .page-template-about-us .about-president .row .col:nth-child(2) div::before {
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 993px) and (max-width: 1024px) {
  .page-template-about-us .our-president.about-president {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media screen and (min-width: 640px) and (max-width: 1200px) {
  .page-template-about-us .about-the-leadership .swiper-wrapper .col img {
    width: 100%;
  }
  .page-template-about-us .about-the-leadership .swiper-wrapper .col:first-child {
    margin-left: 24px;
  }
  .page-template-about-us .swiper-pagination-bullets.swiper-pagination-horizontal {
    max-width: calc(100% - 24px);
    margin-left: 24px;
    margin-right: 0;
  }
  .page-template-about-us .about-the-leadership .player {
    overflow: hidden;
  }
}
@media screen and (min-width: 1031px) and (max-width: 1132px) {
  .page-template-about-us .container {
    margin: 0 24px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1200px) {
  .page-template-about-us .about-the-leadership .team-slider-01,
  .page-template-about-us .about-the-leadership .team-slider-02 {
    overflow: hidden;
    margin-bottom: 24px;
    margin-left: 24px;
  }
  .page-template-about-us .aboutus-global .careers-at .row .col:nth-child(1),
  .page-template-about-us .careers-at .row .col:nth-child(1) {
    min-width: 704px;
  }
  .page-template-about-us section.careers-at.bg-white.aboutus-global.ab-careerat .row .col:nth-child(1){
    min-width: auto;
    width: 49%;
  }
  .page-template-about-us .careers-at.bg-white.aboutus-global.ab-careerat .col {
    width: 49%;
  }
  .page-template-about-us .aboutus-global .row:nth-child(1),
  .page-template-about-us .aboutus-global.global-presence {
    width: 100%;
    overflow: hidden;
  }
  .page-template-about-us .swiper-pagination-bullets.swiper-pagination-horizontal {
    margin-left: 32px;
    margin-bottom: 40px;
  }
  .page-template-about-us .about-the-leadership {
    padding: 80px 0px 32px;
  }
  .page-template-about-us .about-the-leadership .swiper-wrapper .col:first-child {
    margin-left: 0;
  }
}
@media screen and (min-width: 640px) and (max-width: 991px) {
  .page-template-about-us .guiding-philosophy .row {
    row-gap: 32px;
    flex-direction: column;
  }
  .page-template-about-us .guiding-philosophy .row .col h2 br {
    display: none;
  }
  .page-template-about-us .guiding-philosophy .row .col {
    width: 100% !important;
  }
}
@media screen and (min-width: 640px) and (max-width: 991px) {
  .page-template-about-us .guiding-philosophy .row .col p svg {
    top: -14px;
    left: -16px;
    width: 56px;
    height: 56px;
  }
  .page-template-about-us .celebrating-years .player iframe,
  .page-template-about-us .our-product .content p {
    width: 100%;
  }
  .page-template-about-us .celebrating-years .player iframe {
    height: 286px;
  }
  .page-template-about-us .legacy-excellence .row .col {
    padding: 24px 0px 24px 0px;
    border-bottom: 1px solid #D3D2D2;
    border-right: 0px;
    row-gap: 8px;
  }
  .page-template-about-us .legacy-excellence .row .col:last-child {
    border-bottom: none;
  }
  .page-template-about-us .legacy-excellence .row {
    flex-direction: column;
  } 
  .page-template-about-us .legacy-excellence .row .col {
    width: auto;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1100px) {
  .page-template-about-us section {
    overflow: hidden;
  }
  .page-template-about-us .our-values .row {
    flex-wrap: wrap;
    row-gap: 15px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1200px) {
  .page-template-about-us .skw-animation .image-col .skew-wrapper img, 
  .page-template-careers .skw-animation .image-col .skew-wrapper img {
    transform: translate(-50%, -50%) skew(2deg);
  }
}
@media screen and (min-width: 1180px) and (max-width: 1200px) {
  .page-template-about-us .about-the-leadership .swiper-wrapper {
    column-gap: 16px;
  }
  .page-template-about-us .about-the-leadership .team-slider-01,
  .page-template-about-us .about-the-leadership .team-slider-02 {
    margin-left: 24px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1360px) {
  .page-template-about-us section {
    overflow: hidden;
  }
}
@media screen and (min-width: 1180px) and (max-width: 1200px) {
  .page-template-about-us .about-the-leadership .team-slider-01,
  .page-template-about-us .about-the-leadership .team-slider-02 {
    margin-left: 24px;
    margin-right: 24px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1024px) {
  .page-template-about-us .careers-at.bg-white.aboutus-global.ab-careerat .col,
  .page-template-about-us section.careers-at.bg-white.aboutus-global.ab-careerat .row .col:nth-child(1) {
    width: 100%;
  }
}
@media screen and (min-width: 1133px) and (max-width: 1199px) {
  .page-template-about-us .about-inclusive-feature .row .col:first-child {
    width: 100%;
  }
}
@media screen and (min-width: 320px) and (max-width: 640px) {
  .page-template-about-us .about-the-leadership .swiper-wrapper .col img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .page-template-about-us .about-the-leadership .team-slider-01 {
    margin-bottom: 0;
  }
  .page-template-about-us .about-the-leadership .swiper-pagination-team01 {
    margin-bottom: 56px;
    margin-left: 0;
    text-align: left;
    margin-top: 24px;
  }
  .page-template-about-us .about-the-leadership .swiper-pagination-team02 {
    margin-top: 24px;
    margin-left: 0;
    text-align: left;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .page-template-about-us .swiper-pagination-bullets.swiper-pagination-horizontal {
    margin-left: 48px;
    max-width: calc(100% - 48px);
  }  
}
@media screen and (min-width: 1023px) and (max-width: 1300px) {
  .page-template-about-us .swiper-pagination-bullets.swiper-pagination-horizontal {
    margin-left: 24px;
    max-width: calc(100% - 24px);
  }
}
@media only screen and (min-width: 640px) and (max-width: 992px) and (orientation: landscape) {
  .page-template-about-us .container {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 640px) {
  .cmpy-history-sec .rocket {
    left: -26px;
  }
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .cmpy-history-sec .container {
    padding-left: 38px;
  }
  .cmpy-history-sec .row {
    position: relative;
    z-index: 1;
    row-gap: 26px;
    padding-left: 0px;
    padding-bottom: 112px;
  }
  .cmpy-history-sec .row .col {
    width: 100% !important;
  }
  .cmpy-history-sec .row::before {
    content: "";
    height: 100%;
    width: 2px;
    position: absolute;
    left: 0;
    top: 0;
    border-right: 2px dotted transparent;
    bottom: 0;
    border-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMiIgaGVpZ2h0PSI5NjQ4IiB2aWV3Qm94PSIwIDAgMiA5NjQ4IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNMSAxTDEgOTY0NyIgc3Ryb2tlPSIjQzBCRkJGIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWRhc2hhcnJheT0iMSA3Ii8+Cjwvc3ZnPgo=");
    border-image-slice: 1;
  }
  .cmpy-history-sec .row .col:nth-child(even) img {
    width: auto;
  }
  .cmpy-history-sec .row .align-self h3 {
    right: inherit;
    left: 0px;
  }
  .cmpy-history-sec .row .align-self:nth-child(1) {
    margin-top: 90px;
  }
  .cmpy-history-sec .row img {
    width: 100%;
  }
  .cmpy-history-sec .row .full-width {
    position: absolute;
    right: 0;
    top: 0;
  }
  .cmpy-history-sec .row .full-width svg {
    width: 56px;
    height: 56px;
  }
  .cmpy-history-sec .row .col {
    border: none !important;
    padding-bottom: 0px;
  }
  .cmpy-history-sec .row .col:nth-child(odd) {
    border-left: none !important;
    border-right: 0px;
  }
  .cmpy-history-sec .row .col:nth-child(odd) h3 {
    width: -moz-fit-content;
    width: fit-content;
    margin-left: 41px;
    padding: 12px 24px;
    z-index: 1;
  }
  .cmpy-history-sec .row .col:nth-child(odd) h3::before {
    width: 48px;
    height: 26px;
    background-size: contain;
    position: absolute;
    right: 92px;
    top: 16px;
    z-index: -1;
    transform: rotate(180deg);
  }
  .cmpy-history-sec .row .col:nth-child(even) {
    padding-left: 32px;
  }
  .cmpy-history-sec .row .col h3 {
    font-size: 18px;
  }
  .cmpy-history-sec .row .col h3.celebrate::after {
    top: 5px;
  }
  .cmpy-history-sec .row .col p {
    font-size: 16px;
  }
  .cmpy-history-sec .row .upcoming-arrow {
    margin-left: -18px;
  }
  .career-down-arrow {
    position: absolute;
    bottom: -23px;
    margin-left: -13px;
    display: block;
    height: 80px;
    width: 31px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1249px) {
  .cmpy-history-sec .container {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  .cmpy-history-sec .row {
    position: relative;
    z-index: 1;
    row-gap: 50px;
    padding-left: 88px;
  }
  .cmpy-history-sec .row .full-width {
    width: 70% !important;
  }
  .cmpy-history-sec .row .col:nth-child(odd) h3 {
    margin-left: 20px;
    z-index: 1;
    right: inherit;
  }
  .cmpy-history-sec .rocket {
    left: 5px;
  }
  .cmpy-history-sec .row .full-width svg {
    width: 56px;
    height: 56px;
  }
  .career-down-arrow {
    margin-left: -67px;
  }
  .cmpy-history-sec .row .align-self:nth-child(1) {
    margin-top: 90px;
    border: none !important;
    padding-bottom: 0px;
  }
  .cmpy-history-sec .row .col:nth-child(odd) h3::before {
    rotate: 180deg;
    right: 120px;
  }
  .page-template-company-histroy .cmpy-history-sec .row::before {
    left: 41px;
  }
  .cmpy-history-sec .row .col {
    padding-bottom: 0;
  }
  .cmpy-history-sec .rocket {
    top: -61px;
    left: 5px;
    height: 80px;
  }
  .cmpy-history-sec .row .col:nth-child(even) {
    padding-left: 32px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1100px) {
  .cmpy-history-sec .row .col:nth-child(odd) h3 {
    left: 0;
  }
  .cmpy-history-sec .container {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1250px) and (max-width: 1280px) {
  .cmpy-history-sec .row .col:nth-child(odd) h3 {
    top: 60px;
  }
  .cmpy-history-sec .row::before {
    left: 15.6%;
  }
  .cmpy-history-sec .rocket {
    left: 12.5%;
  }
  .career-down-arrow {
    margin-left: 13.5%;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1370px) {
  .cmpy-history-sec .row .col:nth-child(odd) h3 {
    top: 60px;
  }
}
@media screen and (min-width: 640px) and (max-width: 768px) {
  .welcome-to-maruyama-sec .row .col:nth-child(1) {
    width: 100%;
  }
}
@media screen and (min-width: 640px) and (max-width: 640px) {
  .page-template-home .creating-the-next-feature h2:nth-child(1)::before {
    top: 30px;
  }
  .welcome-to-maruyama-sec .row .col:nth-child(2) div img {
    border-radius: 50% 50% 0% 50%;
    width: 70%;
  }
  .welcome-to-maruyama-sec .row .col:nth-child(2) .pos-img {
    width: 52%;
  }
  .welcome-to-maruyama-sec .row .col:nth-child(2) div::before {
    width: 100%;
    height: 100%;
    top: 20px;
    left: -13px;
  }
  .page-template-home .welcome-to-maruyama-sec .row .col:nth-child(2) .pos-img {
    top: 15%;
    right: 0;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1240px) {
  .page-template-home section {
    overflow: hidden;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1100px) {
  .page-template-home .welcome-to-maruyama-sec .row .col:nth-child(2) .pos-img {
    right: -4%;
  }
  .page-template-home .welcome-to-maruyama-sec .row .col:nth-child(2) div img:first-child {
    width: 407px;
  }
  .page-template-home .ground-breaking {
    padding: 72px 0px;
  }
  .ground-breaking .row .col {
    width: 100%;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1260px) {
  .page-template-home .ground-breaking .row .col {
    width: auto;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1050px) {
  .home-product .dxlogo-bx img {
    width: 345px;
    height: auto;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1260px) {
  .page-template-home .container,
  .page-template-about-us .container{
    max-width: calc(100% - 48px);
  }
  .page-template-home .ground-breaking {
    padding: 72px 0;
  }
  .home-product .dxlogo-bx {
    padding: 40px;
  }
  .page-template-home .better-tomorrow {
    padding: 80px 0px 64px; 
  }
  .page-template-home .our-product {
    padding: 0;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1024px) {
  .page-template-home .welcome-to-maruyama-sec .row .col:nth-child(2) .pos-img {
    right: 28%;
  }
  .page-template-home .welcome-to-maruyama-sec .bottom-pos-banner {
    top: 19%;
  }
}
@media only screen and (min-width: 440px) and (max-width: 640px) {
  .page-template-our-product .ope-sec .container .row.ope-zoom-animation {
    max-width: 408px;
    margin-inline: auto;
  }
  .page-template-our-product .ope-sec .row:nth-child(3) {
   padding: 0 24px;
   row-gap: 8px; 
  }
}
@media only screen and (min-width: 360px) and (max-width: 1024px) {
  .yield-efficiency .tab-content .row .col .card img, .yield-efficiency .sliderContent .row .col .card img {
    object-fit: contain;
  }
}
@media only screen and (min-width: 641px) and (max-width: 1024px) {
  .page-template-our-product .ope-sec .row.ope-zoom-animation {
    max-width: calc(100% - 120px);
    margin-inline: auto;
  }
  .page-template-our-product .ope-sec .row:nth-child(3) {
    padding: 0 24px;
    row-gap: 8px; 
    flex-direction: column;
  }
  .page-template-our-product .ope-sec .row.ope-zoom-animation .col:first-child {
    margin-left: 0;
  }
  .page-template-our-product .yield-efficiency .tab-content .row .col .card img, 
  .page-template-our-product .yield-efficiency .sliderContent .row .col .card img{
    object-fit: contain;
    width: 100%;
  }

  .page-template-our-product .yield-efficiency .content h2 {
    width: auto !important;
   }
}
@media only screen and (min-width: 641px) and (max-width: 767px) {
  .page-template-our-product .water-reivented .row .col:nth-child(2) img:nth-child(1),
  .page-template-mufe-range .water-reivented .row .col:nth-child(2) img:nth-child(1) {
    width: 200.305px;
    height: 200.305px;
   }
   .page-template-our-product .water-reivented .row .col:nth-child(2) img:nth-child(2),
   .page-template-mufe-range .water-reivented .row .col:nth-child(2) img:nth-child(2) {
    width: 130px;
    height: 130px;
    right: 5px;
    top: 15px;
   }
   .page-template-our-product .water-reivented .row .col:nth-child(2) img:nth-child(3),
   .page-template-mufe-range .water-reivented .row .col:nth-child(2) img:nth-child(3) {
    width: 131.831px;
    height: 131.831px;
    right: 15%;
    top: 127px;
   }
   .page-template-our-product .ope-sec:before {
    background-size: cover;
   }
   .page-template-our-product .yield-efficiency .tab-content .row .col .card img, .page-template-our-product .yield-efficiency .sliderContent .row .col .card img {
    width: auto;
   }
}
@media only screen and (min-width: 992px) and (max-width: 1024px) {
  .page-template-mufe-range .water-reivented .row .col:nth-child(2), 
  .page-template-our-product .water-reivented .row .col:nth-child(2),
  .page-template-mufe-range .water-reivented .row .col:nth-child(1), 
  .page-template-our-product .water-reivented .row .col:nth-child(1) {
    width: 50% !important;
  }
  .page-template-mufe-range .water-reivented .row .col:nth-child(2) img:nth-child(2),
  .page-template-our-product .water-reivented .row .col:nth-child(2) img:nth-child(2) {
    top: -25%;
  }
}
@media only screen and (min-width: 1025px) {
  .page-template-our-product section,
  .page-template-mufe-range section,
  .page-template-ope-range section,
  .page-template-careers section,
  .page-template-solution section,
  .page-template-innovation-sustainability section,
  .page-template-company-histroy section,
  .page-template-home section {
    overflow: hidden;
  }
  .page-template-mufe-range .mufb-main video {
    height: 100%;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1260px) {  
  .page-template-our-product .container,
  .page-template-mufe-range .container,
  .page-template-ope-range .container,
  .page-template-location-information .container,
  .page-template-news .container,
  .page-template-innovation-sustainability .container,
  .page-template-careers .container,
  .page-template-solution .container,
  .page-template-gallery .container,
  .page-template-company-histroy .container,
  .page-template-privacy-policy .container,
  .page-template-terms-and-conditions .container,
  .single-post.single-format-standard .container {
    max-width: calc(100% - 48px);
  }
  .page-template-mufe-range .water-reivented .row .col:nth-child(2) img:nth-child(1), 
  .page-template-our-product .water-reivented .row .col:nth-child(2) img:nth-child(1) {
    width: 290px;   
  }
  .page-template-our-product .water-reivented .row .col:nth-child(2) img:nth-child(2), 
  .page-template-our-product .water-reivented .row .col:nth-child(2) img:nth-child(3) {
    right: 0%;
  }
  .water-reivented .row .col:nth-child(2) img:nth-child(2) {
    top: -25%;
  }
  .page-template-mufe-range .water-reivented .row .col:nth-child(2), 
  .page-template-our-product .water-reivented .row .col:nth-child(2) {
    width: 50%;
    margin: auto;
  }
  .page-template-our-product .water-reivented .row .col:nth-child(1) {
    width: 50%;
  }
  .page-template-our-product .yield-efficiency .row .col {
    width: 31%;
  }
	.page-template-our-product .yield-efficiency .content-1 .row .col {
		width: 48%;
	}
	.page-template-our-product .yield-efficiency .tab-content .row .col .card img, .yield-efficiency .sliderContent .row .col .card img{
		width: 100%;
	}
}
@media only screen and (min-width: 1170px) and (max-width: 1260px) {
  .page-template-mufe-range .water-reivented .row .col:nth-child(2), 
  .page-template-our-product .water-reivented .row .col:nth-child(2) {
    width: 43%;
  }
  .water-reivented .row .col:nth-child(1) {
    width: 57%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1260px) {
  .page-template-mufe-range .water-reivented .row .col:nth-child(2), 
  .page-template-our-product .water-reivented .row .col:nth-child(2) {
    width: 40%;
  }
  .water-reivented .row .col:nth-child(1) {
    width: 60%;
  }
}
@media screen and (min-width: 641px) and (max-width: 767px) {
  .page-template-our-product .home-product .buttom-box,
  .page-template-mufe-range .home-product .buttom-box,
  .page-template-ope-range .home-product .buttom-box,
  .page-template-location-information .home-product .buttom-box {
    border-radius: 80px 80px 0 80px;
  }
  .page-template-our-product .home-product .buttom-box .catlogbox-lft-svg,
  .page-template-mufe-range .home-product .buttom-box .catlogbox-lft-svg,
  .page-template-ope-range .home-product .buttom-box .catlogbox-lft-svg,
  .page-template-location-information .home-product .buttom-box .catlogbox-lft-svg {
    left: 0;
    right: 0;
    top: 42px;
    position: relative;
  }
  .page-template-our-product .home-product .buttom-box svg,
  .page-template-mufe-range .home-product .buttom-box svg,
  .page-template-ope-range .home-product .buttom-box svg,
  .page-template-location-information .home-product .buttom-box svg {
    width: 47.253px;
    height: 47.998px;
  }
  .page-template-our-product .home-product .buttom-box .catlogbox-lft-svg svg,
  .page-template-mufe-range .home-product .buttom-box .catlogbox-lft-svg svg,
  .page-template-ope-range .home-product .buttom-box .catlogbox-lft-svg svg,
  .page-template-location-information .home-product .buttom-box .catlogbox-lft-svg svg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 64px;
    height: 64px;
  }
  .page-template-our-product .home-product .buttom-box .catlogbox-lft-svg,
  .page-template-mufe-range .home-product .buttom-box .catlogbox-lft-svg,
  .page-template-ope-range .home-product .buttom-box .catlogbox-lft-svg,
  .page-template-location-information .home-product .buttom-box .catlogbox-lft-svg {
    left: 28px;
    right: 0;
    top: 0;
    display: block;
    height: 100%;
  }
  .page-template-our-product .home-product .buttom-box div:nth-child(2),
  .page-template-mufe-range .home-product .buttom-box div:nth-child(2),
  .page-template-ope-range .home-product .buttom-box div:nth-child(2),
  .page-template-location-information .home-product .buttom-box div:nth-child(2) {
    width: 80%;
    margin: auto;
  }
  .page-template-our-product .home-product .buttom-box div h4,
  .page-template-mufe-range .home-product .buttom-box div h4,
  .page-template-ope-range .home-product .buttom-box div h4,
  .page-template-location-information .home-product .buttom-box div h4 {
    font-size: 24px;
  }
  .page-template-our-product .home-product .buttom-box .catlogbox-rght-svg,
  .page-template-mufe-range .home-product .buttom-box .catlogbox-rght-svg,
  .page-template-ope-range .home-product .buttom-box .catlogbox-rght-svg,
  .page-template-location-information .home-product .buttom-box .catlogbox-rght-svg {
    display: block;
    text-align: right;
    height: 100%;
    top: 0;
    width: 86%;
  }
  .page-template-our-product .home-product .buttom-box .catlogbox-rght-svg svg,
  .page-template-mufe-range .home-product .buttom-box .catlogbox-rght-svg svg,
  .page-template-ope-range .home-product .buttom-box .catlogbox-rght-svg svg,
  .page-template-location-information .home-product .buttom-box .catlogbox-rght-svg svg{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 64px;
    height: 64px;
  }
  .page-template-mufe-range .loexpo-info,
  .page-template-ope-range .loexpo-info,
  .page-template-location-information .loexpo-info {
    padding: 48px 24px !important;
  }
  .page-template-our-product .about-inclusive-feature .row {
    flex-direction: column;
  }
  .page-template-mufe-range .mufb-main video {
    height: 100%;
  }
  .page-template-our-product .ourproduct-whychoose .row .col:nth-child(2) ul li {
    width: 100%;
  }
  .page-template-our-product .about-inclusive-feature .row .col:nth-child(2) {
    width: 100%;
  }
  .page-template-mufe-range .maruyama-advantages .row {
    flex-direction: column;
  }
  .page-template-mufe-range .maruyama-advantages.mufb-tech .row .col {
    width: 100%;
  }
  .page-template-mufe-range .our-mufb-pro .row {
    flex-direction: column;
  }
  .page-template-mufe-range .our-mufb-pro .row {
    row-gap: 32px;
    margin-bottom: 40px;
  }
  .page-template-mufe-range .our-mufb-pro .row:nth-child(even) {
    flex-direction: column-reverse;
  }
  .page-template-mufe-range .our-mufb-pro .row .col {
    width: 100%;
  }
  .page-template-ope-range .take-next .content p {
    width: 100%;
  }
  .page-template-ope-range .maruyama-advantages.demand-more .row {
    flex-direction: column;
  }
  .page-template-ope-range .maruyama-advantages .row .col {
    width: 100%;
  }
  .page-template-location-information .find-a-dealer .row {
    justify-content: center;
  }
  .page-template-location-information .feature-together .row {
    flex-direction: column;
  }
  .page-template-location-information .about-inclusive-feature .row .col:nth-child(1) {
    width: 100%;
  }
  .page-template-location-information .about-inclusive-feature .row .col:nth-child(2) {
    width: 100%;
  }
  .page-template-location-information .our-offices-factories .row.main-row {
    height: auto;
    flex-direction: column-reverse;
    flex-wrap: nowrap;
  }
  .page-template-location-information .career-opportunities .main-row .col {
    width: 100%;
  }
  .page-template-location-information .career-opportunities .main-row .col:nth-child(1) {
    padding: 0 24px 0;
    cursor: pointer;
    width: 100% !important;
    position: relative;
    float: none;
    height: auto;
  }
  .page-template-location-information .our-offices-factories #map {
    height: 310px;
  }
  .page-template-location-information .our-offices-factories .fix-bottom {
    padding: 8px 24px;
    flex-wrap: nowrap;
    right: 0;
    gap: 3px;
    width: auto;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .page-template-location-information .our-offices-factories .fix-bottom {
    bottom: -24px;
  }
}
@media screen and (min-width: 625px) and (max-width: 640px) {
  .page-template-location-information .our-offices-factories .fix-bottom {
    bottom: -24px;
  }
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .product-line-up .line-up-explo .tab-content .row .col svg {
    width: 50px;
    top: -5px;
    left: -2px;
    height: auto;
  }
  .product-line-up .line-up-explo .tab-content .row .col:last-child {
    margin-top: 24px;
  }
  .page-template-home .latest-news::before {
    top: 80px !important;
  }
  .page-template-location-information .getin-touch .row .col form {
    justify-content: space-between;
  }
}
@media screen and (min-width: 641px) and (max-width: 992px) {
  .page-template-mufe-range .pink-box,
  .page-template-ope-range .pink-box {
    column-gap: 40px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1260px) {
  .page-template-mufe-range .water-reivented .row .col:nth-child(2) img:nth-child(1) {
    width: 72%;
    height: auto;
  } 
  .page-template-mufe-range .water-reivented .row .col:nth-child(1) h2 span {
    display: inline-block;
  }
  .page-template-mufe-range .water-reivented .row .col:nth-child(2) img:nth-child(2) {
    right: 15px;
    top: -15%;
    width: 236px;
    height: auto;
  }
}
@media screen and (min-width: 1024px) {
  .page-template-mufe-range  .our-mufb-pro .row .col img:first-child {
    width: 100%;
  }
  .page-template-ope-range .product-line-up .line-up-explo .product-swiper {
    max-height: 620px;
  }
  .page-template-location-information .getin-touch .row .col:nth-child(2) form .col:nth-last-child(3), 
  .page-template-location-information .getin-touch .row .col:nth-child(2) form .col:nth-last-child(4) {
    width: 100% !important;
  }
  .page-template-location-information .getin-touch .row .col form {
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  .page-template-about-us .aboutus-mission .row .col {
    width: 50% !important;
  }
  .page-template-location-information .our-offices-factories .fix-bottom {
    padding: 8px 24px;
    flex-wrap: nowrap;
    right: 0;
    gap: 3px;
    width: auto;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .page-template-location-information .our-offices-factories .fix-bottom {
    bottom: -24px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1023px) {
  .page-template-about-us .our-gallery-about .container .row .col:nth-child(1) {
    width: 100%;
  }
  .page-template-about-us .our-gallery-about .container .row .col:nth-child(2) {
    display: none;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1260px) {
  .career-down-arrow {
    margin-left: -74px;
    bottom: 0;
  }
}
@media screen and (min-width: 1366px) {
  .page-template-location-information .our-offices-factories .fix-bottom {
    width: 30%;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}
footer .row {
  grid-template-columns: 164px 182px 350px;
}
footer .container .row .col:nth-child(1) div.contact-information .title {
  display: block !important;
  text-align: left;
  font-weight: 700;
  padding-top: 10px;
  color: #C4131C;
  margin-top: 90px;
  margin-bottom: 30px;
}
footer .row .col div.contact-form__footer {
  display: block !important;
  padding: 0;
  width: auto;
  border: none;
}
footer .container .row .col:nth-child(3) div.contact-information .country p {
  width: 100%;
}
footer .container .row .col:nth-child(3) div.contact-information p {
  margin: 0 0 24px !important;
}
footer .row .col div.contact-form__footer .col input::placeholder, footer .row .col div.contact-form__footer .col textarea::placeholder, footer .row .col div.contact-form__footer .col select::placeholder {
  color: #4A4748;
  opacity: 1;
}
footer .row .col div.contact-form__footer .learnmore {
  margin: 8px 0;
}
footer .row .col div.contact-form__footer .col.privary p {
  display: grid;
  gap: 8px;
  align-items: baseline;
  margin-bottom: 16px !important;
  grid-template-columns: 15px auto;
}
@media screen and (max-width: 768px) {
  footer .row .col div.contact-form__footer .col p span, 
  footer .row .col div.contact-form__footer .col p a, 
  .getin-touch .row .col:nth-child(2) form .col.privary p span, 
  .getin-touch .row .col:nth-child(2) form .col.privary p a {
    font-size: 14px;
  }
  footer form#contact_form__footer .col select.form-control {
    width: 100%;
  }
  footer .row .col div.contact-form__footer .learnmore input[type="submit"] {
    padding-left: 16px;
    min-width: 135px;
    max-width: fit-content;
  }
}
@media screen and (min-width: 641px) and (max-width: 767px) {
  footer .container .row .col:nth-child(3) div.contact-information p {
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  footer form#contact_form__footer .col select.form-control,
  footer .container .row .col:nth-child(3) div.contact-information p {
    width: 100%;
  }
  footer .row .col div.contact-form__footer .learnmore input[type="submit"] {
    padding-left: 16px;
    max-width: 135px;
  }
}
@media screen and (min-width: 260px) and (max-width: 640px) {
  .page-template-news .insights-blogs .prev {
    right: calc(100vw - 45%);
  }
  .page-template-news .insights-blogs .next {
    left: calc(100vw - 45%);
  }  
}
@media screen and (min-width: 641px) and (max-width: 740px) {
  .page-template-news .insights-blogs .next {
    right: 3%;
  }
  .page-template-news .insights-blogs .prev {
    right: 100px;
  }
}
@media screen and (min-width: 641px) and (max-width: 767px) {
  .page-template-news .missan-update .content h2 {
    font-size: 40px;
  }
  .page-template-news .missan-update .content {
    width: 100%;
    margin-bottom: 0;
  }
  .page-template-news .celebrating-years .player video, 
  .page-template-news .celebrating-years .player iframe {
    width: 100%;
  }
  .page-template-news .press-releases.rightshadow::before,
  .page-template-news .press-releases.leftshadow::before {
    display: none; 
  }
  .page-template-news .featured-media {
    border-radius: 0;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1179px) {
  .page-template-news .missan-update .content {
    width: 100%;
  }
}
@media screen and (min-width: 1179px) {
  .page-template-news .missan-update .content {
    margin-bottom: 0;
  }
  .page-template-home .our-product .row .col .learnmore {
    justify-content: center;
  }
}
@media screen and (max-width: 1024px) {
  .page-template-news .whats-next svg {
    display: block;
  }
}
@media screen and (min-width: 460px) and (max-width: 640px) {
  .page-template-news .celebrating-years .player iframe {
    height: 298px;
  }
}
@media screen and (min-width: 320px) and (max-width: 640px) {
  .page-template-news .press-releases .content h2 {
    margin-bottom: 9px;
  }
}
@media screen and (min-width: 641px) and (max-width: 767px) {
  .page-template-news .press-releases .content h2 {
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 577px) and (max-width: 767px) {
  .page-template-news .latest-news .news-slider .swiper-pagination-1 {
    top: 24px;
    position: relative;
    display: block !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 819px) {
  .page-template-news .missan-update .content {
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .page-template-news .missan-update .content h2 {
    max-width: 512px;
    margin: 0 auto 24px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1280px) {
  .page-template-news .missan-update .content h2 {
    max-width: 740px;
    margin-inline: auto;
  }
  .page-template-home .better-tomorrow .row {
    display: grid;
    grid-template-columns: 48% 48%;
    column-gap: 40px;
    justify-content: space-between;
  }
  .page-template-home .better-tomorrow .row .col:nth-child(2) img {
    width: 100%;
  }
  .page-template-home .our-product {
    padding: 80px 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .page-template-news .featured-media {
    border-radius: 0;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1024px) {
  .page-template-home .better-tomorrow {
    padding-top: 259px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1023px) {
   .page-template-solution .our-mufb-pro.trilored-solution {
    max-width: calc(100% - 160px);
    margin-left: auto;
    margin-right: auto;
  }
}


/** Ananth Code */
@media screen and (min-width:640px) and (max-width:991px){
  .aboutus-main .content h1{
    font-size: 48px;
    line-height: 56px;
  }
}
@media screen and (min-width:640px) and (max-width:768px){
  .page-template-news .news-main .content h1{ max-width: 100%; }
  .page-template-solution section.our-mufb-pro.trilored-solution .row{
    flex-direction: column-reverse;
    row-gap: 48px;
  }
  .page-template-solution section.our-mufb-pro.trilored-solution .row .col{
    width: 100%;
  }
  .page-template-solution section.our-mufb-pro.trilored-solution .row .col:nth-child(1) ul li img,
    .page-template-solution section.our-mufb-pro.trilored-solution .row:nth-child(3) .col:nth-child(2) ul li img{
    width: auto;
  }
  .page-template-solution section.our-mufb-pro.trilored-solution .row:nth-child(3){
    flex-direction: column;
  }
  .page-template-solution section.our-mufb-pro.trilored-solution .row:nth-child(2),
  .page-template-solution section.our-mufb-pro.trilored-solution .row:nth-child(3){
    margin-bottom: 16px;
  }
}
@media screen and (min-width:1025px) and (max-width:1078px){
  .page-template-news .news-main .content h1{ max-width: 100%; }
}
@media screen and (min-width:375px) and (max-width:640px){
  .page-template-solution .our-mufb-pro .flip-animation h2 {
    margin-bottom: 24px;
  }
}
@media screen and (min-width:641px) and (max-width:1024px){
  .page-template-solution .our-mufb-pro .flip-animation h2 {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width:768px) and (max-width:1024px) {
  .page-template-solution .trilored-solution .row{
    margin-bottom: 48px;
  }
}
@media only screen and (min-width:1025px){
  .page-template-solution .trilored-solution .row:nth-child(2),
  .page-template-solution .trilored-solution .row:nth-child(3){
    margin-bottom: 48px;
    align-items: flex-start;
  }
  .page-template-solution .trilored-solution .row .col ul li:nth-child(2) {
    padding-bottom: 0;
  }
}
@media screen and (min-width:449px) and (max-width:552px){
  .page-template-solution .save-crops .maruyama-before-slider .swiper-wrapper .swiper-slide .card:nth-child(2) h3 {
    bottom: 28px;
  }
}
@media screen and (min-width:553px) and (max-width:640px){
  .page-template-solution .save-crops .maruyama-before-slider .swiper-wrapper .swiper-slide .card:nth-child(2) h3 {
    bottom: 28px;
  }
  .page-template-solution .save-crops .maruyama-before-slider .card{
    width: auto;
  }
  .page-template-solution .save-crops .maruyama-before-slider .card:nth-child(2) .card-body p{
    margin-top: 10px;
  }
}
@media screen and (min-width:384px) and (max-width:460px){
  .page-template-solution .real-result-field .sliderTab .swiper-slide:nth-child(1){
    height: auto; 
  }  
  .page-template-solution .yield-efficiency .swiper-wrapper .on a h4{
    height: 100%;
  }
}  
@media screen and (min-width:577px) and (max-width:767px){
  .page-template-solution .yield-efficiency .swiper-wrapper .on a h4{
    width: auto;
  }
}
@media screen and (min-width:640px) and (max-width:767px){
  .page-template-solution section.yield-efficiency.career-opportunities.real-result-field .sliderContent .row{
    flex-direction: column;
    gap: 32px;
  }
  .page-template-solution section.yield-efficiency.career-opportunities.real-result-field .sliderContent .row .col,
  .page-template-solution section.yield-efficiency.career-opportunities.real-result-field .content h2{
    width: 100%;
  }
}
@media screen and (min-width:1025px) and (max-width:1200px){
  .page-template-solution .career-opportunities .sliderTab .swiper-slide{
    height: auto;
  }
  .page-template-solution section.yield-efficiency.career-opportunities.real-result-field .on h4, .page-template-solution .real-result-field .sliderTab .swiper-slide h4{
    height: 100%;
  }
}
@media screen and (min-width:641px) and (max-width:767px){
  .page-template-solution .save-crops .maruyama-before-slider .swiper-slide{
    flex-direction: column;
  }
  .page-template-solution .save-crops .maruyama-before-slider .card{
    width: auto;
  }
  .page-template-solution .save-crops .maruyama-before-slider .swiper-slide .card:nth-child(1) .card-body{
    position: absolute;
    top: 35px;
    width: 100%;
  }
  .page-template-solution .save-crops .maruyama-before-slider .card:nth-child(odd) img {
    margin-top: 15%;
  }
  .page-template-solution .save-crops .maruyama-before-slider .swiper-wrapper .swiper-slide .card:nth-child(2) h3{
    bottom: 68px;
    position: absolute;
    text-align: center;
    width: 100%;
  }
  .page-template-solution .save-crops .maruyama-before-slider .swiper-slide .card:nth-child(2) .card-body{
    margin-top: 7%;
  }
}
@media screen and (min-width:280px) and (max-width:329px){
  .page-template-solution .save-crops .maruyama-before-slider .swiper-wrapper .swiper-slide .card:nth-child(2) h3 {
    bottom: 69px;
  }
}
@media screen and (min-width:280px) and (max-width:640px){
  .page-template-innovation-sustainability .relentless-sec .content{
    margin-bottom: 16px;
  }
}
@media screen and (min-width:640px) and (max-width:991px){
  .page-template-innovation-sustainability .relentless-sec .content{
    margin-bottom: 32px;
  }
}
@media screen and (min-width:991px){
  .page-template-innovation-sustainability .relentless-sec .content{
    margin-bottom: 56px;
  }
}
@media screen and (min-width:641px){
  .page-template-innovation-sustainability .relentless-sec .row .col ul{
    grid-template-columns: 50% 45%;
  }
}
@media screen and (min-width:1024px){
  .page-template-innovation-sustainability section{
    overflow: hidden;
  }
}
@media screen and (min-width:641px) and (max-width:991px){
  .page-template-innovation-sustainability .purposeful-innovation .row .col h2{
    font-size: 32px;
    line-height: 42px;
  }
}
@media screen and (min-width:696px) and (max-width:767px){
  .page-template-innovation-sustainability .purposeful-innovation .row .box h3{
    z-index: -1;
  }
}
@media screen and (min-width:641px) and (max-width:767px){
  .page-template-innovation-sustainability .res-innovation-everystep .row{
    flex-direction: column;
    row-gap: 40px;
  }
  .page-template-innovation-sustainability .res-innovation-everystep ul{
    row-gap: 32px;
  }
  .page-template-innovation-sustainability .res-innovation-everystep ul li h5{
    margin-bottom: 8px;
  }
  .page-template-innovation-sustainability .res-innovation-everystep .row .col:nth-child(1) p{
    width: auto;
  }
  .page-template-innovation-sustainability .res-innovation-everystep .row .col h2{
    margin-bottom: 16px;
  }
}
@media screen and (min-width:1024px) and (max-width:1200px){
  .page-template-innovation-sustainability .res-innovation-everystep .row .col h2{
    width: 80%;
  }
}
@media screen and (min-width:577px) and (max-width:640px){
  .page-template-innovation-sustainability .greener-tomorrow .row .col h5 {
    width: auto;
  }
}
@media screen and (min-width:1025px) and (max-width:1167px){
  .page-template-innovation-sustainability .greener-tomorrow .row .col{
    width: 25%;
  }
}
@media screen and (min-width:676px) and (max-width:767px){
  .page-template-innovation-sustainability .feature-vision .before-svg{
    top: 62%;
    left: inherit;
    right: 0;
    z-index: -1;
  }
}
@media screen and (min-width:641px) and (max-width:675px){
  .page-template-innovation-sustainability .feature-vision .before-svg{ 
    top: 59%; 
    left: inherit;
    right: 0;
    z-index: -1;
  }
}
@media screen and (min-width:628px) and (max-width:640px){
  .page-template-innovation-sustainability .feature-vision .before-svg{ 
    top: 65%; 
    left: inherit;
    right: 0;
    z-index: -1;
  }
}
@media screen and (min-width:604px) and (max-width:628px){
  .page-template-innovation-sustainability .feature-vision .before-svg{ top: 65%; }
}
@media screen and (min-width:577px) and (max-width:604px){
  .page-template-innovation-sustainability .feature-vision .before-svg{ top: 63%; }
}
@media screen and (min-width:546px) and (max-width:576px){
  .page-template-innovation-sustainability .feature-vision .before-svg{ top: 61%; }
}
@media screen and (min-width:516px) and (max-width:545px){
  .page-template-innovation-sustainability .feature-vision .before-svg{ top: 59%; }
} 
@media screen and (min-width:486px) and (max-width:515px){
  .page-template-innovation-sustainability .feature-vision .before-svg{ top: 57%; }
}
@media screen and (min-width:456px) and (max-width:485px){
  .page-template-innovation-sustainability .feature-vision .before-svg{ top: 55%; }
}
@media screen and (min-width:426px) and (max-width:455px){
  .page-template-innovation-sustainability .feature-vision .before-svg{ top: 53%; }
}
@media screen and (min-width:364px) and (max-width:380px){
  .page-template-innovation-sustainability .feature-vision .before-svg{ top: 46%; }
}
@media screen and (min-width:381px) and (max-width:396px){
  .page-template-innovation-sustainability .feature-vision .before-svg{ top: 46%; }
}
@media screen and (min-width:347px) and (max-width:363px){
  .page-template-innovation-sustainability .feature-vision .before-svg{ top: 43%; }
}
@media screen and (min-width:326px) and (max-width:346px){
  .page-template-innovation-sustainability .feature-vision .before-svg{ top: 41%; }
}
@media only screen and (min-width:640px){
  .page-template-innovation-sustainability .feature-vision{
    padding-bottom: 80px;
  }
  .page-template-innovation-sustainability .feature-vision img{
    margin-bottom: 80px;
  }
}
@media screen and (min-width:640px) and (max-width:991px){
  .page-template-innovation-sustainability section.about-inclusive-feature.whats-next.take-next.join-moment .content h2{
    font-size: 48px;
    margin-bottom: 30px;
  }
  .page-template-innovation-sustainability section.about-inclusive-feature.whats-next.take-next.join-moment .content h6{
    font-size: 16px;
  }
  .page-template-innovation-sustainability section.about-inclusive-feature.whats-next.take-next.join-moment .content h5{
    font-size: 18px;
  }
}
@media screen and (min-width:641px) and (max-width:1100px){
  .page-template-innovation-sustainability .greener-tomorrow{
    padding-top: 0;
  }
}
@media screen and (min-width:641px) and (max-width:991px){
  .page-template-innovation-sustainability .feature-vision{
    padding-bottom: 56px;
  }
  .page-template-innovation-sustainability .feature-vision img{
    margin-bottom: 56px;
  }
}  
@media screen and (min-width: 992px) and (max-width: 1023px){
  .page-template-careers section.our-president.about-president.career-president .row .col:nth-child(1) .justify-end{
    width: 95%;
  }
} 
@media screen and (min-width: 1101px) and (max-width: 1199px){
  .page-template-careers section.our-president.about-president.career-president .row .col:nth-child(1) .justify-end{
    width: 88%;
  }
} 
@media screen and (min-width: 1025px) and (max-width: 1030px){
  .page-template-careers section.our-president.about-president.career-president .row .col:nth-child(2) div::before{
    left: -3%;
  }
} 
@media screen and (min-width: 640px) and (max-width: 767px){
  .page-template-careers section.our-president.about-president.career-president .row{
    flex-direction: column-reverse;
    margin-top: 12%;
  }
  .page-template-careers section.our-president.about-president.career-president .row .col{
    width: 100% !important;
  } 
  .page-template-careers section.our-president.about-president.career-president .row .col:nth-child(1) h2{
    position: absolute;
    right: 0;
    left: 0;
    top: -32rem;
  }
  .page-template-careers section.our-president.about-president.career-president .row .col:nth-child(2) div::before{
    width: 420px;
    height: 420px;
    top: 5px;
    left: 10%;
  }
  .page-template-careers section.our-president.about-president.career-president .row .col:nth-child(1) .justify-end{
    margin-bottom: 16px;
  }
  .page-template-careers section.our-president.about-president.career-president .row .col:nth-child(1) p{
    margin-bottom: 0;
  }
}
@media screen and (min-width:538px) and (max-width:640px){
  .page-template-careers section.our-president.about-president.career-president {
    padding-top: 48px;
  }
  .page-template-careers section.our-president.about-president.career-president .row .col:nth-child(2) div::before{
    left: 8%;
  }
  .page-template-careers section.our-president.about-president.career-president .row .col:nth-child(1) h2{
    top: -515px;
    font-size: 32px;
  }
  .page-template-careers section.our-president.about-president.career-president .row{
    margin-top: 12%;
  }
}
@media screen and (min-width:464px) and (max-width:537px){
  .page-template-careers section.our-president.about-president.career-president .row .col:nth-child(1) h2{
    top: -515px;
  }
}
@media screen and (min-width:421px) and (max-width:463px){
  .page-template-careers section.our-president.about-president.career-president .row .col:nth-child(1) h2{
    top: -505px;
  }
}
@media screen and (min-width:320px) and (max-width:359px){
  .page-template-careers section.our-president.about-president.career-president .row .col:nth-child(1) h2{
    top: -398px;
  }
}
@media screen and (min-width:1112px) and (max-width:1164px){
  .page-template-careers section.about-inclusive-feature.whychoose-maruyama.skw-animation .row{
    grid-template-columns: 315px auto 330px;
  }
}
@media screen and (min-width:1100px) and (max-width:1111px){
  .page-template-careers section.about-inclusive-feature.whychoose-maruyama.skw-animation .row{
    grid-template-columns: 305px auto 300px;
  }
}
@media screen and (min-width:992px) and (max-width:1100px){
  .page-template-careers section.about-inclusive-feature.whychoose-maruyama.skw-animation .row{
    display: flex;
    flex-wrap: wrap;
    row-gap: 48px;
  }
  .page-template-careers section.about-inclusive-feature.whychoose-maruyama.skw-animation .row .col:nth-child(1){
    width: 45%;
  }
  .page-template-careers section.about-inclusive-feature.whychoose-maruyama.skw-animation .row .col:nth-child(2){
    width: 48%;
  }
}
@media screen and (min-width:1024px) and (max-width:1100px){
  .page-template-careers section.about-inclusive-feature.whychoose-maruyama.skw-animation .row .col:nth-child(3) ul li{
    text-align: center;
  }
}
@media screen and (min-width:992px) and (max-width:1024px){
  .page-template-careers section.about-inclusive-feature.whychoose-maruyama.skw-animation .row .col:nth-child(3){
    width: 100% !important;
  }
  .page-template-careers section.about-inclusive-feature.whychoose-maruyama.skw-animation .row .col:nth-child(3) ul{
    flex-direction: row;
  }
  .page-template-careers section.about-inclusive-feature.whychoose-maruyama.skw-animation .row .col:nth-child(3) ul li{
    width: 100%;
  }
  .page-template-careers section.about-inclusive-feature.whychoose-maruyama.skw-animation .row .col:nth-child(3) ul li:nth-child(1) {
    border: none;
  }
}  
@media screen and (min-width:768px) and (max-width:991px){
  .page-template-careers section.about-inclusive-feature.whychoose-maruyama.skw-animation .row .col:nth-child(3) ul li{
    width: 100%;
  }
  .page-template-careers section.about-inclusive-feature.whychoose-maruyama.skw-animation .row .col:nth-child(3) ul li:nth-child(1) {
    border: none;
  }
}
@media screen and (min-width:641px) and (max-width:767px){
  .page-template-careers section.about-inclusive-feature.whychoose-maruyama.skw-animation .row .col:nth-child(1){
    width: 60% !important;
  }
  .page-template-careers section.about-inclusive-feature.whychoose-maruyama.skw-animation .row .col:nth-child(3){
    width: 100%;
  }
}
@media screen and (min-width:1106px) and (max-width:1131px){
  .page-template-careers section.latest-news.bg-white.sustainability-action.carrer-growth .row:nth-child(1) .col:nth-child(1){
    width: 43%;
  }
  .page-template-careers section.latest-news.bg-white.sustainability-action.carrer-growth .row:nth-child(1) .col:nth-child(2){
    width: 528px;
  }
}
@media screen and (min-width:641px) and (max-width:1105px){
  .page-template-careers section.latest-news.bg-white.sustainability-action.carrer-growth .row:nth-child(1) .col:nth-child(1) h2{
    font-size:32px;
    line-height:42px;
  }
} 
@media screen and (min-width:992px) and (max-width:1105px){
  .page-template-careers section.latest-news.bg-white.sustainability-action.carrer-growth .row:nth-child(1){
    align-items: flex-start;
  }
  .page-template-careers section.latest-news.bg-white.sustainability-action.carrer-growth .row:nth-child(1) .col:nth-child(1){
    width: 48%;
  }
  .page-template-careers section.latest-news.bg-white.sustainability-action.carrer-growth .row:nth-child(1) .col:nth-child(2){
    width: 516px;
  }
}
@media screen and (min-width:1100px){
  .page-template-careers section.latest-news.bg-white.sustainability-action.carrer-growth .row:nth-child(1){
    align-items: center;
  }
}
@media screen and (min-width:992px){
  .page-template-careers section.latest-news.bg-white.sustainability-action.carrer-growth .row:nth-child(1){
    margin-bottom: 56px;
  }
}
@media screen and (min-width:641px) and (max-width:991px){
  .page-template-careers section.latest-news.bg-white.sustainability-action.carrer-growth .row:nth-child(1){
    margin-bottom: 40px;
  }
}
@media screen and (min-width:1101px) and (max-width:1199px){
  .page-template-careers section.latest-news.bg-white.sustainability-action.carrer-growth .card .card-body p{
    overflow: visible;
  }
}
@media screen and (min-width:1025px) and (max-width:1095px){
  .page-template-careers section.latest-news.bg-white.sustainability-action.carrer-growth .card .card-body {
    height: calc(205px + 24px);
  }
}
@media screen and (min-width:1024px){
  section.latest-news.bg-white.sustainability-action.carrer-growth{
    padding-top: 80px;
    padding-bottom: 24px;
  }
}
@media screen and (max-width:564px){
  .page-template-careers section.latest-news.bg-white.sustainability-action.carrer-growth .row:nth-child(1){
    align-items: flex-start;
  }
}
@media only screen and (min-width:992px) and (max-width:1023px){
  .page-template-careers section.latest-news.bg-white.sustainability-action.carrer-growth .sus-act-slide > .row.swiper-wrapper{
    margin-bottom: 20px;
  }
}
@media screen and (min-width:992px) and (max-width:1023px){
  .page-template-careers section.latest-news.bg-white.sustainability-action.carrer-growth .row .card .card-body {
    min-height: 180px;
  }
}
@media screen and (min-width:641px) and (max-width:991px){
  .page-template-careers .our-promise{
    padding: 56px 0;
  }
}
@media screen and (min-width:641px) and (max-width:767px){
  .page-template-careers .our-promise .content p{
    width:auto;
  }
  .page-template-careers .our-promise .content h2{
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 20px;
  }
  .page-template-careers .our-employees h2{
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 32px;
  }
  .page-template-solution section.our-mufb-pro.trilored-solution{
    padding-top: 56px;
    padding-bottom: 24px;
  }
  .page-template-solution section.our-mufb-pro.trilored-solution h2,
  .page-template-solution section.yield-efficiency.career-opportunities.real-result-field .content h2{
    font-size: 32px;
    line-height: 42px;
  }
}
@media screen and (min-width:528px) and (max-width: 640px) {
  .page-template-careers .our-promise .row .col {
    width: 30% !important;
  }
}
@media only screen and (max-width: 527px) {
  .page-template-careers .our-promise .row .col {
    width: 100% !important;
    text-align: center;
  }
  .page-template-careers .our-promise .row .col h5{
    width: 100%
  }
}
@media screen and (min-width:491px) and (max-width: 640px){
  .page-template-careers .our-employees .perfile{
    align-items: center;
  }
  .page-template-careers .our-employees .perfile img{
    height: auto;
  }
  .page-template-careers .our-employees .perfile div{
    width: 50%;
  }
}
@media screen and (min-width:641px) and (max-width: 992px){
  .page-template-home .latest-news::before {
    top: 155px !important;
    display: block !important;
  }
}
@media screen and (min-width:320px) and (max-width: 992px){
  .page-template-about-us .our-gallery-about .container .video-pagination {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1023px) and (max-width: 1300px) {
  .page-template-about-us .swiper-pagination-bullets.swiper-pagination-horizontal {
    margin-bottom: 0;
  }
}
@media screen and (min-width:641px) and (max-width: 1280px){
  section.privacy {
    margin: 64px auto 0;
  }
}
@media screen and (min-width:1181px) and (max-width: 1240px){
  .page-template-our-product .ope-sec .row.ope-zoom-animation {
    width: 90%;
    margin: 0 auto 40px;
  }
  .page-template-our-product .ope-sec .row.ope-zoom-animation .col:first-child {
    margin-left: 0;
  }
}
@media screen and (min-width:641px) and (max-width: 767px){
  .page-template-about-us .aboutus-global .row {
    flex-direction: column-reverse !important;
  }
  .page-template-about-us .aboutus-global .careers-at .row .col:nth-child(1) {
    padding: 43px 48px;
    width: 100%;
    border: none;
  }
  .page-template-about-us .aboutus-global .careers-at .row .col:nth-child(2),
  .page-template-about-us .ab-careerat.aboutus-global .row:nth-child(1) .col:nth-child(1),
  .page-template-about-us .careers-at .row .col:nth-child(2) {
    width: 100%;
  }
  .page-template-about-us .about-inclusive-feature .row .col ul {
    flex-direction: column;
  }
  .page-template-about-us .about-inclusive-feature .row .col:nth-child(3),
  .page-template-about-us .about-inclusive-feature .row .col ul li {
    width: 100%;
  }
  .page-template-careers .carrer-growth .row:nth-child(1) .col:nth-child(1) {
    width: 100%;
  }
  .page-template-home .ground-breaking .row .col {
    width: 100%;
  }
  .page-template-home .ground-breaking .row .col::before {
    height: 325px;
  }
  .page-template-about-us .about-the-leadership .swiper-pagination-team01,
  .page-template-about-us .about-the-leadership .swiper-pagination-team02 {
    margin-left: 24px;
  }
}
@media screen and (min-width:641px) and (max-width: 1024px){
  .hero-main .swiper-slide h1 {
    width: auto;
  }
}
@media screen and (min-width:641px) and (max-width: 1140px){
  .page-template-about-us .about-the-leadership .player.aos-animate::after, 
  .page-template-about-us .about-the-leadership .player.aos-animate::before {
    display: none;
  }
}
@media screen and (min-width:641px) and (max-width: 992px){
  .gallery-taps .overflw {
    overflow-x: scroll;
    width: 100%;
  }
  .gallery-taps .filter-group {
    width: 100%;
  }
  .gallery-taps nav .btn {
    text-wrap: nowrap;
  }
}
@media screen and (max-width: 1024px){
  .navmenu-1.active {
    display: block;
    overflow-y: scroll;
    height: calc(100% - 61px);
  }
}
@media screen and (min-width: 768px) and (max-width: 1230px){
  .page-template-home .our-product .row .col ul {
    max-width: 434px;
    height: 294px;
  }
  .page-template-home .our-product .row .col ul .resp-tab-item:nth-child(1) img {
    left: 59%;
    width: 275px !important;
  }
}
@media screen and (min-width: 1231px) and (max-width: 1260px){
  .page-template-home .our-product .row .col:nth-child(1) {
    width: 60%;
  }
  .page-template-home .our-product .row .col:nth-child(2) {
    width: 38%;
  } 
  .page-template-home .our-product .row {
    gap: 0;
  }
}
@media screen and (min-width: 641px) and (max-width: 1179px) {
  .page-template-about-us .about-the-leadership .swiper-wrapper .col:first-child {
    margin-left: 0;
  } 
  .page-template-about-us .about-the-leadership .team-slider-01,
  .page-template-about-us .about-the-leadership .team-slider-02 {
    margin-left: 24px;
    margin-right: 24px;
    overflow: hidden;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1260px) {
  .page-template-about-us .swiper-pagination-bullets.swiper-pagination-horizontal {
    margin-bottom: 36px;
  }
}
@media screen and (min-width: 1180px) and (max-width: 1200px) {
  .page-template-about-us .about-the-leadership .team-slider-02 .swiper-wrapper {
    justify-content: center;
  }
  .page-template-about-us .about-the-leadership .team-slider-01 .swiper-wrapper {
    column-gap: 0;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1279px) {
  .page-template-about-us .about-the-leadership .team-slider-01 {
    margin-left: 24px;
    margin-right: 24px;
  }
  .page-template-about-us .about-the-leadership .team-slider-01 .swiper-wrapper {
    justify-content: left;
    column-gap: 0;
  }
}
@media screen and (min-width: 1133px) and (max-width: 1199px) {
  .page-template-about-us .about-inclusive-feature.skw-animation .row .col:first-child {
    width: 30%;
  }
  .page-template-about-us .about-inclusive-feature.skw-animation .row .col:nth-child(3) {
    width: 40%;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1199px) {
  .page-template-about-us .our-gallery-about .container .row .col:nth-child(2) {
    width: auto; 
  }
  .page-template-about-us .sustainability-action .content h2 {
    margin-bottom: 16px;
  }
  .page-template-about-us .sustainability-action .content {
    margin-bottom: 36px;
  }
  .page-template-about-us .sustainability-action .card .card-body p {
    height: auto;
    overflow: unset;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1100px) {
  .page-template-about-us .latest-news.bg-white.sustainability-action .card .card-body {
    height: unset;
    padding-bottom: 30px;
  }
}
@media screen and (min-width: 1100px) and (max-width: 1199px) {
  .page-template-about-us .our-gallery-about .row {
    flex-direction: column;
    align-items: start;
    row-gap: 16px;
  }
}
@media screen and (min-width: 641px) and (max-width: 1240px) {
  .page-template-about-us .aboutus-global.ab-careerat .row:nth-child(1) .col:nth-child(1) h2 {
    width: 100%;
  }
}
@media screen and (min-width: 641px) and (max-width: 1230px) {
  .page-template-home .our-product .row .col .learnmore {
    justify-content: center;
  }
  .page-template-about-us .welcome-to-maruyama-sec.aboutus-mission h2 span {
    display: inline-block;
  }
}
@media screen and (min-width: 1101px) and (max-width: 1180px) {
  .page-template-about-us .about-the-leadership + .about-inclusive-feature.skw-animation .row {
    column-gap: 40px;
  }
  .page-template-about-us .about-the-leadership + .about-inclusive-feature.skw-animation .row .col:first-child {
    width: 30%;
  }
  .page-template-about-us .about-the-leadership + .about-inclusive-feature.skw-animation .row .col:last-child {
    width: 40%;
  }
}
@media screen and (min-width: 640px) and (max-width: 1240px) {
  .page-template-about-us .about-the-leadership .swiper-wrapper .col:first-child {
    margin-left: 0;
  }
  .page-template-about-us .latest-news.bg-white.sustainability-action .swiper-pagination-news {
    margin: 16px 0 0;
  }
  .page-template-news .press-releases .card img {
    height: auto;
  }
}
@media screen and (min-width: 992px) and (max-width: 1240px) {
  .page-template-about-us .our-values .row .col {
    width: calc((100% / 4) - 20px);
    padding: 30px 24px;
  }
  .page-template-about-us .our-values .row {
    justify-content: space-between;
    column-gap: 16px;
  }
}
@media screen and (min-width: 360px) and (max-width: 1240px) {
  .getin-touch .row .col:nth-child(2) form .col.privary p,
  .getin-touch .row .col:nth-child(2) form .col.privary p:last-child {
    display: grid;
    grid-template-columns: 16px auto;
    align-items: baseline;
  }
}
@media screen and (max-width: 640px) {
  .single-post.single-format-standard .insights-blogs .prev {
    right: calc(100vw - 48%);
  }
  .single-post.single-format-standard .insights-blogs .next {
   right: calc(100% - 65%); 
  }
}
@media screen and (min-width: 1179px) and (max-width: 1180px) {
  .page-template-news .missan-update .content h2 {
    margin-bottom: 48px; 
  }
}
@media screen and (min-width: 440px) {
  .page-template-our-product h2 span,
  .page-template-mufe-range h2 span {
    display: inline-block;
  }
  .page-template-our-product .water-reivented .row .col:nth-child(1) h2 span {
    margin-left: 6px;
  }
  .page-template-location-information .our-offices-factories .flip-animation {
    z-index: 1;
  }
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .page-template-mufe-range .water-reivented .row .col:nth-child(2) img:nth-child(1),
  .page-template-our-product .water-reivented .row .col:nth-child(2) img:nth-child(1) {
    width: 245px; 
    height: 245px;
  }
  .page-template-mufe-range .water-reivented .row .col:nth-child(2) img:nth-child(2),
  .page-template-our-product .water-reivented .row .col:nth-child(2) img:nth-child(2) {
    width: 170px;
    height: 170px;
    right: -40px;
    top: 15px;
  }
  .page-template-mufe-range .water-reivented .row .col:nth-child(2) img:nth-child(3),
  .page-template-our-product .water-reivented .row .col:nth-child(2) img:nth-child(3) {
    width: 150px;
    height: 150px;
    right: 5%;
    top: 140px;
  }
  .page-template-mufe-range .water-reivented .row .col:nth-child(2),
  .page-template-our-product .water-reivented .row .col:nth-child(2) {
    width: 334px !important; 
  }
}
@media screen and (min-width: 820px) and (max-width: 992px) {
  .page-template-mufe-range .fine-bubbles .row .col:nth-child(1) {
    width: 100%;
  }
  .page-template-mufe-range .mufb-main video {
    height: 100%;
  }
}
@media screen and (min-width: 410px) and (max-width: 992px) {
  .page-template-our-product .yield-efficiency .tab-content .row, 
  .page-template-our-product .yield-efficiency .sliderContent .row {
    column-gap: 0;
  }
  .page-template-our-product .water-reivented {
    padding-top: 80px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1240px) {
  .page-template-ope-range .product-line-up .line-up-explo .product-swiper {
    min-height: 663px;
  }
}
@media screen and (min-width:768px) and (max-width:991px){
  .page-template-careers section.latest-news.bg-white.sustainability-action.carrer-growth .sus-act-slide .card .card-body p{
    overflow: unset;
    height:calc(100% - 24px);
  }
}
@media screen and (min-width:1024px) and (max-width:1044px){
  .page-template-gallery .gallery-taps .btn{
    padding: 8px 12px;
  }
}
@media screen and (min-width:501px) and (max-width:640px){
  .single-post.single-format-standard .blog-main .content h1{
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width:641px) and (max-width:767px){
  .single-post.single-format-standard .blog-main .content h1{
    font-size: 40px;
    line-height: 48px;
  }
}
@media screen and (max-width:640px){
  .single-post.single-format-standard .blog-main .content h1{
    margin-bottom: 20px;
  }
}
@media screen and (min-width:1025px){
  .single-post.single-format-standard .blog-main .content h1{
    width: 100%;
  }
}
@media screen and (max-width:767px){
  .page-template-solution section.about-inclusive-feature.whats-next.take-next.join-moment.news-cards.our-president.save-crops .maruyama-before-slider .card:nth-child(odd) img{
    border-radius: 16px 16px 0 0;
  }
  .page-template-solution section.about-inclusive-feature.whats-next.take-next.join-moment.news-cards.our-president.save-crops .maruyama-before-slider .card:nth-child(even) img{
    border-radius: 0px 0px 16px 16px;
  }
}
@media screen and (min-width:768px) and (max-width:991px){
  .page-template-solution section.about-inclusive-feature.whats-next.take-next.join-moment.news-cards.our-president.save-crops .maruyama-before-slider .card .card-body{
    padding: 0;
  }
}
.page-template-gallery .gallery-taps .btn {
  cursor: pointer;
  min-width: fit-content;
}
@media screen and (min-width:768px) and (max-width:1240px){
  .page-template-innovation-sustainability .relentless-sec .row .col img {
    width: 100%;
  }
}
@media screen and (min-width:641px) and (max-width:767px) {
  .page-template-about-us section.about-inclusive-feature.our-gallery-about .row .col:nth-child(2) {
    width: 100%;
  }
  .page-template-about-us .careers-at.bg-white.aboutus-global.ab-careerat {
    padding-bottom: 0;
  }
}
@media screen and (min-width:360px) and (max-width:1240px) {
  .page-template-home .better-tomorrow {
    padding-bottom: 0;
  }
}
@media only screen 
  and (min-width: 768px)
  and (max-width: 1366px) {
    .our-offices-factories .fix-bottom {
      width: 29%;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }
}
@media only screen 
  and (min-width: 1025px) 
  and (max-width: 1080px) {
    .page-template-our-product .ope-sec .row.ope-zoom-animation .col {
      width: 18%;
    }
    .page-template-our-product .ope-sec .row.ope-zoom-animation {
      margin-left: auto;
      margin-right: auto;
      align-items: center;
      justify-content: center;
    }
    .page-template-our-product .ope-sec .row.ope-zoom-animation .col:first-child {
      margin-left: 0;
    }
}
@media only screen 
  and (min-width: 1024px) 
  and (max-width: 1180px) {
  .page-template-news .social-slider .card {
    min-width: auto;
  }
  .page-template-news .missan-update .content h2 {
    margin-bottom: 36px;
  }
}
@media only screen 
  and (min-width: 1180px)
  and (max-width: 1240px) {
    .page-template-about-us .our-president .row .col:nth-child(2) div::before{
      width: 400px;
      height: 512px;
    }
    .about-the-leadership .swiper-wrapper {
    	column-gap: 16px;
      justify-content: center;
	  }
    .page-template-home .better-tomorrow {
      padding-top: 80px;
    }
}
@media screen and (min-width:381px) and (max-width:414px){
	.page-template-about-us section.latest-news.bg-white.sustainability-action .content h2{
		margin-bottom: 10px;
	}
}
@media screen and (max-width: 380px) {
    .page-template-about-us section.latest-news.bg-white.sustainability-action .content h2 {
        height: 65px;
    }
}
@media screen and (min-width: 381px) and (max-width:641px) {
    .page-template-about-us section.latest-news.bg-white.sustainability-action .content h2 {
        margin-bottom: 10px !important;
    }
	.page-template-about-us section.latest-news.bg-white.sustainability-action .content {
        margin-bottom: 20px !important;
    }
}
@media screen and (min-width: 641px) and (max-width:1023px) {
    .page-template-about-us section.latest-news.bg-white.sustainability-action .content h2 {
        margin-bottom: 16px !important;
    }
	.page-template-about-us section.latest-news.bg-white.sustainability-action .content {
        width: auto;
    }
}
@media screen and (min-width:768px) and (max-width:991px){
	.page-template-about-us section.latest-news.bg-white.sustainability-action .card .card-body p{
		height:96px;
	}
}
@media screen and (min-width:641px) and (max-width:768px){
	.page-template-about-us section.our-president.about-president .row .col:nth-child(1) .d-flex.justify-end{
		width: 498px;
	}
}
@media screen and (min-width: 640px) and (max-width: 1180px) {
  .page-template-about-us .about-the-leadership .swiper-wrapper {
    column-gap: 0;
    justify-content: left;
  }
}
@media screen and (min-width: 992px) and (max-width: 1023px) {
  .page-template-about-us .about-inclusive-feature.skw-animation .row .col:first-child {
    width: 30% !important;
  }
  .page-template-about-us .about-inclusive-feature.skw-animation .row .col:nth-child(3) {
    width: 40% !important;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1280px) {
  .page-template-about-us .about-inclusive-feature.skw-animation .row .col:first-child {
    width: 30% !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .page-template-about-us .latest-news.bg-white.sustainability-action .swiper-pagination-news {
    margin-top: 30px;
  }
  .page-template-about-us .about-the-leadership {
    padding-top: 40px;
  }
}
@media screen and (min-width: 1280px) {
  header nav ul li .dropdown-menu ul li.active a {
    color:#C4131C;
  }
}
@media screen and (min-width: 1366px) and (max-width: 1366px) {
  .page-template-home .better-tomorrow {
    padding-top: 80px;
  }
}
@media screen and (max-width: 1180px) {
  .land-sel.land-sel-mobile-view {
    display: block;
    position: absolute;
    right: 80px;
  }
}
@media screen and (max-width: 640px) {
  .land-sel.land-sel-mobile-view {
    right: 72px;
  }
}
@media screen and (max-width: 1024px) {
  .our-offices-factories .flip-animation {
    z-index: 1;
  }
}
@media screen and (min-width: 1200px) {
  .page-template-about-us .about-inclusive-feature .row .col:nth-child(2), 
  .page-template-careers .whychoose-maruyama .row .col:nth-child(2) {
    align-items: unset;
  }
  .page-template-careers .whychoose-maruyama .row {
    align-items: unset;
  }
  .page-template-location-information .our-offices-factories .main-row .tab-content ul li:last-child {
    margin-bottom: 64px;
  }
}
.page-template-home .press-releases .card .card-body ul li:nth-child(2) {
  background-color: #F2F2F2;
}
footer .row .col div.contact-form__footer .learnmore input[type="submit"] {
  cursor: pointer;
}
@media screen and (min-width:1231px) {
  .page-template-home .our-product.home-product .row .col:nth-child(2) .resp-tabs-container-item .prod-tab-content .learnmore {
    justify-content: left;
  }
  .page-template-mufe-range .aboutus-main {
    background-image: url('/wp-content/uploads/2025/08/Banner-3-5-300x110.png');
  }
  .page-template-our-product .yield-efficiency .sliderContent .row .col .card .card-body {
   height: 243px; 
  }
  footer .container .row .col:nth-child(3) div.contact-information .col p,
  footer form#contact_form__footer .col select.form-control {
    width: 100%;
  }
}
@media screen and (min-width:1200px) {
  .cmpy-history-sec .row .col:nth-child(odd) h3 {
    top: 0;
  }
  .career-down-arrow {
    bottom: 0;
  }
}
@media screen and (min-width:992px) {
  .page-template-news .latest-news.press-releases .swiper-arrow {
    display: none;
  }
  .page-template-news .latest-news::before, 
  .page-template-news .press-releases.rightshadow::before {
    display: none;
  }
}
@media screen and (min-width:1180px){
	.page-template-about-us .about-the-leadership .team-slider-01 .swiper-wrapper{
		justify-content: unset;
	}
}
@media screen and (min-width:1280px){
	.page-template-about-us .about-the-leadership .team-slider-01 {
		margin-left: auto;
        margin-right: auto;
        max-width: 1200px;
		overflow: hidden;
    }
	 .page-template-about-us .swiper-pagination-bullets.swiper-pagination-horizontal{
        margin: 0 auto 24px !important;
        max-width: 1200px;
    }
	.page-template-about-us .swiper-pagination-bullets.swiper-pagination-horizontal{
		margin-left: 24px;
	}
	.page-template-about-us .about-the-leadership .team-slider-01 .swiper-wrapper{
		column-gap: 0;
	}
}
.page-template-about-us .about-the-leadership .team-slider-01{
	position: relative;
}
.page-template-about-us .about-the-leadership .team-slider-01 {
    margin-bottom: 60px;
    padding-bottom: 68px;
}
.page-template-about-us .about-the-leadership .team-slider-01 .arrows{
	position: absolute;
    display: flex;
    bottom: 55px;
    z-index: 10;
    justify-content: center;
    width: 100%;
}
.page-template-about-us .about-the-leadership .team-slider-01 .arrows .prev{
	right: 52%;	
}
.page-template-about-us .about-the-leadership .team-slider-01 .arrows .next{
	right: 45%;	
}
.page-template-about-us .about-the-leadership .team-slider-01 .arrows .swiper-arrow.swiper-button-disabled {
    background-color: #C0BFBF !important;
}
.page-template-about-us .about-the-leadership .team-slider-01 .arrows .next.swiper-arrow, .arrows .prev.swiper-arrow{
	background: #C4131C;
    cursor: pointer;
}
@media screen and (min-width: 640px) and (max-width:768px){
	.page-template-about-us .about-the-leadership .team-slider-01 .arrows .next{
		right: 41%;	
	}
}
@media screen and (min-width: 300px) and (max-width:641px){
	.page-template-about-us .about-the-leadership .team-slider-01 .arrows .next{
		right: 30%;	
	}
	.page-template-about-us .about-the-leadership .team-slider-01 {
		margin-bottom: 20px;
	}
}
@media screen and (max-width:1023px){
	.page-template-about-us .about-the-leadership .team-slider-02{
		position: relative;
	}
	.page-template-about-us .about-the-leadership .team-slider-02 .arrows{
		position: absolute;
		display: flex;
		bottom: 55px;
		z-index: 10;
		justify-content: center;
		width: 100%;
	}
	.page-template-about-us .about-the-leadership .team-slider-02 {
		margin-bottom: 0px;
		padding-bottom: 68px;
	}
	.page-template-about-us .about-the-leadership .team-slider-02 .arrows .prev{
		right: 52%;	
	}
	.page-template-about-us .about-the-leadership .team-slider-02 .arrows .next{
		right: 45%;	
	}
	.page-template-about-us .about-the-leadership .team-slider-02 .arrows .swiper-arrow.swiper-button-disabled{
    	background-color: #C0BFBF !important;
	}
	.page-template-about-us .about-the-leadership .team-slider-02 .arrows .next.swiper-arrow, .arrows .prev.swiper-arrow{
		background: #C4131C;
    	cursor: pointer;
	}
}
@media screen and (min-width: 640px) and (max-width:768px){
	.page-template-about-us .about-the-leadership .team-slider-02 .arrows .next{
		right: 41%;	
	}
}
@media screen and (min-width: 300px) and (max-width:641px){
	.page-template-about-us .about-the-leadership .team-slider-02 .arrows .next{
		right: 30%;	
	}
}