:root {
  /* --prompt: "Prompt", sans-serif; */
  --primary-color: #E2000F;
  --secondary-color: #0e0e0e;
  --sub-bg: #f3f3f3;
  --heading-color: #0e0e0e;
  --paragraph: #333;
  --span: #888888;
  --border: #d9d9d9;
  --white: #ffffff;
  --black: #000000;
  --transition: all 0.3s ease-in-out;
  --shadow: 0px 4px 30px 0px #E2000F26;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  font-family: "Noto Sans JP", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  /* font-family: var(--prompt); */
  color: var(--paragraph);
  background-color: var(--white);
  font-weight: 400;
}

/* Container Size */

@media (min-width:1200px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1310px !important;
  }
}

@media (min-width:1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1510px !important;
  }
}

/* Container Size End*/
h1,
h2,
h3,
h4,
h5,
h6 {
  /* font-family: "Raleway", sans-serif; */
  color: #333;
  margin-top: 0px;
  font-style: normal;
  font-weight: 900;
  text-transform: normal;
}

h1 {
  font-size: 45px;
  font-weight: 700;
}

h2,
.h2 {
  font-size: 36px;
  font-weight: 600;
}

h3 {
  font-size: 24px;
  font-weight: 700;
}

h4 {
  font-size: 18px;
  font-weight: 700;
}

h5 {
  font-size: 16px;
  font-weight: 500;
}

h6 {
  font-size: 14px;
  font-weight: 700;
}

p {
  margin: 0;
  padding: 0;
  font-size: 16px;
}

span {
  display: inline-block;
  color: var(--span);
}

a {
  text-decoration: none;
  display: inline-block;
  color: var(--heading-color);
  transition: var(--transition);
}

.hc {
  color: #E2000F;
}

ul {
  margin: 0;
  padding: 0;
  text-decoration: none;
}

li {
  list-style: none;
}

.btn-mi {
  position: relative;
  background-color: #E2000F;
  color: #fff;
  padding: 10px 25px;
  text-transform: uppercase;
  border: 1px solid #fff;
  font-weight: 600;
  font-size: 15px;
  overflow: hidden;
  transition: 0.5s;
  clip-path: polygon(0% 0, 100% 0, 100% 100%, 0 100%, 0% 0%);

}

.btn-mi:hover {
  background-color: #000;
  color: #fff;
  clip-path: polygon(89% 0%, 100% 40%, 100% 100%, 0 100%, 0 0);
}

.btn-mi::before {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  background-color: #000;
  top: -4px;
  /* transform: rotate(90deg); */
  right: -5px;
  transition: 0.6s;
}

.btn-mi:hover:before {
  width: 20px;
  height: 20px;
  background-color: #E2000F;

}

.btn-mi.btn-sm {
  padding: 5px 15px;
  font-size: 13px;
}

.btn-whatsapp {
  background-color: #25D366;
  border-color: #25D366;
  border-radius: 4px;
  transition: var(--transition);
  padding: 10px 25px;
  font-weight: 600;
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  border-color: #128C7E;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-whatsapp-floating {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: var(--transition);
  z-index: 999;
}

.btn-whatsapp-floating:hover {
  background-color: #128C7E;
  /* transform: scale(1.1); */
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.navbar {
  border-bottom: 1px solid #E2000F;
}

.navbar .nav-item {
  padding: 8px 20px;
}
.navbar .nav-item .nav-link {
  color: #E2000F;
  font-weight: 600;
  position: relative;
}
.navbar .nav-item .nav-link:hover {
  color: #000;
}

.navbar .nav-item .nav-link::before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #000;
  transition: width 0.3s ease;
}

.navbar .nav-item .nav-link:hover::before {
  width: 100%;
}
.navbar .nav-item .nav-link.dropdown-item:hover {
  color: #000;
}

.navbar .nav-item .nav-link.dropdown-item::before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #000;
  transition: width 0.3s ease;
}

.navbar .nav-item .nav-link.dropdown-item:hover::before {
  width: 0%;
}

.navbar-toggler-img {
  width: 35px;
}

.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}
.dropdown-menu::after {
  content: '';
  position: absolute;
  top: -50px;
  width: 47%;
  height: 50px;
  background-color: transparent;
}
.dropdown-menu {
  padding: 0 0;
  border: none;
  box-shadow: 0px 0px 8px 0px #00000061;
  transition: 0.6s ease-in;

}
.dropdown-item.active, .dropdown-item:active {
  color: #fff !important;
  background-color: #E2000F;
}


