* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none !important;
  font-family: "Figtree", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
  color: #000;
  overflow-x: hidden;
  font-size: 16px;
  font-family: "Figtree", sans-serif;
}

p {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
}

@media (min-width: 1500px) {

  .container {
    max-width: 1450px !important;
  }

}


/* =================================
   NAVBAR
================================= */

header .container {
  position: relative;
}

.acx-navbar {
  position: absolute;
  top: 31px;
  left: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100px;
  padding: 0 24px;
  background: #00569e;
  border-radius: 10px;
}

.acx-navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* =================================
   LOGO
================================= */

.acx-logo {
  display: inline-block;
  flex-shrink: 0;
}

.acx-logo img {
  display: block;
}

/* =================================
   RIGHT PANEL
================================= */

.acx-nav__right {
  display: flex;
  align-items: center;
}

/* =================================
   NAVIGATION LIST
================================= */

.acx-nav__list {
  display: flex;
  align-items: center;
  height: 100px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.acx-nav__item {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.acx-nav__link-wrap {
  display: flex;
  align-items: center;
  height: 100%;
}

.acx-nav__link {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.acx-nav__link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
}

/* Desktop dropdown icon button */

.acx-nav__dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin-left: -8px;
  padding: 0 10px 0 0;
  color: rgba(255, 255, 255, 0.88);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.acx-nav__dropdown-toggle i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

/* =================================
   DROPDOWN
================================= */

.acx-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10000;
  min-width: 210px;
  margin: 0;
  padding: 6px 0;
  list-style: none;
  background: #00569e;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-top: 3px solid #d71209;
  border-radius: 0 0 6px 6px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
}

/* Desktop hover open */

.acx-nav__item--has-drop:hover > .acx-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.acx-nav__item--has-drop:hover
  > .acx-nav__link-wrap
  .acx-nav__dropdown-toggle i {
  transform: rotate(180deg);
}

.acx-dropdown__item a {
  display: block;
  padding: 6px 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  text-decoration: none;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.acx-dropdown__item a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
}

/* =================================
   CTA BUTTONS
================================= */

.acx-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 14px;
}

.acx-btn--quote {
  display: inline-block;
  padding: 9px 18px;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  background: #d71209;
  border: 1.5px solid #d71209;;
  border-radius: 4px;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.1s ease;
}

.acx-btn--quote:hover {
  color: #ffffff;
  background: #b9150d;
}

.acx-btn--phone {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.42);
  border-radius: 4px;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.acx-btn--phone:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
  border-color: #ffffff;
}

.acx-btn--phone i {
  font-size: 12px;
  font-weight: 600;
}

/* =================================
   HAMBURGER
================================= */

.acx-hamburger {
  position: relative;
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 38px;
  height: 38px;
  margin-left: 12px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.38);
  border-radius: 4px;
  cursor: pointer;
}

.acx-hamburger__bar {
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    top 0.3s ease;
}

.acx-hamburger__bar:nth-child(1) {
  top: 11px;
}

.acx-hamburger__bar:nth-child(2) {
  top: 18px;
}

.acx-hamburger__bar:nth-child(3) {
  top: 25px;
}

.acx-hamburger--open .acx-hamburger__bar:nth-child(1) {
  top: 18px;
  transform: rotate(45deg);
}

.acx-hamburger--open .acx-hamburger__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.acx-hamburger--open .acx-hamburger__bar:nth-child(3) {
  top: 18px;
  transform: rotate(-45deg);
}



/* Banner */

.banner-Part {
  position: relative;
  overflow: hidden;
  padding: 0;
  background:
    url('assets/images/banner-bg.png') top right no-repeat,
    radial-gradient(circle,
      rgba(250, 254, 255, 1) 0%,
      rgba(246, 251, 255, 1) 100%);
  background-size: auto, cover;
}

.acx-hero-slider,
.acx-hero-slider .slick-list,
.acx-hero-slider .slick-track {
  width: 100%;
}

.acx-hero-slide {
  padding: 172px 0 105px;
  outline: none;
}

.banner-info h1,
.banner-info h2 {
  margin: 0;
  padding-bottom: 30px;
  color: #00569e;
  font-size: 52px;
  font-weight: 700;
  line-height: 70px;
}

.banner-info p {
  margin: 0;
  padding-bottom: 39px;
  color: #000000;
  font-size: 19px;
  line-height: 41px;
}

.banner-info p span {
  color: #00569e;
  font-weight: 500;
}

.get-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
}

.get-btns a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 179px;
  height: 56px;
  border: 2px solid #00569e;
  border-radius: 4px;
  background-color: #00569e;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.get-btns a:last-child {
  margin-left: 0;
  border-color: #1d71b8;
  background-color: transparent;
  color: #1d71b8;
}

.get-btns a:first-child:hover {
  background-color: transparent;
  color: #00569e;
}

.get-btns a:last-child:hover {
  background-color: #1d71b8;
  color: #ffffff;
}

.banner-img {
  position: relative;
  text-align: center;
}

.banner-img img {
  display: inline-block;
  width: 100%;
  max-width: 100%;
}

/* Slick arrows */

/* .acx-hero-slider .slick-prev,
.acx-hero-slider .slick-next {
    position: absolute;
    top: 55%;
    z-index: 10;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background-color: #00569e;
    transform: translateY(-50%);
    transition: all 0.3s ease;
        font-size: 0;
    color: transparent;
    text-indent: -9999px;
    overflow: hidden;
}

.acx-hero-slider .slick-prev {
    left: 25px;
}

.acx-hero-slider .slick-next {
    right: 25px;
}

.acx-hero-slider .slick-prev:hover,
.acx-hero-slider .slick-next:hover,
.acx-hero-slider .slick-prev:focus,
.acx-hero-slider .slick-next:focus {
    background-color: #e3180c;
}

.acx-hero-slider .slick-prev::before,
.acx-hero-slider .slick-next::before {
    display: block;
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 26px;
    line-height: 44px;
    text-align: center;
    text-indent: 0;
    opacity: 1;
}

.acx-hero-slider .slick-prev::before {
    content: "❮";
}

.acx-hero-slider .slick-next::before {
    content: "❯";
} */


/* Slick dots */

.acx-hero-slider .slick-dots {
  bottom: 28px;
}

.acx-hero-slider .slick-dots li {
  width: 12px;
  height: 12px;
  margin: 0 5px;
}

.acx-hero-slider .slick-dots li button {
  width: 12px;
  height: 12px;
  padding: 0;
}

.acx-hero-slider .slick-dots li button::before {
  width: 12px;
  height: 12px;
  color: #00569e;
  font-size: 12px;
  opacity: 0.35;
}

.acx-hero-slider .slick-dots li.slick-active button::before {
  color: #e3180c;
  opacity: 1;
}

/* Responsive */

@media (max-width: 1399.98px) {
  .acx-hero-slide {
    padding: 172px 0 0px;
  }

  .banner-info h1,
  .banner-info h2 {
    font-size: 44px;
    line-height: 1.35;
  }

  .banner-info p {
    font-size: 17px;
    line-height: 2;
  }
}

@media (max-width: 991.98px) {
  .acx-hero-slide {
    padding: 0;
  }

  .banner-info {
    text-align: center;
  }

  .banner-info h1,
  .banner-info h2 {
    font-size: 39px;
    line-height: 1.35;
  }

  .banner-info p {
    font-size: 17px;
    line-height: 1.8;
  }

  .banner-info br {
    display: none;
  }

  .get-btns {
    justify-content: center;
  }

  .banner-img {
    margin-top: 25px;
  }

  .banner-img img {
    max-width: 650px;
  }

  .acx-hero-slider .slick-prev {
    left: 10px;
  }

  .acx-hero-slider .slick-next {
    right: 10px;
  }
}

