* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  color: #000000;
}

body.overflow-hidden {
  overflow: hidden;
}

:root {
  --accent-color: #008CCA;
  --accent-color-hover: #000000;
  --accent-color-hover-alt: #ffffff;
  --text-color: #313131;
}

h1 {
  font-size: 52px;
  line-height: 1.26;
  font-weight: 500;
  font-family: "avenir-lt-pro", sans-serif;
  color: var(--text-color);
}

h2 {
  font-size: 36px;
  line-height: 1.29;
  font-weight: 500;
  font-family: "avenir-lt-pro", sans-serif;
  color: var(--text-color);
  margin: 0;
}

h3 {
  font-size: 27px;
  line-height: 1.34;
  font-weight: 500;
  color: var(--text-color);
}

p {
  color: #000000;
  font-size: 15px;
  line-height: 1.34;
  font-weight: 400;
}

.lead {
  font-size: 20px;
  line-height: 1.34;
  font-family: "avenir-lt-pro", sans-serif;
  font-weight: 800;
  color: var(--accent-color);
}

a {
  color: #000000;
  text-decoration: none;
}

a:hover {
  color: var(--accent-color-hover);
  transition: .3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

.mt-20 {
  margin-top: 20px;
}

.btn {
  background-color: #ccc;
  color: #000;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  padding: 11px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  line-height: 1;
  border: solid 3px var(--accent-color);
  transition: all ease-out .3s;
}

.btn .fa {
  font-size: 20px;
  margin-left: -20px;
  opacity: 0;
  transition: all ease-out .3s;
}

.btn:hover .fa {
  margin-left: 0px;
  opacity: 1;
}

.btn-primary,
.btn-primary-alt {
  background-color: var(--accent-color);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--accent-color-hover);
  color: #fff;
  border-color: var(--accent-color-hover);
}

.btn-primary-alt:hover {
  background-color: var(--accent-color-hover-alt);
  color: var(--accent-color);
}

.btn-secondary {
  background-color: #fff;
  color: var(--accent-color);
  border: #fff solid 3px;
}

.btn-secondary:hover {
  background-color: #242F33;
  color: #fff;
  border-color: #242F33;
}

.btn-outline {
  background-color: transparent;
  border: 3px solid var(--accent-color);
  color: var(--accent-color);
}

.btn-outline:hover {
  background-color: var(--accent-color);
  color: #fff;
}

.btn-outline-alt {
  background-color: transparent;
  border: 3px solid #fff;
  color: #fff;
}

.btn-outline-alt:hover {
  background-color: transparent;
  color: #242F33;
  border-color: #242F33;
}

.container {
  max-width: 1177px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

.d-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.container-full {
  max-width: 100%;
  margin: 0 auto;
}

.header-top-row {
  background-color: #242F33;
  padding: 14px 0;
}

.header-top-row ul.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  margin: 0;
}

.header-top-row ul.nav-links a {
  color: #fff;
}

.header-top-row ul.nav-links a:hover {
  color: var(--accent-color);
}

.header-top-row ul.nav-links .current-menu-item>a {
  color: var(--accent-color);
}

.header {
  position: sticky;
  top: 0;
  background-color: #fff;
  transition: all ease-out .5s;
  width: 100%;
  z-index: 999;
  box-shadow: 0px 4px 10.9px 0px rgba(0, 0, 0, 0.03);
}

.header .menu-icon {
  display: none;
  cursor: pointer;
}

.header-wrapper {
  padding: 12px 0;
  transition: all ease-out .3s;
}

.header.scrolled .header-wrapper {
  padding: 6px 0;
}

.header-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.header-row .left {
  width: 20%;
}

.header-row .right {
  width: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
}

.header .header_links {
  margin-right: 30px;
  flex: 1;
}

.header .logo img {
  max-width: 240px;
  width: auto;
  transition: all ease-out .3s;
}

.header.scrolled .logo img {
  max-width: 180px;
}

.header_links ul.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  gap: 30px;
  justify-content: flex-end;
}

.header_links ul a {
  text-decoration: none;
  padding: 15px 0;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: flex;
  align-items: center;
  color: #313131;
}

.header_links ul a:hover {
  color: var(--accent-color);
}

.header_links ul .dropdown {
  position: relative;
}

.header_links ul .dropdown>a::after {
  font: var(--fa-font-solid);
  content: '\f078';
  margin-left: 5px;
  font-size: 12px;
}

.header_links ul .submenu-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  min-width: 160px;
  z-index: 1000;
  list-style: none;
  padding: 0;
}

.header_links ul .submenu-dropdown a {
  padding: 12px 16px;
  display: block;
  text-decoration: none;
}

.header_links ul .submenu-dropdown a:hover {
  color: var(--accent-color);
}

.header_links ul .dropdown:hover .submenu-dropdown {
  display: block;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.menu-toggle {
  font-size: 28px;
}

/* ------- header css start ------------ */
.mobile-nav {
  display: none;
}

.main-menu-wrapper {
  display: flex;
  align-items: center;
  padding: 0px;
  gap: 15px 37px;
  margin: 0px;
  list-style: none;
}

.main-menu-wrapper .menu-item.menu-item-has-children {
  position: relative;
}

/* .main-menu-wrapper .menu-item.menu-item-has-children .sub-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  padding: 0px;
  background: #fff;
  padding: 46px 50px;
  top: 85px;
  left: 50%;
  transform: translateX(-50%) translateY(-60px);
  transition: all 0.4s ease;
} */

/* .main-menu-wrapper .menu-item.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0px);
} */

.main-menu-wrapper .menu-item.menu-item-has-children .sub-menu {
  position: absolute;
  padding: 0px;
  background: #fff;
  padding: 46px 50px;
  top: 85px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}

.main-menu-wrapper .menu-item.menu-item-has-children.is-large .sub-menu {
  min-width: 960px !important;
}

.main-menu-wrapper .menu-item.menu-item-has-children.is-medium .sub-menu {
  min-width: 790px;
}

.main-menu-wrapper .menu-item.menu-item-has-children.is-small .sub-menu {
  min-width: 700px;
}

.header.scrolled .main-menu-wrapper .menu-item.menu-item-has-children .sub-menu {
  top: 72px;
}



.main-menu-wrapper .menu-item.menu-item-has-children .sub-menu::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 25px solid white;
}

