@import url("https://fonts.googleapis.com/css2?family=Crimson+Pro:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Source+Sans+Pro:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600;1,700&display=swap"); /*--------------------------------------------------------------
# base
--------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #4c4a47;
  line-height: 1.5;
}

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

section {
  overflow: hidden;
}

a {
  text-decoration: none;
}
a:hover {
  color: #16537E;
}
a:focus, a:hover {
  text-decoration: none;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Crimson Pro", serif;
  font-weight: 400;
  margin: 0;
  color: #1c355e;
}

p {
  margin: 0;
}

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

.scroll-top {
  width: 35px;
  height: 35px;
  background-color: #16537E;
  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;
  font-size: 18px;
  color: #fff;
  border-radius: 7px;
  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 img {
  height: 18px;
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
}
.scroll-top:focus, .scroll-top:hover {
  color: #fff;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(0, 148, 255, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(0, 148, 255, 0.5);
}

/*--------------------------------------------------------------
  ##  Page Loader
  --------------------------------------------------------------*/
.page-loader {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: #fff;
}

.lds-ellipsis {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
}

.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #0094ff;
  -webkit-animation-timing-function: cubic-bezier(0, 1, 1, 0);
          animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
  left: 8px;
  -webkit-animation: lds-ellipsis1 0.6s infinite;
          animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
  left: 8px;
  -webkit-animation: lds-ellipsis2 0.6s infinite;
          animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
  left: 32px;
  -webkit-animation: lds-ellipsis2 0.6s infinite;
          animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
  left: 56px;
  -webkit-animation: lds-ellipsis3 0.6s infinite;
          animation: lds-ellipsis3 0.6s infinite;
}

@-webkit-keyframes lds-ellipsis1 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes lds-ellipsis1 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes lds-ellipsis3 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}
@-webkit-keyframes lds-ellipsis2 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(24px, 0);
            transform: translate(24px, 0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(24px, 0);
            transform: translate(24px, 0);
  }
}
/*--------------------------------------------------------------
# nav-header
--------------------------------------------------------------*/
.nav-header {
  padding: 30px 0px;
}
@media only screen and (max-width: 1199px) {
  .nav-header {
    padding: 23px 0px;
  }
}
@media only screen and (max-width: 991px) {
  .nav-header {
    padding: 18px 0px;
  }
}
@media only screen and (max-width: 482px) {
  .nav-header {
    padding: 14px 0px;
  }
}
.nav-header .nav-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav-header .page-drop .dropdown-toggle {
  background-color: transparent;
  border: 0;
  outline: none;
  font-size: 26px;
  color: #1c355e;
}
@media only screen and (max-width: 991px) {
  .nav-header .page-drop .dropdown-toggle {
    font-size: 22px;
  }
}
.nav-header .page-drop .dropdown-toggle::after {
  display: none;
}
.nav-header .page-drop .dropdown-menu {
  border-color: #eee;
  -webkit-box-shadow: 0 0.1625rem 0.2rem 0 rgba(36, 39, 46, 0.1);
          box-shadow: 0 0.1625rem 0.2rem 0 rgba(36, 39, 46, 0.1);
  -webkit-box-shadow: 0 2px 10px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px 0px rgba(0, 0, 0, 0.1);
  font-family: "Crimson Pro", serif;
}
.nav-header .lang-drop .dropdown-toggle {
  background-color: transparent;
  border: 0;
  outline: none;
  font-size: 16px;
  font-weight: 600;
  color: #1c355e;
}
.nav-header .lang-drop .dropdown-toggle::after {
  display: none;
}
.nav-header .lang-drop .dropdown-menu {
  border-color: #eee;
  -webkit-box-shadow: 0 0.1625rem 0.2rem 0 rgba(36, 39, 46, 0.1);
          box-shadow: 0 0.1625rem 0.2rem 0 rgba(36, 39, 46, 0.1);
  -webkit-box-shadow: 0 2px 10px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px 0px rgba(0, 0, 0, 0.1);
}
.nav-header .lang-drop .dropdown-menu a {
  font-size: 16px;
  font-weight: 600;
}
.nav-header .nav-logo a {
  text-decoration: none;
  display: inline-block;
}
.nav-header .nav-logo img {
  max-height: 34px;
}
@media only screen and (max-width: 1199px) {
  .nav-header .nav-logo img {
    max-height: 28px;
  }
}
@media only screen and (max-width: 991px) {
  .nav-header .nav-logo img {
    max-height: 24px;
  }
}
@media only screen and (max-width: 482px) {
  .nav-header .nav-logo img {
    max-height: 22px;
  }
}

