@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap"); /*--------------------------------------------------------------
# base
--------------------------------------------------------------*/
::-moz-selection {
  color: #072136;
  background: #0C3C60;
}
::selection {
  color: #072136;
  background: #0C3C60;
}

html {
  scroll-padding-top: 30px;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: #fff;
  color: #000;
  font-size: 14px;
  line-height: 1.6;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  text-decoration: none;
}
a:hover {
  color: #0C3C60;
}
a:focus, a:hover {
  text-decoration: none;
}

section {
  overflow: hidden;
}

i,
span,
a {
  display: inline-block;
}

audio,
img,
svg,
video {
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: #072136;
  font-weight: 400;
}

p {
  margin: 0;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

.error {
  color: #ff4500;
}

.success {
  color: green;
}

.scroll-top {
  width: 35px;
  height: 35px;
  background-color: #000;
  color: #fff;
  font-size: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  display: none;
}
.scroll-top:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  color: #fff;
}

/*--------------------------------------------------------------
  ##  Page Loader
  --------------------------------------------------------------*/
.page-loader {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 99999999;
  background-color: #fff;
}
.page-loader .loader {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
}
.page-loader .loader:after {
  content: "";
  position: absolute;
  inset: 8px;
  margin: auto;
  background: #0C3C60;
  -webkit-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.62);
          box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.62);
  border-radius: 50%;
}
.page-loader .loader:before {
  content: "";
  position: absolute;
  inset: 0px;
  margin: auto;
  background-color: #DAE6FC;
  -webkit-animation: crlMugLoader 2s linear infinite alternate;
          animation: crlMugLoader 2s linear infinite alternate;
}

@-webkit-keyframes crlMugLoader {
  0%, 10% {
    -webkit-transform: translateY(64px);
            transform: translateY(64px);
  }
  90%, 100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes crlMugLoader {
  0%, 10% {
    -webkit-transform: translateY(64px);
            transform: translateY(64px);
  }
  90%, 100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
.btn-outline {
  text-decoration: none;
  border: 1px solid #0C3C60;
  color: #0C3C60;
  font-size: 15px;
  text-align: center;
  padding: 11px 30px;
  font-weight: 500;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.btn-outline:hover {
  background-color: #0C3C60;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .btn-outline {
    font-size: 15px;
    padding: 11px 26px;
  }
}

.btn-solid {
  text-decoration: none;
  border: 1px solid #0C3C60;
  color: #fff;
  background-color: #0C3C60;
  font-size: 15px;
  text-align: center;
  padding: 11px 30px;
  font-weight: 500;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.btn-solid:hover {
  background-color: transparent;
  color: #0C3C60;
}
@media only screen and (max-width: 767px) {
  .btn-solid {
    font-size: 15px;
    padding: 11px 26px;
  }
}

.btn-white {
  text-decoration: none;
  border: 1px solid #fff;
  background-color: #fff;
  color: #0C3C60;
  font-size: 15px;
  text-align: center;
  padding: 11px 30px;
  font-weight: 500;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.btn-white:hover {
  background-color: #0C3C60;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .btn-white {
    font-size: 15px;
    padding: 11px 26px;
  }
}

/*--------------------------------------------------------------
# navbar
--------------------------------------------------------------*/
.navbar-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  background-color: #0C3C60;
}

.navbar {
  padding: 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 10px 0;
}
@media (max-width: 991px) {
  .navbar {
    padding: 8px 0;
  }
}
@media (max-width: 767px) {
  .navbar {
    padding: 8px 0;
  }
}
.navbar .navbar-brand {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  color: #fff;
  font-weight: 400;
  padding: 0;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
@media only screen and (max-width: 991px) {
  .navbar .navbar-brand {
    color: #fff;
  }
}
.navbar .navbar-brand img {
  height: 40px;
  margin-right: 4px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 1299px) {
  .navbar .navbar-brand img {
    height: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .navbar .navbar-brand img {
    height: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .navbar .navbar-brand img {
    height: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .navbar .navbar-brand {
    font-size: 20px;
  }
}
@media only screen and (max-width: 482px) {
  .navbar .navbar-brand {
    font-size: 16px;
  }
}
.navbar .navbar-nav .nav-item {
  position: relative;
  margin-left: 28px;
}
.navbar .navbar-nav .nav-item:first-child {
  margin-left: 0;
}
@media only screen and (max-width: 991px) {
  .navbar .navbar-nav .nav-item {
    margin-left: 0;
  }
}
.navbar .navbar-nav .nav-item a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 10px 0;
  position: relative;
}
.navbar .navbar-nav .nav-item a:hover, .navbar .navbar-nav .nav-item a.active {
  color: #00e755;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar .navbar-nav .nav-item a {
    display: inline-block;
  }
}
@media only screen and (max-width: 991px) {
  .navbar .navbar-nav .nav-item a {
    padding: 2px 0;
    margin: 6px 0px;
    color: #fff;
  }
}
@media only screen and (max-width: 767px) {
  .navbar .navbar-nav .nav-item a {
    display: inline-block;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 9;
    background-color: #072136;
    -webkit-box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.1);
  }
}
@media only screen and (max-width: 991px) {
  .navbar .navbar-collapse {
    padding: 8px 20px 18px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 9;
    background-color: #072136;
    -webkit-box-shadow: 0 15px 20px 0 rgba(43, 56, 109, 0.1);
            box-shadow: 0 15px 20px 0 rgba(43, 56, 109, 0.1);
  }
}
.navbar .navbar-toggler {
  padding: 0;
}
.navbar .navbar-toggler:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.navbar .navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: #fff;
  display: block;
  margin: 5px 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.navbar .navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}
.navbar .navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}
.navbar .navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}

