* {
	-webkit-overflow-scrolling: touch;
}

html {
	font-size: 62.5%; /*1rem = 10px*/
}

body {
	margin: 0;
	padding: 0;
	top: 0;
	left: 0;
	/*overscroll-behavior: none;*/
}

@font-face {
	font-family: GothamRounded;
	src: url("/static/fonts/GothamRounded-Medium.otf") format("truetype");
	font-weight: normal;
	font-display: fallback;
}

@font-face {
	font-family: GothamRoundedBold;
	src: url("/static/fonts/GothamRounded-Bold.otf") format("truetype");
	font-weight: bold;
	font-display: fallback;
}

@font-face {
	font-family: GothamRoundedBook;
	src: url("/static/fonts/GothamRounded-Book.otf") format("truetype");
	font-display: fallback;
}

@font-face {
	font-family: GothamRoundedLight;
	src: url("/static/fonts/GothamRounded-Light.otf") format("truetype");
	font-display: fallback;
}

@font-face {
	font-family: Poppins;
	src: url("/static/fonts/Poppins-Regular.ttf") format("truetype");
	font-display: fallback;
}

@font-face {
	font-family: PoppinsBold;
	src: url("/static/fonts/Poppins-Bold.ttf") format("truetype");
	font-display: fallback;
}

@font-face {
	font-family: PoppinsExtraBold;
	src: url("/static/fonts/Poppins-ExtraBold.ttf") format("truetype");
	font-display: fallback;
}

a {
	font-family: GothamRounded, sans-serif;
}

p {
	font-family: "GothamRoundedLight", sans-serif;
	font-weight: 100;
}

strong {
	font-family: "GothamRoundedBold", sans-serif;
}
.MMHnav {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	height: 90px;
	width: 100%;
	max-width: 100%;
	background-color: white;
	position: fixed;
	top: 0;
	z-index: 100;
	padding: 0 9vw;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

.MMHnav.isScrolled, .nav.solid {
	background-color: white;
	-webkit-box-shadow: 0 2px 4px -2px rgba(0,0,0,.2);
	        box-shadow: 0 2px 4px -2px rgba(0,0,0,.2);
}

.MMHnav .nav-header {
	display: inline;
}

.MMHnav .nav-header > .nav-title {
	display: inline-block;
	color: #fff;
}

.MMHnav img {
	height: 36px;
}

.MMHnav .nav-btn {
	display: none;
}

.MMHnav .nav-links {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-preferred-size: 80%;
	    flex-basis: 80%;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	text-align: right;
}

.MMHnav .nav-links a {
	display: inline-block;
	padding: 9px 10px 13px 10px;
	text-decoration: none;
	color: #404040;
	font-size: 1.4rem;
	font-family: "PoppinsBold", sans-serif;
	text-transform: uppercase;
	line-height: 29px;
	margin-right: 30px;
}

.MMHnav .nav-links img {
	display: none;
	margin: 0 auto;
}

.MMHnav .nav-links a:hover {
	cursor: pointer;
	opacity: 0.8;
}

.MMHnav .nav-buttons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.MMHnav #nav-check {
	display: none;
	height: 40px;
}

.MMHnav .nav-links .roundBtn {
	height: 23px;
	border-radius: 23px;
	font-size: 1.6rem;
	text-align: center;
	margin: 0 10px;
	margin-right: 0px;
	padding-left: 24px;
	padding-right: 24px;
	color: white;
	text-transform: none;
	-webkit-box-shadow: 0 10px 23px 0 rgba(0,0,0,0.05);
	        box-shadow: 0 10px 23px 0 rgba(0,0,0,0.05);
}

.MMHnav .orange {
	background-color: #FF4B33;
}

.MMHnav .cross {
	width: 25px;
}

/*to avoid items wrapping in desktop navbar, mobile navbar at 1150px instead of the usual 767px*/
@media (max-width:1150px) {
	.MMHnav {
		height: 90px;
		padding: 0 5vw;
	}
	.MMHnav .selectContainer {
		display: none;
	}
	.MMHnav .nav-btn {
		display: inline-block;
		right: 0px;
		z-index: 10;
	}
	.MMHnav .nav-btn > label {
		display: inline-block;
		width: 28px;
		height: 25px;
		cursor: pointer;
	}
	.MMHnav .nav-btn > label:hover,.nav #nav-check:checked ~ .nav-btn > label {
		/*background-color: rgba(0, 0, 0, 0.3);*/
	}
	.MMHnav #nav-check:checked ~ .nav-btn > label > span {
		display: none;
	}
	.MMHnav #nav-check:checked ~ .nav-btn > label > .cross {
		display: block;
		position: fixed;
	}
	.MMHnav #nav-check:not(checked) ~ .nav-btn > label > .cross {
		display: none;
	}
	.MMHnav .nav-btn > label > span {
		display: block;
		width: 28px;
		height: 5px;
		border-radius: 5px;
		margin: 0 auto;
		margin-bottom: 5px;
		background-color: #404040;
	}
	.MMHnav .nav-links .roundBtn {
		margin-top: 20px;
		margin-left: 0px;
	}
	.MMHnav .nav-links {
		position: absolute;
		display: block;
		width: 100%;
		background-color: white;
		overflow-y: hidden;
		top: 0px;
		left: 0px;
		text-align: center;
		-webkit-transition: -webkit-transform 400ms linear;
		transition: -webkit-transform 400ms linear;
		-o-transition: transform 400ms linear;
		transition: transform 400ms linear;
		transition: transform 400ms linear, -webkit-transform 400ms linear;
		will-change: transform;
		padding-bottom: 10px;
	}
	.MMHnav .nav-links > a {
		display: block;
		font-size: 1.6rem;
		padding: 10px;
		margin-right: 0px;
	}
	.MMHnav .nav-links > .logoContainer {
		height: 88px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		padding: 0;
		margin-bottom: 20px;
		width: 200px;
		margin-left: 5vw;
	}

	.MMHnav .nav-links img {
		display: block;
		margin-left: 0;
	}

	.MMHnav .nav-buttons {
		display: block;
		padding-bottom: 30px;
	}

	.MMHnav #nav-check:not(:checked) ~ .nav-links {
		-webkit-transform: translateY(-100%);
		    -ms-transform: translateY(-100%);
		        transform: translateY(-100%);
	}
	.MMHnav #nav-check:checked ~ .nav-links {
		-webkit-transform: none;
		    -ms-transform: none;
		        transform: none;
		position: fixed;
	}
	.MMHnav .nav-overlay {
		visibility: hidden;
		opacity: 0;
		width: 100vw;
		height: 100vh;
		position: absolute;
		top: 0;
		left: 0;
		background-color: rgba(64, 64, 64, .5);
		-webkit-transition: visibility 0s, opacity 0.4s linear;
		-o-transition: visibility 0s, opacity 0.4s linear;
		transition: visibility 0s, opacity 0.4s linear;
	}
	.MMHnav #nav-check:checked ~ .nav-overlay {
		visibility: visible;
		opacity: 1;
	}
}

#faq.mainContainer {
	position: relative;
	background: white;
	color: #213F6B;
	margin: 0;
	padding: 0;
	padding-top: 1em;
	margin-top: 120px;
	padding-bottom: 50px;
	left: 0;
}
h1, h2, h3, h4 {
	font-family: "GothamRounded", sans-serif;
}
#faq h1 {
	font-size: 4rem;
	text-align: center;
	position: relative;
}
#faq h2 {
	font-size: 3rem;
}
#faq p {
	font-family: "GothamRounded", sans-serif;
	font-size: 16px;
	line-height: 20px;
	position: relative;
	padding: 0 10vw;
}

@media (max-width:1150px) {
	h1 {
		font-size: 2.6rem;
	}
	#faq.mainContainer {
		margin-top: 90px;
	}
}


#forCarers.mainContainer {
	position: relative;
	background: #27DBBD;
	color: white;
	margin: 0;
	padding: 0;
	top: 0;
	left: 0;
}
h1, h2, h3, h4 {
	font-family: "GothamRounded", sans-serif;
	font-weight: bold;
}
#forCarers h1 {
	font-size: 4rem;
	margin: 0;
}
#forCarers h2 {
	font-size: 2.5rem;
	color: #213F6B;
}
#forCarers p {
	font-family: "GothamRounded", sans-serif;
	font-size: 1.6rem;
	line-height: 20px;
}
#forCarers .triangle-1 {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 50vw 2900px 0;
	border-color: transparent transparent #F8F8F8 transparent;
	position: absolute;
	left: 0;
	bottom: 0;
	top: auto;
}
#forCarers .triangle-2 {
	position: relative;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 100px 100vw;
	border-color: transparent transparent white transparent;
}
#forCarers .triangle-3 {
	position: relative;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 100px 0 0 100vw;
	border-color: white transparent transparent #2ADBBD;
}
#forCarers .imageCol {
	text-align: center;
}
#forCarers .content {
	position: relative;
	margin-top: 120px;
	padding-left: 10vw;
	padding-right: 10vw;
}
#forCarers .content.section1 img {
	width: 90%;
	max-width: 350px;
}
#forCarers .content.section2 {
	margin-top: 0;
	background-color: white;
	position: relative;
	padding: 30px 10vw;
	padding-bottom: 50px;
}
#forCarers .content.section2 .col1 img {
	height: 80px;
}
#forCarers .content.section2 p {
	color: #213F6B
}
/*#forCarers .content.section2 .col2 {
	display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
}*/
#forCarers .content.section2 .col2 img {
	width: 90px;
	margin: 15px;
}
#forCarers .content.section3 {
	margin-top: 0;
	background-color: #2ADBBD;
	padding: 30px 10vw;
}
#forCarers .content.section3 img {
	height: 300px;
}

@media (max-width:767px) {
	h1 {
		font-size: 2.6rem;
	}
	#forCarers .triangle-1 {
		border-width: 0px 0vw 150px 100vw;
		border-color: transparent transparent transparent #F8F8F8;
		top: -30px;
		width: 0;
	}
	#forCarers .triangle-2 {
		border-width: 50px 0px 0px 100vw;
		border-color: transparent transparent transparent white;
	}
	#forCarers .content.section1 {
		margin-top: 120px;
		margin-bottom: 30px;
	}
}




#legalNotice.mainContainer {
	position: relative;
	background: #27DBBD;
	color: white;
	margin: 0;
	padding: 0;
	top: 0;
	left: 0;
}
h1, h2, h3, h4 {
	font-family: "GothamRounded", sans-serif;
	font-weight: bold;
}
#legalNotice h1 {
	font-size: 4rem;
	margin: 0;
}
#legalNotice h2 {
	font-size: 2.5rem;
	color: #213F6B;
}
#legalNotice p {
	font-family: "GothamRounded", sans-serif;
	font-size: 16px;
	line-height: 20px;
}
#legalNotice .triangle-1 {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 72vw 2900px 0;
	border-color: transparent transparent #F8F8F8 transparent;
	position: absolute;
	left: 0;
	bottom: 0;
	top: auto;
}
#legalNotice .triangle-2 {
	position: relative;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 100px 100vw;
	border-color: transparent transparent white transparent;
}
#legalNotice .content {
	position: relative;
	margin-top: 120px;
}
#legalNotice .imageCol {
	text-align: center;
}
#legalNotice .row1 {
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
#legalNotice .row1 img {
	width: 260px;
}
#legalNotice .block-1 {
	padding-left: 10vw;
	padding-right: 10vw;
	background-color: white;
	position: relative;
	padding-top: 40px;
	padding-bottom: 2rem;
}
#legalNotice .block-1 p {
	color: #213F6B
}
#legalNotice .greenBtn {
	margin-top: 40px;
	margin-bottom: 72px;
	background-color: #27DBBD;
	font-family: "GothamRoundedBold", sans-serif;
	font-size: 18px;
	padding: 21px 32px;
	border-radius: 15px;
	-webkit-box-shadow: 0 10px 23px 0 rgba(0,0,0,0.07);
	        box-shadow: 0 10px 23px 0 rgba(0,0,0,0.07);
	text-decoration: none;
	color: white;
	display: inline-block;
}

@media (max-width:767px) {
	h1 {
		font-size: 2.6rem;
	}
	#legalNotice .triangle-1 {
		border-width: 0px 0vw 150px 100vw;
		border-color: transparent transparent transparent #F8F8F8;
		top: -30px;
		width: 0;
	}
	#legalNotice .triangle-2 {
		border-width: 50px 0px 0px 100vw;
		border-color: transparent transparent transparent white;
	}
	#legalNotice .content {
		margin-top: 120px;
		margin-bottom: 30px;
	}
	#legalNotice .block-1 p {
		width: auto;
		padding-left: 2.5rem;
		padding-right: 2.5rem;
	}
}

