@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
  --pri-color: #00008b;
  --sec-color: #0878be;
  --black: #232323;
  --light-blue: #0a2344;
  --grey: #6e6e6e;
}
* {
  box-sizing: border-box;
}
::selection {
  background-color: var(--pri-color);
  color: #fff;
}
html,
body {
  font-family: "Barlow" !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Barlow";
}
a {
  text-decoration: none;
}
.text-pri {
  color: var(--pri-color);
}
.text-sec {
  color: var(--sec-color);
}
.text-black {
  color: var(--black);
}
.text-black-light {
  color: var(--light-balck);
}
.text-grey {
  color: var(--grey);
}
button[type="button"]:focus,
button[type="submit"]:focus {
  box-shadow: none;
}
.text-100 {
  font-weight: 100 !important;
}
.text-200 {
  font-weight: 200 !important;
}
.text-300 {
  font-weight: 300 !important;
}
.text-400 {
  font-weight: 400 !important;
}
.text-500 {
  font-weight: 500 !important;
}
.text-600 {
  font-weight: 600 !important;
}
.text-700 {
  font-weight: 700 !important;
}
.text-800 {
  font-weight: 800 !important;
}
.text-900 {
  font-weight: 900 !important;
}
.bg-pri {
  background-color: var(--pri-color);
}
.bg-sec {
  background-color: var(--sec-color);
}
.btn-pri {
  background-color: var(--pri-color);
  color: #fff;
}
.btn-pri:hover {
  background-color: transparent;
  border-color: var(--pri-color);
  color: var(--pri-color);
}
.btn-outline-pri {
  border-color: var(--pri-color);
  color: var(--pri-color);
}
.btn-outline-pri:hover {
  background-color: var(--pri-color);
  color: #fff;
}
.border-pri {
  border-color: var(--pri-color);
}
.btn-shadow {
  box-shadow: 3px 3px var(--pri-color);
  transition: all 0.4s;
}
.btn-shadow:hover {
  box-shadow: 0 0 var(--pri-color);
}

