@charset "UTF-8";
/* CSS Document */
/* designed and developed by ff.com.mt */


:root {
	--white: #fff;
    
    --black: #000000;
    
	--green:#4FC09A;

	--darkBlue: #094162;


	--headingFont: "Manrope", Arial, Helvetica, sans-serif;
	--textFont: "Manrope", Arial, Helvetica, sans-serif;
    
    --secondaryFont: "Manrope", Arial, Helvetica, sans-serif;
	
	--miniSectionSpacer: 40px;
	--sectionSpacer: 60px;
	--megaSectionSpacer: 120px;
	
    --sliderHeight: 80vh;
    --shortSliderHeight: 45vh;
    --containerMargin: 80px; /*margin from sides*/
    --containerMarginSmall: 150px;

    --roundedCorners: 20px; 
    --scroll-speed: 0s;
	
	--successGreen: #40a842;
	--successGreen-rgb: rgb(64, 168, 66);
}


html {
	scroll-behavior: smooth;
}


:target:before {
	content: "";
	display: block;
	/* height: 80px;
	margin: -80px 0 0; */
}

.scrollanchor {
	position: absolute;
	top: -68px;
}

@media screen and (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

body {
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	font-family: var(--textFont);
	font-weight: 400;
	color: var(--black);
	background-color: var(--white);
	
    font-size: 13px;
	
   /* 
	overflow-x: hidden;
	overflow: hidden; 
    height: 100%; */
    
}

textarea, input[type=text], button, input[type=submit] { outline: none; -webkit-appearance: none; border-radius: 0; }
input:focus, 
textarea:focus, 
select:focus {
    outline: none !important;
    box-shadow: none !important; /* Removes any box-shadow glow, if applied */
}

a, a:focus, a:active {
    outline: 0 none !important;
}

a {
    color: inherit;
	text-decoration: none;
	font-weight: 700;
    display: block;
}

a:hover {
	text-decoration: underline;
}


.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the overflow:hidden on the .container is removed */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

.container {
	max-width: 2000px; 
	margin-left: auto;
	margin-right: auto;
	width: calc(100% - var(--containerMargin) * 2);
	position: relative;
}

.container.wider {
    width: calc(100% + 60px - var(--containerMargin) * 2);
}

.container.narrow {
	max-width: 1440px;
	width: 85%;
}

.container.narrower {
	max-width: 1050px;
	width: 55%;
}

.container.narrowest {
	max-width: 1050px;
	width: 35%;
}

.container.edgetoedge {
	width: 100%;
}

/*
.container.wide {
	max-width: none;
	margin-left: auto;
	margin-right: auto;
	width: 93%;
}


.padded {
	padding: 80px 100px;
}
*/

.margined {
    margin: var(--containerMargin);
}

.padded {
    padding: var(--containerMargin);
}

.toleft {
	text-align: left;
}

.toright {
	text-align: right;
}

.alignleft, .alignleft img, .pull_left {
	float:left;
}

.alignright, .alignright img, .pull_right {
	float:right;
}

img.alignleft {
	margin-right: 20px;
	margin-bottom: 5px;
	height: auto;
}

.post_container img.alignleft, .post_container img.alignright {
	width: 280px;
	height: auto;
}

.alignleft p.wp-caption-text {
	background: #eee;
	font-size: 10px;
	line-height:  normal;
	padding: 10px;
	margin-top: 0;
	margin-right: 15px;
}

.alignright p.wp-caption-text {
	background: #eee;
	font-size: 10px;
	line-height:  normal;
	padding: 10px;
	margin-top: 0;
	margin-left: 10px;
}

img.alignright {
	margin-left: 20px;
	margin-bottom: 2px;
	height: auto;
}

img.aligncenter {
	width: 100%;
	height: auto;
	display: block;
	margin-left: auto;
	margin-right: auto;	
	text-align: center;
	margin-top: 50px;
	margin-bottom: 50px;
}

hr {
	border: none;
	border-top: 4px solid var(--orange);
	margin: var(--sectionSpacer) 0px;
	padding: 0px;
	height: 1px;
	clear: both;
}

.tablet_portrait, .tablet_landscape, .mobile {
	display: none;
}

.desktop {
	display: block;
}

/* --- sizes --- */

.inline {
	display: inline-block;
	margin-right: 25px;
	vertical-align: top;
}

.inline.middle {
	vertical-align: middle;
}

.quarter {
	width: 25%;
	display: inline-block;
	vertical-align: top;
}

.threequarters {
	width: 75%;
	display: inline-block;
	vertical-align: top;
}

.third {
	width: 33.333%;
	display: inline-block;
	vertical-align: top;
}

.twothirds {
	width: 66.666%;
	display: inline-block;
	vertical-align: top;
}

.half {
	width: 50%;
	display: inline-block;
	vertical-align: top;
}

.thirty {
        width: 30%;
	display: inline-block;
	vertical-align: top;
}

.forty {
        width: 40%;
	display: inline-block;
	vertical-align: top;
}

.twenty {
        width: 20%;
	display: inline-block;
	vertical-align: top;
}

.fifteen {
        width: 15%;
	display: inline-block;
	vertical-align: top;
}

.ten {
        width: 10%;
	display: inline-block;
	vertical-align: top;
}


.sixty {
        width: 60%;
	display: inline-block;
	vertical-align: top;
}

.seventy {
        width: 70%;
	display: inline-block;
	vertical-align: top;
}

.eighty {
        width: 80%;
	display: inline-block;
	vertical-align: top;
}

.eightyfive {
        width: 85%;
	display: inline-block;
	vertical-align: top;
}

.ninety {
       width: 90%;
	display: inline-block;
	vertical-align: top;
}

.fullwidth {
	width: 100%;
	display: block;
}

.bottomalign {
	vertical-align: bottom;
}


.sticky, .Sticky {
	position: -webkit-sticky;
	position: sticky;
}

.leftspacer {
	margin-left: 15%;
}


.rightspacer {
	margin-right: 15%;
}

/* ---- columns ------ */

ul.columns-1, ul.columns-2, ul.columns-3, ul.columns-4, ul.columns-5, ul.columns-6 {
	margin: 0;
	padding: 0;
	list-style-type: none;
}


.columns-1 .column, .fullwidth .column {
	width: 100%;
	margin-right: 0%;
	display: block;
	vertical-align: top;
}

.columns-2 .column {
	width: 48%;
	margin-right: 4%;
	display: inline-block;
	vertical-align: top;
}

.columns-2.tight .column {
	width: 49%;
	margin-right: 1%;
	display: inline-block;
	vertical-align: top;
}

.columns-3 .column {
	width: 30.5%;
	margin-right: 4.25%;
	display: inline-block;
	vertical-align: top;
}

.columns-3.tight .column {
	width: 32%;
	margin-right: 2%;
	display: inline-block;
	vertical-align: top;
}

.columns-4 .column {
	width: 23.5%;
	margin-right: 2%;
	display: inline-block;
	vertical-align: top;
}

.columns-5 .column {
	width: 18.4%;
	margin-right: 2%;
	display: inline-block;
	vertical-align: top;
}

.columns-5 .column {
	width: 19.2%;
	margin-right: 1%;
	display: inline-block;
	vertical-align: top;
}

.columns-6 .column {
	width: 15%;
	margin-right: 2%;
	display: inline-block;
	vertical-align: top;
}


.columns-6 .column:nth-child(6n+6) {
	margin-right: 0px;
}

.columns-5 .column:nth-child(5n+5) {
	margin-right: 0px;
}

.columns-4 .column:nth-child(4n+4) {
	margin-right: 0px;
}

.columns-3 .column:nth-child(3n+3) {
	margin-right: 0px;
}

.columns-2 .column:nth-child(2n+2) {
	margin-right: 0px;
}

.col-2 {
	margin-top: 30px;
	column-count: 2;
	column-gap: 70px;
}

.col-2 p, .col-2 p:first-child {
	display: inline-block;
	margin-top: 40px;
}

/*  --------------------------------  */

.flex {
	display: flex;
}

.flex.fullwidth {
    flex-basis: 100%;
}

.flex.wrap {
	flex-wrap: wrap;
}

.flex-grow {
	flex-grow: 1;
}

.flex.flex-end {
    align-items: flex-end;
}

.flex.flex-center {
    align-items: center;
}

.flex-start {
    align-self: flex-start;
}

.flex.flex-start {
    justify-content: flex-start;
}

.flex-middle {
    align-self: center;
}

.flex-end {
    align-self: flex-end;
}

.flex.gap {
    column-gap: calc(var(--containerMargin)/1.5);
}

.flex.small-gap {
    column-gap: calc(var(--containerMargin)/2);
}

.flex.smaller-gap {
    column-gap: calc(var(--containerMargin)/6);
}

.flex.flex-row {
    flex-direction: row;
}

.space-between {
	justify-content: space-between;
}


.space-around {
	justify-content: space-around;
}


.grid {
    display: grid;
    grid-template-rows: 1fr;
    grid-column-gap: calc(var(--containerMargin)/2);
    grid-row-gap: calc(var(--containerMargin)/2);
}

.grid.col-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid.col-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid.col-4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid.col-5 {
    grid-template-columns: repeat(5, 1fr);
}

.text-left {
	text-align: left;
}

.text-justify {
	text-align: justify;
}

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

.text-right {
	text-align: right;
}

.aligncontainer {
       margin: 0;
	  position: absolute;
	  top: 50%;
	  -ms-transform: translateY(-50%);
  		transform: translateY(-50%);
	width: 100%;
}

.section {
	padding: 60px;
}

.section, section {
    position: relative;
	margin: var(--sectionSpacer) 0;
}

.section.nobottom, section.nobottom, .nobottom {
	margin-bottom: 0 !important;
}

.section.mega, section.mega {
	margin: var(--megaSectionSpacer) 0 var(--megaSectionSpacer) 0;
}

.section.megatop, section.megatop {
	margin-top: var(--megaSectionSpacer);
}

.section.megabottom, section.megabottom {
	margin-bottom: var(--megaSectionSpacer);
}

.section.minitop, section.minitop {
	margin-top: calc(var(--sectionSpacer)/2);
}

.section.minibottom, section.minibottom {
	margin-bottom: calc(var(--sectionSpacer)/2);
}

.section.notop, section.notop, .notop {
	margin-top: 0 !important;
}

.topmargin {
	margin-top: var(--sectionSpacer);
}

.bottommargin {
	margin-bottom: var(--sectionSpacer);
}

section.margin_to_padded, .margin_to_padded {
	margin: 0 !important;
	padding: var(--sectionSpacer) 0;
}

section.margin_to_padded.notop, .margin_to_padded.notop {
     padding-top: 0;   
}

section.margin_to_padded.nobottom, .margin_to_padded.nobottom {
     padding-bottom: 0;   
}

section.margin_to_padded.mega, .margin_to_padded.mega {
	padding: var(--megaSectionSpacer) 0;
}

.section.margin_to_padded.minitop, section.margin_to_padded.minitop {
	padding-top: calc(var(--sectionSpacer)/2);
}

.section.margin_to_padded.minibottom, section.margin_to_padded.minibottom {
	padding-bottom: calc(var(--sectionSpacer)/2);
}


.section.margin_to_padded.megatop, section.margin_to_padded.megatop {
	padding-top: var(--megaSectionSpacer);
}

.section.margin_to_padded.megabottom, section.margin_to_padded.megabottom {
	padding-bottom: var(--megaSectionSpacer);
}

.spacer {
	padding-top: var(--sectionSpacer);
}

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

.backgrounded.fixed {
	background-attachment: fixed;
}

.negativemargin {
    margin-top: calc(var(--sectionSpacer) * -2) !important;
}

/* --- solid button ---- */

.alm-btn-wrap {
	padding-top: var(--miniSectionSpacer) !important;
}

.buttoncontainer.mini {
	margin: var(--miniSectionSpacer) 0;
}

.buttoncontainer {
	margin: var(--sectionSpacer) 0;
}


.simplebutton {
  display: inline-block;
  font-size: 13px;
  text-transform: uppercase;
  margin: 0 5px;
  padding-bottom: 3px;
  position: relative;
  overflow: hidden;
    color: var(--blue);
}

.simplebutton:hover {
    text-decoration: none;
}


.simplebutton::before {
  content: '';
  position: absolute;
  bottom: 0; /* Position at the bottom */
  left: 0;
  width: 100%;
  height: 1px; /* Thickness of the border */
  background-color: transparent;
  border-bottom: 2px solid var(--cyan); /* Border effect */
  transform: scaleX(1); /* Full width initially */
  transform-origin: left; /* Animation starts from the left */
  transition: transform 0.2s ease-out;
    
}

.darkgreybg .simplebutton::before {
    border-bottom: 1px solid var(--white); /* Border effect */
}

.simplebutton:hover::before {
  transform: scaleX(0); /* Shrinks to 0, sliding out to the right */
  transform-origin: right; /* Ensures sliding effect from left to right */
}


.simplebutton:first-child {
    margin-left: 0;
}

.simplebutton:last-child {
    margin-right: 0;
}

.bigbutton, .alm-btn-wrap .alm-load-more-btn.bigbutton {
	margin-right: 10px;
	background-color: transparent;
	color: #fff;
	font-family: var(--headingFont);
	padding: 13px 30px;
	font-size: 16px;
	font-weight: normal;
	 -webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
	display: inline-block;
	text-transform: uppercase;
    vertical-align: middle;
    line-height: 24px;
	
}

.alm-btn-wrap .alm-load-more-btn.bigbutton {
	height: auto !important;
	display: block;
	width: 100%;
	margin-right: 0;
}

.bigbutton:hover {
	text-decoration: none;
}

.bigbutton:first-child {
	margin-left: 0;
}

.bigbutton:last-child {
	margin-right: 0;
}

.bigbutton:after {
    content: 'expand_circle_right'; 
    font-family: 'Material Symbols Outlined';
    font-size: 22px; 
    font-weight: 400;
    vertical-align: top;
    color: var(--cyan);
    margin-left: 10px;
    line-height: 22px;
}

.bigbutton.orange, .alm-btn-wrap .alm-load-more-btn.bigbutton.orange {
    background-color: var(--orange);
	color: var(--white);
}

.bigbutton.orange:hover, .alm-btn-wrap .alm-load-more-btn.bigbutton.orange:hover {
    background-color: var(--orange-brighter);
}

.bigbutton.solid.white {
	background-color: #fff;
	color: var(--blue);
}

.bigbutton.solid.white:hover {
	background-color: var(--cyan-lighter);
	color: var(--blue);
}

.bigbutton.hollow.white {
	border: 2px solid var(--cyan);
	color: var(--white);
}

.bigbutton.hollow.white:hover {
	border: 2px solid var(--white);
	background-color: rgba(255,255,255,0.1);
	color: var(--white);
}

.bigbutton.hollow.blue {
	border: 2px solid var(--blue);
	background-color: transparent;
	color: var(--blue);
	padding: 9px 26px;
}

.bigbutton.hollow.blue:hover {
	border: 2px solid var(--blue);
	background-color: var(--blue-darker-10);
	color: var(--blue);
}

/*----- end buttons ----- */

h1 {
	font-family: var(--headingFont);
	font-weight: bold;
	font-size: 30px;
	margin-top: 0;
	margin-bottom: var(--miniSectionSpacer);
	
	color: var(--brown);
}

h1.mega {
	font-size: 85px;
	line-height: 95px;
}

h2 {
	font-family: var(--headingFont);
	font-weight: bold;
	font-size: 34px;

	line-height: 50px;
	margin-top: 0;
	margin-bottom: var(--miniSectionSpacer);
    
    
}

h2:first-child {
    margin-top: 0;
}

h3 {
	font-family: var(--textFont);
	font-weight: normal;
	font-size:  18px;

	line-height: 32px;
	margin-top: 0;
	margin-bottom: 20px;
}


h4 {
	font-family: var(--textFont);
	font-weight: bold;
	font-size: 16px;
	margin-top: 30px;
}


h5 {
	font-family: var(--textFont);
	font-weight: 400;
	font-size: 18px;
	margin-top: 30px;
}

p {
	font-family: var(--textFont);
	font-weight: normal;
	font-size:  16px;
	line-height: 24px;
    margin-bottom: 28px;
}

.fa-circle {
    color: var(--orange);
    font-size: 10px;
    margin: auto 0;
}

/* --- colours ---- */

.darkgreybg {
    background-color: var(--darkgrey);
    color: var(--white);
}

.whitebg {
	background-color: var(--white);
}

.blackbg {
	background-color: var(--black);
	color: var(--white);
}

.orangebg {
    background-color: var(--orange);
    color: var(--white);
}

.brownbg {
    background-color: var(--brown);
    color: var(--white);
}

.creambg {
	 background-color: var(--cream);
}


.patterned {
    position: relative;
}

.patterned::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images_interface/branding/prohealth-logo-icon-spaced.svg");
    background-repeat: repeat;
    background-size: 70px;
    opacity: 0.1;
    pointer-events: none; /* Ensures it doesn't interfere with clicks */
    z-index: 0; /* Places it behind content */
    background-attachment: fixed;
}

