body {
	height: 100%;
	font-family: 'Rubik', sans-serif;
	/* width: 100%; */
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/


#header {
    transition: all 0.5s;
    z-index: 997;
    /* padding: 15px 0; */
    background: #fff;
  }

  #header.header-scrolled{
    background: #fff
  }

.navbar {
    transition: all 0.4s;
    background: transparent;
    box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .nav-link {
    color: #006633 !important;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: bold;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: #F16436;
    text-decoration: none;
    border-bottom: #fff solid 3px;
}

 .navbar .navbar-brand {
    color: #fff;
}

.logo-title{
  text-transform: uppercase;
  margin-top: 20px;
  color: #006633;
  line-height: 30px;
}

.navbar .navbar-brand img{
    height: 40px;
}


/* Change navbar styling on scroll */
.navbar.active {
    background: #fff;
    box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.active .nav-link {
    color: #555;
}

.navbar.active .nav-link:hover,
.navbar.active .nav-link:focus {
    color: #555;
    text-decoration: none;
}

.navbar.active .navbar-brand {
    color: #555;
}

.mobile-nav {
    position: fixed;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
  }


/* Change navbar styling on small viewports */
@media (max-width: 991.98px) {
    .navbar {
        background: #fff;
    }
    .navbar .navbar-brand img{
        height: 40px;
    }

    .navbar-toggler{
        position: fixed;
        top: 20px;
        right: 15px;
        z-index: 9998;
        border: 0;
        background: #F16436;
        font-size: 15px;
        transition: all 0.4s;
        outline: none !important;
        line-height: 1;
        cursor: pointer;
        text-align: right;
    }


    .navbar .navbar-brand, .navbar .nav-link {
        color: #555;
    }
}

  /*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  background: #fff;
}

#hero .hero-img img {
  width: 80%;
  margin-bottom: 20px;
}

#hero .container {
  padding-top: 100px;
}

#hero h1 {
  margin-bottom: 20px;
  font-size: 40px;
  font-weight: 700;
  line-height: 56px;
  color: #F16436;
}

#hero h2, #hero h2 p  {
  color: #fff;
   margin-bottom: 20px;
   /* font-size: 22px; */
  font-weight: 500;
}

#hero h3 p  {
  color: #fff;
  margin-bottom: 30px;
  font-size: 17px;
  line-height: 25px;
  font-weight: 400;
}

#hero .btn-get-started {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #ff0000;
}

#hero .btn-get-started:hover {
  background: #209dd8;
}

#hero .btn-watch-video {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  color: #000000;
  border-radius: 50px;
  background: #ffcc00;
  position: relative;
}


#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {

  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {

  #hero h1 {
    font-size: 20px;
    text-align: left;
    line-height: 25px;
  }
  #hero h2, #hero h2 p {
    font-size: 15px;
    line-height: 24px;
    text-align: left;
    margin-bottom: 10px;
  }
  #hero .hero-img img {
    width: 100%;
    margin-top: 20px;
  }
  #hero .btn-get-started {
    float: left;
    font-size: 14px;
    padding: 5px 10px;
  }

  #hero .btn-watch-video {
      float: left;
      margin: 10px;
      font-size: 14px;
      padding: 5px 15px;
  }
}

@media (max-width: 575px) {
  #hero h1 {
    font-size: 22px;
    text-align: center;
    line-height: 25px;
  }
  #hero h2, #hero h2 p {
    font-size: 16px;line-height: 24px;
    text-align: center;
    margin-bottom: 10px;
  }
  #hero .hero-img img {
    width: 80%;
  }
  #hero .btn-get-started {
    font-size: 16px;
    float: none;
    padding: 10px 25px;
  }
  #hero .btn-watch-video {
    float: none;
    margin: 10px;
    font-size: 16px;
    padding: 10px 30px;

  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

  #community-hero  {
    width: 100%;
    background: url(../images/hero-bg.jpg);
    background-size: cover;
    min-height: 75vh;
    /* text-align: center; */
    padding: 3rem 2rem;
  }

  #page-banner  {
    width: 100%;
    background: url(../img/background/landing-bg.jpg);
    background-size: cover;
    min-height: 30vh;
    text-align: center;
    padding: 3rem 2rem;

}

  #community-hero .container, #page-banner .container{
  padding-top: 150px;
  }

  #community-hero .hero-img img {
    width: 100%;
    bottom: 0;
    margin-bottom: -25vh;
  }

  #community-hero h1, #page-banner h2 {
    margin: 0 0 10px 0;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 40px;
    color: #fff;
  }


    #community-hero h2, #page-banner h2 {
      margin: 0 0 10px 0;
      text-transform: capitalize;
      font-weight: 500;
      line-height: 35px;
      color: #fff;
    }

    #community-hero h4{
      color: #fff;
      margin-bottom: 20px;
      line-height: 30px;
      /* font-size: 20px; */
    }

    #community-hero p, #page-banner p{
      font-size: 16px;
      color: #fff;
    }


    .solid-header{
        background: #ff6600;
        padding: 10px 5px;
    }

      /* ----------------
  Hero Menu
---------------------*/