/*--------------------------------------------------------------
# hero-area
--------------------------------------------------------------*/
.hero-area {
  padding: 0px 50px;
  overflow: visible;
}
@media only screen and (max-width: 991px) {
  .hero-area {
    padding: 0px 30px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-area {
    padding: 0px 20px;
  }
}
@media only screen and (max-width: 482px) {
  .hero-area {
    padding: 0px 14px;
  }
}
.hero-area .bg-hero {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 60vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
@media only screen and (max-width: 1199px) {
  .hero-area .bg-hero {
    min-height: 50vh;
  }
}
@media only screen and (max-width: 767px) {
  .hero-area .bg-hero {
    min-height: 40vh;
  }
}
.hero-area .hero-box {
  -webkit-clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
  background-color: #efecea;
  max-width: 620px;
  padding: 40px 40px;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
@media only screen and (max-width: 991px) {
  .hero-area .hero-box {
    max-width: 500px;
    padding: 30px 30px;
  }
}
@media only screen and (max-width: 482px) {
  .hero-area .hero-box {
    padding: 20px 20px;
  }
}
.hero-area .hero-box h1 {
  font-size: 42px;
  line-height: 1.2;
}
@media only screen and (max-width: 991px) {
  .hero-area .hero-box h1 {
    font-size: 34px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-area .hero-box h1 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 482px) {
  .hero-area .hero-box h1 {
    font-size: 25px;
  }
}

/*--------------------------------------------------------------
# intro
--------------------------------------------------------------*/
.intro {
  padding-top: 220px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 1199px) {
  .intro {
    padding-top: 160px;
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 991px) {
  .intro {
    padding-top: 130px;
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .intro {
    padding-top: 120px;
    padding-bottom: 50px;
  }
}
.intro .intro-inner {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.intro p {
  font-weight: 300;
  color: #1c355e;
  font-size: 30px;
}
@media only screen and (max-width: 767px) {
  .intro p {
    font-size: 25px;
  }
}
.intro .ft-bold {
  font-weight: 500;
}

.intro-abt {
  padding-top: 150px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 1199px) {
  .intro-abt {
    padding-top: 120px;
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 991px) {
  .intro-abt {
    padding-top: 90px;
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .intro-abt {
    padding-top: 80px;
    padding-bottom: 50px;
  }
}
.intro-abt .intro-inner {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.intro-abt p {
  font-weight: 300;
  color: #1c355e;
  font-size: 30px;
}
@media only screen and (max-width: 767px) {
  .intro-abt p {
    font-size: 25px;
  }
}
.intro-abt .ft-bold {
  font-weight: 500;
}

/*--------------------------------------------------------------
# services
--------------------------------------------------------------*/
.services {
  padding-top: 150px;
  padding-bottom: 70px;
}
@media only screen and (max-width: 1199px) {
  .services {
    padding-top: 120px;
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .services {
    padding-top: 90px;
    padding-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .services {
    padding-top: 80px;
    padding-bottom: 30px;
  }
}
.services .s-single .s-img-link {
  display: block;
  width: 100%;
  text-decoration: none;
  overflow: hidden;
}
.services .s-single .s-img-link img {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.services .s-single .s-img-link:hover img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}
.services .s-single .s-body {
  background-color: #efecea;
  margin: 0px 40px;
  padding: 30px 30px;
  -webkit-transform: translateY(-30%);
          transform: translateY(-30%);
}
@media only screen and (max-width: 767px) {
  .services .s-single .s-body {
    padding: 20px 20px;
    margin: 0px 30px;
  }
}
.services .s-single h3 {
  font-size: 28px;
  margin-bottom: 16px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
@media only screen and (max-width: 1199px) {
  .services .s-single h3 {
    font-size: 24px;
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .services .s-single h3 {
    font-size: 22px;
  }
}
.services .s-single h3 a {
  display: block;
  width: 100%;
  text-decoration: none;
  color: #1c355e;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.services .s-single h3:hover a {
  text-decoration: underline;
}

.sec-t {
  text-align: center;
}
.sec-t h2 {
  font-size: 40px;
  margin-bottom: 45px;
}
@media only screen and (max-width: 1199px) {
  .sec-t h2 {
    font-size: 36px;
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .sec-t h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .sec-t h2 {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# sol
--------------------------------------------------------------*/
.sol {
  background-color: #F5F6F7;
  padding: 80px 0px;
}
@media only screen and (max-width: 1199px) {
  .sol {
    padding: 60px 0px;
  }
}
@media only screen and (max-width: 767px) {
  .sol {
    padding: 40px 0px;
  }
}

.sol-single {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.12);
          box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.12);
}
.sol-single .sol-head {
  padding: 20px 25px;
  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) {
  .sol-single .sol-head {
    padding: 20px 20px;
  }
}
.sol-single .sol-head h3 {
  font-size: 27px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .sol-single .sol-head h3 {
    font-size: 24px;
  }
}
.sol-single .sol-head p {
  margin-bottom: 16px;
}
.sol-single .sol-head .btn-outline {
  margin-top: auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-item-align: start;
      align-self: flex-start;
  font-family: "Crimson Pro", serif;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  padding: 9px 20px;
  border: 1px solid #0094ff;
  color: #16537E;
  font-size: 17px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.sol-single .sol-head .btn-outline:hover {
  background-color: #16537E;
  color: #fff;
}
.sol-single .sol-body {
  margin-top: auto;
}
.sol-single .sol-body .sol-img {
  overflow: hidden;
  display: block;
  width: 100%;
  text-decoration: none;
}
.sol-single .sol-body .sol-img img {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.sol-single .sol-body .sol-img:hover img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

/*--------------------------------------------------------------
# contact
--------------------------------------------------------------*/
.contact {
  padding-top: 150px;
  padding-bottom: 70px;
}
@media only screen and (max-width: 1199px) {
  .contact {
    padding-top: 120px;
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .contact {
    padding-top: 90px;
    padding-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .contact {
    padding-top: 80px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .contact .col-lg-3:not(:last-child) {
    border-right: 2px solid #ccc;
  }
}
.contact .ma-s {
  text-align: center;
}
.contact .ma-s i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  border: 2px solid #16537E;
  color: #16537E;
  margin-bottom: 10px;
}
.contact .ma-s p {
  font-size: 17px;
  line-height: 1.2;
  font-weight: 600;
}
.contact .ma-s a {
  text-decoration: none;
  font-weight: 600;
  color: #16537E;
}

/*--------------------------------------------------------------
# con-form
--------------------------------------------------------------*/
.con-form {
  background-color: #F5F6F7;
  padding: 40px 40px;
  margin-top: 50px;
}
@media only screen and (max-width: 767px) {
  .con-form {
    padding: 25px 25px;
    margin-top: 30px;
  }
}
.con-form .form-grp {
  margin-bottom: 18px;
}
@media only screen and (max-width: 767px) {
  .con-form .form-grp {
    margin-bottom: 14px;
  }
}
.con-form label {
  font-family: "Crimson Pro", serif;
  font-size: 17px;
  color: #1c355e;
  margin-bottom: 4px;
}
.con-form .form-control {
  border-radius: 0;
  padding: 12px 12px;
}
.con-form .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #16537E;
}
@media only screen and (max-width: 767px) {
  .con-form .form-control {
    padding: 10px 12px;
  }
}
.con-form .btn-submit {
  display: inline-block;
  text-decoration: none;
  background-color: #16537E;
  color: #fff;
  font-family: "Crimson Pro", serif;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  padding: 11px 30px;
  border: 0;
  border-radius: 0;
  min-width: 200px;
  margin-top: 10px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.con-form .btn-submit:hover {
  background-color: #0076cc;
  color: #fff;
}

/*--------------------------------------------------------------
# main-footer
--------------------------------------------------------------*/
.main-footer {
  padding: 40px 0px;
  background-color: #efecea;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .main-footer {
    padding: 25px 0px;
  }
}
.main-footer p {
  font-size: 14px;
  padding-top: 16px;
}

.footer-social {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-social li {
  display: inline-block;
}
.footer-social li:not(:last-child) {
  margin-right: 10px;
}
.footer-social li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  font-size: 18px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #16537E;
  color: #fff;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.footer-social li a:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}