html, body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #626262;
}

/******************/
/* COMPONENT */
/******************/
a {
  text-decoration: none;
  color: #4380AF;
  transition: all 0.3s ease;
}

.primary-colour {
  color: #4380AF;
}

.text-white-80 {
  color: rgba(255, 255, 255, 0.8) !important;
}

.bg-blue {
  background-color: #146083;
}

.bg-light-blue {
  background-color: #e7f5fb;
}

.bg-white {
  background-color: #fff;
}

.section-title-block {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.section-title-block .title-text {
  font-weight: 500;
  color: #616161;
}
.section-title-block .sub-text {
  font-weight: 700;
  color: #404040;
}

.fs-12 {
  font-size: 12px;
}

.PullUp-80 {
  margin-top: -80px;
  padding-top: 100px;
}

.btn-arrow {
  position: relative;
  display: inline-block;
  padding-right: 20px;
  color: #4380AF;
  font-size: 14px;
  font-weight: 400;
}
.btn-arrow:after {
  content: "";
  height: 9px;
  width: 22px;
  background-size: contain;
  background: url(../images/arrow-right.svg) no-repeat center right/contain;
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.btn-arrow:hover {
  color: #333333;
}
.btn-arrow:hover:after {
  right: -15px;
}

.card .card-body .card-text {
  color: #9c9c9c;
  font-size: 0.9rem;
}

.owl-carousel .owl-stage-outer .owl-stage .owl-item {
  height: 300px;
  width: 300px;
  overflow: hidden;
}
.owl-carousel .owl-stage-outer .owl-stage .owl-item .item {
  padding: 15px;
}
.owl-carousel .owl-stage-outer .owl-stage .owl-item .item .item-image {
  -o-object-fit: cover;
     object-fit: cover;
  height: 300px;
  width: 300px;
}
.owl-carousel .owl-stage-outer .owl-stage .owl-item:hover {
  opacity: 0.8;
}
.owl-carousel .owl-nav {
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  bottom: calc(50% - 50px);
  z-index: 10;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  background: transparent;
  width: 50px;
  border: none;
  font-size: 50px;
  color: #cccccc;
  transition: all 0.3s ease;
  margin-left: -60px;
  margin-right: -60px;
  pointer-events: visible;
}
.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
  background: transparent;
  color: #333;
}
.owl-carousel .owl-dots {
  display: block;
  margin-top: 15px;
}

.bg-deco-top {
  width: 100%;
  height: 1px;
  position: relative;
}
.bg-deco-top:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background: url(../images/bg-deco-top.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom left;
}

.bg-deco-bottom {
  width: 100%;
  height: 1px;
  position: relative;
}
.bg-deco-bottom:before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: calc(100vh - 380px);
  background: url(../images/bg-deco-bottom.svg);
  background-size: cover;
  background-repeat: no-repeat;
}

.lb-data .lb-number {
  margin-top: 20px;
}

.lb-dataContainer {
  transform: translateY(-100%);
  position: relative;
  z-index: 10;
  padding: 5px;
}
.lb-dataContainer .lb-data .lb-details {
  margin-top: 0px;
  padding: 20px;
  padding-top: 3px;
  float: inherit;
  width: 100%;
  background: rgba(0, 0, 0, 0.5215686275);
}
.lb-dataContainer .lb-data .lb-details .lb-caption {
  font-weight: inherit;
}
.lb-dataContainer .lb-data .lb-details .lb-caption label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin: 20px 0px 10px 0px;
  color: #fff;
}
.lb-dataContainer .lb-data .lb-details .lb-caption label:first-child {
  font-size: 18px;
}
.lb-dataContainer .lb-data .lb-closeContainer {
  padding: 15px;
  position: absolute;
  right: 7px;
  top: 2px;
}

/******************/
/* LAYOUT */
/******************/
body.Home-PG .Header-Section {
  margin-bottom: -100px;
  background-color: rgba(0, 0, 0, 0.5176470588);
}

.Header-Section {
  width: 100%;
  height: 100px;
  background-color: #000;
  position: relative;
  top: 0;
  left: 0;
  z-index: 9999;
}
.Header-Section .logo {
  width: 170px;
  margin: 0 auto;
  border: 1px solid #525252;
  margin-top: 20px;
  box-shadow: 1px 1px 20px 0px rgba(255, 255, 255, 0.2392156863);
}
.Header-Section .navigation-wrap ul {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
}
.Header-Section .navigation-wrap ul li {
  display: inline-block;
  margin: 0 15px;
}
.Header-Section .navigation-wrap ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 200;
  text-transform: uppercase;
}
.Header-Section .navigation-wrap ul li a:hover {
  color: #4380AF;
}

