@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
html {
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  overflow-x: hidden !important;
  animation: fadeInAnimation ease 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  position: relative;
  font-family: "Poppins", sans-serif;
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
a {
  text-decoration: none;
  cursor: pointer;
  color: #ffffff;
}

a:hover,
a:focus,
a:visited {
  text-decoration: none;
  outline: none;
}

.no-padding {
  padding: 0px !important;
}

@keyframes topToBottom {
  0% {
    top: -50px;
  }
  100% {
    top: 0;
  }
}
header {
  transition: all 0.3s ease-in-out;
  padding: 24px 0;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
}
@media (max-width: 1199px) {
  header {
    padding: 20px 0;
  }
}
header .inner-full-header-wrapper {
  position: relative;
  z-index: 1;
}
@media (max-width: 1199px) {
  header .header-inner-wrapper {
    display: none;
  }
}
header .header-inner-wrapper .header-desktop {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
header .header-inner-wrapper .header-desktop .left-side-logo a {
  display: block;
}
header .header-inner-wrapper .header-desktop .left-side-logo a img {
  width: 100%;
  max-width: 200px;
  transition: 0.5s ease-in-out;
}
header .header-inner-wrapper .header-desktop .right-side-menu ul {
  margin: 0;
  padding: 0;
}
header .header-inner-wrapper .header-desktop .right-side-menu ul li {
  list-style: none;
  display: inline-block;
  margin: 0 18px;
}
header .header-inner-wrapper .header-desktop .right-side-menu ul li:last-child {
  margin-right: 0;
}
header .header-inner-wrapper .header-desktop .right-side-menu ul li a {
  font-weight: 500;
  font-size: 16px;
  color: #140D5B;
  transition: 0.3s ease-in-out;
  position: relative;
  z-index: 1;
  padding: 0 0 10px 0;
}
@media (max-width: 1499px) {
  header .header-inner-wrapper .header-desktop .right-side-menu ul li a {
    padding-bottom: 5px;
  }
}
header .header-inner-wrapper .header-desktop .right-side-menu ul li a::before {
  position: absolute;
  left: 0;
  bottom: 2px;
  content: "";
  width: 0;
  height: 2px;
  transition: 0.3s ease-in-out;
  opacity: 0;
  background-color: #140D5B;
}
header .header-inner-wrapper .header-desktop .right-side-menu ul li a:hover::before {
  opacity: 1;
  width: 100%;
}
header .header-inner-wrapper .header-desktop .right-side-menu ul li .active::before {
  opacity: 1;
  width: 100%;
}
header .header-mobile-section {
  display: none;
}
@media (max-width: 1199px) {
  header .header-mobile-section {
    display: block;
  }
}
header .header-mobile-section .mobile-header-inner-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-left a img {
  max-width: 200px;
}
@media (max-width: 1199px) {
  header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-left a img {
    max-width: 170px;
  }
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .mobile-menu-btn {
  background-color: transparent;
  border: none;
  box-shadow: none;
  font-size: 24px;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
  padding-left: 20px;
  color: #140D5B;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas {
  min-height: 100vh;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-header {
  padding: 25px;
  padding-left: 12px;
  margin-bottom: 50px;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-header h5 a img {
  max-width: 200px;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-header .btn-close {
  background-image: unset;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #140D5B;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-header .btn-close:focus {
  box-shadow: none;
  outline: none;
  border: none;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body {
  padding: 16px 25px 30px 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul {
  margin: 0;
  padding: 0;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul li {
  list-style: none;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul li a {
  font-size: 17px;
  font-weight: 500;
  transition: 0.3s ease-in-out;
  padding: 8px 0;
  display: block;
  color: #140D5B;
  opacity: 0.9;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul li .accordion {
  background-color: transparent;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul li .accordion .accordion-item {
  background-color: transparent;
  border: none !important;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul li .accordion .accordion-item .accordion-header {
  background-color: transparent;
  padding: 10px 0;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul li .accordion .accordion-item .accordion-header button {
  padding: 0;
  background-color: transparent;
  text-transform: uppercase;
  font-size: 17px;
  color: #000000;
  border: none;
  box-shadow: none;
  outline: none;
  opacity: 0.8;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul li .accordion .accordion-item .accordion-body {
  padding: 0 15px;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul li .accordion .accordion-item .accordion-body ul li a {
  padding: 4px 0;
  font-size: 15px;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul li .accordion-button::after {
  background-image: unset;
  content: "\e145";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Material Icons";
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul li .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: #000000;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul li .accordion-button:not(.collapsed)::after {
  content: "\e15b";
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body .footer-inner {
  text-align: left;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body .footer-inner h6 {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: #ffffff;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body .footer-inner .footer-social-wrapper {
  margin-bottom: 25px;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body .footer-inner .footer-social-wrapper a {
  color: #ffffff;
  padding: 0 5px;
  font-size: 17px;
  transition: 0.3s ease-in-out;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body .footer-inner .footer-social-wrapper a:first-child {
  padding-left: 0;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body .footer-inner p {
  margin-bottom: 0;
  font-size: 14px;
  color: #ffffff;
  font-weight: 500;
}

.sticky {
  background: #ffffff;
  padding: 20px 0;
  box-shadow: 0px 3px 10px 2px rgba(0, 0, 0, 0.07);
  -webkit-box-shadow: 0px 3px 10px 2px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0px 3px 10px 2px rgba(0, 0, 0, 0.07);
}
@media (max-width: 1499px) {
  .sticky {
    padding: 10px 0;
  }
}
.sticky .left-side-logo a img {
  max-width: 180px !important;
}
.page-content {
  margin-top: 112px;
}

.hero-section {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: calc(100vh - 112px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero-section .hero-section-inner {
  height: 100%;
}
.hero-section .hero-section-inner .hero-inner-content .title-button-section {
  text-align: center;
}
.hero-section .hero-section-inner .hero-inner-content .title-button-section h1 {
  font-size: 80px;
  font-weight: 800;
  line-height: 100px;
  color: #fff;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .hero-section .hero-section-inner .hero-inner-content .title-button-section h1 {
    font-size: 35px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .hero-section .hero-section-inner .hero-inner-content .title-button-section h1 {
    font-size: 30px;
    line-height: 36px;
  }
}
.hero-section .hero-section-inner .hero-inner-content .title-button-section .link-wrapper a {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  font-weight: 800;
  background-color: #140D5B;
  padding: 15px 30px;
  color: #fff;
  border-radius: 3px;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .hero-section .hero-section-inner .hero-inner-content .title-button-section .link-wrapper a {
    font-size: 16px;
  }
}
.hero-section .hero-section-inner .hero-inner-content .title-button-section .link-wrapper a:hover {
  background-color: #fff;
  color: #140D5B;
}

.footer-section .footer-top {
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px 0 15px 0;
}
.footer-section .footer-top .footer-inner {
  display: grid;
  grid-template-columns: 1fr 0.8fr 1fr;
  gap: 30px;
}
@media (max-width: 1280px) {
  .footer-section .footer-top .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 991px) {
  .footer-section .footer-top .footer-inner {
    grid-template-columns: 1fr;
  }
}
.footer-section .footer-top .footer-inner .left-logo-section .footer-logo {
  margin-bottom: 20px;
  display: block;
}
.footer-section .footer-top .footer-inner .left-logo-section .footer-logo img {
  width: 100%;
  max-width: 200px;
  margin-left: -15px;
}
.footer-section .footer-top .footer-inner .left-logo-section .social-links a {
  display: block;
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-size: 14px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1294117647);
}
.footer-section .footer-top .footer-inner .left-logo-section .social-links a:last-child {
  margin-bottom: 0;
  border: none;
  padding-bottom: 0;
}
.footer-section .footer-top .footer-inner .left-logo-section .social-links a img {
  width: 15px;
  margin-right: 25px;
}
.footer-section .footer-top .footer-inner .links-address-wrapper .links-box h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
}
.footer-section .footer-top .footer-inner .links-address-wrapper .links-box .footer-links ul {
  margin: 0;
  padding: 0;
}
.footer-section .footer-top .footer-inner .links-address-wrapper .links-box .footer-links ul li {
  list-style: none;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.footer-section .footer-top .footer-inner .links-address-wrapper .links-box .footer-links ul li:last-child {
  margin-bottom: 0;
}
.footer-section .footer-top .footer-inner .links-address-wrapper .links-box .footer-links ul li a {
  color: #9b9b9b;
  transition: 0.3s ease-in-out;
}
.footer-section .footer-top .footer-inner .links-address-wrapper .links-box .footer-links ul li a:hover {
  color: #fff;
}
.footer-section .footer-top .footer-inner .links-address-wrapper .links-box .last-footer-links {
  display: flex;
  flex-direction: row;
  gap: 50px;
}
.footer-section .copyright-section {
  background-color: #0B0B0B;
  padding: 27px 0;
}
.footer-section .copyright-section p {
  margin-bottom: 0;
  text-align: center;
  color: #9B9B9B;
  font-size: 15px;
  font-weight: 500;
}

.map-section .map-inner iframe {
  width: 100%;
  min-height: 500px;
}

.return-top {
  background-color: #140D5B;
  border: 1px solid #fff;
  color: #fff;
  font-weight: 700;
  text-align: center;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 45px;
  height: 45px;
  text-transform: uppercase;
  line-height: 48px;
  display: none;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  -moz-transition: all 0.35s;
  -ms-transition: all 0.35s;
}

.return-top i {
  font-size: 20px;
}

.return-top:hover {
  cursor: pointer;
  background: #fff;
  color: #140D5B;
  border-color: #140D5B;
}

.product-details-section {
  margin: 70px 0;
}
.product-details-section .product-details-inner {
  padding: 0 12px;
}
@media (max-width: 767px) {
  .product-details-section .product-details-inner {
    padding: 0;
  }
}
.product-details-section .product-details-inner .top-section {
  display: grid;
  grid-template-columns: 252px 1fr;
  gap: 20px;
  align-items: center;
}
@media (max-width: 767px) {
  .product-details-section .product-details-inner .top-section {
    grid-template-columns: 1fr;
  }
}
.product-details-section .product-details-inner .top-section .left-image-wrapper img {
  width: 100%;
  border: 1px solid #140D5B;
  max-width: 252px;
}
.product-details-section .product-details-inner .top-section .right-content .heading-title {
  color: #151515;
  font-weight: 700;
  font-size: 27px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .product-details-section .product-details-inner .top-section .right-content .heading-title {
    font-size: 22px;
    margin-bottom: 10px;
  }
}
.product-details-section .product-details-inner .top-section .right-content p {
  color: #54595F;
  margin-bottom: 20px;
}
.product-details-section .product-details-inner .top-section .right-content .download-button-link {
  display: block;
  width: fit-content;
  background-color: #140D5B;
  font-size: 15px;
  padding: 8.5px 24px;
  border-radius: 3px;
  text-align: center;
  transition: 0.2s ease-in-out;
  color: #fff;
}
.product-details-section .product-details-inner .top-section .right-content .download-button-link:hover {
  background-color: #A60100;
}
.product-details-section .product-details-inner .bottom-image-section {
  margin-top: 20px;
}
.product-details-section .product-details-inner .bottom-image-section .image-wrapper {
  text-align: center;
}
.product-details-section .product-details-inner .bottom-image-section .image-wrapper img {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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