.main-menu-wrapper .menu-item a {
  color: #313131;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
}

.main-menu-wrapper .menu-item a:hover {
  color: var(--accent-color);
}

.main-menu-wrapper .menu-item.current-menu-item>a {
  color: var(--accent-color);
}

.main-menu-wrapper .menu-item a span {
  font-weight: 400;
}

.main-menu-wrapper .sub-menu-row {
  display: flex;
  /* flex-wrap: wrap; */
  gap: 70px;
}

.main-menu-wrapper .sub-menu-row .sub-menu-col {
  position: relative;
  flex: 1;
}

.sub-menu-row .sub-menu-col ul {
  list-style: none;
  padding: 0;
}

.sub-menu-row .sub-menu-col h4 .icon {
  max-width: 40px;
}

.sub-menu-row .sub-menu-col h4 {
  color: var(--accent-color);
  font-size: 20px;
  display: flex;
  gap: 15px;
  align-items: center;
  margin: 0 0 20px 0;
}

.sub-menu-row .sub-menu-col ul li {
  margin-bottom: 8px;
}

.sub-menu-row .sub-menu-col ul li {
  display: flex;
  gap: 5px;
  align-items: center;
}

.sub-menu-row .sub-menu-col ul li .icon {
  width: 36px;
  height: 30px;
  object-fit: contain;
  object-position: center;
  margin-right: 16px;
}

.main-menu-wrapper .has-seperator .sub-menu-row .sub-menu-col:first-child::after {
  content: '';
  position: absolute;
  border-right: 2px solid #d6d6d6;
  width: 2px;
  height: 100%;
  top: 0;
  right: -35px;
}

.main-menu-wrapper .menu-item.menu-item-has-children.no-columns ul {
  column-count: 2;
  column-gap: 30px;
}

.main-menu-wrapper .menu-item.menu-item-has-children.no-columns ul li {
  margin-bottom: 20px;
}

.main-menu-wrapper .menu-item.menu-item-has-children.no-columns ul li a {
  display: flex;
  align-items: center;
}

/* ------- header css end ------------ */
.hero-section {
  color: #fff;
  padding: 120px 0;
  position: relative;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 65%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 35%, rgba(255, 255, 255, 0) 100%);
}

.video-background iframe {
  min-width: 100%;
  object-fit: cover;
  height: auto;
  aspect-ratio: 2.6;
  margin-top: -90px;
  min-height: calc(100% + 60px);
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-section .sub-title {
  margin: 0 0 16px 0;
  color: #fff;
  max-width: 400px;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-section h1 {
  max-width: 600px;
  margin-top: 0;
}

.hero-section h2 {
  margin: 0 0 16px 0;
  color: #fff;
  max-width: 400px;
}

.hero-section p {
  font-size: 18px;
  max-width: 470px;
  color: #fff;
  line-height: 1.5;
  margin: 0 0 16px 0;
}

.page-section {
  padding: 80px 0;
  position: relative;
}

.page-section.bg-grey {
  background-color: #E7E7E7;
}

.page-section-title {
  text-align: center;
  max-width: 670px;
  margin: 0 auto 80px;
}

.page-section-title h4,
.page-section-title h3 {
  color: #008CCA;
  font-family: 'avenir-lt-pro';
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.34;
}

.page-section-title.text-left {
  text-align: left;
  max-width: unset;
}

.two-col-section .container {
  margin-bottom: 80px;
}

.two-col-section .container:last-child {
  margin-bottom: 0;
}

.two-col-section .col-left {
  width: calc(50% - 15px);
}

.two-col-section .col-right {
  width: calc(50% - 15px);
}

.two-col-section .col-right .content-area a{
  text-decoration: underline;
}

.two-col-section-global {
  position: relative;
  padding: 160px 0;
}

.two-col-section-global.negative-spacing{
  margin-top: -80px;
}

.two-col-section-global.get-in-touch {
  padding-top: 40px;
  padding-bottom: 80px;
}

.two-col-section-global.no-padding {
  padding: 0;
}

.two-col-section-global .container {
  display: flex;
  justify-content: flex-end;
}

.two-col-section-global .col-left {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 48%;
  text-align: left;
  height: calc(100% - 160px);
  padding-right: 40px;
  z-index: 2;
}

.two-col-section-global.no-padding .col-left {
  height: 100%;
}

.two-col-section-global .col-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}

.two-col-section-global .col-left .overlapping_image {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -7%;
  width: 40%;
  height: auto;
  aspect-ratio: 1;
}

.two-col-section-global .col-left .overlapping_image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.two-col-section-global .col-left .map-container,
.two-col-section-global .col-left .map-container .acf-map {
  height: 100%;
}

.two-col-section-global.reverse-layout .container {
  justify-content: flex-start;
}

.two-col-section-global.reverse-layout .col-left {
  left: auto;
  right: 0;
  padding-right: 0;
  padding-left: 40px;
}

.two-col-section-global.layout-container .container {
  justify-content: space-between;
  align-items: center;
}

.two-col-section-global.layout-container .col-left {
  position: relative;
  top: 0;
  transform: translateY(0);
  left: 0;
  width: 50%
}

.two-col-section-global h2 {
  font-size: 33px;
  font-weight: 500;
  color: #313131;
  font-family: "avenir-lt-pro", sans-serif;
}

.two-col-section-global h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent-color);
  font-family: "avenir-lt-pro", sans-serif;
}

.two-col-section-global .content-area h4,
.two-col-section-global .content-area h3 {
  color: var(--accent-color);
  font-family: "avenir-lt-pro", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 134%;
  margin-bottom: 0;
}

.two-col-section-global .btn {
  margin-top: 20px;
}

.two-col-section-global ul {
  padding-left: 30px;
  margin-top: 30px;
}

.two-col-section-global h3+ul {
  margin-top: 15px;
  margin-bottom: 40px;
}

.two-col-section-global ul li {
  position: relative;
  color: #000;
  font-weight: 500;
  list-style-type: disc;
  line-height: 1;
  margin-bottom: 20px;
  font-family: 'avenir-lt-pro';
  align-items: center;
}

.two-col-section-global.list_fancy ul {
  padding-left: 10px;
  margin: 30px 0;
}

.two-col-section-global.list_fancy ul li {
  list-style: none;
  display: flex;
  gap: 9px;
}