.welcome-menu{
  background:#006633;
  border-top: #fff solid;
  border-bottom: #5c5cc2 solid 1px;
}
.welcome-menu #item{
	/* margin-bottom: 10px; */
	padding: 30px 30px;
	/* border-right: solid 1px #fff; */
}

.welcome-menu #item:last-child{
	border: none;
}

#item img{
	height: 30px;
}
  
#item h5{
	color: #fff
}
  
#item p{
	color: #fff;
	text-align: left;
  margin-bottom: 0;
}

#item ul li{
	color: #fff;
	text-align:left;
  margin-left: -20px;
  list-style: none;
  margin-bottom: 0;
}

#item ul li a{
  color: #fff;
}

.btn-color {
  border-radius: 50px;
  color: #fff;
  background-image: linear-gradient(to right, #006633,#009933);
  padding: 15px;
  cursor: pointer;
  border: none !important;
  margin-top: 20px
}

.btn-color:hover {
  color: #fff;
  background-image: linear-gradient(to right, #006633,#009933)
}

/*------------------
------hero-menu---------*/
.hero-menu{
    background: #113D70;
    border-top: #ff6600 solid 4px;
    padding: 30px 20px;
}

.menu-item{
    color: #fff;
    text-align: center
}
.icon-md{
    height: 50px;
}

.section-padding{
    padding: 50px 20px;
}

.section-bg-light{
    background: #F4FAFB;
}

.bg-blue{
  background: #003399;
}

.bg-theme{
  background: #006633;
}

.title{
    color: #F16436;
    font-weight: bold;
  margin-bottom: 5px;
}




.section-title {
    text-align: center;
  }


  .section-title h3 {
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 20px;
    position: relative;
    color: #003333;
  }

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

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

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

  @media (max-width: 768px) {
    .section-title h2{
      font-size: 24px
    }

  }

  .btn-white, .btn-white-outline:hover{
    background: #fff;
    color: #003333;
    font-weight: bold;
    border: #003333 solid 2px;
  }

  .btn-white-outline, .btn-white:hover{
    background:#003333;
    color:#fff;
    font-weight: bold;
    border: #fff solid 2px;
  }


  .min-h-3{
    min-height: 300px;
  }

/*-----------------
-------About-----------*/
.about{
    padding: 60px 30px;
}
.about h4{
  line-height: 40px;


}
.about-content h3 {
    font-weight: 600;
    color: #003333;
}

.about-content p {
   line-height: 30px;
   font-size: 18px;
}

  .about img{
      margin-top: 20px;
      /* margin-bottom: -100px; */
  }

  .margin-less{
    /* margin-top: 20px; */
    margin-bottom: -500px;
  }

  .item{
    box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);
    background: #fff;
    margin-bottom: 20px;
  }

ul.timeline {
    list-style-type: none;
    position: relative;
}
ul.timeline:before {
    content: ' ';
    /* background: #d4d9df; */
    border: 1px dashed #003333;
    display: inline-block;
    position: absolute;
    left: 29px;
    width: 2px;
    height: 100%;
    z-index: 400;
}
ul.timeline > li {
    margin: 20px 0;
    padding-left: 20px;
}
ul.timeline > li:before {
    content: ' ';
    background: white;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    border: 3px solid #003333;
    left: 20px;
    width: 20px;
    height: 20px;
    z-index: 400;
}

  /*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

  .featured-services .icon-box::before {
    content: '';
    position: absolute;
    background: #cbe0fb;
    right: 0;
    left: 0;
    bottom: 0;
    top: 100%;
    transition: all 0.3s;
    z-index: -1;
  }

  .featured-services .icon-box:hover::before {
    background: #F16436;
    top: 0;
    border-radius: 0px;
  }

  .featured-services .icon {
    margin-bottom: 15px;
  }

  .featured-services .icon i {
    font-size: 48px;
    line-height: 1;
    color: #F16436;
    transition: all 0.3s ease-in-out;
  }

  .featured-services .icon img {
    height: 70px;
    width: 70px;
    transition: all 0.3s ease-in-out;
  }

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

  .featured-services .title a {
    color: #111;
  }

  .featured-services .description {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 0;
  }

  .featured-services .icon-box:hover .title, .featured-services .icon-box:hover p  {
    color: #fff;
  }

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


  @media (max-width: 575px) {
    .featured-services .icon-box {
      padding: 10px;

    }
    .featured-services .title {
      font-weight: 600;
      margin-bottom: 10px;
      font-size: 16px;
    }
    .featured-services .icon img {
      height: 40px;
      width: 40px;
      transition: all 0.3s ease-in-out;
    }
  }

  /*--------------------------------------------------------------
# call-to-action
--------------------------------------------------------------*/
.call-to-action{
  padding: 50px 30px;
}

.call-to-action .call-to-action-content h3 {
  font-weight: 600;
  color: #F16436;
  font-size: 26px;
}


.call-to-action .call-to-action-content p {
  font-size: 16px;
  margin-bottom: 0px;
}

.call-to-action img{
    margin-top: 20px;
    height: 300px;
}

.call-to-action .call-to-action-content ul {
  list-style: none;
  padding: 0;
}

.call-to-action .call-to-action-content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.call-to-action .call-to-action-content ul li:first-child {
  margin-top: 35px;
}

.call-to-action .call-to-action-content ul i {
  background: #fff;
  box-shadow: 0px 6px 15px rgba(16, 110, 234, 0.12);
  font-size: 15px;
  padding: 10px;
  margin-right: 15px;
  color: #000;
  border-radius: 50px;
}

.call-to-action .call-to-action-content ul h5 {
  font-size: 18px;
  font-weight: 600;
  color: #F16436;
}

.call-to-action .call-to-action-content ul p {
  font-size: 15px;
}

.call-to-action .link a {
  color: #fff;
}

.call-to-action .call-to-action-content p:last-child {
  margin-bottom: 0;
}

/*  */
  /*-----------------
-------CTA-----------*/
.cta{
  /* background: #303083; */
}

.cta h3{
  font-weight: 600;
  color: #003333;
}

/*---------------------
	Footer Section
-----------------------*/

.footer-section {
	background: #f7f7f7;
	background-repeat: no-repeat;
	background-position: center 75px;
}

.footer-section .footer-top {
	padding: 40px 15px;
}

.footer-section .copyright {
	/* border-top: 1px solid #312f56; */
	padding: 10px ;
	background: #f7f7f7 !important;
}

.footer-section .copyright p {
	color: #000;
	margin-bottom: 0;
}

.footer-section .copyright p a {
	color: #006633;
	font-weight: 500;
}

.footer-section .copyright p a:hover {
	color: #000;
}

.footer-widget .fw-title {
	text-transform: uppercase;
	color: #000;
	font-size: 13px;
	margin-bottom: 10px;
	padding-top: 10px;
}

.footer-section ul li a{
	color: #000;
	font-size: 13px;
	margin-bottom: 10px;
}

 .fw-title {
	text-transform: uppercase;
	color: #006633;
	margin-bottom: 10px;
	padding-top: 10px;
}


.footer-widget p,
.footer-widget span {
	color: #000;
	font-size: 13px;
	margin-bottom: 5px;
}

.footer-widget ul {
	list-style: none;
  margin-right: 5px;
}

.footer-widget ul li{
	margin-left: -30px;
}

.footer-widget .social a {
	font-size: 1.5em;
	color: #006633;
	margin-right: 15px;
}

.footer-widget .dobule-link ul {
	display: inline-block;
}

.footer-widget .dobule-link ul a {
	display: block;
	font-size: 14px;
	color: #aaa;
	margin-bottom: 15px;
}

.footer-widget .dobule-link ul a:hover {
	color: #cccccc;
}

.footer-widget .dobule-link ul li:last-child a {
	margin-bottom: 0;
}

.footer-widget .dobule-link ul:last-child {
	margin-left: 50px;
}


.footer-widget .contact li {
	margin-bottom: 15px;
	display: block;
}

.footer-widget .contact li p {
	margin-bottom: 0;
}

.footer-widget .contact i {
	font-size: 12px;
}

/* Preloder */


.preloader{background-color:#f7f7f7;width:100%;height:100%;position:fixed;top:0;left:0;right:0;bottom:0;z-index:999999;-webkit-transition:.6s;-o-transition:.6s;transition:.6s;margin:0 auto}
.preloader .preloader-circle{
	width:100px;
	height:100px;
	position:relative;
	border-style:solid;
	border-width:3px;
	border-top-color: #F16436;
	border-bottom-color:transparent;
	border-left-color:transparent;
	border-right-color:transparent;
	z-index:10;
	border-radius:50%;
	-webkit-box-shadow:0 1px 5px 0 rgba(35,181,185,0.15);
	box-shadow:0 1px 5px 0 rgba(35,181,185,0.15);
	background-color: #fff;
	-webkit-animation:zoom 2000ms infinite ease;
	animation:zoom 2000ms infinite ease;
	-webkit-transition:.6s;
	-o-transition:.6s;
	transition:.6s
}
.preloader .preloader-circle2{border-top-color:#0078ff}
.preloader .preloader-img{
	position:absolute;
	top:50%;z-index:200;
	left:0;right:0;
	margin:0 auto;
	text-align:center;
	display:inline-block;
	-webkit-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
	transform:translateY(-50%);
	padding-top:6px;
	-webkit-transition:.6s;
	-o-transition:.6s;
	transition:.6s
}
.preloader .preloader-img img{max-width:55px}
.preloader .pere-text strong{font-weight:800;color:#dca73a;text-transform:uppercase}
@-webkit-keyframes zoom{0%{
	-webkit-transform:rotate(0deg);transform:rotate(0deg);
	-webkit-transition:.6s;-o-transition:.6s;
	transition:.6s}100%{
		-webkit-transform:rotate(360deg);
		transform:rotate(360deg);
		-webkit-transition:.6s;
		-o-transition:.6s;transition:.6s}
	}
@keyframes zoom{0%{
	-webkit-transform:rotate(0deg);
	transform:rotate(0deg);
	-webkit-transition:.6s;
	-o-transition:.6s;transition:.6s}100%{
		-webkit-transform:rotate(360deg);
		transform:rotate(360deg);
		-webkit-transition:.6s;
		-o-transition:.6s;transition:.6s}
	}

    /******************* Accordion Demo - 4 *****************/
#accordion4 .panel{
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin: 0 0 10px;
    overflow: hidden;
    position: relative;
}
#accordion4 .panel-heading{
    padding: 0;
    border: none;
    border-radius: 0;
    margin-bottom: 10px;
    z-index: 1;
    position: relative;
}
#accordion4 .panel-heading:before,
#accordion4 .panel-heading:after{
    content: "";
    width: 50%;
    height: 20%;
    box-shadow: 0 15px 5px rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 15px;
    left: 10px;
    transform: rotate(-3deg);
    z-index: -1;
}
#accordion4 .panel-heading:after{
    left: auto;
    right: 10px;
    transform: rotate(3deg);
}
h4.panel-title{margin:10px 0px !important;}
#accordion4 .panel-title a{
    display: block;
    padding: 15px 70px 15px 70px;
    margin: 0;
    background: #fff;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #003333;
    border-radius: 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1), 0 0 40px rgba(0, 0, 0, 0.1) inset;
    position: relative;
}
#accordion4 .panel-title a:before,
#accordion4 .panel-title a.collapsed:before{
    content: "\f106";
    font-family: "FontAwesome";
    font-weight: 900;
    width: 55px;
    height: 100%;
    text-align: center;
    line-height: 50px;
    border-left: 2px solid #003333;
    position: absolute;
    top: 0;
    right: 0;
}
#accordion4 .panel-title a.collapsed:before{ content: "\f107"; }
#accordion4 .panel-title a .icon{
    display: inline-block;
    width: 55px;
    height: 100%;
    border-right: 2px solid #003333;
    font-size: 20px;
    color: rgba(0,0,0,0.7);
    line-height: 50px;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
}
#accordion4 .panel-body{
    padding: 10px 15px;
    margin: 0 0 20px;
    border-bottom: 3px solid #003333;
    border-top: none;
    background: #fff;
    font-size: 15px;
    color: #333;
    line-height: 27px;
}