@media (max-width: 767.98px) {
  .acx-hero-slide {
    padding: 0;
  }

  .banner-info h1,
  .banner-info h2 {
    padding-bottom: 20px;
    font-size: 41px;
    line-height: 1.35;
  }

  .banner-info p {
    padding-bottom: 28px;
    font-size: 16px;
    line-height: 1.7;
  }

  .get-btns a {
    width: 160px;
    height: 50px;
    font-size: 15px;
  }

  .acx-hero-slider .slick-prev,
  .acx-hero-slider .slick-next {
    display: none !important;
  }

  .acx-hero-slider .slick-dots {
    bottom: 18px;
  }
}

@media (max-width: 479.98px) {
  .acx-hero-slide {
    padding: 0;
  }

  .banner-info h1,
  .banner-info h2 {
    font-size: 33px;
  }

  .get-btns {
    align-items: center;
    gap: 12px;
  }

  .get-btns a {
    width: 100%;
    max-width: 250px;
  }
}

/* Banner Bottom */

.trusted {
  background-color: #DAECF6;
  padding: 31px 0;
}

.premium-box {
  display: flex;
  justify-content: space-between;
}

.pre-qua {
  display: flex;
  align-items: center;
}

.pre-img {
  width: 54px;
}

.pre-qua h2 {
  width: calc(100% - 54px);
  padding-left: 19px;
  font-size: 18px;
  color: #00569E;
  font-weight: 700;
  line-height: 25px;
}

.pre-qua h2 span {
  color: #000;
  font-weight: 600;
}

.quality-img img {
  position: absolute;
  bottom: 0;
  right: 0;
}

.trust-sec {
  position: relative;
}

.instrument {
  padding: 90px 0;
}