.two-col-section-global.list_fancy ul li::before {
  content: '';
  background-image: url('../images/tickmark-bullet.svg');
  width: 25px;
  display: inline-block;
  height: 25px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.two-col-section-global .address {
  display: flex;
  gap: 20px;
  align-items: start;
  margin: 30px 0;
}

.two-col-section-global .address i {
  font-size: 24px;
  color: var(--accent-color);
}

.two-col-section-global .address p {
  color: #000;
  font-size: 19px;
  font-style: normal;
  font-weight: 500;
  line-height: 134%;
  margin: 0;
}

.two-col-section-global.no-padding .col-right {
  position: relative;
  padding: 80px 0;
  z-index: 2;
}

.contact-info {
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 40px 0;
  font-size: 19px;
}

.contact-info i {
  font-size: 28px;
  color: var(--accent-color);
  align-self: baseline;
}

.contact-info:last-child {
  margin-bottom: 0;
}

.icon-box-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.icon-box-row .icon-box {
  width: calc(100% / 4 - 30px);
  text-align: center;
  padding: 0 20px;
}

.icon-box-row .icon-box img {
  height: 75px;
  margin-bottom: 30px;
}

.icon-box-row .icon-box p {
  font-size: 19px;
  line-height: 1.34;
  font-weight: 400;
  margin: 0;
}

.cta-bar {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background-color: #242F33;
  padding: 36px 24px;
  gap: 48px;
}

.cta-bar h3 {
  color: #fff;
  margin: 0;
}

.industies-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.industies-grid-section {
  padding-bottom: 100px;
}

.industies-grid-section .page-section-title h3 {
  font-size: 32px;
  font-weight: 500;
  color: #313131;
  font-family: "avenir-lt-pro", sans-serif;
  margin: 0;
}

.industies-grid .industry-box {
  position: relative;
  width: calc(100% / 4 - 30px);
  overflow: hidden;
}

.industry-box::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: rgb(0 140 202 / 90%);
  opacity: 0;
  transition: all 0.3s ease;
}

.industies-grid .industry-box:hover::before {
  height: 100%;
  opacity: 1;
}

.industies-grid .industry-box img {
  width: 100%;
  display: block;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.industies-grid .industry-box .industry-box-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgb(0 140 202 / 90%);
  color: #fff;
  width: 100%;
  padding: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.industies-grid .industry-box .industry-box-overlay-content {
  overflow: hidden;
  display: grid;
  grid-template-rows: 0fr;
  transition: 300ms grid-template-rows ease-in-out;
}

.industies-grid .industry-box .industry-box-overlay-content-inner {
  overflow: hidden;
}

.industies-grid .industry-box:hover .industry-box-overlay {
  background-color: transparent;
}

.industies-grid .industry-box:hover .industry-box-overlay-content {
  grid-template-rows: 1fr;
}

.industies-grid .industry-box .industry-box-overlay h4 {
  font-family: "avenir-lt-pro", sans-serif;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  margin: 0;
}

.industies-grid .industry-box .industry-box-overlay p {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin: 20px 0;
}

.industies-grid .industry-box .industry-box-overlay a {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
  display: block;
}

.two-col-section-with-icons-grid {
  padding: 150px 0;
  position: relative;
}

.two-col-section-with-icons-grid .container {
  justify-content: flex-end;
}

.two-col-section-with-icons-grid .col-left {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  max-width: 40%;
  width: 40%;
  height: 90%;
  z-index: 2;
}

.two-col-section-with-icons-grid .col-left img {
  width: 100%;
  height: 100%;
  max-height: 1000px;
  object-fit: contain;
  object-position: left;
}

.two-col-section-with-icons-grid .col-right {
  position: relative;
  width: calc(60% - 15px);
  z-index: 2;
}

.two-col-section-with-icons-grid h3 {
  font-size: 32px;
  font-weight: 500;
  color: #313131;
  font-family: "avenir-lt-pro", sans-serif;
}

.two-col-section-with-icons-grid p {
  font-size: 15px;
  font-weight: 500;
  color: #000000;
  font-family: "avenir-lt-pro", sans-serif;
  margin: 0;
}

.two-col-section-with-icons-grid .icon-box-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 60px 30px;
}

.two-col-section-with-icons-grid .icon-box-grid .icon-box {
  width: calc(100% / 2 - 15px);
  text-align: left;
  padding: 0 20px;
}

.two-col-section-with-process-graphics {
  padding-top: 80px;
  background: linear-gradient(to bottom,
      #242F33,
      #242F33 60%,
      #E7E7E7 60%,
      #E7E7E7);
  position: relative;
  padding: 100px 0;
  padding-bottom: 0;
}

.two-col-section-with-process-graphics .why-choose-us-section {
  position: relative;
  margin-bottom: 100px;
}

.two-col-section-with-process-graphics .why-choose-us-section .col-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 50%;
  text-align: right;
}

.two-col-section-with-process-graphics h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 36px;
  font-family: 'Inter';
}

.two-col-section-with-process-graphics ul li {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  list-style: none;
  line-height: 1.34;
  display: flex;
  gap: 9px;
  margin-bottom: 36px;
  font-family: 'avenir-lt-pro';
}