.dropdown-menu.show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.dropdown-animate {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.submenu.dropdown-menu {
  top: -4px !important;
  right: -160px;
  
}
.dropdown-menu a{
  padding: 10px 20px !important;
}
.dropdown-menu.show {
  display: block;
  top: 83px;
  border-radius: 0;
}
.dropdown-menu.show li{
  border-bottom: 1px solid #E2000F;
}
.banner {
  position: relative;
  overflow: hidden;
}

/* .banner::after{
    position: absolute;
    content: '';
    background-image: url(images/shape2.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 50%;
    height: 100%;
    right: -100px;
    top: 0;
  } */
.content {
  margin-top: 20%;
}

.banner-content {
  position: absolute;
  top: 70px;
  left: 12.4%;
  /* filter: drop-shadow(10px 5px 9px #000); */
}

.banner-content .content .col-md-5 {
  background-color: #E2000Fb8;
  padding: 85px 40px;
}

.banner-content .content .col-md-7 {
  background-color: #ffffffb8;
  padding: 60px 20px;
}

/* .banner-content img{
    margin-top: 20%;
  } */

.content h1 {
  text-transform: uppercase;
  font-size: 30px;
  color: #fff;
}

.content .h2 {
  font-size: 30px;
  font-weight: 700;
}

.banner .owl-nav .owl-prev {
  position: absolute;
  bottom: 0;
  left: 0;
}

.banner .owl-nav .owl-next {
  position: absolute;
  bottom: 0;
  left: 70px;
}

.owl-theme .owl-nav .owl-prev span,
.owl-theme .owl-nav .owl-next span {
  background-color: #E2000F !important;
  color: #ffff !important;
  padding: 0px 24px !important;
  font-size: 40px;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* .owl-theme .owl-nav [class*=owl-]:hover {} */

.about-section {
  position: relative;
}

/* .about-img{
      width: 100%;
      height: 200px;
      overflow: hidden;
  } */
.about-img img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  object-position: 100%;
}

/* .about-section::before{
    position: absolute;
    content: '';
    width: 46%;
    height: 100%;
    right: 0;
    top: 0;
    background-color: #E2000F;
  } */
/* .mv-card-section{
    background-color: #eeeeee;
  } */
.mv-card {
  position: relative;
  background-color: #fff;
  padding: 20px 20px 20px 30px;
  transition: 0.6s;
}

.mv-card::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: #E2000F;
  transition: 0.6s;
  z-index: 1;
}

.about-img {
  position: relative;
}

.about-img::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: #E2000F;
  transition: 0.6s;
  z-index: 1;
}

.about-img-2 img {
  height: 300px;
  width: 100%;
  object-fit: cover;
  object-position: 100%;
}

.about-img-2 {
  position: relative;
}

.about-img-2::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: #E2000F;
  transition: 0.6s;
  z-index: 1;
}
.about-img-3 {
  position: relative;
}

.about-img-3::after {
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background-color: #E2000F;
  transition: 0.6s;
  z-index: 1;
}

.mv-card:hover:after {
  width: 100%;
}

.mv-card .mv-title,
.mv-card .mv-text {
  color: #000;
  transition: 0.6s;
}

.mv-card:hover .mv-title,
.mv-card:hover .mv-text {
  position: relative;
  color: #fff !important;
  z-index: 111;
}
input#fileUpload {
  height: auto;
}

.pro-card{
  background-color: #E2000F;

 }
.pro-card-content {
  position: relative;
  background-color: #E2000F;
  padding: 30px 20px;
  min-height: 210px;
}

/* .pro-card-content::after{
  position: absolute;
  content: '';
  width: 100%;
  height: 100px;
  clip-path: polygon(50% 80%, 100% 0, 100% 100%, 0 100%, 0 0);
  background-color: #E2000F;
  top: -80px;
  left: 0;
}
 .pro-card-content::before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100px;
  clip-path: polygon(50% 80%, 100% 0, 100% 100%, 0 100%, 0 0);
  background-color: #000;
  top: -83px;
  left: 0;
} */
.pro-card-content .pro-title {
  color: #fff;
  font-size: 20px;
}

.iws-section h3 {
  font-size: 20px;
}

.iws-section p {
  font-size: 16px;
}

.iws-section hr {
  color: #E2000F;
  margin: 15px 0;
  border-top: 1px solid;
  opacity: 1;

}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px;
  padding: 2px;
  background: #E2000F !important;
  border: 1px solid #E2000F;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 30px;
}

.owl-carousel button.owl-dot {
  border: 1px solid #E2000F;
  margin: 0 5px;
  border-radius: 50px;
  opacity: 0.5;
}

.owl-carousel button.owl-dot.active {
  opacity: 1 !important;
}

.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 40px;
}

