* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: var(--helvetica-neue-light);
}

html {
  scroll-behavior: smooth;
}
:root {
  --primary-color: #0d718b;
  --helvecita-neue-bold: "helvetica_neue107XBlkCn";
  --helvetica-neue-light: "helvetica_neuelight";
}

@font-face {
  font-family: "helvetica_neue107XBlkCn";
  src: url("../font/bold/heavy-webfont.woff2") format("woff2"),
    url("../font/bold/heavy-webfont.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "helvetica_neuelight";
  src: url("../font/light/helveticaneue-light-webfont.woff2") format("woff2"),
    url("../font/light/helveticaneue-light-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--helvecita-neue-bold);
}
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  font-family: var(--helvecita-neue-bold);
}
header span {
  font-family: var(--helvecita-neue-bold);
  overflow: hidden;
}
[animate] {
  visibility: hidden; /* hide until animation starts */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--helvecita-neue-bold);
}

a {
  color: inherit;
  text-decoration: none;
}

.primary-btn {
  background-color: var(--primary-color);
  font-weight: 400;
  font-size: 21px;
  line-height: 100%;
  color: #fff;
  padding: 20px 30px;
  display: inline-block;
}
.secondary-btn {
  background-color: transparent;
  font-weight: 400;
  color: #fff;
  border: 1px solid #fff;
  padding: 16px 30px;
  display: inline-block;
  font-family: var(--helvecita-neue-bold);
  font-size: 12px;
  line-height: 100%;
  border-radius: 2px;
}

.container {
  max-width: 1350px;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.fade-in-bottom {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.5s ease-out;
}

.fade-in-bottom.visible {
  opacity: 1;
  transform: translateY(0);
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  z-index: 9;
}
header::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  background-color: #fff;
  height: 1px;
  width: 100%;
  z-index: 99;
  transform: scaley(0.5);
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar {
  display: flex;
  gap: 50px;
  list-style: none;
}
.navbar li {
  padding: 35px 0;
}
.navbar li a {
  font-weight: 700;
  font-size: 12px;
  line-height: 100%;
  color: #fff;
  text-transform: uppercase;
  font-family: var(--helvecita-neue-bold);
}

.navbar li:last-child a {
  color: var(--primary-color);
  background: #ffffff;
  font-family: var(--helvecita-neue-bold);
  font-weight: 700;
  font-size: 12px;
  line-height: 6px;
  padding: 15px 30px;
  border-radius: 4px;
}

.hero-section {
  background-image: url("https://exfis.com/wp-content/uploads/2025/08/header_img-scaled.png");
  background-size: cover;
  background-position: center;
  height: 100dvh;
  display: flex;
  align-items: center;
  will-change: background-position;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}
/* .hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(165.48deg, #3c585f 10.29%, #c1c1c1 88.18%);
  opacity: 0.53;
} */

.hero-section h1 {
  font-weight: 700;
  font-size: 61px;
  line-height: 100%;
  color: #fff;
  margin-bottom: 20px;
  padding-top: 100px;
  line-height: 1.2;
}
.hero-section h1 span {
  font-family: var(--helvecita-neue-bold);
}
.hero-section p {
  font-weight: 400;
  font-size: 22px;
  line-height: 1.3;
  color: #fff;
  max-width: 420px;
}
.about-home {
  padding: 100px 0 80px 0;
}
.about-home-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 250px;
}
.about-home-details h2 {
  font-weight: 700;
  font-size: 30px;
  line-height: 100%;
  color: var(--primary-color);
  margin-bottom: 10px;
}
.about-home-details p {
  color: var(--primary-color);
  line-height: 1.3;
  font-weight: 400;
  font-size: 20px;
}
.about-home-details a {
  color: var(--primary-color);
  margin-top: 45px;
  display: inline-block;
  font-weight: 400;
  font-size: 22px;
  line-height: 100%;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 0%;
  text-decoration-skip-ink: auto;
}
.about-home-details-left p {
  margin-top: 40px;
}
.border-line {
  margin-bottom: 80px;
  height: 3px;
  width: 100%;
  background: linear-gradient(
    to right,
    #0d718b 0% 25%,
    #b2d9e2 25% 50%,
    #4d9ca3 50% 75%,
    #b9dbe2 75% 100%
  );
}

