@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root {
  --primary: #0a6ca9;
  --primary-dark: #03051c;
  --primary-dark-1: #001274;
  --primary-light: #f3f3ff;
  --secondary: #f1592a;
  --dark: #222222;
  --black: #20282d;
  --grey: #444444;
  --light: #f5f5f5;
  --light1: #f0f0f0;
  --light2: #e9e9e9;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

::selection {
  background-color: var(--primary);
  color: #ffffff;
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--light2);
}

::-webkit-scrollbar {
  height: 4px;
  width: 4px;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  -webkit-border-radius: 1ex;
  -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.75);
}

::-webkit-scrollbar-corner {
  background: transparent;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: var(--dark);
  overflow-x: hidden;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-optical-sizing: auto;
  font-style: normal;
  font-family: "Red Hat Display", sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

/* p {
  line-height: 24px;
  color: #444;
} */

.full-img {
  width: 100%;
}

.grey-bg {
  background-color: #f6f6fd;
}

.f34 {
  font-size: 34px !important;
}

.f30 {
  font-size: 30px !important;
}

.f24 {
  font-size: 24px !important;
}

.f20 {
  font-size: 20px !important;
}

.f18 {
  font-size: 18px;
}

.f16 {
  font-size: 16px;
}

.f14 {
  font-size: 14px;
}

.f12 {
  font-size: 12px;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.mt-minus-10 {
  margin-top: -10px;
}

.light-bg {
  background-color: var(--light);
}

.color-secondary {
  color: var(--secondary);
}

.color-secondary-dark {
  color: var(--secondary-dark);
}

.color-primary {
  color: var(--primary) !important;
}

.color-primary-dark {
  color: var(--primary-dark);
}

.primary-bg {
  background-color: var(--primary) !important;
}

.top-header {
  width: 100%;
  padding: 10px;
  background: linear-gradient(
    90deg,
    rgba(3, 5, 28, 1) 0%,
    rgba(0, 18, 116, 1) 100%
  );
}


.top-header ul li {
  padding-right: 30px;
  padding-left: 30px;
  position: relative;
  display: inline-block;
  color: var(--white);
}

.top-header ul li:first-child {
  padding-left: 0;
}

.top-header ul li a {
  color: var(--white);
  font-size: 15px;
  transition: all 0.3s;
}

.mail::after {
  width: 1px;
  height: 100%;
  content: "";
  position: absolute;
  right: 0;
  background-color: var(--white);
}

.top-header ul li a:hover {
  color: var(--secondary);
}

header {
  width: 100%;
  padding: 10px 0;
  /* background-color: var(--white); */
  background-color: #f9f9f9;
}

.logo img {
  width: 100%;
  max-width: 200px;
  transition: all 0.4s;
}

.header-fixed {
  width: 100%;
  background-color: #f9f9f9;
  padding: 5px 0 !important;
  border-bottom: solid 1px var(--light);
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  animation: headerSlideDown 0.95s ease forwards;
  top: 0px;
  padding: 0;
  position: fixed;
  z-index: 10;
}

@keyframes headerSlideDown {
  0% {
    margin-top: -100px;
  }

  100% {
    margin-top: 0;
  }
}

.header-fixed .logo img {
  width: 100%;
  max-width: 180px;
}

.menu {
  width: 100%;
  text-align: right;
  margin-top: 10px;
}

.header-fixed .menu {
  margin-top: 10px;
}

.menu li {
  display: inline;
  margin: 0 15px;
}

.menu li a {
  color: var(--dark);
  transition: all 0.4s;
  font-weight: 500;
  font-size: 18px;
  padding: 5px;
}

.menu li a.active {
  border-bottom: solid 2px var(--secondary);
}

.header-fixed .menu li a {
  color: var(--dark);
}

.menu li a:hover {
  color: var(--secondary);
}

.header-right {
  display: none;
}

.main-banner-img {
  width: 100%;
  min-height: 600px;
}

.about-sec {
  width: 100%;
  min-height: 400px;
   /* background: linear-gradient(
    90deg,
    rgba(0, 18, 116, 1) 20%,
    rgba(3, 5, 28, 1) 100%
  ); */
  padding: 30px 0px;
  /* background: url(../images/product-bg.jpeg) no-repeat center;
  background-size: cover; */
  position: relative;
  z-index: 1;
}

.product-bg-img {
  position: absolute;
  top: -180px;
  width: 100%;
  z-index: -1;
}

.pr-title {
  font-size: 50px;
  color: var(--white);
  font-weight: 600;
}

.product-sec {
  margin-top: -100px;
  position: relative;
  z-index: 2;
}

.pr-img {
  width: 100%;
  /* min-height: 310px; */
  border-radius: 10px;
  border: solid 2px var(--grey);
  position: relative;
  transition: all 0.4s;
}

.pr-img img {
  width: 100%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
}

.pr-img-title {
  position: absolute;
  bottom: -20px;
  width: 85%;
  margin: auto;
  left: 0;
  right: 0;
  min-height: 40px;
  background: linear-gradient(90deg,rgba(5, 147, 249, 1) 0%, rgba(1, 30, 55, 1) 71%);
  border-radius: 10px 4px 10px 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s;
}

.pr-img-title h2 {
  color: var(--white);
  font-weight: 700;
  font-size: 22px;
  margin: 0;
  text-transform: uppercase;
}

.pr-img:hover .pr-img-title, .pr-img:hover {
 box-shadow: rgba(4, 105, 179, 0.9) 0px 15px 20px -12px;
 background: linear-gradient(90deg,rgba(1, 30, 55, 1) 0%, rgba(5, 147, 249, 1) 71%);
} 

.d-pr-sec {
 width: 100%;
 min-height: 450px;
 background: url(../images/3d-pr-bg.jpg) no-repeat center;
 background-size: cover;
}

.dd-product-img {
  width: 100%;
  max-width: 80%;
  margin-top: 170px;
}

.d-pr-sec h1 {
  margin-top: 150px;
  font-weight: 700;
  color: var(--primary-dark-1);
}

.view-pr-btn {
  padding: 10px 20px;
  border-radius: 10px;
  color: var(--secondary);
  font-size: 20px;
  font-weight: 600;
  background-color: #dbe2ec;
 box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
 transition: all 0.4s;
}

.view-pr-btn:hover {
  background-color: var(--primary-dark-1);
  color: var(--white);
}

.video-about {
  width: 100%;
  min-height: 500px;
  border-radius: 30px 5px 30px 5px;
  background: linear-gradient(0deg,rgba(3, 17, 30, 1) 0%, rgba(25, 106, 149, 1) 50%, rgba(1, 18, 34, 1) 100%);
  /* background: url(../images/About-us-bg.png) no-repeat;
  background-size: cover; */
  padding: 50px 30px 30px;
}


.inner-sec {
  padding: 80px 0;
}

.small-title {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--secondary);
}

.title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--primary);
}

