#fullpage.no-scroll {
	overflow-y: hidden;
	max-height: 100vh;
}

.section {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;

}

.section.one {

}



.section__content {
	position: absolute;
	top: 20%;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	text-align: center;
	text-transform: capitalize;
	color: var(--primary-color);
}


.section__content__title {
	font-size: 3rem;
	font-weight: bold;
	margin-bottom: 0.5rem;
	padding: 10px;
	margin-top:26px;
}

.section__content__subtitle {
	font-size: 1.5rem;
	font-weight: 500;
}



.section__content__subtitle a {
	color: inherit;
}

.section__content__subtitle a:hover {
	text-decoration: underline;
}

a:hover{
	/* background: #397957; */
	color: white;
}

.section__action__container {
	position: absolute;
	bottom: 15%;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.section__action__btn {
	font-size: 1.5rem;
	font-weight: 650;
	padding: 1rem;
	border-radius: 2rem;
	flex-basis: 80%;
	margin-bottom: 1rem;
	text-transform: capitalize;
}

.action__btn__primary {
	/* background: rgba(23, 26, 42, 0.8); */
	background: #35823A;
	color: white;
}

.action__btn__primary a:hover{
	/* background: rgba(23, 26, 42, 0.8); */
	background: #397957;
	/* background: red; */
}

.action__btn__secondary {
	background: rgba(30, 182, 119, 0.65);
	/* color: var(--primary-color); */
	color: white;
}

@media all and (max-width: 767px) {
	.section__content {
	  top: 0;
	}
	.section__content__title{
		margin-top: 0px;
	}
  }
