
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Source Sans Pro', sans-serif;
  color: #444;
}

a {
  color: #4fa6d5;
}

a:hover {
  color: #45beff;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6, .font-primary {
  font-family: 'Source Sans Pro', sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  right: 15px;
  bottom: 15px;
  background: #a6ce39;
  color: #fff;
  transition: display 0.5s ease-in-out;
  z-index: 99999;
}

.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 8px;
  left: 8px;
}

.back-to-top:hover {
  color: #fff;
  background: #00abc7;
  transition: background 0.2s ease-in-out;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 20px 0;
  background: #0058a4;
}

#header.header-transparent {
  background: none;
}

#header.header-scrolled {
  background: #0058a4;
  height: 60px;
  padding: 10px 0;
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 4px 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header .logo p {
  font-size: 20px;
  margin: 0;
  padding: 4px 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  color: #fff;

}

#header .logo p a {
  color: #fff;
  text-decoration: none;
}

#header .logo p a:hover {
  color: #eae64e;
  text-decoration: none;
}




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

#main {
  margin-top: 80px;
}



/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 15px;
  transition: 0.3s;
  font-size: 14px;
  font-family: 'Source Sans Pro', sans-serif;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #a2cce3;
  text-decoration: none;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% - 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #1c3745;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #a6ce39;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: 'Source Sans Pro', sans-serif;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: 'Source Sans Pro', sans-serif;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: #1e4356;
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #ddecf5;
  padding: 10px 20px;
  font-weight: 500;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #a2cce3;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: 'Source Sans Pro', sans-serif;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa0";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

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

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(30, 67, 86, 0.9);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}



/*--------------------------------------------------------------
# Hero No Slider Section
--------------------------------------------------------------*/
#hero-no-slider img{
  max-width: 100%;
  height: auto;
  overflow-y: visible;
  overflow-x: hidden;
  position: relative;
  text-align: left;
}

/*
#hero-no-slider::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 0;
  right: 0;
  bottom: 0;
  background: url("../img/webbanner.jpg") left top no-repeat;
}

#hero-no-slider h1 {
  color: #fff;
  margin-bottom: 15px;
  margin-top: 50px;
  margin-left: 50px;
  font-size: 70px;
  font-family: 'Source Sans Pro', sans-serif;
}

#hero-no-slider h2 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 600;
  margin-left: 50px;
  font-family: 'Source Sans Pro', sans-serif;
}


#hero-no-slider .btn-get-started:hover {
  background: #a6ce39;
  color: #fff;
  text-decoration: none;
}*/

/*
 @media (min-width: 360px) {
  #hero-no-slider {
  width: 100%;
  height: 200px;
  overflow: visible;
  position: relative;
  text-align: left;

      }
}


  @media (min-width: 768px) {
  #hero-no-slider {
  width: 100%;
  height: 300px;
  overflow: visible;
  position: relative;
  text-align: left;

          }
        }



  @media (min-width: 360px) {
  #hero-no-slider h1 {
  color: #fff;
  margin-top: 40px;
  margin-left: 30px;
  font-size: 35px;
  font-family: 'Source Sans Pro', sans-serif;

          }
        }

@media (min-width: 768px) {
  #hero-no-slider h1 {
  margin-top: 50px;
  margin-left: 70px;
  font-size: 70px;
  font-family: 'Source Sans Pro', sans-serif;

          }
        }
      

  @media (min-width: 360px) {
  #hero-no-slider h2 {
  color: #fff;
  font-size: 18px;
  margin-left: 30px;
  font-family: 'Source Sans Pro', sans-serif;

          }
        }

@media (min-width: 768px) {
  #hero-no-slider h2 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 600;
  margin-left: 80px;
  font-family: 'Source Sans Pro', sans-serif;
          }
        }
      

*/





/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 20px 0;
}

.section-bg {
  background-color: #f3f8fa;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 35px;
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #00abc7;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;

}


/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  padding-bottom: 20px;
}

.features .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  margin: 0  0 40px 0;
  background: #fff;
  box-shadow: 0 5px 26px 0 rgba(68, 88, 144, 0.14);
  transition: all 0.3s ease-in-out;
  text-align: center;
  border: 1px solid #fff;
}

.features .icon {
  margin: 0 auto 20px auto;
  padding-top: 17px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 72px;
  height: 72px;
}

.features .icon i {
  font-size: 36px;
  line-height: 1;
}

.features .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.features .title {
  color: #111;
}

.features p {
  color: #111;
}
.features .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}


.features .icon-box-blue .icon {
  background: #0058a4;
}

.features .icon-box-blue .icon:hover {
  background: #7faad0;
}

.features .icon-box-blue .icon i {
  color: #fff;

}

.features .icon-box-blue:hover {
  border-color: #7faad0;
}


.features .icon-box-orange .icon {
  background: rgba(240, 113, 10, 1);
}

.features .icon-box-orange .icon:hover {
  background: rgba(240, 113, 10, .75);
}

.features .icon-box-orange .icon i {
  color: #fff;

}

.features .icon-box-orange:hover {
  border-color: rgba(240, 113, 10, 1);
}

.features .icon-box-poiple .icon {
  background: rgba(88, 94, 170, 1);
}

.features .icon-box-poiple .icon:hover {
  background: rgba(88, 94, 170, .75);
}

.features .icon-box-poiple .icon i {
  color: #fff;

}

.features .icon-box-poiple:hover {
  border-color: rgba(88, 94, 170, 1);
}

.features .icon-box-lime .icon {
  background: rgba(166, 206, 57, 1);
}

.features .icon-box-lime .icon:hover {
  background: rgba(166, 206, 57, .75);
}

.features .icon-box-lime .icon i {
  color: #fff;

}

.features .icon-box-lime:hover {
  border-color: rgba(166, 206, 57, 1);
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #0058a4;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: #0d2735;
  border-top: 1px solid #17455e;
  border-bottom: 1px solid #123649;
  padding: 60px 0 30px 0;
}

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

#footer .footer-top .footer-info h3 {
  font-size: 18px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  color: #a2cce3;
  font-weight: 600;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: 'Source Sans Pro', sans-serif;
  color: #fff;
}



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


#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

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

#footer .credits a {
  color: #a2cce3;
}
