@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@import url("./slick.css");

:root {
  --red: #df0b0c;
  --white: #fff;
  --black: #111;
  --gray: #2d2d2d;
}

body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "slnt" 0;
  margin: 0;
  padding: 0;
}

.header {
    position: relative;
    z-index: 2;
}

.header-notification {
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-notification {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: var(--white);
  background-color: var(--gray);
}

.header-notification a {
  line-height: 18px;
  text-decoration: none;
  padding: 6px 10px;
  color: var(--gray);
  border-radius: 20px;
  display: inline-block;
  margin-left: 7px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.5s;
}

.header-notification a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--white);
  transition: width 0.3s;
}

.header-notification a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  z-index: -1;
  background-color: var(--red);
  transition: width 0.3s;
}

.header-notification a:hover {
    color: var(--white);
  transition: color 0.5s;
}

.header-notification a:hover::before {
  width: 0;
}

.header-notification a:hover::after {
  width: 100%;
}

.header {
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #111;
}

.header .logo img {
  width: 100%;
  height: auto;
  display: block;
  border: none;
}

.header .menu {
  display: flex;
  align-items: center;
}

.header .menu nav ul {
  margin: 0;
  padding: 0;
  display: flex;
}

.header .menu nav ul li {
  list-style: none;
  position: relative;
}

.header .menu nav ul li.submenu {
  padding-right: 10px;
}

.header .menu nav ul li.submenu::after {
  content: "";
  font-size: 12px;
  border: solid var(--white);
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  position: absolute;
  right: 0px;
  top: 17px;
}

.header .menu nav ul li a,
.header .menu nav ul li span {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: var(--white);
  text-decoration: none;
  padding: 10px;
  display: block;
}

.header .menu nav ul li.submenu ul li a {
  display: block;
  font-size: 15px;
}

.header .menu .get-in-touch a {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  padding: 11px 18px;
  text-decoration: none;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.header .menu .get-in-touch a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--red);
  transition: width 0.3s;
}

.header .menu .get-in-touch a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  z-index: -1;
  background-color: var(--white);
  transition: width 0.3s;
}

.header .menu .get-in-touch a:hover {
    color: var(--black);
  transition: color 0.5s;
}

.header .menu .get-in-touch a:hover::before {
  width: 0;
}

.header .menu .get-in-touch a:hover::after {
  width: 100%;
}

.main-banner-item {
  position: relative;
}

.main-banner-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 26%,
    rgba(0, 0, 0, 0.9) 100%
  );
}

.main-banner-item img {
  height: auto;
  display: block;
}

.main-banner-item-caption {
  position: absolute;
  max-width: 1100px;
  width: calc(100% - 32px);
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 2;
  text-align: center;
}

.main-banner-item-caption h1 {
  font-family: "Playfair Display", serif;
  font-family: 700;
  color: #fff;
  margin: 0 0 10px;
  text-align: center;
}

.main-banner-item-caption p {
  font-family: 500;
  color: #fff;
  text-align: center;
}

.main-banner-item-caption a {
  display: inline-block;
  color: var(--white);
  text-decoration: none;
  position: relative;
}

.main-banner-item-caption a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  z-index: -1;
  background-color: var(--black);
  transition: width 0.3s;
}

.main-banner-item-caption a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--red);
  transition: width 0.3s;
}

.main-banner-item-caption a:hover::before {
  width: 100%;
}

.main-banner-item-caption a:hover::after {
  width: 0;
}

.main-banner .slick-dots {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
}

.main-banner .slick-arrow {
  position: absolute;
  z-index: 1;
  filter: brightness(0) invert(1);
}

.heading-side h2 {
  font-family: "Playfair Display", serif;
  font-family: 700;
  color: var(--black);
}

.heading-side p {
  font-family: 500;
  color: #555555;
}

.common-button {
  font-size: 13px;
  line-height: 20px;
  text-decoration: none;
  color: var(--black);
  padding: 10px 20px;
  border: 2px solid var(--black);
  display: inline-block;
  position: relative;
  background: none;
  cursor: pointer;
}

.common-button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  z-index: -1;
  background-color: var(--black);
  transition: width 0.3s;
}

.common-button:hover {
  color: var(--white);
}

input[type="submit"].common-button:hover {
    background: #000 !important;
}

.common-button:hover::before {
  width: 100%;
}

.h-product-item {
  background-color: var(--white);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.h-product-item a {
  text-decoration: none;
}

.h-product-img {
  position: relative;
}

.h-product-img img {
  width: 100%;
  display: block;
  border: none;
}

.h-product-cat {
  padding: 5px 10px;
  border: 1px solid var(--white);
  font-size: 12px;
  line-height: 20px;
  position: absolute;
  top: 20px;
  left: 20px;
  color: var(--white);
}

.h-product-text h3 {
  font-weight: 500;
  color: var(--black);
  margin: 0 0 10px;
}

.h-product-text ul {
	margin: 0 0 0 18px;
	padding: 0;
}

.h-product-text p,
.h-product-text ul li {
  font-weight: 500;
  color: #777;
  margin: 0;
  font-size: 13px;
  line-height: 18px;
}

.product-slider .slick-dots {
  position: absolute;
  justify-content: center;
}

.product-slider .slick-dots li button {
  background-color: #d9d9d9;
}

.product-slider .slick-dots li.slick-active button {
  background-color: #000;
}

.digital-solutions {
  width: calc(100% - 32px);
  max-width: 790px;
  margin: 0 auto;
}

.ds-contents {
  display: none;
}

.ds-contents.active {
  display: block;
}

.digital-solutions .heading {
  margin-bottom: 35px;
}

.digital-solutions .heading h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--black);
  text-align: center;
}

.digital-solutions .heading h3 {
  margin: 0 0 10px;
  font-weight: 400;
  color: var(--black);
  text-align: center;
}

.ds-tabs span {
  font-weight: 700;
  color: #999999;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
  cursor: pointer;
}

.ds-tabs span.active {
  color: var(--black);
  border-bottom-color: var(--black);
}

.ds-contents {
  text-align: center;
}

.ds-contents .ds-block {
  width: calc(100% - 32px);
  max-width: 775px;
  margin: 0 auto;
}

.ds-contents .ds-content h3 {
  font-weight: 700;
  color: var(--black);
  font-family: "Playfair Display", serif;
}

.ds-contents .ds-content p {
  font-weight: 500;
  color: #555555;
  margin: 0;
}

.display-partner {
  position: relative;
}

.display-partner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.display-partner .wp-block-columns {
    margin: 0 !important;
}

.display-partner figure {
    margin: 0 !important;
}

.display-partner img {
  display: block;
  border: none;
}

.display-partner .dp-caption {
  position: absolute;
  z-index: 1;
  max-width: 400px;
  width: calc(100% - 32px);
  margin: 0 auto;
}

.display-partner .dp-caption h2 {
  font-weight: 700;
  color: var(--white);
  font-family: "Playfair Display", serif;
  margin: 0 0 14px;
}

.display-partner .dp-caption h4 {
  font-weight: 700;
  color: var(--white);
  margin: 0 0 4px;
}

.display-partner .dp-caption p {
  font-weight: 500;
  color: var(--white);
}

.dp-counts {
  display: flex;
}

.dp-counts > div {
  margin-right: 50px;
}

.dp-counts > div:last-child {
  margin-right: 0px;
}

.dp-counts > div p {
  margin: 0 !important;
}

.type-of-products {
  background-color: #f8f8f8;
}

.type-of-products h2 {
  max-width: 1100px;
  margin: 0 auto;
  font-family: "Playfair Display", serif;
  font-weight: bold;
  color: var(--black);
  text-align: center;
}

.top-slider {
  padding: 0 15px;
}

.top-slider-item {
  margin: 0 15px;
  border: 1px solid #eee;
  box-sizing: border-box;
}

.top-slider-item img {
  width: 100%;
  display: block;
  border: none;
}

