/*Basics*/
*{
    padding: 0;
    margin: 0;
}
body{
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #727985;
    box-sizing: content-box;
}
/*Esto no lo se*/
body * {
    padding: 0 5px;
}

svg{
    padding: 0;
}

a{
    color: #333;
    text-decoration: none;
}
img{
    border: 0;
    max-width: 90%;
}
ul,li{
    list-style: none;
}

.clearfix:before,
.clearfix:after {
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }

.clearfix {
    zoom: 1;
}

/*General*/
.color-white{
    color: #d4d2f3;
}

.color-true-white{
	color: #fff;
}

.color-primary{
    color: #393391;
}

.color-accent{
    color: #1FE58A;
}

h1 {
    font-weight: 900;
    font-size: 2.4em;
    color: #1FE58A;
    margin-bottom: 1.2em;
	letter-spacing: -2px;
}

h2{
    font-weight: 900;
    font-size: 1.8em;
    display: block;
	letter-spacing: -1px;
    margin-bottom: 1.2em;
}

h2 span{
    display: block;
}

h3{
    font-weight: 800;
    font-size: 1.3em;
	margin-bottom: 1.3em;
    letter-spacing: -1px;
}

p {
    margin-bottom: 1em;
    line-height: 1.5em;
    text-align: left;
}

p span{
    font-weight: 600;
}

.bg-primary{
    background: #393391;
}

.bg-accent{
    background: #1FE58A;
}

.bg-white{
    background: #FFF;
}

.text-center{
    text-align: center;
    margin: 0 auto;
}

.two-columns{
    width: calc(100% - 10px);
    /*max-width: 1150px;*/
    display: flex;
    flex-flow: row;
    flex-wrap: wrap;
}

.column{
    width: 49%;
    height: auto;
}

.column-content {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.column-content-r {
    display: flex;
    justify-content: flex-start;
}

.limit-two-column{
	max-width: 575px;
	width: 100%;
}

.limit-one-column{
	max-width: 1150px;
    width: 100%;
}

.info-box{
	padding: 5.6em 0;
}

.column .info-box{
	max-width: 440px;
}
/*
.how-work .info-box{
	max-width: 640px;
}*/

/*Specifics*/

section.welcome{
	background-image: url(imgs/bg-section-welcome.png);
	background-size: cover;
    display: flex;
    flex-flow: column;
    align-items: center;
    min-height: calc( 100vh - 130px);
	/*background-size: auto 100%;*/
}

header {
    height: 100px;
    display: flex;
    align-items: center;
    /*padding: 0 10px;*/
    max-width: 1150px;
    width: 100%;
}

.header-container{
	/*max-width: 1150px;*/
    display: flex;
    justify-content: space-between;
}

.header-container svg{
	height: 50px;
    width: auto;
}


.welcome .two-columns{
    height: calc( 100vh - 210px);
    max-width: 1080px;
}

.welcome .column.center-box{
	display: flex;
	align-items: center;
}

.highlight-text{
	font-size: 1.8em;
}

section.two-colors{
    /*width: 100%;*/
    background-image:
        url(imgs/bg-section-howwork-fit.png),
        linear-gradient(
            to bottom, 
                #1FE58A 0%,
                #1FE58A 20em,
                white 20em,
                white 100%);
    background-repeat: no-repeat;
	background-position: right bottom;
    min-height: 600px;
    text-align: center;
}

.how-work .limit-one-column .info-box{
    text-align: left;
    max-width: 640px;
}

.how-work {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
	position: relative;
}

section.benefits{
	margin-top: 100px;
}


section.final{
	padding: 100px 0;
	position: relative;
	background-image: url(imgs/bg-section-end-cut.png);
    /*background-image: url(imgs/bg-section-end.png);*/
	background-repeat: no-repeat;
    background-position: bottom;
	/*background-position: left bottom;*/
	background-attachment: scroll;
	/*background-size: 50% auto;*/
    background-size: cover;
	background-blend-mode: overlay;
}



/*Cards*/
.card-group{
    display: flex;
    flex-flow: row;
    flex-wrap: wrap;
    justify-content: center;
	padding: 3.8em 0;
}

.card-group .card{
    min-width: 280px;
    max-width: 310px;
    padding: 30px;
    border-radius: 24px;
    -webkit-box-shadow: 0px 10px 13px -7px #acacac, 0px 25px 32px 4px rgba(0,0,0,0.17); 
    box-shadow: 0px 10px 13px -7px #acacac, 0px 25px 32px 4px rgba(0,0,0,0.17);
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    margin: 12px;
}

.card-group .card .icon-box{
    height: 80px;
    width: 80px;
    border-radius: 20px;
	margin-bottom: 25px;
    padding: 0;
}

.two-column-card{
    display: flex;
    flex-flow: row;
	flex-wrap: wrap;
    max-width: 80vw;
    padding: 30px;
	/*min-width: 400px;*/
}

.two-column-card .icon-box{
    height: 100px;
    min-width: 100px;
    border-radius: 20px;
    background-color: #C4FFE4;
    margin-right: 28px;
	margin-bottom: 28px;
    padding: 0;
}

/*Collaps*/
/* Style the button that is used to open and close the collapsible content */
.collapsible {
	background-color: transparent;
    cursor: pointer;
    padding: 18px 10px 0px 10px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
}

.collapsible:before {
	content: '\002B';
    color: #FFF;
    font-size: 4em;
    font-weight: 500;
    margin: 0 10px 0px 0;
    line-height: 0px;
}

.active:before {
  content: "\2212";
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .collapsible:hover {
	background-color: #231e70;
	border-radius: 50px;
}

/* Style the collapsible content. Note: hidden by default */
.content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  margin-bottom: 50px;
  /*background-color: #fff;*/
}

.content-part{
	padding: 25px 15px 15px 60px !important;
}


input[type=text], input[type=email], select {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 12px;
  box-sizing: border-box;
}

input[type=submit] {
  width: 100%;
  background-color: #1FE58A;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 40px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #24ffac;
}

.form-field {
    margin-bottom: 10px;
}

button h2{
	margin-bottom: 0px;
	display: inline-block;
	position: relative;
    top: -10px;
}

div.mce_inline_error {
    color: red;
    margin-bottom: 4px;
}

/*MediaQueries*/
@media (max-width: 1060px) {
    .column{
		width: 100%;
	}
	.column-content, .column-content-r {
		justify-content: center;
	}
}

@media (max-width: 600px) {
	.column{
		width: 100%;
		max-width: 100vw;
		min-width: 60vw;
	}
	/*.column .info-box {
		max-width: 90vw;
		margin-bottom: 50px;
	}
	.two-colum-card {
		max-width: 80vw;
	}*/
	.column-content, .column-content-r {
		/*display: block;*/
		max-width: calc(100vw - 10px);
	}
    section.welcome{
        background-position: 70%;
    }
    .welcome .two-columns {
        height: calc( 100vh - 331px);
    }
    section.final {
        background-size: 117%;
    }
}
