/* GLOBAL STYLES
-------------------------------------------------- */
/* Padding below the footer and lighter body text */
body {
  font-family: "Open Sans", sans-serif;
  color: #333;
  padding: 0;
  margin: 0;
}

a {
  color: #009FE1;
  text-decoration: none;
}

a:hover {
  color: #009FE1;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Open Sans", sans-serif;
}

h1 { font-family: "Open Sans"; font-size: 32px; font-style: normal; font-variant: normal; font-weight: 700; } 
h2 { font-family: "Open Sans"; font-size: 24px; font-style: normal; font-variant: normal; font-weight: 700; } 
h3 { font-family: "Open Sans"; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 700; } 
p { font-family: "Open Sans"; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; } 
blockquote { font-family: "Open Sans"; font-size: 21px; font-style: normal; font-variant: normal; font-weight: 400;} 
pre { font-family: "Open Sans"; font-size: 13px; font-style: normal; font-variant: normal; font-weight: 400; }
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar a.navbar-brand,.navbar a.navbar-brand:focus{
  font-size: 1.75rem;
}

.nav-scrolled {
  background: rgba(34, 53, 114, 0.9)!important;
  height: 60px!important;
}


.navbar {
  height: 80px;
  padding: 0;
  transition: all 0.5s;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

a.nav-link::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 3px;
  left: 20px;
  background-color: #FFB647;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
  z-index: 1;
}

.navbar a:hover::before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  width: 25px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #fff;
}

@media (min-width: 768px){
  .navbar-expand-md .navbar-nav .nav-link {
      padding-right: 1.25rem;
      padding-left: 1.25rem;
  }
}
/*--------------------------------------------------------------
# carousel
--------------------------------------------------------------*/
.carousel {
margin-top: -50px;
}
.carousel-item::before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.btn-get-started {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: #FFB647;
}
.btn-get-started:hover {
  background: #17b57d;
}
/*--------------------------------------------------------------
# hero-waves
--------------------------------------------------------------*/

.hero-waves {
  display: block;
  margin-top: 115px;
  width: 100%;
  height: 60px;
  z-index: 5;
  position: absolute;
  bottom: 0;
}