/** Medium devices (tablets, 768px and up) **/
.sticky {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  background-color: #0C3C60;
  -webkit-box-shadow: 0 0.16rem 0.2rem 0 rgba(36, 39, 46, 0.05);
          box-shadow: 0 0.16rem 0.2rem 0 rgba(36, 39, 46, 0.05);
}
.sticky .navbar {
  padding: 10px 0;
}
@media (max-width: 991px) {
  .sticky .navbar {
    padding: 8px 0;
  }
}
@media (max-width: 767px) {
  .sticky .navbar {
    padding: 8px 0;
  }
}
.sticky .navbar .nav-item a {
  color: #fff;
}
.sticky .navbar .navbar-toggler .toggler-icon {
  background-color: #fff;
}

.nav-center {
  /** Large devices (desktops, 992px and up) **/
}
@media (min-width: 992px) {
  .nav-center {
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
  }
}

/*--------------------------------------------------------------
# hero-area
--------------------------------------------------------------*/
.hero-area {
  background-image: url("../img/hero/hero-bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 766px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 991px) {
  .hero-area {
    height: 666px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-area {
    height: 550px;
  }
}
@media only screen and (max-width: 482px) {
  .hero-area {
    height: 450px;
  }
}
.hero-area .text-box {
  max-width: 700px;
  background-color: #fff;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 30px 20px;
}
@media only screen and (max-width: 991px) {
  .hero-area .text-box {
    max-width: 600px;
    padding: 20px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-area .text-box {
    max-width: 450px;
  }
}
@media only screen and (max-width: 482px) {
  .hero-area .text-box {
    max-width: 400px;
  }
}
.hero-area .text-box p {
  font-size: 23px;
  margin-bottom: 14px;
}
@media only screen and (max-width: 991px) {
  .hero-area .text-box p {
    font-size: 21px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-area .text-box p {
    font-size: 19px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 482px) {
  .hero-area .text-box p {
    font-size: 16px;
  }
}
.hero-area .text-box h1 {
  font-size: 60px;
  margin-bottom: 25px;
}
@media only screen and (max-width: 991px) {
  .hero-area .text-box h1 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-area .text-box h1 {
    font-size: 37px;
    margin-bottom: 22px;
  }
}
@media only screen and (max-width: 482px) {
  .hero-area .text-box h1 {
    font-size: 30px;
    margin-bottom: 16px;
  }
}

/*--------------------------------------------------------------
# services
--------------------------------------------------------------*/
.sec-t {
  text-align: center;
}
.sec-t h2 {
  font-size: 40px;
  color: #0C3C60;
  margin-bottom: 36px;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .sec-t h2 {
    font-size: 35px;
    margin-bottom: 28px;
  }
}
@media only screen and (max-width: 482px) {
  .sec-t h2 {
    font-size: 30px;
    margin-bottom: 22px;
  }
}

.services {
  padding: 70px 0px;
  background-color: #fff;
}
@media only screen and (max-width: 991px) {
  .services {
    padding: 50px 0px;
  }
}
@media only screen and (max-width: 767px) {
  .services {
    padding: 40px 0px;
  }
}
.services .row:not(:last-child) .column {
  border-bottom-width: 0;
}
.services .column {
  border: 1px solid rgba(12, 60, 96, 0.2);
}
@media only screen and (max-width: 767px) {
  .services .column {
    border: 0;
  }
}
.services .column:not(:last-child) {
  border-right-width: 0;
}
.services .s-box {
  padding: 30px 30px;
  text-align: center;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (max-width: 767px) {
  .services .s-box {
    padding: 20px 20px;
  }
}
.services .s-box .s-intro {
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  .services .s-box .s-intro {
    margin-bottom: 18px;
  }
}
.services .s-box h4 {
  font-size: 25px;
  margin-bottom: 18px;
}
@media only screen and (max-width: 767px) {
  .services .s-box h4 {
    font-size: 22px;
    margin-bottom: 12px;
  }
}
.services .s-box p {
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .services .s-box p {
    font-size: 14px;
  }
}
.services .s-box .btn-solid {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin-top: auto;
}

.about {
  background-image: url("../img/hero/about-bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  padding: 80px 0px;
  text-align: center;
}
.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(216, 232, 242, 0.9);
}
@media only screen and (max-width: 991px) {
  .about {
    padding: 50px 0px;
  }
}
@media only screen and (max-width: 767px) {
  .about {
    padding: 40px 0px;
  }
}
.about .abt-text {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}
.about .abt-text p {
  font-size: 14px;
}
.about .abt-text p:not(:last-child) {
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .about .abt-text p:not(:last-child) {
    margin-bottom: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .about .abt-text p {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# contact
--------------------------------------------------------------*/
.contact {
  background-color: #0C3C60;
  padding: 70px 0px;
}
@media only screen and (max-width: 991px) {
  .contact {
    padding: 50px 0px;
  }
}
@media only screen and (max-width: 767px) {
  .contact {
    padding: 40px 0px;
  }
}
.contact .sec-t h2 {
  color: #fff;
}
.contact label {
  font-size: 15px;
  color: #fff;
}
.contact .form-control {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid #fff;
  color: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/*--------------------------------------------------------------
# footer
--------------------------------------------------------------*/
.footer {
  background-color: #072136;
  padding: 40px 0px;
}
.footer h5 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  .footer h5 {
    margin-bottom: 10px;
    font-size: 18px;
  }
}
.footer p {
  font-size: 14px;
  color: #eee;
}
.footer a {
  text-decoration: none;
  display: inline-block;
  color: #ccc;
}
.footer .footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer .footer-links ul li {
  display: block;
}
.footer .footer-links ul li:not(:last-child) {
  margin-bottom: 5px;
}
.footer .footer-links ul li a {
  display: inline-block;
  font-size: 14px;
  color: #cccccc;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.footer .footer-links ul li a:hover {
  color: #cccccc;
  text-decoration: underline;
}
.footer .footer-social {
  margin-bottom: 20px;
}
.footer .footer-social a {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-size: 20px;
}
.footer .footer-social a:not(:last-child) {
  margin-right: 8px;
}
.footer .legal {
  font-size: 13px;
  font-size: #cccccc;
}