.contactForm {
	width: 100%;
}
.contactForm input, .contactForm textarea {
	width: 100%;
	padding-left: 30px;
	margin-bottom: 15px;
	background-color: rgba(36, 72, 125, 0.05);
	color: #213F6B;
	border-radius: 15px;
	border: none;
	font-family: "GothamRounded", sans-serif;
	font-size: 1.6rem;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	outline: none;
}
.contactForm.altColor input, .contactForm.altColor textarea {
	background-color: white;
}
.contactForm input {
	height: 60px;
}
.contactForm textarea {
	height: 135px;
	padding-top: 22px;
}
.contactForm input:focus, .contactForm textarea:focus {
	-webkit-box-shadow:0 0 0 2px #213F6B;
	        box-shadow:0 0 0 2px #213F6B;
}
.contactForm label {
	display: none;
}
::-webkit-input-placeholder {
	color: rgba(33,63,107,0.5);
}
::-moz-placeholder {
	color: rgba(33,63,107,0.5);
}
:-ms-input-placeholder {
	color: rgba(33,63,107,0.5);
}
::-ms-input-placeholder {
	color: rgba(33,63,107,0.5);
}
::placeholder {
	color: rgba(33,63,107,0.5);
}
.contactForm .inputContainer {
	text-align: left;
}
.contactForm .submitBtn {
	color: white;
	font-family: "GothamRoundedBold", sans-serif;
	font-size: 18px;
	padding: 21px 32px;
	border-radius: 15px;
	-webkit-box-shadow: 0 10px 23px 0 rgba(0,0,0,0.07);
	        box-shadow: 0 10px 23px 0 rgba(0,0,0,0.07);
	text-decoration: none;
	border: none;
	outline: none;
	cursor: pointer;
	background-color: #27DBBD;
}
.contactForm.altColor .submitBtn {
	background-color: #213F6B;
}
.contactForm a {
	margin-top: 50px;
}
.contactForm img {
	width: 40px;
	vertical-align: middle;
	margin-right: 15px;
}
.contactForm .errorMessage {
	color: red;
	font-size: 1.6rem;
	font-family: "GothamRoundedLight", sans-serif;
	margin-top: -15px;
	margin-bottom: 15px;
}














#elior.mainContainer, body {
	background: #27DBBD;
	margin: 0;
	padding: 0;
	top: 0;
	left: 0;
}
h1, h2, h3, h4 {
	font-family: "GothamRounded", sans-serif;
	font-weight: bold;
}
h1 {
	font-size: 4rem;
}
h2 {
	font-size: 3.5rem;
}
h3 {
	font-size: 1.6rem;
}
p {
	font-size: 1.6rem;
}
#elior .triangle-1 {
	width: 25vw;
	height: 0;
	border-style: solid;
	border-width: 0 75vw 3000px 0;
	border-color: transparent transparent #F8F8F8 transparent;
	position: absolute;
	left: 0;
	top: -120px;
}
#elior .navbar {
	height: 60px;
}
#elior #hero {
	position: relative;
	color: white;
	margin-top: 120px;
}
#elior .heroImage {
	-ms-flex-item-align: center;
	    align-self: center;
	text-align: center;
}
#elior .heroImage img {
	width: 100%;
	max-width: 400px;
}
#elior .heroContent {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
#elior .heroContent .heroTitle {
	-webkit-box-ordinal-group: 2;
	    -ms-flex-order: 1;
	        order: 1;
}
#elior .heroContent .heroBody {
	-webkit-box-ordinal-group: 3;
	    -ms-flex-order: 2;
	        order: 2;
}
#elior .heroContent p {
	font-size: 1.8rem;
}
#elior .heroContent strong {
	font-size: 2rem;
}
#elior #howItWorks {
	margin-top: 110px;
	position: relative;
}
#elior .triangle-2-mobile {
	display: none;
	left: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 100px 0px 0px 100vw;
	border-color: transparent transparent transparent #F8F8F8;
}
#elior .howItWorksContainer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	padding-left: 10vw;
	padding-right: 10vw;
}
#elior #howItWorks h2, #elior #howItWorks h3, #howItWorks p, #howItWorks strong {
	color: #213F6B;
}
#elior .howItWorksContent {
	-webkit-box-flex: 1;
	    -ms-flex: 1 0 25%;
	        flex: 1 0 25%;
}
#elior .howItWorksImage {
	-webkit-box-flex: 1;
	    -ms-flex: 1 0 40%;
	        flex: 1 0 40%;
	overflow: hidden;
	-ms-flex-item-align: center;
	    align-self: center;
	text-align: right;
}
#elior .howItWorksImage img {
	max-height: 400px;
	max-width: 100%;
}
#elior .howItWorksCTA {
	margin-top: 45px;
}
#elior .greenBtn, #elior .greenerBtn, #elior .blueBtn {
	display: inline-block;
	font-family: "GothamRoundedBold", sans-serif;
	font-size: 1.8rem;
	padding: 21px 28px;
	border-radius: 15px;
	-webkit-box-shadow: 0 10px 23px 0 rgba(0,0,0,0.07);
	        box-shadow: 0 10px 23px 0 rgba(0,0,0,0.07);
	text-decoration: none;
	color: white;
	cursor: pointer;
}
#elior .greenBtn {
	background-color: #27DBBD;
}
#elior .blueBtn {
	background-color: #213F6B;
}
#elior .greenerBtn {
	background-color: #16B79C;
}
#elior #features {
	position: relative;
	display: grid;
	left: 0;
}
#elior .block-2 {
	width: 100%;
	background: white;
	padding-top: 80px;
	padding-bottom: 80px;
}
#elior .block-2 h2, #elior .block-2 p{
	color: #213F6B;
	text-align: center;
}
#elior .featuresContainer {
	margin-top: 80px;
	text-align: center;
}
#elior .featureCol {
	margin-bottom: 40px;
}
#elior .featureImageContainer {
	height: 160px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;height: 50%;
}
#elior .featureImage {
	max-height: 160px;
	max-width: 100%;
}
#elior .featureTitle {
	font-family: "GothamRoundedBold", sans-serif;
	padding: 16px 26px;
	border-radius: 15px;
	text-align: center;
	margin: 1em auto;
	margin-top: 2rem;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	text-transform: none;
}
#elior .triangle-2 {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 100px 100vw;
	border-color: transparent transparent white transparent;
}
#elior .triangle-3 {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 100vw 100px 0;
	border-color: transparent white #2adabd transparent;
}
#elior #contact {
	position: relative;
	text-align: center;
	margin: 0 auto;
	padding-top: 0px;
	padding-left: 10vw;
	padding-right: 10vw;
	background-color: white;
	padding-bottom: 100px;
	background-color: #2adabd;
}
#elior #contact p {
	color: white;
}
#elior #contact p:nth-child(1) {
	margin-top: 0;
	padding-top: 80px;
	font-size: 2rem;
	font-family: "GothamRoundedBold", sans-serif;
}
#elior #contact p:nth-child(2) {
	margin-bottom: 80px;
}
#elior #contact p:nth-child(3) {
	font-size: 2rem;
	font-family: "GothamRoundedBold", sans-serif;
}

@media (max-width:767px) {
	h1 {
		font-size: 2.6rem;
	}
	#elior .triangle-1 {
		border-width: 0px 0vw 200px 100vw;
		border-color: transparent transparent transparent #F8F8F8;
		top: -30px;
		width: 0;
	}
	#elior .heroContent .heroTitle {
		-webkit-box-ordinal-group: 2;
		    -ms-flex-order: 1;
		        order: 1;
	}
	#elior .heroContent .heroBody {
		-webkit-box-ordinal-group: 4;
		    -ms-flex-order: 3;
		        order: 3;
	}
	#elior .heroBottom {
		-ms-flex-wrap: nowrap;
		    flex-wrap: nowrap;
		overflow: scroll;
		-webkit-box-pack: normal;
		    -ms-flex-pack: normal;
		        justify-content: normal;
	}
	#elior .triangle-2-mobile {
		display: block;
	}
	#elior .howItWorksContainer {
		background-color: #F8F8F8;
	}
	#elior .triangle-2 {
		display: none;
	}
	#elior .triangle-3 {
		display: none;
	}
	#elior .howItWorksContent {
		-webkit-box-flex: 1;
		    -ms-flex: 1 0 100%;
		        flex: 1 0 100%;
		-webkit-box-ordinal-group: 3;
		    -ms-flex-order: 2;
		        order: 2;
	}
	#elior .howItWorksImage {
		-webkit-box-flex: 1;
		    -ms-flex: 1 0 100%;
		        flex: 1 0 100%;
		-webkit-box-ordinal-group: 2;
		    -ms-flex-order: 1;
		        order: 1;
		margin-top: -100px;
		text-align: center;
	}
	#elior .howItWorksCTA {
		margin-bottom: 40px;
		text-align: center;
	}
	#elior .block-2 {
		padding-bottom: 0px;
	}
	#elior .block-2 > h2, #elior .block-2 > p {
		padding-left: 10vw;
		padding-right: 10vw;
	}
	#elior .featuresContainer {
		margin-top: 40px;
	}
	#elior .triangle-3 {
		display: none;
	}
	#elior .triangle-3-mobile {
		display: block;
	}
}






body {
	background: #27DBBD;
}
#cocoonLanding.mainContainer {
	position: relative;
	background: #27DBBD;
	color: white;
	margin: 0;
	padding: 0;
	top: 0;
	left: 0;
}
h1, h2, h3, h4 {
	font-family: "GothamRounded", sans-serif;
	font-weight: bold;
}
#cocoonLanding h1 {
	font-size: 4rem;
	margin: 0;
}
#cocoonLanding h2 {
	font-size: 2.5rem;
	color: #213F6B;
}
#cocoonLanding p,
#cocoonLanding ul {
	font-family: "GothamRounded", sans-serif;
	font-size: 16px;
	line-height: 20px;
}
#cocoonLanding .triangle-1 {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 72vw 2900px 0;
	border-color: transparent transparent #F8F8F8 transparent;
	position: absolute;
	left: 0;
	bottom: 0;
	top: auto;
	display: none;
}
#cocoonLanding .triangle-2 {
	position: relative;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 100px 100vw;
	border-color: transparent transparent white #2adbbd;
}
#cocoonLanding .triangle-3 {
	position: relative;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 100px 0 0 100vw;
	border-color: white transparent transparent #2adbbd;
}
#cocoonLanding .content {
	position: relative;
	margin-top: 150px;
}
#cocoonLanding .imageCol {
	text-align: center;
}
#cocoonLanding .row1 img {
	width: 260px;
}
#cocoonLanding .block-1 {
	padding-left: 10vw;
	padding-right: 10vw;
	position: relative;
	padding-top: 40px;
	padding-bottom: 2rem;
}
#cocoonLanding .block-1 p,
#cocoonLanding .block-1 ul {
	color: #203F6A
}
#cocoonLanding .block-1:nth-child(4n) {
	background-color: white;
}
#cocoonLanding .block-1:nth-child(4n+2) {
	background-color: #2adbbd;
}
#cocoonLanding .block-1:nth-child(4n+2) p,
#cocoonLanding .block-1:nth-child(4n+2) h2 {
	color: white;
}
#cocoonLanding .greenBtn {
	margin-top: 40px;
	margin-bottom: 72px;
	background-color: #27DBBD;
	font-family: "GothamRoundedBold", sans-serif;
	font-size: 18px;
	padding: 21px 32px;
	border-radius: 15px;
	-webkit-box-shadow: 0 10px 23px 0 rgba(0,0,0,0.07);
	        box-shadow: 0 10px 23px 0 rgba(0,0,0,0.07);
	text-decoration: none;
	color: white;
	display: inline-block;
}

@media (max-width:767px) {
	h1 {
		font-size: 2.6rem;
	}
	#cocoonLanding .triangle-1 {
		border-width: 0px 0vw 150px 100vw;
		border-color: transparent transparent transparent #F8F8F8;
		top: -30px;
		width: 0;
		display: block;
	}
	#cocoonLanding .triangle-2 {
		border-width: 50px 0px 0px 100vw;
		border-color: transparent transparent transparent white;
	}
	#cocoonLanding .triangle-3 {
		border-width: 0px 0px 50px 100vw;
		border-color: transparent transparent white transparent;
	}
	#cocoonLanding .content {
		margin-top: 120px;
		margin-bottom: 30px;
	}
	#cocoonLanding .block-1 p {
		width: auto;
		padding-left: 2.5rem;
		padding-right: 2.5rem;
	}
}




