@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  color: #fff;
  background-color: #000;
  font-family: "Ubuntu";
}

h2 {
  font-size: 2.8rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}

h3 {
  font-size: 2.3rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

h4 {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0;
  color: #f6e618;
  font-style: italic;
}

p {
  font-size: 1rem;
  margin: 0;
}

p span {
  color: #f6e618;
  font-weight: 600;
  font-style: italic;
}

a {
  font-size: 1rem;
  color: unset;
  text-decoration: none;
  margin: 0;
}

.custom-container {
  width: 90%;
  margin: auto;
}

header {
  width: 100%;
  padding: 2rem 0;
  position: sticky;
  top: 0;
  left: 0;
  background-color: #000;
  z-index: 10;
}
header .custom-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
header .custom-container img {
  max-width: 200px;
}
header .custom-container div {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
}
header .custom-container div a {
  font-size: 1.1rem;
  font-weight: 500;
}

.footer-contact {
  padding: 3rem 0;
  background-color: #1a1a1a;
}
.footer-contact .custom-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: flex-start;
}
.footer-contact .custom-container img {
  width: 200px;
}
.footer-contact .custom-container .footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-contact .custom-container .footer-links div {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.footer-contact .custom-container .footer-links div a {
  font-size: 1rem;
}
.footer-contact .custom-container .footer-links div .fas {
  font-size: 1.2rem;
  color: #f6e618;
  width: 1.5rem;
}
.footer-contact .custom-container .footer-links div .far {
  font-size: 1.2rem;
  color: #f6e618;
  width: 1.5rem;
}

.footer-credit {
  padding: 1rem 0;
  background-color: #f6e618;
}
.footer-credit .custom-container {
  color: #000;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.enquiry {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 10;
}
.enquiry > p {
  position: absolute;
  right: -34px;
  transform: rotate(90deg);
  padding: 0.6rem 1rem;
  background-color: #f6e618;
  color: #000;
  font-size: 1.2rem;
  font-weight: 500;
  cursor: pointer;
}
.enquiry h2 {
  font-size: 1.5rem;
  color: #000;
  width: 100%;
  text-align: center;
  position: relative;
  margin-bottom: 1.5rem;
}
.enquiry h2 i {
  cursor: pointer;
  position: absolute;
  right: 0;
  font-size: 1.8rem;
}
.enquiry .enq-form {
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translate(0, -50%);
  width: 350px;
  background-color: #fff;
  padding: 1.6rem;
  border-radius: 6px;
  z-index: 2;
  transition: all 0.2s ease;
}
.enquiry .enq-form.active {
  transform: translate(calc(-100% - 10px), -50%);
}
.enquiry .enq-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.enquiry .enq-form form > div {
  position: relative;
}
.enquiry .enq-form form > div small {
  position: absolute;
  color: #f00;
  top: 100%;
  left: 0;
  font-size: 0.8rem;
}
.enquiry .enq-form form input, .enquiry .enq-form form textarea {
  width: 100%;
  background-color: unset;
  outline: unset;
  border: 1px solid #f6e618;
  border-radius: 4px;
  padding: 0.3rem 1rem;
}
.enquiry .enq-form form input[type=submit] {
  background-color: #f6e618;
  padding: 0.5rem;
  border: 1px solid #000;
}
.enquiry .enq-form form input::placeholder, .enquiry .enq-form form textarea::placeholder {
  font-size: 0.9rem;
}
.enquiry .enq-form form > div {
  position: relative;
}

#formPreLoader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f6e618;
  display: flex;
  align-items: center;
  justify-content: center;
}
#formPreLoader .spinner {
  width: 24px;
  height: 24px;
  border: 4px solid rgba(255, 255, 255, 0);
  border-top-color: #000;
  animation: spin 1s linear infinite;
  border-radius: 50%;
}

.mySwiper {
  width: 100%;
}
.mySwiper .swiper-slide {
  padding: 4px;
}
.mySwiper .swiper-slide img {
  width: 100%;
}
.mySwiper .swiper-button-next, .mySwiper .swiper-button-prev {
  color: #fff;
}

.banner img {
  width: 100%;
}

