:root {
  --default-font: "Space Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Space Grotesk", sans-serif;
  --nav-font: "Space Grotesk", sans-serif;
}

:root {
  --background-color: #000000;
  --default-color: rgba(255, 255, 255, 1);
  --accent-color: #ed3f27;
  --surface-color: #002366;
  --dark-primery-color: #002366;
  --light-primery-color: #0071bc;
}

:root {
  --nav-color: rgba(255, 255, 255, 1);
  --nav-hover-color: #ed3f27;
  --nav-mobile-background-color: #002366;
  --nav-dropdown-background-color: #002366;
  --nav-dropdown-color: rgba(255, 255, 255, 1);
  --nav-dropdown-hover-color: #ed3f27;
}

.btn-primary {
  --bs-btn-bg: #0069af;
  --bs-btn-border-color: #0069af;
  --bs-btn-hover-bg: #002366;
  --bs-btn-hover-border-color: #002366;
  --bs-btn-active-bg: #002366;
  --bs-btn-active-border-color: #002366;
  --bs-btn-disabled-bg: #0069af;
  --bs-btn-disabled-border-color: #0069af;
  font-size: 1.2em;
  color: #ffffff;
  font-weight: 300;
  padding: 10px 20px;
  border-radius: 10px;
}

.btn-primary img {
  margin-left: 10px;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {

  color: var(--default-color);
  padding: 30px 0 15px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 997;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;

}


.header .logo {
  max-width: 220px;
}


.scrolled .header {
  padding: 15px 0 15px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: fixed;
  background-color: #00000047;
  -webkit-animation: slideDown 1s ease forwards;
          animation: slideDown 1s ease forwards;
}

@-webkit-keyframes slideDown {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
  }

  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
  }

  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 992px) {
  .navmenu {
    padding: 0 0 0 30px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;

  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    margin-left: auto;
    max-width: 800px;
    padding: 0 40px;
    position: relative;

  }

  .navmenu ul::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: skew(15deg);
        -ms-transform: skew(15deg);
            transform: skew(15deg);
    width: 100%;
    height: 100%;
    background-color: var(--surface-color);
    border-radius: 15px;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 15px 15px;
    font-size: 18px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    white-space: nowrap;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 991px) {
  .header .logo {
    max-width: 180px;
  }

  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

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

  .navmenu .navmenu-offcanvas {
    list-style: none;
    position: fixed;
    inset: 0px -410px auto auto;
    padding: 60px 50px;
    width: 90%;
    max-width: 400px;
    background: -o-linear-gradient(15deg, rgba(0, 77, 151, 1) 0%, rgba(0, 58, 130, 1) 24%, rgba(0, 36, 106, 1) 100%);
    background: linear-gradient(75deg, rgba(0, 77, 151, 1) 0%, rgba(0, 58, 130, 1) 24%, rgba(0, 36, 106, 1) 100%);
    ;
    overflow-y: auto;
    -webkit-transition: 0.6s all ease-in-out;
    -o-transition: 0.6s all ease-in-out;
    transition: 0.6s all ease-in-out;
    z-index: 9998;
    -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    border-bottom-left-radius: 100px;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 15px 20px 15px 0px;
    font-family: var(--nav-font);
    font-size: 22px;
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    white-space: nowrap;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    border-bottom: 1px solid #fff;
  }

  .navmenu li:last-child a,
  .navmenu li:last-child a:focus {
    border-bottom: 0;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 50%;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {

    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    inset: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    min-height: 100vh;
    background-color: #000000cc;
  }

  .mobile-nav-active .navmenu .navmenu-offcanvas {

    inset: 0px 0% auto auto;
  }

  .navmenu-bottom {
    padding-top: 30px;
  }

  .navmenu-bottom ul a {
    border: none !important;
    padding: 5px 10px !important;
  } 

  .navmenu-bottom ul a:first-child {
    padding-left: 0;
  }

  .navmenu-bottom ul a i {
    width: auto;
    font-size: 20px !important;
    margin-left: 0;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  -webkit-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#preloader img {
  width: 200px;
  /* adjust size */
  height: auto;
  -webkit-animation: pulse 1.4s infinite ease-in-out;
          animation: pulse 1.4s infinite ease-in-out;
  -webkit-filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
          filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }

  50% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    opacity: 0.5;
  }

  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }

  50% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    opacity: 0.5;
  }

  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  color: #ffffff;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/****/
.footer {
  background-color: #1a1a1a;
  padding: 120px 0 60px;
  background-image: url(../img/footer-bg.webp);
  background-position: bottom center;
  background-size: contain;
  background-repeat: repeat-x;
}