.two-col-section-with-process-graphics ul li::before {
  content: '';
  background-image: url('../images/tickmark-bullet.svg');
  width: 25px;
  display: inline-block;
  height: 25px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.two-col-section-with-process-graphics .col-50:nth-child(2) img {
  width: 100%;
}

.two-col-section-with-process-graphics .choose-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.two-col-section-with-process-graphics .col-50 {
  width: calc(100% / 2 - 20px);
}

.two-col-section-with-process-graphics .choose-row .col-50 ul li span {
  margin-top: 10px;
}

.two-col-section-with-process-graphics .choose-row .col-50 ul li img.icon {
  width: 25px;
  margin-right: 10px;
}

.process-section-content {
  position: relative;
  background: #FFF;
  box-shadow: 0px 4px 35px 0px rgba(0, 0, 0, 0.09);
  padding: 30px;
}

.process-section-content.no-shadow {
  box-shadow: none;
  padding: 100px 30px;
}

.process-section-content .page-section-title {
  margin-bottom: 40px;
}

.process-section-content h3 {
  font-size: 32px;
  font-weight: 500;
  color: #313131;
  font-family: "avenir-lt-pro", sans-serif;
  margin-top: 0;
}

.process-section-cta {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 20px;
}

.process-section-graphic.mobile {
  display: none;
}

.process-section-graphic.desktop {
  position: relative;
}

.process-section-graphic.desktop svg {
  position: relative;
  z-index: 1;
}

.process-headings {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
}

.process-headings h4 {
  color: var(--accent-color);
  font-family: "avenir-lt-pro", sans-serif;
  font-size: 20px;
  margin: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.process-headings h4.discovery {
  top: 10px;
  left: 13%;
  transform: translateX(-50%);
}

.process-headings h4.consultation {
  bottom: 0;
  left: 31%;
  transform: translateX(-50%);
}

.process-headings h4.print-proofing {
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.process-headings h4.finishing {
  bottom: 0;
  left: 68%;
  transform: translateX(-50%);
}

.process-headings h4.delivery {
  top: 10px;
  left: 86%;
  transform: translateX(-50%);
}


.tippy-box[data-theme~='light'] {
  width: 220px;
  background-color: white;
  color: var(--text-color);
  box-shadow: 0px 7px 13px rgba(0, 0, 0, 0.09);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.34;
  padding: 12px;
  text-align: center;
}

.tippy-box[data-theme~='light'][data-placement^='top']>.tippy-arrow::before {
  border-top-color: #fff;
}

.tippy-box[data-theme~='light'][data-placement^='bottom']>.tippy-arrow::before {
  border-bottom-color: #fff;
}

.testimonial-section {
  padding-bottom: 100px;
}

.testimonial-section h2 {
  margin-bottom: 20px;
}

.testimonial-section p {
  font-size: 15px;
  font-weight: 500;
  /* margin: 0; */
}

.testimonial-section .page-section-title {
  margin-bottom: 50px;
}

.testimonial-section .container {
  max-width: calc(1177px + 120px);
}

.testimonial-section .testimonial-slider {
  padding: 0 60px;
}

.testimonial-section .testimonial-slider p {
  /* margin: 0; */
}

.testimonial-section .testimonial-slider .slick-track {
  display: flex;
}

.testimonial-section .testimonial-slider .slick-dots {
  left: 0;
  right: 0;
  margin: 0 auto;
}

.testimonial {
  background-color: #fff;
  padding: 30px;
}

.testimonial strong {
  font-size: 15px;
}

.testimonial .rating {
  display: flex;
  justify-content: end;
  color: var(--accent-color);
  font-size: 19px;
  gap: 2px;
}

.footer {
  background-color: #242F33;
  color: #fff;
}

.footer-top {
  padding: 80px 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 60px;
  align-items: flex-start;
}

.footer-content .footer-logo {
  max-width: 240px;
  margin-bottom: 20px;
}

.footer-column:first-child {
  min-width: 280px;
}

.footer-column {
  flex: 1;
}

.footer-column h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
}

.footer-column ul li a {
  text-decoration: none;
  font-size: 19px;
  font-family: 'avenir-lt-pro';
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  color: #fff;
  line-height: 1.34;
}

.footer-column ul li.current-menu-item a {
  color: var(--accent-color);
}

.footer-column ul li a:hover {
  color: var(--accent-color);
  transition: .3s ease;
}

.footer-column p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.34;
  color: #fff;
}

.footer-column .add p {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
}

.footer-column .add p:last-child {
  margin-bottom: 0;
}

.footer-column .add a {
  color: #fff;
}

.footer-column .add a:hover {
  color: var(--accent-color);
}

.footer-column .add p svg {
  flex-shrink: 0;
  width: 30px;
}

.footer-column .social-icons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-column .social-icons a {
  display: flex;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.footer-column .social-icons i {
  color: #fff;
  font-size: 30px;
}

.footer-bottom {
  text-align: center;
  padding: 18px 0;
  background: #1D2528;
  color: #fff;
}

.footer-bottom p {
  font-size: 15px;
  margin: 0;
  color: #898989;
}

.footer-bottom a {
  color: var(--accent-color);
  text-decoration: underline;
}

.footer-bottom a:hover {
  color: var(--accent-color);
  transition: .3s ease;
}

.slick-initialized .slick-slide {
  margin: 0 10px;
  display: flex;
  flex-direction: column;
  gap: 0 20px;
  height: auto;
}

.slick-dots li {
  margin: 0 !important;
}

.slick-dots li button:before {
  font-size: 35px;
}

.slick-dots li.slick-active button:before {
  color: #008CCA;
  opacity: 1;
}

.slick-prev,
.slick-next {
  width: auto;
  height: auto;
}

.slick-prev:before {
  display: block;
  content: url('../images/back.jpg');
}

.slick-next:before {
  display: block;
  content: url('../images/next.jpg');
}

.slick-prev {
  left: 0;
  z-index: 1;
}

.slick-next {
  right: 0;
}

.process-mob-row {
  display: none;
}

.page-header {
  position: relative;
  background-color: #E7E7E7;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.page-header-content {
  padding: 80px 0;
  width: calc(50% - 15px);
}

.page-header-content h1 {
  font-size: 45px;
  line-height: 1.26;
  font-weight: 500;
  font-family: "avenir-lt-pro", sans-serif;
  color: #313131;
  margin: 0;
}

h1.page-header__before-title,
p.page-header__before-title {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 20px;
  line-height: 1.34;
  font-weight: 400;
  color: #008CCA;
  font-family: 'avenir-lt-pro';
  font-weight: 800;
}

.page-header-content p {
  font-size: 20px;
  line-height: 1.34;
  font-weight: 400;
  color: #008CCA;
  font-family: 'avenir-lt-pro';
  font-weight: 800;
  margin: 25px 0;
}

.page-header__content p {
  font-size: 15px;
  font-family: 'Inter';
  font-weight: 500;
  color: #000;
}

.page-header-image {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 45%;
  text-align: right;
  height: 100%;
}

.page-header-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.post-header {
  position: relative;
  background-color: #E7E7E7;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.post-header .container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.post-header .container.no-image{
  justify-content: start;
}

.post-header-content {
  padding: 80px 0;
  width: calc(65% - 15px);
}

.post-header-content h1 {
  font-size: 45px;
  line-height: 1.26;
  font-weight: 500;
  font-family: "avenir-lt-pro", sans-serif;
  color: #313131;
  margin: 0;
}

h1.post-header__before-title,
p.post-header__before-title {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 20px;
  line-height: 1.34;
  font-weight: 400;
  color: #008CCA;
  font-family: 'avenir-lt-pro';
  font-weight: 800;
}

.post-header-image {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 35%;
  text-align: left;
  height: 100%;
}

.post-header-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.sroll-down {
  display: block;
  text-align: center;
  margin-top: 20px;
  outline: none;
}

.sroll-down h2 {
  font-size: 32px;
  font-weight: 500;
  color: #313131;
  font-family: "avenir-lt-pro", sans-serif;
  margin-bottom: 20px;
}

.explore-section {
  padding-top: 0;
  padding-bottom: 40px;
}

.explore-section .container {
  margin-top: 20px;
  border-top: solid 2px #000;
  padding-top: 40px;
}

.explore-section .page-section-title {
  text-align: left;
  max-width: unset;
  margin-bottom: 40px;
}

.explore-section .page-section-title p {
  max-width: 750px;
}

.explore-item {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.explore-item .item-image {
  width: 360px;
  min-height: 230px;
  height: auto;
}

.explore-item .item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.explore-item .item-content {
  width: calc(100% - 390px);
  max-width: 650px;
}

.explore-item .item-content h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent-color);
  font-family: "avenir-lt-pro", sans-serif;
  margin-top: 0;
}

.explore-item .item-content h4 {
  margin-top: -20px;
}

.explore-item .item-content p {
  font-size: 15px;
  color: #000000;
  margin: 0;
  line-height: 1.34;
}

.explore-item .item-content ul {
  padding-left: 36px;
  margin-top: 25px;
}

.explore-item .item-content ul li {
  font-size: 15px;
  color: #000000;
  margin-bottom: 10px;
  line-height: 1.34;
}

.cta-section {
  background-color: var(--accent-color);
  text-align: center;
}

.cta-section h2 {
  color: #fff;
}

.cta-section .content-area {
  margin: 30px auto;
  margin-bottom: 40px;
  max-width: 650px;
}

.cta-section p {
  color: #fff;
  margin: 0;
}

.cta-section .cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 40px;
}