.values {
  position: relative;
  margin-bottom: 120px;
}
.values h3 {
  font-weight: 700;
  font-size: 34px;
  line-height: 100%;
  color: var(--primary-color);
  margin-bottom: 40px;
  text-align: center;
}
.values-grid {
  max-width: 80%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.values-inner-div {
  padding: 50px;
  position: relative;
}
.values-grid .values-inner-div:first-child::before {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: 3px;
  height: 100%;
  background-color: rgba(178, 217, 226, 1);
}
.values-grid .values-inner-div:first-child::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: 75%;
  height: 3px;
  background-color: rgba(13, 113, 139, 1);
}
.values-grid .values-inner-div:last-child::before {
  position: absolute;
  content: "";
  left: -3px;
  bottom: 0;
  width: 3px;
  height: 100%;
  background-color: rgba(178, 217, 226, 1);
}
.values-grid .values-inner-div:last-child::after {
  position: absolute;
  content: "";
  left: 0;
  top: -3px;
  width: 75%;
  height: 3px;
  background-color: rgba(77, 156, 163, 1);
}
.values-inner-div h4 {
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 15px;
}
.values-inner-div p {
  font-size: 16px;
  line-height: 22px;
  color: var(--primary-color);
}

.logistics {
  text-align: center;
  padding: 50px 0 85px 0;
  margin: 110px 0;
  position: relative;
}
.logistics::before {
  position: absolute;
  content: "";
  background-image: url(../images/logistic-background.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 -175px;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.4;
}
.logistics h3 {
  font-weight: 700;
  font-size: 37px;
  line-height: 100%;
  color: var(--primary-color);
}
.logistics h4 {
  font-family: var(--helvetica-neue-light);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.logistics p {
  font-weight: 500;
  font-size: 22px;
  line-height: 1.3;
  color: var(--primary-color);
  margin: 40px 0;
  margin: 20px auto 40px auto;
  max-width: 80%;
}

.service-card {
  background-color: var(--primary-color);
  width: 100%;
  overflow: hidden;
  display: block;
  position: relative;
  height: 370px;
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card-details {
  position: relative;
  z-index: 1;
  color: #fff;
}
.service-card-details h3 {
  font-weight: 700;
  font-size: 23px;
  line-height: 100%;
  margin-bottom: 20px;
}
.service-card-details h3 span {
  text-decoration: none;
}
.service-card-details p {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  line-height: 1.2;
}
.service-card span {
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 100%;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 0%;
  text-decoration-skip-ink: auto;
  color: #fff;
  position: relative;
  z-index: 1;
  display: inline-block;
}

.services-homepage .swiper-slide {
  transition: 0.3s;
  transition-property: unset !important;
}

@media (min-width: 1024px) {
  .service-card-details h3 {
    max-width: 260px;
  }
  .services-homepage .swiper-slide.swiper-slide-active {
    width: 530px !important;
  }
  .services-homepage .swiper {
    margin-left: -160px;
  }
  .services-homepage .swiper-slide p {
    width: 480px;
  }
}
.services-homepage .swiper-slide p {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: all 0.4s;
}
.services-homepage .swiper-slide-active p {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.news {
  padding-bottom: 120px;
}
.news h2 {
  font-weight: 700;
  font-size: 34px;
  line-height: 100%;
  color: var(--primary-color);
  margin-bottom: 60px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
}

.news-box {
  position: relative;
}

.news-box:not(:last-child)::after {
  position: absolute;
  content: "";
  right: -35px;
  bottom: 0;
  width: 1px;
  height: 100%;
  background-color: var(--primary-color);
  transform: scaleX(0.4);
}

.news-image {
  display: flex;
  height: 245px;
  overflow: hidden;
  border-radius: 16px;
}
.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.new-details h3 {
  margin: 15px 0;
  font-weight: 700;
  font-size: 25px;
  line-height: 100%;
  color: var(--primary-color);
  padding-right: 30px;
  font-family: var(--helvetica-neue-light);
}
.new-details a {
  color: var(--primary-color);
  display: inline-block;
  font-weight: 400;
  font-size: 21px;
  line-height: 100%;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 0%;
  text-decoration-skip-ink: auto;
}

.get-in-touch {
  position: relative;
  padding: 140px 0;
  background-color: #0f4757;
  overflow: hidden;
}
.get-in-touch-div h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 16px;
  color: #ffffff;
}
.get-in-touch-div p {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #fff;
  margin: 30px 0;
  line-height: 1.3;
}

.get-in-touch-div {
  max-width: 660px;
}
.background-logo {
  position: absolute;
  right: 0;
  bottom: 0;
}
.get-in-touch-avatar {
  position: absolute;
  right: 0;
  bottom: -145px;
}
.avatar-details {
  position: absolute;
  bottom: 80px;
  text-align: right;
  left: -165px;
}
.avatar-details h5 {
  font-weight: 700;
  font-size: 29px;
  line-height: 100%;
  color: #fff;
  margin-bottom: 15px;
}

.avatar-details h6 {
  font-weight: 700;
  font-size: 15px;
  line-height: 100%;
  color: #fff;
  text-transform: uppercase;
}
footer {
  padding: 70px 0 30px 0;
}
.footer-info a {
  display: block;
  font-weight: 400;
  font-size: 16px;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 0%;
  text-decoration-skip-ink: auto;
  color: #06262f;
  margin-bottom: 15px;
}
.footer-info p a {
  font-weight: 400;
  font-size: 13px;
  color: var(--primary-color);
}
.footer-info img {
  margin-bottom: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 310px;
}
.footer-nav ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  list-style: none;
  margin-bottom: 60px;
}
.footer-nav li a {
  font-weight: 700;
  font-style: Bold;
  font-size: 12px;
  line-height: 100%;
  font-family: var(--helvecita-neue-bold);
  color: #034353;
  text-transform: uppercase;
}
.social-media {
  display: flex;
  gap: 20px;
}
.footer-copyright {
  border-top: 1px solid #d8d8d8;
  padding-top: 30px;
  margin-top: 30px;
}
.footer-copyright p {
  color: #0f4757;
  font-weight: 700;
  font-size: 16px;
}
.footer-copyright a {
  color: #0f4757;
  font-weight: 700;
  font-size: 16px;
  font-size: 14px;
  text-transform: uppercase;
}
.terms {
  display: flex;
  gap: 40px;
}
.dropdown {
  cursor: pointer;
}
.dropdown-menu {
  position: absolute;
  right: 15px;
  max-width: 752px;
  background-color: #fff;
  width: 100%;
  top: 95px;
  border-top: 1px solid #0c718a;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 40px 35px;
  gap: 80px;
  position: relative;
}
.dropdown-content::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  background-color: var(--primary-color);
  height: 75%;
  width: 1px;
  transform: translate(-50%, -50%);
}
.dropdown-box a {
  font-size: 15px !important;
  color: var(--primary-color) !important;
  display: block;
  margin-bottom: 20px;
  font-family: var(--helvetica-neue-light) !important;
}
.dropdown-box h3 {
  color: var(--primary-color);
  font-size: 23px;
  margin-bottom: 30px;
}
.dropdown-box p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: var(--primary-color);
}