.mainContainer, body {
	position: relative;
	background: #27DBBD;
	color: white;
	margin: 0;
	padding: 0;
	top: 0;
	left: 0;
}
h1, h2, h3, h4 {
	font-family: "GothamRounded", sans-serif;
}
#press h1 {
	font-size: 4rem;
	text-align: center;
	position: relative;
	margin-top: 120px;
}
h2 {
	font-size: 3.5rem;
}
#press p {
	font-family: "GothamRounded", sans-serif;
	font-size: 1.6rem;
	line-height: 20px;
	text-align: center;
	position: relative;
}
#press .triangle-1 {
	width: 7vw;
	height: 0;
	border-style: solid;
	border-width: 0 40vw 2800px 0;
	border-color: transparent transparent #F8F8F8 transparent;
	position: absolute;
	left: 0;
	bottom: 0;
	top: auto;
}
.articlesContainer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	padding-bottom: 80px;
}

@media (max-width:767px) {
	#press h1 {
		font-size: 2.6rem;
		margin-top: 90px;
	}
	#press .triangle-1 {
		border-width: 0px 0vw 70px 100vw;
		border-color: transparent transparent transparent #F8F8F8;
		width: 0;
		position: relative;
		top: 90px;
	}
}


#privacyPolicy.mainContainer {
	position: relative;
	background: white;
	color: #213F6B;
	margin: 0;
	padding: 0;
	padding-top: 1em;
	margin-top: 120px;
	padding-bottom: 50px;
	left: 0;
}
h1, h2, h3, h4 {
	font-family: "GothamRounded", sans-serif;
}
#privacyPolicy h1 {
	font-size: 4rem;
	text-align: center;
	position: relative;
}
#privacyPolicy h2 {
	font-size: 2.5rem;
	position: relative;
	padding: 0 10vw;
}
#privacyPolicy p {
	font-family: "GothamRounded", sans-serif;
	font-size: 16px;
	line-height: 20px;
	position: relative;
	padding: 0 10vw;
}

@media (max-width:1150px) {
	h1 {
		font-size: 2.6rem;
	}
	#privacyPolicy.mainContainer {
		margin-top: 90px;
	}
}


#termsOfUse.mainContainer {
	position: relative;
	background: white;
	color: #213F6B;
	margin: 0;
	padding: 0;
	padding-top: 1em;
	margin-top: 120px;
	padding-bottom: 50px;
	left: 0;
}
h1, h2, h3, h4 {
	font-family: "GothamRounded", sans-serif;
}
#termsOfUse h1 {
	font-size: 4rem;
	text-align: center;
	position: relative;
}
#termsOfUse p {
	font-family: "GothamRounded", sans-serif;
	font-size: 16px;
	line-height: 20px;
	position: relative;
	padding: 0 10vw;
}

@media (max-width:1150px) {
	h1 {
		font-size: 2.6rem;
	}
	#termsOfUse.mainContainer {
		margin-top: 90px;
	}
}


#beneficiaires .react-phone-number-input__row
{
	/* This is done to stretch the contents of this component */
	display     : -webkit-box;
	display     : -ms-flexbox;
	display     : flex;
	-webkit-box-align : center;
	    -ms-flex-align : center;
	        align-items : center;
	padding: 15px;
	border-radius: 15px;
	background-color: #F4F5F7;
}

#beneficiaires .react-phone-number-input__phone
{
	/* The phone number input stretches to fill all empty space */
	-webkit-box-flex : 1;
	    -ms-flex : 1;
	        flex : 1;

	/* The phone number input should shrink
	   to make room for the extension input */
	min-width : 0;
}

#beneficiaires .react-phone-number-input__icon
{
	/* The flag icon size is 4x3 hence the exact `width` and `height` values */
	width      : 26px;
	height     : 20px;

	/* `1px` is still too much for a "retina" screen but there's no way in CSS to specify "hairline" border width. */
	/*border     : 1px solid rgba(0, 0, 0, 0.5);*/

	/* Makes sure `width`x`height` is exactly `4x3` and `border` width is not included in it */
	-webkit-box-sizing : content-box;
	        box-sizing : content-box;
}

#beneficiaires .react-phone-number-input__icon img {
	border-radius: 6px;
}

#beneficiaires .react-phone-number-input__icon--international
{
	/* The international icon size is square */
	/* and also has no border hence the `2 * 1px` `width` and `height` compensation */
	width  : calc(20px + 0px);
	height : calc(20px + 0px);

	/* The international icon size is square hence the exact `padding` value */
	/* for precise alignment with `4x3` sized country flags. */
	padding-left  : 3px;
	padding-right : 3px;

	border : none;
}

#beneficiaires .react-phone-number-input__error
{
	margin-left : calc(1.24em + 2px + 0.3em + 0.35em + 0.5em);
	margin-top  : calc(0.3rem);
	color       : #D30F00;
}

#beneficiaires .react-phone-number-input__icon-image
{
	max-width  : 100%;
	max-height : 100%;
}

/* Removes `<input type="number"/>` up/down arrows in Webkit browsers. */
#beneficiaires .react-phone-number-input__ext-input::-webkit-inner-spin-button,
#beneficiaires .react-phone-number-input__ext-input::-webkit-outer-spin-button
{
	margin             : 0 !important;
	-webkit-appearance : none !important;
	-moz-appearance    : textfield !important;
}

#beneficiaires .react-phone-number-input__ext-input
{
	width : 3em;
}

#beneficiaires .react-phone-number-input__ext
{
	white-space: nowrap;
}

#beneficiaires .react-phone-number-input__ext,
#beneficiaires .react-phone-number-input__ext-input
{
	margin-left : 0.5em;
}

/* Styling native country `<select/>`. */

#beneficiaires .react-phone-number-input__country--native
{
	position     : relative;
	-ms-flex-item-align   : stretch;
	    align-self   : stretch;
	display      : -webkit-box;
	display      : -ms-flexbox;
	display      : flex;
	-webkit-box-align  : center;
	    -ms-flex-align  : center;
	        align-items  : center;
	margin-right : 0.5em;
}

#beneficiaires .react-phone-number-input__country-select
{
	position : absolute;
	top      : 0;
	left     : 0;
	height   : 100%;
	width    : 100%;
	z-index  : 1;
	border   : 0;
	opacity  : 0;
	cursor   : pointer;
}

#beneficiaires .react-phone-number-input__country-select-arrow
{
	display            : block;
	content            : '';
	width              : 13px;
	height             : 8px;
	margin-bottom      : 0.1em;
	margin-top         : 0.3em;
	margin-left        : 10px;
	margin-right       : 6px;
	/*border-width       : 0.35em 0.2em 0 0.2em;
	border-style       : solid;
	border-left-color  : transparent;
	border-right-color : transparent;*/
	color              : #404040;
	/*opacity            : 0.7;*/
	-webkit-transition         : color 0.1s;
	-o-transition         : color 0.1s;
	transition         : color 0.1s;
	background-image   : url("/static/images/mh/menu_arrow.svg");
	background-size    : cover;
}

/* Something from stackoverflow. */
#beneficiaires .react-phone-number-input__country-select-divider
{
	font-size  : 1px;
	background : black;
}

#beneficiaires .react-phone-number-input__country-select:focus + .react-phone-number-input__country-select-arrow,
#beneficiaires .react-phone-number-input__country.rrui__select--focus .rrui__select__arrow
{
	color : #03B2CB;
}

/* Styling phone number input */

#beneficiaires .react-phone-number-input__input
{
	height        : calc(0.3rem * 6);
	outline       : none;
	border-radius : 0;
	padding       : 0;
	-webkit-appearance    : none;
	   -moz-appearance    : none;
	        appearance    : none;
	border        : none;
	/*border-bottom : 1px solid #C5D2E0;*/
	-webkit-transition    : border 0.1s;
	-o-transition    : border 0.1s;
	transition    : border 0.1s;
	font-size     : 1.8rem;
	background: none;
    color: #404040;
    font-family: "MontserratExtraBold", sans-serif;
	font-weight: bold;
}

#beneficiaires .react-phone-number-input__input::-webkit-input-placeholder
{
	font-size: 1.8rem;
}

#beneficiaires .react-phone-number-input__input::-moz-placeholder
{
	font-size: 1.8rem;
}

#beneficiaires .react-phone-number-input__input:-ms-input-placeholder
{
	font-size: 1.8rem;
}

#beneficiaires .react-phone-number-input__input::-ms-input-placeholder
{
	font-size: 1.8rem;
}

#beneficiaires .react-phone-number-input__input::placeholder
{
	font-size: 1.8rem;
}

#beneficiaires .react-phone-number-input__input:focus
{
	border-color : #03B2CB;
}

#beneficiaires .react-phone-number-input__input--disabled
{
	cursor : default;
}

#beneficiaires .react-phone-number-input__input--invalid,
#beneficiaires .react-phone-number-input__input--invalid:focus
{
	border-color : #EB2010;
}

/* Overrides Chrome autofill yellow background color */
#beneficiaires .react-phone-number-input__input:-webkit-autofill
{
	-webkit-box-shadow : 0 0 0 1000px white inset;
	        box-shadow : 0 0 0 1000px white inset;
}

/* A small fix for `react-responsive-ui` */
#beneficiaires .react-phone-number-input__country .rrui__select__button
{
	border-bottom : none;
}
.ReactModalPortal .mhModal {
	max-width: 75%;
	max-height: 100%;
	margin-left: 30px;
	margin-right: 30px;
	padding: 55px 20px 15px 20px;
	position: absolute;
	border-radius: 10px;
	left: 0;
	right: 0;
	margin: 0 auto;
	max-width: 50%;
	max-height: 100%;
	padding: 45px 45px 30px 40px;
	background-color: white;
	text-align: center;
	outline: none;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
}

.ReactModalPortal .mhOverlay {
	position: fixed;
	top: 90px;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(64, 64, 64, .5);
}

.ReactModal__Overlay {
	opacity: 0;
	-webkit-transition: opacity 500ms ease-in-out;
	-o-transition: opacity 500ms ease-in-out;
	transition: opacity 500ms ease-in-out;
}

.ReactModal__Overlay--after-open{
	opacity: 1;
}

.ReactModal__Overlay--before-close{
	opacity: 0;
}

#emailModal .openModal,
#videoModal .openModal {
	display: block;
	padding: 16px 33px;
	border-radius: 100px;
	-webkit-box-shadow: 0 10px 23px 0 rgba(0,0,0,0.05);
	        box-shadow: 0 10px 23px 0 rgba(0,0,0,0.05);
	font-family: "PoppinsBold", sans-serif;
	font-size: 1.6rem;
	color: white;
	text-decoration: none;
	text-align: center;
}
#emailModal .openModal {
	background-color: #F4EC5B;
	color: #404040;
}
#videoModal .openModal {
	background-color: #FF4B33;
	font-size: 1.8rem;
	margin-right: 30px;
}
#emailModal .openModal:hover,
#videoModal .openModal:hover {
	cursor: pointer;
}

.ReactModalPortal .mhModal video {
	margin-top: 20px;
	max-height: 100%;
	max-width: 100%;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	outline: none;
}

.ReactModalPortal .closeModal {
	position: absolute;
	right: 40px;
	top: 30px;
}
.ReactModalPortal .closeModal:hover {
	cursor: pointer;
}
.ReactModalPortal .mhModal h3 {
	font-family: "PoppinsBold", sans-serif;
	font-size: 1.8rem;
	color: #404040;
}
.ReactModalPortal .mhModal p {
	font-family: "Poppins", sans-serif;
	font-size: 1.4rem;
	color: #404040;
}
.ReactModalPortal .mhModal input {
	font-family: "Poppins", sans-serif;
	font-size: 1.4rem;
	border-radius: 10px;
	height: 50px;
	background-color: #F4F5F7;
	border: none;
	padding: 0 15px;
	min-width: 300px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.ReactModalPortal .errorMessage {
	color: red;
	margin-top: 5px;
	font-family: "Poppins", sans-serif;
	font-size: 1.4rem;
}
.ReactModalPortal .submitBtn {
	height: 50px;
	line-height: 50px;
	padding: 0px 33px;
	border-radius: 100px;
	-webkit-box-shadow: 0 10px 23px 0 rgba(0,0,0,0.05);
	        box-shadow: 0 10px 23px 0 rgba(0,0,0,0.05);
	font-family: "PoppinsBold", sans-serif;
	font-size: 1.4rem;
	color: white;
	text-decoration: none;
	margin-top: 20px;
	background-color: #FF4B33;
	border: none;
	outline: none;
}
.ReactModalPortal .submitBtn:hover {
	cursor: pointer;
}

@media (max-width:1150px) {
	#videoModal .openModal {
		font-size: 1.4rem;
	}
}