.faqs-section {
  padding: 120px 0;
}

.faqs-section .page-section-title {
  margin-bottom: 40px;
}

.faq-item {
  max-width: 850px;
  margin: 0 auto;
  margin-bottom: 20px;
  background-color: var(--accent-color);
  border: 3px solid var(--accent-color);
  transition: all 0.3s ease;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  padding: 15px 25px;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item h3 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  font-family: "avenir-lt-pro", sans-serif;
  padding: 0;
  margin: 0;
  transition: all 0.3s ease;
}

.faq-question i {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-left: auto;
  transition: all 0.3s ease;
}

.faq-answer {
  padding: 0 25px;
  display: none;
}

.faq-answer p {
  color: #fff;
  transition: all 0.3s ease;
}

.faq-item.active {
  background-color: #fff;
}

.faq-item.active h3 {
  color: var(--accent-color);
}

.faq-item.active i {
  color: var(--accent-color);
}

.faq-item.active .faq-answer p {
  color: var(--text-color);
}

.menu-toggle {
  display: none;
}

.icon-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

.icon-boxes .icon-box {
  background-color: var(--accent-color);
  padding: 40px 30px;
  width: calc(100% / 3 - 34px);
}

.icon-boxes.columns-2 .icon-box {
  width: calc(100% / 2 - 25px);
}

.icon-boxes .icon-box img {
  max-height: 65px;
  width: auto;
  margin-bottom: 35px;
}

.icon-boxes .icon-box h4,
.icon-boxes .icon-box h3 {
  font-family: "avenir-lt-pro", sans-serif;
  color: #FFF;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.34em;
  margin-top: 0;
  margin-bottom: 25px;
}

.icon-boxes .icon-box p {
  color: #FFF;
  margin: 0;
}

.icon-boxes+.cta-button {
  text-align: center;
  margin-top: 80px;
}

.form-section-content {
  max-width: 640px;
  margin: 0 auto;
}

.form-section-content h2 {
  margin-bottom: 30px;
}

.form-section-content p {
  margin: 0;
}

.form-section-content .form-container {
  margin-top: 40px;
  position: relative;
}

.gform-theme--foundation .gform_fields {
  row-gap: 18px !important;
}

.gfield input,
.gfield select {
  min-height: 50px !important;
  border: 1px solid #9B9B9B !important;
  line-height: 47px !important;
}

.gfield textarea {
  border: 1px solid #9B9B9B !important;
}

.form-section.with-image {
  position: relative;
  padding: 0;
}

.form-section.with-image .container {
  display: flex;
  justify-content: flex-end;
}

.form-section-image {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 40%;
  text-align: left;
  height: 100%;
}

.form-section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-section.with-image .form-section-content {
  width: 60%;
  margin: 0;
  padding: 80px 0;
  max-width: unset;
  padding-left: 40px;
}

.icons-row h2 {
  margin-bottom: 30px;
}

.gform_button.button {
  background-color: var(--accent-color) !important;
  color: #fff !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  padding: 15px 30px !important;
  border-radius: 0 !important;
  font-family: 'avenir-lt-pro' !important;
}

#consultation-form .gform_button.button{
  background-color: #fff !important;
  color: var(--accent-color) !important;
}

.form-section.text-center .gform_button.button {
  margin: 0 auto !important;
}

.form-section.text-right .gform_button.button {
  margin-right: 0 !important;
}

#consultant .gform_confirmation_message {
  text-align: center;
  color: #fff;
}

.two-col-section-global.layout-fullwidth {
  padding: 0;
}

.two-col-section-global.layout-fullwidth .col-left {
  height: 100%;
}

.two-col-section-global.layout-fullwidth .col-right {
  padding: 100px 0;
}

.mission-box {
  background-color: #242F33;
  box-shadow: 0px 10px 19px 0px rgba(0, 0, 0, 0.14);
  padding: 45px;
  display: flex;
  gap: 45px;
}

.mission-box h2 {
  font-size: 32px;
  font-weight: 500;
  color: #fff;
  font-family: 'avenir-lt-pro';
  margin: 0;
  margin-bottom: 15px;
}

.mission-box p {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  font-family: 'avenir-lt-pro';
  margin: 0;
}

.our-timeline {
  background-color: #E7E7E7;
  padding: 120px 0;
}

.our-timeline-image {
  overflow: hidden;
}