.hamburger {
  display: none;
}
.custom-logo-link {
  z-index: 99;
  position: relative;
  display: flex;
}
.logo-text {
  position: absolute;
  left: 145px;
  font-family: var(--helvecita-neue-bold);
  font-weight: 900;
  font-size: 32px;
  opacity: 0.5;
  color: #fff;
  top: 27px;
}
.single-hero-section {
  height: 400px;
  display: flex;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.single-hero-section::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;

  background: linear-gradient(
    173.73deg,
    rgba(51, 152, 177, 0.65) 19.54%,
    #01475a 143.19%
  );
}
.wp-singular .border-line {
  height: 11px;
}
.single-hero-section h2 {
  font-size: 40px;
  color: #fff;
  padding-top: 110px;
  max-width: 705px;
  line-height: 1;
}
.single-hero-section p {
  font-weight: 400;
  font-size: 22px;
  color: #fff;
  margin-top: 10px;
  max-width: 705px;
  line-height: 1;
}
.post-content-container {
  max-width: 1150px;
}
.post-content {
  padding-bottom: 60px;
}
.post-content p {
  font-weight: 400;
  font-size: 24px;
  color: #0f4757;
  line-height: 1.3;
  margin-bottom: 40px;
}
.text-with-without-img {
  background-color: var(--primary-color);
  padding: 100px 0;
}
.embed-container {
  display: flex;
  gap: 20px;
  align-items: center;
}
.retail-img {
  min-width: 400px;
}
.retail-img img {
  width: 100%;
}
.embed-container h3 {
  color: #fff;
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 35px;
}
.embed-container p {
  color: #fff;
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 35px;
  line-height: 1.3;
}
.text-with-image {
  padding: 100px 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.text-with-image::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;

  background: rgba(13, 113, 139, 0.82);
}
.services-details {
  padding: 85px 0;
}
.services-details h2 {
  color: var(--primary-color);
  margin-bottom: 40px;
  font-weight: 700;
  font-size: 36px;
}
.quality-page {
  background-color: #07647c;
  text-align: center;
  padding: 180px 0 130px 0;
}
.quality-page .container {
  max-width: 1150px;
  text-align: center;
}
.page-id-132 .border-line {
  height: 11px;
}
.quality-page h3 {
  color: #fff;
  font-size: 40px;
  margin-bottom: 20px;
}
.quality-page p {
  color: #fff;
  font-size: 24px;
}
.about {
  padding: 20px 0 100px 0;
}
.about .container {
  max-width: 1150px;
  text-align: center;
}
.about p {
  margin-bottom: 40px;

  font-weight: 400;
  font-size: 24px;
  line-height: 1.3;

  color: #06262f;
}
.certificates {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 80px;
}
.certificates img {
  padding-right: 30px;
}
.certificates img:not(:last-child) {
  border-right: 1px solid #000;
}