.contact-img {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.contact-img img {
  object-fit: cover;
  object-position: center;
}

.form-control {
  height: 50px;
  border-radius: 0;
}

.form-control:focus {
  box-shadow: none;
  border: 1px solid #E2000F;
}

textarea.form-control {
  height: auto;
}

/* footer{
  /* background-color: #000; */
/* clip-path: polygon(6% 0%, 100% 0, 100% 78%, 94% 100%, 0 100%, 0 25%); */
/* color: #fff; */
/* } */
footer h5 {
  font-size: 22px;
  color: #E2000F;
  font-weight: 700;
}

.footer hr {
  opacity: 1;
  margin: 25px;
}

.footer ul li a {
  /* color: #fff; */
  padding: 10px 0;
}

footer .copyright {
  background-color: #E2000F;
  color: #fff;
  font-weight: 600;
  padding: 10px 0;
}

footer .copyright span {
  color: #000;
  font-weight: 600;
}

.footer .icon {
  color: #E2000F;
  background-color: #fff;
  border-radius: 50px;
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.inner-bg {
  background-color: #E2000F;
  padding: 5% 0;

  h2 {
    color: #fff !important;
  }
  h1{
    color: #fff;
  }
}

.mv-col {
  background-color: #000;
  padding: 20px 31px;

  h3 {
    color: #E2000F;
  }

  h2 {
    position: relative;
    margin-bottom: 50px;
  }

  h2::after {
    position: absolute;
    content: '';
    width: 100px;
    height: 3px;
    background-color: #E2000F;
    bottom: -30px;
    left: 0;

  }

  .mission-card {
    border-right: 1px solid #E2000F;
    padding: 10px 30px 10px 0;
  }

  .vision-card {
    padding: 10px 0px 10px 20px;
  }
}
.product-content{
  h1 {
    position: relative;
    margin-bottom: 70px;
  }

  h1::after {
    position: absolute;
    content: '';
    width: 100px;
    height: 3px;
    background-color: #E2000F;
    bottom: -30px;
    left: 0;

  }
  ul{
    padding-left: 2rem;
  }
  ul li{
    padding: 5px 0;
    list-style: circle;
  }
}
@media only screen and (max-width:1400px) and (min-width:1200px) {
  .banner-content {
    top: 50px;
  }

  .content h1 {
    font-size: 29px;
  }

  .banner-content .content .col-md-5 {
    padding: 40px;
  }

  .banner-content .content .col-md-7 {
    padding: 40px;
  }

  .content .h2 {
    font-size: 24px;
    font-weight: 700;
  }
}

.applications .explore-card{
  height: 100%;
  ul{
    padding-left: 2rem;
    padding-bottom: 2rem;
    padding-top: 1rem;
  }
  li{
    list-style: circle;
    padding-bottom: 8px;
  }
  h3{
    background-color: #E2000F;
    padding: 10px;
    color: #fff;
  }

}
.table th{
  background-color: #E2000F;
  color: #fff;
}
.clients-logo img{
  padding: 0 45px;
}
@media only screen and (max-width:1570px) and (min-width:1400px) {
  .banner-content {
    top: 20px;
  }
}

@media only screen and (max-width:600px) {
  .product-content {
    h1 {
        position: relative;
        margin-bottom: 75px;
        font-size: 37px;
    }
}
  .navbar-brand img {
    width: 180px;
  }
  .navbar .nav-item .nav-link{
    /* border-bottom: 1px solid #E2000F; */
    padding: 20px 0;
  }
  .navbar .nav-item{
    padding: 8px 0px !important;
  }
  .footer {
    clip-path: polygon(0% 0%, 100% 0, 100% 100%, 100% 100%, 0 100%, 0 0%);
  }

  .footer .address {
    font-size: 15px;
  }

  .iws-section h3 {
    font-size: 20px;
    height: 45px;
  }

  .footer .mail {
    font-size: 15px;
  }

  .footer .icon {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }

  .contact-img {
    height: 195px;
  }

  h2,
  .h2 {
    font-size: 30px !important;
    font-weight: 600;
  }

  .content {
    margin-top: 5%;
  }

  .banner-content {
    position: static;
    margin: -19px -18px 0px 0px;
    left: 9.4%;
  }

  .banner-content .content .col-md-5 {
    padding: 25px;
  }

  .banner-content .row {
    margin-right: 0;
  }

  .content h1 {
    font-size: 30px;
  }

  .banner-content .content .col-md-7 {
    padding: 25px;
    border-bottom: 1px solid #E2000F;
  }

  .iws-section .col {
    flex: 1 1 0 0%;
  }

  .footer ul li a {
    /* color: #fff; */
    padding: 5px 0;
  }

  .owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    margin: 4px;
  }

  .mission-card {
    border-right: none !important;
    padding: 0;
  }

  .vision-card {
    padding: 20px 0 0 0 !important;
  }

  .mv-col {
    padding: 25px;
  }

  .mv-col {
    h2 {
      margin-bottom: 60px;
    }
  }

  .inner-bg {
    padding: 20% 0;
  }

  .inner-bg {
    h1 {
      color: #fff;
      font-size: 36px;
    }
  }

}

@media (min-width: 768px) {
  .about-section .offset-md-1 {
    margin-left: 4.333333%;
  }
  .dropdown-menu {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.3s ease;
    display: inline-block;
    visibility: hidden;
  }
}