.forward-section {
  padding: 3rem 0;
}
.forward-section .custom-container {
  display: flex;
  flex-direction: column-reverse;
  gap: 2rem;
}
.forward-section .custom-container .sec-img {
  width: 100%;
}
.forward-section .custom-container .sec-img img {
  width: 100%;
}
.forward-section .custom-container .sec-cont {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.forward-section .custom-container .sec-cont h2,
.forward-section .custom-container .sec-cont h3 {
  border-bottom: 2px solid #fff;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  position: relative;
  width: 100%;
}
.forward-section .custom-container .sec-cont h2::after,
.forward-section .custom-container .sec-cont h3::after {
  content: "";
  width: 80px;
  height: 13px;
  background-color: #f6e618;
  position: absolute;
  top: 100%;
  left: 0;
}

.reverse-section {
  padding: 3rem 0;
}
.reverse-section .custom-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.reverse-section .custom-container .sec-img {
  width: 100%;
}
.reverse-section .custom-container .sec-img img {
  width: 100%;
}
.reverse-section .custom-container .sec-cont {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.reverse-section .custom-container .sec-cont h2,
.reverse-section .custom-container .sec-cont h3 {
  border-bottom: 2px solid #fff;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  position: relative;
  width: 100%;
}
.reverse-section .custom-container .sec-cont h2::after,
.reverse-section .custom-container .sec-cont h3::after {
  content: "";
  width: 80px;
  height: 13px;
  background-color: #f6e618;
  position: absolute;
  top: 100%;
  left: 0;
}

.banner-nav {
  width: 100%;
  background-color: #1a1a1a;
}
.banner-nav .custom-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.banner-nav .custom-container a {
  padding: 1rem;
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 600;
}
.banner-nav .custom-container a:nth-child(1) {
  background-color: #f6e618;
  color: #000;
}
.banner-nav .custom-container a:nth-child(2) {
  background-color: #000;
}
.banner-nav .custom-container a img {
  width: 40px;
}

.statistics {
  padding: 3rem 0;
}
.statistics .custom-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
}
.statistics .custom-container div {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  text-align: center;
}
.statistics .custom-container div img {
  width: 75px;
}

.mil-fences {
  padding: 3rem 0;
}
.mil-fences h2 {
  padding-bottom: 0.5rem;
  margin-bottom: 3rem;
  border-bottom: 2px solid #fff;
  width: 100%;
  position: relative;
}
.mil-fences .mil-fences-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 2rem;
}
.mil-fences .mil-fences-container .mil-fences-lft {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}
.mil-fences .mil-fences-container .mil-fences-lft ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-weight: 600;
}
.mil-fences .mil-fences-container .mil-fences-lft ul li {
  position: relative;
  list-style: none;
}
.mil-fences .mil-fences-container .mil-fences-lft ul li::after {
  content: "";
  width: 1rem;
  height: 1rem;
  background-color: #f6e618;
  position: absolute;
  border-radius: 50%;
  top: 4px;
  right: calc(100% + 10px);
}
.mil-fences .mil-fences-container .mil-fences-ryt {
  width: 100%;
}
.mil-fences .mil-fences-container .mil-fences-ryt img {
  width: 100%;
}

.autonomy {
  padding: 3rem 0;
  position: relative;
}
.autonomy > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  z-index: 1;
  opacity: 0.3;
}
.autonomy .custom-container {
  position: relative;
  z-index: 3;
}

.portable {
  background-color: #1a1a1a;
}

.mechanism {
  background-color: #1a1a1a;
}

.mil-slide {
  padding: 3rem 0;
}
.mil-slide h2 {
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  position: relative;
  width: 100%;
}

.civl-fences {
  padding: 3rem 0;
  background-color: #1a1a1a;
}
.civl-fences h2 {
  border-bottom: 2px solid #fff;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  position: relative;
  width: 100%;
}
.civl-fences .custom-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.security {
  background-color: #1a1a1a;
}