@media(max-width: 767px) {
	#videoModal {
		/*max-width: 75%;
		max-height: 60%;
		padding: 55px 20px 15px 20px;*/
		margin: 0 auto;
	}
	#emailModal .openModal,
	#videoModal .openModal {
		margin: 0 auto;
		font-size: 1.4rem;
		padding: 16px 24px;
	}
	.ReactModalPortal .modal {
		max-width: 100%;
		max-height: 100%;
		margin-left: 30px;
		margin-right: 30px;
		padding: 55px 20px 15px 20px;
	}
	.ReactModalPortal .mhModal input {
		width: 100%;
		min-width: auto;
	}
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

footer.MMHfooter {
	height: 90px;
	background-color: #F8F8F8;
	/*box-shadow: 0 -3px 10px 0 rgba(0,0,0,.0785);*/
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

footer.MMHfooter a {
	font-family: "PoppinsBold", sans-serif;
	font-size: 1.5rem;
	color: #404040;
	text-decoration: none;
	text-transform: uppercase;
	margin: 0 18px;
}

footer.MMHfooter a:hover,
footer.MMHfooter a:focus,
footer.MMHfooter a:active,
footer.MMHfooter a.active {
	text-decoration: none;
	opacity: 0.8;
}

footer.MMHfooter a:hover {
	cursor: pointer;
}

@media (max-width:767px) {
	footer.MMHfooter a {
		text-align: center;
		-ms-flex-preferred-size: 50%;
		    flex-basis: 50%;
	}
}
 .ReactModalPortal .ccModal {
	max-width: 75%;
	max-height: 100%;
	margin-left: 30px;
	margin-right: 30px;
	position: absolute;
	border-radius: 10px;
	left: 0;
	right: 0;
	margin: 0 auto;
	max-width: 75%;
	max-height: 100%;
	padding: 30px 45px 30px 40px;
	color: #213F6B;
	background-color: white;
	text-align: center;
	outline: none;
	top: 45%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
}

.ReactModalPortal .ccOverlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(43, 37, 96, .5);
	z-index: 1000000;
}

.ReactModal__Overlay {
	opacity: 0;
	-webkit-transition: opacity 500ms ease-in-out;
	-o-transition: opacity 500ms ease-in-out;
	transition: opacity 500ms ease-in-out;
}

.ReactModal__Overlay--after-open{
	opacity: 1;
}

.ReactModal__Overlay--before-close{
	opacity: 0;
}

@media(max-width: 767px) {
	.ReactModalPortal .ccModal {
		padding: 15px;
		top: 50%;
	}
	.ReactModalPortal .ccModal h2 {
		font-size: 1.8rem;
		margin-top: 0px;
	}
	.ReactModalPortal .ccModal p {
		font-size: 1.2rem;
	}
	.ReactModalPortal .ccModal > p {
		height: 100px;
		overflow: scroll;
	}
}











#beneficiaires {
	color: #404040;
	background-color: white;
}

#beneficiaires strong {
	font-family: "PoppinsBold", sans-serif;
}
#beneficiaires h2,
#beneficiaires h3,
#beneficiaires h4 {
	font-family: "PoppinsExtraBold", sans-serif;
	color: #404040;
}
#beneficiaires h1 {
	font-family: "Poppins", sans-serif;
	font-size: 4.5rem;
	line-height: 5.2rem;
	width: 60%;
	margin-right: 100px;
}
#beneficiaires h1 span {
	font-family: "PoppinsExtraBold", sans-serif;
}
#beneficiaires h2 {
	font-size: 3rem;
	line-height: 4rem;
}
#beneficiaires h3 {
	font-size: 1.8rem;
	text-transform: uppercase;
	line-height: 2.3rem;
	letter-spacing: 0.51px;
	width: 67%;
	margin: 18px auto;
}
#beneficiaires p,
#beneficiaires li {
	font-size: 1.6rem;
	font-family: "Poppins", sans-serif;
	line-height: 2rem;
}
#beneficiaires.mainContainer {
	margin-top: 90px;
	padding: 0 9vw;
}

#beneficiaires #hero .row1 .banner img {
	max-width: 100%;
	height: auto;
}

#beneficiaires #hero .row2 {
	margin-top: 38px;
}
#beneficiaires #hero .row2 .imgCol {
	padding-right: 50px;
}
#beneficiaires #hero .row2 img {
	width: 100%;
}
#beneficiaires #hero .row2 p {
	margin-bottom: 25px;
}
#beneficiaires #hero .row2 li {
	margin-bottom: 25px;
}
#beneficiaires #hero .row2 .imgMobile {
	display: none;
}
#beneficiaires #hero .row2 .textCol {
	max-width: 740px;
}
#beneficiaires ul {
	padding-left: 0;
}

/**
 * Change bullet color of list item by replacing it with CSS
 */

#beneficiaires ul li {
	display: inline-block;
	list-style: none; 
	margin: 0 0 16px 1.9225em;
	/* Give the bullet room on the left hand side */
	padding: 0;
	position: relative;
}

 #beneficiaires ul li::before {
	color: #FF4B33;  
	/* color of bullet or square */
	content: "\2022"; 
	/* Unicode of character to precede the list item */
	display: inline-block;
	font-size: 3em; 
	/* use em or % */ 
	left: -0.7225em; 
	/* use em, line up bullet flush with left hand side */
	position: absolute;
	/* Set the bullet positioned absolutely top left */
	top: -0.08em;
	/* use em or % */
}

#beneficiaires .button {
	/*height: 50px;
	line-height: 50px;*/
	padding: 16px 33px;
	border-radius: 100px;
	-webkit-box-shadow: 0 10px 23px 0 rgba(0,0,0,0.05);
	        box-shadow: 0 10px 23px 0 rgba(0,0,0,0.05);
	font-family: "PoppinsBold", sans-serif;
	font-size: 1.8rem;
	color: white;
	margin-right: 30px;
	text-decoration: none;
	margin-bottom: 20px;
}
#beneficiaires .orange {
	background-color: #FF4B33;
}
#beneficiaires .yellow {
	background-color: #F4EC5B;
}

/*the wrapper of the svg to set size in %*/
#beneficiaires .polygon {
	z-index: 0;
	height: 100px;
	width: 100%;
	bottom: 0;
	right: 0;
	background-color: white;
}
#beneficiaires .polygon svg {
	width: 100%;
	height: 100%;
}

/* --------------------- hero --------------------- */

#beneficiaires #hero .row3 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-ms-flex-pack: distribute;
	    justify-content: space-around;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin-top: 30px;
	/*max-width: 620px;*/
}
#beneficiaires #hero .row3 {
	font-family: "Poppins", sans-serif;
	font-size: 1.6rem;
	margin-bottom: 30px;
	color: #404040;
}
#beneficiaires #hero .row3 .SMSFormContainer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding-left: calc(100px + 2rem);
}
#beneficiaires #hero .row3 .SMSFormContainer .SMSFormTitle {
	margin-right: 50px;
}
#beneficiaires #hero .row3 .storeIcons {
	position: relative;
	margin-right: 30px;
	/*margin: 30px;
	margin-top: 3rem;
	margin-left: 0;*/
}
#beneficiaires #hero .row3 .storeIcons img {
	width: 90px;
	/*max-height: 70px;
	max-width: 50%;*/
}
#beneficiaires #hero .row3 .storeIcons a:nth-child(1) img {
	-webkit-transform: rotate(-5deg);
	    -ms-transform: rotate(-5deg);
	        transform: rotate(-5deg);
}
#beneficiaires #hero .row3 .storeIcons a:nth-child(2) img {
	-webkit-transform: rotate(5deg);
	    -ms-transform: rotate(5deg);
	        transform: rotate(5deg);
	margin-left: -33px;
}
#beneficiaires #hero .row3 .storeIcons a:nth-child(1) img:hover {
	-webkit-animation: wiggle3 .5s ease 0s infinite;
	        animation: wiggle3 .5s ease 0s infinite;
}
#beneficiaires #hero .row3 .storeIcons a:nth-child(2) img:hover {
	-webkit-animation: wiggle4 .5s ease 0s infinite;
	        animation: wiggle4 .5s ease 0s infinite;
}
@-webkit-keyframes wiggle3 {
	0% {-webkit-transform:rotate(-5deg);transform:rotate(-5deg);}
	50% {-webkit-transform:rotate(-25deg);transform:rotate(-25deg);}
	100% {-webkit-transform:rotate(-5deg);transform:rotate(-5deg);}
}
@keyframes wiggle3 {
	0% {-webkit-transform:rotate(-5deg);transform:rotate(-5deg);}
	50% {-webkit-transform:rotate(-25deg);transform:rotate(-25deg);}
	100% {-webkit-transform:rotate(-5deg);transform:rotate(-5deg);}
}
@-webkit-keyframes wiggle4 {
	0% {-webkit-transform:rotate(5deg);transform:rotate(5deg);}
	50% {-webkit-transform:rotate(-15deg);transform:rotate(-15deg);}
	100% {-webkit-transform:rotate(5deg);transform:rotate(5deg);}
}
@keyframes wiggle4 {
	0% {-webkit-transform:rotate(5deg);transform:rotate(5deg);}
	50% {-webkit-transform:rotate(-15deg);transform:rotate(-15deg);}
	100% {-webkit-transform:rotate(5deg);transform:rotate(5deg);}
}

/* --------------------- why choose Coorganiz section --------------------- */

#beneficiaires #whyChooseCoorganiz {
	background-color: #F8F8F8;
	padding-top: 30px;
	padding-bottom: 50px;
}

#beneficiaires #whyChooseCoorganiz .polygon {
	background-color: white;
}
#beneficiaires #whyChooseCoorganiz .polygon svg polygon {
	fill: #F4F5F7;
}

#beneficiaires #whyChooseCoorganiz .content {
	text-align: center;
}

#beneficiaires #whyChooseCoorganiz .row1 {
	padding-left: 100px;
	padding-right: 100px;
}

#beneficiaires #whyChooseCoorganiz .row1 h2 {
	margin-top: 10px;
	margin-bottom: 0px;
	text-align: left;
}

#beneficiaires #whyChooseCoorganiz .row1 p {
	/*max-width: 620px;*/
	text-align: left;
	margin: 14px 0px 60px 0px;
}

#beneficiaires #whyChooseCoorganiz .row2 img {
	max-height: 80px;
}

/* --------------------- did you know section --------------------- */

#beneficiaires #howToActivate {
	background-color: #FF4B33;
	color: white;
	padding: 50px 0px 25px 0px;
}

#beneficiaires #howToActivate .buttonCol {
	text-align: center;
	margin: 0 auto;
	margin-top: 5px;
	margin-bottom: 30px;
	max-width: 300px;
}
#beneficiaires #howToActivate .buttonCol .button {
	font-size: 1.4rem;
	margin-right: 0px;
}

#beneficiaires #howToActivate .polygon {
	background-color: #F4F5F7;
}
#beneficiaires #howToActivate .polygon svg polygon {
	fill: #0077BE;
}

#beneficiaires #howToActivate .row1 {
	padding-left: 100px;
}

#beneficiaires #howToActivate .row1 h2 {
	margin-bottom: 44px;
	margin-top: 0px;
	color: white;
}

#beneficiaires #howToActivate .row1 p {
	max-width: 50%;
	margin-top: 10px;
	margin-bottom: 40px;
}

#beneficiaires #howToActivate .row2 .statCol {
	text-align: center;
}

#beneficiaires #howToActivate .row2 .statCol .stat {
	font-family: "PoppinsExtraBold", sans-serif;
	font-size: 7rem;
	width: 86px;
	height: 78px;
	margin: 0px auto;
}