/* Header */
.navbar-brand img {
  transition: all 0.4s;
}
.header-topbar {
  position: relative;
  display: block;
  background-color: var(--pri-color);
}
.topbar-items {
  display: flex;
  padding: 8px 0;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  text-align: center;
}
.topbar-items .topbar-item {
  font-size: 14px;
  text-align: center;
}
.topbar-item.icons .footer-link-text {
  font-size: 17px;
  margin: 0 8px;
}
.site-header .app-navbar.navbar {
  transition: all 0.4s;
  background-color: #fff;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}
.site-header .app-navbar.navbar.is-sticky {
  position: fixed;
}
.navbar-brand img {
  max-width: 200px;
  margin: auto;
}
#navbarNav {
  justify-content: flex-end;
}
#navbarNav .nav-link {
  position: relative;
  transition: all 0.4s;
  color: var(--light-balck);
  margin: 0 5px;
}
#navbarNav .nav-link:not(.dropdown-toggle)::after {
  position: absolute;
  bottom: -15%;
  left: 50%;
  color: transparent;
  content: "•";
  text-shadow: 0 0 transparent;
  font-size: 16px;
  line-height: 1;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  pointer-events: none;
  text-align: center;
}
#navbarNav .nav-link.active,
#navbarNav .nav-link:hover {
  color: var(--pri-color);
}
#navbarNav .dropdown-menu.show {
  /* transition: all 0.4s; */
  animation: slideUp 0.3s 1;
}
@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
  }
  to {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
}
#navbarNav .dropdown-item {
  transition: all 0.4s;
}
#navbarNav .dropdown-item:hover,
#navbarNav .dropdown-item.active {
  color: #fff;
  background-color: var(--pri-color);
}
#navbarNav .nav-link:hover::after,
#navbarNav .nav-link.active::after {
  color: var(--pri-color);
  text-shadow: 10px 0 var(--pri-color), -10px 0 var(--pri-color);
}
.hamburger .hamburger-bar {
  position: relative;
  display: block;
  width: 30px;
  height: 2px;
  margin: 7px 0;
  background-color: var(--pri-color);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.hamburger[aria-expanded="true"] .hamburger-bar.first {
  transform: rotate(45deg);
  transform-origin: 2px 0px;
}
.hamburger[aria-expanded="true"] .hamburger-bar.middle {
  opacity: 0;
  visibility: hidden;
}
.hamburger[aria-expanded="true"] .hamburger-bar.last {
  transform: rotate(-45deg);
  transform-origin: 2px 02px;
}

/* Section with image */
.sec-assur-col.assur-col-img {
  position: relative;
  overflow: hidden;
}
.sec-assur-col.assur-col-img img {
  transition: all 0.4s;
}
.sec-assur-col.assur-col-img:hover img {
  transform: scale(1.05);
}

/* SECTION TESTIMONIALS */
.testimonials-sec {
  position: relative;
  background: url("../images/banner2.png");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
}
.testimonials-sec::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background-color: #0878bed6;
}
.testimo-main-row {
  align-items: center;
}
.testimonials-sec .wrap-testimonials {
  position: relative;
  z-index: 10;
}
.wrap-testimo-slide {
  position: relative;
  padding: 20px;
}
.wrap-testimo-slide-inr {
  position: relative;
  display: block;
  padding: 30px;
  background-color: #fff;
  border-radius: 10px;
  background-image: url("../images/quote-left.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 150px;
}
.testimo-slide-quote {
  margin: 20px auto;
}
.testimo-client {
  position: relative;
  display: flex;
  align-items: center;
}
.testimo-client-img {
  position: relative;
  display: block;
  max-width: 80px;
  max-height: 80px;
}
.testimo-client-img img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.testimo-client-info {
  position: relative;
  display: block;
  margin-left: 20px;
  text-align: center;
}
.testimo-client-info .testinmo-client-desig {
  font-size: 14px;
}
.wrap-testimo-slides .slick-dots li button::before {
  font-size: 30px;
  width: 30px;
  height: 30px;
}
.wrap-testimo-slides .slick-dots li.slick-active button::before {
  opacity: 0.75;
  color: #fff;
}
/* SECTION TESTIMONIALS ENDS */

/************************** CONTACT US PAGE **************************/
.contact-page .contact-top {
  position: relative;
  background: url("../images/bg-contact.png") center no-repeat;
  background-size: cover;
}
.contact-page .contact-top::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background-color: rgba(8, 120, 190, 0.7);
}
.contact-top .contact-top-inr {
  position: relative;
  z-index: 10;
}
.row.contact-row {
  position: relative;
  padding: 50px 10px;
}
.contact-row .contact-col-inr {
  position: relative;
  padding: 30px;
}
.contact-col-inr a {
  word-break: break-all;
}
.contact-info {
  position: relative;
  display: flex;
  margin: 30px auto;
  flex-flow: column wrap;
  align-items: flex-start;
}
.cont-info-item {
  display: block;
  margin: 15px 0;
}
.contact-social-links {
  position: relative;
  display: flex;
  align-items: center;
}
.contact-social-link {
  position: relative;
  display: inline-block;
  margin-right: 10px;
}
.contact-social-link a {
  color: #fff;
  font-size: 20px;
  transition: all 0.4s;
  padding: 13px;
  border-radius: 50%;
  display: inline-block;
  background-color: transparent;
  line-height: 1;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}
.contact-social-link a:hover {
  background-color: #fff;
  color: var(--pri-color);
}
.contact-col-inr form {
  position: relative;
  display: block;
  padding: 30px;
  background-color: #fff;
  border-radius: 10px;
  max-width: 500px;
  margin: 0 auto;
}
.contact-col-inr form .form-control {
  padding: 10px 15px;
  border-color: rgba(0, 0, 139, 0.3);
  color: var(--pri-color);
  box-shadow: 0 0 15px rgba(0, 0, 139, 0.2);
  resize: none;
}
.contact-col-inr form .form-control:focus,
.contact-col-inr form .form-control:hover {
  border-color: var(--pri-color);
}
.contact-col-inr form button[type="submit"] {
  background-color: var(--pri-color);
  padding: 10px 20px;
  transition: all 0.4s;
  border-color: var(--pri-color);
}
.contact-col-inr form button[type="submit"]:hover {
  background-color: #fff;
  color: var(--pri-color);
}
/************************** CONTACT US PAGE ENDS **************************/

/************************** About US PAGE **************************/
.about-page .about-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  background: url("../images/bg-international-partners.png") center no-repeat;
  background-size: cover;
}
.about-top .about-top-inr h1 {
  backdrop-filter: blur(5px);
}
/* .about-page .about-top::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background-color: rgba(8, 120, 190, 0.7);
} */
.about-top .about-top-inr {
  position: relative;
  z-index: 10;
}
.about-mission-inr {
  padding: 50px 10px;
  position: relative;
}
.mission-top {
  max-width: 850px;
  margin-right: auto;
  margin-left: auto;
}
.mission-top h3 {
  background-image: linear-gradient(
    to right,
    var(--pri-color),
    var(--pri-color)
  );
  background-position: center;
  background-size: 70% 3px;
  background-repeat: no-repeat;
  margin-bottom: 15px;
}
.mission-top h3 span {
  position: relative;
  padding: 0 20px;
  background-color: #fff;
}
.row.mission-cont-row {
  margin: 30px auto;
}
.mission-cont-col {
  position: relative;
  padding: 15px;
}
.mission-cont-col .mc-col-inr {
  position: relative;
  background: #fff;
  border-radius: 10px;
}
/************************** About US PAGE ENDS **************************/