.top-slider-caption {
  background-color: var(--white);
  position: relative;
}

.top-slider-caption h3 {
  margin: 0 0 10px;
  font-weight: 500;
  color: var(--black);
}

.top-slider-caption p {
  margin: 0 0 10px;
  font-weight: 500;
  color: #777777;
  font-size: 13px;
  line-height: 20px;
}

.top-slider-caption a {
  color: var(--red);
  text-decoration: none;
  font-size: 13px;
  line-height: 18px;
  position: absolute;
  padding-bottom: 1px;
  /*border-bottom: 1px solid var(--red);*/
}

.top-slider-caption a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--red);
    position: absolute;
    left: 0;
    bottom: 0;
    transition: 0.3s;
}

.top-slider-caption a:hover::before {
  width: 100%;
}

.top-slider .slick-dots {
  position: absolute;
  justify-content: center;
}

.top-slider .slick-dots li button {
  background-color: #d9d9d9;
}

.top-slider .slick-dots li.slick-active button {
  background-color: #000;
}

.collaboration-solutions .container {
  width: calc(100% - 32px);
  max-width: 1100px;
  margin: 0 auto;
}

.collaboration-solutions .cs-content h2 {
  font-family: "Playfair Display", serif;
  font-weight: bold;
  color: var(--black);
  margin: 0 0 10px;
}

.collaboration-solutions .cs-content p {
  font-weight: 500;
  color: #555555;
}

.cs-list .cs-item {
  display: flex;
  align-items: center;
  flex: var(--white);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #cccccc;
}

.cs-list .cs-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.cs-list .cs-item .cs-item-text {
  width: calc(100% - 175px);
  margin-right: 40px;
}

.cs-list .cs-item .cs-item-text h4 {
  font-weight: 600;
  font-size: 22px;
  list-style: 30px;
  color: var(--red);
  margin: 0 0 5px;
}

.cs-list .cs-item .cs-item-text p {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #777777;
  margin: 0;
}

.cs-list .cs-item .cs-item-img {
  width: 135px;
  height: auto;
}

.cs-list .cs-item .cs-item-img img {
  width: 100%;
  height: auto;
  display: block;
  border: none;
}

.top-selling-brands {
  background-color: #f8f8f8;
}

.top-selling-brands h2 {
  font-family: "Playfair Display", serif;
  font-weight: bold;
  color: var(--black);
  text-align: center;
}

.page-content .top-selling-brands .tsb-list {
    flex-wrap: wrap !important;
}

.tsb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0 !important;
}

.tsb-list .tsb-item{
  flex-basis: auto !important;
  flex-grow: unset !important;
}

.tsb-list .tsb-item figure {
    margin: 0 !important;
}

.tsb-list .tsb-item img {
  display: block;
  max-width: 100%;
  height: auto !important;
  object-fit: unset !important;
}

.ac-item img {
  width: 30px;
  height: 30px;
}

.ac-item h3 {
  font-family: "Playfair Display", serif;
  font-weight: bold;
  color: var(--black);
  margin: 10px 0 15px;
}

.ac-item p {
  font-weight: 500;
  color: var(--black);
  font-size: 14px;
  line-height: 24px;
  margin: 0px 0 15px;
}

.ac-item p strong,
.ac-item p a {
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
}

.ac-item input[type="text"],
.ac-item input[type="email"] {
  padding: 15px;
  border: 1px solid #e7e7e7;
  background-color: #fafafa;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 18px;
  color: var(--black);
  margin-bottom: 15px;
}

.footer {
  background-color: #000;
}

.footer .container {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 40px);
  margin: 0 auto;
  max-width: 820px;
}

.footer .copyright {
  padding: 26px;
  background-color: #1f1f1f;
  font-size: 12px;
  line-height: 18px;
  color: var(--white);
  text-align: center;
}

.fc-item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.fc-item:last-child {
  margin-bottom: 0;
}

.fc-item h4 {
  font-weight: 400;
  color: var(--white);
  width: 75px;
  font-size: 12px;
  line-height: 18px;
  margin: 0 10px 0 0;
}

.fc-item p {
  color: #aaaaaa;
  width: calc(100% - 75px - 10px);
  font-size: 12px;
  line-height: 18px;
  margin: 0;
}

.fc-item p a {
  color: #aaaaaa;
  text-decoration: none;
  font-size: 12px;
  line-height: 18px;
  display: inline-block;
  margin-right: 15px;
}

.fc-item p a:last-child {
  margin-right: 0;
}

.fc-item p a:hover {
  color: var(--white);
}

.footer-logo {
  margin-bottom: 40px;
}

.footer-logo img {
  width: 120px;
  height: auto;
  display: block;
  border: none;
}

.main-inner-banner-item {
  position: relative;
}

.main-inner-banner-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 26%,
    rgba(0, 0, 0, 0.9) 100%
  );
}

.main-inner-banner-item img {
  height: auto;
  display: block;
}

.main-inner-banner-item-caption {
  position: absolute;
  max-width: 1300px;
  width: calc(100% - 32px);
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 2;
  text-align: center;
}

.main-inner-banner-item-caption h1 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  text-align: center;
}

.main-inner-banner-item-caption p {
  font-family: 500;
  color: #fff;
  text-align: center;
}
  
.category-listing-page {
    max-width: 1290px;
    width: calc(100% - 32px);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

.categories-listing-container {
  background: #F9FAFB;
  box-sizing: border-box;
}

.categories-listing-container h1 {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: var(--black);
  text-transform: uppercase;
}

.categories-listing-container ul {
    margin: 0;
    padding: 0;
}

.categories-listing-container ul li {
    list-style: none;
    cursor: pointer;
    margin: 0 0 20px;
}

.categories-listing-container ul li a {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
    color: var(--black);
    text-decoration: none;
    padding-left: 32px;
    position: relative;
}

.categories-listing-container ul li a::before {
    content: '';
    width: 18px;
    height: 18px;
    border: 1.5px solid #374151;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: -1.5px;
}

.categories-listing-container ul li.active a::before{
    background: url(https://atlasdisplays.com/wp-content/uploads/2024/04/check-svgrepo-com-1.svg) no-repeat center center;
    border: none;
}

.categories-listing-container .mobile-select-category {
    display: none;
    padding: 15px;
    position: relative;
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
    background: #f5f5f5;
    border-radius: 7px;
    color: #ee5e69;
}

.categories-listing-container .mobile-select-category-close {
    display: none;
    width: 40px;
    height: 40px;
    font-size: 24px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99999999;
    background: #f00;
}

.categories-listing-container .mobile-select-category::after {
    content: '';
    font-size: 12px;
    content: "";
    border: solid #ee5e69;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 2px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    position: absolute;
    right: 15px;
    top: 22px;
}

.product-listing-container {
    display: flex;
    flex-wrap: wrap;
}

.post-item {
    border: 1px solid #E5E7EB;
    box-sizing: border-box;
    padding: 20px;
    position: relative;
}

.post-item img {
    max-width: 100%;
    display: block;
    border: none;
    margin: 0 auto;
}

.post-item h2 {
    font-weight: 500;
    color: var(--black);
    white-space: nowrap; 
      width: 100%; 
      overflow: hidden;
      text-overflow: ellipsis; 
}

.post-item p {
    font-weight: 400;
    color: var(--black);
    margin: 0;
}

.post-item p strong {
    font-weight: 700;
}

.pd-button {
    position: absolute;
    width: 100%;
    padding: 25px 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pd-button .text-button {
 text-decoration: none;   
 color: var(--red);
 font-size: 12px;
 line-height: 29px;
 position: relative;
}

.pd-button .text-button::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--red);
    position: absolute;
    left: 0;
    bottom: 2px;
    transition: 0.3s;
}

.pd-button .text-button:hover::before {
  width: 100%;
}

.pd-button .post-item-button {
 text-decoration: none;   
 color: var(--black);
 font-weight: 700;
 font-size: 12px;
 line-height: 29px;
 border: 2px solid var(--black);
 padding: 0px 12px;
 position: relative;
 transition: 0.3s;
}

.pd-button .post-item-button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--white);
  transition: width 0.3s;
}