.footer-links ul li {
  margin-bottom: 25px;
}

.footer-links ul li a {
  color: #ffffff;
  font-weight: 500;
  font-size: 20px;
}

.footer-links ul li a:hover {
  color: var(--accent-color);
}

.footer-contact-details h3 {
  padding-top: 10px;
}

.footer-contact-details h3,
.footer-contact-details p,
.footer-contact-details a {
  font-size: 20px;
  color: #ffffff;
  font-weight: 400;
}

.footer-contact-details a:hover {
  color: var(--accent-color);
}

.footer-links {
  border-right: 1px solid #707070;
}

.footer-contact-details {
  padding-left: 30px;
}

.footer-bottom {
  border-top: 1px solid #707070;
  padding-top: 20px;
}

.footer-top {
  padding-bottom: 60px;
}

.footer-bottom ul {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.footer-bottom ul a {
  padding: 10px;
  color: #fff;
}

.footer-bottom ul a:hover {
  color: var(--accent-color)
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    -webkit-transition-delay: 0 !important;
         -o-transition-delay: 0 !important;
            transition-delay: 0 !important;
  }
}


/***hero-section***/
.hero-section {
  height: 100vh;
  min-height: 600px;
  background-image: url(../img/hero-bg.webp);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 50px 0;
  background-attachment: fixed;
}

.hero-overlay {
  top: 0;
  left: 0;
  background: #000000;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.45)), to(rgba(0, 0, 0, 1)));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 1) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 1) 100%);
  /* opacity: 77%; */
}

.hero-content {
  padding: 100px 0;
}

.hero-content h1 {
  font-size: 5.2em;
  color: #ffffff;
  font-weight: 300;
  font-family: "Space Grotesk";
}

.hero-bottom-logo {
  position: absolute;
  bottom: -30px;
  left: 0;
}

.hero-bottom-logo img {
  width: 530px;
  max-width: 100%;
  height: auto;
}

.about-us {
  background: url('../img/logo-pettern.webp'), -o-linear-gradient(15deg,
      rgba(0, 77, 151, 1) 0%,
      rgba(0, 58, 130, 1) 24%,
      rgba(0, 36, 106, 1) 100%);
  background: url('../img/logo-pettern.webp'), linear-gradient(75deg,
      rgba(0, 77, 151, 1) 0%,
      rgba(0, 58, 130, 1) 24%,
      rgba(0, 36, 106, 1) 100%);
  -webkit-mask-image: url("../img/about-path.png");
  mask-image: url("../img/about-path.png");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: top center;
  background-size: 100% auto;
  background-repeat: repeat-y;
  background-position: top center;
  overflow: visible;
  padding: 120px 0 0px;
}

.about-top-logo img {
  max-width: 100%;
  width: 200px;
}

.sub-title {
  font-size: 20px;
  color: #ffffff;
  font-weight: 400;
}

.main-title {
  font-size: 3em;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 500;
  font-family: "Space Grotesk";
}

.who-we-are,
.why-do-we {
  padding-bottom: 3em;
}

.about-right h3 {
  font-size: 2em;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 20px;
}

.about-right p {
  text-align: justify;
  font-weight: 300;
}

.about-right-img {
  padding-bottom: 3em;
}