.about-section {
  background-color: #b2d9e2;
  padding: 120px 0;
  position: relative;
  margin-top: 50px;
}
.about-section-grid {
  max-width: 50%;
}
.about-section-grid h3 {
  color: var(--primary-color);
  font-size: 40px;
  margin-bottom: 20px;
}
.about-section-grid p {
  color: var(--primary-color);
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 25px;
}
.quality-img {
  position: absolute;
  right: 0;
  top: 0;
  width: 43%;
  height: 100%;
}
.quality-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.quality-services-box {
  text-align: center;
  background-color: #b2d9e2;
  padding: 55px 0;
}
.quality-services-box h3 {
  color: #0d718b;
  font-size: 40px;
}

.quality-services .quality-services-box:first-child {
  background-color: #fff;
  color: #07647c;
}
.quality-services .quality-services-box:first-child p {
  color: #07647c;
  font-size: 18px;
}
.quality-services .quality-services-box:nth-child(2) {
  background-color: var(--primary-color);
}
.quality-services .quality-services-box:nth-child(2) h3 {
  color: #fff;
}
.quality-services .quality-services-box:nth-child(4) {
  background-color: #4d9ca3;
}
.quality-services .quality-services-box:nth-child(4) h3 {
  color: #fff;
}
.catalogue {
  padding: 100px 0;
}
.pdf-div p {
  font-weight: 400;
  font-size: 24px;
  color: #06262f;
  margin-bottom: 5px;
}
.catalogue-div {
  display: flex;
  justify-content: space-between;
}
.catalogue-div h3 {
  color: var(--primary-color);
  font-size: 36px;
}
.about-page {
  padding: 220px 0 200px 0;
}
.page-id-66 .navbar li a {
  color: var(--primary-color);
}
.page-id-45 .navbar li a {
  color: var(--primary-color);
}
.page-id-66 .line {
  background-color: var(--primary-color);
}
.page-id-45 .line {
  background-color: var(--primary-color);
}
.page-id-66 .navbar li:last-child a {
  background-color: var(--primary-color);
  color: #fff;
}
.page-id-45 .navbar li:last-child a {
  background-color: var(--primary-color);
  color: #fff;
}
.about-page h2 {
  color: var(--primary-color);
  font-size: 40px;
  text-align: center;
}
.about-description {
  padding: 130px 0;
}
.about-description h3 {
  font-size: 30px;
  color: var(--primary-color);
  display: block;
  margin: auto;
  max-width: 1050px;
  text-align: center;
}
.about-image {
  background-color: #07647c;
  display: flex;
  flex-direction: column;
}
.about-image-div p {
  color: #fff;
  text-align: center;
  font-size: 24px;
}
.about-image-div p span {
  font-family: var(--helvecita-neue-bold);
}
.about-image img {
  width: 100%;
}
.page-id-66 .border-line {
  margin-bottom: 0;
}
.about-image-div {
  position: absolute;
  top: 140px;
  width: 90%;
  left: 50%;
  transform: translate(-50%, 0);
}
.page-id-45 .about-page h2 {
  text-align: left;
}
.page-id-45 .about-page {
  padding: 190px 0 140px 0;
}
.page-id-45 .about-page p {
  color: var(--primary-color);
  font-size: 22px;
  max-width: 450px;
  line-height: 1.2;
  margin-top: 5px;
}