.pd-button .post-item-button::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  z-index: -1;
  background-color: var(--red);
  transition: width 0.3s;
}

.pd-button .post-item-button:hover {
    color: var(--white);
  transition: color 0.5s;
  border-color: var(--red);
}

.pd-button .post-item-button:hover::before {
  width: 0;
}

.pd-button .post-item-button:hover::after {
  width: 100%;
}

.page-main-text {
    text-align: center;
    width: calc(100% - 32px);
    max-width: 1290px;
}

.page-main-text h2 {
    margin: 0 0 20px;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    color: var(--black);
}

.page-main-text p {
    margin: 0 0 16px !important;
    font-size: 14px;
    line-height: 24px;
    color: var(--black);
}

.page-main-text p:last-child {
    margin-bottom: 0 !important;
}

.pd-s-desc ul,
.pd-s-desc ol {
    margin: 0 0 0 18px;
    padding: 0;
}

.pd-s-desc ul li,
.pd-s-desc ol li,
.pd-s-desc p {
    margin: 0 0 5px;
    font-size: 12px;
    line-height: 14px;
}

.pagination-container {
    width: 100%;
    text-align: center;
    margin: 25px 0 0;
}

.pagination-container span,
.pagination-container a {
    text-decoration: none;
    font-size: 12px;
    line-height: 18px;
    margin: 0 3px;
    display: inline-block;
    padding: 3px 7px;
    color: var(--block);
    border: 1px solid #D1D5DB;
    min-width: 15px;
    text-align: center;
}

.pagination-container span {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.all-category-listing {
    max-width: 1290px;
    width: calc(100% - 32px);
}

.all-category-listing h3 {
    margin: 0 0 30px;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    color: var(--black);
    text-align: center;
}
    
.all-category-listing-list {
    display: flex;
    flex-wrap: wrap;
	justify-content: center;
}

.all-category-listing-list a {
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    color: var(--black);
    text-align: center;
    margin-bottom: 20px;
}

.all-category-listing-list a img {
    max-width: 100%;
    height: auto;
    display: block;
    border: none;
    margin: 0 auto 20px;
}

.product-extra-description,
.pd-extra-tabs {
    max-width: 1100px;
    width: calc(100% - 32px);
    margin: 0 auto;
}

.product-extra-description h1,
.product-extra-description h2,
.product-extra-description h3,
.product-extra-description h4 {
    margin: 0 0 20px;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    color: var(--black);
    text-align: center;
}

.product-extra-description h1 {
    font-size: 32px;
    line-height: 38px;
}

.product-extra-description h2 {
    font-size: 30px;
    line-height: 36px;
}

.product-extra-description h3 {
    font-size: 28px;
    line-height: 36px;
}

.product-extra-description h4 {
    font-size: 25px;
    line-height: 32px;
}

.product-extra-description h5 {
    margin: 0 0 20px;
    font-size: 22px;
    line-height: 30px;
    text-align: center;
}

.product-extra-description h6 {
    margin: 0 0 20px;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
}

.product-extra-description p {
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
}

.product-extra-description ul,
.product-extra-description ol {
    margin: 0 0 30px 18px;
    padding: 0;
}

.product-extra-description ul li,
.product-extra-description ol li{
    margin: 0 0 7px;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
}

#product-specification ul li,
#product-specification ol li,
#product-specification p {
	text-align: left !important;
}

.product-extra-description img {
    width: 60%;
    height: auto;
    display: block;
    margin: 0 auto 30px;
    border: none;
    transform: scale(1,1);
    transition: 0.3s;
}

.product-extra-description img:hover {
    transform: scale(1.02,1.02);
}

.product-specification table,
.product-extra-description table {
    width: 100%;
    border-left: 1px solid #ccc;
    border-top: 1px solid #ccc;
    margin-bottom: 30px;
}

.product-specification table tr th,
.product-extra-description table tr th {
    font-weight: bold;
    background: #eee;
}

.product-specification table tr th,
.product-extra-description table tr th,
.product-specification table tr td,
.product-extra-description table tr td {
    padding: 7px 10px;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.responsive-table{
    width: 100%;
    overflow-x: scroll;
}

.similar-products {
    max-width: 1268px;
    width: calc(100% - 32px);
    margin: 75px auto 0;
}

.similar-products h3 {
    margin: 0 0 20px;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    color: var(--black);
    font-size: 30px;
    line-height:38px;
}
    
.similar-products-list .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    z-index: 3;
}

.product-section {
    max-width: 1100px;
    width: calc(100% - 32px);
}

.gallery-thumbnails-container {
    width: 100%;
    margin-top: 16px;
    display: flex;
    justify-content: center;
}

.gallery-thumbnail {
    border: 1px solid #ccc;
    box-sizing: border-box;
    padding: 2px;
    margin: 0 5px;
    width: 60px;
}

.gallery-thumbnail.active {
    border-color: var(--black);
}

.gallery-thumbnail img {
    width: 100%;
    height: auto;
    border: none;
    display: block;
    margin: 0 auto;
}

.gallery-slider {
    width: 100%;
    border: 1px solid #ccc;
    box-sizing: border-box;
    padding: 5px;
    
}

.gallery-slide {
    overflow: hidden;
}

.gallery-slide img {
    width: 100%;
    height: auto;
    border: none;
    display: block;
    margin: 0 auto;
    transform: scale(1, 1);
    transition: 0.3s;
}

.gallery-slide:hover img {
    transform: scale(1.05, 1.05);
}

.pd-tag {
    padding: 0 12px;
    color: var(--white);
    background: var(--red);
    display: inline-block;
    font-size: 12px;
    line-height: 26px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.product-description h1,
.product-description h2, 
.product-description h3,
.product-description h4 {
    font-weight: 400;
    color: var(--black);
    margin: 0 0 8px;
}

.product-extra-description h1 {
    font-size: 30px;
    line-height: 38px;
}

.product-extra-description h2 {
    font-size: 28px;
    line-height: 36px;
}

.product-extra-description h3 {
    font-size: 26px;
    line-height: 34px;
}

.product-extra-description h4 {
    font-size: 24px;
    line-height: 30px;
}

.product-extra-description h5 {
    margin: 0 0 20px;
    font-size: 22px;
    line-height: 30px;
}

.product-extra-description h6 {
    margin: 0 0 20px;
    font-size: 18px;
    line-height: 28px;
}

.product-description p,
.product-description ol li,
.product-description ul li {
    color: var(--black);
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 30px;
}

.product-description ol,
.product-description ul {
    margin: 0 0 0 18px;
    padding: 0;
}


.product-description ol li,
.product-description ul li {
    margin: 0 0 7px !important;
}

.pd-content {
    margin-top: 32px;
    position: relative;
}

.pd-price {
    color: #585858;
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
}

.btn-orange {
    width: 240px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--white);
    border: none;
    cursor: pointer;
    outline: none;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    border-radius: 4px;
    text-decoration: none;
    position: relative;
}

.btn-orange img {
    margin-right: 10px;
}

.btn-orange::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  z-index: -1;
  background-color: var(--black);
  transition: width 0.3s;
}

.btn-orange::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--red);
  transition: width 0.3s;
}

.btn-orange:hover::before {
  width: 100%;
}

.btn-orange:hover::after {
  width: 0;
}

.pd-buttons {
    display: flex;
    align-items: center;
    margin-top: 35px;
}

.pd-buttons a {
    margin-right: 10px;
}

.pd-buttons a:last-child{
    margin-right: 0;
}

.pd-buttons a:hover svg path {
    fill: var(--red);
}

.addtoany_content {
    margin: 0 !important;
    position: absolute;
    bottom: -85px;
    left: 295px;
}

.pd-extra-tabs {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #D7D7D7;
    margin-bottom: 40px;
}