.patterned.feint::after {
    opacity: 0.05;
}


.blackbg .subHeading-text, .orangebg .subHeading-text {
	color: var(--white);
}


/* ------ start your css here .... ---- */

body {
    width:100vw;
    height: 100vh;
    background-image: url('/assets/images_interface/background.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.page-area .half1, .page-area .half2 {
	flex: 1;
	display: flex;
	align-items: flex-end;
	flex-direction: column;
}

.page-area .half1 {
	font-family: var(--headingFont);
	font-size: 16px;
	font-weight: 200;
	text-align: left;
	color: var(--white);
	justify-content: flex-end;
	align-items: flex-start;
	padding-bottom: 100px;
	padding-left: 220px;

	row-gap: 20px;
}

.address::before {
	font-family: "Font Awesome 6 Free";
    content: "\f1ad"; 
    font-weight: 900;
	font-size: 17px;
	color: var(--green);
    margin-right: 5px;
	display: inline-block; /* Ensures it stays separate */
}

.contact-number {
	display: flex;
	align-items: center;
	gap: 2px;
}

.contact-number a {
	text-decoration: none;
	color: inherit;
	font-weight: normal; 
	font-size: 16px;
	line-height: 1.2;
	-webkit-text-size-adjust: none; 
}

.contact-number::before {
	font-family: "Font Awesome 6 Free";
    content: "\f095"; 
    font-weight: 900;
	font-size: 17px;
	color: var(--green);
    margin-right: 5px;
	display: inline-block;
}

.email::before {
	font-family: "Font Awesome 6 Free";
    content: "\f0e0"; 
    font-weight: 900;
	font-size: 17px;
	color: var(--green);
    margin-right: 5px;
}

.policies {
	margin-top: 40px;
	font-size: 14px;
	align-items: last baseline;
}

.policies a {
	font-weight: 200;
}

.ff-logo {
	opacity: 70%;
}

.page-area .half2 {
	justify-content: center;
	height: 100vh;
}

.page-area .half2 .logo-container {
	width: 20%;
	height: auto;
	min-width: 150px;
	border-bottom: 4px solid var(--green);
	padding-bottom: 40px;
}

.page-area h1 {
	margin-top: 40px;
	font-family: var(--headingFont);
	font-size: 45px;
	font-weight: 200;
	color: var(--white);
	text-transform: uppercase;
	text-align: right;
}


@media screen and (max-width: 1685px) {

	.page-area h1 {
		font-size: 50px;
	}

	.page-area .half1 {
		padding-left: 80px;
	}
}

@media screen and (max-width: 1510px) {

	.policies{
		font-size: 12px;
	}

}

@media screen and (max-width: 1470px) {

	.page-area h1 {
		font-size: 40px;
	}

}

@media screen and (max-width: 1300px) {


	.half-page.flex {
		flex-direction: column-reverse;
	}

	.page-area .half1 {
		padding: 0;
		align-items: center;
		padding-top: 100px;
	}

	.page-area .half2 {
		align-items: center;
		padding-top: 120px;
	}

	.page-area .half2 .logo-container {
		padding-bottom: 40px;
		min-width: 150px;
		aspect-ratio: 3 / 1;
	}

	.page-area h1 {
		margin-top: 30px;
	}

	.policies.flex{
		flex-direction: row;
	}
}

@media screen and (max-width: 850px) {

	.policies.flex {
		flex-direction: column;
		align-items: center;
	}

	.page-area .half1 {
		font-size: 15px;
	}

	.page-area .half2 {
		padding-top: 120px;
	}

	.policies {
		font-size: 13px;
	}
}

@media screen and (max-width: 600px) {

	.page-area .half1 {
		padding-top: 50px;
		text-align: center;
	}

	.page-area .half2 {
		padding-top: 150px;
	}

	.page-area .half2 .logo-container {
		padding-bottom: 30px;
		min-width: 130px;
		aspect-ratio: 3 / 1;
	}

	.page-area h1 {
		margin-top: 30px;
		font-size: 25px;
		text-wrap: balance;
		text-align: center;
	}

	.page-area .half1{
		font-size: 14px;
	}

	.policies{
		font-size: 10px;
		text-wrap: balance;
	}

	.policies.flex{
		flex-direction: column;
		align-items: center;
	}

	.ff {
		margin-top: 10px;
	}

	.ff img {
		width: 15px;
		height: 15px;
	}
}