#beneficiaires #howToActivate .row2 .statCol:nth-child(1) .stat {
	border: 4px solid #F4EC5B;
	color: #F4EC5B;
}
#beneficiaires #howToActivate .row2 .statCol:nth-child(2) .stat {
	border: 4px solid #F4EC5B;
	color: #F4EC5B;
}
#beneficiaires #howToActivate .row2 .statCol:nth-child(3) .stat {
	border: 4px solid #F4EC5B;
	color: #F4EC5B;
}

#beneficiaires #howToActivate .row2 .statCol p {
	max-width: 260px;
	margin: 0 auto;
	margin-top: 20px;
	margin-bottom: 40px;
}

#beneficiaires #howToActivate .row2 .statCol strong {
	color: white;
}

/* --------------------- contact section --------------------- */

#beneficiaires #contact {
	padding: 37px 0px 46px 0px;
}
#beneficiaires #contact .polygon {
	background-color: #0077BE;
}
#beneficiaires #contact .polygon svg polygon {
	fill: white;
}
#beneficiaires #contact .row1 {
	padding-left: 100px;
	padding-right: 100px;
}

#beneficiaires #contact .row1 h2 {
	margin-bottom: 0px;
}

#beneficiaires #contact .row1 p {
	margin-top: 0px;
	margin-bottom: 0px;
	line-height: 2.8rem;
}

#beneficiaires #contact .row1 .subtitle {
	margin-top: 10px;
	margin-bottom: 0px;
}

#beneficiaires #contact .row1 .emailContainer {
	word-break: break-all;
}

#beneficiaires #contact .row1 a {
	font-family: "PoppinsExtraBold", sans-serif;
	font-size: 1.8rem;
	text-decoration: none;
	color: #404040;
	margin-left: 10px;
}



@media (max-width:1150px) {
	#beneficiaires.mainContainer {
		padding: 0;
	}
	#beneficiaires h1 {
		font-size: 3.2rem;
		line-height: 3.7rem;
		margin-right: 0;
	}
	#beneficiaires .button {
		font-size: 1.4rem;
	}
	#beneficiaires #hero .row2 {
		padding-left: 5vw;
		padding-right: 5vw;
	}
	#beneficiaires h2 {
		font-size: 2.2rem;
		line-height: 2.7rem;
		margin: 0 auto;
	}
	#beneficiaires #hero .row3 .SMSFormContainer {
		padding-left: calc(5vw + 2rem);
		padding-right: calc(5vw + 2rem);
	}
	#beneficiaires #whyChooseCoorganiz .row1 {
		padding-left: 5vw;
		padding-right: 5vw;
	}
	#beneficiaires #whyChooseCoorganiz .row1 h2 {
		margin-top: 0px;
	}
	#beneficiaires #whyChooseCoorganiz .row1 p {
		max-width: none;
		/*padding: 0 5vw;*/
	}
	#beneficiaires #whyChooseCoorganiz .row2 p {
		max-width: none;
		/*padding: 0 5vw;*/
	}
	#beneficiaires #howToActivate .row1 {
		padding-left: 5vw;
	}
	#beneficiaires #howToActivate .row1 p {
		max-width: none;
		padding: 0;
	}
	#beneficiaires #contact .row1 {
		padding-left: 5vw;
		padding-right: 5vw;
		margin-top: 20px;
	}
}

@media (max-width:767px) {
	#beneficiaires h1 {
		font-size: 2rem;
		line-height: 2.5rem;
	}
	#beneficiaires #hero .row2 {
		margin-top: 0px;
		padding-left: 0;
		padding-right: 0;
	}
	#beneficiaires #hero .row2 .textCol {
		padding-top: 20px;
	}
	#beneficiaires #hero .row2 .textCol p {
		padding-left: 30px;
		padding-right: 30px;
		margin-top: 0px;
		margin-bottom: 0px;
	}
	#beneficiaires #hero .row2 .textCol ul {
		padding-left: 30px;
		padding-right: 30px;
	}
	#beneficiaires #hero .row2 .imgCol {
		display: none;
	}
	#beneficiaires #hero .row2 .imgMobile {
		display: block;
		margin: 10px auto;
	}
	#beneficiaires #hero .row2 p {
		margin-top: 20px;
	}
	#beneficiaires #hero .row3 .SMSFormContainer .SMSFormTitle {
		margin: 0 auto;
		text-align: center;
	}
	#beneficiaires .CTAs {
		max-width: 300px;
		margin: 20px auto;
	}
	#beneficiaires .button {
		margin: 0;
		margin-top: 20px;
		margin-bottom: 20px;
		width: 100%;
		text-align: center;
		font-size: 1.4rem;
		padding: 16px 24px;
	}
	#beneficiaires .polygon {
		height: 40px;
	}
	#beneficiaires #whyChooseCoorganiz .content {
		padding-left: 30px;
		padding-right: 30px;
	}
	#beneficiaires #whyChooseCoorganiz .row1 {
		padding-left: 0;
		padding-right: 0;
	}
	#beneficiaires #whyChooseCoorganiz .row1 p {
		margin-bottom: 40px;
	}
	#beneficiaires #whyChooseCoorganiz .row2 p {
		padding: 0 10vw;
		padding-bottom: 40px;
	}
	#beneficiaires #howToActivate .content {
		padding-left: 30px;
		padding-right: 30px;
	}
	#beneficiaires #howToActivate .row1 {
		padding-left: 0;
	}
	#beneficiaires #howToActivate .row2 .statCol p {
		padding: 0 10vw;
	}
	#beneficiaires #contact .content {
		padding-left: 30px;
		padding-right: 30px;
	}
	#beneficiaires #contact .row1 {
		padding-left: 0;
		padding-right: 0;
	}
}









#entreprises {
	color: #404040;
	background-color: white;
}

#entreprises strong {
	font-family: "PoppinsBold", sans-serif;
}
#entreprises h2,
#entreprises h3,
#entreprises h4 {
	font-family: "PoppinsExtraBold", sans-serif;
	color: #404040;
}
#entreprises h1 {
	font-family: "Poppins", sans-serif;
	font-size: 4.5rem;
	line-height: 5.2rem;
	width: 60%;
	margin-right: 100px;
}
#entreprises h1 span {
	font-family: "PoppinsExtraBold", sans-serif;
}
#entreprises h2 {
	font-size: 3.5rem;
	line-height: 3.8rem;
}
#entreprises h3 {
	font-size: 1.8rem;
	text-transform: uppercase;
	line-height: 2.3rem;
	width: 67%;
	margin: 18px auto;
}
#entreprises p,
#entreprises li {
	font-size: 1.6rem;
	font-family: "Poppins", sans-serif;
	line-height: 2rem;
}
#entreprises.mainContainer {
	margin-top: 90px;
	padding: 0 9vw;
}

#entreprises #hero .row1 .banner img {
	max-width: 100%;
	height: auto;
}

#entreprises #hero .row2 {
	margin-top: 38px;
}
#entreprises #hero .row2 .imgCol {
	padding-right: 50px;
}
#entreprises #hero .row2 img {
	width: 100%;
}
#entreprises #hero .row2 p {
	margin-bottom: 25px;
}
#entreprises #hero .row2 li {
	margin-bottom: 25px;
}
#entreprises #hero .row2 .imgMobile {
	display: none;
}
#entreprises #hero .row2 .textCol {
	max-width: 740px;
}
#entreprises ul {
	padding-left: 0;
}

/**
 * Change bullet color of list item by replacing it with CSS
 */

#entreprises ul li {
	display: inline-block;
	list-style: none; 
	margin: 0 0 16px 1.9225em;
	/* Give the bullet room on the left hand side */
	padding: 0;
	position: relative;
}

 #entreprises ul li::before {
	color: #FF4B33;  
	/* color of bullet or square */
	content: "\2022"; 
	/* Unicode of character to precede the list item */
	display: inline-block;
	font-size: 3em; 
	/* use em or % */ 
	left: -0.7225em; 
	/* use em, line up bullet flush with left hand side */
	position: absolute;
	/* Set the bullet positioned absolutely top left */
	top: -0.08em;
	/* use em or % */
}

#entreprises .CTAs {
	margin-top: 44px;
	margin-bottom: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

#entreprises .button {
	/*height: 50px;
	line-height: 50px;*/
	padding: 16px 33px;
	border-radius: 100px;
	-webkit-box-shadow: 0 10px 23px 0 rgba(0,0,0,0.05);
	        box-shadow: 0 10px 23px 0 rgba(0,0,0,0.05);
	font-family: "PoppinsBold", sans-serif;
	font-size: 1.8rem;
	color: white;
	margin-right: 30px;
	text-decoration: none;
	margin-bottom: 20px;
}
#entreprises .orange {
	background-color: #FF4B33;
}
#entreprises .yellow {
	background-color: #F4EC5B;
	color: #404040;
}

/*the wrapper of the svg to set size in %*/
#entreprises .polygon {
	z-index: 0;
	height: 100px;
	width: 100%;
	bottom: 0;
	right: 0;
	background-color: white;
}
#entreprises .polygon svg {
	width: 100%;
	height: 100%;
}

/* --------------------- why choose Coorganiz section --------------------- */

#entreprises #whyChooseCoorganiz {
	background-color: #F8F8F8;
	padding-top: 30px;
	padding-bottom: 50px;
}

#entreprises #whyChooseCoorganiz .polygon {
	background-color: white;
}
#entreprises #whyChooseCoorganiz .polygon svg polygon {
	fill: #F4F5F7;
}

#entreprises #whyChooseCoorganiz .row1 {
	padding-left: 100px;
	padding-right: 100px;
}

#entreprises #whyChooseCoorganiz .content {
	text-align: center;
}

#entreprises #whyChooseCoorganiz .row1 h2 {
	margin-top: 10px;
	margin-bottom: 0px;
	text-align: left;
}

#entreprises #whyChooseCoorganiz .row1 p {
	/*max-width: 590px;*/
	margin: 10px 0px 60px 0px;
	text-align: left;
}

#entreprises #whyChooseCoorganiz .row2 img {
	max-height: 80px;
}

/* --------------------- did you know section --------------------- */

#entreprises #didYouKnow {
	background-color: #FF4B33;
	color: white;
	padding: 50px 0px 25px 0px;
}

#entreprises #didYouKnow .polygon {
	background-color: #F4F5F7;
}
#entreprises #didYouKnow .polygon svg polygon {
	fill: #0077BE;
}

#entreprises #didYouKnow .row1 {
	padding-left: 100px;
	padding-right: 100px;
}

#entreprises #didYouKnow .row1 h2 {
	margin-bottom: 0px;
	margin-top: 0px;
	color: white;
}

#entreprises #didYouKnow .row1 p {
	/*max-width: 480px;*/
	margin-top: 10px;
	margin-bottom: 40px;
}

#entreprises #didYouKnow .row2 .statCol {
	text-align: center;
	max-width: 260px;
	margin: 0 auto;
	margin-top: 20px;
}

#entreprises #didYouKnow .row2 .statCol .stat {
	font-family: "PoppinsExtraBold", sans-serif;
	font-size: 7rem;
	padding: 0 15px;
}

#entreprises #didYouKnow .row2 .statCol:nth-child(1) .stat {
	border: 4px solid #F4EC5B;
	color: #F4EC5B;
}
#entreprises #didYouKnow .row2 .statCol:nth-child(2) .stat {
	border: 4px solid #F4EC5B;
	color: #F4EC5B;
}
#entreprises #didYouKnow .row2 .statCol:nth-child(3) .stat {
	border: 4px solid #F4EC5B;
	color: #F4EC5B;
}

#entreprises #didYouKnow .row2 .statCol p {
	max-width: 230px;
    margin: 20px auto;
}

#entreprises #didYouKnow .row2 .statCol strong {
	color: white;
}

/* --------------------- contact section --------------------- */

#entreprises #contact {
	padding: 37px 0px 46px 0px;
}
#entreprises #contact .polygon {
	background-color: #0077BE;
}
#entreprises #contact .polygon svg polygon {
	fill: white;
}
#entreprises #contact .row1 {
	padding-left: 100px;
	padding-right: 100px;
}

#entreprises #contact .row1 h2 {
	margin-bottom: 0px;
}

#entreprises #contact .row1 p {
	margin-top: 0px;
	margin-bottom: 0px;
	/*max-width: 865px;*/
	line-height: 2.8rem;
}

#entreprises #contact .row1 .subtitle {
	margin-top: 10px;
	margin-bottom: 0px;
}