.pd-extra-tabs span {
    margin: 0 20px;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    color: #999999;
    font-weight: 700;
    font-size: 16px;
    line-height: 30px;
    cursor: pointer;
}

.pd-extra-tabs span.active {
    color: var(--black);
    border-color: var(--black);
}

.pd-extra-content {
    display: none;
}

.pd-extra-content.active {
    display: block;
}

.no-share .addtoany_share_save_container {
    display: none !important;
}

.atlas-display-solutions {
    margin: 0 !important;
}

.atlas-display-solutions h2 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    margin: 0 0 20px;
    color: #000;
}
 
.atlas-display-solutions p {
    font-weight: 500;
    color: #000;
}
    
.ads-items h3 {
    font-family: "Playfair Display", serif;
    color: #000;
    font-weight: 700;
	padding: 0 20px;
}

.ads-items h3 a {
	color: #000;
	text-decoration: none;
}

.ads-items p {
    color: #000;
    margin: 0;
	padding: 0 20px;
}
    
.our-accreditation {
    margin: 0 !important;
}

.our-accreditation h2 {
    font-family: "Playfair Display", serif;
    color: #000;
    font-weight: 700;
}

.our-accreditation figure {
    margin: 0 !important;
    text-align: center;
}

.our-accreditation figure img {
    display: block;
    border: none;
    margin: 0 auto;
    max-width: 660px;
    width: 100%;
}

.contact-us-page {
    width: calc(100% - 32px) !important;
    max-width: 1000px !important;
    margin: 0 auto !important;
    gap: 0 !important;
}

.contact-us-page h2,
.contact-us-page h3 {
    font-family: "Playfair Display", serif;
    color: #000;
    font-weight: 700;
}

.contact-us-page h3 {
    font-size: 20px;
    line-height: 26px;
}

.contact-us-page p {
    font-weight: 500;
    color: #555;
    font-size: 15px;
    line-height: 24px;
    margin: 0;
}

.contact-us-page a {
    text-decoration: none;
    font-weight: 500;
    color: #DF0B0C;
    font-size: 15px;
    line-height: 24px;
}

.f-block {
    position: relative;
    margin: 0 0 30px;
}

.f-block label {
    position: absolute;
    left: 4px;
    top: -14px;
    padding: 5px 10px;
    background: #fff;
    font-size: 12px;
    line-height: 20px;
    color: #828282;
    z-index: 1;
}

.f-block input[type="text"],
.f-block input[type="email"],
.f-block input[type="tel"],
.f-block input[type="number"],
.f-block textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 17px 20px 10px 20px;
    background: #fff;
    border: 1px solid #CCCCCC;
    border-radius: 4px;
    font-size: 14px;
    line-height: 20px;
    outline: none;
    resize: none;
}

.f-block textarea {
    height: 100px;
}

.f-block button,
.f-block input[type="submit"] {
    background: #DF0B0C;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    padding: 12px 45px;
    cursor: pointer;
}

.search-container {
    position: absolute;
    right: 0;
    width: 100%;
    box-sizing: border-box;
    background: #000;
    border-top: 1px solid #fff;
    display: none;
    flex-wrap: wrap;
}

.search-container.show {
    display: flex;
}
    
.search-container .search-close-handler {
    width: 28px;
    height: 28px;
    margin: 2px 0 0 12px;
    cursor: pointer;
}

.search-container form {
    width: calc(100% - 40px);   
}

.page-content .adi-1st-section,
.page-content .adi-4th-section {
  flex-wrap: wrap !important;
  gap: 0 !important;
  margin: 0 !important;
}

.page-content .adi-1st-section .wp-block-column,
.page-content .adi-4th-section .wp-block-column {
  flex-basis: auto !important;
  flex-grow: unset !important
}

.page-content .adi-1st-section figure,
.page-content .adi-4th-section figure {
  margin: 0 !important;
}

.page-content .adi-1st-section .ads-1st-right h1,
.page-content .adi-4th-section .ads-4th-right h2 {
  font-family: "Playfair Display", serif;
  margin: 0 0 20px;
  font-weight: 700;
}

.page-content .adi-1st-section .ads-1st-right p,
.page-content .adi-4th-section .ads-4th-right p {
  margin: 0 0 30px;
  font-weight: 500;
}

.page-content .adi-4th-section .ads-4th-right h6 {
  font-weight: 500;
  text-transform: uppercase;
  margin: 0 0 5px;
}

.page-content .adi-4th-section .ads-4th-right ul {
  margin: 0 0 20px 18px;
  padding: 0;
}

.page-content .adi-4th-section .ads-4th-right ul li {
  margin: 0 0 15px;
  font-weight: 500;
}

.page-content .adi-1st-section .ads-1st-right a,
.page-content .adi-4th-section .ads-4th-right a {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  text-decoration: none;
  padding: 11px 20px;
}

.adi-2nd-section {
  margin: 0 !important;
}

.adi-2nd-section figure {
  margin: 0 !important;
}

.adi-2nd-section p {
  color: #000;
  font-weight: 500;
  margin: 0 auto !important;
  max-width: 1200px !important;
}

.ads-3rd-slider {
	justify-content: center;
}

.adi-3nd-section {
  margin: 0 !important;
  gap: 0 !important;
}

.adi-3nd-section h2 {
  font-family: "Playfair Display", serif;
}

.ads-3rd-item {
  margin: 0 15px;
}

.ads-3rd-item figure {
  margin: 0 !important;
}

.ads-3rd-item p {
  height: 60px;
  padding: 20px;
  background-color: #E8E8E8;
  margin: 0 !important;
}

.ads-3rd-slider .slick-dots {
  position: absolute;
  justify-content: center;
}

.ads-3rd-slider img {
  width: 100% !important;
  max-width: unset !important;
}

.ads-3rd-slider .slick-dots li button {
  background-color: #d9d9d9;
}

.ads-3rd-slider .slick-dots li.slick-active button {
  background-color: #000;
}

.adi-6th-section {
  position: relative;
  margin: 0 !important;
  background-color: #000;
  gap: 0 !important;
  text-align: center;
}

.adi-6th-section figure {
  margin: 0 !important;
}

.adi-6th-section img {
  margin: 0;
  display: block;
  border: none;
  position: absolute;
  left: 0;
  top: 0;
  max-width: unset !important;
  opacity: 0.4;
  z-index: 1;
}

.adi-6th-section h2 {
  font-family: "Playfair Display", serif;
  margin: 0 0 20px !important;
  font-weight: 700;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 2;
}

.adi-6th-section p {
  margin: 0 0 30px !important;
  font-weight: 500;
  font-size: 15px;
  line-height: 30px;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 2;
}

.adi-6th-section a {
  text-decoration: none !important;
  font-size: 14px;
  line-height: 18px;
  padding: 11px 20px;
  position: relative;
  z-index: 2;
  color: #fff;
  display: inline-block;
}

.ads-6th-text {
  position: absolute;
    width: calc(100% - 40px);
    max-width: 800px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.adi-7th-section h3 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #000;
  text-align: center;
}

.inner-common-button a {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  padding: 11px 18px;
  text-decoration: none;
  color: var(--white);
  position: relative;
  z-index: 1;
  background-color: unset;
}

.inner-common-button a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--red);
  transition: width 0.3s;
}

.inner-common-button a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  z-index: -1;
  background-color: var(--white);
  transition: width 0.3s;
}

.inner-common-button a:hover {
    color: var(--black);
  transition: color 0.5s;
}

.inner-common-button a:hover::before {
  width: 0;
}

.inner-common-button a:hover::after {
  width: 100%;
}

.inner-common-button.dark a::after {
  background-color: var(--black) !important;
}

.inner-common-button.dark a:hover {
    color: var(--white) !important;
}

.inner-common-button.outline {
	border: 1px solid #fff !important;
}

.inner-common-button.outline a::before {
	display: none !important;
}

