@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;
}

.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;
}
.aboutus-mission .row .col:nth-child(1) {
  width: 743px;
}
.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 {
  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 {
  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: 40%;
}
.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: 60%;
  }
  .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;
  }
  .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;
  }
  .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 15px 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: 21px;
  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;
	}
	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;
	  }
	  .latest-news::before{
    	content: none !important;
	  }
	  .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;
	}
}	