.instrument-box {
  background-image: url(assets/images/instru-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 56px 0;
  position: relative;
  border-radius: 30px;
}

.instrument-box::before {
  position: absolute;
  content: "";
  background-color: #00569E;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.9;
  border-radius: 30px;
}

.instrument-box h2 {
  font-size: 35px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.accurex p {
  color: #ffffff;
  padding-bottom: 25px;
  line-height: 28px;
  position: relative;
  padding-right: 50px;
}

.accurex a {
  background-color: #D71209;
  font-size: 17px;
  font-weight: 600;
  width: 179px;
  height: 56px;
  color: #fff;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: 0.3s ease;
}
.accurex a:hover{
	background-color: #b9150d;
}

.instru-big {
  position: relative;
  text-align: center;
}

/* Leak Tight */

.leak-tight {
  padding: 90px 0;
  background-color: #f4f4f4;
}

.leak-tight h2 {
  font-size: 40px;
  line-height: 60px;
  font-weight: 700;
  color: #00569E;
  text-align: center;
  font-style: italic;
  margin-bottom: 12px;

}

.title-line {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 74px;
}

.title-line span {
  width: 7px;
  height: 7px;
  background: #D71209;
  border-radius: 50%;
  display: inline-block;
}

.title-line div {
  width: 300px;
  height: 7px;
  background: #D71209;
  border-radius: 20px;
}

.tube-fitting h2 {
  color: #00569E;
  font-weight: 700;
  font-size: 35px;
  font-style: normal;
  margin-bottom: 0;
}

.tube-fitting p {
  color: #333;
  font-size: 18px;
  line-height: 40px;
  text-align: center;
  font-weight: 500;
  padding-bottom: 19px;
}

.tube-fitting .slick-prev {
  display: none !important;
}

.tube-fitting .slick-next {
  display: none !important;
}

.tube-slider .slick-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
}

.tube-slider .slick-dots li {
  width: auto;
  height: auto;
  margin: 0;
}

.tube-slider .slick-dots li button {
  font-size: 0;
  width: 14px;
  height: 14px;
  border: none;
  border-radius: 50%;
  background: #d60000;
  padding: 0;
  cursor: pointer;
}

.tube-slider .slick-dots li button:before {
  display: none;
}

.tube-slider .slick-dots li.slick-active button {
  background: #0a5ca8;
  transform: scale(1.2);
}

.pipe-fittings {
  margin-top: 74px;
}
.down-cat-btn{
	text-align: center;
	margin-top: 50px;
}
.down-cat-btn a{
	border-radius: 4px;
    font-size: 17px;
    color: #fff;
    font-weight: 600;
    padding: 15px 25px;
    background-color: #d71209;
    display: inline-block;
	transition: 0.3s ease;
}
.down-cat-btn a:hover{
	background-color: #b9150d;
}
.down-cat-btn a i{
	margin-left: 6px;
}

/* Enq Section */

.accu-del {
  padding: 45px 0;
  background-image: url(assets/images/enq-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.accu-del::before {
  position: absolute;
  content: "";
  background-color: #0B2E63;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.8;
}
.foot-del{
	padding: 10px 0;
}

.trust-del h2 {
  font-size: 34px;
  font-weight: 600;
  position: relative;
  color: #fff;
  line-height: 50px;
}

.send-btn {
  position: relative;
  display: flex;
  justify-content: end;
  align-items: center;
}

.send-btn a {
  border: 2px solid #fff;
  border-radius: 4px;
  width: 202px;
  height: 57px;
  font-size: 16px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
}

.send-btn a i {
  padding-left: 10px;
}

.send-btn a:last-child {
  margin-left: 27px;
  border: 2px solid #fff;
  border-radius: 4px;
  width: 249px;
  height: 57px;
  background-color: #fff;
  color: #00569E;
  font-size: 16px;
  font-weight: 600;
}

.send-btn a:last-child img {
  padding-right: 10px;
}

.trust-flow {
  padding-top: 74px;
}

/* Review */

.testimonial {
  background-color: #fff;
}

.review-time {
  background-image: url(assets/images/rainbow.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 60px;
}

.review-time::before {
  position: absolute;
  content: "";
  background-color: #fff;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.97;
}

.review-time h2 {
  color: #00569E;
  font-weight: 700;
  font-size: 35px;
  font-style: normal;
  margin-bottom: 0;
  position: relative;
  line-height: 60px;
  text-align: center;
}

.review-time p {
  color: #333;
  font-size: 18px;
  line-height: 40px;
  text-align: center;
  font-weight: 500;
  padding-bottom: 19px;
  position: relative;
}

.testi-box {
  position: relative;
  background-color: #fff;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.07);
  padding: 30px;
  margin: 26px 17px 60px 17px;
	min-height: 330px;
}

.testi-first {
  display: flex;
  justify-content: space-between;
}

.testi-first i {
  color: #00569E;
}

.testi-box p {
  text-align: left;
  line-height: 27px;
  font-size: 16px;
  color: #333333;
  padding-top: 18px;
}

.testi-box h2 {
  color: #00569E;
  font-weight: 600;
  font-size: 18px;
  text-align: left;
  line-height: 1.2;
}

.testi-box h3 {
  color: #8f8f8f;
  font-size: 16px;
  line-height: 20px;
  font-style: italic;
  font-weight: 600;
  padding-top: 4px;
}

.two-review {
  padding-bottom: 50px;
}

/* Faq */

.faq-img {
  padding-left: 60px;
}

.faq-img p {
  text-align: left;
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  font-weight: 500;
  padding-bottom: 10px;
  font-family: "Poppins", sans-serif;
}

.faq-img h2 {
  text-align: left;
  font-size: 45px;
  line-height: 55px;
  font-weight: 700;
  color: #00235A;
}

.faq-img img {
  position: relative;
}

.acx-faq {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-right: 60px;
  position: relative;
}

/* ══ CARD ══ */
.acx-faq__card {
  background: #ffffff;
  box-shadow: 0px 16px 32px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.acx-faq__card:hover {
  box-shadow: 0 4px 18px rgba(10, 40, 90, 0.12);
}

/* ══ QUESTION ROW ══ */
.acx-faq__question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 32px 10px 28px;
  text-align: left;
}

.acx-faq__question-text {
  font-size: 18px;
  font-weight: 600;
  color: #00235A;
  line-height: 50px;

}

/* ══ ICON (+ / −) ══ */
.acx-faq__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s;
  position: relative;
}

/* Horizontal bar (always visible) */
.acx-faq__icon::before {
  content: '';
  position: absolute;
  width: 12px;
  height: 2px;
  background: #00569E;
  border-radius: 2px;
  transition: background 0.3s;
}

/* Vertical bar (visible when closed = + sign) */
.acx-faq__icon::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 12px;
  background: #00569E;
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.3s;
}

/* Open state: vertical bar collapses → becomes − */
.acx-faq__card--open .acx-faq__icon::after {
  transform: scaleY(0);
  opacity: 0;
}

/* ══ ANSWER PANEL — CSS grid trick (perfectly smooth) ══ */
.acx-faq__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.acx-faq__card--open .acx-faq__body {
  grid-template-rows: 1fr;
}

/* Inner wrapper needed for grid trick */
.acx-faq__body-inner {
  overflow: hidden;
}

.acx-faq__answer {
  padding: 0 28px 24px;
  font-size: 0.93rem;
  color: #5a6a80;
  line-height: 1.75;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s;
}

.acx-faq__card--open .acx-faq__answer {
  opacity: 1;
  transform: translateY(0);
}

.acx-faq__card--open .acx-faq__answer {
  padding-top: 11px;
  color: #666666;
  font-size: 16px;
  line-height: 28px;
  text-align: left;
  padding-bottom: 33px;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

.get-exp p {
  font-family: "Poppins", sans-serif;
  position: relative;
  font-size: 18px;
  line-height: 25px;
  color: #fff;
  padding-top: 10px;
}

/* Footer */

.footer-section {
  background: #f4f4f4;
  padding: 55px 0;
}

.footer-section h4 {
  font-size: 1.3em;
  font-weight: 600;
  color: #00569E;
  margin-bottom: 30px;
  line-height: 28px;
  font-family: "Poppins", sans-serif;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a,
.footer-section a {
  text-decoration: none;
  color: #000;
  font-size: 15px;
  font-weight: normal;
  font-family: "Poppins", sans-serif;
}

.footer-section a:hover {
  color: #002e6d;
}

.contact-item {
  display: flex;
  gap: 18px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid #e2e2e2;
  align-items: flex-start;
}

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

.contact-item span {
  display: block;
  color: #000;
  font-size: 14px;
  margin-bottom: 5px;
}

.contact-item p {
  color: #000000;
  font-size: 15px;
  line-height: 1.6;
}

.contact-item a {
  color: #00235A;
  font-size: 15px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}

.about-text {
  font-size: 15px;
  line-height: 1.6;
  color: #000;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 34px;
  height: 34px;
  border: 1px solid #002e6d;
  color: #002e6d;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.social-links a:hover {
  background: #002e6d;
  color: #fff;
}

.copyright {
  text-align: center;
  margin-top: 3em;
  padding-top: 2em;
  border-top: solid 1px #ddd;
  font-family: "Poppins", sans-serif;
}

/* About Us Page */

.inner-banner {
  position: relative;
  min-height: 480px;
  background-image: url("https://accurexengitech.com/wp-content/uploads/2026/08/breadcrumb-img.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(0 0 0 / 77%) 0%, rgb(0 86 158 / 29%) 50%, rgb(0 86 158 / 24%) 100%);
}

.banner-container {
  position: relative;
  min-height: 480px;
}

.banner-title {
  position: absolute;
  left: 12px;
  top: 60%;
  transform: translateY(-50%);
  margin: 0;
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  z-index: 2;
}

.breadcrumb-box {
  position: absolute;
  left: 12px;
  bottom: 0;
  z-index: 2;
  background: #fff;
  padding: 15px 20px;
  border-radius: 10px 10px 0 0;
  min-width: 182px;
}

.breadcrumb {
  align-items: center;
}

.breadcrumb-item,
.breadcrumb-item a {
  font-size: 17px;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb-item a {
  color: #111;
}

.breadcrumb-item.active {
  color: #00569E;
}

.breadcrumb-item+.breadcrumb-item::before {
  content: "»";
  color: #00569E;
  padding-right: 8px;
}

.inner-about {
  padding: 80px 0;
  background-color: #f4f4f4;
}

.inner-about h2 {
  font-size: 42px;
  line-height: 60px;
  font-weight: 800;
  color: #00569E;
  text-align: center;
  font-style: italic;
  margin-bottom: 30px;
}

.inner-about p {
  color: #333;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 500;
  padding-bottom: 10px;
  margin-bottom: 0;
}

.inner-about p:first-child {
  padding-top: 30px;
}

.in-about-img {
  position: sticky;
  top: 0;
}

.company-strength-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(15, 87, 156, 0.1), transparent 30%),
    linear-gradient(135deg, #f4f8fc 0%, #ffffff 50%, #eef5fb 100%);
}

.company-strength-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  border: 60px solid rgba(11, 75, 133, 0.04);
  border-radius: 50%;
}

.company-strength-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 260px;
  height: 260px;
  border: 45px solid rgba(0, 170, 160, 0.04);
  border-radius: 50%;
}

.company-strength-section .container {
  position: relative;
  z-index: 2;
}

/* Section Heading */

.section-heading h2 {
  margin-bottom: 18px;
  color: #102b43;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
}

.section-heading p {
    margin: 0;
    color: #102b43;
    font-size: 32px;
    line-height: 1.3;
    font-weight: 500;
	margin-bottom: 40px;
}

/* Cards */

.strength-card {
  position: relative;
  padding: 40px 32px 35px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e1ebf4;
  border-radius: 18px;
  box-shadow: 0 15px 45px rgba(16, 43, 67, 0.08);
  transition: all 0.35s ease;
}

.strength-card:hover {
  transform: translateY(-10px);
  border-color: rgba(11, 101, 165, 0.3);
  box-shadow: 0 25px 55px rgba(16, 43, 67, 0.15);
}

.strength-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #0b65a5, #00a99d);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.strength-card:hover::before,
.featured-card::before {
  transform: scaleX(1);
}

.featured-card {
  background: linear-gradient(145deg, #00569E, #003968);
}

/* Content */

.strength-card h3 {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 16px;
  color: #102b43;
  font-size: 25px;
  font-weight: 750;
}

.strength-card h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45px;
  height: 3px;
  background: #fff;
  border-radius: 10px;
}

.strength-card p {
  color: #617384;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 0;
}

.featured-card h3,
.featured-card p {
  color: #ffffff;
}

.featured-card p {
  color: rgb(255 255 255 / 86%);
}

.expo-dis {
  padding: 80px 0;
  background-color: #f4f4f4;
}
.page-id-506 .expo-dis{
  padding-bottom: 0;
}

.abo-export {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.abo-export h2 {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 16px;
  color: #102b43;
  font-size: 28px;
  font-weight: 800;
}

.abo-export p {
  color: #333;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 500;
  padding-bottom: 10px;
  margin-bottom: 0;
}

.last-exp {
  margin-top: 50px;
}

/* Contact Us Page */

.contact-page {
  padding: 80px 0;
}

.contact-page h2 {
  font-size: 48px;
  line-height: 60px;
  font-weight: 800;
  color: #00569E;
  text-align: center;
  margin-bottom: 65px;
}

.lp-contact-details {
  padding: 20px 0;
  background: #ffffff;
}

.lp-contact-wrapper {
  width: 100%;
  max-width: 540px;
}

.lp-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  padding: 25px 0 20px;
  border-bottom: 1px solid #d8d8d8;
}

.lp-contact-row:first-child {
  padding-top: 0;
}

.lp-contact-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

/* Icon */

.lp-contact-icon {
  display: flex;
  flex: 0 0 40px;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-top: 1px;
  color: #ffffff;
  background: #00569E;
  border-radius: 4px;
}

.lp-contact-icon i {
  font-size: 16px;
  line-height: 1;
}

/* Text */

.lp-contact-text {
  flex: 1;
  min-width: 0;
}

.lp-contact-text h4 {
  margin: 0 0 4px;
  color: #111111;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.65;
}

.lp-contact-text address {
  margin: 0;
  color: #222222;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.62;
}

.lp-contact-title {
  margin: 0 0 4px;
  color: #111111;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.65;
}

/* Links */

.lp-contact-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.lp-contact-links a {
  margin: 0;
  color: #222222;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.62;
  transition: color 0.25s ease;
}

.lp-contact-links a:hover {
  color: #00569E;
}

.lp-contact-links span {
  color: #000000;
}

address {
  margin-bottom: 0;
}

.lpk-form-box {
  background: #00569E;
  padding: 35px;
  border-radius: 18px;
}

.lpk-form-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
}

.lpk-field {
  margin-bottom: 22px;
}

.lpk-field input,
.lpk-field textarea {
  width: 100%;
  border: none;
  outline: none;
  background: #fff;
  border-radius: 4px;
  padding: 16px 18px;
  font-size: 16px;
  color: #333;
  transition: .3s;
}

.lpk-field input {
  height: 50px;
}

.lpk-field textarea {
  height: 100px;
  resize: none;
}

.lpk-field input::placeholder,
.lpk-field textarea::placeholder {
  color: #616161;
}

.lpk-btn {
  width: 100%;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, .7);
  background: transparent;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  border-radius: 4px;
  transition: .35s;
  cursor: pointer;
}

.lpk-btn:hover {
  background: #fff;
  color: #00569E;
}

/* Tube Fitting Page */

.tube-page {
  padding: 80px 0;
}

.tube-img img {
  border-radius: 15px;
}

.super-qua {
  padding-left: 20px;
}

.tube-page h2 {
  font-size: 32px;
  line-height: 1.3;
  font-weight: 700;
  color: #00569E;
  margin-bottom: 25px;
  text-align: center;
}
.tube-page h3{
  color: #00569E;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 15px;
  margin-top: 10px;
}

.super-qua p {
  color: #333;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 500;
  padding-bottom: 10px;
  margin-bottom: 0;
}

.super-qua p:last-child {
  padding-bottom: 0;
}

.tube-img {
  position: sticky;
  top: 0;
}

.connext-btn {
  text-align: center;
}

.tube-slide a {
  color: #00569E;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin: 0 auto;
  width: 100%;
}

/* Four Cards */

section.tube-four-cards { padding-bottom: 80px; }
.spec-card { background: #fff; border-radius: 15px; padding: 22px; height: 100%; box-shadow: 0 8px 25px rgba(0, 0, 0, .08); transition: .3s; }
.spec-card:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(0, 0, 0, .15); }
.spec-card h4 { margin: 0 0 20px; color: #00569E; font-size: 22px; font-weight: 700; line-height: 1.3; }
.spec-card ul { padding: 0; margin: 0; list-style: none;}
.spec-card ul li { position: relative; margin-bottom: 10px; padding-left: 21px; color: #333; font-size: 16px; font-weight: 500; line-height: 1.6; }
.spec-card ul li:before { position: absolute; top: 9px; left: 0; width: 7px; height: 7px; border-radius: 50%; background-color: #00569E; content: "";}
.spec-card ul li:last-child{ margin-bottom: 0; }

/* Connector Page */

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

.connector-page-cont h2 {
  font-size: 32px;
  line-height: 1.3;
  font-weight: 700;
  color: #00569E;
  margin-bottom: 25px;
  text-align: center;
}

.connector-page-cont p {
  color: #333;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 500;
  padding-bottom: 10px;
  max-width: 85%;
  margin: 0 auto;
  text-align: center;
}

/* =====================================
           PRODUCT SECTION
        ===================================== */

.acx-product-section {
  padding: 80px 0;
  background: #f5f5f5;
}

.acx-product-section .row {
  row-gap: 30px;
}

/* =====================================
           PRODUCT CARD
        ===================================== */

.acx-product-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  border: 1px solid #d1d1d1;
  background: #ffffff;
}

/* =====================================
           PRODUCT CODE
        ===================================== */

.acx-product-code {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  min-width: 75px;
  padding: 10px 27px 13px 19px;
  border-radius: 0 0 38px 0;
  background: #00569E;
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
}

/* =====================================
           PRODUCT IMAGE SLIDER
        ===================================== */

.acx-product-slider {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.acx-product-slide {
  /* height: 320px; */
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 0;
}

.acx-product-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* =====================================
           PRODUCT TITLE
        ===================================== */

.acx-product-title {
  min-height: 60px;
  padding: 15px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #00569E;
  color: #364359;
  text-align: center;
}

.acx-product-title h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}

.acx-product-title p {
  margin: 3px 0 0;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
}

/* =====================================
           SLICK ARROWS
        ===================================== */

.acx-product-slider .slick-prev,
.acx-product-slider .slick-next {
  position: absolute;
  top: 50%;
  z-index: 25;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #091039;
  color: #ffffff;
  font-size: 0;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.3s ease;
}

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

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

.acx-product-slider .slick-prev:hover,
.acx-product-slider .slick-next:hover,
.acx-product-slider .slick-prev:focus,
.acx-product-slider .slick-next:focus {
  background: #202454;
}

.acx-product-slider .slick-prev::before,
.acx-product-slider .slick-next::before {
  display: block;
  color: #ffffff;
  font-size: 22px;
  line-height: 38px;
  opacity: 1;
}

.acx-product-slider .slick-prev::before {
  content: "‹";
}

.acx-product-slider .slick-next::before {
  content: "›";
}

/* =====================================
           SLICK FIXES
        ===================================== */

.acx-product-slider .slick-list,
.acx-product-slider .slick-track {
  height: 100%;
}

.acx-product-slider .slick-slide {
  outline: none;
}

/* .acx-product-slider .slick-slide>div {
  height: 100%;
} */

/* Ball Valve Page */

/* ==================================================
   Product Details Section
================================================== */

.acx-product-detail-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background-color: #f4f4f4;
}

/* Heading */

.acx-product-heading {
  margin-bottom: 52px;
}

.acx-product-heading h2 {
  margin: 0 0 10px;
  color: #1d2430;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
}

.acx-product-heading p {
  margin: 0;
  color: #333;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}

.acx-heading-line {
  display: block;
  width: 80px;
  height: 6px;
  margin: 24px auto 0;
  border-radius: 20px;
  background-color: #0c3165;
}

/* Information Cards */

.acx-info-card {
  height: 100%;
  min-height: 268px;
  padding: 25px 25px 24px;
  border-radius: 10px;
  background-color: #ffffff;
  box-shadow: 0 7px 28px rgba(0, 0, 0, 0.08);
}

.acx-info-card h3 {
  margin: 0 0 20px;
  color: #00569E;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}

.acx-info-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.acx-info-card ul li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 21px;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

.acx-info-card ul li:last-child {
  margin-bottom: 0;
}

.acx-info-card ul li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #00569E;
  content: "";
}

/* Product Image Slider */

.acx-product-visual {
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

.acx-product-slider {
  position: relative;
  border: 1px solid #c9c9c9;
  box-shadow: 0 7px 28px rgba(0, 0, 0, 0.08);
}

.acx-product-slide {
  outline: none;
}

.acx-product-image {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* border: 1px solid #c9c9c9; */
  background-color: #ffffff;
}

.acx-product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Slick Arrows */

.acx-product-slider .slick-prev,
.acx-product-slider .slick-next {
  z-index: 10;
  width: 36px;
  height: 36px;
  border: 0;
  background-color: #091039;
  transition: background-color 0.3s ease;
}

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

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

.acx-product-slider .slick-prev:hover,
.acx-product-slider .slick-prev:focus,
.acx-product-slider .slick-next:hover,
.acx-product-slider .slick-next:focus {
  background-color: #202454;
}

.acx-product-slider .slick-prev::before,
.acx-product-slider .slick-next::before {
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 20px;
  line-height: 1;
  opacity: 1;
}

.acx-product-slider .slick-prev::before {
  content: "‹";
}

.acx-product-slider .slick-next::before {
  content: "›";
}

/* Slick Dots */

.acx-product-slider .slick-dots {
  bottom: 12px;
}

.acx-product-slider .slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0 4px;
}

.acx-product-slider .slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
}

.acx-product-slider .slick-dots li button::before {
  width: 10px;
  height: 10px;
  color: #0c3165;
  font-size: 10px;
  opacity: 0.4;
}

.acx-product-slider .slick-dots li.slick-active button::before {
  color: #d9190d;
  opacity: 1;
}

/* Enquiry Button */

.acx-enquiry-wrap {
  margin-top: 32px;
}

.acx-enquiry-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 147px;
  min-height: 48px;
  padding: 12px 23px;
  border: 1px solid #00569E;
  border-radius: 5px;
  background-color: #00569E;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: all 0.3s ease;
}

.acx-enquiry-btn:hover {
  border-color: #0c3165;
  background-color: #0c3165;
  color: #ffffff;
}

/* ==================================================
   Responsive
================================================== */

@media (max-width: 1199.98px) {
  .acx-info-card {
    min-height: 290px;
    padding: 23px 21px;
  }

  .acx-product-image {
    height: 390px;
  }
}

@media (max-width: 991.98px) {
  .acx-product-detail-section {
    padding: 55px 0 65px;
  }

  .acx-product-heading {
    margin-bottom: 38px;
  }

  .acx-product-visual {
    max-width: 520px;
    margin-top: 20px;
  }

  .acx-product-image {
    height: 480px;
  }

  .acx-info-card {
    min-height: 270px;
  }
}

@media (max-width: 767.98px) {
  .acx-product-detail-section {
    padding: 45px 0 55px;
  }

  .acx-product-heading {
    margin-bottom: 32px;
  }

  .acx-product-heading h2 {
    font-size: 30px;
  }

  .acx-product-heading p {
    font-size: 15px;
  }

  .acx-heading-line {
    width: 65px;
    height: 5px;
    margin-top: 18px;
  }

  .acx-info-card {
    min-height: auto;
    padding: 24px 20px;
  }

  .acx-info-card h3 {
    margin-bottom: 10px;
    font-size: 21px;
  }

  .acx-info-card ul li {
    font-size: 16px;
	margin-bottom: 8px;
  }

  .acx-product-visual {
    max-width: 100%;
  }

  .acx-product-image {
    height: 390px;
  }
}

@media (max-width: 575.98px) {
  .acx-product-detail-section {
    padding: 40px 0 50px;
  }

  .acx-product-heading h2 {
    font-size: 27px;
  }

  .acx-product-heading p {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

  .acx-info-card {
    border-radius: 8px;
  }

  .acx-product-image {
    height: 320px;
  }

  .acx-product-slider .slick-prev,
  .acx-product-slider .slick-next {
    width: 34px;
    height: 34px;
  }

  .acx-enquiry-btn {
    min-width: 140px;
    min-height: 45px;
    font-size: 15px;
  }
}

@media (max-width: 399.98px) {
  .acx-product-image {
    height: 275px;
  }
}


/* Accesories Page */

/* ==========================================
   Accurex Air Header Zigzag Section
========================================== */

.page-id-490 .acx-product-slider{
	box-shadow: none;
	border: none;
}
.acx-air-zigzag-section {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  background-color: #f6f9fc;
}

.acx-air-zigzag-row {
  position: relative;
  margin-bottom: 90px;
}

.acx-air-zigzag-row:last-child {
  margin-bottom: 0;
}

/* Image Box */

.acx-air-zigzag-image {
  position: relative;
  margin-right: 30px;
  overflow: hidden;
  border-radius: 18px;
  background-color: #ffffff;
  box-shadow: 0 15px 45px rgba(8, 47, 88, 0.12);
}

.acx-air-zigzag-row:nth-child(even) .acx-air-zigzag-image {
  margin-right: 0;
  margin-left: 30px;
}

.acx-air-zigzag-image img {
  display: block;
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.acx-air-zigzag-image:hover img {
  transform: scale(1.04);
}

/* Content Box */

.zigzag-title {
background-color: #00569E;
    color: #fff;
    padding: 10px 21px 8px;
    display: inline-block;
    border-radius: 69px;
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
}

.acx-air-zigzag-content {
  position: relative;
  padding: 0px 10px 0px 15px;
  text-align: center;
}

.acx-air-zigzag-row:nth-child(even) .acx-air-zigzag-content {
  padding-right: 45px;
  padding-left: 20px;
}

.acx-air-zigzag-content h2 {
  margin: 0 0 15px;
  color: #00569E;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
}

.acx-air-zigzag-content p {
  color: #333;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 500;
  padding-bottom: 10px;
  margin-bottom: 0;
  text-align: left;
}

.acx-air-zigzag-content p:last-of-type {
  margin-bottom: 0px;
}

/* Divider */

.acx-air-zigzag-row::after {
  position: absolute;
  right: 12px;
  bottom: -46px;
  left: 12px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 86, 158, 0.2), transparent);
  content: "";
}

.acx-air-zigzag-row:last-child::after {
  display: none;
}

/* Home Certificate Add */

/* Certificate Section */

.bs-certificates-section {
    padding: 60px 0;
    background: #fbfbfb;
}

.bs-section-heading {
    max-width: 750px;
    margin: 0 auto 40px;
    text-align: center;
}

.bs-section-heading h2 {
margin: 0 0 15px;
    color: #00569E;
    font-size: 35px;
    font-weight: 700;
    line-height: 60px;
}

.bs-certificates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.bs-certificate-card {
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(36, 54, 95, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.bs-certificate-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 40px rgba(36, 54, 95, 0.15);
}

.bs-certificate-card a {
    color: inherit;
    text-decoration: none;
}

.bs-certificate-card img {
    width: 100%;
    height: 340px;
    object-fit: contain;
    background: #f5f5f5;
    border-radius: 6px;
}

.bs-certificate-card h3 {
    margin: 18px 0 8px;
    color: #455290;
    font-size: 18px;
    font-weight: 700;
}

.bs-certificate-card span {
    display: inline-block;
    color: #FFB038;
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 991px) {
    .bs-certificates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .bs-certificates-section {
        padding: 55px 0;
    }

    .bs-certificates-grid {
        grid-template-columns: 1fr;
    }

    .bs-section-heading h2 {
        font-size: 29px;
    }

    .bs-certificate-card img {
        height: auto;
    }
}

/* Modal Popup */

.modal-header{
    background:#00569E;
    color:#fff;
	border-bottom: none;
	justify-content: center;
    padding-top: 25px;
	padding-bottom: 25px;
	border-radius: 12px 12px 0 0;
}

.modal-title{
    font-size:26px;
    font-weight:700;
}

.modal-body{
    padding: 0 30px 0 30px;
	background-color: #00569E;
	border-radius: 12px;
}

.wpcf7 input,
.wpcf7 textarea{
    width:100%;
    margin-bottom:15px;
    padding:12px;
    border-radius:5px;
}

.wpcf7-submit{
    background:#d71209;
    color:#fff;
    border:none;
    padding:12px 30px;
    border-radius:5px;
	border: none !important;
	font-weight: 500;
	margin-bottom: 0 !important;
}
.wpcf7-submit:hover{
	background-color: #b9150d;
}
.modal-backdrop.show{
    opacity: .85 !important;
    background-color: #000 !important;
}

.modal-header .btn-close {
    position: absolute;
    top: -7px;
    right: -7px;
    padding: 11px;
    background-color: #fff;
    opacity: 1;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 17px;
}
.modal-content{
	border-radius: 20px;
	background:#00569E;
}
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder{
    color:#333;
}
.form-control:focus{
	box-shadow: none;
}
textarea.form-control{
   height: 130px;
}
.wpcf7 form .wpcf7-response-output{
	margin: 0 0 25px 0;
	color: #fff;
}
.wpcf7-not-valid-tip{
	color: #fff;
}



/* Media Query Start */

@media (max-width: 1400px) {

  .acx-btn--phone {
    display: none;
  }

  .banner-Part {
    padding-bottom: 82px;
  }

  .banner-info h1 {
    font-size: 44px;
    line-height: 60px;
  }

  .quality-img img {
    width: 130px;
  }

  .instrument-box h2 {
    font-size: 32px;
    line-height: 50px;
  }

  .instrument-box {
    padding-right: 20px;
  }

  .accurex p br {
    display: none;
  }

  .instrument {
    padding: 75px 0;
  }

  .leak-tight {
    padding: 60px 0;
  }

  .leak-tight h2 {
    font-size: 36px;
  }

  .title-line div {
    width: 285px;
    height: 5px;
  }

  .title-line {
    margin-bottom: 65px;
  }

  .trust-del h2 br {
    display: none;
  }

  .trust-del h2 {
    font-size: 31px;
    line-height: 45px;
  }

  .acx-faq {
    padding-right: 0;
    gap: 25px;
  }

  .acx-faq__question-text {
    font-size: 17px;
  }

  .faq-img h2 {
    text-align: left;
    font-size: 42px;
    line-height: 52px;
    font-weight: 700;
    color: #00235A;
    margin-bottom: 25px;
  }

  .get-exp p {
    font-size: 16px;
    margin-top: 10px;
  }

  .inner-about {
    padding: 50px 0;
  }

  .inner-about h2 {
    margin-bottom: 10px;
  }

  .company-strength-section {
    padding: 50px 0;
  }

  .expo-dis {
    padding: 50px 0;
  }

}

@media (max-width: 1199px) {

  .acx-nav__link {
    padding: 0 7px;
	  font-size: 15px;
  }
	.acx-nav__dropdown-toggle{
		margin-left: -4px;
	}
	.acx-logo{
		width: 160px;
	}

  .acx-cta {
    margin-left: 8px;
  }

  .acx-nav__link {
    gap: 3px;
  }

  .acx-navbar {
    padding: 0 15px;
  }

  .banner-info p br {
    display: none;
  }

  .banner-info p {
    line-height: 1.7;
    font-size: 16px;
    padding-bottom: 30px;
  }

  .banner-info h1 {
    font-size: 41px;
    line-height: 54px;
    padding-bottom: 25px;
  }
	.banner-info h2{
		font-size: 38px;
	}

  .get-btns a {
    width: 150px;
    height: 50px;
  }

  .pre-qua h2 {
    width: calc(100% - 54px);
    padding-left: 12px;
    font-size: 16px;
    color: #00569E;
    font-weight: 700;
    line-height: 22px;
  }

  .quality-img img {
    width: 120px;
  }

  .instrument-box {
    padding: 40px 0;
  }

  .instrument-box h2 {
    font-size: 28px;
    line-height: 42px;
    padding-bottom: 45px;
  }

  .accurex {
    padding-right: 25px;
  }

  .accurex p {
    padding-bottom: 15px;
  }

  .accurex a {
    width: 150px;
    height: 50px;
    margin-top: 10px;
  }

  .instrument {
    padding: 60px 0;
  }

  .leak-tight {
    padding: 50px 0;
  }

  .leak-tight h2 {
    font-size: 32px;
    line-height: 50px;
  }

  .send-btn {
    justify-content: center;
    margin-top: 25px;
  }

  .send-btn a {
    width: 170px;
    height: 50px;
  }

  .send-btn a:last-child {
    width: 230px;
    height: 50px;
  }

  .trust-del h2 {
    font-size: 28px;
    line-height: 40px;
    text-align: center;
  }

  .testi-box {
    margin: 26px 10px 60px 10px;
  }

  .testi-box p {
    color: #4f4f4f;
  }

  .acx-faq__question-text {
    line-height: 36px;
  }

  .acx-faq__card--open .acx-faq__answer {
    font-size: 15px;
    padding-bottom: 20px;
    padding-left: 20px;
  }

  .acx-faq__question {
    padding-left: 20px;
  }

  .faq-img h2 {
    font-size: 36px;
    line-height: 44px;
  }

  .get-exp p {
    text-align: center;
  }

  .qui-link {
    margin-top: 15px;
  }

  .footer-section {
    padding-bottom: 32px;
  }

  .connector-page {
    padding: 50px 0;
  }

  .connector-page-cont h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .connector-page-cont p {
    font-size: 17px;
    padding-bottom: 0;
  }

  .acx-product-section {
    padding: 60px 0;
  }

  .acx-product-code {
    font-size: 15px;
  }

  .acx-product-title h3 {
    font-size: 18px;
  }

  .acx-product-title p {
    font-size: 16px;
  }

  .acx-air-zigzag-section {
    padding: 75px 0;
  }

  .acx-air-zigzag-row {
    margin-bottom: 75px;
  }

  .acx-air-zigzag-image img {
    height: 370px;
  }

  .acx-air-zigzag-content {
    padding: 25px 10px 25px 30px;
  }

  .acx-air-zigzag-row:nth-child(even) .acx-air-zigzag-content {
    padding-right: 30px;
    padding-left: 10px;
  }

  .acx-air-zigzag-content h2 {
    font-size: 30px;
  }

  .acx-air-zigzag-content p {
    font-size: 16px;
  }

  .acx-air-zigzag-image {
    margin-right: 0;
  }

  .acx-air-zigzag-row:nth-child(even) .acx-air-zigzag-image {
    margin-left: 0;
  }
	.page-id-506 .abo-export h2{
		font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
	}

}

@media (max-width: 991px) {

  .acx-navbar {
    position: fixed;
    top: 0;
    left: 0;
    height: 85px;
    border-radius: 0;
  }

  .acx-hamburger {
    display: flex;
  }
	.acx-nav__link{
		font-size: 16px;
	}

  .acx-nav__right {
    position: fixed;
    top: 85px;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0 0 16px;
    background: #00569e;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition:
      max-height 0.35s ease,
      visibility 0.35s ease;
  }

  .acx-nav__right--open {
    max-height: calc(100vh - 85px);
    overflow-y: auto;
    visibility: visible;
  }

  .acx-nav__list {
    flex-direction: column;
    width: 100%;
    height: auto;
  }

  .acx-nav__item {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    height: auto;
  }

  /* Normal menu links */

  .acx-nav__item:not(.acx-nav__item--has-drop) > .acx-nav__link {
    width: 100%;
    height: auto;
    padding: 13px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  /* Dropdown parent row */

  .acx-nav__link-wrap {
    display: flex;
    align-items: stretch;
    width: 100%;
    height: auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .acx-nav__link-wrap .acx-nav__link {
    flex: 1;
    width: auto;
    height: auto;
    padding: 13px 20px;
    border-bottom: 0;
  }

  /* Separate arrow button */

  .acx-nav__dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 52px;
    height: auto;
    margin: 0;
    padding: 0;
    color: #ffffff;
    border-left: 1px solid rgba(255, 255, 255, 0.13);
  }

  .acx-nav__dropdown-toggle i {
    font-size: 12px;
  }

  .acx-nav__item--drop-open
    > .acx-nav__link-wrap
    .acx-nav__dropdown-toggle i {
    transform: rotate(180deg);
  }

  /* Mobile dropdown */

  .acx-dropdown {
    position: static;
    display: block;
    width: 100%;
    min-width: 0;
    max-height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #00569e;
    border: 0;
    border-left: 3px solid #d71209;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: max-height 0.3s ease;
  }

  .acx-dropdown--open {
    max-height: 350px;
    overflow-y: auto;
  }

  .acx-dropdown__item a {
    padding: 10px 20px 10px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  /* CTA */

  .acx-cta {
    flex-direction: column;
    margin: 14px 16px 0;
    gap: 10px;
  }

  .acx-btn--quote,
  .acx-btn--phone {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .acx-btn--phone {
    display: flex;
  }

  header {
    background-color: #00569E;
  }

  .banner-Part {
    margin-top: 50px;
    padding-top: 122px;
  }

  .quality-img img {
    width: 110px;
    left: 0;
    bottom: 110px;
  }

  .accurex {
    padding-left: 25px;
    margin-top: 25px;
  }

  .faq-img p {
    text-align: center;
  }

  .faq-img h2 {
    text-align: center;
  }

  .faq-img h2 br {
    display: none;
  }

  .inner-banner,
  .banner-container {
    min-height: 460px;
  }

  .banner-title {
    font-size: 36px;
  }

  .company-strength-section {
    padding: 75px 0;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading h2 {
    font-size: 34px;
  }

  .strength-card {
    padding: 35px 28px 30px;
  }

  .lp-contact-wrapper {
    max-width: 100%;
  }

  .lpk-form-box {
    padding: 30px;
  }

  .lpk-form-title {
    font-size: 38px;
  }

  .acx-product-section {
    padding: 50px 0;
  }

  .acx-product-slide {
    padding: 30px 25px 20px;
  }

  .acx-product-title h3 {
    font-size: 19px;
  }

  .acx-product-title p {
    font-size: 17px;
  }

  .connector-page-cont p {
    max-width: 100%;
  }

  .connector-page-cont h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .super-qua {
    padding-left: 0;
    padding-top: 20px;
  }

  .contact-page {
    padding: 50px 0;
  }

  .contact-page h2 {
    font-size: 36px;
    margin-bottom: 30px;
  }

  .acx-air-zigzag-section {
    padding: 65px 0;
  }

  .acx-air-zigzag-row {
    margin-bottom: 65px;
  }

  .acx-air-zigzag-content,
  .acx-air-zigzag-row:nth-child(even) .acx-air-zigzag-content {
    margin-bottom: 30px;
    padding: 0 5px;
  }

  .acx-air-zigzag-image,
  .acx-air-zigzag-row:nth-child(even) .acx-air-zigzag-image {
    margin: 0;
  }

  .acx-air-zigzag-image img {
    height: auto;
  }

  .acx-air-zigzag-content h2 {
    font-size: 31px;
  }
	.abo-export h2{
		font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
	}

}

@media (max-width: 767px) {

  .premium-box {
    flex-wrap: wrap;
    gap: 25px;
  }

  .banner-Part {
    padding-bottom: 20px;
    margin-top: 0;
    padding-top: 152px;
  }

  .banner-info h1 br {
    display: none;
  }

  .banner-info {
    text-align: center;
  }

  .get-btns {
    justify-content: center;
  }

  .quality-img img {
    bottom: 186px;
  }

  .accurex {
    text-align: center;
  }

  .accurex a {
    margin: 10px auto 0 auto;
  }

  .leak-tight h2 {
    font-size: 26px;
  }

  .title-line div {
    width: 175px;
  }

  .title-line {
    margin-bottom: 35px;
  }

  .pipe-fittings {
    margin-top: 50px;
  }

  .trust-del h2 {
    font-size: 24px;
    line-height: 36px;
    text-align: center;
  }

  .faq-img {
    padding-left: 0px;
  }

  .footer-section {
    padding: 35px 0;
  }

  .footer-section h4 {
    margin-bottom: 15px;
  }

  .inner-banner,
  .banner-container {
    min-height: 350px;
  }

  .inner-banner {
    background-position: center;
  }

  .banner-title {
    left: 15px;
    top: 60%;
    font-size: 30px;
  }

  .breadcrumb-box {
    left: 15px;
    bottom: 0;
    padding: 13px 16px;
    min-width: auto;
    border-radius: 8px 8px 0 0;
  }

  .breadcrumb-item,
  .breadcrumb-item a {
    font-size: 15px;
    font-weight: 500;
  }

  .company-strength-section {
    padding: 60px 0;
  }

  .section-heading {
    margin-bottom: 35px;
  }

  .section-heading h2 {
    font-size: 28px;
  }

  .section-heading p {
    font-size: 16px;
    line-height: 1.6;
  }

  .strength-card {
    padding: 30px 22px 26px;
    border-radius: 14px;
  }

  .strength-card:hover {
    transform: translateY(-5px);
  }

  .strength-card h3 {
    font-size: 22px;
	font-weight: 700;
  }

  .strength-card p {
    font-size: 14px;
  }

  .lpk-form-box {
    padding: 22px;
    border-radius: 14px;
  }

  .lpk-form-title {
    font-size: 32px;
    margin-bottom: 22px;
  }

  .lpk-field {
    margin-bottom: 18px;
  }

  .lpk-field input {
    height: 50px;
    font-size: 15px;
  }

  .lpk-field textarea {
    height: 110px;
    font-size: 15px;
  }

  .lpk-btn {
    height: 52px;
    font-size: 16px;
  }

  .connector-page-cont h2 {
    font-size: 22px;
  }

  .connector-page-cont p {
    font-size: 16px;
  }

  .contact-page h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .lpk-form-box {
    margin-top: 20px;
  }

  .acx-air-zigzag-section {
    padding: 50px 0;
  }

  .acx-air-zigzag-row {
    margin-bottom: 55px;
  }

  .acx-air-zigzag-content,
  .acx-air-zigzag-row:nth-child(even) .acx-air-zigzag-content {
    margin-bottom: 25px;
    padding: 0;
  }

  .acx-air-zigzag-image {
    padding: 0px;
    border-radius: 12px;
  }

  .acx-air-zigzag-image img {
    height: 330px;
    border-radius: 8px;
  }

  .acx-air-zigzag-content h2 {
    margin-bottom: 18px;
    font-size: 26px;
    line-height: 1.3;
  }

  .acx-air-zigzag-content p {
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.6;
  }

  .acx-air-zigzag-row::after {
    bottom: -28px;
  }

}

@media (max-width: 576px) {

  .banner-Part {
    position: relative;
    padding-top: 122px;
  }

  .banner-Part::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    background-color: #ffffff;
    width: 100%;
    height: 100%;
    opacity: 0.5;
  }

  .banner-info {
    position: relative;
  }

  .banner-img {
    position: relative;
  }

  .banner-info h1 {
    font-size: 34px;
    line-height: 42px;
    padding-bottom: 20px;
  }

  .quality-img img {
    bottom: 176px;
    width: 90px;
    left: 20px;
  }

  .premium-box {
    justify-content: space-around;
  }

  .instrument-box h2 {
    font-size: 22px;
    line-height: 36px;
    padding-bottom: 35px;
    font-weight: 600;
  }

  .instrument {
    padding: 40px 0;
  }

  .acx-logo {
    width: 170px;
    height: auto;
  }

  .acx-navbar {
    height: 90px;
  }

  .acx-nav__right {
    top: 75px;
  }

  .pre-qua h2 {
    font-size: 15px;
  }

  .leak-tight {
    padding: 35px 0;
  }

  .leak-tight h2 {
    font-size: 22px;
    line-height: 40px;
  }

  .tube-fitting p {
    line-height: 28px;
  }

  .sup-qua img {
    margin: auto;
  }

  .trust-del h2 {
    font-size: 22px;
  }

  .send-btn a:last-child {
    margin-left: 15px;
  }

  .review-time {
    margin-top: 30px;
    padding-top: 20px;
  }

  .review-time h2 {
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 40px;
  }

  .review-time p {
    line-height: 28px;
  }

  .testi-box {
    margin: 10px 10px 10px 10px;
  }

  .faq-img h2 {
    font-size: 25px;
    line-height: 40px;
    margin-bottom: 40px;
  }

  .lp-contact-details {
    padding: 15px 0;
  }

  .lp-contact-row {
    gap: 13px;
    padding: 18px 0 22px;
  }

  .lp-contact-icon {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }

  .lp-contact-icon i {
    font-size: 16px;
  }

  .lp-contact-text h4,
  .lp-contact-text p,
  .lp-contact-title,
  .lp-contact-links {
    font-size: 14px;
  }

  .lp-contact-text h4 {
    line-height: 1.55;
  }

  .lp-contact-text p {
    line-height: 1.65;
  }

  .lp-email-links {
    display: block;
    overflow-wrap: anywhere;
  }

  .lp-email-links span {
    display: none;
  }

  .lp-email-links a {
    display: block;
    margin-bottom: 3px;
  }

  .acx-product-section {
    padding: 35px 0;
  }

  .acx-product-section .row {
    row-gap: 22px;
  }

  .acx-product-slide {
    padding: 28px 20px 18px;
  }

  .acx-product-code {
    min-width: 82px;
    padding: 9px 16px 11px;
    font-size: 16px;
  }

  .acx-product-title {
    min-height: 82px;
    padding: 13px 12px;
  }

  .acx-product-title h3 {
    font-size: 18px;
  }

  .acx-product-title p {
    font-size: 16px;
  }

  .acx-product-slider .slick-prev,
  .acx-product-slider .slick-next {
    width: 34px;
    height: 34px;
  }

  .acx-product-slider .slick-prev::before,
  .acx-product-slider .slick-next::before {
    font-size: 20px;
    line-height: 34px;
  }

  .acx-product-title {
    min-height: 75px;
  }

  .inner-about h2 {
    font-size: 32px;
  }

  .inner-about p:first-child {
    padding-top: 20px;
  }

  .inner-about p {
    font-size: 16px;
  }

  .company-strength-section {
    padding: 50px 0;
  }

  .strength-card p {
    font-size: 16px;
  }

  .expo-dis {
    padding: 0 0 50px 0;
  }

  .abo-export h2 {
    font-size: 24px;
  }

  .abo-export p {
    font-size: 16px;
  }

  .tube-page {
    padding: 50px 0;
  }

  .tube-page h2 {
    font-size: 26px;
  }

  .super-qua p {
    font-size: 16px;
  }

  .contact-page h2 {
    font-size: 26px;
    line-height: 1.3;
  }

  .lpk-form-title {
    font-size: 24px;
  }

  .acx-air-zigzag-section {
    padding: 42px 10px;
  }

  .acx-air-zigzag-row {
    margin-bottom: 48px;
  }

  .acx-air-zigzag-image img {
    height: 270px;
  }

  .acx-air-zigzag-content h2 {
    font-size: 23px;
  }

  .acx-air-zigzag-content p {
    font-size: 16px;
    margin-bottom: 0;
  }
  .banner-info h2 {
     font-size: 34px;
     line-height: 42px;
     padding-bottom: 20px;
  }
	.connector-page-cont {
    padding: 0 10px;
}
	.acx-product-heading h2{
		margin-bottom: 5px;
	}
	.acx-info-card h3{
		font-size: 22px;
	}


}

@media (max-width: 450px) {

  .banner-info h1 {
    font-size: 30px;
    padding-bottom: 15px;
  }

  .instrument-box h2 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .instrument-box h2 br {
    display: none;
  }

  .accurex {
    padding-left: 15px;
    margin-top: 15px;
  }

  .leak-tight h2 {
    line-height: 32px;
  }

  .review-time h2 {
    line-height: 32px;
  }

  .trust-del h2 {
    line-height: 32px;
  }

  .banner-title {
    top: 65%;
  }

  .company-strength-section {
    padding: 50px 0;
  }

  .section-heading h2 {
    font-size: 25px;
  }

  .bottom-highlight {
    align-items: flex-start;
    padding: 14px;
  }

  .banner-info h1,
  .banner-info h2 {
    font-size: 29px;
  }

  .banner-info h1 br,
  .banner-info h2 br {
    display: none;
  }

  .premium-box {
    justify-content: flex-start;
  }

  .inner-about {
    padding: 35px 0;
  }

  .inner-about p {
    padding-left: 10px;
    padding-right: 10px;
  }

  .tube-page h2 {
    font-size: 24px;
  }

  .acx-air-zigzag-content h2 {
    font-size: 21px;
  }
	.acx-air-zigzag-section {
        padding: 42px 5px;
    }
}

@media (max-width: 400px) {

  .quality-img img {
    bottom: 170px;
    width: 85px;
    left: 10px;
  }

  .pre-img {
    width: 45px;
  }

  .pre-qua h2 br {
    display: none;
  }

  .lp-contact-row {
    gap: 10px;
  }

  .lp-contact-icon {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
  }

  .lp-contact-text h4,
  .lp-contact-text p,
  .lp-contact-title,
  .lp-contact-links {
    font-size: 13px;
  }

  .connector-page-cont h2 {
    font-size: 19px;
  }

  .acx-product-title {
    padding: 10px;
  }

  .tube-page h2 {
    font-size: 22px;
  }

  .acx-air-zigzag-image img {
    height: 230px;
  }

  .acx-air-zigzag-content h2 {
    font-size: 21px;
  }
	.pre-qua{
		width: 45%;
	}
	    .banner-info h1, .banner-info h2 {
        font-size: 27px;
        line-height: 36px;
    }
	.banner-info p{
		line-height: 1.6;
	}
	.send-btn{
		flex-direction: column;
		gap: 10px;
	}
	    .send-btn a:last-child {
        margin-left: 0;
    }
	.abo-export{
		padding: 20px;
	}

}