@media (max-width: 767px) {
  html,
  body {
    overflow-x: hidden;
  }
    .hidden-xs {
        display: none !important;
    }
    .visible-xs {
        display: block !important;
    }

  .header-notification {
    font-size: 12px;
    line-height: 14px;
    font-weight: 500;
  }

  .header-notification a {
    line-height: 12px;
  }

  .header {
    padding: 15px;
  }

  .header .logo {
    display: flex;
    align-items: center;
  }

  .header .logo a {
    width: 100px;
    display: block;
  }

  .header .logo a {
    display: block;
  }

  .menu-handler {
    display: block;
    margin-right: 10px;
    width: 30px;
    height: 30px;
    position: relative;
  }

  .menu-handler span {
    position: absolute;
    background-color: var(--white);
    height: 2px;
    border-radius: 4px;
  }

  .menu-handler span:nth-child(1) {
    width: 23px;
    top: 5px;
    transform: rotate(0deg);
    transition: 0.3;
  }

  .menu-handler span:nth-child(2) {
    width: 17px;
    top: 14px;
    transition: 0.3;
    opacity: 1;
    visibility: visible;
  }

  .menu-handler span:nth-child(3) {
    width: 20px;
    bottom: 5px;
    transform: rotate(0deg);
    transition: 0.3;
  }

  .menu-handler.close-menu {
    position: fixed;
    top: 10px;
    left: 25px;
    z-index: 999;
  }

  .menu-handler.close-menu span:nth-child(1) {
    width: 25px;
    top: 10px;
    transform: rotate(45deg);
  }

  .menu-handler.close-menu span:nth-child(2) {
    opacity: 0;
    visibility: hidden;
  }

  .menu-handler.close-menu span:nth-child(3) {
    width: 25px;
    bottom: 17px;
    transform: rotate(-45deg);
  }

  .header .menu nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    z-index: 99;
    background-color: var(--black);
    padding: 50px 0;
    box-sizing: border-box;
  }

  .header .menu nav ul {
    display: block;
  }

  .header .menu nav ul li {
    box-sizing: border-box;
    padding-right: 0 !important;
  }

  .header .menu nav ul li.submenu::after {
    right: 20px;
  }

  .header .menu nav ul li.submenu.active::after {
    transform: rotate(225deg);
  }

  .header .menu nav ul li a,
  .header .menu nav ul li span {
    padding-left: 25px;
    padding-right: 25px;
  }

  .header .menu nav ul li.submenu ul {
    background-color: #222;
    display: none;
  }

  .header .menu .get-in-touch {
    margin-right: 15px;
  }

  .header .menu .get-in-touch a {
    font-size: 13px;
    line-height: 16px;
    padding: 7px 12px;
  }

  .main-banner-item img {
    width: 300%;
  }

  .main-banner-item-caption {
    bottom: 70px;
  }

  .main-banner-item-caption h1 {
    font-size: 35px;
    line-height: 45px;
  }

  .main-banner-item-caption p {
    font-size: 13px;
    line-height: 18px;
    margin: 0 0 30px;
  }

  .main-banner-item-caption a {
    padding: 7px 15px;
    font-size: 12px;
    line-height: 16px;
  }

  .main-banner .slick-dots {
    bottom: 18px;
  }

  .main-banner .slick-arrow {
    bottom: 10px;
  }

  .main-banner .slick-prev {
    left: 30%;
  }

  .main-banner .slick-next {
    right: 30%;
  }

  .highlighted-products {
    padding: 20px 16px 100px;
  }

  .heading-side {
    margin-bottom: 30px;
    text-align: center;
  }

  .heading-side h2 {
    margin: 0 0 10px;
    font-size: 25px;
    line-height: 32px;
  }

  .heading-side p {
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 20px;
  }

  .product-slider .slick-slide {
    border: 1px solid #ddd;
    box-sizing: border-box;
    box-shadow: none;
  }

  .h-product-text {
    padding: 15px;
  }

  .h-product-text h3 {
    font-size: 16px;
    line-height: 24px;
  }

  .product-slider .slick-arrow {
    position: absolute;
    bottom: -45px;
  }

  .product-slider .slick-prev {
    left: 0;
  }

  .product-slider .slick-next {
    right: 0px;
  }

  .product-slider .slick-dots {
    bottom: -35px;
    left: 55px;
    width: calc(100% - 110px);
  }

  .digital-solutions {
    padding: 0px 0 50px;
  }

  .digital-solutions .heading h2 {
    font-size: 30px;
    line-height: 40px;
  }

  .digital-solutions .heading h3 {
    font-size: 14px;
    line-height: 18px;
  }

  .ds-tabs {
    overflow-y: hidden;
    overflow-x: auto;
    white-space: nowrap;
    /* -ms-overflow-style: none; */
    scrollbar-width: none;
    text-align: center;
    margin-bottom: 40px;
  }

  .ds-tabs span {
    font-size: 14px;
    line-height: 24px;
    display: inline-block;
    margin-right: 15px;
  }

  .ds-contents .ds-block {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 40px !important;
  }

  .ds-contents .ds-img {
    width: 100%;
  }

  .ds-contents .ds-img img {
    width: 100%;
    display: block;
    border: none;
  }

  .ds-contents .ds-content {
    width: 100%;
    text-align: center;
  }

  .ds-contents .ds-content h3 {
    font-size: 30px;
    line-height: 40px;
    margin: 0 0 20px;
  }

  .ds-contents .ds-content p {
    font-size: 14px;
    line-height: 24px;
  }

  .display-partner::after {
    background: linear-gradient(0deg, #000000, rgba(0, 0, 0, 0) 80%);
  }

  .display-partner .dp-caption {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 50px);
    text-align: center;
  }

  .display-partner .dp-caption h2 {
    font-size: 30px;
    line-height: 40px;
  }

  .display-partner .dp-caption h4 {
    font-size: 20px;
    line-height: 30px;
  }

  .display-partner .dp-caption p {
    font-size: 13px;
    line-height: 24px;
    margin: 0 0 20px;
  }

  .dp-counts {
    justify-content: center;
  }

  .dp-counts > div {
    margin: 0 15px;
  }

  .dp-counts > div:last-child {
    margin: 0;
  }

  .dp-counts > div p {
    font-size: 12px;
    line-height: 14px;
  }

  .type-of-products {
    padding: 30px 0 70px;
  }

  .type-of-products h2 {
    margin-bottom: 25px !important;
    font-size: 30px;
    line-height: 40px;
  }

  .top-slider-caption {
    padding: 15px 15px 30px;
  }

  .top-slider-caption h3 {
    font-size: 15px;
    line-height: 24px;
  }

  .top-slider-caption a {
    left: 15px;
    bottom: 15px;
  }

  .top-slider .slick-arrow {
    position: absolute;
    bottom: -45px;
  }

  .top-slider .slick-prev {
    left: 20px;
  }

  .top-slider .slick-next {
    right: 20px;
  }

  .top-slider .slick-dots {
    bottom: -35px;
    left: 55px;
    width: calc(100% - 110px);
  }

  .collaboration-solutions {
    padding: 50px 0;
  }

  .collaboration-solutions .cs-content {
    margin-bottom: 40px;
    text-align: center;
  }

  .collaboration-solutions .cs-content h2 {
    font-size: 30px;
    line-height: 40px;
  }

  .collaboration-solutions .cs-content p {
    font-size: 14px;
    line-height: 24px;
    margin: 0 0 25px;
  }

  .top-selling-brands {
    padding: 50px 16px 30px;
  }

  .top-selling-brands h2 {
    font-size: 30px;
    line-height: 40px;
    margin: 0 0 30px;
  }

  .tsb-list .tsb-item {
    width: calc((100% / 3) - 20px) !important;
    margin: 0 10px 20px !important;
  }

  .all-contacts {
    padding: 50px 0px;
  }

  .ac-item {
    padding: 0 0 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #e1e1e1;
    box-sizing: border-box;
  }

  .ac-item:last-child {
    border-bottom: none;
    margin-bottom: 0px;
    padding-bottom: 0;
  }

  .ac-item h3 {
    font-size: 30px;
    line-height: 38px;
  }

  .all-contacts {
    padding: 50px 30px;
  }

  .ac-item {
    padding: 0 0 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #e1e1e1;
  }

  .ac-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .ac-item h3 {
    font-size: 24px;
    line-height: 28px;
  }

  .footer .container {
    padding: 26px;
  }

  .footer-contact {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #1a1a1a;
  }

  .footer-logo {
    text-align: center;
    margin-bottom: 25px;
  }

  .footer-logo img {
    margin: 0 auto;
  }

  .main-inner-banner-item img {
    width: 300%;
  }

  .main-inner-banner-item-caption {
    bottom: 30px;
  }

  .main-inner-banner-item-caption h1 {
    font-size: 35px;
    line-height: 45px;
  }

  .main-inner-banner-item-caption p {
    font-size: 13px;
    line-height: 18px;
    margin: 0;
  }
  .categories-listing-container {
        width: 100%;
        margin-right: 0px;
    }
    .categories-listing-container h1 {
        display: none;
    }
    .categories-listing-container .mobile-select-category {
        display: block;
    }
    .categories-listing-container ul {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 30px;
        box-sizing: border-box;
        z-index: 999999;
        background: #ccc;
        overflow-y: scroll;
        display: none;
    }
    .categories-listing-container ul li {
        margin-bottom: 30px;
    }
    .categories-listing-container ul li a {
        font-size: 20px;
        line-height: 28px;
        padding-right: 20px;
    }
    .categories-listing-container ul li a::before {
        top: 3.5px !important;
    }
    
    
  .main-inner-banner-item img {
    width: 400%;
  }

  .main-inner-banner-item-caption {
    bottom: 30px;
  }

  .main-inner-banner-item-caption h1 {
    font-size: 35px;
    line-height: 40px;
  }

  .main-inner-banner-item-caption p {
    font-size: 14px;
    line-height: 18px;
    margin: 0;
  }
  
  .categories-listing-container {
      width: 100%;
      margin: 0 0 30px;
  }
  
  .categories-listing-container h1 {
      margin: 0 0 32px;
  }
  
  .product-listing-container {
      width: 100%;
      margin: 0;
  }
  
  .post-item {
      width: 100%;
      margin: 0 0px 20px;
      padding-bottom: 85px !important;
      text-align: center;
  }
  
  .post-item img {
      height: 150px;
      width: auto !important;
      margin: 0 auto;
  }

    .post-item h2 {
        font-size: 20px;
        line-height: 22px;
        margin: 20px 0 10px;
    }
    
    .post-item p {
        font-size: 16px;
        line-height: 24px;
    }
    
    .pd-button {
        left: 0;
        bottom: 0;
    }

    .page-main-text {
        margin: 20px 16px 25px !important;
    }
    
    .page-main-text h2 {
        font-size: 24px;
        line-height: 30px;
    }
    
    .all-category-listing h3 {
     font-size: 30px;
     line-height: 36px;
    }
    
    .all-category-listing {
        margin: 100px auto 0;
    }
    
    .all-category-listing-list a {
        width: 100%;
        margin: 0 0 30px;
        font-size: 20px;
        line-height: 28px;
    }
    
    .similar-products-list .slick-prev {
        left: 15px;
    }
    
    .similar-products-list .slick-next {
        right: 15px;
    }
    
    .product-section {
        margin: 30px auto 40px;
    }
    
    .product-gallary {
        margin-bottom: 30px;
    }
    
    .atlas-display-solutions {
        padding: 30px 0 !important;
        gap: 0 !important;
    }
    
    .atlas-display-solutions-container {
        margin: 0 16px !important;
        width: calc(100% - 32px);
    }
    
    .atlas-display-solutions h2 {
        font-size: 24px;
        line-height: 30px;
    }
    
    .atlas-display-solutions p {
        font-size: 14px;
        line-height: 24px;
        margin: 0 auto 30px;
    }
    
    .ads-items h3 {
        margin: 30px 0 20px;
        font-size: 20px;
        line-height: 30px;
    }
    
    .ads-items p {
        font-size: 14px;
        line-height: 24px;
        margin: 0 16px 16px;
    }
    
    .our-accreditation {
        padding: 30px 16px !important;
    }
    
    .our-accreditation h2 {
        font-size: 30px;
        line-height: 36px;
        margin: 0 0 28px;
    }
    
    .page-content .contact-us-page {
        margin-top: 50px !important;
    }
    
    .page-content .contact-us-page .wp-block-column {
        flex-basis: auto !important;
        margin: 0 16px 30px !important;
    }

    .contact-us-page h2 {
        margin: 0 0 20px;
        font-size: 24px;
        line-height: 30px;
    }
    
    .contact-us-page h3 {
        margin: 30px 0 10px;
    }

    .search-container {
        top: 65px;
        padding: 30px;
    }

    .page-content .adi-1st-section,
    .page-content .adi-4th-section {
      padding: 40px 30px !important;
    }

    .page-content .adi-1st-section .ads-1st-left,
    .page-content .adi-4th-section .ads-4th-left {
      margin: 0 0 40px 0 !important;
    }

    .page-content .adi-1st-section .ads-1st-right h1,
    .page-content .adi-4th-section .ads-4th-right h2 {
      font-size: 30px;
      line-height: 36px;
    }

    .page-content .adi-1st-section .ads-1st-right p,
    .page-content .adi-4th-section .ads-4th-right p {
      font-size: 15px;
      line-height: 24px;
    }

    .page-content .adi-4th-section .ads-4th-right h6 {
      font-size: 12px;
      line-height: 14px;
    }

    .page-content .adi-4th-section .ads-4th-right ul li {
      font-size: 14px;
      line-height: 20px;
    }

    .adi-2nd-section {
      padding: 40px 30px !important;
    }
    
    body .page-content .adi-2nd-section .ads-2nd-logos {
      flex-wrap: wrap !important;
      justify-content: center !important;
    }

    .page-content .adi-2nd-section .ads-2nd-logos .wp-block-column {
      flex-basis: auto !important;
      flex-grow: unset !important;
      width: calc(33.33% - 20px) !important;
      margin: 0 10px 20px !important;
    }

    .page-content .adi-2nd-section .ads-2nd-logos .wp-block-column img {
      width: 100% !important;
      height: auto;
    }

    .ads-2nd-logos {
      margin-bottom: 20px !important;
      gap: 0 !important;
    }

    .adi-2nd-section p {
      font-size: 15px;
      line-height: 24px;
    }

    .adi-3nd-section {
      padding: 40px 30px !important;
    }

    .adi-3nd-section h2 {
      font-size: 30px;
      line-height: 36px;
      margin: 0 0 25px;
    }

    .adi-3nd-section p {
      font-size: 15px;
      line-height: 22px;
    }

    .ads-3rd-slider .slick-arrow {
      position: absolute;
      bottom: -45px;
    }
  
    .ads-3rd-slider .slick-prev {
      left: 20px;
    }
  
    .ads-3rd-slider .slick-next {
      right: 20px;
    }
  
    .ads-3rd-slider .slick-dots {
      bottom: -35px;
      left: 55px;
      width: calc(100% - 110px);
    }

    .adi-6th-section {
      height: 450px;
      overflow: hidden;
    }

    .adi-6th-section h2 {
      font-size: 30px;
      line-height: 40px;
    }

    .adi-6th-section img {
      width: auto;
      height: 100% !important;
    }

    .adi-7th-section {
      padding: 40px 30px !important;
    }

    .adi-7th-section h3 {
      font-size: 30px;
      line-height: 40px;
      margin: 0 0 25px !important;
    }
}