.our-timeline img {
  width: 107%;
  margin-left: -4%;
  max-width: unset;
}

.timeline-main-sec {
  /* padding: 0 50px 0 0; */
}

.timeline-container .content h4 {
  margin: 0 0 3px 0;
  font-size: 22px;
  font-weight: 600;
  color: var(--accent-color);
}

.timeline-container .content p {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
}

.timeline-line {
  position: relative;
  width: 100%;
  border-top: 5px solid #000;
}

.timeline-main-sec .circle img {
  width: 41px;
  min-width: unset;
  margin: 0;
  background-color: #e7e7e7;
}

.timeline-top-row {
  display: flex;
  justify-content: flex-start;
  padding: 0 0 0 70px;
}

.timeline-top-row .timeline-item {
  position: relative;
  max-width: 480px;
  margin-left: 6%;
  padding-left: 60px;
  padding-bottom: 60px;
}

.timeline-top-row .timeline-item .circle {
  position: absolute;
  left: -15px;
  bottom: 82px;
}

.timeline-top-row .timeline-item::before {
  content: '';
  position: absolute;
  background-image: url(/wp-content/uploads/2025/04/top-shap-img.svg);
  width: 30px;
  height: 106px;
  left: -15px;
  bottom: -5px;
  background-repeat: no-repeat;
  background-size: contain;
}

.timeline-bottom-row {
  display: flex;
  justify-content: flex-end;
  padding: 0 0px 0 70px;
}

.timeline-bottom-row .timeline-item {
  position: relative;
  max-width: 480px;
  margin-right: 6%;
  padding-left: 60px;
  padding-top: 60px;
}

.timeline-bottom-row .timeline-item .circle {
  position: absolute;
  left: -16px;
  top: 82px;
}

.timeline-bottom-row .timeline-item::before {
  content: '';
  position: absolute;
  background-image: url(/wp-content/uploads/2025/04/bottom-shap-img.svg);
  width: 30px;
  height: 106px;
  left: -15px;
  top: -5px;
  background-repeat: no-repeat;
  background-size: contain;
}

.video-background iframe {
  min-width: 100%;
  object-fit: cover;
  height: auto;
  aspect-ratio: 2.6;
  margin-top: -75px;
  min-height: calc(100% + 60px);
}

.two-col-section-with-cta,
.two-col-section-with-icons-grid,
.our-story-section,
.icon-boxes-section {
  position: relative;
  background-image: url(../images/pattern-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.two-col-section-with-cta .container,
.icon-boxes-section .container {
  position: relative;
  z-index: 2;
}

.two-col-section-with-cta::before,
.two-col-section-with-icons-grid::before,
.our-story-section::before,
.icon-boxes-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgb(255 255 255) 0%, rgb(255 255 255 / 0%) 100%);
  z-index: 1;
}

.our-story-section .col-left {
  height: 105%;
  top: 55%;
}

.fullwidth-text-section.text-left {
  padding-bottom: 0;
}

.fullwidth-text-section .page-section-title {
  margin-bottom: 0;
}

.fullwidth-text-section+.page-section {
  padding-top: 20px;
}

.fullwidth-text-section.text-left .page-section-title,
.post-grid-section .page-section-title {
  margin-left: 0;
  text-align: left;
  margin-bottom: 40px;
}

.post-grid-section{
  padding: 50px 0;
}

.post-carousel-section .page-section-title {
  margin-bottom: 40px;
}

.post-grid {
  display: flex;
  gap: 20px;
}

.post-card{
  flex-basis: calc(100% / 3 - 20px);
}

.post-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.5;
  object-fit: cover;
}

.post-card-content h4{
  font-size: 20px;
  font-weight: 800;
  color: var(--accent-color);
  font-family: "avenir-lt-pro", sans-serif;
  margin: 15px 0;
}

.post-card-content a{
  color: #000;
  font-size: 15px;
  font-weight: 700;
}

.fullwidth-text-section.text-right .page-section-title {
  margin-right: 0;
  text-align: right;
}

.post-carousel-section {
  padding-bottom: 0;
}

.post-carousel-section .container {
  border-bottom: solid 2px #000;
  padding-bottom: 80px;
}

.post-content {
  width: 70%;
}

.post-content h2 {
  margin-bottom: 30px;
}

.post-content p {
  margin-bottom: 20px;
}

.post-content h3 {
  font-size: 20px;
  line-height: 1.34;
  font-family: "avenir-lt-pro", sans-serif;
  font-weight: 800;
  color: var(--accent-color);
  margin-top: 40px;
  margin-bottom: 30px;
}

.post-content h4 {
  font-size: 18px;
  line-height: 1.34;
  font-family: "avenir-lt-pro", sans-serif;
  font-weight: 800;
  color: var(--accent-color);
  margin-top: 40px;
  margin-bottom: 30px;
}

.post-content blockquote {
  margin-left: 20px;
  margin-bottom: 30px;
  border-left: 3px solid #008CCA;
  padding-left: 20px;
}

.post-content a{
  color: #008CCA;
  text-decoration: underline;
}

.post-nav {
  display: flex;
  justify-content: space-between;
  padding-top: 80px;
}

.post-nav a {
  font-size: 20px;
  font-family: "avenir-lt-pro", sans-serif;
  font-weight: 800;
  color: #008CCA;
  display: flex;
  gap: 10px;
  align-items: center;
}

.post-nav .post-prev-btn img {
  rotate: 180deg;
}

.post-nav a:hover {
  color: #313131;
  transition: 0.3s ease-in-out;
}

.post-sidebar {
  position: sticky;
  width: 25%;
  top: 80px;
  align-self: flex-start;
  z-index: 1;
}

.post-sidebar h4 {
  margin-bottom: 15px;
  color: var(--accent-color);
  font-family: "avenir-lt-pro", sans-serif;
  font-size: 20px;
  margin-top: 0;
}

.post-sidebar ul {
  margin: 0;
  padding: 0;
}

.post-sidebar ul li {
  list-style-type: none;
  padding-bottom: 10px;
}

.post-sidebar ul li a:hover {
  color: #008CCA;
  transition: 0.3s ease-in-out;
}

.post-sidebar-content {
  padding-left: 20px;
  margin-bottom: 30px;
  border-left: 1px solid #89898993;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.post-sidebar-btn{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.visible-xs{
  display: none;
}

