@import url("https://fonts.googleapis.com/css2?family=Jost:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary-color: #B72739;
  --secondary-color: #00115E;
  --white: #fff;
  --black: #060F1C;
  --jost: "Jost", sans-serif;
}

html.lenis,
html.lenis body {
  height: auto;
}

body {
  font-family: var(--jost);
  max-width: 1920px;
  margin: 0 auto;
}

img,
video {
  max-width: 100%;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

.primary-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.1;
}
.primary-title.white {
  color: var(--white);
}
.primary-title.black {
  color: var(--black);
}

.secondary-title {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.1;
}
.secondary-title.white {
  color: var(--white);
}
.secondary-title.black {
  color: var(--black);
}

.desc {
  font-weight: 400;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.1;
}
.desc.white {
  color: var(--white);
}
.desc.black {
  color: var(--black);
}

.primary-btn {
  position: relative;
  background-color: var(--secondary-color);
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid var(--secondary-color);
  padding: 5px 5px 5px 10px;
  transition: all 0.3s ease-in-out;
  color: var(--black);
  display: flex;
  text-transform: uppercase;
  gap: 5px;
  align-items: center;
}
.primary-btn span {
  color: var(--white);
}
.primary-btn span.text {
  position: relative;
  left: 0;
  transition: 0.4s;
}
.primary-btn span.icon {
  width: 32px;
  height: 32px;
}
.primary-btn span.icon img {
  position: absolute;
  top: 50%;
  transform: translate(20%, -50%);
  transition: all 0.4s ease-in-out;
}
.primary-btn:hover .icon img {
  top: 50%;
  transform: translate(-300%, -50%);
}
.primary-btn:hover .text {
  left: 35px;
}

.secondary-btn {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid #00115E;
  padding: 13px 50px 13px 10px;
  transition: all 0.3s ease-in-out;
  display: flex;
  text-transform: uppercase;
  gap: 5px;
  align-items: center;
  width: max-content;
}
.secondary-btn.white {
  background: var(--white);
  border: 1.5px solid var(--white);
}
.secondary-btn span {
  color: #00115E;
}
.secondary-btn span.text {
  position: relative;
  left: 0;
  transition: 0.4s;
}
.secondary-btn span.icon {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  animation: slideIconRight 0.4s ease forwards;
}
.secondary-btn span.icon img {
  display: block;
  width: 100%;
}
.secondary-btn:hover {
  padding: 13px 10px 13px 50px;
}
.secondary-btn:hover .icon {
  animation: slideIcon 0.4s ease forwards;
}
@keyframes slideIconRight {
  0% {
    left: 4px;
  }
  100% {
    left: calc(100% - 43px);
  }
}
@keyframes slideIcon {
  0% {
    left: calc(100% - 43px);
  }
  100% {
    left: 4px;
  }
}

.sticky-section {
  position: fixed;
  top: 35%;
  right: 50px;
  display: flex;
  flex-direction: column;
  z-index: 2;
}
@media screen and (max-width: 991.98px) {
  .sticky-section {
    right: 10px;
    top: 50%;
  }
}

main {
  position: relative;
  background-color: var(--white);
  z-index: 1;
}

/* Select2 End */
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--highlighted,
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--selected,
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[aria-selected=true]:not(.select2-results__option--highlighted) {
  color: #000;
  background-color: #F6F6F6;
}