#entreprises #contact .row1 .emailContainer {
	word-break: break-all;
}

#entreprises #contact .row1 a {
	font-family: "PoppinsExtraBold", sans-serif;
	font-size: 1.8rem;
	text-decoration: none;
	color: #404040;
	margin-left: 10px;
}



@media (max-width:1150px) {
	#entreprises.mainContainer {
		padding: 0;
	}
	#entreprises h1 {
		font-size: 3.2rem;
		line-height: 3.7rem;
		margin-right: 0;
	}
	#entreprises .button {
		font-size: 1.4rem;
	}
	#entreprises #hero .row2 {
		padding-left: 5vw;
		padding-right: 5vw;
	}
	#entreprises h2 {
		font-size: 2.2rem;
		line-height: 2.7rem;
		margin: 0 auto;
	}
	#entreprises #whyChooseCoorganiz .row1 {
		padding-left: 5vw;
		padding-right: 5vw;
	}
	#entreprises #whyChooseCoorganiz .row1 h2 {
		margin-top: 0px;
	}
	/*#entreprises #whyChooseCoorganiz .row1 p {
		max-width: none;
		padding: 0 5vw;
	}*/
	#entreprises #whyChooseCoorganiz .row2 p {
		max-width: none;
		/*padding: 0 5vw;*/
	}
	#entreprises #didYouKnow .row1 {
		padding-left: 5vw;
		padding-right: 5vw;
	}
	#entreprises #didYouKnow .row1 p {
		max-width: none;
		padding: 0;
	}
	#entreprises #didYouKnow .row2 .statCol p {
		margin-bottom: 40px;
	}
	#entreprises #contact .row1 {
		padding-left: 5vw;
		padding-right: 5vw;
		margin-top: 20px;
	}
}

@media (max-width:767px) {
	#entreprises h1 {
		font-size: 2rem;
		line-height: 2.5rem;
	}
	#entreprises #hero .row2 {
		margin-top: 0px;
		padding-left: 0;
		padding-right: 0;
	}
	#entreprises #hero .row2 .textCol {
		padding-top: 20px;
	}
	#entreprises #hero .row2 .textCol p {
		padding-left: 30px;
		padding-right: 30px;
		margin-top: 0px;
		margin-bottom: 0px;
	}
	#entreprises #hero .row2 .textCol ul {
		padding-left: 30px;
		padding-right: 30px;
	}
	#entreprises #hero .row2 .imgCol {
		display: none;
	}
	#entreprises #hero .row2 .imgMobile {
		display: block;
		margin: 10px auto;
	}
	#entreprises .CTAs {
		max-width: 300px;
		margin: 20px auto;
	}
	#entreprises .button {
		margin: 0;
		margin-top: 20px;
		margin-bottom: 20px;
		width: 100%;
		text-align: center;
		font-size: 1.4rem;
		padding: 16px 24px;
	}
	#entreprises .polygon {
		height: 40px;
	}
	#entreprises #whyChooseCoorganiz .content {
		padding-left: 30px;
		padding-right: 30px;
	}
	#entreprises #whyChooseCoorganiz .row1 {
		padding-left: 0;
		padding-right: 0;
	}
	#entreprises #whyChooseCoorganiz .row1 p {
		margin-bottom: 40px;
	}
	#entreprises #whyChooseCoorganiz .row2 p {
		padding: 0 10vw;
		padding-bottom: 40px;
	}
	#entreprises #didYouKnow .content {
		padding-left: 30px;
		padding-right: 30px;
	}
	#entreprises #didYouKnow .row1 {
		padding-left: 0;
		padding-right: 0;
	}
	#entreprises #didYouKnow .row2 .statCol p {
		/*padding: 0 10vw;*/
	}
	#entreprises #contact .content {
		padding-left: 30px;
		padding-right: 30px;
	}
	#entreprises #contact .row1 {
		padding-left: 0;
		padding-right: 0;
	}
}









#mentionsLegales.mainContainer {
	padding: 0 9vw;
	padding-top: 120px;
	background-color: white;
}
#mentionsLegales section {
	padding-bottom: 50px;
}
#mentionsLegales h2 {
	font-size: 3.5rem;
	color: #404040;
	font-family: "PoppinsExtraBold", sans-serif;
}
#mentionsLegales h3 {
	font-size: 2.5rem;
	color: #404040;
	font-family: "PoppinsExtraBold", sans-serif;
}
#mentionsLegales p,
#mentionsLegales li {
	font-size: 1.6rem;
	color: #404040;
	font-family: "Poppins", sans-serif;
}

@media (max-width:1150px) {
	#mentionsLegales.mainContainer {
		padding: 0 5vw;
		padding-top: 120px;
	}
}
#aboutUs.mainContainer {
	position: relative;
	background: #27DBBD;
	color: white;
	margin: 0;
	padding: 0;
	top: 0;
	left: 0;
}
h1, h2, h3, h4 {
	font-family: "GothamRounded", sans-serif;
	font-weight: bold;
}
#aboutUs h1 {
	font-size: 4rem;
	margin: 0;
}
#aboutUs h2 {
	font-size: 3.5rem;
}
#aboutUs p {
	font-family: "GothamRounded", sans-serif;
	font-size: 1.6rem;
	line-height: 20px;
}
#aboutUs .triangle-1 {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 60vw 2000px 0;
	border-color: transparent transparent #F8F8F8 transparent;
	position: absolute;
	left: 0;
	bottom: 0;
	top: auto;
}
#aboutUs .heroContent {
	padding-right: 6vw;
}
#aboutUs .content {
	position: relative;
	margin-top: 120px;
	padding-bottom: 95px;
}
#aboutUs .row1 {
	margin-bottom: 80px;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
#aboutUs .row1 .imageCol {
	padding-left: 6vw;
}
#aboutUs .row1 img {
	width: 260px;
}
#aboutUs .row2 p {
	color: #213F6B;
	text-align: left;
	padding-left: 6vw;
}
#aboutUs .row2 .imageCol {
	text-align: right;
	padding-left: 3rem;
	padding-right: 6vw;
}
#aboutUs .row2 img {
	width: 150px;
	margin-left: 64px;
}
#aboutUs .triangle-2-mobile {
	display: none;
	left: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 100px 0px 0px 100vw;
	border-color: transparent transparent transparent #F8F8F8;
}
#aboutUs .greenBtn {
	margin-top: 34px;
	background-color: #27DBBD;
	font-family: "GothamRoundedBold", sans-serif;
	font-size: 1.8rem;
	padding: 21px 32px;
	border-radius: 15px;
	-webkit-box-shadow: 0 10px 23px 0 rgba(0,0,0,0.07);
	        box-shadow: 0 10px 23px 0 rgba(0,0,0,0.07);
	text-decoration: none;
	color: white;
	display: inline-block;
	margin-left: 6vw;
	margin-right: 3rem;
}

@media (max-width:767px) {
	h1 {
		font-size: 2.6rem;
	}
	#aboutUs .triangle-1 {
		border-width: 0px 0vw 200px 100vw;
		border-color: transparent transparent transparent #F8F8F8;
		top: -30px;
		width: 0;
	}
	#aboutUs .heroContent {
		padding-left: 10vw;
		padding-right: 10vw;
	}
	#aboutUs .row1 {
		margin-bottom: 40px;
	}
	#aboutUs .row1 .imageCol, #aboutUs .row2 .imageCol {
		text-align: center;
		-webkit-box-ordinal-group: 0;
		    -ms-flex-order: -1;
		        order: -1;
	}
	#aboutUs .row2 .textCol {
		background-color: #F8F8F8;
		padding-bottom: 50px;
		text-align: center;
	}
	#aboutUs .row2 img {
		margin: 10px;
	}
	#aboutUs .row2 p {
		padding-left: 10vw;
		padding-right: 10vw;
	}
	#aboutUs .triangle-2-mobile {
		display: block;
		border-color: #2ADBBD transparent transparent #F8F8F8;
	}
	#aboutUs .content {
		margin-top: 120px;
		margin-bottom: 0;
		padding-bottom: 0;
	}
}




#atWork.mainContainer {
	position: relative;
	background: #27DBBD;
	color: white;
	margin: 0;
	padding: 0;
	top: 0;
	left: 0;
}
h1, h2, h3, h4 {
	font-family: "GothamRounded", sans-serif;
	font-weight: bold;
}
#atWork h1 {
	font-size: 4rem;
	margin: 0;
}
#atWork h2 {
	font-size: 3.5rem;
}
#atWork h3 {
	font-size: 2.2rem;
}
#atWork p {
	font-family: "GothamRounded", sans-serif;
	font-size: 1.6rem;
	line-height: 20px;
}
#atWork .triangle-1 {
	width: 20vw;
	height: 0;
	border-style: solid;
	border-width: 0 50vw 2900px 0;
	border-color: transparent transparent #F8F8F8 transparent;
	position: absolute;
	left: 0;
	bottom: 0;
	top: auto;
}
#atWork .triangle-2 {
	position: relative;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 100px 0 0 100vw;
	border-color: transparent transparent transparent white;
}
#atWork .grid-1 {
	position: relative;
	margin-top: 120px;
	margin-bottom: 30px;
}
#atWork .imageCol {
	text-align: center;
}
#atWork .row1 img {
	width: 80%;
	max-width: 500px;
}
#atWork .grid-2 {
	position: relative;
	background-color: white;
	padding-left: 10vw;
	padding-right: 10vw;
}
#atWork .grid-2 .row2 {
	margin-top: 50px;
}
#atWork .grid-2 h2, #atWork .grid-2 h3, #atWork .grid-2 p {
	color: #203F6A;
}
#atWork .dash {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	width: 69px;
	height: 1px;
	margin-bottom: 20px;
	border-radius: 100px;
	border: 3px solid #27DBBD;
}
#atWork .partners {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-ms-flex-pack: distribute;
	    justify-content: space-around;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 25px 15vw;
	padding-top: 70px;
	padding-bottom: 70px;
	background-color: white;
}
.partners img {
	height: 30px;
	margin: 15px 24px;
}
#atWork .contactBlock {
	position: relative;
	background-color: white;
	text-align: center;
	width: 100%;
	padding-bottom: 90px;
}
#atWork .contactBlock > img {
	max-width: 200px;
	margin-bottom: 40px;
}
#atWork .contactBlock h3 {
	font-size: 2.2rem;
	width: 50%;
	margin: 0 auto;
	margin-bottom: 40px;
	color: #203F6A;
}

@media (max-width:1150px) {
	#atWork .triangle-1 {
		width: 30vw;
		border-width: 0 60vw 2900px 0;
	}
}

@media (max-width:767px) {
	h1 {
		font-size: 2.6rem;
	}
	#atWork .triangle-1 {
		border-width: 0px 0vw 150px 100vw;
		border-color: transparent transparent transparent #F8F8F8;
		top: -30px;
		width: 0;
	}
	#atWork .triangle-2 {
		border-width: 50px 0px 0px 100vw;
		border-color: transparent transparent transparent white;
		display: block;
	}
	#atWork .grid-1 {
		margin-top: 120px;
		margin-bottom: 30px;
	}
}




