.no-js .top-bar {
  display: none;
}

.content-padding .graph small a {
  color: #2735a6 !important;
  font-size: 11px;
}

.content-padding .graph small {
  font-size: 11px;
}

@media screen and (min-width: 40em) {
  .no-js .top-bar {
    display: block;
  }

  .no-js .title-bar {
    display: none;
  }
}

@media screen and (max-width: 1290px) {
  .top-bar .header .top-menu ul li a {
    font-size: 14px;
  }
}

@media screen and (max-width: 1200px) {
  .top-bar .header {
    width: 100%;
  }
}

.content-bg .board-title ul.board-listing li {
  border-bottom: 2px solid #25362e;
  /*font-family: 'helve-light', sans-serif;*/
  font-family: "product-sans-regular", sans-serif;
  letter-spacing: 1px;
  line-height: 1;
  list-style-type: none;
  margin-bottom: 15px;
  padding: 10px 10px 5px;
  transition: 0.2s;
  width: fit-content;
  width: -moz-fit-content;
}

.content-bg .board-title ul.board-listing li:focus,
.content-bg .board-title ul.board-listing li:hover {
  background-color: #25362e;
  color: #ffffff;
}

hr.board-hr {
  border-bottom: 3px solid #5f9e45;
  width: 100%;
}

.content-bg .annual-report .annual-report-block {
  margin-bottom: 3rem;
}

.content-bg .annual-report h3.years {
  border-bottom: 2px solid #25362e;
  color: #25362e;
  /*font-family: 'helve-boldcn', sans-serif;*/
  font-family: "product-sans-bold", sans-serif;
  font-size: 50px;
  line-height: 1;
  margin-bottom: 1rem;
  width: fit-content;
  width: -moz-fit-content;
}

.announcement-bg {
  backface-visibility: hidden;
  background-image: linear-gradient(480deg, #3d52b852, #5f9e45ab),
    url(../images/announcement-bg.jpg);
  background-position: 100% 20%;
}

.content-bg .cor-img img {
  margin: 0 0 2rem;
  width: auto;
}

.content-bg .contact-title h2 {
  border-bottom: 2px solid #bed7b0;
  color: #bed7b0;
}

/* Corporate Structure */
@media screen and (min-width: 991px) {
  .cor-desktop {
    display: block;
  }

  .cor-mobile {
    display: none;
  }
}

@media screen and (max-width: 990px) {
  .cor-desktop {
    display: none;
  }

  .cor-mobile {
    display: block;
  }
}

/* About Us - 21122020 */
.content-bg .companyOverview p {
  margin-bottom: 10px;
}

.content-bg .companyOverview ul li {
  list-style-type: decimal;
}

@media screen and (max-width: 1023px) {
  .content-bg .companyOverview p {
    font-size: 16px !important;
  }
}

@media screen and (max-width: 639px) {
  .content-bg .companyOverview p {
    font-size: 14px !important;
  }
}

/* Director Chart - refined with fixed card height */
.director-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem; /* tighter row spacing */
  /*margin-top: 1rem;*/
}

.chart-row {
  display: flex;
  justify-content: center;
  gap: 3rem; /* less gap between cards */
  width: 100%;
}

.chart-row.single .director {
  max-width: 400px;
}

.chart-row.double .director {
  flex: 1 1 220px;
  max-width: 400px;
}

/* Card container */
.card-blue {
  background: transparent;
  border-radius: 12px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: stretch;   /* let child stretch */
}

