@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap');


/*Reset browser styles*/
/* Set box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove paddings */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove margins */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
	margin: 0;
}

/* Set Main Settings for body */
body.fh {
	min-height: 100vh;
	scroll-behavior: smooth;
	text-rendering: optimizeSpeed;
	line-height: 1.5;
}

/* Remove Standard styles for ul and ol which have class*/
.fh ul[class],
.fh ol[class] {
	list-style: none;
}

/* Set img styles */
.fh img {
	max-width: 100%;
	display: block;
}

/* set margins for article article*/
.fh article > * + * {
	margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
.fh input,
.fh button,
.fh textarea,
.fh select {
	font: inherit;
}

.fh button, .fh a{
	cursor: pointer;
}
.fh button {
	border-style: none;
}

/* Remove all animation for people who do not agree to use it */
/*@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}*/
/*End of Reset*/


/*helpers, titles and links*/
body * {
	font-family: 'Roboto', sans-serif;
}

.fh {
	font-size: 1rem;
	color: #000;
}
.fh h1, .fh h2, .fh h3, .fh .title {
	font-weight: normal;
	color: #000;
}
.fh i{
	font-style: normal;
}
.fh a, .fh a.title, .fh .is-blue-text{
	color: #3E93DD;
}
.fh a:hover{
	text-decoration: underline;
}
.fh a.has-arrow:{
	white-space: nowrap;
}
.fh a.has-arrow:after{
	content: "";
	width: 50px;
	height: 1rem;
	display: inline-block;
	background: url(../img/icons/arrow.svg) center center no-repeat transparent;
}
.fh a.is-fixed-bottom{
	position: absolute;
	bottom: 2rem;
	display: block;
	width: 90%;
	box-sizing: border-box;
}
.fh a.has-arrow.is-fixed-bottom:after{
	float: right;
}
.fh .is-orange-text{
	color: #E8963C;
}
.fh .is-gray-text{
	color: #555;
}
.fh .is-small-text{
	font-size: 0.85rem;
}
.fh .subtitle {
	margin-top: 0 !important;
	color: #000;
}
.fh .is-laptop {
	max-width: 768px;
}
.fh .button.is-info{
	background-image: linear-gradient(to bottom, #02ADDB, #177ED7);
	background-image: -webkit-linear-gradient(to bottom, #02ADDB, #177ED7);
	background-image:    -moz-linear-gradient(to bottom, #02ADDB, #177ED7);
	background-image:     -ms-linear-gradient(to bottom, #02ADDB, #177ED7);
	background-image:      -o-linear-gradient(to bottom, #02ADDB, #177ED7);
}
.fh button.button.is-info, .fh button.button.is-info *{
	color: #fff;
}
.fh .button.is-white,  .fh .button.is-white:hover{
	border: 1px solid #000;
}
.fh .button:not(.is-white):hover{
	background: #E8963C;
}
.fh .is-light-blue, .fh button.is-white:hover{
	background: #F2F8FC;
}
.fh .is-dark{
	background-color: #171D2A;
}
.fh .is-dark *{
	color: #fff;
}
.fh .is-dark a{
	color: #C2C2C2;
}
.fh .is-dark .section{
	border-top: 1px solid #C2C2C2;
}
.fh .mx-auto{
	margin-left: auto;
	margin-right: auto;
}
.fh .tiles-xy-centered .tile.is-anchestor{
	justify-content: center;
}
.fh .tiles-xy-centered .tile.is-parent{
	align-items: center;
}
.fh .tiles-equal-heights{
	align-items: stretch;
}

.fh .columns.tiles-equal-heights{
	padding: 0;
	margin: 0 1rem;
}
.fh .card.tiles-equal-heights{
	padding: 0;
	margin: 0 1rem;
	border-radius: 6px;
}

/*Navbar*/
.fh .navbar-menu.has-text-centered .buttons{
	justify-content: center;
}
.fh a.navbar-item{
	color: #4a4a4a;
}
.fh .navbar-item img {
	max-height: 3.5rem;
}
.fh .siteSearch{
	position: relative;
}
.fh input {
	color: #777;
	background: #fff;
}
.fh .siteSearch button{
	background: url(../img/icons/Search.svg) center center no-repeat transparent;
	border: none;
	position: absolute;
	top: 0;
	right: 0;
}
.fh .navbar .siteSearch {
	margin-right: 0.5rem;
}
.fh .navbar .siteSearch input{
	padding-right: 2rem;
	width: 200px;
}
.fh .navbar .siteSearch button{
	width: 2.5rem;
	height: 2.5rem;
}
/*button icons*/
.fh .user{
	background: url(../img/icons/user.svg) center center no-repeat;
}
.fh .lock{
	background: url(../img/icons/lock.svg) center center no-repeat;
}

/*header*/
.fh .header{
	background-image: linear-gradient(to right, #E8963C 50%, #4394D0 50%);
	background-image: -webkit-linear-gradient(to right, #E8963C 50%, #4394D0 50%);
	background-image:    -moz-linear-gradient(to right, #E8963C 50%, #4394D0 50%);
	background-image:     -ms-linear-gradient(to right, #E8963C 50%, #4394D0 50%);
	background-image:      -o-linear-gradient(to right, #E8963C 50%, #4394D0 50%);
	font-size: 1.3 rem;
}
.fh .header .bg-images{
	background: url(../img/Woman.png) left bottom / auto 100% no-repeat,
	url(../img/CellsAndDr.png) right bottom / auto 100% no-repeat;
}
.fh .header *{
	color: #fff;
}
.fh .siteSearch{
	position: relative;
}
.fh .siteSearch input{
	color: #777;
}
.fh .siteSearch button{
	background: url(../img/icons/Search.svg) center center no-repeat transparent;
	border: none;
	position: absolute;
	top: 0;
	right: 0;
}
.fh .header .siteSearch {
	margin: 4rem 4rem 0
}
.fh .header .siteSearch input{
	padding: 1.5rem;
}
.fh .header .siteSearch button{
	width: 3rem;
	height: 3rem;
}
/*soc media icons*/
.subtitle.fh-media-icons{
	margin-bottom: 0.7rem !important;
}
/*End of header*/

/*Content*/
.fh .is-light-blue .level-left,
.fh .sign-up-block .level-left{
	display: block;
	flex-shrink: unset;
	margin-right: 2rem;
}
.fh .sign-up-block .level-right{
	/*position: relative;*/
}
.fh .hexa-content .column{
	padding: 0 5% 4rem;
}
/*hexagon template*/
.hex-container{
	width: 231px;
	margin: 0 auto;
}
.hexagon {
	position: relative;
	height: 200px;
	width: 115.47px;
	background-color: #ffffff;
	margin: 0 57.74px ;
	border-top: solid 1px #3b89dc;
	border-bottom: solid 1px #3b89dc;
}

.hexagon:before,
.hexagon:after {
	content: "";
	position: absolute;
	z-index: 1;
	width: 141.42px;
	height: 141.42px;
	-webkit-transform: scaleX(0.5774) rotate(45deg);
	-ms-transform: scaleX(0.5774) rotate(45deg);
	transform: scaleX(0.5774) rotate(45deg);
	background-color: inherit;
	top: 28.2893px;
}

.hexagon:before {
	right: -70.7107px;
	border-top: solid 1.4142px #3b89dc;
	border-right: solid 1.4142px #3b89dc;
}

.hexagon:after {
	left: -70.7107px;
	border-bottom: solid 1.4142px #3b89dc;
	border-left: solid 1.4142px #3b89dc;
}




.hexagon-shadow {
	position: absolute;
	z-index: 10;
	top: -27px;
	left: 12px;
	height: 160px;
	width: 92.38px;
	background-color: #ffffff;
	margin: 46.19px 0;
	box-shadow: 0 0 20px rgba(0,0,0,0.15);
}

.hexagon-shadow:before,
.hexagon-shadow:after {
	content: "";
	position: absolute;
	z-index: 1;
	width: 113.14px;
	height: 113.14px;
	-webkit-transform: scaleX(0.5774) rotate(45deg);
	-ms-transform: scaleX(0.5774) rotate(45deg);
	transform: scaleX(0.5774) rotate(45deg);
	background-color: inherit;
	top: 23.4315px;
	box-shadow: 0 0 15px rgba(0,0,0,0.12);
}

.hexagon-shadow:before {
	right: -56.5685px;
}

.hexagon-shadow:after {
	left: -56.5685px;
}

/*cover up extra shadows*/
.hexagon-shadow span {
	display: block;
	position: absolute;
	top:0px;
	left: 0;
	height:160px;
	width:92.3760px;
	z-index: 2;
	background: inherit;
}
/*End of hexagon template*/

.fh .fh-quote{
	position: relative;
	padding: 1.5rem 0;
}
.fh .fh-quote:before{
	content: "";
	width: 70px;
	height: 70px;
	display: block;
	position: absolute;
	left: -55px;
	top: -30px;
	background: url(../img/icons/quoteOpen.svg) center center no-repeat transparent;
}
.fh .fh-quote:after{
	content: "";
	width: 70px;
	height: 70px;
	display: block;
	position: absolute;
	right: -55px;
	bottom: -30px;
	background: url(../img/icons/quoteClose.svg) center center no-repeat transparent;
}

.fh .testimonial-author {
	font-size: 1.6rem;
}

.fh .testimonial-author-membership {
	font-size: 1rem;
}

.fh .slide-left, .fh .slide-right {
	position: relative;
}
.fh .slide-left button, .fh .slide-right div {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.fh .slide-left div {
	height: 100%;
	background: url(../img/icons/left.svg) center center no-repeat transparent;
}
.fh .slide-right div {
	background: url(../img/icons/right.svg) center center no-repeat transparent;
}
.fh .fh-box{
	position: relative;
	border-radius: 6px;
	padding: 2rem 1.5rem 3rem;
}
.fh .fh-box:last-child{
	margin-left: 2rem !important;
}
.fh .sign-up-block{
	background-image: linear-gradient(to right, #3E93DD 50%, #ECF4FA 50%);
	background-image: -webkit-linear-gradient(to right, #3E93DD 50%, #ECF4FA 50%);
	background-image:    -moz-linear-gradient(to right, #3E93DD 50%, #ECF4FA 50%);
	background-image:     -ms-linear-gradient(to right, #3E93DD 50%, #ECF4FA 50%);
	background-image:      -o-linear-gradient(to right, #3E93DD 50%, #ECF4FA 50%);
	border-radius: 6px;
}
.fh .sign-up-block *:not(.is-gray-text):not(.button):not(.input){
	color: #fff !important;
}
.fh .sign-up-block .level{
	background: url(../img/bgv2.png) 50% center / contain no-repeat transparent;
	padding: 2.5rem 3rem 3rem;
	position: relative;
}
.fh .sign-up-block .fh-book{
	background: url(../img/BiologicTuneUp-thumb.png) center center / contain no-repeat transparent;
	position: absolute;
	height: 200px;
	width: 300px;
	top: -80px;
	right: 66px;
}
.fh .sign-up-block .fh-book p{
	position: absolute;
	bottom: -1.5rem;
	right: 15%;
}
.fh .sign-up-block .input{
	width: 66%;
}
.fh .sign-up-block .button.is-white{
	border: none;
	margin-bottom: 0;
}
.fh .fh-partners .is-ancestor:last-child {
	box-sizing: border-box;
}
.fh .fh-partners .is-ancestor:last-child .tile.is-child {
	padding: 0 2rem 3rem 2rem;
}
.fh .fh-partners img{
	max-width: 200px;
}
.fh .fh-partners .is-parent {
	flex-flow: row wrap;
	-ms-flex-flow: row wrap;
}
.fh .fh-partners .is-child {
	flex: 1 1 210px;
}

/*Icons*/
.fh .user{
	background: url(../img/icons/user.svg) center center no-repeat;
}
.fh .lock{
	background: url(../img/icons/lock.svg) center center no-repeat;
}
.fh .facebook{
	background: url(../img/icons/fb.svg) center center / contain no-repeat;
}
.fh .twitter{
	background: url(../img/icons/twitter.svg) center center / contain no-repeat;
}
.fh .instagram{
	background: url(../img/icons/instagram.svg) center center / contain no-repeat;
}
.fh .facebook-gray{
	background: url(../img/icons/fb-gray.svg) center center / contain no-repeat;
}
.fh .twitter-gray{
	background: url(../img/icons/twitter-gray.svg) center center / contain no-repeat;
}
.fh .instagram-gray{
	background: url(../img/icons/instagram-gray.svg) center center / contain no-repeat;
}
.fh span.medicine-icon{
	background: url(../img/icons/icon_medicine_orange.svg) center center / 70% no-repeat #fff;
}
.fh span.applefruit-icon{
	background: url(../img/icons/icon_diet_orange.svg) center center / 70% no-repeat #fff;
}
.fh span.leave-icon{
	background: url(../img/icons/icon_herbs_orange.svg) center center / 70% no-repeat #fff;
}
.fh span.heartbeat-icon{
	background: url(../img/icons/icon_body_orange.svg) center center / 70% no-repeat #fff;
}
.fh span.gear-icon{
	background: url(../img/icons/icon_mind_orange.svg) center center / 70% no-repeat #fff;
}
.fh span.stones-icon{
	background: url(../img/icons/icon_spirit_orange.svg) center center / 70% no-repeat #fff;
}
.fh span.care-icon{
	background: url(../img/icons/care.svg) center center / 70% no-repeat #fff;
}
/*End of Icons*/
/*Begin of Modal styles*/
.modal .field{
	margin-bottom: 2rem;
}
.modal .title{
	margin-bottom: 0rem;
}
/*End of Modal styles*/


/*=========================================
Begin Responsive Styles
===========================================*/
@media (min-width: 1100px) and (max-width: 1424px) {
	.fh .is-laptop {
		max-width: 40%;
	}
	.fh .sign-up-block .fh-book{
		right: 0;
	}
	.fh .sign-up-block .level {
		background: url(../img/bgv2.png) 60% 0% / contain no-repeat transparent;
	}
}
@media (min-width: 960px) and (max-width: 1099px) {
	.fh .header .bg-images {
		background: url(../img/CellsAndDr.png) right bottom / auto 100% no-repeat;
	}
	.fh .is-laptop {
		text-align: left;
		max-width: 60%;
		margin-left: 5%;
	}
	.fh .sign-up-block .fh-book{
		right: 0;
	}
	.fh .sign-up-block .level {
		background: url(../img/bgv2.png) 70% 0% / contain no-repeat transparent;
	}
}
@media (max-width: 960px) {
	.fh .header .bg-images {
		background: url(../img/cells.png) right bottom / auto 100% no-repeat;
	}
	.fh .sign-up-block .level-left,
	.fh .is-light-blue .level-left {
		margin-right: 0;
	}
}
@media  (min-width: 768px) and (max-width: 960px) {
	.fh .sign-up-block .level {
		background: url(../img/bgv2.png) -65px 0% / contain no-repeat transparent;
	}
	.fh .sign-up-block .level-left {
		flex:3;
	}
	.fh .sign-up-block .level-right{
		flex:2;
	}
	.fh .sign-up-block .buttons{
		flex-flow: column;
		align-items: flex-start;
	}
	.fh .sign-up-block .buttons input{
		margin-bottom: 1rem;
		width: 100%;
	}
	.fh .sign-up-block .fh-book{
		top: 0;
		right: 0;
	}
}
@media (max-width: 768px) {
	.fh .is-light-blue .level-left{
		text-align: center;
	}
	.fh .is-light-blue .level-right .button{
		margin: auto;
	}
	.fh .tiles-xy-centered .tile.is-child{
		text-align: center !important;
		margin: 2rem auto !important;
	}
	.fh .fh-box{
		margin: 2rem 1rem !important;
	}
	.fh .fh-box:last-child{
		margin-left: 1rem !important;
	}
	.fh .sign-up-block{
		text-align: center;
		background: none #3E93DD;
	}
	.fh .sign-up-block .buttons{
		flex-flow: column;
		justify-content: center;
	}
	.fh .sign-up-block .buttons input{
		margin-bottom: 1rem;
	}
	.fh .sign-up-block .fh-book{
		position: relative;
		top: 0;
		right: 0;
		margin: auto;
	}
	.fh .sign-up-block .fh-book {
		height: 250px;
		width: 100%;
		max-width: 150px;
	}
	.fh .has-text-centered-mobile img{
		margin: auto;
	}
}




/*=========================================
End Responsive Styles
===========================================*/


/*=========================================
Begin slider
===========================================*/
/* Slideshow container */
.slideshow-container {
	max-width: 1000px;
	position: relative;
	margin: auto;
}

/* Hide the images by default */
.mySlides {
	display: none;
}
/* Fading animation */
.fade {
	-webkit-animation-name: fade;
	-webkit-animation-duration: 1.5s;
	animation-name: fade;
	animation-duration: 1.5s;
}

@-webkit-keyframes fade {
	from {opacity: .4}
	to {opacity: 1}
}

@keyframes fade {
	from {opacity: .4}
	to {opacity: 1}
}

/* The dots/bullets/indicators */
.dot {
	cursor: pointer;
	height: 15px;
	width: 15px;
	margin: 0 2px;
	background-color: #bbb;
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.6s ease;
}

.active, .dot:hover {
	background-color: #717171;
}
/*=========================================
End slider
===========================================*/