@media (min-width: 768px) {
    .hidden-xs {
        display: block !important;
    }
    .visible-xs {
        display: none !important;
    }
  .header .logo {
    width: 165px;
  }

  .menu-handler {
    display: none;
  }

  .header .menu .get-in-touch {
    margin-right: 35px;
  }

  .header .menu nav ul li {
    margin-right: 40px;
  }

  .header .menu nav ul li.submenu {
    position: relative;
    margin-right: 30px;
  }

  .header .menu nav ul li.submenu:hover::after {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    top: 20px;
  }

  .header .menu nav ul li.submenu ul {
    display: none;
    position: absolute;
    max-width: 452px;
    min-width: 150px;
    background-color: var(--gray);
    white-space: nowrap;
    border-radius: 10px;
    padding: 10px 0;
	columns: 2;
  }

  .header .menu nav ul li.submenu ul li {
    margin-right: 0;
  }

  .header .menu nav ul li.submenu ul li a {
    padding: 10px 20px;
  }

  .header .menu nav ul li.submenu ul li a:hover {
    background-color: var(--red);
  }

  .header .menu nav ul li.submenu:hover ul {
    display: block;
  }

  .main-banner-item img {
    width: 100%;
  }

  .main-banner-item-caption {
    bottom: 90px;
  }

  .main-banner-item-caption h1 {
    font-size: 65px;
    line-height: 70px;
  }

  .main-banner-item-caption p {
    font-size: 22px;
    line-height: 27px;
    margin: 0 0 50px;
  }

  .main-banner-item-caption a {
    padding: 11px 20px;
    font-size: 14px;
    line-height: 18px;
  }

  .main-banner .slick-dots {
    bottom: 40px;
  }

  .main-banner .slick-arrow {
    bottom: 30px;
  }

  .main-banner .slick-prev {
    left: 44%;
  }

  .main-banner .slick-next {
    right: 44%;
  }

  .highlighted-products {
    position: relative;
    padding: 185px 0 185px 70px;
    display: flex;
    flex-wrap: wrap;
  }

  .highlighted-products::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    z-index: -1;
    background-color: #f8f8f8;
    width: 50%;
    height: 100%;
  }

  .heading-side {
    width: 400px;
    margin-right: 60px;
  }

  .heading-side h2 {
    margin: 0 0 10px;
    font-size: 45px;
    line-height: 60px;
  }

  .heading-side p {
    margin: 0 0 20px;
    font-size: 15px;
    line-height: 30px;
  }

  .product-slider {
    width: calc(100% - 400px - 60px);
  }

  .h-product-item {
    margin: 0 12px;
  }

  .product-slider .slick-list {
    padding: 10px 160px 10px 0 !important;
  }

  .h-product-text {
    padding: 25px;
  }

  .h-product-text h3 {
    font-size: 20px;
    line-height: 28px;
  }

  .product-slider .slick-arrow {
    position: absolute;
    bottom: -45px;
  }

  .product-slider .slick-prev {
    left: 0;
  }

  .product-slider .slick-next {
    left: 100px;
  }

  .product-slider .slick-dots {
    bottom: -35px;
    left: 40px;
    width: 60px;
  }

  .digital-solutions {
    padding: 100px 0;
  }

  .digital-solutions .heading h2 {
    font-size: 50px;
    line-height: 60px;
  }

  .digital-solutions .heading h3 {
    font-size: 20px;
    line-height: 30px;
  }

  .ds-tabs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
  }

  .ds-tabs span {
    font-size: 16px;
    line-height: 30px;
  }

  .ds-contents .ds-block {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 40px !important;
  }

  .ds-contents .ds-img {
    width: 320px;
    margin-right: 55px;
  }

  .ds-contents .ds-content {
    width: calc(100% - 375px);
    text-align: left;
  }

  .ds-contents .ds-content h3 {
    font-size: 45px;
    line-height: 60px;
    margin: 0 0 20px;
  }

  .ds-contents .ds-content p {
    font-size: 15px;
    line-height: 30px;
  }

  .display-partner::after {
    background: linear-gradient(
      90deg,
      #000000 -13.89%,
      rgba(0, 0, 0, 0) 69.58%
    );
  }

  .display-partner .dp-caption {
    left: 170px;
    top: 50%;
    transform: translate(0, -50%);
  }

  .display-partner .dp-caption h2 {
    font-size: 50px;
    line-height: 60px;
  }

  .display-partner .dp-caption h4 {
    font-size: 30px;
    line-height: 40px;
  }

  .display-partner .dp-caption p {
    font-size: 15px;
    line-height: 30px;
    margin: 0 0 30px;
  }

  .dp-counts > div p {
    font-size: 14px;
    line-height: 24px;
    white-space: nowrap;
  }

  .type-of-products {
    padding: 100px 0 170px;
  }

  .type-of-products h2 {
    margin-bottom: 54px !important;
    font-size: 50px;
    line-height: 60px;
  }

  .top-slider-caption {
    padding: 20px 20px 40px;
    height: 180px;
  }

  .top-slider-caption h3 {
    font-size: 20px;
    line-height: 28px;
  }

  .top-slider-caption a {
    left: 20px;
    bottom: 20px;
  }

  .top-slider .slick-arrow {
    position: absolute;
    bottom: -55px;
  }

  .top-slider .slick-prev {
    left: 44%;
  }

  .top-slider .slick-next {
    right: 44%;
  }

  .top-slider .slick-dots {
    bottom: -45px;
    left: 50%;
    transform: translate(-50%, 0);
  }

  .collaboration-solutions {
    padding: 140px 0;
  }

  .collaboration-solutions .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .collaboration-solutions .cs-content {
    width: 400px;
    margin-right: 100px;
  }

  .collaboration-solutions .cs-list {
    width: calc(100% - 500px);
  }

  .collaboration-solutions .cs-content h2 {
    font-size: 50px;
    line-height: 60px;
  }

  .collaboration-solutions .cs-content p {
    font-size: 15px;
    line-height: 30px;
    margin: 0 0 35px;
  }

  .top-selling-brands {
    padding: 110px 0 50px;
  }

  .top-selling-brands h2 {
    font-size: 50px;
    line-height: 60px;
    margin: 0 0 40px;
  }

  .tsb-list {
    max-width: 1040px;
    margin: 0 auto;
    width: 100%;
  }

  .tsb-list .tsb-item {
    width: calc((100% / 5) - 60px) !important;
    margin: 0 30px 60px !important;
  }

  .all-contacts {
    padding: 90px 0px;
    display: flex;
    flex-wrap: wrap;
  }

  .ac-item {
    width: 33.33%;
    padding: 0 80px;
    border-right: 1px solid #e1e1e1;
    box-sizing: border-box;
  }

  .ac-item:last-child {
    border-right: none;
  }

  .ac-item h3 {
    font-size: 30px;
    line-height: 38px;
  }

  .footer .container {
    padding: 50px 0;
  }

  .footer-contact {
    width: 245px;
    padding-right: 60px;
    margin-right: 60px;
    border-right: 1px solid #1a1a1a;
  }

  .footer-links {
    width: calc(100% - 246px - 120px);
  }

  .main-inner-banner-item img {
    width: 100%;
  }

  .main-inner-banner-item-caption {
    bottom: 60px;
  }

  .main-inner-banner-item-caption h1 {
    font-size: 65px;
    line-height: 90px;
  }

  .main-inner-banner-item-caption p {
    font-size: 22px;
    line-height: 27px;
    margin: 0;
  }
  
  .categories-listing-container {
      width: 338px;
      margin-right: 20px;
      padding: 40px 24px;
  }
  
  .categories-listing-container h1 {
      margin: 0 0 32px;
  }
  
  .product-listing-container {
      width: calc(100% - 338px - 20px);
      margin: 0 -10px;
  }
  
  .post-item {
      width: calc(33.33% - 20px);
      margin: 0 10px 20px;
      padding-bottom: 85px !important;
  }
  
  .searched-container .product-listing-container {
      width: calc(100% - 20px);
      margin: 0 -10px;
  }
  
  .searched-container .post-item {
      width: calc(25% - 20px);
      margin: 0 10px 20px;
      padding-bottom: 85px !important;
  }
  
  .post-item img {
      height: auto;
  }

    .post-item h2 {
        font-size: 20px;
        line-height: 22px;
        margin: 20px 0 10px;
    }
    
    .post-item p {
        font-size: 16px;
        line-height: 24px;
    }
    
    .pd-button {
        left: 0;
        bottom: 0;
    }

    .page-main-text {
        margin: 50px auto 75px !important;
    }
    
    .page-main-text h2 {
        font-size: 30px;
        line-height: 36px;
    }
    
    .all-category-listing h3 {
     font-size: 30px;
     line-height: 36px;
    }
    
    .all-category-listing {
        margin: 100px auto 0;
    }
    
    .all-category-listing-list a {
        width: calc(20% - 30px);
        margin: 0 15px 30px;
        font-size: 20px;
        line-height: 28px;
    }
    
    .similar-products-list .slick-prev {
        left: -35px;
    }
    
    .similar-products-list .slick-next {
        right: -35px;
    }
    
    .product-section {
        margin: 50px auto 80px;
        display: flex;
        flex-wrap: wrap;
    }
    
    .product-gallary {
        width: 615px;
        margin-right: 55px;
    }
    
    .product-description {
        width: calc(100% - 670px);
    }
    
    .atlas-display-solutions {
        padding: 100px 0 !important;
        gap: 0 !important;
    }
    
    .atlas-display-solutions-container {
        max-width: 1200px !important;
        margin: 0 auto !important;
        width: calc(100% - 32px);
        flex-basis: auto !important;
    }
    
    .atlas-display-solutions h2 {
        font-size: 50px;
        line-height: 60px;
    }
    
    .atlas-display-solutions p {
        font-size: 15px;
        line-height: 30px;
        max-width: 875px;
        margin: 0 auto 30px;
    }
    
    .ads-items h3 {
        margin: 30px 0 20px;
        font-size: 30px;
        line-height: 36px;
    }
    
    .ads-items p {
        font-size: 15px;
        line-height: 30px;
    }
    
    .our-accreditation {
        padding: 100px 0 !important;
    }
    
    .our-accreditation h2 {
        font-size: 50px;
        line-height: 60px;
        margin: 0 0 48px;
    }
    
    .page-content .contact-us-page {
        margin-top: 100px !important;
        flex-wrap: wrap !important;
    }
    
    .page-content .contact-us-page .wp-block-column {
        flex-basis: auto !important;
        width: 400px !important;
        margin: 0 50px !important;
    }

    .contact-us-page h2 {
        margin: 0 0 20px;
        font-size: 30px;
        line-height: 36px;
    }
    
    .contact-us-page h3 {
        margin: 50px 0 10px;
    }

    .search-container {
        top: 89px;
        padding: 40px;
    }

    .page-content .adi-1st-section,
    .page-content .adi-4th-section {
      padding: 80px !important;
      align-items: center !important;
      justify-content: center;
    }

    .page-content .adi-1st-section .ads-1st-left,
    .page-content .adi-4th-section .ads-4th-left {
      width: 400px !important;
      margin: 0 70px 0 0 !important;
    }

    .page-content .adi-1st-section .ads-1st-right,
    .page-content .adi-4th-section .ads-4th-right {
      width: calc(100% - 400px - 70px) !important;
      max-width: 650px !important;
      margin: 0 !important;
    }

    .page-content .adi-4th-section.reverse {
      flex-direction: row-reverse;
    }

    .page-content .adi-4th-section.reverse .ads-4th-left {
      margin: 0 0 0 70px !important;
    }

    .page-content .adi-1st-section .ads-1st-right h1,
    .page-content .adi-4th-section .ads-4th-right h2 {
      font-size: 45px;
      line-height: 55px;
    }

    .page-content .adi-1st-section .ads-1st-right p,
    .page-content .adi-4th-section .ads-4th-right p {
      font-size: 18px;
      line-height: 36px;
    }

    .page-content .adi-4th-section .ads-4th-right h6 {
      font-size: 14px;
      line-height: 18px;
    }
    
    .page-content .adi-4th-section .ads-4th-right ul li {
      font-size: 18px;
      line-height: 30px;
    }

    .adi-2nd-section {
      padding: 80px 50px !important;
    }

    .ads-2nd-logos {
      margin-bottom: 70px !important;
    }

    .adi-2nd-section p {
      font-size: 18px;
      line-height: 36px;
    }

    .adi-3nd-section {
      padding: 80px 20px !important;
    }

  .adi-3nd-section h2 {
    font-size: 50px;
    line-height: 60px;
    margin: 0 0 45px;
  }

  .adi-3nd-section p {
    font-size: 20px;
    line-height: 28px;
  }

  .ads-3rd-slider .slick-arrow {
    position: absolute;
    bottom: -55px;
  }

  .ads-3rd-slider .slick-prev {
    left: 44%;
  }

  .ads-3rd-slider .slick-next {
    right: 44%;
  }

  .ads-3rd-slider .slick-dots {
    bottom: -45px;
    left: 50%;
    transform: translate(-50%, 0);
  }

  .adi-6th-section {
    height: 600px;
    overflow: hidden;
  }

  .adi-6th-section h2 {
    font-size: 50px;
    line-height: 60px;
  }

  .adi-6th-section img {
    width: 100%;
    height: auto;
  }

  .adi-7th-section {
    padding: 80px 0 !important;
  }

  .adi-7th-section h3 {
    font-size: 60px;
    line-height: 68px;
    margin: 0 0 50px !important;
  }
	
	.nomarbot {
		margin-bottom: 0 !important;
	}
}