#home.mainContainer {
	background: #27DBBD;
	margin: 0;
	padding: 0;
	top: 0;
	left: 0;
}
h1, h2, h3, h4 {
	font-family: "GothamRounded", sans-serif;
	font-weight: bold;
}
h1 {
	font-size: 4rem;
}
h2 {
	font-size: 3.5rem;
	line-height: 3.8rem;
}
h3 {
	font-size: 1.6rem;
}
p {
	font-size: 1.6rem;
}
#home .triangle-1 {
	width: 25vw;
	height: 0;
	border-style: solid;
	border-width: 0 75vw 2600px 0;
	border-color: transparent transparent #F8F8F8 transparent;
	position: absolute;
	left: 0;
	top: -120px;
}
#home .navbar {
	height: 60px;
}
#home #hero {
	position: relative;
	color: white;
	margin-top: 120px;
}
#home .heroImage {
	-ms-flex-item-align: center;
	    align-self: center;
	text-align: center;
}
#home .heroImage img {
	width: 100%;
	max-width: 508px;
}
#home .heroContent {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
#home .heroContent .heroTitle {
	-webkit-box-ordinal-group: 2;
	    -ms-flex-order: 1;
	        order: 1;
}
#home .heroContent .heroBody {
	-webkit-box-ordinal-group: 3;
	    -ms-flex-order: 2;
	        order: 2;
}
#home .heroContent .heroCTAs {
	-webkit-box-ordinal-group: 4;
	    -ms-flex-order: 3;
	        order: 3;
}
#home .heroContent p {
	font-size: 1.8rem;
}
#home .heroContent strong {
	font-size: 2rem;
}
#home .heroCTAs {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-ms-flex-pack: distribute;
	    justify-content: space-around;
	margin-top: 30px;
	max-width: 620px;
}
#home .heroContent .heroCTAs > img{
	max-height: 70px;
	max-width: 50%;
}
#home .heroContent .storeIcons {
	position: relative;
	margin: 30px;
	margin-top: 3rem;
	margin-left: 0;
}
#home .heroContent .storeIcons img {
	width: 60px;
}
#home .heroContent .storeIcons a:nth-child(1) img {
	-webkit-transform: rotate(-15deg);
	    -ms-transform: rotate(-15deg);
	        transform: rotate(-15deg);
	/*animation: wiggle1 5s ease 0s infinite;*/
}
#home .heroContent .storeIcons a:nth-child(2) img {
	-webkit-transform: rotate(15deg);
	    -ms-transform: rotate(15deg);
	        transform: rotate(15deg);
	/*animation: wiggle2 5s ease 3s infinite;*/
}
#home .heroContent .storeIcons a:nth-child(1) img:hover {
	-webkit-animation: wiggle3 .5s ease 0s infinite;
	        animation: wiggle3 .5s ease 0s infinite;
}
#home .heroContent .storeIcons a:nth-child(2) img:hover {
	-webkit-animation: wiggle4 .5s ease 0s infinite;
	        animation: wiggle4 .5s ease 0s infinite;
}
@-webkit-keyframes wiggle1 {
	0% {-webkit-transform: rotate(-15deg);transform: rotate(-15deg);}
	2% {-webkit-transform: rotate(-20deg);transform: rotate(-20deg);}
	3.5% {-webkit-transform: rotate(-10deg);transform: rotate(-10deg);}
	5% {-webkit-transform: rotate(-15deg);transform: rotate(-15deg);}
	7% {-webkit-transform: rotate(-20deg);transform: rotate(-20deg);}
	8.5% {-webkit-transform: rotate(-10deg);transform: rotate(-10deg);}
	10% {-webkit-transform: rotate(-15deg);transform: rotate(-15deg);}
	100% {-webkit-transform: rotate(-15deg);transform: rotate(-15deg);}
}
@keyframes wiggle1 {
	0% {-webkit-transform: rotate(-15deg);transform: rotate(-15deg);}
	2% {-webkit-transform: rotate(-20deg);transform: rotate(-20deg);}
	3.5% {-webkit-transform: rotate(-10deg);transform: rotate(-10deg);}
	5% {-webkit-transform: rotate(-15deg);transform: rotate(-15deg);}
	7% {-webkit-transform: rotate(-20deg);transform: rotate(-20deg);}
	8.5% {-webkit-transform: rotate(-10deg);transform: rotate(-10deg);}
	10% {-webkit-transform: rotate(-15deg);transform: rotate(-15deg);}
	100% {-webkit-transform: rotate(-15deg);transform: rotate(-15deg);}
}
@-webkit-keyframes wiggle2 {
	0% {-webkit-transform: rotate(15deg);transform: rotate(15deg);}
	2% {-webkit-transform: rotate(10deg);transform: rotate(10deg);}
	3.5% {-webkit-transform: rotate(20deg);transform: rotate(20deg);}
	5% {-webkit-transform: rotate(15deg);transform: rotate(15deg);}
	100% {-webkit-transform: rotate(15deg);transform: rotate(15deg);}
}
@keyframes wiggle2 {
	0% {-webkit-transform: rotate(15deg);transform: rotate(15deg);}
	2% {-webkit-transform: rotate(10deg);transform: rotate(10deg);}
	3.5% {-webkit-transform: rotate(20deg);transform: rotate(20deg);}
	5% {-webkit-transform: rotate(15deg);transform: rotate(15deg);}
	100% {-webkit-transform: rotate(15deg);transform: rotate(15deg);}
}
@-webkit-keyframes wiggle3 {
	0% {-webkit-transform:rotate(-15deg);transform:rotate(-15deg);}
	50% {-webkit-transform:rotate(-35deg);transform:rotate(-35deg);}
	100% {-webkit-transform:rotate(-15deg);transform:rotate(-15deg);}
}
@keyframes wiggle3 {
	0% {-webkit-transform:rotate(-15deg);transform:rotate(-15deg);}
	50% {-webkit-transform:rotate(-35deg);transform:rotate(-35deg);}
	100% {-webkit-transform:rotate(-15deg);transform:rotate(-15deg);}
}
@-webkit-keyframes wiggle4 {
	0% {-webkit-transform:rotate(15deg);transform:rotate(15deg);}
	50% {-webkit-transform:rotate(-5deg);transform:rotate(-5deg);}
	100% {-webkit-transform:rotate(15deg);transform:rotate(15deg);}
}
@keyframes wiggle4 {
	0% {-webkit-transform:rotate(15deg);transform:rotate(15deg);}
	50% {-webkit-transform:rotate(-5deg);transform:rotate(-5deg);}
	100% {-webkit-transform:rotate(15deg);transform:rotate(15deg);}
}
#home .heroBottom {
	background: rgba(255, 255, 255, 0.5);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 25px 90px;
	margin-top: 70px;
}
#home .heroBottom img {
	height: 30px;
	margin: 15px 24px;
}
#home #howItWorks {
	margin-top: 110px;
	position: relative;
}
#home .triangle-2-mobile {
	display: none;
	left: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 100px 0px 0px 100vw;
	border-color: transparent transparent transparent #F8F8F8;
}
#home .howItWorksContainer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	padding-left: 10vw;
	padding-right: 10vw;
}
#home #howItWorks h2, #home #howItWorks p, #home #howItWorks strong {
	color: #213F6B;
}
#home .howItWorksContent {
	-webkit-box-flex: 1;
	    -ms-flex: 1 0 45%;
	        flex: 1 0 45%;
	margin-right: 80px;
}
#home .howItWorksImage {
	-webkit-box-flex: 1;
	    -ms-flex: 1 0 40%;
	        flex: 1 0 40%;
	overflow: hidden;
	-ms-flex-item-align: center;
	    align-self: center;
}
#home .howItWorksImage img {
	max-height: 500px;
	max-width: 100%;
}
#home .howItWorksCTA {
	margin-top: 45px;
}
#home .greenBtn, #home .greenerBtn {
	display: inline-block;
	font-family: "GothamRoundedBold", sans-serif;
	font-size: 1.8rem;
	padding: 21px 28px;
	border-radius: 15px;
	-webkit-box-shadow: 0 10px 23px 0 rgba(0,0,0,0.07);
	        box-shadow: 0 10px 23px 0 rgba(0,0,0,0.07);
	text-decoration: none;
	color: white;
	cursor: pointer;
}
#home .greenBtn {
	background-color: #27DBBD;
}
#home .greenerBtn {
	background-color: #16B79C;
}
#home .greenBtn svg {
	margin-left: 20px;
}
#home #features {
	position: relative;
	display: grid;
	left: 0;
}
#home .block-2 {
	width: 100%;
	background: white;
	padding-bottom: 100px;
}
#home .block-2 h2, #home .block-2 p{
	color: #213F6B;
	text-align: center;
}
#home .block-2 h2 a {
	color: #213F6B;
	text-decoration: none;
}
#home .featuresContainer {
	margin-top: 80px;
	text-align: center;
}
#home .featureCol {
	margin-bottom: 40px;
}
#home .featureImageContainer {
	height: 160px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;height: 50%;
}
#home .featureImage {
	max-height: 160px;
	max-width: 100%;
}
#home .featureCol:nth-child(2) img {
	max-height: 124px;
}
#home .featureCol:nth-child(6) img {
	max-height: 130px;
}
#home .featureTitle {
	font-family: "GothamRoundedBold", sans-serif;
	padding: 16px 26px;
	border-radius: 15px;
	text-align: center;
	text-transform: uppercase;
	margin: 1em auto;
	margin-top: 2rem;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}
#home .triangle-2 {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 100px 100vw;
	border-color: transparent transparent white transparent;
}
#home #services {
	position: relative;
	display: grid;
}
#home .triangle-3 {
	width: 0px;
	height: 220px;
	border-style: solid;
	border-width: 0px 0vw 450px 100vw;
	border-color: transparent transparent transparent white;
}
#home .triangle-3-mobile {
	display: none;
	position: absolute;
	width: 0px;
	height: 0px;
	bottom: -70px;
	border-style: solid;
	border-width: 0px 0vw 300px 100vw;
	border-color: transparent transparent #2adbbd white;
}
#home .block-3 {
	position: absolute;
	top: 0;
	padding-left: 10vw;
	width: 50vw;
	z-index: 10;
}
#home .block-3 h2, #home .block-3 p {
	color: #213F6B;
}
#home .cardsContainer {
	position: relative;
	margin-top: -400px;
	z-index: 10;
}
#home .blankSpace{
	min-height: 20px;
	margin: 10px;
}
#home #premium {
	display: grid;
	position: relative;
	margin-top: 100px;
	padding-bottom: 70px;
	color: white;
}
#home .triangle-4 {
	width: 0;
	height: 570px;
	border-style: solid;
	border-width: 190px 0px 0px 100vw;
	border-color: transparent transparent transparent white;
	position: absolute;
	left: 0;
	top: 300px;
}
#home .triangle-4-mobile {
	width: 0;
	height: 0px;
	border-style: solid;
	border-width: 300px 0px 0px 100vw;
	border-color: transparent transparent transparent white;
	position: absolute;
	left: 0;
	bottom: 0px;
}
#home .rectangle {
	background-color: white;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 490px;
}
#home .block-4 {
	position: relative;
	z-index: 10;
	text-align: center;
	margin: 0 auto;
	margin-bottom: 80px;
	width: 57vw;
}
#home .pricingCard {
	position: relative;
	background-color: white;
	border-radius: 30px;
	-webkit-box-shadow: 0 31px 44px 0 rgba(0,0,0,0.06);
	        box-shadow: 0 31px 44px 0 rgba(0,0,0,0.06);
	font-family: "GothamRoundedBold", sans-serif;
	padding-top: 37px;
	padding-bottom: 30px;
	z-index: 10;
	-webkit-transform: translateZ(0);
	        transform: translateZ(0);
	-webkit-transition: -webkit-transform .4s ease-out;
	transition: -webkit-transform .4s ease-out;
	-o-transition: transform .4s ease-out;
	transition: transform .4s ease-out;
	transition: transform .4s ease-out, -webkit-transform .4s ease-out;
}
#home .pricingCard:hover {
	-webkit-transform: scale(1.015);
	    -ms-transform: scale(1.015);
	        transform: scale(1.015);
	-webkit-transition: -webkit-transform .4s ease-in;
	transition: -webkit-transform .4s ease-in;
	-o-transition: transform .4s ease-in;
	transition: transform .4s ease-in;
	transition: transform .4s ease-in, -webkit-transform .4s ease-in;
}
#home .pricingTitle {
	font-size: 35px;
	margin-bottom: 30px;
	padding-left: 15%;
}
#home .pricingCard#free .pricingTitle{
	color: #27DBBD;
}
#home .pricingCard#paid .pricingTitle{
	color: #FFC400;
}
#home .pricingContent {
	padding-left: 15%;
	margin-bottom: 70px;
}
#home .pricingItem {
	margin: 9px 0px;
	font-size: 1.5rem;
	position: relative;
}
#home .pricingItem a {
	color: #213F6B;
	text-decoration: none;
	font-family: "GothamRoundedBold", sans-serif;
}
#home .pricingItem svg {
	position: absolute;
    left: -30px;
}
#home .pricingItem.included {
	color: #213F6B;
}
#home .pricingItem.nonIncluded {
	color: rgba(32,63,106,0.3);
}
#home .pricingCTA {
	text-align: center;
}
#home .pricingCard#paid .pricingCTA .greenBtn,
#home .pricingCard#paid .pricingCTA .greenerBtn {
	width: 75%;
	margin-bottom: 12px;
}
#home .ribbon-wrapper {
	width: 153px;
	height: 132px;
	overflow: hidden;
	position: absolute;
	top: -3px;
	right: -3px;
}
#home .ribbon {
	font-size: 1.2rem;
	font-family: "GothamRoundedBold", sans-serif;
	text-transform: uppercase;
	color: #333;
	text-align: center;
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	position: relative;
	padding: 7px 20px;
	top: 32px;
	right: 0px;
	width: 160px;
	background-color: #FFC400;
	color: #fff;
	border-radius: 11px 11px 4px 4px;
}
#home #contact {
	position: relative;
	text-align: center;
	margin: 0 auto;
	padding-top: 80px;
	background-color: white;
	padding-bottom: 100px;
}
#home #contact h2 {
	color: #213F6B;
	margin-bottom: 50px;
}

