/*********************************************
# GENERAL
*********************************************/
body{
	background: #ffffff;
	color: #333;
    font-family: 'Roboto', serif;
}
p{
	color: #7a7a7a;
}
a:hover {
	text-decoration:none;
    color: #05bc76;
}
.parallax{
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 0;
}
/*********************************************
# SCROLL TO TOP BTN
*********************************************/
#btn-back-to-top i {
	color:#ffffff;
	font-size: 0.8rem;
}
#btn-back-to-top:hover i {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}
#btn-back-to-top{
	position: fixed;
    bottom: 20px;
    right: 20px;
    height: 70px;
	display: none;
    text-transform: uppercase;
    text-align: center;
    z-index: 99999;
    cursor: pointer;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    background: #05bc76;
    border: 2px solid #05bc76;
    -webkit-box-shadow: -1px 0px 10px rgb(0 0 0 / 10%);
    box-shadow: -1px 0px 10px rgb(0 0 0 / 10%);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
/*********************************************
# TOP BAR
*********************************************/
.top-bar{
	background-color:#F9F9F9;
	color: #8c8c8c;
	font-size: 13px;
	line-height: 1.4;
}

.top-bar .top-bar-left a{
    color: #8c8c8c;
	font-size: 13px;
	text-decoration:none;
}

.top-bar .top-bar-left a:hover{
	color: #05bc76;
}
.top-bar .top-bar-left svg{
	fill: #8c8c8c;
}
/*********************************************
# NAVIGATION
*********************************************/
.navigation{
	background:#ffffff;
}

.navbar-collapse{
	flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
}
a.nav-link{
	color: #333;
	display: block;
    line-height: 4rem;
	border-bottom: 2px solid transparent;
	font-weight: 500;
}
a.nav-link:hover {
	color: #05bc76;
    border-bottom: 2px solid #05bc76;
}
.main-navigation > li {
    display: inline-block;
}

a.header-cta-btn{
	line-height: 10px;
    color: #fff;
    padding: 10px 16px;
    border-radius: 2px;
    background-color: #05BC76;
    border: none;
	text-decoration:none;
	font-weight: 500;
}

a.header-cta-btn:hover{
	background: #223645;
}
/*********************************************
# HERO - CAROUSEL
*********************************************/
/* Place text in the middle of the image */
.hero-text {
	text-align: center;
	width: 80%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
}

.hero-text h2{
	font-size: 2.5rem;
    line-height: 1.4em;
	text-shadow: 0px 0px 2px #8c8c8c;
}

@media screen and (max-width:320px){
	.hero-text h2 {
		font-size: 0.6rem;
	}
}
@media screen and (min-width:321px) and (max-width:769px){
	.hero-text h2 {
		font-size: 0.9rem;
	}
}
@media screen and (max-width:769px){
	.hero-text {
		width: 90%;
	}
	.hero-text h2 {
		text-transform: lowercase;
	}
}
@media screen and (min-width:770px)  and (max-width:960px){
	.hero-text h2 {
		font-size: 1.2rem;
	}
}

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(1, 1);
  }
  to {
    -webkit-transform: scale(1.5, 1.5);
  }
}

@keyframes zoom {
  from {
    transform: scale(1, 1);
  }
  to {
    transform: scale(1.5, 1.5);
  }
}

.carousel-inner .carousel-item > img {
  -webkit-animation: zoom 20s;
  animation: zoom 20s;
}
/*********************************************
# SECTION ARTICLE
*********************************************/
section.article h2{
	font-family: Montserrat, sans-serif;
    color: #333333;
    font-size: 2.25rem;
    font-weight: bold;
    text-transform: capitalize;
}

section.article p{
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.8;
}
/*********************************************
# ABOUT
*********************************************/
#about{
	background:#ffffff;
}
#about p{
	margin: 1rem 0rem;
}

/*********************************************
# PURPOSE
*********************************************/
#purpose{
	background: #F2F2F2;
}

#purpose .box{
	
}
#purpose .box .box-icon i {
    font-size: 3rem;
    color: #08549a;
}
#purpose .box h3{
	font-size: 1.1rem;
    color: #08549a;
	font-weight: 700;
}
#purpose .box p{
	
}