.about-us-left {
  background: url(../img/about-left-bg.webp);
  background-position: left bottom -10%;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.about-left-btn {
  margin-top: auto;
  padding-bottom: 10em;
}

.pdf-download {
  background-color: #ed3f27;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 10px;
  padding: 0;
  border: none;
  outline: none;
  overflow: hidden;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.pdf-download:hover {
  background-color: var(--background-color);
}

.pdf-download span {
  padding: 10px 15px;
  color: #fff;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.pdf-download img {
  width: 45px;
  background-color: #fff;
  padding: 10px;
  border-right: 4px solid #0069af;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}


.featured-product-item {
  background-color: var(--dark-primery-color);
  padding: 20px;
  border-radius: 10px;
}

.featured-product-item figure {
  padding-top: 100%;
  position: relative;
  /* border-radius: 15px;
  overflow: hidden; */
}

.featured-product-item figure img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  border-radius: 15px;
}

.featured-product-name {
  text-align: center;
  padding: 25px 15px;
  background-color: var(--light-primery-color);
  border-radius: 15px;
  color: #fff;
  font-weight: 400;
  font-size: 1.3em;
  margin: 0;
}

.featured-products-list .row {
  --bs-gutter-x: 3rem;
}

.section-small-title h2 {
  font-size: 2.5em;
  color: #ffffff;
  font-weight: 400;
}

.section-small-title {
  padding-bottom: 4em;
}

.featured-products {
  background-image: url(../img/hero-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 80px 0 0px;
}

.featured-overlay {
  top: 0;
  left: 0;
  background: #000000;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.6)));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
  height: 100%;
  width: 100%;
  position: absolute;
}

.featured-product-item figure::before {
  content: "";
  background-color: var(--dark-primery-color);
  -webkit-clip-path: polygon(0 100%, 100% 0, 100% 100%);
          clip-path: polygon(0 100%, 100% 0, 100% 100%);
  position: absolute;
  right: -2px;
  bottom: -2px;
  z-index: 3;
  width: 80px;
  height: 80px;
}

.featured-product-item figure::after {
  content: "";
  background-color: #ed3f27;
  -webkit-clip-path: polygon(0 100%, 100% 0, 100% 100%);
          clip-path: polygon(0 100%, 100% 0, 100% 100%);
  position: absolute;
  right: -2px;
  bottom: -2px;
  z-index: 3;
  width: 60px;
  height: 60px;
}

.feature-block {
  padding: 100px 0 0px;
  position: relative;
  margin-top: 120px;
}

.feature-block::before {
  content: "";
  width: 100%;
  background-image: url(../img/feature-block-lightbg.webp);
  background-size: 100% auto;
  background-repeat: repeat-y;
  background-position: top center;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #f1f1f1;
  -webkit-mask-image: url("../img/feature-block-path.svg");
  mask-image: url("../img/feature-block-path.svg");
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: top right;

}

.feature-block-content {
  padding-top: 130px;

}

.feature-block-content .section-small-title {
  padding-bottom: 1em;
}

.feature-block-content,
.feature-block-content .section-small-title h2 {
  color: #002366;
}

.feature-block-logo {
  padding-top: 20px;
  padding-bottom: 60px;
}

.feature-block-logo img {
  width: 200px;
  height: auto;
}

.feature-block-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}

.feature-block .row {
  margin-top: -6vw;

}

.about-hero-section.hero-section {
  background-image: url(../img/about-bg.webp);
}

.hero-section p {
  color: #ffffff;
  font-weight: 300;
}

.about-us-page .about-us {
  background: url(../img/about-us-bg.webp), -o-linear-gradient(15deg, #666666 0%, #666666 24%, #666666 100%);
  background: url(../img/about-us-bg.webp), linear-gradient(75deg, #666666 0%, #666666 24%, #666666 100%);
  padding-bottom: 80px;
}

.about-chairman h3 {
  text-align: center;
  margin-top: 20px;
  font-size: 30px;
}

.company-vision {
  background-image: url(../img/company-vision.webp), url(../img/about-left-bg.webp);
  background-size: 40% 100%, 50%;
  background-position: right center, left top;
  background-attachment: fixed, scroll;
  background-repeat: no-repeat, no-repeat;
  min-height: 100vh;
}

.company-vision-content {
  padding: 200px 0 60px;
}
.company-vision-content h2{
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-phone {
  letter-spacing: 3px;
}

.careers-hero-section,
.inner-hero-section {
  background: url(../img/careers.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  padding: 250px 0 40px;
}

.careers-hero-section .hero-content p,
.inner-hero-section .hero-content p {
  font-size: 18px;
}

.careers-hero-section .hero-content,
.inner-hero-section .hero-content {
  padding: 0 0;
  max-width: 500px;
}


.form-control {
  background: #d3d3d3;
  border: none;
  height: 42px;
  border-radius: 0;
}

.form-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='red' height='16' viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-color: #d3d3d3;
  border-radius: 0;
  height: 42px;
}

textarea.form-control {
  height: 220px;
}

.btn-custom {
  width: 130px;
  border-radius: 25px;
  padding: 8px 0;
}

.btn-upload {
  background: #002f6c;
  /* dark blue */
  color: #fff;
}

.btn-upload:hover {
  background: #007bff;
}

.btn-send {
  background: #007bff;
  /* bright blue */
  color: #fff;
}

.btn-send:hover {
  background: #002f6c;
}

.upload-label {
  margin-top: 20px;
}

input[type="file"] {
  display: none;
}

.careers-form-section {
  padding-bottom: 80px;
}

.contact-hero-section.inner-hero-section {
  background-image: url(../img/contact-hero-bg.webp);
}

.loc-line {
  width: 1px;
  background-color: #707070;
  height: 100%;
  display: block;
  margin: 0 auto;
}

.contact-loc-section h3 {
  font-weight: 400;
  margin-bottom: 20px;
}

.loc-list ul {
  margin-bottom: 40px;
}

.loc-list ul li::before {
  content: "-";
  margin-right: 10px;
}

.contact-loc-section {
  padding-bottom: 80px;
}

.contact-info-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.contact-info {
  color: #fff;
  font-size: 18px;
}

.contact-info .label {
  font-weight: 600;
  margin-bottom: 3px;
}

.contact-info .value a {
  color: #fff;
  text-decoration: none;

}

.contact-info .value a:hover {
  color: var(--accent-color);
}

.contact-sec-title {
  margin-bottom: 30px;
  font-weight: 400;
}

.contact-form-section {
  padding: 80px 0;
}

.footer-center li a {
  padding: 0 30px 10px 0;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
}

.footer-center li a:hover {
  color: var(--accent-color);
}

.product-hero-section {
  background-image: url(../img/products.webp);
  padding-bottom: 150px;
}

.tab-nav-custom {
  background-color: var(--dark-primery-color);
  border-radius: 50px;
  overflow: hidden;
  margin: 0 auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.product-listing h2 {
  font-weight: 400;
  margin-bottom: 30px;
}

.tab-nav-custom.nav-pills .nav-link {
  border-radius: 50px;
  color: #fff;
}

.tab-nav-custom.nav-pills .nav-link.active,
.tab-nav-custom.nav-pills .show>.nav-link {
  background-color: var(--accent-color);
}

.product-listing .featured-product-item {
  margin-bottom: 40px;
}

.product-listing {
  margin: -100px 0 0;
  padding-bottom: 80px;
  position: relative;
  z-index: 2;
}

:root {
  --pill-border: rgba(255, 255, 255, 0.35);
  --pill-bg: rgba(255, 255, 255, 0.06);
  --heading-pill-bg: #0aa2ff;
}

/* .table-box {
  background: var(--surface-gradient);
  border-radius: 18px;
  padding: 36px 40px;
  max-width: 900px;
  margin: auto;
  box-shadow: 0 0 55px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
} */


.heading-pill {
  background: var(--heading-pill-bg);
  padding: 8px 28px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  font-size: 15px;
  letter-spacing: .3px;
  color: #fff;
}


.col-label {
  font-weight: 400;
  margin: 26px 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 20px;
}


.col-label .arrow {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 9px solid var(--accent-color);
}


.data-pill {
  border: 1px solid var(--light-primery-color);
  border-radius: 36px;
  padding: 8px 30px;
  margin: 10px 0;
  display: block;
  width: auto;
  font-size: 14px;
  letter-spacing: .3px;
  text-align: center;
  color: #fff;
}

.product-details {
  background-color: #0a2366;
  padding: 30px;
  border-radius: 10px;
  background-image: url(../img/product-details-bg.webp);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.product-size {
  padding: 0 30px;
}

.product-size-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-left: 1px solid #3171ba;
  border-right: 1px solid var(--light-primery-color);
}

.product-size-right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.product-size-info {
  max-width: 700px;
}

.product-details-section {
  padding: 80px 0;
}

.sheet-product-details .product-size-info {
  max-width: 100%;
}

.sheet-product-details .product-size-info .data-pill {
  display: inline-block;
}

.product-details .border-bottom {
  border-color: #3171ba !important;
  padding-bottom: 30px;
}

.col-inner-label::before {
  content: "-";
  font-weight: 700;
  color: var(--light-primery-color);
  margin-right: 10px;
  font-size: 18px;
}

.col-inner-label {
  font-size: 18px;
}

.coating-item figure {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.coating-item figure figcaption {
  position: absolute;
  bottom: 10px;
  z-index: 2;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 80%;
  padding: 5px;
  background-color: #0a2366;
  text-align: center;
  border-radius: 10px;
}

.coating-patterne {
  padding-left: 20px;
  padding-bottom: 30px;
}

.coating-patterne-list {
  padding-top: 15px;
  padding-left: 20px;
}

.coating-item figure {
  position: relative;
  padding-bottom: 100%;
}

.coating-item img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  top: 0;
}

.ral-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px 10px;
  justify-items: center;
  margin-top: 20px;
}

.ral-item {
  text-align: center;
}

.ral-badge {
  width: 120px;
  padding: 10px 10px;
  border-radius: 40px;
  border: 3px solid #ffffff;
  font-size: 14px;
  color: #fff;
  text-align: center;
}

.ral-name {
  margin-top: 12px;
  font-size: 12px;
  color: #ffffff;
  opacity: 0.9;
}

.sheet-product-details .featured-product-name {
  font-size: 18px;
  padding: 16px 10px;
}

.show-mobile {
  display: none;
}