.clients {
  padding: 3rem 0;
}
.clients h2 {
  border-bottom: 2px solid #fff;
  padding-bottom: 0.5rem;
  margin-bottom: 3rem;
  position: relative;
  width: 100%;
}
.clients .custom-container div {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}
.clients .custom-container div div {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.clients .custom-container div img {
  filter: brightness(3.5);
}

@media only screen and (min-width: 480px) {
  .statistics .custom-container div {
    width: calc(50% - 1rem);
  }
}
@media only screen and (min-width: 600px) {
  header .custom-container {
    flex-direction: row;
    justify-content: space-between;
  }
  header .custom-container img {
    max-width: 250px;
  }
  header .custom-container div {
    gap: 1.5rem;
  }
  .footer-credit .custom-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .clients .custom-container div {
    flex-direction: row;
  }
  .clients .custom-container div div {
    width: calc(50% - 1rem);
  }
}
@media only screen and (min-width: 840px) {
  .custom-container {
    width: 80%;
  }
  .footer-contact {
    padding: 6rem 0;
  }
  .footer-contact .custom-container {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0rem;
    justify-content: flex-start;
  }
  .footer-contact .custom-container img {
    width: 250px;
    padding-right: 3rem;
  }
  .footer-contact .custom-container .footer-links {
    padding-left: 3rem;
    border-left: 1px solid #fff;
  }
  .forward-section {
    padding: 6rem 0;
  }
  .reverse-section {
    padding: 6rem 0;
  }
  .banner-nav .custom-container {
    width: 80%;
  }
  .banner-nav .custom-container a {
    width: 50%;
  }
  .statistics {
    padding: 6rem 0 0;
  }
  .statistics .custom-container {
    gap: 3rem;
  }
  .statistics .custom-container div {
    width: calc(33.33% - 2rem);
  }
  .mil-fences {
    padding: 6rem 0;
  }
  .mil-slide {
    padding: 6rem 0;
  }
  .civl-fences {
    padding: 6rem 0;
  }
  .clients {
    padding: 6rem 0;
  }
}
@media only screen and (min-width: 960px) {
  .forward-section .custom-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 3rem;
  }
  .forward-section .custom-container .sec-img {
    width: calc(50% - 1.5rem);
  }
  .forward-section .custom-container .sec-cont {
    width: calc(50% - 1.5rem);
  }
  .reverse-section .custom-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 3rem;
  }
  .reverse-section .custom-container .sec-img {
    width: calc(50% - 1.5rem);
  }
  .reverse-section .custom-container .sec-cont {
    width: calc(50% - 1.5rem);
  }
  .mil-fences .mil-fences-container {
    flex-direction: row;
    justify-content: space-between;
    gap: 3rem;
  }
  .mil-fences .mil-fences-container .mil-fences-lft {
    width: calc(50% - 1.5rem);
  }
  .mil-fences .mil-fences-container .mil-fences-ryt {
    width: calc(50% - 1.5rem);
  }
  .clients .custom-container div {
    flex-direction: row;
  }
  .clients .custom-container div div {
    width: calc(33.33% - 1.34rem);
  }
}
@media only screen and (min-width: 1080px) {
  header .custom-container div {
    gap: 3rem;
  }
  header .custom-container div a {
    font-size: 1.3rem;
    font-weight: 500;
  }
  .statistics .custom-container {
    justify-content: center;
  }
  .statistics .custom-container div {
    width: 132px;
  }
  .clients .custom-container div {
    flex-direction: row;
    gap: 2rem 0;
  }
  .clients .custom-container div div {
    width: 25%;
    aspect-ratio: 2.5/1;
  }
  .clients .custom-container div div img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
@media only screen and (min-width: 1200px) {
  p {
    font-size: 1.1rem;
  }
  a {
    font-size: 1.1rem;
  }
  .banner-nav .custom-container a {
    padding: 1.5rem;
    font-size: 1.8rem;
  }
  .clients .custom-container div div {
    width: 20%;
  }
}
@media only screen and (min-width: 1320px) {
  .statistics .custom-container {
    justify-content: center;
  }
  .statistics .custom-container div {
    width: 170px;
  }
  .forward-section .custom-container {
    gap: 6rem;
  }
  .forward-section .custom-container .sec-cont {
    gap: 2rem;
    width: calc(50% - 3rem);
  }
  .forward-section .custom-container .sec-img {
    width: calc(50% - 3rem);
  }
  .reverse-section .custom-container {
    gap: 6rem;
  }
  .reverse-section .custom-container .sec-cont {
    gap: 2rem;
    width: calc(50% - 3rem);
  }
  .reverse-section .custom-container .sec-img {
    width: calc(50% - 3rem);
  }
  .mil-fences h2 {
    margin-bottom: 4rem;
  }
  .mil-fences .mil-fences-container {
    gap: 6rem;
  }
  .mil-fences .mil-fences-container .mil-fences-lft {
    width: calc(50% - 3rem);
    gap: 2rem;
  }
  .mil-fences .mil-fences-container .mil-fences-lft ul {
    font-size: 1.3rem;
  }
  .mil-fences .mil-fences-container .mil-fences-lft ul li::after {
    top: 8px;
  }
  .mil-fences .mil-fences-container .mil-fences-ryt {
    width: calc(50% - 3rem);
  }
  .civl-fences h2 {
    margin-bottom: 2rem;
  }
  .civl-fences .custom-container {
    gap: 2rem;
  }
  .clients .custom-container div div {
    width: 16.6%;
  }
}
@media only screen and (min-width: 1440px) {
  .mil-fences .mil-fences-container .mil-fences-ryt {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
  }
  .mil-fences .mil-fences-container .mil-fences-ryt img {
    width: unset;
  }
  .portable.reverse-section .custom-container .sec-img,
  .industrial.reverse-section .custom-container .sec-img {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
  }
  .portable.reverse-section .custom-container .sec-img img,
  .industrial.reverse-section .custom-container .sec-img img {
    width: unset;
  }
  .clients .custom-container div {
    aspect-ratio: unset;
  }
  .clients .custom-container div div {
    width: 14.2%;
  }
  .clients .custom-container div div img {
    width: 100%;
    height: unset;
  }
}