/************************** Equipment PAGE **************************/
.equip-cols .equip-col-inr {
  position: relative;
  overflow: hidden;
}
.eq-col-img-shown,
.eq-col-img-hover {
  transition: all 0.4s;
}
.eq-col-img-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}
.equip-col-show-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: space-around;
  background-color: transparent;
  color: #fff;
  transition: all 0.3s cubic-bezier(1, 0, 0, 1);
  transform: translateY(100%);
  visibility: hidden;
  opacity: 0;
}
.equip-col-show-hover > * {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  transition-delay: 0.3s;
  transform: translateY(30px);
}
.equip-col-inr:hover .equip-col-show-hover {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
  background-color: rgba(8, 120, 190, 0.7);
}
.equip-col-inr:hover .equip-col-show-hover > * {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
/* hide the shown image on hover */
.equip-col-inr:hover .eq-col-img-shown {
  opacity: 0;
  visibility: hidden;
}
/* show the hidden image on hover */
.equip-col-inr:hover .eq-col-img-hover {
  opacity: 1;
  visibility: visible;
}
/************************** Equipment PAGE ENDS **************************/

/************************** International Partners PAGE **************************/
.partners-page .main-title {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: auto;
  text-align: center;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(5px);
}
.divider {
  position: relative;
  display: block;
  width: 10%;
  height: 3px;
  margin: 10px auto;
  background-color: var(--pri-color);
}
/************************** International Partners PAGE ENDS **************************/

/************************** Products PAGE **************************/
.wrap-prod-img {
  max-height: 250px;
  overflow: hidden;
}
.prod-img {
  transition: all 0.4s;
  z-index: 1;
}
.prod-img.hover-shown {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
}
.prod-col-inr:hover .prod-img.hover-shown {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.prod-col-inr:hover .prod-img.hover-hidden {
  opacity: 0;
  visibility: hidden;
}
.product-links {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 20px;
  height: 0;
  background-color: rgba(8, 120, 190, 0.8);
  transition: all 0.4s;
  display: flex;
  flex-flow: column wrap;
  align-items: flex-start;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  gap: 10px;
}
.prod-col-inr:hover .product-links {
  height: 100%;
  z-index: 3;
  visibility: visible;
  opacity: 1;
  padding: 20px;
}
/************************** Products PAGE ENDS **************************/

/* footer */
.footer-links-col-inr {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-flow: column;
}
.footer-links-col-inr .ftr-col-anch {
  transition: all 0.4s;
}
.footer-links-col-inr .ftr-col-anch:hover {
  color: var(--sec-color) !important;
}
.wrap-footer-links.p-3 {
  background-color: #e4e4e4;
}
.wrap-iso-logo .qmsuk-badge-img-container img {
  width: 100%;
}
.wrap-copyright {
  position: relative;
  display: block;
  background-color: var(--light-blue);
  /* padding: 20px; */
  margin: auto;
}
.wrap-copyright .row {
  align-items: center;
  justify-content: center;
}
.wrap-copyright .copyright-txt a {
  transition: all 0.4s;
}
.wrap-copyright .copyright-txt a:hover {
  color: var(--pri-color) !important;
}
.footer-social-links .footer-link-text {
  font-size: 20px;
  transition: all 0.4s;
}
.footer-social-links .footer-link-text:hover {
  color: var(--sec-color) !important;
}

@media screen and (max-width: 991px) {
  .topbar-items {
    justify-content: space-around;
  }
  #navbarNav .nav-link {
    padding-left: 10px;
  }
  #navbarNav .nav-link.active,
  #navbarNav .nav-link:hover {
    color: var(--pri-color);
    border: none;
    background-image: linear-gradient(
      to right,
      var(--pri-color),
      var(--pri-color)
    );
    background-repeat: no-repeat;
    background-size: 3px 85%;
    background-position: 0 center;
  }
  #navbarNav .nav-link:not(.dropdown-toggle)::after {
    content: none;
  }
  #navbarNav {
    margin: 10px auto;
  }
}

@media screen and (min-width: 960px) {
  .col-lg-5 {
    width: 20%;
  }
}
@media screen and (max-width: 600px) {
  .navbar-brand img {
    max-width: 150px;
    margin: auto;
  }

  .contact-row .contact-col-inr {
    position: relative;
    padding: 10px 0;
  }
  .contact-col-inr form button[type="submit"] {
    width: 100%;
  }
}