.offices {
  background-color: #07647c;
  padding: 100px 0;
}

.offices h2 {
  color: #fff;
  margin-bottom: 50px;
  font-size: 40px;
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.offices-box {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 55px 40px;
  min-height: 300px;
}
.offices-grid .offices-box:first-child {
  background-image: url(../images/pr.jpg);
}
.offices-grid .offices-box:nth-child(2) {
  background-image: url(../images/albania.jpg);
}
.offices-grid .offices-box:nth-child(3) {
  background-image: url(../images/usa.jpg);
}
.offices-grid .offices-box:nth-child(4) {
  background-image: url(../images/germany.jpg);
}
.offices-grid .offices-box:nth-child(5) {
  background-image: url(../images/macedonia.jpg);
}
.offices-grid .offices-box:nth-child(6) {
  background-image: url(../images/romani.jpg);
}
.offices-box::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    264.05deg,
    rgba(15, 71, 87, 0) 2.44%,
    #0d718b 64.66%
  );
}

.offices-box h3 {
  color: #fff;
  position: relative;
  margin-bottom: 25px;
  font-size: 19px;
}
.offices-box p {
  color: #fff;
  position: relative;
  font-size: 18px;
}
.divisions {
  padding-top: 100px;
  padding-bottom: 50px;
  border-bottom: 1px solid #d8d8d8;
}
.divisions-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
}
.divisions-box {
  border-right: 1px solid #d8d8d8;
}
.division-right-box {
  padding-left: 50px;
}
.divisions-grid p {
  font-size: 18px;
  color: #06262f;
}
.divisions-grid h4 {
  margin-top: 20px;
  color: #06262f;
  font-size: 18px;
}
.divisions-box h3 {
  margin-bottom: 10px;
  color: #06262f;
  font-size: 20px;
}
.division-right-box h2 {
  color: #0d718b;
  font-size: 40px;
  line-height: 1;
}
.division-right-box h4 {
  margin-top: 30px;
}
.contact-form {
  padding: 20px 0 100px 0;
}
.contact-form h3 {
  margin-top: 30px;
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 10px;
}
.contact-form .primary-btn {
  font-family: var(--helvecita-neue-bold);
  font-size: 12px;
  min-width: 220px;
  text-align: center;
}
.contact-form-div form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}
.contact-form input {
  border: 0;
  border-bottom: 1px solid #0d718b;
  font-size: 18px;
  padding: 14px 0;
  width: 100%;
  color: var(--primary-color);
}
.contact-form textarea {
  border: 0;
  border-bottom: 1px solid #0d718b;
  font-size: 18px;
  padding: 14px 0;

  width: 100%;
  resize: none;
  max-height: 120px;
  color: var(--primary-color);
}
.contact-form .submit-btn {
  background-color: var(--primary-color);
  color: #fff;
  font-size: 14px;
  font-family: var(--helvecita-neue-bold);
  text-transform: uppercase;
  padding: 16px 0;
  cursor: pointer;
  margin-top: 6px;
}
input:focus,
textarea:focus {
  outline: none;
}
.contact-form input::placeholder {
  color: var(--primary-color);
}