.wave1 use {
  -webkit-animation: move-forever1 10s linear infinite;
  animation: move-forever1 10s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave2 use {
  -webkit-animation: move-forever2 8s linear infinite;
  animation: move-forever2 8s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave3 use {
  -webkit-animation: move-forever3 6s linear infinite;
  animation: move-forever3 6s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@-webkit-keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@-webkit-keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

section {
  padding: 80px 0;
  overflow: hidden;
}
.section-title {
  padding-bottom: 40px;
}
.section-title h1 {
  font-size: 32px;
  font-weight: 600;
  padding: 0;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #223572;
}

.section-title h1::before {
  content: "";
  width: 30px;
  height: 2px;
  display: inline-block;
  background: #FFB647;
  margin: 10px;
}
.section-title h1::after {
  content: "";
  width: 30px;
  height: 2px;
  display: inline-block;
  background: #FFB647;
  margin: 10px;
}
.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
  color: #010483;
}
@media (max-width: 992px) {
  .section-title h1 {
    font-size: 28px;
  }
  
}
/*--------------------------------------------------------------
# careerMessage
--------------------------------------------------------------*/
.careerMessage {
  background-color: #FFB647;
}

.careerMsgInner h2{
  font-family: "Open Sans", sans-serif;
  font-size: 36px;
  line-height: 56px;
  color: #333;
  font-weight: 900;
}
.careerMessage .btn-get-started{
  background: rgb(34, 53, 114);
}
.careerMessage .btn-get-started:hover{
  background: #17b57d;
  color: #fff;
}

/*--------------------------------------------------------------
# mgtMessage
--------------------------------------------------------------*/
.mgtMessage {
  background: url("../images/mgt-message.jpg");
  background-size: cover;
  position: relative;
}
.mgtMessage::before{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.85);
  content: "";
}
.mgtMessageInner{
  height: 280px;
  position: relative;
  margin-top: 60px;
}
.mgtMessageInner p{
  font-size: 24px;
}

@media (max-width: 992px) {
  .mgtMessageInner{
    margin-top: 0px;
  }
  .mgtMessageInner p {
    font-size: 18px;
  }  
}
/*--------------------------------------------------------------
# stayConnected
--------------------------------------------------------------*/
.stayConnected {
  background-color: #223572 ;
}
.stayConnected {
  background: url("../images/mgt-message.jpg");
  background-size: cover;
  position: relative;
}
.stayConnected::before{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(34, 53, 114, 0.9);
  content: "";
}
.stayConnectedInner{
  position: relative;
  color:#fff;
}
.stayConnectedInner h1{
  color:#fff;
}

@media (max-width: 992px) {
  .stayConnectedInner .section-title h2 {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: rgb(36, 36, 36);
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 15px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-top: 2px solid #FFB647 ;
  text-align: center;
  padding: 30px 20px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #FFB647;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #FFB647 ;
  font-size: 10px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #4be8b0;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px 6px 15px;
  position: relative;
  border-radius: 50px;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #FFB647;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #149f6e;
}

#footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
}
/*--------------------------------------------------------------
# aboutus
--------------------------------------------------------------*/
.aboutus {
  width: 100%;
  background: url(../images/hero-bg.jpg);
  background-size: cover;
  position: relative;
  padding: 180px 0 0 0;
  height: 380px;
  z-index: 1;
}
.aboutus::before{
    content: "";
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}
.hero-caption-ovelay{
  margin-left: 30px;
  z-index: 2;
}
.hero-caption-ovelay h1{
  font-family: 'Montserrat Bold', 'Open Sans', sans-serif;
  font-size: 48px;
  color: #fff;
}

.aboutCompanyInner p{
  font-size: 18px;
  line-height: 32px;
}
.aboutUsMission img, .aboutUsVision img{
  width: 450px;
  margin: 0 auto;
  margin-bottom: 30px;
}
.aboutUsMission h2, .aboutUsVision h2{
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 30px;
}
.aboutUsMission p, .aboutUsVision p{
  font-size: 18px;
  line-height: 32px;
}

.staffMessage {
  padding: 180px 0;
  background: url(../images/hero-bg.jpg) no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}
.staffMessage::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(1, 3, 111, 0.8);
}
.staffMessageInner{
  position: relative;
  color: #fff;
  font-size: 24px;
  text-align: center;
}
.staffMessageInner i{
  font-size: 48px;
}
.staffMessageInner p{
  font-size: 24px;
}
/*--------------------------------------------------------------
# ourServices
--------------------------------------------------------------*/
.ourServices {
  background: url(../images/mgt-message.jpg);
  background-size: cover;
  position: relative;
}
.ourServices::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.85);
  content: "";
}
.ourServicesInner{
  position: relative;
}
.ourServicesInner p{
  font-size: 18px;
}
.ourServicesInner .icon-boxes h3 {
  font-size: 28px;
  font-weight: 700;
  color: #010483;
  margin-bottom: 15px;
}

.ourServicesInner .icon-box {
  margin-top: 40px;
}

.ourServicesInner .icon-box .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #009FE1;
  border-radius: 50px;
  transition: 0.5s;
  margin: 0 auto;
}

.ourServicesInner .icon-box .icon i {
  color: #009FE1;
  font-size: 32px;
}

.ourServicesInner .icon-box:hover .icon {
  background: #009FE1;
  border-color: #009FE1;
}

.ourServicesInner .icon-box:hover .icon i {
  color: #fff;
}

.ourServicesInner .icon-box .title {
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 20px;
  font-size: 18px;
}

.ourServicesInner .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.ourServicesInner .icon-box .title a:hover {
  color: #FFB647;
}

.ourServicesInner .icon-box .description {
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# ContactUs
--------------------------------------------------------------*/
.google-map iframe {
  border: 0;
  height: 400px!important;
  width: 100%!important;
}
textarea{
  resize: none;
}