@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
.font-extralight {
  font-weight: 200;
}

.font-light {
  font-weight: 300;
}

.font-regular {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

.font-black {
  color: #000;
}

.background-black {
  background: #000;
}

.font-white {
  color: #fff;
}

.background-white {
  background: #fff;
}

.font-red {
  color: #aa0607;
}

.background-red {
  background: #aa0607;
}

.font-gray {
  color: #828282;
}

.background-gray {
  background: #828282;
}

.font-darkgray {
  color: #18191b;
}

.background-darkgray {
  background: #18191b;
}

.font-primary {
  color: #0f4db4;
}

.background-primary {
  background: #0f4db4;
}

.font-lightprimary {
  color: #1268f5;
}

.background-lightprimary {
  background: #1268f5;
}

.font-lightgray {
  color: #e7eefa;
}

.background-lightgray {
  background: #e7eefa;
}

.font-lightgradient {
  color: linear-gradient(270deg, #e9defa 0%, rgba(251, 252, 219, 0.5) 100%);
}

.background-lightgradient {
  background: linear-gradient(270deg, #e9defa 0%, rgba(251, 252, 219, 0.5) 100%);
}

.font-bodytext {
  color: #444444;
}

.background-bodytext {
  background: #444444;
}

body {
  -webkit-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
  font-family: "Lato", sans-serif;
  font-size: 15px;
  font-weight: 400;
}

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

h1 {
  font-size: 45px;
}

a {
  text-decoration: none;
}

p {
  font-size: clamp(0.9rem, 1.1vw, 1.1rem);
  line-height: 150%;
  letter-spacing: 0.01rem;
  color: #444444;
}

.list-items li {
  position: relative;
  padding-left: 20px;
}
.list-items li:before {
  content: "";
  width: 10px;
  height: 10px;
  background: #0f4db4;
  position: absolute;
  left: 0;
  top: 7px;
  border-radius: 50px;
}

.default-btn, .color-border-btn, .color-btn {
  font-size: 16px;
  text-align: center;
  padding: 10px 30px;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  position: relative;
  text-transform: uppercase;
  display: inline-block;
}
.default-btn:after, .color-border-btn:after, .color-btn:after {
  content: "\e90f";
  font-family: "icomoon" !important;
  font-size: 12px;
  position: relative;
  left: 5px;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.color-btn {
  background: #0f4db4;
  color: #fff;
}
.color-btn:hover {
  background: #0b3985;
  color: #fff;
}
.color-btn:hover:after {
  left: 8px;
}

.color-border-btn {
  background: #fff;
  color: #000;
  border: 1px solid #000;
}
.color-border-btn:hover {
  background: #0f4db4;
  color: #fff;
}

.header.fixed-top {
  background: #fff;
  box-shadow: 2px 2px 10px #828282;
  -moz-box-shadow: 2px 2px 10px #828282;
  -webkit-box-shadow: 2px 2px 10px #828282;
  -ms-box-shadow: 2px 2px 10px #828282;
  padding: 2px 0;
}
.header.fixed-top .navbar-brand img {
  width: 150px;
}

@media (max-width: 992px) {
  .bsnav-mobile .nav-item .nav-link {
    padding: 10px 12px !important;
    border-bottom: 1px dashed #828282;
    display: block;
    width: 100%;
  }
}
.bsnav-mobile .nav-item .active {
  padding: 10px 12px !important;
  border-bottom: 1px dashed #828282;
  display: block;
  width: 100%;
  background: #0f4db4;
  color: #fff;
}

header {
  padding: 10px 0;
  background: #fff;
}
header .navbar-toggler:focus {
  box-shadow: none;
}
header .navbar-brand img {
  width: 187px;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
header .bsnav {
  background: none;
}
header .bsnav .nav-item .nav-link {
  text-transform: uppercase;
  font-weight: 700;
  padding: 10px 15px;
}
header .bsnav .nav-item .active {
  padding: 10px 15px;
  display: block;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  background: #073f9a;
  border-radius: 10px;
}
header .bsnav .dropdown .navbar-nav {
  background: #0f4db4;
  border-radius: 10px;
}
header .contact-link {
  color: #fff !important;
}

.swiper-container {
  width: 100%;
}

.swiper-slide {
  /* Center slide text vertically */
  justify-content: center;
  align-items: center;
}

.homeSlider .home-swiper {
  width: 100%;
  height: 75vh;
}
@media (max-width: 992px) {
  .homeSlider .home-swiper {
    height: 100%;
  }
}
.homeSlider .home-swiper .swiper-slide {
  position: relative;
}
.homeSlider .home-swiper .swiper-slide .bannerimage {
  position: relative;
  z-index: 10;
  height: 75vh;
  width: 100%;
}
@media (max-width: 992px) {
  .homeSlider .home-swiper .swiper-slide .bannerimage {
    height: 100%;
  }
}
.homeSlider .home-swiper .swiper-slide .bannerimage img {
  width: 100%;
  height: 100%;
}
.homeSlider .home-swiper .swiper-slide article {
  position: absolute;
  z-index: 10;
  bottom: 0;
  left: 5%;
  width: 100%;
}
@media (max-width: 992px) {
  .homeSlider .home-swiper .swiper-slide article {
    left: 0%;
  }
}
.homeSlider .home-swiper .swiper-slide article h2 {
  font-size: clamp(0.7rem, 1.5vw, 1.5rem);
  line-height: 150%;
  background: #0f4db4;
  padding: 5px 15px;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 700;
}
.homeSlider .swiper-pagination-bullet {
  background: #fff;
}
.homeSlider .swiper-pagination-bullet {
  opacity: 1;
  width: 5px;
  height: 5px;
}
.homeSlider .swiper-pagination-bullet-active {
  width: 4px;
  height: 30px;
  border-radius: 0;
  background: #0f4db4;
}
.homeSlider .swiper-button-next,
.homeSlider .swiper-button-prev {
  width: 50px;
  height: 50px;
  background: #0f4db4;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .homeSlider .swiper-button-next,
  .homeSlider .swiper-button-prev {
    width: 30px;
    height: 30px;
  }
}
.homeSlider .swiper-button-next:after,
.homeSlider .swiper-button-prev:after {
  display: none;
}
.homeSlider .swiper-button-next .icomoon,
.homeSlider .swiper-button-prev .icomoon {
  font-size: 20px;
  color: #fff;
}
.homeSlider .swiper-button-next:hover,
.homeSlider .swiper-button-prev:hover {
  background: #072556;
}

.home-section {
  padding-top: 50px;
}

.title-section .h2 {
  font-size: clamp(1.3rem, 2vw, 2rem);
}

.title-decoration {
  position: relative;
}
.title-decoration:before {
  content: "";
  width: 70px;
  height: 3px;
  background: #0f4db4;
  position: absolute;
  top: -10px;
  left: 0;
}

.servicesrow .col-md-3:nth-child(1) .column {
  background: #fff1fa;
}
.servicesrow .col-md-3:nth-child(2) .column {
  background: #ffe9f7;
}
.servicesrow .col-md-3:nth-child(3) .column {
  background: #fffaed;
}
.servicesrow .col-md-3:nth-child(4) .column {
  background: #ffecec;
}
.servicesrow .column {
  box-shadow: 3px 3px 0px 3px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .servicesrow .column {
    margin-bottom: 15px;
  }
}
.servicesrow .column h3 {
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  min-height: 4rem;
}
.servicesrow .column p {
  font-size: 14px;
}
.servicesrow .column .icon {
  margin-bottom: 60px;
}
.servicesrow .column .icon .icomoon {
  font-size: clamp(2.5rem, 3vw, 3rem);
}

.core-values {
  background: linear-gradient(270deg, rgba(248, 207, 106, 0.43) 0%, rgba(33, 120, 221, 0.49) 100%);
}
.core-values .leftarticle {
  width: 125%;
  position: relative;
  z-index: 999;
}
@media (max-width: 768px) {
  .core-values .leftarticle {
    width: 100%;
  }
}

.home-products .products-home-swiper {
  padding-bottom: 50px;
}
.home-products .swiper-slide {
  box-shadow: 3px 3px 0px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
  text-align: center;
  height: 250px;
}
.home-products .swiper-slide img {
  width: 120px;
}

.home-quality-policy {
  background: url(../img/home-policybg.jpg) no-repeat 0 0;
  background-size: cover;
  min-height: 250px;
  position: relative;
  padding: 100px 0;
  color: #fff;
}
.home-quality-policy .title-decoration:before {
  background: #fff;
}
.home-quality-policy:before {
  content: "";
  opacity: 0.75;
  background: linear-gradient(180deg, #020344 0%, #28b8d5 100%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.home-quality-policy .container {
  position: relative;
  z-index: 99;
}
.home-quality-policy .container h5 {
  font-size: clamp(1.3rem, 1.6vw, 1.6rem);
}

footer {
  background: #0f4db4;
  color: #fff;
}
footer .moveTop {
  width: 40px;
  height: 40px;
  position: fixed;
  bottom: 50px;
  right: 5px;
  display: inline-block;
  line-height: 53px;
  text-align: center;
  background: #0f4db4;
  z-index: 9999;
  text-decoration: none;
  border-radius: 50px;
}
footer .moveTop:hover {
  background: #072556;
}
footer .moveTop .icomoon {
  color: #fff;
  font-size: 30px;
}
footer .top-footer {
  padding: 15px 0;
}
footer .top-footer .footerlink {
  padding: 0.5rem;
  display: block;
  color: #fff;
  text-decoration: underline;
}
footer .top-footer .footer-social a {
  display: inline-block;
  text-align: center;
  padding: 10px;
}
footer .top-footer .footer-social a .icomoon {
  font-size: 20px;
  color: #fff;
}
footer .nav-link {
  color: #fff;
}
footer .nav-link:hover,
footer .nav-link .footerlink {
  color: #fff;
  text-decoration: underline;
}
footer .bottom-footer {
  background: #0b3985;
  padding: 15px 0;
}
footer .bottom-footer p {
  font-size: 14px;
  color: #fff;
}

.subpage-main .subpage-header {
  background-image: linear-gradient(to top, #0f4db4 0%, #1268f5 100%);
  padding: 75px 0;
}
@media (max-width: 768px) {
  .subpage-main .subpage-header {
    padding: 25px 0;
  }
}
.subpage-main .subpage-header .h1 {
  font-size: clamp(1.4rem, 3vw, 3rem);
}
.subpage-main .sibpage-main {
  min-height: 400px;
  padding: 50px 0;
}
.subpage-main .sibpage-main h2 {
  font-size: clamp(1.3rem, 2.2vw, 2.2rem);
  padding-bottom: 15px;
}
.subpage-main .sibpage-main h6 {
  color: #444444;
  font-size: clamp(0.85rem, 1vw, 1rem);
  letter-spacing: 3px;
}

.pagelist li {
  margin-right: 15px;
  margin-bottom: 10px;
  color: #444444;
}

.contactForm {
  width: 100%;
}
.contactForm .brdlink {
  background: #0f4db4;
  color: #fff;
}

.contactDetailsRow {
  padding-bottom: 75px;
}
.contactDetailsRow .contactCol .icomoon {
  font-size: 60px;
  color: #0f4db4;
}

.table thead tr th {
  background: #0f4db4;
  color: #fff;
}

#contact_form .form-group {
  margin-bottom: 1rem;
}
#contact_form .form-group .form-control {
  border-radius: 0;
  padding: 10px;
}
#contact_form .form-group .form-control:focus {
  box-shadow: none;
  border: 1px solid #0f4db4;
}

.text-danger {
  font-size: 12px;
}

.enquiryform .form-group {
  margin-bottom: 1rem;
}
.enquiryform .form-group .form-control {
  border-radius: 0;
  padding: 10px;
}
.enquiryform .form-group .form-control:focus {
  box-shadow: none;
  border: 1px solid #0f4db4;
}

#load {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 9999;
}

.button-div-products {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 2px 2px 10px #828282;
  -moz-box-shadow: 2px 2px 10px #828282;
  -webkit-box-shadow: 2px 2px 10px #828282;
  -ms-box-shadow: 2px 2px 10px #828282;
}

.button-div-products.highlight-div {
  position: inherit;
  box-shadow: none;
  left: auto;
  right: auto;
  bottom: auto;
}/*# sourceMappingURL=style.css.map */