.h-product-item {
  display: flex;
  flex-direction: column;
}

.h-product-button {
  display: inline-block;
  margin-top: 15px;
  margin-bottom: 20px; /* space from the bottom of the card/slide */
  margin-left: 17px;
  padding: 12px 28px;
  text-align: center;
  background: transparent;
  color: #000;
  border: 2px solid #000;
  border-radius: 0; /* sharp corners, matches your reference */
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  text-transform: none;
  transition: all 0.25s ease;
}

.h-product-button:hover {
  background: #000;
  color: #fff;
}

/* Mega menu — Products / Industries */
.menu nav {
  position: relative;
}
.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}


.mega-dropdown {
  display: none;
  background: #000;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  padding: 24px 32px;
  gap: 4px 40px;
  z-index: 999;
  width: max-content;
  max-width: 90vw;
  grid-template-columns: repeat(3, max-content);
}

.mega-dropdown--industries {
  grid-template-columns: repeat(4, max-content);
}

li.has-megamenu:hover .mega-dropdown {
  display: grid;
}

.mega-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mega-col-title {
  text-transform: uppercase;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em;
  color: #9a9a9a !important;
  margin: 0 0 8px 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  display: block !important;
}

.mega-col a {
  color: #fffff !important;
  text-decoration: none !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 1.3 !important;
  white-space: nowrap !important;
  display: block !important;
  width: auto !important;
  margin: 0 !important;
  padding: 6px 0 !important;
}

.mega-col a:hover {
  text-decoration: underline !important;
}

/* Mobile: switch to accordion instead of hover grid */
@media (max-width: 991px) {
  .mega-dropdown,
  .mega-dropdown--industries {
    position: static !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    display: none;
    grid-template-columns: 1fr !important;
    padding: 16px !important;
    gap: 20px !important;
    box-shadow: none !important;
    background: #111 !important; /* match the dark mobile menu panel */
  }

  li.has-megamenu.mega-open .mega-dropdown {
    display: grid !important;
  }

  li.has-megamenu:hover .mega-dropdown {
    display: none; /* disable hover trigger on mobile, tap-only */
  }

  .mega-col-title {
    color: #888 !important;
  }

  .mega-col a {
    color: #fff !important;
  }
}