.Footer-Section {
  width: 100%;
  background-color: #000;
}
.Footer-Section .footer-content {
  padding: 20px 0;
  text-align: center;
}
.Footer-Section .footer-content p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 0;
  opacity: 0.5;
}

@media screen and (max-width: 768px) {
  body.Home-PG .Header-Section {
    background-color: #000;
  }
  body .Header-Section {
    height: auto;
    position: relative;
    margin-bottom: 0px;
    background-color: #000;
  }
  body .Header-Section .logo {
    width: 110px;
  }
  body .Header-Section .navigation-wrap ul li a {
    font-size: 1rem;
  }
}
/******************/
/* HOME SECTIONS */
/******************/
.Mainbanner-Section .kb_wrapper {
  height: calc(100vh - 0px);
  width: 100%;
  max-height: inherit;
}
.Mainbanner-Section .kb_wrapper .kb_caption h1 {
  color: #4380AF;
  background: #fff;
}
.Mainbanner-Section .kb_wrapper .carousel-inner .item img {
  transform-origin: 100% 100%;
}
.Mainbanner-Section .carousel-caption {
  z-index: 10;
}
.Mainbanner-Section .taglines-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 111;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.Mainbanner-Section .taglines-wrap h2 {
  background: rgba(255, 255, 255, 0.8705882353);
  padding: 10px 20px;
  text-align: center;
  margin-top: 80px;
}
.Mainbanner-Section .backdrop-filter {
  background: linear-gradient(32deg, rgba(0, 0, 0, 0.39) 0%, rgba(0, 170, 255, 0.15) 53%, rgba(0, 255, 235, 0.38) 100%);
  height: 100vh;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .Mainbanner-Section .kb_wrapper {
    height: auto;
  }
  .Mainbanner-Section .taglines-wrap {
    position: relative;
    height: inherit;
    display: block;
    margin: 0;
  }
  .Mainbanner-Section .taglines-wrap h2 {
    font-size: 16px;
    margin: 0;
  }
}

.WhatWeDo-Section {
  display: block;
}

.OurCompany-Section {
  display: block;
}
.OurCompany-Section .company-logos .item-logo .logo-img {
  width: 210px;
  height: 210px;
  background-color: #fff;
  display: flex;
  align-items: center;
}
.OurCompany-Section .company-logos .item-logo label {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #616161;
}

.About-Section {
  display: block;
}

/******************/
/* CONTACT SECTIONS */
/******************/
.Contact-Section {
  background: #104E6B;
  background: linear-gradient(32deg, rgb(16, 78, 107) 0%, rgb(3, 18, 25) 100%);
  position: relative;
}
.Contact-Section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  z-index: 1;
  background: url("../images/contact-bg-dark.svg") no-repeat;
  background-position: 83%;
  background-size: 350px;
}

/******************/
/* SUB PAGES SECTIONS */
/******************/
.TopBanner-Section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-shadow: 1px 1px 5px #000;
}
.TopBanner-Section::after {
  content: "";
  opacity: 0.8;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #104E6B;
  background: linear-gradient(160deg, rgb(16, 78, 107) 0%, rgb(3, 18, 25) 100%);
}
.TopBanner-Section h1 {
  font-size: 3.8rem;
  font-weight: 100;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.Management-Section .deco-box {
  background: url(../images/square-blue-box.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  overflow: hidden;
}
.Management-Section .deco-box .short-name {
  font-size: 20vw;
  color: rgba(255, 255, 255, 0.05);
  font-weight: 900;
  line-height: 200px;
  font-size: 17em;
  container-name: sidebar;
}
@container sidebar (min-width: 700px) {
  .Management-Section .deco-box .short-name {
    font-size: 2em;
  }
}
.Management-Section .section-title .name-text {
  font-size: 2.2rem;
  font-weight: 100;
  color: #146083;
  text-transform: uppercase;
}
.Management-Section .section-title .title-text {
  font-size: 1rem;
  font-weight: 400;
  color: #146083;
  text-transform: uppercase;
  margin-bottom: 20px;
}/*# sourceMappingURL=mainstyle.css.map */