/*********************************************
# VALUES
*********************************************/
#values{
	background:#090F21;
}

.values.article h2,
.values.article p{
	color: #ffffff;
}

.hero-left{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	
}

.hero-left .hero-icon{
	position:relative;
	width: 100%;
	padding-top: 100%;
}

.hero-left .hero-icon i{
	background: #08549a;
	color: #ffffff;
	font-size: 7rem;
	border-radius: 50%;
	
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width:320px){
	.hero-left .hero-icon i {
		font-size: 2rem;
	}
	.hero-left .hero-icon {
		width: 30%;
		padding-top: 30%;
	}
}
@media screen and (min-width:321px) and (max-width:420px){
	.hero-left .hero-icon i {
		font-size: 4rem;
	}
	.hero-left .hero-icon {
		width: 50%;
		padding-top: 50%;
	}
}
@media screen and (min-width:421px) and (max-width:767px){
	.hero-left .hero-icon i {
		font-size: 6rem;
	}
	.hero-left .hero-icon {
		width: 50%;
		padding-top: 50%;
	}
}
@media screen and (min-width:768px) and (max-width:1000px){
	.hero-left .hero-icon i {
		font-size: 5rem;
	}
	.hero-left .hero-icon {
		width: 100%;
		padding-top: 100%;
	}
}

/*********************************************
# VALUES-CONTINUE
*********************************************/
.values-continue .bullet-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.values-continue .bullet-left i,
.values-continue .bullet-right h3{
	color: #08549a;
	font-weight: 600;
	font-size:1.2rem;
}

.values-continue .bullet-left i{
	font-size:4rem;
}


/*********************************************
# START-A-PROJECT
*********************************************/
.start-a-project.parallax{
	height: 400px;
	background-image:url("./../images/blog-23.jpg");
	color:#ffffff;
}
.start-a-project.parallax .overlay{
	background-color: rgba(4, 1, 51, 0.5);
	height: 400px;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.start-a-project.parallax h2{
	font-family: "Montserrat", Sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    text-transform: capitalize;
	padding: 1rem 0rem;
}
.start-a-project.parallax p{
	color:#ffffff;
	font-family: "Source Sans Pro", Sans-serif;
    font-size: 1.125rem;
	padding: 2rem 0rem;
	margin-bottom: 4rem;
}

.start-a-project.parallax a.btn.cta-btn{
	font-family: "Montserrat", Sans-serif;
    font-weight: 600;
	font-size: 1rem;
	
	background-color: #61ce70;
	color:#ffffff;
	border-radius: 4px;
	padding: 0.5rem 1.5rem;
	
	-webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.start-a-project.parallax a.btn.cta-btn:hover{
	background-color: #0c0205;
	
	animation-name: animation-blob-float,animation-blob;
	animation-duration: .3s,1.5s;
	animation-delay: 0s,.3s;
	animation-timing-function: ease-out,ease-in-out;
	animation-iteration-count: 1,infinite;
	animation-fill-mode: forwards;
	animation-direction: normal,alternate;
}
.start-a-project.parallax a.btn.cta-btn:focus{
	
	box-shadow:none;
}
@keyframes animation-blob-float{
	100% {
		transform: translateY(-8px);
	}
}
@keyframes animation-blob{
	0% {
		transform: translateY(-8px);
	}
	50% {
		transform: translateY(-4px);
	}
	100% {
		transform: translateY(-8px);
	}
}
/*********************************************
# FOOTER
*********************************************/
#footer {
    background: #191919;
    line-height: 1.7em;
    color: rgba(255,255,255,0.5);
}

#footer h3:before{
	position: absolute;
	content: "";
	top: 2px;
    left: 0;
    width: 4px;
    height: 22px;
    background: #05bc76;
}	
#footer h3{
	margin-bottom: 0.3rem;
	margin-top: 0;
	position: relative;
	padding-left: 0.9rem;
	font-weight: 500;
	color: #fff;
	font-size:1.5rem;
}

#footer .footer-bottom{
	border-top: 1px solid rgba(255,255,255,0.08);
	padding-top: 1.7rem;
}