.swiper-pagination {
  bottom: -10px;
}

.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--white);
    opacity: 0.8;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary);
    opacity: 1;
}

.info-sec-1 {
  background-color: #d9d9d9;
  width: 100%;
  min-height: 400px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.info-sec-1 h2 {
  color: var(--primary);
  font-size: 24px;
}

.info-sec-1 h1 {
  color: var(--primary);
}

.catalog-download {
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.catalog-download a {
  display: flex;
  padding: 10px;
  font-size: 18px;
  font-weight: 500;
  border: solid 0px var(--grey);
  transition: all 0.4s;
}

.catalog-download a i {
  padding-right: 10px;
}

/* .catalog-download a:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
} */

.catalog-download a img {
  width: 80px;
}

/* .catalog-download a:hover img {
  filter: invert();
} */

.info-sec-2 {
  width: 100%;
  min-height: 500px;
  /* background-color: var(--primary-dark); */
  margin-top: -50px;
  background: linear-gradient(to bottom, #030f27 0%,#0d3f70 50%,#030f27 100%);
  padding: 30px;
}

.info-sec-2 h1 {
  color: var(--white);
  display: inline;
  border-bottom: solid 1px var(--white);
  font-size: 32px;
}

.info-sec-2-cont {
  margin-top: 50px;
  margin-bottom: 50px;
  color: var(--white);
}

.info-sec-2-cont h2 {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.info-sec-2-cont h3 {
  font-size: 16px;
}

.info-sec-2-cont h3 span {
  opacity: 0.8;
  padding-left: 15px;
}

.info-sec-3 {
  width: 100%;
  min-height: 400px;
  background-color: #7f7f7f;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.info-sec-3 h2 {
  color: var(--white);
  font-size: 24px;
}

.info-sec-3 h1 {
  color: var(--white);
}

.info-sec-3-cont {
  margin-top: 20px;
}

.info-sec-3-cont h2 {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  
}

.info-sec-3-cont h3 {
  font-size: 16px;
  color: var(--white);
}

.info-sec-3-cont h3 span {
  opacity: 0.8;
  padding-left: 15px;
}

.contact-sec {
  padding: 30px 0;
  min-height: 500px;
  background: linear-gradient(0deg,rgba(243, 245, 244, 1) 0%, rgba(8, 36, 58, 1) 100%);
}

.contact-info-sec {
  width: 100%;
  min-height: 250px;
  padding: 30px 0 100px 0;
  /* background: linear-gradient(90deg,rgba(42, 47, 138, 1) 0%, rgba(0, 82, 146, 1) 100%); */
  border-radius: 20px;
  position: relative;
  z-index: 1;
}

.con-img {
  position: absolute;
  top: -50px;
  left: -30px;
  width: 80%;
  /* height: 407px; */
  z-index: -1;
}

.contact-icon i {
  color: var(--white);
  font-size: 30px;
}

.contact-info-sec h4 {
  font-size: 22px;
  color: var(--white);
  font-weight: 600;
  display: inline;
  text-decoration: underline;
}

.contact-info-sec p {
  color: var(--white);
  margin-top: 10px;
}

.form-input {
  border: none;
  outline: none;
  width: 100%;
  border-radius: 5px;
  height: 50px;
  padding: 5px 10px;
}

textarea.form-input {
  height: 150px;
}

footer {
  width: 100%;
  padding-top: 40px;
  background: linear-gradient(90deg,rgba(2, 2, 4, 1) 0%, rgba(0, 0, 100, 1) 100%);
  /* background: url(../images/footer-bg.png) no-repeat top;
  background-size: cover; */
}

footer h4 {
  color: var(--white);
  font-weight: 600;
  position: relative;
  display: inline-block;
  margin-bottom: 50px;
}

footer h4::before {
  position: absolute;
  content: "";
  width: 50%;
  height: 2px;
  background-color: var(--white);
  bottom: -15px;
}

footer p {
  color: #d5d5d5;
}

/* .f-links {
  margin-top: 20px;
} */

.f-links li {
  position: relative;
  padding-left: 25px;
  color: #d5d5d5;
  margin-bottom: 15px;
  display: inline;
}

.f-links li a {
  color: #fff;
  transition: all 0.3s;
  font-size: 30px;
}

.f-links li a:hover {
  color: var(--primary);
}

.btm-footer {
  padding: 10px 0;
  margin-top: 50px;
  background-color: #1e2679;
}

.btm-footer p {
  margin: 0;
  padding: 0;
}

