/*==================================
    [Table of contents]
===================================
    Website Common
    Website Header
    Website Footer
    Home Statement                         #statement
    Home Hero Video                        #heroVdo         
    Home Our Products                      #ourProducts
    Home Our Services                      #ourServices
    Home Facts Counter                     
    Home Who we are
    Home Testimonial
    Home CTA
    About Banner                           
    About About us
    About Our Team                         #ourTeam
    Products Banner
    Products Body                          #productsBody
    Manufacturing Banner
    Manufacturing Carousel
    Manufacturing VideoText
    Manufacturing TextImage
    Global Banner
    Global Map
    Global Why Choose Us
    Global Our Values
    Careers
    Contact Map
    Contact Message Form
*/

html,
body {
  overflow-x: hidden;
}

/*------------------------------------------------------
/ Website Header
/------------------------------------------------------*/

.site-header {
  padding: 0 4.6vw 0 3vw;
  border-bottom: none;
}

@media (max-width: 1199px) {
  .mainMenu {
    z-index: 2;
  }
}

.home-header .navArea {
  border-bottom: 1px solid rgba(10, 10, 10, 0.09);
}

/*------------------------------------------------------
/ Website Footer
/------------------------------------------------------*/
.widgetRow {
  justify-content: space-between;
}

/*------------------------------------------------------
/ Home Statement
/------------------------------------------------------*/
#statement {
  text-align: center;
  padding: 7vw 3vw 8vw 3vw;
}

#statement > h1 {
  font-weight: 300;
  font-size: max(5.2vw, 32px);
}

.greater {
  color: var(--clr-accent-400);
}

.hope {
  color: var(--clr-primary-400);
}

/*------------------------------------------------------
/ Hero Video
/------------------------------------------------------*/

#heroVdo {
  text-align: center;
}

#heroVdo wrapper {
  width: 100%;
  text-align: center;
  border-radius: 0.5vw;
}

#heroVdo video {
  width: 90vw;
  border-radius: 1vw;
  min-width: 90vw;
}

/*------------------------------------------------------
/ Our Products
/------------------------------------------------------*/

#ourProducts ._hidden {
  opacity: 0;
  transform: translate(0, 150px);
  transition: all 1.1s;
}

#ourProducts ._show {
  opacity: 1;
  transform: translate(0);
}

#ourProducts {
  display: grid;
  min-height: 60vh;
  place-items: center;
  padding-block: 10rem;
  padding: 116px 26px 134px 26px;
}

#ourProducts .secTitle2 {
  max-width: 800px;
  padding: 0 0 34px 0;
  margin-inline: auto;
}

.product-card h4 {
  color: white;
}

.products-cards-container a:hover {
  text-decoration: none;
}

.product-card {
  /* border: 1px solid hsl(0, 0%, 0%, 0.25); */
  box-shadow: 0.5rem 0.5rem 1rem hsl(0, 0%, 0%, 0.5);
  height: 430px;
  overflow: hidden;
  position: relative;
  /* width: 300px; */
  line-height: 1.5;
  margin-bottom: 30px;
  color: white;
}

.product-card a {
  display: block;
  height: 100%;
  width: 100%;
}

.product-card img {
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: top 255ms ease-in-out;
  width: 123%;
  z-index: 0;
}

.product-card:hover img {
  top: -2rem;
}

.product-card a .caption {
  background-color: rgb(237 38 39);
  display: grid;
  overflow: hidden;
  padding: 1rem;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 370px;
  transition-property: all;
  transition-duration: 0.2s;
  width: 100%;
  z-index: 10;
  backdrop-filter: blur(4px);
}

.product-card a:hover .caption {
  background-color: rgb(237 38 39 / 85%);
  top: 0;
  transition: all 1s;
  backdrop-filter: blur(4px);
}

.product-card a .caption h2 {
  color: var(--clr-light);
  font-size: 1.8rem;
  text-shadow: 2px 2px 0 var(--clr-shade), -2px -2px 0 var(--clr-shade),
    -2px 2px 0 var(--clr-shade), 2px -2px 0 var(--clr-shade);
}

.product-card a .caption p {
  color: var(--clr-neutral-100);
  display: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: all 0.2s;
  width: 90%;
}

.product-card a:hover .caption p {
  display: block;
}