.error-404-section {
  padding: 80px 15px;
  text-align: center;
}

.error-404-section h1 {
  margin: 0 0 18px 0;
}

.error-404-section .btn {
  margin-top: 15px;
}

@media (max-width: 1500px) {
  .timeline-top-row {
    padding: 0;
  }

  .timeline-bottom-row {
    padding: 0;
  }

}

@media (max-width: 1300px) {
  .timeline-top-row .timeline-item {
    max-width: 400px;
    padding-left: 46px;
  }

  .timeline-bottom-row .timeline-item {
    max-width: 400px;
    padding-left: 46px;
  }
}

@media(max-width: 1200px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 22px;
  }

  .main-menu-wrapper {
    gap: 15px 24px;
  }

  .header-actions .btn {
    padding: 12px 12px;
  }

  .header.scrolled .main-menu-wrapper .menu-item.menu-item-has-children .sub-menu {
    top: 72px;
  }

  .main-menu-wrapper .menu-item.menu-item-has-children .sub-menu.products-sub-menu {
    min-width: 930px !important;
  }

  .main-menu-wrapper .products-sub-menu .sub-menu-row .sub-menu-right {
    padding-left: 10px;
  }

  .btn {
    padding: 12px 18px;
  }

  .hero-section {
    padding: 80px 0;
  }

  .video-background iframe {
    min-height: calc(100% + 150px);
  }

  .industies-grid-section .page-section-title h3,
  .two-col-section-with-icons-grid h3 {
    font-size: 28px;
  }

  .icon-box-row {
    gap: 12px;
  }

  .icon-box-row .icon-box {
    width: calc(100% / 4 - 9px);
    padding: 0 15px;
  }

  .icon-box-row .icon-box img {
    margin-bottom: 15px;
  }

  .icon-box-row .icon-box p {
    font-size: 17px;
  }

  .cta-bar {
    padding: 18px 24px;
    gap: 10px 24px;
  }

  .industies-grid .industry-box {
    width: calc(100% / 3 - 20px);
  }

  .timeline-main-sec {
    overflow-x: auto;
    padding-bottom: 30px;
  }

  .timeline-container {
    min-width: 1200px;
  }

}

/* 1024 */
@media(max-width: 1024px) {
  .page-header-content h1 {
    font-size: 35px;
  }

  .post-header-content h1 {
    font-size: 35px;
  }

  .page-header-content p {
    font-size: 18px;
  }

  .two-col-section-global h2 {
    font-size: 28px;
  }

  .two-col-section-global h3 {
    font-size: 20px;
  }

  .explore-section h2 {
    font-size: 36px;
  }

  .two-col-section-with-process-graphics h2 {
    font-size: 28px;
  }

  .our-timeline-image {
    overflow: auto;
  }

  .our-timeline img {
    min-width: 1200px;
  }
}

@media (max-width: 992px) {
  .menu-toggle {
    display: block;
  }

  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 22px;
  }

  .desktop-nav {
    position: fixed;
    width: 100%;
    height: calc(100dvh - 120px);
    background-color: #fff;
    border-top: solid 1px #ccc;
    top: 120px;
    left: -100%;
    overflow: auto;
    transition: all 200ms linear;
  }

  .header.scrolled .desktop-nav {
    top: 61px;
    height: calc(100dvh - 61px);
  }

  .desktop-nav.active {
    left: 0;
  }

  .main-menu-wrapper {
    flex-direction: column;
    padding: 0;
    gap: 5px;
  }

  .header-wrapper .menu-item {
    position: relative;
    width: 100%;
    transition: all 0.3s ease;
  }

  .header-wrapper .menu-item.active {
    background-color: #f5f5f5;
  }

  .header-wrapper ul.sub-menu li {
    margin: 0;
    padding-bottom: 0;
  }

  .header-wrapper .menu-item a {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    font-size: 22px;
  }

  .main-menu-wrapper .menu-item.menu-item-has-children .sub-menu {
    position: relative;
    transform: unset !important;
    min-width: unset !important;
    padding: 10px 20px;
    left: 0 !important;
    top: 0 !important;
    visibility: visible;
    opacity: 1;
    display: none;
    transition: none !important;
    background-color: transparent;
  }

  .main-menu-wrapper .menu-item.menu-item-has-children.is-large .sub-menu,
  .main-menu-wrapper .menu-item.menu-item-has-children.is-medium .sub-menu,
  .main-menu-wrapper .menu-item.menu-item-has-children.is-small .sub-menu {
    min-width: unset !important;
  }

  .main-menu-wrapper .sub-menu-row {
    flex-direction: column;
    gap: 20px;
  }

  .sub-menu-row .sub-menu-col h4 {
    font-size: 18px;
    gap: 8px;
    margin-bottom: 10px;
  }

  .sub-menu-row .sub-menu-col h4 .icon {
    max-width: 25px;
  }

  .main-menu-wrapper .menu-item .sub-menu-col a {
    padding: 5px 0;
    white-space: normal;
    display: block;
    font-size: 16px;
  }

  .main-menu-wrapper .menu-item.menu-item-has-children.no-columns ul {
    column-count: 1;
    column-gap: 0px;
  }

  .main-menu-wrapper .menu-item.menu-item-has-children .sub-menu::before {
    display: none !important;
  }

  .lead {
    font-size: 18px;
    margin: 10px 0;
  }

  .header-top-row {
    padding: 10px 0;
  }

  .header-top-row ul.nav-links {
    padding: 0;
    justify-content: space-around;
  }

  .header-row {
    gap: 0;
  }

  .header-row .left {
    width: auto;
  }

  .header_links ul.nav-links {
    justify-content: space-between;
  }

  .hero-section h1 {
    max-width: 400px;
  }

  .two-col-section .container {
    margin-bottom: 40px;
  }

  .page-section {
    padding: 60px 0;
  }

  .page-section-title {
    margin-bottom: 40px;
  }

  .icon-box-row {
    gap: 36px;
  }

  .icon-box-row .icon-box {
    width: calc(100% / 2 - 18px);
    padding: 0 15px;
  }

  .industies-grid .industry-box {
    width: calc(100% / 2 - 20px);
  }

  .two-col-section-with-icons-grid .icon-box-grid {
    gap: 30px 15px;
  }

  .two-col-section-with-icons-grid .icon-box-grid .icon-box {
    padding: 0 0px;
  }

  .two-col-section-with-process-graphics {
    padding-bottom: 0;
  }

  .explore-section {
    padding-top: 0;
    padding-bottom: 40px;
  }

  .explore-item .item-image {
    width: 275px;
  }

  .explore-item .item-content {
    width: calc(100% - 305px);
    max-width: 500px;
  }

  .two-col-section-global .col-left {
    padding-right: 0;
  }

  .two-col-section-with-process-graphics h2 {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .two-col-section-with-process-graphics ul {
    padding-left: 20px;
  }

  .two-col-section-with-process-graphics ul li {
    margin-bottom: 20px;
  }

  .process-headings h4.discovery,
  .process-headings h4.print-proofing,
  .process-headings h4.delivery {
    top: 0;
  }


}