@media (max-width:1150px) {
	#home .triangle-1 {
		border-width: 0 50vw 2600px 0;
		width: 31vw;
	}
}


@media (max-width:768px) {
	#home h1 {
		font-size: 2.6rem;
	}
	#home .nav {
		height: 90px;
	}
	#home .triangle-1 {
		border-width: 0px 0vw 200px 100vw;
		border-color: transparent transparent transparent #F8F8F8;
		top: -30px;
		width: 0;
	}
	#home .heroContent .heroTitle {
		-webkit-box-ordinal-group: 2;
		    -ms-flex-order: 1;
		        order: 1;
	}
	#home .heroContent .heroBody {
		-webkit-box-ordinal-group: 4;
		    -ms-flex-order: 3;
		        order: 3;
	}
	#home .heroContent .heroCTAs {
		-webkit-box-ordinal-group: 3;
		    -ms-flex-order: 2;
		        order: 2;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		margin: 0 auto;
	}
	#home .heroContent .storeIcons {
		margin: 0;
		margin-bottom: 30px;
		-ms-flex-preferred-size: 100%;
		    flex-basis: 100%;
		text-align: center;
	}
	#home .heroBottom {
		-ms-flex-wrap: nowrap;
		    flex-wrap: nowrap;
		overflow: scroll;
		-webkit-box-pack: normal;
		    -ms-flex-pack: normal;
		        justify-content: normal;
		padding-left: 0px;
		padding-right: 0px;
	}
	#home .triangle-2-mobile {
		display: block;
	}
	#home .howItWorksContainer {
		background-color: #F8F8F8;
	}
	#home .triangle-2 {
		display: none;
	}
	#home .howItWorksContent {
		-webkit-box-flex: 1;
		    -ms-flex: 1 0 100%;
		        flex: 1 0 100%;
		-webkit-box-ordinal-group: 3;
		    -ms-flex-order: 2;
		        order: 2;
	}
	#home .howItWorksImage {
		-webkit-box-flex: 1;
		    -ms-flex: 1 0 100%;
		        flex: 1 0 100%;
		-webkit-box-ordinal-group: 2;
		    -ms-flex-order: 1;
		        order: 1;
		margin-top: -100px;
	}
	#home .howItWorksCTA {
		margin-bottom: 40px;
		text-align: center;
	}
	#home .block-2 {
		padding-bottom: 0px;
	}
	#home .block-2 > h2, #home .block-2 > p {
		padding-left: 10vw;
		padding-right: 10vw;
	}
	#home .featuresContainer {
		margin-top: 40px;
	}
	#home .triangle-3 {
		display: none;
	}
	#home .triangle-3-mobile {
		display: block;
	}
	#home #services {
		background-color: white;
	}
	#home .block-3 {
		position: inherit;
		padding-left: 10vw;
		padding-right: 10vw;
		width: auto;
	}
	#home .cardsContainer {
		margin-top: 0px;
		padding-left: 10vw;
		padding-right: 10vw;
	}
	#home .blankSpace {
		display: none;
	}
	#home #premium {
		margin-top: 40px;
	}
	#home .triangle-4 {
		display: none;
	}
	#home .triangle-4-mobile {
		display: block;
	}
	#home .rectangle {
		display: none;
	}
	#home .block-4 {
		margin-bottom: 15px;
		padding: 0px 20px;
		width: auto;
	}
	#home .pricingCard {
		margin-top: 15px;
		margin-bottom: 15px;
	}
	#home .pricingTitle {
		text-align: center;
		padding: 0px;
	}
}

.react-phone-number-input__row
{
	/* This is done to stretch the contents of this component */
	display     : -webkit-box;
	display     : -ms-flexbox;
	display     : flex;
	-webkit-box-align : center;
	    -ms-flex-align : center;
	        align-items : center;
	padding: 20px;
	border-radius: 15px;
	background-color: rgba(255,255,255,0.3);
}

.react-phone-number-input__phone
{
	/* The phone number input stretches to fill all empty space */
	-webkit-box-flex : 1;
	    -ms-flex : 1;
	        flex : 1;

	/* The phone number input should shrink
	   to make room for the extension input */
	min-width : 0;
}

.react-phone-number-input__icon
{
	/* The flag icon size is 4x3 hence the exact `width` and `height` values */
	width      : 26px;
	height     : 20px;

	/* `1px` is still too much for a "retina" screen but there's no way in CSS to specify "hairline" border width. */
	/*border     : 1px solid rgba(0, 0, 0, 0.5);*/

	/* Makes sure `width`x`height` is exactly `4x3` and `border` width is not included in it */
	-webkit-box-sizing : content-box;
	        box-sizing : content-box;
}

.react-phone-number-input__icon img {
	border-radius: 6px;
}

.react-phone-number-input__icon--international
{
	/* The international icon size is square */
	/* and also has no border hence the `2 * 1px` `width` and `height` compensation */
	width  : calc(20px + 0px);
	height : calc(20px + 0px);

	/* The international icon size is square hence the exact `padding` value */
	/* for precise alignment with `4x3` sized country flags. */
	padding-left  : 3px;
	padding-right : 3px;

	border : none;
}

.react-phone-number-input__error
{
	margin-left : calc(1.24em + 2px + 0.3em + 0.35em + 0.5em);
	margin-top  : calc(0.3rem);
	color       : #D30F00;
}

.react-phone-number-input__icon-image
{
	max-width  : 100%;
	max-height : 100%;
}

/* Removes `<input type="number"/>` up/down arrows in Webkit browsers. */
.react-phone-number-input__ext-input::-webkit-inner-spin-button,
.react-phone-number-input__ext-input::-webkit-outer-spin-button
{
	margin             : 0 !important;
	-webkit-appearance : none !important;
	-moz-appearance    : textfield !important;
}

.react-phone-number-input__ext-input
{
	width : 3em;
}

.react-phone-number-input__ext
{
	white-space: nowrap;
}

.react-phone-number-input__ext,
.react-phone-number-input__ext-input
{
	margin-left : 0.5em;
}

/* Styling native country `<select/>`. */

.react-phone-number-input__country--native
{
	position     : relative;
	-ms-flex-item-align   : stretch;
	    align-self   : stretch;
	display      : -webkit-box;
	display      : -ms-flexbox;
	display      : flex;
	-webkit-box-align  : center;
	    -ms-flex-align  : center;
	        align-items  : center;
	margin-right : 0.5em;
}

.react-phone-number-input__country-select
{
	position : absolute;
	top      : 0;
	left     : 0;
	height   : 100%;
	width    : 100%;
	z-index  : 1;
	border   : 0;
	opacity  : 0;
	cursor   : pointer;
}

.react-phone-number-input__country-select-arrow
{
	display            : block;
	content            : '';
	width              : 13px;
	height             : 8px;
	margin-bottom      : 0.1em;
	margin-top         : 0.3em;
	margin-left        : 10px;
	margin-right       : 6px;
	/*border-width       : 0.35em 0.2em 0 0.2em;
	border-style       : solid;
	border-left-color  : transparent;
	border-right-color : transparent;*/
	color              : white;
	/*opacity            : 0.7;*/
	-webkit-transition         : color 0.1s;
	-o-transition         : color 0.1s;
	transition         : color 0.1s;
	background-image   : url("/static/images/menu_arrow.png");
	background-size    : cover;
}

/* Something from stackoverflow. */
.react-phone-number-input__country-select-divider
{
	font-size  : 1px;
	background : black;
}

.react-phone-number-input__country-select:focus + .react-phone-number-input__country-select-arrow,
.react-phone-number-input__country.rrui__select--focus .rrui__select__arrow
{
	color : #03B2CB;
}

/* Styling phone number input */

.react-phone-number-input__input
{
	height        : calc(0.3rem * 6);
	outline       : none;
	border-radius : 0;
	padding       : 0;
	-webkit-appearance    : none;
	   -moz-appearance    : none;
	        appearance    : none;
	border        : none;
	/*border-bottom : 1px solid #C5D2E0;*/
	-webkit-transition    : border 0.1s;
	-o-transition    : border 0.1s;
	transition    : border 0.1s;
	font-size     : 1.8rem;
	background: none;
    color: white;
    font-family: "GothamRounded", sans-serif;
	font-weight: bold;
}

.react-phone-number-input__input::-webkit-input-placeholder
{
	font-size: 1.4rem;
}

.react-phone-number-input__input::-moz-placeholder
{
	font-size: 1.4rem;
}

.react-phone-number-input__input:-ms-input-placeholder
{
	font-size: 1.4rem;
}

.react-phone-number-input__input::-ms-input-placeholder
{
	font-size: 1.4rem;
}

.react-phone-number-input__input::placeholder
{
	font-size: 1.4rem;
}

.react-phone-number-input__input:focus
{
	border-color : #03B2CB;
}

.react-phone-number-input__input--disabled
{
	cursor : default;
}

.react-phone-number-input__input--invalid,
.react-phone-number-input__input--invalid:focus
{
	border-color : #EB2010;
}

/* Overrides Chrome autofill yellow background color */
.react-phone-number-input__input:-webkit-autofill
{
	-webkit-box-shadow : 0 0 0 1000px white inset;
	        box-shadow : 0 0 0 1000px white inset;
}

/* A small fix for `react-responsive-ui` */
.react-phone-number-input__country .rrui__select__button
{
	border-bottom : none;
}
#charitySupport.mainContainer {
	position: relative;
	background: #27DBBD;
	color: white;
	margin: 0;
	padding: 0;
	top: 0;
	left: 0;
}
h1, h2, h3, h4 {
	font-family: "GothamRounded", sans-serif;
	font-weight: bold;
}
#charitySupport h1 {
	font-size: 4rem;
	margin: 0;
}
#charitySupport h2 {
	font-size: 3.5rem;
}
#charitySupport p {
	font-family: "GothamRounded", sans-serif;
	font-size: 16px;
	line-height: 20px;
}
#charitySupport .triangle-1 {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 50vw 1900px 0;
	border-color: transparent transparent #F8F8F8 transparent;
	position: absolute;
	left: 0;
	bottom: 0;
	top: auto;
}
#charitySupport .triangle-2 {
	position: relative;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 100px 100vw;
	border-color: transparent transparent white transparent;
}
#charitySupport .content {
	position: relative;
	margin-top: 120px;
	/*margin-bottom: 95px;*/
}
#charitySupport .imageCol {
	text-align: center;
}
#charitySupport .row1 img {
	width: 260px;
}
#charitySupport .block-1 {
	background-color: white;
	text-align: center;
	position: relative;
	padding-top: 40px;
}
#charitySupport .block-1 p {
	width: 40%;
	color: #203F6A;
	margin: 0 auto;
}
#charitySupport .greenBtn {
	margin-top: 40px;
	margin-bottom: 72px;
	background-color: #27DBBD;
	font-family: "GothamRoundedBold", sans-serif;
	font-size: 18px;
	padding: 21px 32px;
	border-radius: 15px;
	-webkit-box-shadow: 0 10px 23px 0 rgba(0,0,0,0.07);
	        box-shadow: 0 10px 23px 0 rgba(0,0,0,0.07);
	text-decoration: none;
	color: white;
	display: inline-block;
}

@media (max-width:767px) {
	h1 {
		font-size: 2.6rem;
	}
	#charitySupport .triangle-1 {
		border-width: 0px 0vw 150px 100vw;
		border-color: transparent transparent transparent #F8F8F8;
		top: -30px;
		width: 0;
	}
	#charitySupport .triangle-2 {
		border-width: 50px 0px 0px 100vw;
    	border-color: transparent transparent transparent white;
	}
	#charitySupport .content {
		margin-top: 120px;
		margin-bottom: 30px;
	}
	#charitySupport .heroContent {
		margin-top: 30px;
	}
	#charitySupport .block-1 p {
		width: auto;
		padding-left: 2.5rem;
		padding-right: 2.5rem;
	}
}




