:root {
	--orange: #F5A417;
	--orange-light: #f2aa2f;
	--green: #3EB54A;
	--green-dark: #2e9d39;
	--pink: #D44D8F;
	--min-height: 60vh;
	--primary-color: hsl(339, 62%, 41%);
	--primary-color-10: hsl(339, 62%, 98%);
	--secondary-color: hsl(205, 53%, 29%);
	--secondary-color-alpha-50: hsla(205, 53%, 29%, 50%);
	--secondary-color-alpha-25: hsla(205, 53%, 29%, 25%);
	--secondary-color-10: hsl(205, 53%, 98%);
	--secondary-color-15: hsl(205, 53%, 96%);
	--secondary-color-25: hsl(205, 53%, 80%);
	--secondary-color-50: hsl(205, 53%, 75%);
	--grey-10: hsl(255, 0%, 90%);
	--grey-50: hsl(255, 0%, 50%);
	--min-height: 80vh;
	--main-font: muli, sans-serif;
	--title-font: muli, sans-serif;
	--transition-all: all .3s ease-in-out;
	--header-max-height: 50vh;
	--header-height: 600px;
	--header-single-page-max-height: 70vh;
	--header-single-page-height: 900px;
	--scroll-fade-transitions: all 1s ease-in-out;
	--scroll-stats-transitions: all .5s ease-in-out;
}
/* Resets */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup,
var, b, i, hr, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside,
canvas, details, figure, figcaption, hgroup, menu, footer, header, nav, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
}
.clearfix:before, .clearfix:after {
	content: "";
	display: table;
}
.clearfix:after {
	clear: both;
}
.clearfix {
	zoom: 1;
}
.maxwidth {
	max-width: 960px;
	margin: auto;
	padding: 10px;
}
.centered {
	text-align: center;
}
article, aside, canvas, figure, figure img, figcaption, hgroup, footer, header, nav, section, audio, video {
	display: block;
}
body, input, button,
textarea, select, option {
	font-family: 'Inter', sans-serif;
	color: #222;
	font-size: 16px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
	text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;       /* Remove default arrow */
	background: url(../img/select-arrow.svg) no-repeat calc(100% - 1em) 50%;   /* Add custom arrow */
}
select::-ms-expand {
    display: none; /* Hide the default arrow in Internet Explorer 10 and Internet Explorer 11 */
}
/* Target Internet Explorer 9 to undo the custom arrow */
@media screen and (min-width:0\0) {
    select {
        background: none\9;
        padding: 5px\9;
    }
}
input,
textarea,
select {
	border-radius: 2px;
	border: none;
	background-color: #f3f3f3;
	padding: 10px 15px;
	box-sizing: border-box;
	width: 100%;
	display: block;
}
select + input {
	background-color: #fff;
	border: 1px solid #f3f3f3;
}
textarea {
	height: 100px;
}
input[type=checkbox] {
	margin-right: 10px;
}
input[type=submit] {
	color: #fff;
	background: var(--orange);
	font-size: .9em;
	text-transform: uppercase;
	padding: 10px 40px;
	cursor: pointer;
	transition: background-color .3s;
}
input[type=submit]:hover {
	background: var(--green);
}
sup {
	font-size: .5em;
	font-weight: bolder;
}
.text-pink {
	color: var(--pink);
}
.text-green {
	color: var(--green);
}
.text-orange {
	color: var(--orange);
}
.text-center {
	text-align: center;
}
.bg-light-pink {
	background-color: #D44D8F11;
}
.attendees {
	padding: 100px 1em;
	background-color: #ffffff66;
}
article {
	padding: 4em 2em;
	max-width: 75ch;
	margin: auto;
}
article ul,
.accordion ul {
	list-style: square;
	padding-left: 1.5em;
	margin-bottom: 2em;
}
article ol,
.accordion ol {
	list-style: square;
	padding-left: 1.5em;
}
.attendees ul li::marker,
article ul li::marker,
.accordion ul li::marker {
	color: var(--green);
}
.attendees ul li,
article ul li,
.accordion ul li {
	margin-bottom: .5em;
}
body {
	background: #fff;
}
p {
	margin-bottom: 1em;
}
a {
	color: var(--green);
	text-decoration: none;

	-webkit-transition: .3s all ease-in-out;
	-moz-transition: .3s all ease-in-out;
	transition: .3s all ease-in-out;
}
.button,
a.cta-button {
	display: inline-block;
	padding: .5em 1em;
	margin: .5em;
	border-radius: .2em;
}
a.cta-button {
	background-color: #333;
	color: #fff;
}
.button:hover {
	text-decoration: none;
	background-color: var(--green);
}
a.cta-button:hover {
	text-decoration: none;
	background-color: var(--green);
}
a:hover {
	text-decoration: underline;
}
.block {
	display: block;
}
.transition {
	-webkit-transition: .3s all ease-in-out;
	-moz-transition: .3s all ease-in-out;
	transition: .3s all ease-in-out;
}
h2 {
	font-size: 1.8em;
	line-height: 1.2;
	margin-bottom: 1em;
	color: var(--green);
}
h3 {
	color: var(--pink);
	margin-bottom: 1em;
}
h4 {
	color: #999;
	margin-bottom: 1em;
}
h5 {
	font-weight: 500;
	margin-bottom: .5em;
}
h6 {
	color: var(--orange);
	font-weight: 500;
}
header .maxwidth {
	display: flex;
	flex-direction: column;
	text-align: center;
}
header .logo {
	max-width: 250px;
	margin: .5em auto;
}
header a {
	display: block;
	color: inherit;
	background-color: #f9f9f9;
}
header a:hover {
	color: white;
}
header .logo img {
	display: block;
	width: 100%;
}
header .menu ul {
	list-style: none;
	display: flex;
	margin-block: 1em;
	overflow: auto;

	-ms-overflow-style: none;
	scrollbar-width: none;
}
header .menu ul::-webkit-scrollbar {
	display: none;
}
header .menu ul li {
	white-space: nowrap;
}
.hero {
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	min-height: 40vh;
	background-size: 160%;
	padding: 2em 1em 3em;
}
@keyframes zoom {
	0% {
	  transform: scale(1.02);
	}
	50% {
	  transform: scale(1.12);
	}
	100% {
	  transform: scale(1.02);
	}
}
.hero .hero-text {
	flex-grow: 1;
	width: 100%;
	display: flex;
	flex-direction: column-reverse;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.hero .hero-text img {
	max-width: 500px;
	width: 100%;
	display: block;
	margin-block: 2em;
}
.hero .hero-text {
	max-width: 75ch;
	padding: 1em;
}
.hero .hero-text h1 {
	font-size: 2em;
	line-height: 1.2;
	margin-bottom: 0;
	text-wrap: balance;
}
.hero .hero-text h2 {
	font-size: 1.2em;
	font-weight: 300;
	line-height: 1.2;
	margin-bottom: .5em;
	color: inherit;
}
.women-led {
	background-color: var(--orange);
	padding-block: 4em;
	color: #fff;
}
.women-led h2 {
	text-align: center;
	color: #fff;
}
.three-stage {
	padding-block: 4em;
	text-align: center;
}
.stage-info {
	padding-block: 2em;
}
.stage-info img {
	max-width: 100%;
	display: block;
	margin: 1em auto;
}
.target-value-chains {
	text-align: center;
	background-color: #D44D8F33;
	padding-block: 4em;
}

.target-value-chains h2 {
	color: #D44D8F;
}
.value-chain-list {
	text-align: left;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2em;
	padding-left: 2em;
	margin-block: 4em;
	list-style: none;
	counter-reset: valuechain;
}
.value-chain-list li {
	position: relative;
}
.value-chain-list li::before {
	counter-increment: valuechain;
	content: "0" counter(valuechain);
	font-weight: bold;
	color: var(--pink);
	position: absolute;
	left: -2em;
}
.value-chain-list li:nth-child(9) ~ li::before {
	content: counter(valuechain);
}
.quotes {
	text-align: center;
	padding-block: 4em;
	background: #f9f9f9;
}
.quote-element {
	display: grid;
	gap: 2em;
	max-width: 800px;
	margin: auto;
}
.quote-element img {
	border-radius: .5em;
	display: block;
	max-width: 60%;
	margin: auto;
}
.quote-element .quote-text {
	padding-top: 2em;
	background: url("../img/quotes.svg") no-repeat top center ;
}
.contact-button {
	margin-top: 1em;
	transition: all .2s ease-in-out;
}
.contact-button-fixed {
	opacity: 0;
	visibility: hidden;
	position: fixed;
	text-align: center;
	bottom: 1em;
	right: 1em;
	transform: translateY(4em);
}
.contact-button-fix .contact-button-hero {
	opacity: 0;
	visibility: 0;
}
.contact-button-fix .contact-button-fixed {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}
.contact-button a,
.send-button,
.download-button {
	display: inline-block;
	background-color: var(--green);
	color: #fff;
	padding: .5em 1em;
	font-size: 1rem;
	border-radius: 3px;
}
.send-button {
	background-color: var(--orange);
}
.contact-button a img,
.send-button img,
.download-button img {
	display: inline-block;
	height: 1em;
	width: auto;
	margin-right: .5em;
	transform: translateY(2px);
}
.send-button img {
	margin-left: .5em;
}
.send-button {
	display: block;
	border: none;
	cursor: pointer;
	margin: 0;
	box-sizing: border-box;
	width: 200px;
	margin-left: auto;
	transition: background-color .3s;
}

.download-button {
	display: inline-block;
	border: none;
	cursor: pointer;
	margin: 0;
	box-sizing: border-box;
	transition: background-color .3s;
}
.contact-button a:hover,
.send-button:hover,
.download-button:hover {
	background-color: var(--green-dark);
	text-decoration: none;
}
section {
	overflow: hidden;
}
article {
	padding-block: 2em;
}
article .maxwidth {
	max-width: 75ch;
}
.faq-rows {
	padding: 2em;
	margin-top: auto;
	margin-bottom: auto;
}
.register {
	color: #fff;
	text-align: center;
	padding: 3em 1em;
	background-color: var(--green);
}
.register h2 {
	color: inherit;
	margin-bottom: 1em;
}
.register .cta-button:not(:hover) {
	background-color: #333;
}
.flex-control-nav {
	list-style: none;
	text-align: left;
	margin-top: 1em;
	margin-bottom: 1em;
}
.flex-control-nav li {
	display: inline-block;
}
.flex-control-nav li a {
	display: block;
	text-align: left;
	text-indent: -1000px;
	overflow: hidden;
	width: 25px;
	height: 5px;
	background-color: var(--orange);
	opacity: .1;
	margin: 3px 0;
}
.flex-control-nav li a.flex-active {
	opacity: 1;
}
.flex-direction-nav {
	list-style: none;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 2;
}
.flex-direction-nav li {
	display: inline-block;
	margin: .5em;
	font-size: .7em;
	text-transform: uppercase;
}
.flex-direction-nav li a {
	color: var(--green);
	display: inline-block;
	text-align: left;
}
.flex-direction-nav li a.flex-disabled {
    opacity: .2;
}
/* faq */
.accordion {
    margin-bottom: 3em;
    margin-right: auto;
    margin-left: auto;
	border-bottom: 1px solid #eee;
}
.accordion .accordion-title {
	position: relative;
	padding: .5rem;
	line-height: 1.2;
	font-weight: 500;
	text-transform: uppercase;
}
@media screen and (min-width: 760px) {
	.accordion .accordion-title {
		display: grid;
		grid-template-columns: 150px auto;
		align-items: center;
	}
	.stage-info {
		display: grid;
		grid-template-columns: 200px auto;
		text-align: left;
		gap: 2em;
		align-items: center;
		max-width: 800px;
		margin: auto;
	}
	.stage-info img {
		max-width: 100%;
		display: block;
		margin: 1em auto;
	}
	.value-chain-list {
		grid-template-columns: repeat(3, 1fr);
		gap: 2em 4em;
	}
} 
.accordion .accordion-title .time {
	font-weight: 500;
	font-size: 14px;
	color: var(--orange);
	display: inline-block;
	background-color: #f6f6f6;
	padding: 5px 10px;
	border-radius: 3px;
	margin-block: .5em;
}

.accordion .accordion-title.linked {
	padding-right: 4rem;
	cursor: pointer;
	transition: background-color .3s ease-in-out;
}
.accordion .accordion-title.linked::after {
	content: '+';
	position: absolute;
	right: 1rem;
	font-size: 1.6rem;
	padding: 5px;
	width: 20px;
	height: 20px;
	line-height: 20px;
	font-weight: 300;
	text-align: center;
	top: 0;
	bottom: 0;
	margin: auto;
	transition: transform .3s ease-in-out;
}
.accordion .accordion-title.linked:hover {
	background-color: #fafafa;
}
.accordion .accordion-title.linked:hover::after {
	color: var(--orange);
}
.accordion .accordion-title.linked.active {
	color: var(--orange);
	border-bottom: none;
	background-color: white;
}
.accordion .accordion-title.linked.active::after {
	transform: rotate(45deg);
}
.accordion .accordion-content {
	display: none;
	overflow: hidden;
	background-color: #fff;
	margin-left: 2em;
	padding-left: 1em;
	border-left: 1px solid #ddd;
}
.accordion .accordion-content,
.accordion .accordion-content p,
.accordion .accordion-content ul,
.accordion .accordion-content ol {
	font-size: 1rem;
}
/* faq */
.contact {
	background: #fcfcfc url("../img/bg-dots.svg") no-repeat bottom right fixed;
	padding: 2em 1em;
	text-align: center;
}
.contact-form {
	text-align: left;
	margin: 1em;
}
.form-row {
	margin-bottom: .5em;
}
.form-row label {
	font-size: .6em;
	text-transform: uppercase;
	display: block;
}
.form-row input,
.form-row textarea {
	display: block;
}
.form-row label.error {
	text-transform: unset;
	color: var(--orange);
}
.form-row input.error,
.form-row select.error,
.form-row textarea.error {
	outline: 1px solid var(--orange);
}
.page-header {
	background-color: var(--orange);
	padding: 2em;
	color: #fff;
}
.page-header img {
	display: none;
}
.page-header a {
	color: #fff;
	padding-inline: 5px;
}
.page-header h1 {
	font-size: 2em;
}
footer {
	position: relative;
	text-align: center;
	background-color: #fff;
	border-top: 1px solid var(--green);
}
footer .maxwidth {
	padding: 2em 1em;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 2em;
}
footer .logos img {
	height: 60px;
	width: 150px;
	object-fit: contain;
	vertical-align: top;
	margin-inline: .5em;
}

.select-input {
	display: flex;
}
.select-input > * {
	flex-basis: 100%;
}
/* tabs */
.tabs-header {
	border-bottom: 2px solid var(--green-dark);
	padding-inline: 1em;
	display: flex;
	gap: 5px;
	align-items: end;
	min-height: 3em;
	overflow-x: auto;
	justify-content: center;

	-ms-overflow-style: none;
	scrollbar-width: none;
}
.tabs-header::-webkit-scrollbar {
	display: none;
}
.tabs-header button,
.tabs-header a {
  background-color: #999;
  border: none;
  padding: 10px 20px 10px;
  color: #fff;
  font-weight: bold;
  line-height: 1;
  transition: all .3s ease-in-out;
  cursor: pointer;
}
.tabs-header button:hover,
.tabs-header a:hover {
  background-color: #666;
}
@media screen and (max-width: 560px) {
	.tabs-header button span,
	.tabs-header a span {
		display: none;
	}
}
.tabs-header button.active,
.tabs-header a.active {
  background-color: var(--green-dark);
  border: none;
}
:not(.women-led) .tabs-header button.active,
:not(.women-led) .tabs-header a.active {
  padding-top: 14px;
}
.tabs-body {
  padding-top: .5em;
}
.tabs-body > * {
  display: none;
}
.tabs-body > .show {
  display: block;
}
.women-led .tabs-header {
	border-bottom: none;
}
.women-led .tabs-header button,
.women-led .tabs-header a {
	border-radius: .5em .5em 0 0;
	opacity: .7;
	background-color: transparent;
	text-align: left;
}
.women-led .tabs-header button.active,
.women-led .tabs-header a.active {
	opacity: 1;
	background-color: #6663;
}
.women-led .tabs-body {
	padding: 0;
	background-color: #6663;
	padding: 3em 2em;
	border-radius: 1em;
	display: flex;
	flex-direction: column;
	align-content: center;
}
.women-led .tabs-item {
	margin-block: auto;
	font-size: 1.2rem;
}

/* wizard */
.step-app > .step-steps {
    margin: 0;
    display: flex;
	gap: 30px;
	justify-content: center;
    overflow:hidden;
}
.step-app > .step-steps > li {
	flex: 1;
	border-bottom: 4px solid var(--secondary-color-15);
	text-transform: uppercase;
	font-size: .75em;
	padding: .5em 0;
	list-style: none;
    cursor: pointer;
	position: relative;
}
.step-app > .step-steps > li:not(:last-child)::before {
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	top: 0;
	bottom: 0;
	margin: auto;
	right: -18px;
	border-right: 1px solid var(--secondary-color-25);
	border-bottom: 1px solid var(--secondary-color-25);
	transform: rotate(-45deg);
}
.step-app > .step-steps > li:hover {
    border-color: var(--secondary-color-50);
}
.step-app > .step-steps > li.active {
    border-color:var(--primary-color);
}
.step-app > .step-steps > li.error::after {
    color: var(--primary-color);
	content: " !";
}
.step-app > .step-steps > li.done {
    border-color: var(--secondary-color);
}
.step-app > .step-steps > li > .number {
    background:#fff;
    padding:0 8px;
    display:inline-block;
    text-align:center;
    margin-right:15px;
    border-radius:3px;
    color:#333
}
.step-app > .step-content{
    padding-top: 1em;
}
.step-app > .step-content > .step-tab-panel{
    display:none;
	min-height: 350px;
}
.step-app > .step-content > .step-tab-panel.active{
    display:block
}
.step-app > .step-footer{
	border-top: 2px solid var(--secondary-color-25);
	padding-top: .5em;
    margin-top:15px;
    margin-bottom:15px
}
.step-app > .step-footer > .step-btn {
	color: #fff;
	background: var(--secondary-color-15);
	font-family: var(--title-font);
	color: var(--secondary-color);
	font-size: .9em;
	text-transform: uppercase;
	padding: 10px 40px;
	cursor: pointer;
	border: none;
	box-sizing: border-box;
	transition: background-color .3s;
}
.step-app > .step-footer > .step-btn:hover {
	background: var(--secondary-color);
	color: #fff;
}
/* wizard end */
@media only screen and (min-width: 480px) {
	.form-row-columns {
		display: flex;
		gap: .5em;
	}
	.form-row-columns > div {
		flex-basis: 100%;
	}
	.columns-2 {
		columns: 2;
		column-gap: 2em;
	}
}
@media only screen and (min-width: 960px) {
	:root {
		--min-height: 50vh;
	}
	header .maxwidth {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
	header .logo {
		margin: .5em;
	}
	.hero {
		background-size: 80%;
	}
	.hero .hero-text {
		flex-direction: row;
		text-align: left;
		max-width: 1200px;
		margin-inline: auto;
	}
	.hero .hero-text > * {
		padding: 1rem;
		font-size: 1.1em;
	}
	.page-header {
		position: relative;
		overflow: visible;
		padding-block: 5em;
	}
	.page-header img {
		display: block;
		position: absolute;
		right: 2em;
		top: 0;
		bottom: 0;
		margin-block: auto;
		height: 120%;
	}
	footer {
		text-align: left;
	}
	footer .footer-info {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
	}
	.contact-columns {
		display: flex;
		gap: 1em;
	}
	.contact-columns > div {
		flex-basis: 100%;
	}
	.women-led .tabs {
		display: grid;
		grid-template-columns: 250px auto;
		align-items: stretch;
	}
	.women-led .tabs-header {
		flex-direction: column;
		padding: 1em 0;
	}
	.women-led .tabs-header button,
	.women-led .tabs-header a {
		border-radius: .5em 0 0 .5em;
		opacity: .5;
		background-color: transparent;
	}
	.women-led .tabs-body {
		padding: 3em;
	}
	.quote-element {
		grid-template-columns: 1fr 2fr;
		text-align: left;
	}
	.quote-element img {
		max-width: 100%;
	}
	.quote-element .quote-text {
		padding-left: 2em;
		padding-top: 0;
		background-position: top left;
	}
	footer .maxwidth {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
}
@media only screen and (max-width: 64rem) {

}