.product-card .serviceLeft {
  padding: 0;
  height: 100%;
}

.product-card .serviceLeft .discover {
  position: absolute;
  bottom: 3%;
  text-align: center;
  padding: 12px;
}

/*------------------------------------------------------
/ Our Services
/------------------------------------------------------*/

#ourServices {
  /* background: var(--clr-primary-400); */
  background: hsl(238deg 35.35% 36.2%);
  padding: 12vw 0;
  color: var(--clr-neutral-100);
}

#ourServices h5 {
  color: inherit;
}

#ourServices h2 {
  color: inherit;
  max-width: 800px;
  margin-inline: auto;
  padding-bottom: 3vw;
}

.services-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 26px;
  text-align: center;
  border-radius: 10px;
  transition: 100ms;
  background-color: rgba(255 255 255 / 8%);
  padding: 11px;
  border: 1px solid rgba(255 255 255 / 20%);
  aspect-ratio: 1;
  color: var(--clr-neutral-100);
  line-height: 21px;
}

@media (max-width: 575px) {
  .col-lg-2.cusGCol {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 50%;
  }
}

.services-icon {
  width: 54px;
  aspect-ratio: 1;
  fill: var(--clr-neutral-100);
}

.cusGCol .services-card:hover {
  transform: scale(1, 1);
}

.services-card:not(:hover) {
  transform: scale(0.9, 0.9);
}
/*------------------------------------------------------
/ We hire assets
/------------------------------------------------------*/
.ctaSection {
  position: relative;
  background: url(../images/bg/assets.jpeg) no-repeat fixed center center /
    cover;
}

.ctaSection .secTitle {
  color: var(--clr-primary-400);
}

/*------------------------------------------------------
/ Who we are
/------------------------------------------------------*/
#whoWeAre ._hidden {
  opacity: 0;
  transform: translate(-200px, 0);
  transition: all 1.1s;
}

#whoWeAre ._show {
  opacity: 1;
  transform: translate(0);
}

/*------------------------------------------------------
/ About Us Our team
/------------------------------------------------------*/

.aboutHeader {
  position: absolute;
}
.aboutBanner h2 {
  margin-bottom: 12px;
}
.aboutBanner h3 {
  font-size: 5.5vw;
  text-wrap: nowrap;
  font-weight: 900;
  color: #ff00338a;
}
.aboutBanner h5 {
  font-size: 29px;
}
.aboutBanner {
  position: relative;
  background: transparent;
}

.aboutBanner .pageBannerContent {
  padding-top: 101px;
}

.aboutBanner::before {
  background: rgb(163 32 50 / 39%);
  /* background: linear-gradient(to bottom right, #d19ab6cc, #ce5c5cb3); */
}

.logoBox {
  padding: 6px 0px 19px 0;
  margin: 0;
  width: 90vw;
  opacity: 0.65;
}

@media (max-width: 991px) {
  .logoBox {
    width: 109vw;
  }
}

span.blue {
  color: #1e37899c;
}

.logoBox img {
  width: 30%;
}

.cosmo-logo {
  /* width: 10vw; */
  scale: 1.09;
}

.c-logo {
  scale: 0.85;
  margin-left: -26px;
}

.ch-logo {
  /* width: 20vw; */
  opacity: 0.8;
  margin-top: -10px;
}

#ourTeam .container .row:nth-child(odd) {
  flex-direction: row-reverse;
}

@media (min-width: 991px) {
  #ourTeam .container .row:nth-child(odd) .col-lg-6:first-child {
    padding-left: 0;
  }
  #ourTeam .container .row:nth-child(even) .col-lg-6:first-child {
    padding-right: 0;
  }
}

@media (min-width: 700px) {
  #ourTeam .row:not(:first-child) h4 {
    padding-top: 32px;
  }
}
#ourTeam {
  background-color: var(--clr-accent-100);
  padding-top: 4vw;
}

.aboutUs {
  padding-bottom: 5vw;
}

#ourTeam span {
  color: var(--clr-accent-400);
  font-size: 14px;
}

/* #ourTeam .container .row:nth-child(even) {
  background-color: var(--clr-primary-300);
} */

#ourTeam img {
  width: 100%;
}

