@import url('https://fonts.googleapis.com/css2?family=Gabarito:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
body {
font-family: 'Poppins', sans-serif;
  color: #444444;
  overflow-x: hidden;
}

a {
  color: #333;
  text-decoration: none;
}

a:hover {
  color: #469fdf;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'Gabarito', cursive;
 font-weight: 600;
}
h1 span
{
  font-weight: 400;
  letter-spacing: 1px;
  font-size: 22px;
  display: block;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #f1961f;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #3e9bdd;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f1961f;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  background: #fff;
  z-index: 997;
  padding: 15px 0;
  border-bottom: 1px solid #e6f2fb;
}

#header.header-scrolled {
  border-color: #fff;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.5px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #16507b;
}

#header .logo img {
  max-height: 40px;
}

@media (max-width: 992px) {
  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.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 40px;
  font-size: 18px;
  white-space: nowrap;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 600;
  border-color: rgba(249, 252, 255, 0.25);
  color: #fff;
}

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

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

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #f1961f;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #3194db;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
  border: 1px solid #333;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 6px 20px;
  text-transform: none;
  color: #f1961f;
  font-size: 15px;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #f1961f;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(10, 38, 58, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #124265;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #f1961f;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #f1961f;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}
header .right-col
{text-align: right;}
header .right-col .call-top p
{margin: 0px; color: #155f6f; font-size: 14px;}
header .right-col .call-top a
{
  color: #155f6f;
  justify-content: flex-end;
  margin-bottom: 40px;
  font-size: 35px;
  font-weight: 600;
  font-family: 'Gabarito', cursive;
}
header .right-col .top-btn
{margin-left: 30px;}
header .right-col .top-btn a
{
  background: #f1961f;
  border: none!important;
  border-radius: 5px;
  padding: 17px 40px;
}
.main-menu
{
  padding: 0px 0px;
  border-top: 1px solid #eaeaea;
  background: #155f6f;
}
.btn-2
{
  display: block;
  background-color: #f1961f;
  color: #fff!important;
  border: 1px solid #fff;
  white-space: normal;
  padding: 10px 2vw;
  text-decoration: none !important;
  font-size: 1rem;
  line-height: 1rem;
  border-radius: 0;
  text-transform: uppercase;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  font-weight:600;
}
.main-hero
{
  position: relative;
}
.main-hero .overlay
{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.8) 65%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-hero .overlay .caption
{
  padding: 30px;
  text-align: center;
}
.main-hero .overlay .caption ul li
{list-style: none; color: #fff; font-size: 18px;
  display: inline-block;
 text-align: left; margin-bottom: 15px;
 background: #f1961f; 
 padding: 12px 30px;
 border-radius: 6px;
}
span.main-head
{font-size: 3rem; border-top: 1px solid #eaeaea; border-bottom: 1px solid #eaeaea; text-transform: uppercase; padding-top: 20px; padding-bottom: 20px}
.section-column-ctas.textured-bg {
  background-repeat: no-repeat;

  background-position: 50% -23px;

  background-size: cover;

}
.teaser {
    border-radius: 0;
    max-width: 650px;
    margin: 0 auto;
    transition: .25s;
    border: 2px solid #f1961f;
    background: transparent; 
    position: relative;
  }
.teaser img {
    border-bottom: 2px solid #f1961f;}
.teaser p {margin: 0 auto; text-align: center;}
.teaser p:last-child a {
    color: #f1961f; !important;
    font-size: 15pt;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none !important;
    display: block;
    padding: 9px 0 7px;}
.teaser:hover {background: #f1961f;}
.teaser:hover p:last-child a {color: #fff;}
.about-main
{
  background: #155f6f;
  padding: 100px 0px;
}
.additional-btns 
{padding: 0px;}
.additional-btns li
{
  list-style: none;
  width: 30%;
  display: inline-block;
}
.additional-btns li a
{
  color: #fff;
  border: 1px solid #fff;
  display: block;
  padding: 10px;
  margin: 2%;
  text-transform: uppercase;
}

.top-svg {
  width: 100%;
  height: 41px;
  transform: translateX(0%) rotateY(180deg);
  display: block;
}
.parralax-bg
{
  background-blend-mode: overlay;
  background-image: url(../images/IMG_1305-1920w.png)!important;
  background-size: cover;
height: 60vh;
    padding-right: 0px;
    padding-left: 0px;
  background-attachment: fixed;
}
.footer-main
{
  background: #f8f8f8;
}
.footer-main .navbar-nav {
  flex-direction: row;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.navbar-nav a {
  color: #333;

  text-align: right;

  padding: 10px 6px;

  text-decoration: underline;

  font-weight: 600;

}
.nectar-shape-divider {
  width: 100%;
  left: 0;
  bottom: -1px;
 height: 250px;

}
.breadcrumb-area {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 79px 0 88px;
    z-index: 10;
}

.breadcrumb-area-bg {
    position: absolute;
    top: -20px;
    left: 0;
    bottom: -20px;
    right: 0;
    background-attachment: scroll;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.breadcrumb-area-bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #000000;
    opacity: 0.20;
    z-index: -1;
}

.breadcrumb-area .inner-content {
    position: relative;
    display: block;
}

.breadcrumb-area .title {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.breadcrumb-area .title h2 {
    color: #ffffff;
    font-size: 42px;
    line-height: 1.2em;
    font-weight: 900;
    text-transform: capitalize;
}


.breadcrumb-menu {
    position: relative;
    display: block;
    line-height: 0;
    padding-top: 4px;
    z-index: 1;
}

.breadcrumb-menu ul {
    position: relative;
    display: block;
    overflow: hidden;
}

.breadcrumb-menu ul li {
    position: relative;
    float: left;
    color: #ffffff;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    text-transform: capitalize;
    padding-right: 12px;
    margin-right: 12px;
    list-style: none;
}

.breadcrumb-menu ul li:before {
    content: "";
    position: absolute;
    top: 9px;
    right: 0;
    bottom: 7px;
    width: 1px;
    background-color: #ffffff;
    transform: rotate(12deg);
}

.breadcrumb-menu ul li:last-child:before {
    display: none;
}

.breadcrumb-menu ul li:last-child {
    padding-right: 0;
    margin-right: 0;
}

.breadcrumb-menu ul li a {
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.breadcrumb-menu ul li:hover a,
.breadcrumb-menu ul li.active {
    color: #fff;
}
.right-form {
  position: sticky;
  top:30px;
  right: 10px;
  z-index: 9;
}
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.3);
  padding: 20px 0 30px 0;
}

.contact .info-box i {
  font-size: 32px;
  color: #010e5c;
  border-radius: 50%;
  padding: 8px;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #1e1f57;
  float: left;
  width: 44px;
  height: 44px;
  background: #e3f0fa;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #124265;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #217bbc;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #1e1f57;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #1e1f57;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #f1950d;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #3194db;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #757575;
}

.counts .count-box i {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #f1961f;
  color: #fff;
  width: 56px;
  height: 56px;
  line-height: 0;
  border-radius: 50px;
  border: 5px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #fff;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: #fff;
}

@media only screen and (max-width: 1199px) {
  .main-hero .overlay .caption ul
  {margin-bottom: 30px;}
.main-hero .overlay .caption ul li {
  list-style: none;

  color: #fff;

  font-size: 15px;

  text-align: left;

  margin-bottom: 15px;

}
}
@media only screen and (max-width: 991px) {
  header .right-col .top-btn 
  {display: none;}
  .main-menu
  {padding: 20px 0px; background: #155f6f;}
  .main-hero .overlay
  {position: relative; background: #155f6f;}
  }
  @media only screen and (max-width: 767px) {
    .flex-991
    {flex-direction: column;}
    .logo
    {margin-bottom: 30px;}
  }