/* Inner block with OneGlove gradient */
.card-blue .director-name {
  background: linear-gradient(90deg, #1e3a8a, #0078d7);
  color: #fff;
  border-radius: 12px;
  width: 100%;
  
  padding: 0.4rem 0.6rem;  /* 🔹 tighter padding = lower height */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  min-height: 60px;        /* 🔹 ensures compact card */
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.2s ease-in-out;
}

.card-blue:hover .director-name {
  transform: translateY(-4px);
}

/* Director name with gradient blue text + white outline */
.card-blue .director-name h6 {
  background: linear-gradient(90deg, #0056a3, #0078d7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  font-size: 0.75rem;       /* 🔹 smaller font */
  margin: 0;
  line-height: 1.1;
  font-weight: 700;
  text-align: center;

  /* Remove glowing outline */
  /* text-shadow: 
      1px 1px 2px #fff,
     -1px -1px 2px #fff,
      1px -1px 2px #fff,
     -1px  1px 2px #fff; */
	 
   /* subtle highlight for readability */
  text-shadow: 0 0 1px rgba(255, 255, 255, 5.0);
}

/* Director role */
.card-blue .director-name p {
  font-size: 0.65rem;      /* 🔹 smaller text */
  margin: 0.2rem 0 0;
  line-height: 1.2;
  color: #e0e0e0;
}

/* Inner block with OneGlove gradient */
.card-blue .director-name {
  background: linear-gradient(90deg, #1e3a8a, #0078d7);
  color: #fff;
  border-radius: 10px;
  width: 100%;

  /* 🔹 Control height strictly */
  height: 120px;           /* fixed smaller height */
  max-height: 120px;

  padding: 0.2rem;        /* minimal padding */
  display: flex;
  flex-direction: column;
  justify-content: center; /* center text inside */
  align-items: center;

  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
  transition: transform 0.2s ease-in-out;
  overflow: hidden;       /* hides anything that overflows */
}

.card-blue .director-name button:hover {
  background: #0078d7;
  color: #fff;
}

/* Background watermark effect */
.content-bg .content-padd .director .director-name::after {
  background-image: url("../images/oneglove-asset-bg.png");
  bottom: 0;
  opacity: 0;
  filter: drop-shadow(3px 3px 6px #fff)
          drop-shadow(-3px -3px 6px #fff);
}

.content-bg .content-padd .director:hover .director-name::after {
  opacity: 0;
}

/* Ensure text stays above the logo */
.content-bg .content-padd .director .director-name {
  position: relative;
  z-index: 1; /* keep text on top */
}

.content-bg .content-padd .director .director-name button {
  border-radius: 50px;
}

/* Mobile-specific fixes */
@media only screen and (max-width: 768px) {
  .chart-row {
    gap: 1rem; /* smaller gap on mobile */
  }
  
  /* Hide the watermark completely on mobile */
  .content-bg .content-padd .director .director-name::after {
    background-image: url("../images/oneglove-asset-bg.png");
    opacity: 0 !important;
	
  }

  /* Remove mobile “O” icon / focus indicator from div triggers */
  .director[data-open] {
    outline: none;                        /* remove focus ring */
    -webkit-tap-highlight-color: transparent; /* remove mobile tap highlight */
    -webkit-appearance: none;
    cursor: pointer;
  }
}

/* About Us - 28122020 */
.about-bg {
  background-image: linear-gradient(480deg, #25362e, #25362e),
    url(../images/mock-assets-6.jpg);
}

.charter-bg {
  background-image: linear-gradient(480deg, #25362e, #25362e),
    url(../images/mock-assets-29.jpg);
}

.director-bg {
  background-image: linear-gradient(480deg, #25362e, #25362e),
    url(../images/mock-assets-7.jpg);
}

.top-bar .header .top-menu ul li ul.nested li a {
  background-color: #25362e;
  color: #ffffff !important;
}

a.sub-1::after,
a.sub-2::after {
  transform: rotate(45deg);
}

.top-bar .header .top-menu ul li a:focus,
.top-bar .header .top-menu ul li a:hover {
  background-color: #bed7b0;
}

.menu .is-active > a {
  background-color: #bed7b0;
}

@media screen and (max-width: 1024px) {
  a.sub-1::after,
  a.sub-2::after {
    transform: none;
  }

  a.sub-1::after {
    border-color: #000 transparent transparent !important;
  }

  .top-bar .header .top-menu ul .slideIn4:hover ul li a::after,
  .top-bar .header .top-menu ul .slideIn4:focus ul li a::after {
    border-color: #000 transparent transparent !important;
  }
}

/* Director Coming Soon */
.coming-soon {
  display: grid;
  height: 300px;
  min-height: 300px;
  place-content: center;
  text-align: center;
}

@media screen and (max-width: 639px) {
  .director-coming-soon {
    height: 300px;
    min-height: 200px;
    padding: 0;
    top: 30px !important;
    width: 90%;
  }
}

/* Corporate Structure - New Graph */
.new-cor-desktop .cor-img {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin: 2rem 0;
  padding: 2rem 15px;
}

/*.new-cor-desktop .cor-img img {
  width: 100%;
  max-width: 1200px;
  backface-visibility: hidden;
}*/

.new-cor-desktop .cor-img h3 {
  color: #25362e;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.new-cor-mobile .cor-img {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin: 3rem 0 0;
  padding: 2rem 15px;
}

.new-cor-mobile .cor-img h3 {
  color: #25362e;
  margin-bottom: 15px;
  text-transform: uppercase;
}

@media all and (min-width: 991px) {
  .new-cor-desktop {
    display: block;
  }

  .new-cor-mobile {
    display: none;
  }
}

@media all and (max-width: 990px) {
  .new-cor-desktop {
    display: none;
  }

  .new-cor-mobile {
    display: block;
  }
}

/* Announcement | 27-Jan-2022 */
.policies-bg {
  background-image: linear-gradient(480deg, #25362e, #25362e),
    url(../images/mock-assets-6.jpg);
}

.policies-pdf .annual-img {
  border: 5px solid #25362e;
  position: relative;
}

.policies-pdf .annual-report .download-section h3 {
  margin: 0 0 1rem;
}

.policies-pdf .annual-report .download-section h3 span {
  border-bottom: 2px solid #25362e;
  display: inline-block;
  font-size: 12px;
  vertical-align: top;
}

.policies-pdf .annual-report .download-section a button {
  transition: 0.2s;
}

.policies-pdf .annual-report .download-section a button:focus,
.policies-pdf .annual-report .download-section a button:hover {
  background-color: #25362e;
  color: white !important;
}

/* AGM Document | 27-Jan-2022 */
.agm-bg {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.agm-bg h2 {
  align-items: center;
  display: flex;
}

.agm-bg h2 span {
  font-size: 12px;
  display: flex;
  height: 10%;
  margin: 0 5px 0 0;
}

@media screen and (max-width: 875px) {
  .agm-bg h2 {
    display: grid;
    margin: 2rem 0 0 0;
    place-content: center;
  }

  .agm-bg h2 span {
    display: none;
    height: unset;
    margin: 0;
  }
}

/* AMG Document Menu | 28-Jan-2022 */
li.agm-bg {
  background-color: #870101;
}

.white .header .top-menu ul li.agm-bg a {
  color: white !important;
}

@media screen and (max-width: 1024px) {
  li.agm-bg {
    align-items: flex-start;
  }
}

/* Board Charter | 02-March-2022 */
.boardcharter .bg-img {
  border: 2px solid #25362e;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 0 10px;
  min-height: 400px;
}

.boardcharter h3 {
  background-color: #25362e;
  color: white;
  font-size: 18px;
  padding: 5px;
  text-transform: uppercase;
}

/* Contact Us | 23-Jun-2022 */
.map-links {
  margin: 0 0 1.5rem;
}

.map-links h3 {
  border-bottom: 1px solid;
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 1rem;
  text-transform: uppercase;
  width: fit-content;
}

.map-links ul a li {
  display: inline-block;
  list-style-type: none;
  margin: 0 0 1rem 10px;
  padding: 0 0 0 3rem;
  position: relative;
  vertical-align: top;
}

.map-links ul a li .bg-icons {
  position: relative;
}

.map-links ul a:nth-child(1) li .bg-icons:before {
  background-color: #25362e;
  content: "";
  height: 30px;
  left: -40px;
  mask-image: url("../images/google-maps-svgrepo-com.svg");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-image: url("../images/google-maps-svgrepo-com.svg");
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  position: absolute;
  top: -2px;
  width: 30px;
}

.map-links ul a:nth-child(2) li .bg-icons:before {
  background-color: #25362e;
  content: "";
  height: 30px;
  left: -40px;
  mask-image: url("../images/waze-svgrepo-com.svg");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-image: url("../images/waze-svgrepo-com.svg");
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  position: absolute;
  top: -2px;
  width: 30px;
}

/* Contact Us | 23-Sept-2025 - Add Sales Section by Hakim */
/* Sales Section | match style with map-links */
.sales-section {
    margin-bottom: 30px;   /* adds space above the whole section */
    padding-bottom: 10px;  /* adds inner spacing */
    border-bottom: 1px solid #e0e0e0; /* optional: subtle line to separate */
}

.sales-email-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 1rem 0;
  font-size: 0.2rem;
  color: #444;
}

/* Email icon */
.sales-email-wrapper .email-icon {
  width: 22px;
  height: 22px;
  background: linear-gradient(90deg, #1e3a8a, #0078d7);
  mask-image: url("../images/email-address-svgrepo-com.svg"); /* <-- use an envelope SVG */
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  -webkit-mask-image: url("../images/email-address-svgrepo-com.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
}

/* Email link */
.sales-email {
  font-weight: normal;
  background: linear-gradient(90deg, #1e3a8a, #0078d7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  transition: opacity 0.3s;
}

.sales-email:hover {
  opacity: 0.8;
}

.sales-section .button {
  background: #a2e0e9;              /* default: light blue background */
  color: #1e3a8a !important;        /* force blue text */
  border: 1px solid #a2e0e9;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border 0.25s ease;
}

.sales-section .button:hover,
.sales-section .button:focus {
  background: #fff;
  color: #1e3a8a !important;        /* force blue text on hover too */
  border: 1px solid #a2e0e9;
}

/* Keep your base section-title style */
.sales-section .section-title {
  font-size: 1.8rem; /* smaller than the default 2rem */
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  text-align: center;
}

.sales-section .section-title span {
  font-size: 2.2rem;   /* keep Sales Team larger */
  font-weight: 700;  /* bold highlight */
  color: #0078d7;    /* same theme blue */
  position: relative;
}

.sales-section .section-title span::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #3431ff;
  margin: 6px auto 0;
  border-radius: 2px;
}

.home-full-slide .home-slide .slick-dots li button:before {
  background-color: #abdee0;
  border-radius: 50%;
}

.home-full-slide .home-slide .slick-arrow {
  width: auto;
  height: auto;
  z-index: 1;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.home-full-slide .home-slide .slick-arrow:before {
  vertical-align: middle;
  font-size: 6px;
  opacity: 1;
  content: "";
  width: 10em;
  height: 1px;
  display: inline-block;
  background: #abdee0;
}

.home-full-slide .home-slide .slick-prev {
  left: 20px;
  z-index: 1;
  -ms-transform: translate(0, -50%) rotate(180deg);
  -webkit-transform: translate(0, -50%) rotate(180deg);
  transform: translate(0, -50%) rotate(180deg);
}

.home-full-slide .home-slide .slick-next {
  right: 20px;
  z-index: 1;
}

.home-full-slide .home-slide .slick-arrow:after {
  vertical-align: middle;
  font-size: 6px;
  content: "";
  width: 3em;
  height: 3em;
  display: inline-block;
  border-radius: 50%;
  border: 1px solid #abdee0;
  background-repeat: no-repeat;
  background-size: 1em;
  background-position: center left 60%;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 7 9'%3e%3cpath fill='%23ABDEE0' fill-rule='evenodd' d='M6.456 4.311L.255.191v8.24l6.201-4.12z'/%3e%3c/svg%3e");
}

.home-full-slide .home-slide .slick-arrow:not(.slick-disabled):hover::before {
  -webkit-animation: arrow-right 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s
    1 normal forwards running;
  animation: arrow-right 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s 1
    normal forwards running;
}

.home-full-slide .home-slide .slick-arrow:not(.slick-disabled):hover::after {
  -webkit-animation: btn-pulse 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s 1
    normal forwards running;
  animation: btn-pulse 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s 1 normal
    forwards running;
}

/*.home-full-slide .home-slide .slick-prev:before { background-color: white; border-radius: 50px; color: #31bfc6; font-size: 40px; height: 40px; line-height: 1.1; left: 0; position: absolute; top: 0; width: 40px; }
.home-full-slide .home-slide .slick-next:before { background-color: white; border-radius: 50px; color: #31bfc6; font-size: 40px; height: 40px; line-height: 1.1; position: absolute; right: 0; top: 0; width: 40px; }*/
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.home-full-slide .home-slide .slick-next:before {
  vertical-align: middle;
  font-size: 6px;
  opacity: 1;
  content: "";
  width: 10em;
  height: 1px;
  display: inline-block;
  background: #abdee0;
}

.home-full-slide .home-slide .home-slide-item .slide1-desc img {
  margin: 0 0 1.3rem;
  max-width: 260px;
  width: 100%;
}

.home-full-slide .home-slide .home-slide-item .slide1-desc img.irgceLogo {
  margin: 0 0 1rem;
  max-width: 200px;
}

.home-full-slide .home-slide .home-slide-item .slide1-desc hr {
  border-bottom: 2px solid #ffffff;
  margin: 12px auto 12px 0;
  max-width: 80%;
  width: 100%;
}

.home-full-slide .home-slide .home-slide-item .slide1-desc h3 {
  font-size: 36px;
  line-height: 1.1;
  margin: 0 0 15px;
  text-shadow: 1px 1px 11px rgba(150, 150, 150, 1);
}

.home-full-slide .home-slide .home-slide-item .slide1-desc h4 {
  color: white;
  font-size: 22px;
  line-height: 1.1;
  margin: 0 0 10px;
  text-shadow: 1px 1px 11px rgba(150, 150, 150, 1);
}

.home-full-slide .home-slide .home-slide-item .slide1-desc h5 {
  color: white;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 15px;
  text-shadow: 1px 1px 11px rgba(150, 150, 150, 1);
}

.home-full-slide .home-slide .home-slide-item .slide1-desc p {
  color: white;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 1px 1px 11px rgba(150, 150, 150, 1);
}

.home-full-slide .home-slide .home-slide-item .slide1-desc ul {
  margin: 0;
}

.home-full-slide .home-slide .home-slide-item .slide1-desc ul li {
  list-style-type: none;
  margin: 0 0 5px;
}

.home-full-slide .home-slide .home-slide-item .slide1-desc ul li p {
  font-size: 16px;
}

.home-full-slide .home-slide .home-slide-item .slide1-desc button {
  background: #abdee0;
  border: 1px solid transparent;
  border-radius: 30px;
  color: #2422b2 !important;
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  height: auto;
  letter-spacing: 0.2em;
  margin: 15px 0 0;
  max-width: 150px;
  padding: 1em 1em;
  text-align: center;
  width: 100%;
}

.home-full-slide .home-slide .home-slide-item .slide1-desc img.qr-code {
  margin: 1rem auto 5px;
  max-width: 80px;
  width: 100%;
}

.home-full-slide .home-slide .home-slide-item .slide1-desc {
  background-color: #00000054;
  border-radius: 15px;
  bottom: 12%;
  left: unset;
  max-width: 40%;
  min-height: 300px;
  padding: 20px;
  right: 8%;
  position: absolute;
}

.home-full-slide .home-slide .home-slide-item .slide1-desc ul.event-link {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}

.home-full-slide .home-slide .home-slide-item .slide1-desc ul.event-link li {
  margin: 0 10px 0 0;
}

.content-bg,
.director-modal {
  background-image: unset;
}

.director-modal .director-profile .director-name h5 {
  background-image: linear-gradient(45deg, #3431ff, #31bfc6);
}

/*.content-bg .content-padd .director .director-name::after {
  background-image: url("../images/oneglove-asset-bg.png");
  bottom: 0;
}

.content-bg .content-padd .director:hover .director-name::after {
  opacity: 0.8;
}*/

.content-bg .content-padd .cert-box {
  box-shadow: 0px 0px 40px -27px #000000;
  -webkit-box-shadow: 0px 0px 40px -27px #000000;
  -moz-box-shadow: 0px 0px 40px -27px #000000;
  border: 1px solid #d6d6d6;
  text-align: center;
}

.content-bg .content-padd .cert-box img {
  margin: auto;
  max-width: 60%;
  width: 100%;
}

.content-bg .content-padd .series-title {
  margin: 0 0 20px;
}

.content-bg .content-padd .series-title h3 {
  font-size: 20px;
  text-transform: uppercase;
}

.content-bg .content-padd .product {
  background-color: white;
  border-radius: 15px;
  -webkit-box-shadow: 0px 0px 40px -27px #000000;
  -moz-box-shadow: 0px 0px 40px -27px #000000;
  position: relative;
}

.content-bg .content-padd .product .product-label span.new {
  background-color: #2422b2;
  border-radius: 50px;
  color: white;
  font-size: 12px;
  left: 10px;
  padding: 3px 10px;
  position: absolute;
  text-transform: uppercase;
  top: 10px;
  width: fit-content;
  width: -moz-fit-content;
}

.content-bg .content-padd .product .silk-logo.logo {
  bottom: 10px;
  position: absolute;
  right: 10px;
}

.content-bg .content-padd .product .silk-logo.logo img {
  width: 160px;
}

.content-bg .content-padd .product .product-label span.featured {
  background-color: #31bfc6;
  border-radius: 50px;
  color: white;
  font-size: 12px;
  left: 10px;
  padding: 3px 10px;
  position: absolute;
  text-transform: uppercase;
  top: 10px;
  width: fit-content;
  width: -moz-fit-content;
}

.content-bg .content-padd .product .product-img {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  height: 400px;
  overflow: hidden;
  position: relative;
}

.content-bg .content-padd .product .product-img > div.bg-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
  position: relative;
  transition: transform 0.5s ease;
}

.content-bg .content-padd .product:focus .product-img,
.content-bg .content-padd .product:hover .product-img > div.bg-image {
  transform: scale(1.1);
}

.content-bg .content-padd .product .product-info {
  min-height: 100px;
  padding: 10px;
  position: relative;
}

.content-bg .content-padd .product .product-info:before {
  background-image: url("../images/oneglove-asset-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border-bottom-right-radius: 15px;
  bottom: 0;
  content: "";
  height: 100px;
  opacity: 0;
  position: absolute;
  right: -40px;
  transition: 0.3s;
  width: 100px;
}

.content-bg .content-padd .product:hover .product-info:before {
  opacity: 0.4;
  right: 0;
}

.content-bg .content-padd .product .product-info h4 {
  background-color: #31bfc6;
  background-image: linear-gradient(90deg, #3431ff, #31bfc6 50%);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

.content-bg .content-padd .product .product-info ul {
  align-items: center;
  display: flex;
  flex-direction: row;
  height: 100%;
  margin: 0;
  padding: 0;
}

.content-bg .content-padd .product .product-info ul li {
  list-style-type: none;
  padding: 5px;
  width: 100%;
  z-index: 1;
}

.content-bg .content-padd .product .product-info ul li button {
  background: #abdee0;
  border: 1px solid transparent;
  border-radius: 30px;
  color: #2422b2 !important;
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  height: auto;
  letter-spacing: 0.2em;
  padding: 1em 1em;
  text-align: center;
  width: 100%;
}

.content-bg .content-padd .product .product-info p {
  color: #666666;
  font-size: 14px;
  text-transform: uppercase;
}

.content-bg .content-padd .product .product-info p a {
  background-color: #31bfc6;
  background-image: linear-gradient(90deg, #3431ff, #31bfc6 80%);
  border-bottom: 1px solid #31bfc6;
  font-size: 16px;
  text-decoration: underline;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

.content-bg .content-padd section:nth-child(1) {
  padding: 0;
}

.content-bg .content-padd section {
  padding: 2rem 0 0;
}

.content-bg .content-padd .copyright h3 {
  background-color: #31bfc6;
  color: white;
  font-size: 26px;
  margin: 0 0 1rem;
  padding: 0 15px;
  width: fit-content;
}

.content-bg .content-padd .copyright {
  margin: 0 0 2rem;
}

.content-bg .content-padd .copyright p {
  margin: 0 0 10px;
}

footer .footer-padd .address ul li p {
  color: #abdee0;
  font-weight: 700;
  margin: 10px 0 0;
}

footer .social-media-link {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  margin: 1rem 0 0;
  padding: 0;
}

footer .social-media-link li {
  height: 21px;
  margin: 0 10px 0 0;
  position: relative;
  width: 21px;
}

footer .social-media-link li a:hover:before {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

footer .social-media-link li a:before {
  background-color: white;
  bottom: 0;
  content: "";
  height: 21px;
  left: 0;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  position: absolute;
  width: 21px;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}

footer .social-media-link li.fb a:before {
  mask-image: url("../images/facebook.svg");
  -webkit-mask-image: url("../images/facebook.svg");
}

footer .social-media-link li.yt a:before {
  mask-image: url("../images/youtube.svg");
  -webkit-mask-image: url("../images/youtube.svg");
}

footer .social-media-link li.ig a:before {
  mask-image: url("../images/instagram.svg");
  -webkit-mask-image: url("../images/instagram.svg");
}

footer .social-media-link li.lk a:before {
  mask-image: url("../images/linkedin.svg");
  -webkit-mask-image: url("../images/linkedin.svg");
}

#backToTop {
  border: 1px solid #abdee0;
  border-radius: 50px;
  bottom: 20px;
  color: white;
  cursor: pointer;
  display: none;
  font-size: 13px;
  height: 40px;
  outline: none;
  padding: 18px 15px;
  position: fixed;
  right: 30px;
  transition: 0.4s;
  width: 40px;
  z-index: 99;
}

#backToTop:hover {
  transform: scale(1.3);
}

#backToTop div {
  bottom: 16px;
  height: 10px;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  width: 10px;
}

#backToTop div:before {
  background-image: url("../images/arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";
  height: 20px;
  left: 10px;
  margin: auto;
  position: absolute;
  right: 10px;
  transform: rotate(270deg);
  top: 0;
  width: 20px;
}

.top-bar .header {
  max-width: 90%;
  width: 100%;
}

@media screen and (max-width: 1023px) {
  .top-bar {
    top: 53px !important;
  }

  .content-bg .content-padd .product .product-info:before {
    opacity: 0.15;
    right: 0;
  }

  .home-full-slide .home-slide .home-slide-item .slide1-desc {
    bottom: 15px;
    left: 10px;
    max-width: 100%;
    right: 10px;
  }
}

@media screen and (max-width: 639px) {
  .director-modal .director-profile {
    border-bottom: 2px solid #3431ff;
  }

  .content-bg .content-padd .cert-box img {
    max-width: 40%;
  }

  .content-bg .content-padd .copyright {
    margin: 0 0 2rem;
  }

  .content-bg .content-padd .copyright p {
    font-size: 14px;
  }

  .home-full-slide .home-slide .home-slide-item .slide1-desc img {
    max-width: 220px;
  }

  .home-full-slide .home-slide .home-slide-item .slide1-desc h3 {
    font-size: 30px;
  }

  .home-full-slide .home-slide .slick-next,
  .home-full-slide .home-slide .slick-prev {
    display: none !important;
  }

  .home-full-slide .home-slide .home-slide-item {
    height: calc(80vh - 1px);
  }

  .home-full-slide .home-slide .slick-dots li button:before {
    height: 15px;
    width: 15px;
  }

  /*.content-bg .content-padd .product .product-info ul { display: block; flex-direction: unset; }*/
}

@media screen and (max-width: 450px) {
  .home-full-slide .home-slide .home-slide-item .slide1-desc h3 {
    font-size: 24px;
  }

  .home-full-slide .home-slide .home-slide-item .slide1-desc p {
    font-size: 22px;
  }

  .home-full-slide .home-slide .home-slide-item .slide1-desc h5 {
    font-size: 18px;
  }

  .home-full-slide .home-slide .home-slide-item .slide1-desc h3.annual-title {
    font-size: 40px;
  }
}

/* One Glove Update - 30-August-2022 */
.grid-container.new-cor-desktop {
  max-width: 1200px;
  margin: auto;
}

.new-cor-desktop .cor-img img {
  margin: 0 0 2rem;
  width: auto;
}

.new-cor-desktop .cor-img p {
  font-size: 20px;
}

/* One Glove Update - 1-September-2022 */
.successMsg h3,
.successMsg h4,
.successMsg p {
  background-color: #31bfc6;
  background-image: linear-gradient(90deg, #3431ff, #31bfc6 70%);
  font-family: "Product Sans", sans-serif;
  font-weight: 700;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

.content-bg .content-padd .product .product-info ul a {
  width: 100%;
}

.successMsg img {
  margin: auto auto 2rem;
  width: 100px;
}

@media screen and (max-width: 639px) {
  .amfori-logo .slide1-desc img {
    max-width: 80% !important;
  }
}

input[type="number"] {
  -moz-appearance: textfield;
}

/* Youtube Link */
.yt-thumb-frame {
  height: 300px;
  overflow: hidden;
  margin: 0 0 20px;
  position: relative;
}

.yt-video-thumb {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  cursor: pointer;
  margin: 0 0 10px;
  min-height: 300px;
  position: relative;
  transition: transform 0.2s ease;
}

.yt-video-thumb:hover {
  transform: scale(1.1);
}

.yt-title {
  background-color: #31bfc6;
  background-image: linear-gradient(90deg, #3431ff, #31bfc6);
  font-size: 30px;
  font-weight: 700;
  margin: 0;
  text-align: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.yt-thumb-frame:before {
  align-items: center;
  background-image: url("../images/youtube.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  content: "";
  display: flex;
  height: 100%;
  left: 0;
  margin: auto;
  right: 0;
  position: absolute;
  width: 80px;
  z-index: 1;
}

.one-glove-yt-box {
  background-color: #2422b2;
  background-image: url("https://www.oneglovegroup.com/images/deco-circle.svg");
  background-repeat: no-repeat;
  background-size: 370px;
  background-position: right -90px top -130px;
  border: 0;
  max-width: 700px;
  position: relative;
  width: 100%;
}

.one-glove-yt-box h2 {
  color: white;
  border-bottom: 1px solid #cccccc;
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 10px;
  padding: 0 0 10px;
  text-align: center;
}

.one-glove-yt-box div#___ytsubscribe_0 {
  height: auto;
}

.one-glove-yt-box div#___ytsubscribe_0 > iframe {
  overflow: unset;
  height: 60px !important;
}

.one-glove-yt-box button.close-button {
  background-color: #ff0000;
  border-radius: 100%;
  font-size: unset;
  padding: 5px 6px;
}

.one-glove-yt-box button.close-button span {
  color: white;
  font-size: 22px;
  line-height: 0;
  height: auto;
  padding: 0;
}

@media screen and (max-width: 649px) {
  .one-glove-yt-box {
    height: auto;
    margin: auto;
    max-width: 95%;
    min-height: unset;
    top: 2%;
    width: 100%;
  }
}

.slick-slider .slider-item,
.slider-item {
  display: none;
}

.slick-initialized .slider-item {
  display: block;
}

html.is-reveal-open.zf-has-scroll {
  overflow-y: unset;
}

html.is-reveal-open {
  position: unset;
  width: 100%;
  /* overflow-y: hidden; */
}

/* Home Slider - 04-Oct-2022 */
.home-full-slide .home-slide .medica .slide1-desc {
  width: 100%;
}

.home-full-slide .home-slide .medica .slide1-desc h5 {
  margin: 0 0 10px;
}

.home-full-slide .home-slide .medica .slide1-desc .medica-flex {
  align-items: center;
  display: flex;
  justify-content: flex-start;
}

.home-full-slide .home-slide .medica .slide1-desc .medica-flex ul {
  margin: 0 0 0 20px;
}

.home-full-slide .home-slide .medica .slide1-desc .medica-flex ul li p {
  font-size: 22px;
}

.home-full-slide .home-slide .medica .slide1-desc h3 {
  font-size: 26px;
}

@media screen and (max-width: 1023px) {
  .home-full-slide .home-slide .medica .slide1-desc {
    width: auto;
  }
}

@media screen and (max-width: 991px) {
  .home-full-slide .home-slide .medica .slide1-desc .medica-flex ul li p {
    font-size: 18px;
  }
}

.content-bg .content-padd .cert-box {
  height: 100%;
}

.cert-test .cert-box.cert-box-1 {
  align-items: center;
  display: flex;
  position: relative;
  transition: 0.3s;
}

.cert-test .cert-box.cert-box-1:before {
  border: none;
  content: "";
  transition: 0.3s;
}

.cert-test .cert-box.cert-box-1:hover:before {
  border: 8px solid #000000;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  width: 100%;
}

.cert-test .cert-box.cert-box-2 {
  align-items: center;
  display: flex;
  position: relative;
  transition: 0.3s;
}

.cert-test .cert-box.cert-box-2:before {
  background-color: transparent;
  content: "";
  transition: 0.3s;
}

.cert-test .cert-box.cert-box-2:hover:before {
  background-color: #00000057;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  width: 100%;
}

.cert-test .cert-box.cert-box-1:after,
.cert-test .cert-box.cert-box-2:after {
  -webkit-box-shadow: 0px 0px 25px 0px rgba(255, 255, 255, 1);
  -moz-box-shadow: 0px 0px 25px 0px rgba(255, 255, 255, 1);
  box-shadow: 0px 0px 25px 0px rgba(255, 255, 255, 1);
  background-image: url("../images/cert-search.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  border-radius: 100%;
  content: "";
  height: 60px;
  left: 0;
  margin: auto;
  opacity: 0;
  position: absolute;
  right: 0;
  transition: 0.3s;
  width: 60px;
}

.cert-test .cert-box.cert-box-1:hover:after,
.cert-test .cert-box.cert-box-2:hover:after {
  opacity: 1;
}

/* Home Banner | 06-March-2023 */
.home-full-slide .home-slide .home-slide-item .slide1-desc {
  bottom: 3%;
  right: 3%;
}

.home-full-slide .home-slide .home-slide-item .slide1-desc .image-logo {
  align-items: center;
  display: flex;
  margin: 15px 0 1rem;
}

.home-full-slide .home-slide .home-slide-item .slide1-desc img {
  max-width: 240px;
}

.home-full-slide .home-slide .home-slide-item .slide2-desc .image-logo img {
  max-width: 80%;
}

.home-full-slide .home-slide .home-slide-item .slide1-desc h4 {
  text-transform: uppercase;
}

@media screen and (max-width: 639px) {
  .home-full-slide .home-slide .home-slide-item .slide1-desc {
    min-height: 240px;
  }

  .home-full-slide .home-slide .home-slide-item .slide1-desc .image-logo {
    margin: 15px 0 2rem;
  }

  .home-full-slide .home-slide .home-slide-item .slide1-desc img {
    margin: 0;
  }

  .home-full-slide .home-slide .home-slide-item .slide1-desc h4 {
    font-size: 18px;
    margin: 0 0 15px;
  }

  .home-full-slide .home-slide .home-slide-item .slide1-desc h5 {
    font-size: 18px;
  }
}

/*  Policies | 27-July-2023  */
.content-bg .annual-report .download-section h3 {
  font-size: 18px;
}

/* Home Banner | 28-July-2023 */
.home-full-slide .home-slide .home-slide-item .slide2-desc .image-logo img {
  margin: auto;
  max-width: 70%;
}

#oneglove-event {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  text-align: center;
}
#oneglove-event button {
  background-color: #333333;
  border-radius: 50px;
  height: 7%;
  right: 5%;
  top: 2%;
  width: 9%;
}
#oneglove-event button p {
  color: #ffffff;
  margin: 0;
}
@media screen and (max-width: 767px) {
  #oneglove-event {
    max-width: 450px;
  }
  #oneglove-event button {
    right: 3%;
  }
}
@media screen and (max-width: 639px) {
  #oneglove-event {
    height: unset !important;
    margin: 10px auto auto !important;
    max-width: 450px;
    min-height: unset !important;
  }
}

.white .header .top-menu ul li.agm-bg a {
  color: #ffffff;
}