@media (max-width: 767px) {
  .header-top-row .container {
    padding: 0 10px;
  }

  .header-top-row ul.nav-links {
    gap: 10px;
  }

  .two-col-section .col-left,
  .two-col-section .col-right {
    width: 100%;
  }

  .two-col-section-global.no-padding .col-right {
    padding: 0 0 60px 0;
  }

  .two-col-section-global.layout-fullwidth .col-right {
    padding: 0 0 60px 0;
  }

  .cta-bar {
    text-align: center;
  }

  .page-header {
    height: auto;
  }

  .page-header .container {
    display: flex;
    flex-direction: column-reverse;
    padding: 0;
  }

  .page-header-content {
    width: 100%;
    padding: 20px;
    text-align: center;
  }

  .page-header-image {
    position: relative;
    width: 100%;
    height: 300px;
    text-align: center;
    transform: unset;
  }

  .page-header-content h1 {
    font-size: 28px;
  }

  .post-header {
    height: auto;
  }

  .post-header .container {
    display: flex;
    flex-direction: column;
    padding: 0;
  }

  .post-header-content {
    width: 100%;
    padding: 20px;
    text-align: center;
  }

  .post-header-image {
    position: relative;
    width: 100%;
    height: 300px;
    text-align: center;
    transform: unset;
  }

  .two-col-section-global .container {
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }

  .two-col-section-global .col-left,
	.two-col-section-global.layout-container .col-left{
    position: relative;
    width: 100%;
    height: auto;
    padding: 0 !important;
    transform: unset;
  }

  .sroll-down h2 {
    font-size: 26px;
  }

  .explore-section h2 {
    font-size: 26px;
  }

  .explore-item {
    flex-direction: column;
    gap: 20px;
  }

  .explore-item .item-image {
    width: 100%;
    height: auto;
  }

  .explore-item .item-content {
    width: 100%;
    max-width: unset;
  }

  .two-col-section-with-process-graphics .why-choose-us-section .col-right {
    position: relative;
    width: 100%;
    text-align: center;
    transform: unset;
  }

  .two-col-section-with-process-graphics .why-choose-us-section {
    margin-bottom: 40px;
  }

  .why-choose-us-section .container {
    flex-direction: column-reverse;
    display: flex;
    gap: 40px;
  }

  .two-col-section-with-icons-grid {
    padding-top: 0;
  }

  .two-col-section-with-icons-grid .container {
    gap: 0;
  }

  .two-col-section-with-icons-grid .col-left {
    position: relative;
    top: 0;
    left: 0;
    max-width: unset;
    transform: unset;
    overflow: hidden;
    height: auto;
    aspect-ratio: 303 / 193;
  }

  .two-col-section-with-icons-grid .col-left img {
    transform: rotate(90deg);
    transform-origin: center;
    height: 90vw;
    object-fit: contain;
    aspect-ratio: 303 / 193;
  }

  .process-section-graphic.desktop {
    display: none;
  }

  .process-section-graphic.mobile {
    display: flex;
  }

  .process-section-graphic .img-column,
  .process-section-graphic .content-column {
    /* width: 50%; */
  }

  .process-section-graphic .img-column {
    width: 40%;
  }

  .process-section-graphic .content-column {
    width: 60%;
  }

  .process-section-graphic .img-column img {
    margin: 0 -20px;
    margin-left: -30px;
    /* width: calc(100% + 50px); */
    width: calc(100% + 10px);
    max-width: unset;
  }

  .process-section-graphic .content-column {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    margin-top: -30px;
  }

  .process-section-graphic .content-column .process-step {
    margin-bottom: 10px;
  }

  .process-section-graphic .content-column .process-step:last-child {
    margin-bottom: 0;
  }

  .process-step h4 {
    font-size: 18px;
    color: var(--accent-color);
    font-family: 'avenir-lt-pro', sans-serif;
    font-weight: 800;
    margin: 0;
  }

  .process-step p {
    font-size: 15px;
    color: #000000;
    font-family: 'avenir-lt-pro';
    font-weight: 500;
    margin: 0;
  }

  .form-section.with-image .container {
    flex-direction: column;
    gap: 20px;
  }

  .form-section-image {
    position: relative;
    width: 100%;
    height: auto;
    padding: 0 !important;
    transform: unset;
  }

  .form-section.with-image .form-section-content {
    width: 100%;
    padding: 0 0 60px 0;
  }

  .footer-content {
    gap: 30px;
  }

  .footer-column {
    flex: unset;
    width: 100%;
  }

  .visible-xs {
    display: block;
  }
	
	.testimonial-section .testimonial-slider{
		padding: 0 15px;
	}
	
	.testimonial-section .testimonial-slider .slick-slide{
		height: 100%;
	}
}

@media (max-width: 640px) {
  .header .logo img {
    max-width: 140px;
  }

  .header.scrolled .logo img {
    max-width: 120px;
  }

  .industies-grid .industry-box {
    width: 100%;
  }

  .mission-box {
    flex-direction: column;
    padding: 45px 20px;
  }

  .mission-box .mission-icon {
    max-width: 140px;
  }

  .our-timeline img {
    min-width: 800px;
  }

  .icon-boxes .icon-box,
  .icon-boxes.columns-2 .icon-box {
    width: 100%;
  }

}

@media (max-width: 480px) {
  .header-top-row ul.nav-links a {
    font-size: 12px;
  }

  .header-actions .btn {
    padding: 12px 8px;
    font-size: 17px;
  }

  .process-section-content.no-shadow {
    padding: 80px 0px;
  }

  .process-section-graphic .img-column img {
    width: calc(100% + 30px);
  }

}