textarea::placeholder {
  color: var(--primary-color);
}
.contact-form form div p {
  margin-bottom: 15px;
}
.aviation-img {
  display: flex;
  justify-content: space-between;
  padding: 50px 0;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  align-items: center;
}
.aviation-img h2 {
  max-width: 385px;
  color: var(--primary-color);
  font-size: 36px;
}
.aviation-form {
  padding: 100px 0;
  background-color: #f2feff;
}
.aviation-form input {
  background-color: transparent;
}
.aviation-form h2 {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 50px;
}
input,
textarea,
select {
  -webkit-appearance: none;
  border-radius: 0;
}
.post-content .wp-block-image img {
  width: 100%;
}
.defense-images {
  margin-top: 100px;
}
.defense-images-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
}
.defense-images-grid .border-line {
  height: 100%;
  width: 11px;
  position: absolute;
  left: calc(50% - 5px);
  background: linear-gradient(
    to bottom,
    #0d718b 0% 25%,
    #b2d9e2 25% 50%,
    #4d9ca3 50% 75%,
    #b9dbe2 75% 100%
  );
}
.defense-images-grid::before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: linear-gradient(
    173.73deg,
    rgba(51, 152, 177, 0.65) 19.54%,
    #01475a 143.19%
  );
	opacity:0.3
}
.defense-images-grid img {
  width: 100%;
}
.defense-images-grid .image-block {
  display: flex;
}
@media (max-width: 1024px) {
  .values-grid .values-inner-div:first-child::before {
    height: 3px;
    width: 100%;
  }
  .values-grid .values-inner-div:first-child::after {
    display: none;
  }
  .values-grid .values-inner-div:last-child::after {
    width: 100%;
  }
  .values-grid .values-inner-div:last-child::before {
    height: 3px;
    width: 100%;
  }
  .values-grid .values-inner-div:nth-child(2):after {
    position: absolute;
    content: "";
    right: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: rgba(13, 113, 139, 1);
  }
  .values-inner-div h4 {
    font-size: 24px;
  }
  .values-inner-div {
    padding: 30px 0px;
  }
  .values-grid {
    max-width: 100%;
    grid-template-columns: 1fr;
  }
  .defense-images-grid .border-line {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    background: linear-gradient(
      to right,
      #0d718b 0% 25%,
      #b2d9e2 25% 50%,
      #4d9ca3 50% 75%,
      #b9dbe2 75% 100%
    );
    top: 49%;
  }
  .defense-images {
    margin-top: 70px;
  }
  .defense-images-grid {
    grid-template-columns: 1fr;
  }
  .aviation-form {
    padding: 80px 0 !important;
  }
  .aviation-form h2 {
    font-size: 30px;
    margin-bottom: 25px;
  }
  .embed-content a {
    width: 100%;
    margin-bottom: 5px;
  }
  .aviation-img {
    display: block;
    padding: 25px 0;
  }
  .aviation-img h2 {
    font-size: 25px;
    margin-bottom: 20px;
  }
  .embed-container {
    display: block;
  }
  .retail-img img {
    margin-top: 30px;
  }
  .retail-img {
    min-width: auto;
    max-width: 500px;
    display: block;
    margin: auto;
  }
  .contact-form {
    padding: 0 0 80px 0;
  }
  .contact-form h3 {
    margin-top: 20px;
    font-size: 25px;
  }
  .contact-form-div form {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .logo-text {
    left: 116px;
    font-size: 25px;
    top: -6px;
  }
  .custom-logo-link img {
    max-height: 20px;
  }

  .divisions-box {
    border-right: 0;
  }
  .division-right-box {
    padding-left: 0;
  }
  .division-right-box h2 {
    font-size: 30px;
  }
  .divisions {
    padding-top: 80px;
  }
  .divisions-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .division-right-box h4 {
    margin-top: 20px;
  }
  .offices h2 {
    font-size: 35px;
    margin-bottom: 25px;
  }
  .offices-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .about-page h2 {
    font-size: 30px;
  }
  .about-page {
    padding: 170px 0 150px 0;
  }
  .page-id-66 .border-line {
    margin-bottom: 0 !important;
  }
  .about-image-div p {
    font-size: 18px;
    padding-bottom: 50px;
  }
  .about-image-div {
    position: relative;
    top: 100px;
    width: 97%;
  }
  .about-description {
    padding: 100px 0;
  }
  .about-description h3 {
    font-size: 23px;
  }
  .overflow-hidden .custom-logo-link img {
    filter: brightness(0) invert(1);
  }
  .page-id-66 .navbar li:last-child a {
    background-color: #fff;
    color: var(--primary-color);
  }
  .page-id-66 .hamburger.active-hamburger .line {
    background-color: #fff;
  }
  .page-id-66 .navbar li a {
    color: #fff;
  }
  .page-id-45 .navbar li:last-child a {
    background-color: #fff;
    color: var(--primary-color);
  }
  .page-id-45 .hamburger.active-hamburger .line {
    background-color: #fff;
  }
  .page-id-45 .navbar li a {
    color: #fff;
  }
  .quality-page {
    padding: 150px 0 100px 0;
  }
  .quality-page h3 {
    font-size: 30px;
    margin-bottom: 15px;
  }
  .quality-page p {
    font-size: 20px;
  }
  .certificates {
    display: block;
    margin-top: 20px;
  }
  .certificates img {
    padding-right: 0;
    display: block;
    margin: 20px auto;
  }
  .certificates img:not(:last-child) {
    border-right: 0;
  }
  .quality-img {
    width: 100%;
    position: relative;
    margin-top: 15px;
    display: flex;
  }
  .about-section-grid {
    max-width: 100%;
  }
  .about-section {
    padding: 80px 0 0 0;
  }
  .about {
    padding: 20px 0;
  }
  .about-section-grid h3 {
    font-size: 35px;
  }
  .quality-services-box {
    padding: 40px 15px;
  }
  .quality-services-box h3 {
    font-size: 30px;
  }
  .about p {
    font-size: 20px;
  }
  .catalogue {
    padding: 80px 0;
  }
  .catalogue-div {
    display: block;
  }
  .pdf-div p {
    font-size: 20px;
  }
  .catalogue-div h3 {
    font-size: 30px;
  }
  .values-inner {
    height: 400px;
  }
  .values-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .services-details h2 {
    font-size: 30px;
    line-height: 1;
    margin-bottom: 20px;
  }
  .embed-container p {
    font-size: 18px;
    margin-bottom: 25px;
  }
  .embed-container h3 {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .post-content p {
    font-size: 18px;
    margin-bottom: 25px;
  }
  .post-content {
    padding-bottom: 30px;
  }
  .text-with-image {
    padding: 70px 0;
  }
  .wp-singular .border-line {
    height: 9px;
    margin-bottom: 55px;
  }
  .single-hero-section {
    height: 330px;
  }
  .single-hero-section h2 {
    font-size: 30px;
    padding-top: 70px;
  }
  .single-hero-section p {
    font-size: 18px;
  }
  .hero-section {
    background-attachment: unset;
  }
  .container {
    max-width: 767px;
  }
  .hero-section h1 {
    font-size: 40px;
    padding-top: 80px;
    margin-bottom: 15px;
  }
  .hero-section p {
    font-size: 20px;
  }
  .about-home {
    padding: 80px 0 60px 0;
  }
  .about-home-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about-home-details-left p {
    margin-top: 20px;
    font-size: 18px;
  }
  .about-home-details a {
    margin-top: 20px;
    font-size: 18px;
  }
  .about-home-details h2 {
    font-size: 25px;
  }
  .about-home-details p {
    font-size: 18px;
  }
  .services-homepage {
    padding: 0 15px;
  }
  .logistics h4 {
    font-size: 10px;
  }
  .logistics h3 {
    font-size: 20px;
  }
  .logistics p {
    font-size: 18px;
    max-width: 100%;
    margin: 16px auto 25px auto;
  }
  .primary-btn {
    font-size: 18px;
    padding: 15px 15px;
  }
  .logistics::before {
    background-position: 0;
  }
  .logistics {
    text-align: center;
    padding: 50px 0 65px 0;
    margin: 30px 0 0 0;
  }
  .values h3 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .values-div {
    max-width: 100%;
  }
  .values {
    padding: 60px 0 60px 0;
    margin-bottom: 80px;
  }
  .values-inner h4 {
    font-size: 40px;
  }
  .news h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .news-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .news-box:not(:last-child)::after {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-info img {
    margin-bottom: 20px;
  }
  .footer-nav ul {
    margin-bottom: 30px;
    margin-top: 20px;
  }
  .terms {
    display: grid;
    gap: 5px;
    margin-bottom: 5px;
  }
  .footer-copyright {
    display: flex;
    flex-direction: column-reverse;
  }
  .get-in-touch-div h2 {
    font-size: 28px;
    line-height: 1.3;
  }
  .get-in-touch-div p {
    margin: 20px 0;
  }
  .get-in-touch-avatar {
    position: relative;
    margin-top: 30px;
    bottom: auto;
  }
  .avatar-details {
    left: 0;
    bottom: 40px;
  }
  .get-in-touch {
    padding: 100px 0;
  }
  .navbar li {
    padding: 5px 0;
  }
  .hamburger {
    display: flex;
    gap: 5px;
    flex-direction: column;
    position: relative;
    z-index: 9;
    width: 30px;
  }
  .line {
    width: 30px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
  }
  .navbar {
    position: fixed;
    background-color: var(--primary-color);
    left: 0;
    top: 0;
    height: 100dvh;
    width: 100%;
    flex-direction: column;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all 0.4s;
    overflow-y: scroll;
    padding: 150px;
    overflow-x: hidden;
  }
  .navbar.active-nav {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
  header {
    padding: 20px 0;
  }
  .dropdown-menu {
    position: relative;
    top: auto;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    box-shadow: unset;
    display: none;
    background-color: transparent;
  }
  .dropdown-menu.open-menu {
    display: block;
  }
  .logo {
    z-index: 99;
  }
  .overflow-hidden {
    overflow: hidden;
  }
  .dropdown-content {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 35px;
  }
  .dropdown-content::before {
    display: none;
  }

  .dropdown-box h3 {
    display: none;
  }
  .dropdown-box p {
    color: #fff;
    margin-top: 20px;
  }
  .dropdown-box a {
    color: #fff !important;
    font-size: 12px !important;
  }

  .navbar li:last-child a {
    display: inline-block;
  }
  .hamburger.active-hamburger .line:nth-child(1) {
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    left: 0;
  }
  .hamburger.active-hamburger .line:nth-child(2) {
    display: none;
  }
  .hamburger.active-hamburger .line:nth-child(3) {
    transform: rotate(-45deg);
    position: absolute;
    top: 50%;
    left: 0;
    transform-origin: center;
  }
  .navbar li a {
    display: block;
    padding: 5px 0;
  }
  .dropdown a {
    position: relative;
  }
  .dropdown-toggle::before {
    position: absolute;
    right: 0;
    top: 7px;
    background-image: url(../images/arrow.svg);
    content: "";
    height: 7px;
    width: 30px;
    z-index: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
  }
}
@media (max-width: 767px) {
  .navbar {
    padding: 150px 15px;
  }
}
.video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.video-modal-content {
  position: relative;
  max-width: 80%;
  width: 900px;
  background: #000;
}

.video-wrapper {
  position: relative;
  padding-bottom: 62%; /* 16:9 */
  height: 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}
.swiper-video img {
  width: 100%;
  position: relative;
	cursor:pointer
}
.retail-video {
  padding: 0 20px;
}
.retail-video h2 {
  font-size: 36px;
  color: var(--primary-color);
  margin-top: 80px;
  margin-bottom: 30px;
}
.swiper-grid {
	display:grid;
	grid-template-columns:repeat(2,1fr);
	gap:25px;
}
.certificates-box {
    padding: 30px 0 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.aviation-btn {
    position: absolute;
    right: 0;
    top: 60%;
    color: var(--primary-color);
    background: #ffffff;
    font-family: var(--helvecita-neue-bold);
    font-weight: 700;
    font-size: 12px;
    line-height: 6px;
    padding: 20px 20px;
    border-radius: 4px;
    text-transform: uppercase;
	display:none;
}
.postid-25 .aviation-btn{
	display:inline-block
}
@media (max-width: 767px)  {
	.swiper-grid {
	grid-template-columns:1fr;
	gap:15px;
}
}
@media (max-width: 1024px) {
	.aviation-btn {
    position: relative;
    margin-top: 15px;
}
	.certificates-box {
    overflow-x: scroll;
    gap: 43px;
}
	.certificates-box img {
    max-height: 55px;
}
  .retail-video {
    padding: 0;
  }
  .retail-video h2 {
    font-size: 30px;
    margin-top: 60px;
    margin-bottom: 20px;
  }
  .video-modal-content {
    max-width: 98%;
  }
  .video-wrapper {
    padding-bottom: 120%;
  }
}


.postid-25 .text-with-without-img {
background-color:#f2feff;
}
.postid-25 .embed-container p {
	color: var(--primary-color);
}

.postid-25 .embed-container h3 {
	color: var(--primary-color);
}

.postid-25 .aviation-form h2 {
color:#fff;
}

.postid-25 .contact-form h3 {
color:#fff;
}

.postid-25 .aviation-form {
	background-color: var(--primary-color);
}
.postid-25 .contact-form input {
color:#fff;
	border-color:#fff;
}

.postid-25 input::placeholder {
	color:#fff;
}

.postid-25 .contact-form .submit-btn {
	background-color:#fff;
	color: var(--primary-color);
}