#ourTeam .singleTeam {
  margin: 0 0 30px;
}

#ourTeam .singleTeam::after {
  background: linear-gradient(7deg, #000000b3, transparent);
}

/*------------------------------------------------------
/ Products Body
/------------------------------------------------------*/

#productsBody ul {
  list-style: none;
}

#productsBody button {
  pointer-events: none;
}

.productListContainer {
  height: 80vh;
  overflow-y: scroll;
}

.niList .niDetails {
  border-top: 1px solid;
  padding-top: 25px;
  border: 1px solid #e1e1e1;
}

.tstiContent span {
  background: linear-gradient(270deg, rgb(255 0 1) 0%, #f13127 100%);
}

.testAuthor {
  padding: 0;
}

.listUL li:before {
  color: #fc3329;
}

.filter-button.active {
  color: var(--clr-accent-400);
}

.sidebar .widget.search-widget {
  background: #f1f1f18c;
}

ul.list {
  padding: 0;
}

ul.list li:first-child {
  display: none;
}

ul.list a {
  pointer-events: none;
}

.list .niList {
  margin: 0 0 20px;
}

.niList .niDetails {
  background: #f1f1f18c;
}

/*------------------------------------------------------
/ Global Map
/------------------------------------------------------*/
#globalPageBanner {
  background: url(../images/bg/global.jpeg) no-repeat center center/cover;
}

#globalPageBanner .pageBannerContent {
  padding: 60px 0 0;
}

#globalMapSection ._hidden {
  opacity: 0;
  filter: blur(5px);
  transform: translate(0, 100px);
  transition: all 1s;
}

#globalMapSection ._show {
  opacity: 1;
  filter: blur(0);
  transform: translate(0);
}

@media (max-width: 575px) {
  #globalMapSection .researchItems .GMSingle {
    width: 100%;
    padding: 16px;
  }
}
.featured_img_world_presence {
  padding-bottom: 24px;
  border: 4px solid var(--clr-accent-400);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 6.6));
  }
}
#globalMapSection .movingCountries {
  background: var(--clr-accent-400);
  margin: auto;
  margin-bottom: -20px;
  position: relative;
}
#globalMapSection .movingCountries::before,
#globalMapSection .movingCountries::after {
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  content: "";
  height: 100px;
  position: absolute;
  width: 2vwpx;
  z-index: 2;
}
#globalMapSection .movingCountries::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}
#globalMapSection .movingCountries::before {
  left: 0;
  top: 0;
}
#globalMapSection .movingCountries ul {
  animation: scroll 12s linear infinite;
  display: flex;
  width: calc(250px * 14);
  list-style: none;
  color: var(--clr-neutral-100);
  align-items: center;
  height: 44px;
}
#globalMapSection .movingCountries .slide {
  height: 100px;
  width: 250px;
}

#globalMapSection .movingCountries li {
  margin-right: 32px;
  font-size: 18px;
  font-weight: 600;
}

/*------------------------------------------------------
/ Careers
/------------------------------------------------------*/

#careersPageBanner {
  background: url(../images/bg/careers.jpeg) no-repeat center center/cover;
}

.file-upload {
  align-content: center;
}

/*------------------------------------------------------
/ Contact Map
/------------------------------------------------------*/
#contactBanner {
  background: url(../images/bg/contact.jpeg) no-repeat center center/cover;
}

#adressMap .map {
  height: 100%;
  position: relative;
}

#adressMap .absoluteAdress {
  position: absolute;
  top: 2.2%;
  left: 4.6%;
  width: 220px;
  padding: 12px;
  padding-bottom: 0;
  line-height: 1.2;
  background: white;
}

#adressMap .absoluteAdress h3 {
  font-size: 14px;
  padding-bottom: 0;
  margin-bottom: 6px;
}

#adressMap .absoluteAdress p {
  font-size: 12px;
}

/*------------------------------------------------------
/ CSR
/------------------------------------------------------*/
#csrPageBanner {
  background: url("../images//bg/csr.jpeg") no-repeat center center/cover;
}
#csrPageBanner .pageBannerContent {
  padding: 119px 0 0;
}

/*------------------------------------------------------
/ Our Services
/------------------------------------------------------*/

#manufacturingSystem video {
  width: 100%;
  margin-top: 10px;
}