.select2-container--bootstrap-5 .select2-dropdown.select2-dropdown--below {
  font-family: "ArchivoRegular", sans-serif;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option {
  font-size: 14px;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field:focus,
.select2-container--bootstrap-5.select2-container--focus .select2-selection,
.select2-container--bootstrap-5.select2-container--open .select2-selection {
  box-shadow: none;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field,
.select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field:focus {
  border-color: #ced4da;
}

.select2-container--bootstrap-5 .select2-dropdown {
  border-color: #ced4da;
}

.input .select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
  font-size: 16px;
  font-weight: 400;
  color: #83878e;
  padding: 0;
  line-height: 1.5;
}

.input .select2-container .select2-selection--single {
  height: unset;
  background-color: #f5f5f3;
  padding-block: 20px;
  border-radius: 10px;
  border: 0;
  font-size: 16px;
  padding-left: 20px;
}

.select2-container--bootstrap-5 .select2-selection--single {
  background-image: url("../../images/contact-us-logo4.svg");
  background-position: right 1.5rem center;
}

/* Select2 End */
.header {
  position: absolute;
  top: 50px;
  width: 100%;
  z-index: 99;
}
@media screen and (max-width: 1024px) {
  .header {
    top: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .header .logo img {
    max-width: 150px;
  }
}
.header .main-menu {
  background: #fff;
  backdrop-filter: blur(20px);
}
.header .main-menu ul {
  display: flex;
  padding-left: 25px;
  align-items: center;
  justify-content: space-around;
  white-space: nowrap;
}
.header .main-menu ul li a {
  color: var(--black);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  gap: 3px;
  align-items: center;
  padding: 4px 10px;
}
.header .main-menu ul li a.primary-btn {
  margin: 4px;
  margin-left: 10px;
}
.header .main-menu ul li .dropdown {
  position: absolute;
  display: none;
  width: calc(100% - 576px);
  top: 49px;
  background: var(--white);
}
.header .main-menu ul li .dropdown ul {
  display: block;
  padding: 0;
  white-space: normal;
}
.header .main-menu ul li .dropdown ul li a {
  border-bottom: 1px solid #f0f0f0;
  line-height: 1;
  padding: 10px 15px;
  gap: 15px;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.header .main-menu ul li .dropdown ul li a .menu-icon {
  position: relative;
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  background-color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.header .main-menu ul li .dropdown ul li a .menu-icon img {
  position: relative;
  transform: rotate(-40deg);
  transition: all 0.4s ease-in-out;
  left: 0;
}
.header .main-menu ul li .dropdown ul li a .menu-icon img:nth-child(2) {
  position: absolute;
  left: -15px;
  transform: unset !important;
}
.header .main-menu ul li .dropdown ul li a:hover .menu-icon {
  background-color: var(--primary-color);
  border-radius: 50px;
}
.header .main-menu ul li .dropdown ul li a:hover .menu-icon img {
  left: 20px;
  transform: rotate(-40deg);
}
.header .main-menu ul li .dropdown ul li a:hover .menu-icon img:nth-child(2) {
  position: absolute;
  left: 5px;
}
@media screen and (max-width: 1200px) {
  .header .main-menu {
    display: none;
  }
}
.header .menu-bar {
  display: none;
  cursor: pointer;
}
.header .menu-bar img {
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 1201px) {
  .header .menu-bar {
    display: block;
  }
}

.menu-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  overflow: auto;
  max-width: 350px;
  background-color: #fff;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.12);
  z-index: 999;
  transform: translateX(400px);
  visibility: hidden;
  transition: 0.3s;
  padding: 30px;
  opacity: 0;
}
.menu-sidebar.active {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
.menu-sidebar .closeSidebar {
  opacity: 0.3;
  justify-content: end;
}
@media screen and (min-width: 1281px) {
  .menu-sidebar {
    display: none;
  }
}
.menu-sidebar a {
  color: var(--black);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 8px 10px;
  border-bottom: 1px solid #f0f0f0;
  justify-content: space-between;
}
.menu-sidebar a .menu-icon {
  position: relative;
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  background-color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  pointer-events: none;
}
.menu-sidebar a .menu-icon img {
  position: relative;
  transform: rotate(-40deg);
  transition: all 0.4s ease-in-out;
  left: 0;
}
.menu-sidebar a .menu-icon img:nth-child(2) {
  position: absolute;
  left: -15px;
  transform: unset !important;
}
.menu-sidebar a.active img {
  transform: rotate(180deg);
}
.menu-sidebar .dropdown {
  display: none;
}
.menu-sidebar .dropdown.active {
  display: block;
}
.menu-sidebar .primary-btn {
  margin-top: 20px;
  width: fit-content;
  padding: 3px 3px 3px 10px;
}

.dropdown.active {
  display: block;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid #E0E0E0;
  border-bottom: 1px solid #E0E0E0;
}
.footer .footer-top .footer-box h5 {
  color: var(--black);
  font-size: clamp(16px, 4vw, 19px);
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.footer .footer-top .footer-box span img {
  min-width: 24px;
  min-height: 24px;
}
.footer .footer-top .footer-box ul li a {
  color: #83878E;
  font-size: clamp(14px, 4vw, 16px);
  margin-bottom: 5px;
  display: block;
  width: auto;
}
.footer .footer-bottom-text {
  color: #83878E;
  font-size: clamp(14px, 4vw, 16px);
  margin-bottom: 5px;
  display: block;
}
.footer .footer-bottom-text a {
  color: #83878E;
  margin-right: 25px;
}
.footer .footer-bottom-text a:last-child {
  margin-right: 0;
}

.banner {
  position: sticky;
  top: 0;
  z-index: 1;
  height: 100vh;
}
@media screen and (max-width: 1024px) {
  .banner {
    height: unset;
  }
}
.banner video,
.banner > img {
  display: block;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .banner video,
  .banner > img {
    height: 500px;
    object-fit: cover;
  }
}
.banner:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 15, 28, 0.5019607843);
  z-index: 1;
  inset: 0;
  pointer-events: none;
}
.banner .banner-bottom {
  position: absolute;
  left: 0;
  bottom: 70px;
  width: 100%;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .banner .banner-bottom {
    bottom: 20px;
  }
}
.banner .banner-bottom .desc {
  max-width: 700px;
  font-size: clamp(14px, 2vw, 17px);
}
.banner .banner-bottom .scroll-discover {
  display: inline-flex;
  gap: 20px;
  justify-content: end;
  align-items: center;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
}

.marquee-section {
  background-color: var(--primary-color);
  padding: 20px;
  overflow: hidden;
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .marquee-section {
    margin-bottom: 50px;
  }
}
.marquee-section .main-marquee {
  display: flex;
  gap: 50px;
  align-items: center;
  white-space: nowrap;
  animation: marquee 7s linear infinite;
}
.marquee-section .main-marquee span {
  flex-shrink: 0;
  font-size: clamp(20px, 4vw, 32px);
  font-weight: 600;
  text-transform: uppercase;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.core-values {
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .core-values {
    margin-bottom: 50px;
  }
}
.core-values .core-values-box {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}
.core-values .core-values-box .box {
  background: #F5F5F3;
  width: 50%;
  text-align: center;
}
.core-values .core-values-box .box .box-top {
  border-bottom: 1px solid rgba(0, 17, 94, 0.1019607843);
  padding: 16px 20px;
  display: flex;
  gap: 4px;
  justify-content: center;
}
.core-values .core-values-box .box .box-top span {
  display: block;
  width: 12px;
  height: 12px;
  background: rgba(183, 39, 57, 0.2);
  border-radius: 50px;
}
.core-values .core-values-box .box .box-top span.active {
  background-color: var(--primary-color);
}
.core-values .core-values-box .box .box-bottom {
  padding: 30px 20px;
  max-width: 550px;
  margin: 0 auto;
}
.core-values .core-values-box .box .box-bottom h5 {
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.1;
}
.core-values .core-values-box .box .box-bottom img {
  margin-top: 5px;
  margin-bottom: 25px;
  height: 160px;
  width: 160px;
}
.core-values .core-values-box .box .box-bottom P {
  color: #83878E;
  font-size: clamp(14px, 4vw, 16px);
  font-weight: 400;
  line-height: 1.1;
}
.core-values .core-values-box .box .box-bottom .btn {
  margin-top: 20px;
}
.core-values .core-values-box .box .box-bottom .btn a {
  color: var(--primary-color);
  font-weight: 600;
  font-size: clamp(14px, 3vw, 16px);
  text-transform: uppercase;
  display: flex;
  gap: 5px;
  align-items: center;
  border: 1.5px solid var(--primary-color);
  padding: 8px 20px;
  transition: all 0.2s ease-in-out;
}
.core-values .core-values-box .box:hover .btn a {
  background-color: var(--primary-color);
  color: var(--white);
}
@media screen and (max-width: 992px) {
  .core-values .core-values-box {
    flex-wrap: wrap;
  }
  .core-values .core-values-box .box {
    width: 100%;
  }
}

.slider-main-section {
  margin-bottom: 80px;
  padding-top: 50px;
}
@media screen and (max-width: 1024px) {
  .slider-main-section {
    margin-bottom: 50px;
  }
}
.slider-main-section .slider-box {
  position: relative;
  width: 100%;
}
.slider-main-section .slider-box .image-box {
  position: relative;
  overflow: hidden;
}
.slider-main-section .slider-box .image-box .badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary-color);
  font-size: clamp(13px, 3vw, 15px);
  text-transform: uppercase;
  border-radius: 0;
  padding: 6px 10px;
  z-index: 99;
  font-weight: 600;
}
.slider-main-section .slider-box .image-box .badge.blue {
  background: var(--secondary-color);
}
.slider-main-section .slider-box .image-box img {
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.slider-main-section .slider-box .text-box {
  margin-top: 20px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 15px;
  min-height: 70px;
}
@media screen and (max-width: 992px) {
  .slider-main-section .slider-box .text-box {
    align-items: center;
    padding-bottom: 20px;
  }
  .slider-main-section .slider-box .text-box:last-child {
    border: none;
  }
}
.slider-main-section .slider-box .text-box h4 {
  color: var(--black);
  font-size: clamp(18px, 4vw, 22px);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0;
}
.slider-main-section .slider-box .text-box .bottom-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  background-color: var(--secondary-color);
  transition: all 0.3s ease-in-out;
  border-radius: 0px;
}
@media screen and (max-width: 991.98px) {
  .slider-main-section .slider-box .text-box .bottom-btn {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
  }
}
.slider-main-section .slider-box .text-box .bottom-btn img {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
}
.slider-main-section .slider-box p {
  color: #83878e;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1;
  padding-top: 20px;
}
.slider-main-section .slider-box:hover .image-box img {
  transform: scale(1.2);
}
.slider-main-section .slider-box:hover .bottom-btn {
  border-radius: 50px;
  background-color: #a2952f;
}
.slider-main-section .slider-main {
  padding-bottom: 50px;
}
@media screen and (max-width: 992px) {
  .slider-main-section .slider-main {
    padding-bottom: 30px;
  }
}
.slider-main-section .slider-main .swiper-pagination-progressbar {
  background: #e0e0e0;
}
.slider-main-section .slider-main .swiper-pagination-progressbar-fill {
  background: var(--primary-color);
}
.slider-main-section .slider-main .swiper-pagination {
  top: unset;
  bottom: 0;
}
.slider-main-section .slider-main .text-box {
  align-items: center;
}
.slider-main-section .swiper-wrapper {
  transition-timing-function: linear !important;
}
.slider-main-section .main-section-slider > div, .slider-main-section .main-section-slider-2 > div {
  gap: 20px;
}
.slider-main-section .steel-listing-card {
  position: relative;
  max-width: 358px;
  max-height: 358px;
}
.slider-main-section .steel-listing-card > span {
  position: absolute;
  bottom: 20px;
  z-index: 10;
  font-family: var(--jost);
  font-weight: 500;
  font-size: clamp(16px, 3vw, 24px);
  text-align: center;
  color: var(--white);
  width: 100%;
  display: block;
}

.trusted-steel-excellence {
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .trusted-steel-excellence {
    margin-bottom: 50px;
  }
}
.trusted-steel-excellence p {
  color: #83878e;
  font-size: clamp(14px, 4vw, 16px);
  font-weight: 400;
  line-height: 1.1;
  max-width: 380px;
}
.trusted-steel-excellence .trusted--box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.trusted-steel-excellence .trusted--box ul li {
  display: flex;
  align-items: center;
  color: rgba(0, 0, 0, 0.5019607843);
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  padding-bottom: 5px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
.trusted-steel-excellence .trusted--box ul li text {
  transition: all 0.4s ease-in-out;
}
.trusted-steel-excellence .trusted--box ul li span {
  display: block;
  width: 10px;
  min-width: 10px;
  min-height: 10px;
  height: 10px;
  border-radius: 50px;
  background: var(--primary-color);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.trusted-steel-excellence .trusted--box ul li.active {
  color: var(--black);
  border-bottom: 1px solid #b72739;
}
.trusted-steel-excellence .trusted--box ul li.active span {
  opacity: 1;
  visibility: visible;
}
.trusted-steel-excellence .trusted--box ul li.active text {
  padding-left: 10px;
}
@media screen and (max-width: 992px) {
  .trusted-steel-excellence .trusted--box {
    gap: 20px;
  }
}
.trusted-steel-excellence .trusted-images {
  position: relative;
  height: 100%;
}
.trusted-steel-excellence .trusted-images > img {
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.trusted-steel-excellence .trusted-images > img:not(:first-child) {
  position: absolute;
}
.trusted-steel-excellence .trusted-images > img.active {
  opacity: 1;
}

.our-qualification {
  background: #F5F5F3;
  margin-bottom: 100px;
  padding: 100px 0px;
}
@media screen and (max-width: 1024px) {
  .our-qualification {
    margin-bottom: 50px;
    padding: 50px 0px;
  }
}
.our-qualification .our-qualification-main {
  border: 1px solid #E0E0E0;
  height: 100%;
}
.our-qualification .our-qualification-main .our-qualification-box {
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border-bottom: 1px solid #E0E0E0;
  gap: 12px;
}
.our-qualification .our-qualification-main .our-qualification-box > div {
  gap: 40px;
}
.our-qualification .our-qualification-main .our-qualification-box:last-child {
  border-bottom: 0;
}
.our-qualification .our-qualification-main .our-qualification-box .icon {
  position: relative;
}
.our-qualification .our-qualification-main .our-qualification-box .icon img {
  min-height: 38px;
  min-width: 38px;
}
.our-qualification .our-qualification-main .our-qualification-box .icon .show {
  position: absolute;
  right: 0;
  top: 0;
  display: none;
}
.our-qualification .our-qualification-main .our-qualification-box .icon .hide {
  display: block;
}
.our-qualification .our-qualification-main .our-qualification-box.active {
  border-bottom: 2px solid #A2952F;
}
.our-qualification .our-qualification-main .our-qualification-box.active .show {
  display: block;
}
.our-qualification .our-qualification-main .our-qualification-box.active .hide {
  display: none;
}
.our-qualification .our-qualification-main .our-qualification-box .circle {
  margin-top: 5px;
}
.our-qualification .our-qualification-main .our-qualification-box .circle span {
  display: block;
  width: 12px;
  height: 12px;
  min-width: 12px;
  min-height: 12px;
  border-radius: 50px;
  background: rgba(162, 149, 47, 0.2);
  margin-bottom: 4px;
}
.our-qualification .our-qualification-main .our-qualification-box .circle span.active {
  background: #A2952F;
}
.our-qualification .our-qualification-main .our-qualification-box h4 {
  color: var(--black);
  font-size: clamp(16px, 4vw, 24px);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.our-qualification .our-qualification-main .our-qualification-box p {
  color: #83878E;
  font-size: clamp(14px, 4vw, 16px);
  font-weight: 400;
}
@media screen and (max-width: 992px) {
  .our-qualification .our-qualification-main .our-qualification-box {
    padding: 15px 20px;
  }
}
.our-qualification .our-qualification-main .our-qualification-certificate {
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  padding: 20px 0px;
}
.our-qualification .our-qualification-main .our-qualification-certificate img {
  display: none;
}
.our-qualification .our-qualification-main .our-qualification-certificate img.active {
  display: block;
}
@media screen and (max-width: 992px) {
  .our-qualification .our-qualification-main .our-qualification-certificate {
    padding: 20px 0px;
  }
}

.our-qualification .col-lg-6:nth-child(2) .our-qualification-main {
  border-left: 0px;
}
@media screen and (max-width: 992px) {
  .our-qualification .col-lg-6:nth-child(2) .our-qualification-main {
    border: 1px solid #E0E0E0;
    border-top: 0px;
  }
}

.our-partners {
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .our-partners {
    margin-bottom: 50px;
  }
}
.our-partners .partner-slides {
  background: #F5F5F3;
  height: 160px;
}
.our-partners .partner-slides .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.building-excellence-main {
  position: relative;
  padding: 70px 0;
}
@media screen and (max-width: 991.98px) {
  .building-excellence-main {
    padding: 40px 0;
  }
}
.building-excellence-main .building-excellence-img {
  position: sticky;
  top: 0;
}
.building-excellence-main .building-excellence-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.building-excellence-main .building-excellence-card {
  background: rgb(245, 245, 243);
  border: solid rgba(0, 17, 94, 0.1) 1px;
  border-left: 0;
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  min-height: 430px;
}
.building-excellence-main .building-excellence-card .head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.building-excellence-main .building-excellence-card .head h6 {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 600;
  color: rgb(6, 15, 28);
  max-width: 270px;
  text-transform: uppercase;
  line-height: 1;
}
.building-excellence-main .building-excellence-card .head .dot {
  display: flex;
  align-items: center;
  gap: 2px;
}
.building-excellence-main .building-excellence-card .head .dot span {
  width: 12px;
  height: 12px;
  min-width: 12px;
  min-height: 12px;
  background: rgb(183, 39, 57);
  border-radius: 100%;
}
.building-excellence-main .building-excellence-card .head .dot span.light {
  background: rgba(183, 39, 57, 0.2);
}
.building-excellence-main .building-excellence-card p {
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 400;
  color: rgb(131, 135, 142);
  line-height: 1.1;
}

.impact-numbers-main {
  padding-bottom: 70px;
}
@media screen and (max-width: 992px) {
  .impact-numbers-main {
    padding-bottom: 40px;
  }
}
.impact-numbers-main .impact-numbers-content {
  position: sticky;
  top: 0;
}
.impact-numbers-main .impact-numbers-content p {
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 400;
  color: rgb(131, 135, 142);
  margin-bottom: 30px;
  line-height: 1.1;
}
.impact-numbers-main .col-lg-6:last-child .impact-card-main .text-main {
  border: 0;
  min-height: 380px;
  padding: 30px 40px;
}
@media screen and (max-width: 992px) {
  .impact-numbers-main .col-lg-6:last-child .impact-card-main .text-main {
    min-height: auto;
  }
}
.impact-numbers-main .impact-card-main {
  background: rgb(245, 245, 243);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.impact-numbers-main .impact-card-main .text-main {
  border: solid 1px rgb(230, 232, 239);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 70px;
  justify-content: space-between;
}
.impact-numbers-main .impact-card-main .text-main h2 {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 500;
  color: rgb(6, 15, 28);
  line-height: 1;
  display: flex;
  margin: 0;
}
.impact-numbers-main .impact-card-main .text-main h2 span {
  font-size: 28px;
  font-weight: 600;
  color: var(--primary-color);
  display: block;
  margin-top: 10px;
}
.impact-numbers-main .impact-card-main .text-main h6 {
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  color: #060F1C;
  line-height: 1;
}
.impact-numbers-main .impact-card-main .impact-img {
  overflow: hidden;
  height: 100%;
}
.impact-numbers-main .impact-card-main .impact-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.5s all;
}
.impact-numbers-main .impact-card-main .impact-img:hover img {
  transform: scale(1.2);
}

.why-choose-main {
  padding-bottom: 70px;
}
@media screen and (max-width: 992px) {
  .why-choose-main {
    padding-bottom: 40px;
  }
}
.why-choose-main .desc {
  color: #83878E;
}
.why-choose-main .desc a {
  color: #83878E;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.why-choose-main .why-choose-img img {
  width: 100%;
}

.project-overview {
  overflow: hidden;
  background-color: #fff;
  padding: 80px 0 0 0;
}
@media screen and (max-width: 1024px) {
  .project-overview {
    padding: 40px 0 0 0;
  }
}
.project-overview .project-info {
  max-width: 600px;
}
.project-overview .secondary-title {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 600;
  margin-bottom: 20px;
  color: #000;
}
.project-overview .project-description {
  color: #83878e;
  margin-bottom: 40px;
  font-size: clamp(14px, 2vw, 16px);
}
.project-overview {
  /* META GRID */
}
.project-overview .project-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.project-overview .meta-item {
  display: flex;
  flex-direction: column;
}
.project-overview .meta-item .meta-t {
  display: flex;
  align-items: center;
  gap: 8px;
}
.project-overview .meta-item .meta-t img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.project-overview .meta-item .meta-t h6 {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 500;
  color: #000000;
  margin: 0;
}
.project-overview .meta-item p {
  font-size: 16px;
  font-weight: 400;
  color: #83878e;
  margin-top: 11px;
  line-height: 1.1;
}
.project-overview .project-image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.project-overview .project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.project-overview .project-meta-x {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.project-overview .project-meta-x .meta-item-x {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.project-overview .project-meta-x .meta-item-x h6 {
  font-family: var(--jost);
  font-weight: 500;
  margin: 0;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1;
  vertical-align: middle;
  text-transform: uppercase;
  color: var(--black);
}
.project-overview .project-meta-x .meta-item-x p {
  font-family: var(--jost);
  font-weight: 400;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1;
  color: #83878E;
}

/* RESPONSIVE REFINEMENTS */
@media (max-width: 991px) {
  .project-overview .project-info {
    max-width: 100%;
    margin-bottom: 30px;
  }
  .project-meta {
    flex-direction: column;
  }
  .meta-item {
    width: 100%;
  }
}
/* RESPONSIVE REFINEMENTS */
@media (max-width: 991px) {
  .project-overview .project-info {
    max-width: 100%;
    margin-bottom: 30px;
  }
  .project-meta {
    flex-direction: column;
  }
}
.slider-gallery {
  padding-bottom: 32px;
  overflow: visible;
}
.slider-gallery .swiper-slide {
  height: auto;
}
.slider-gallery .gallery-image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.slider-gallery .swiper-pagination-progressbar {
  height: 4px;
  background: #e0e0e0;
  bottom: 0 !important;
  top: auto !important;
  margin-top: 24px;
}
.slider-gallery .swiper-pagination-progressbar-fill {
  background: #d32f2f;
}

/* Mobile */
@media (max-width: 575px) {
  .slider-gallery .gallery-image {
    aspect-ratio: 4/3;
  }
}
.project-gallery {
  margin-bottom: 80px;
  overflow: hidden;
}
.project-gallery h2 {
  color: #000;
}
@media screen and (max-width: 1024px) {
  .project-gallery {
    margin-bottom: 50px;
  }
}
.project-gallery .slider-gallery {
  margin-top: 20px;
}

.building-the-future {
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .building-the-future {
    margin-bottom: 50px;
  }
}
.building-the-future .building-inner {
  position: relative;
  background-image: url("../../images/building-future.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 70px;
}
@media screen and (max-width: 1024px) {
  .building-the-future .building-inner {
    padding: 40px 20px;
  }
}
.building-the-future .col-lg-8 {
  position: relative;
  z-index: 99;
  max-width: 710px;
}
.building-the-future .build-future {
  position: absolute;
  right: 50px;
  top: 0;
  width: 100%;
  height: 100%;
  max-width: 570px;
  z-index: 1;
}
.building-the-future .desc {
  font-size: clamp(14px, 4vw, 16px);
  color: #F5F5F3;
}

.slider-main-section.our-trunkey {
  padding-top: 50px;
}
@media screen and (max-width: 1024px) {
  .slider-main-section.our-trunkey {
    padding-top: 30px;
  }
}
.slider-main-section.our-trunkey p {
  max-width: 500px;
}
.slider-main-section .slider-main-section-top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 50px;
}
.slider-main-section .slider-main-section-top .secondary-title {
  font-family: var(--jost);
  margin: 0px;
}
.slider-main-section .slider-main-section-top .desc {
  color: #83878e;
  max-width: 80%;
}
@media screen and (max-width: 991.98px) {
  .slider-main-section .slider-main-section-top .desc {
    max-width: 100%;
  }
}
.slider-main-section.our-project {
  padding-top: 50px;
}
@media screen and (max-width: 1024px) {
  .slider-main-section.our-project {
    padding-top: 30px;
  }
}
.slider-main-section.our-project .project-tabs {
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  color: var(--secondary-color);
  cursor: pointer;
  border: 1px solid var(--secondary-color);
  padding: 12px 12px;
  text-transform: uppercase;
}
.slider-main-section.our-project .project-tabs.active {
  background-color: var(--secondary-color);
  color: var(--white);
}
@media screen and (max-width: 1024px) {
  .slider-main-section.our-project .project-tabs {
    flex: 0 0 auto;
  }
}
.slider-main-section .swiper {
  width: 100%;
  height: 100%;
}
.slider-main-section .swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slider-main-section .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.projects-listing-selectors {
  display: flex;
  justify-content: center;
  scrollbar-width: none;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .projects-listing-selectors {
    overflow: auto;
    justify-content: center;
  }
}
.projects-listing-selectors .projects-listing-selectors p:active {
  background-color: var(--primary-color);
  color: #ffffff;
}

.our-achievments {
  padding-bottom: 100px;
}
.our-achievments .our-achievments-top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 40px;
}
.our-achievments .our-achievments-top .secondary-title {
  font-family: var(--jost);
  margin: 0px;
}
.our-achievments .our-achievments-top .desc {
  color: #83878e;
  max-width: 80%;
}
@media screen and (max-width: 991.98px) {
  .our-achievments .our-achievments-top .desc {
    max-width: 100%;
  }
}
.our-achievments .our-achievments-card {
  height: 236px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(0, 0, 0, 0.1019607843);
  padding: 24px;
  transition: all 0.3s ease-in-out;
}
.our-achievments .our-achievments-card:hover {
  background-color: #00115e;
}
.our-achievments .our-achievments-card:hover h6 {
  color: var(--white);
}
.our-achievments .our-achievments-card > div {
  height: 40px;
}
.our-achievments .our-achievments-card > div span {
  font-family: var(--jost);
  font-weight: 600;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  color: #cb293e;
}
.our-achievments .our-achievments-card h6 {
  font-family: var(--jost);
  font-weight: 500;
  font-size: clamp(24px, 4vw, 28px);
  line-height: 1;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
  max-width: 50%;
}
@media screen and (max-width: 991.98px) {
  .our-achievments .our-achievments-card h6 {
    max-width: 100%;
  }
}
.our-achievments .our-achievments-card .slot-track div {
  height: 40px;
  display: flex;
  align-items: center;
}

.turnkey-listing-banner .turnkey-banner {
  width: 100%;
  height: auto;
}

.steel-listing-banner .steel-banner {
  width: 100%;
  height: auto;
}

.privacy-policy {
  padding-top: 80px;
  font-family: var(--jost);
  position: relative;
}
.privacy-policy .desc {
  color: #83878e;
  font-size: clamp(14px, 2vw, 16px);
}
.privacy-policy .desc a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  color: #83878e;
}
.privacy-policy .sub-sec {
  margin-top: 40px;
}
.privacy-policy .sub-sec h2 {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 600;
  text-transform: uppercase;
  color: #060F1C;
  margin-bottom: 14px;
}
.privacy-policy .sub-sec div > span {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 5px;
}
.privacy-policy .sub-sec h4 {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  color: #060F1C;
  margin: 0px;
}
.privacy-policy .sub-sec .circle {
  width: 10px;
  height: 10px;
  background-color: #b72739;
  border-radius: 50%;
  padding-right: 10px;
}
.privacy-policy .sub-sec p {
  font-size: clamp(14px, 3vw, 16px);
}
.privacy-policy .sub-sec > div {
  margin-top: 20px;
}
.privacy-policy .size-2 {
  width: 18px;
  text-align: center;
}
.privacy-policy .privacy-policy-right {
  position: sticky;
  top: 0px;
}
.privacy-policy .privacy-policy-right h4 {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  color: #060F1C;
  margin: 0px;
  margin: 16px 0px;
}
.privacy-policy .privacy-policy-right span {
  border: 2px solid;
}
.privacy-policy .privacy-policy-right img {
  cursor: pointer;
}

@media (max-width: 768px) {
  .privacy-policy .privacy-policy-right {
    position: static;
    margin-top: 40px;
  }
}
.terms-and-conditions {
  padding-top: 80px;
  font-family: var(--jost);
  position: relative;
}
.terms-and-conditions .desc {
  color: #83878e;
  font-size: clamp(14px, 2vw, 16px);
}
.terms-and-conditions .desc a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  color: #83878e;
}
.terms-and-conditions .sub-sec {
  margin-top: 40px;
}
.terms-and-conditions .sub-sec h2 {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 600;
  text-transform: uppercase;
  color: #060F1C;
  margin-bottom: 14px;
}
.terms-and-conditions .sub-sec div > span {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 5px;
}
.terms-and-conditions .sub-sec h4 {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  color: #060F1C;
  margin: 0px;
}
.terms-and-conditions .sub-sec .circle {
  width: 10px;
  height: 10px;
  background-color: #b72739;
  border-radius: 50%;
}
.terms-and-conditions .sub-sec p {
  font-size: clamp(14px, 3vw, 16px);
}
.terms-and-conditions .sub-sec > div {
  margin-top: 20px;
}
.terms-and-conditions .size-2 {
  width: 18px;
  text-align: center;
}
.terms-and-conditions .terms-and-conditions-right {
  position: sticky;
  top: 0px;
}
.terms-and-conditions .terms-and-conditions-right h4 {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  color: #060F1C;
  margin: 0px;
  margin: 14px 0px;
}
.terms-and-conditions .terms-and-conditions-right span {
  border: 2px solid;
}
.terms-and-conditions .terms-and-conditions-right img {
  cursor: pointer;
}

@media (max-width: 768px) {
  .terms-and-conditions .terms-and-conditions-right {
    position: static;
    margin-top: 40px;
  }
}
.trunkey-commitment-card {
  padding-bottom: 20px;
}
.trunkey-commitment-card .trunkey-box {
  margin-bottom: 17px;
  border-bottom: 1px solid #E6E8EF;
  padding-bottom: 20px;
}
.trunkey-commitment-card .trunkey-box.trunkey-box-last {
  border-bottom: none;
  margin-bottom: 0px;
  padding-bottom: 0px;
}
.trunkey-commitment-card .trunkey-commitment-heading {
  display: flex;
  align-items: center;
  gap: 15px;
}
.trunkey-commitment-card .trunkey-commitment-heading h4 {
  font-weight: 600;
  margin-bottom: 0px;
  font-size: clamp(16px, 2.5vw, 20px);
  text-transform: uppercase;
}
.trunkey-commitment-card .turnkey-detail-logo {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
}
.trunkey-commitment-card .trunkey-commitment-desc p {
  margin-top: 12px;
  font-weight: 400;
  font-size: clamp(14px, 2vw, 16px);
  color: #83878E;
  line-height: 1.1;
}

.trunkey-commitment-card .col-lg-6:last-child {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-us {
  padding: 80px 0px;
}
@media screen and (max-width: 1024px) {
  .about-us {
    padding: 50px 0px;
    padding-bottom: 0;
  }
}
.about-us .about-content {
  max-width: 580px;
}
.about-us .about-content .desc {
  color: #83878E;
  font-weight: 400;
}
.about-us .about-content .secondary-title {
  font-family: var(--jost);
}
.about-us .glna {
  max-width: 100% !important;
}
.about-us .about-content-bottom {
  display: flex;
  margin-top: 50px;
  gap: 10px;
}
@media screen and (max-width: 991.98px) {
  .about-us .about-content-bottom {
    flex-wrap: wrap;
    margin-top: 30px;
    gap: 30px;
  }
}
.about-us .about-content-bottom > div {
  flex: 1;
  flex-direction: column;
  height: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 991.98px) {
  .about-us .about-content-bottom > div {
    flex: unset;
  }
}
.about-us .about-content-bottom > div span {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--black);
  font-size: clamp(18px, 3vw, 20px);
  font-weight: 500;
  line-height: 1.1;
  max-width: 300px;
}
@media screen and (max-width: 991.98px) {
  .about-us .about-content-bottom > div span {
    margin-bottom: 10px;
    max-width: 100%;
  }
}
.about-us .about-content-bottom > div p {
  color: #83878E;
  font-size: clamp(14px, 4vw, 16px);
  line-height: 1.1;
}

.work-category {
  padding: 80px 0px;
}
@media screen and (max-width: 991.98px) {
  .work-category {
    padding: 50px 0px;
    padding-bottom: 0px !important;
  }
}
@media screen and (max-width: 1024px) {
  .work-category {
    padding: 50px 0px;
    padding-bottom: 30px;
  }
}
.work-category .work-category-box {
  border: 1px solid #E6E8EF;
  background: #F5F5F3;
  padding: 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 170px;
  transition: all 0.4s ease-in-out;
}
.work-category .work-category-box:hover {
  background-color: #00115E;
}
.work-category .work-category-box:hover .circle span {
  background-color: rgba(255, 255, 255, 0.2);
}
.work-category .work-category-box:hover .circle span.active {
  background-color: var(--white);
}
.work-category .work-category-box:hover .category-content h4 {
  color: var(--white);
}
.work-category .work-category-box:hover .category-content p {
  color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 1299.98px) {
  .work-category .work-category-box {
    gap: 140px;
  }
}
.work-category .work-category-box .circle {
  display: flex;
  gap: 5px;
}
.work-category .work-category-box .circle span {
  width: 12px;
  height: 12px;
  background-color: rgba(183, 39, 57, 0.2);
  border-radius: 50px;
}
.work-category .work-category-box .circle span.active {
  background-color: var(--primary-color);
}
.work-category .work-category-box .category-content h4 {
  color: #060F1C;
  text-transform: uppercase;
  font-size: clamp(18px, 3vw, 20px);
  font-weight: 600;
}
.work-category .work-category-box .category-content p {
  color: #83878E;
  font-size: clamp(14px, 3vw, 16px);
  line-height: 1.1;
}

@media screen and (max-width: 768.98px) {
  .work-category .mb-4:last-child {
    margin-bottom: 0 !important;
  }
}
.galvanizing-top {
  font-family: var(--jost);
  padding: 80px 0px;
}
@media screen and (max-width: 1024px) {
  .galvanizing-top {
    padding: 50px 0px;
  }
  .galvanizing-top .galvanizing-box-parent {
    margin-top: 10px;
  }
}
.galvanizing-top .galvanizing-box {
  border: 1px solid #e0e0e0;
  padding: 20px;
  display: flex;
  min-height: 140px;
  height: 100%;
  gap: 20px;
  align-items: flex-start;
}
@media screen and (max-width: 991.98px) {
  .galvanizing-top .galvanizing-box {
    min-height: unset;
  }
}
.galvanizing-top .galvanizing-box img {
  width: 34px;
  height: 34px;
  min-width: 34px;
  min-height: 34px;
}
.galvanizing-top .galvanizing-box h5 {
  font-weight: 600;
  font-size: clamp(18px, 1.5vw, 22px);
  text-transform: uppercase;
  color: #000;
  margin-top: 3px;
}
.galvanizing-top .galvanizing-box h6 {
  color: #060F1C;
  font-weight: 500;
  font-size: clamp(14px, 1.2vw, 16px);
  margin-bottom: 5px;
}
.galvanizing-top .galvanizing-box a {
  color: #83878e;
  font-weight: 400;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.1;
  display: block;
  margin-top: 7px;
}

.hot-dip .desc {
  color: #83878E;
}

.hot-dip > div > div {
  display: flex;
  justify-content: space-between;
}

.hot-dip > div > div a {
  float: right;
}

@media screen and (max-width: 768px) {
  .hot-dip > div > div {
    flex-direction: column;
    gap: 15px;
  }
  .hot-dip > div > div a {
    float: none;
  }
}
.contact-us {
  padding: 70px 0px;
}
@media screen and (max-width: 991.98px) {
  .contact-us {
    padding: 40px 0px;
  }
}
.contact-us .contact-info-outline {
  background-color: #f5f5f3;
  border: 1px solid #e0e0e0;
  padding: 20px;
  margin-bottom: 20px;
}
.contact-us .contact-info-outline:last-child {
  margin-bottom: 0;
}
.contact-us .contact-info-outline .contact-info-box {
  display: flex;
  flex-direction: column;
}
.contact-us .contact-info-outline .contact-us-heading {
  display: flex;
  gap: 11.5px;
  align-items: flex-start;
}
.contact-us .contact-info-outline .contact-us-heading .icon-wrapper {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-us .contact-info-outline .contact-us-heading .icon-wrapper img {
  height: 100%;
  width: 100%;
  margin-bottom: 10px;
}
.contact-us .contact-info-outline .contact-us-heading .contact-us-desc {
  flex: 1;
}
.contact-us .contact-info-outline .contact-us-heading .contact-us-desc h3 {
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--black);
  margin-bottom: 20px;
}
.contact-us .contact-info-outline .contact-us-heading .contact-us-desc .location-item {
  margin-bottom: 15px;
}
.contact-us .contact-info-outline .contact-us-heading .contact-us-desc .location-item:last-child {
  margin-bottom: 0;
}
.contact-us .contact-info-outline .contact-us-heading .contact-us-desc .location-item h5 {
  font-weight: 600;
  font-size: clamp(14px, 2vw, 15px);
  color: var(--black);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.contact-us .contact-info-outline .contact-us-heading .contact-us-desc .location-item p {
  font-weight: 400;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1;
  color: #83878e;
  margin-bottom: 0;
  max-width: 500px;
}
.contact-us .contact-info-outline .contact-us-heading .contact-us-desc .location-item p a {
  color: #83878e;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.contact-us .map {
  height: 100%;
  overflow: hidden;
  margin-bottom: 90px;
}
.contact-us .map iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.contact-us.box-2 {
  padding-top: 0;
  padding-bottom: 80px;
}
@media screen and (max-width: 991.98px) {
  .contact-us.box-2 {
    padding-top: 0;
    padding-bottom: 40px;
  }
}
.contact-us.box-2 .row {
  align-items: stretch;
}
.contact-us.box-2 .col-lg-6:last-child {
  display: flex;
  flex-direction: column;
}
.contact-us.box-2 .contact-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-us.box-2 .contact-form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.contact-us.box-2 .contact-form form {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.contact-us.box-2 .contact-form .form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 0;
  margin-top: 30px;
}
.contact-us.box-2 .contact-form .form-row .form-group.half {
  flex: 1;
}
.contact-us.box-2 .contact-form .form-group {
  position: relative;
  margin-bottom: 10px;
}
.contact-us.box-2 .contact-form .form-group-img {
  position: absolute;
  width: 18px;
  height: 20px;
  right: 25px;
  top: 52%;
  transform: translateY(-50%);
  pointer-events: none;
}
.contact-us.box-2 .contact-form .form-control {
  width: 100%;
  padding: 20px;
  background-color: #f5f5f3;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 400;
  color: var(--black);
  border: none;
  box-shadow: none;
}
.contact-us.box-2 .contact-form .form-control::placeholder {
  color: #83878e;
}
.contact-us.box-2 .contact-form select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  color: #83878e !important;
}
.contact-us.box-2 .contact-form textarea.form-control {
  resize: none;
  min-height: 120px;
  border: none;
  font-size: clamp(16px, 2vw, 18px);
}
.contact-us.box-2 .contact-form .footer-box {
  margin-left: auto;
  margin-top: auto;
}

.form-group-img.active {
  transform: translateY(-50%) rotate(180deg) !important;
}

.input .select2 {
  margin-bottom: 10px;
}

.error-txt {
  font-size: 12px;
  font-weight: 400;
  color: red;
}

.galvanizing-process {
  padding: 80px 0px;
}
@media screen and (max-width: 991.98px) {
  .galvanizing-process {
    padding: 40px 0px;
  }
}

.galvanizing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #F5F5F3;
  padding: 24px;
  border-bottom: 3px solid #00115E;
  height: 100%;
  gap: 70px;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}
.galvanizing-card::before {
  position: absolute;
  transition: all 0.4s ease-in-out;
  content: "";
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00115E;
}
.galvanizing-card:hover::before {
  bottom: 0;
}
.galvanizing-card:hover span {
  color: var(--white);
}
.galvanizing-card:hover h4 {
  color: var(--white);
}
.galvanizing-card:hover p {
  color: #E0E0E0;
}
.galvanizing-card span {
  position: relative;
  color: #cb293e;
  font-weight: 600;
  font-size: clamp(26px, 4vw, 44px);
  text-transform: uppercase;
  transition-duration: 0.4s;
}
.galvanizing-card span:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #E0E0E0 0%, rgba(224, 224, 224, 0.2) 96.25%);
}
.galvanizing-card h4 {
  position: relative;
  z-index: 1;
  font-weight: 600;
  font-size: clamp(18px, 1.5vw, 20px);
  text-transform: uppercase;
  color: #060f1c;
  transition-duration: 0.4s;
}
.galvanizing-card p {
  position: relative;
  z-index: 1;
  color: #83878e;
  transition-duration: 0.4s;
}

@media screen and (max-width: 768px) {
  .galvanizing-card > div {
    margin-top: 15px;
  }
}
.galvanizing-services-items {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
}
@media screen and (max-width: 991.98px) {
  .galvanizing-services-items {
    padding: 30px 0px;
    padding-bottom: 0;
  }
}

.galvanizing-services-items > div {
  display: flex;
  flex-direction: column;
  margin-bottom: 35px;
  padding-bottom: 35px;
  border-bottom: 1px solid #E6E8EF;
}

.galvanizing-services-items > div:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: unset;
}

.galvanizing-services-items-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.galvanizing-services-items-top h4 {
  color: #060f1c;
  font-weight: 600;
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 100%;
  vertical-align: middle;
  text-transform: uppercase;
  max-width: 300px;
  margin-bottom: 0;
}
@media screen and (max-width: 991.98px) {
  .galvanizing-services-items-top h4 {
    max-width: 200px;
  }
}

.galvanizing-services-items-top > div {
  display: flex;
  gap: 4px;
}

.galvanizing-services-items > div > p {
  color: #83878e;
  font-weight: 400;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.1;
}

.galvanizing-services-items-dark {
  background-color: #A2952F;
  border-radius: 50%;
  height: 12px;
  width: 12px;
}

.galvanizing-services-items-light {
  background-color: rgba(162, 149, 47, 0.2);
  border-radius: 50%;
  height: 12px;
  width: 12px;
}

@media screen and (max-width: 768px) {
  .galvanizing-services {
    padding-bottom: 50px;
  }
  .galvanizing-services-items > div {
    margin-top: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
  }
}
.our-qualification-section {
  margin: 50px 0 80px 0;
}
.our-qualification-section .our-qualification-section-content {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.our-qualification-section .our-qualification-section-content .primary-title {
  font-size: clamp(28px, 4vw, 44px);
  font-family: var(--jost);
  color: #000000;
  margin-bottom: 40px;
}
.our-qualification-section .our-qualification-section-content .desc {
  line-height: 1;
  font-family: var(--jost);
  color: #83878E;
}

.our-services-offered .our-services-offered-top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 50px;
}
.our-services-offered .our-services-offered-top .secondary-title {
  font-family: var(--jost);
  margin: 0px;
}
.our-services-offered .our-services-offered-top .desc {
  color: #83878e;
  max-width: 80%;
}
@media screen and (max-width: 991.98px) {
  .our-services-offered .our-services-offered-top .desc {
    max-width: 100%;
  }
}
.our-services-offered .our-services-offered-card {
  border: 1px solid rgba(0, 0, 0, 0.1019607843);
  padding: 16px;
}
.our-services-offered .our-services-offered-card:hover > div:first-child img {
  scale: 1.2;
}
.our-services-offered .our-services-offered-card > div:first-child {
  position: relative;
  height: 234px;
  overflow: hidden;
}
.our-services-offered .our-services-offered-card > div:first-child > span {
  background-color: #00115e;
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 8px;
  font-family: var(--jost);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--white);
  z-index: 1;
}
.our-services-offered .our-services-offered-card > div:first-child img {
  transition: all 0.3s;
}
.our-services-offered .our-services-offered-card > div:last-child {
  margin-top: 10px;
}
.our-services-offered .our-services-offered-card > div:last-child .desc {
  overflow: hidden;
  text-overflow: ellipsis;
  color: #83878e !important;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  margin-bottom: 20px;
}

.trusted-steel-excellence-x {
  margin: 100px 0;
}
@media screen and (max-width: 991.98px) {
  .trusted-steel-excellence-x {
    margin: 70px 0;
  }
}
.trusted-steel-excellence-x .trusted-main {
  margin-top: 20px;
}
.trusted-steel-excellence-x .secondary-title,
.trusted-steel-excellence-x .desc {
  text-align: center;
}
.trusted-steel-excellence-x .desc {
  text-align: center;
  max-width: 85% !important;
  padding-top: 20px;
  margin: auto;
}
@media screen and (max-width: 991.98px) {
  .trusted-steel-excellence-x .desc {
    max-width: 100% !important;
  }
}
.trusted-steel-excellence-x .trusted--box {
  position: relative;
}
.trusted-steel-excellence-x .trusted--box > div {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #f5f5f3;
  height: 100%;
  width: 6px;
  overflow: hidden;
}
@media screen and (max-width: 991.98px) {
  .trusted-steel-excellence-x .trusted--box > div {
    right: 0;
  }
}
.trusted-steel-excellence-x .trusted--box > div span {
  background-color: #A2952F;
  height: 0;
  transition: height 0.4s ease;
  width: 100%;
  display: block;
}
.trusted-steel-excellence-x .trusted--box ul {
  height: 100% !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.trusted-steel-excellence-x .trusted--box ul li {
  color: rgba(0, 0, 0, 0.5019607843);
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 500;
  max-width: 80%;
  border: none;
}
.trusted-steel-excellence-x .trusted--box ul li span {
  background: #a2952f;
}
.trusted-steel-excellence-x .trusted--box ul li svg {
  visibility: hidden;
}
.trusted-steel-excellence-x .trusted--box ul li text {
  color: rgba(0, 0, 0, 0.5019607843);
}
.trusted-steel-excellence-x .trusted--box ul li.active {
  color: #a2952f;
  border-bottom: 1px solid #a2952f;
}
.trusted-steel-excellence-x .trusted--box ul li.active svg {
  visibility: visible;
}
.trusted-steel-excellence-x .trusted--box ul li.active text {
  color: #a2952f;
}
.trusted-steel-excellence-x .trusted-images > div {
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.trusted-steel-excellence-x .trusted-images > div.active {
  opacity: 1;
  position: relative;
  z-index: 2;
}
.trusted-steel-excellence-x .trusted-images > div {
  position: absolute;
  inset: 0;
}
.trusted-steel-excellence-x .trusted-images > div .trustedSwiper {
  width: 100%;
  height: 100%;
}
.trusted-steel-excellence-x .trusted-images > div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.our-qualification-x .secondary-title,
.our-qualification-x .desc {
  text-align: center;
}
.our-qualification-x .desc {
  text-align: center;
  max-width: 70% !important;
  padding-top: 20px;
  color: #83878e;
  margin: auto;
}
@media screen and (max-width: 991.98px) {
  .our-qualification-x .desc {
    max-width: 100% !important;
  }
}
.our-qualification-x .our-q-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 550px;
  padding: 30px 16px 16px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1019607843);
  align-items: center;
}
.our-qualification-x .our-q-card .q-book-img {
  transition: all 0.3s;
  max-width: 316px;
  max-height: 360px;
}
.our-qualification-x .our-q-card:hover .q-book-img {
  scale: 1.1;
}

.custom-modal {
  height: 99vh;
}
@media screen and (max-width: 767.98px) {
  .custom-modal {
    height: auto;
  }
}
.custom-modal .modal-body {
  padding-top: 0;
}
.custom-modal .modal-content {
  border-radius: 0;
}
.custom-modal .modal-header {
  border: none;
}
.custom-modal .modal-content {
  display: flex;
  flex-direction: column;
  border: none;
}
.custom-modal .modal-content .modalSwiper {
  height: 427px;
  width: 100%;
}
@media screen and (max-width: 991.98px) {
  .custom-modal .modal-content .modalSwiper {
    height: 350px;
  }
}
.custom-modal .modal-content .modalSwiper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.custom-modal .modal-content .modal-text {
  margin: 20px 0;
}
.custom-modal .modal-content .primary-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: uppercase;
}
.custom-modal .modal-content .desc {
  margin-top: 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #83878e;
}
.custom-modal .btn-close {
  box-shadow: none;
}

/*# sourceMappingURL=style.css.map */
