body{
	background-color: white;
	font-family: 'Lato', sans-serif;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	overflow-x: hidden;
}

body.body-overflow{
	overflow: hidden;
}

*{
	box-sizing: border-box;
}

.section{
	position: relative;
	z-index: 1;
}

.column{
	width: 100%;
	max-width: 1500px;
	margin: 0 auto;
}

.column-content {
    max-width: 1800px;
    padding-left: 20px;
    padding-right: 20px;
}

@media all and (max-width: 860px){
    .column-content {
        padding-left: 10px;
        padding-right: 10px;
    }
}

.button{
	position: relative;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 10px;
	border-radius: 4px;
	cursor: pointer;
}

.button p, .button h4{
	margin: 0 4px;
	position: relative;
	z-index: 1;
}

.button-primary{
	background-color: #239489;
	color: white;
}
.button-primary span{
    color: white;
}

.button-tertiary{
	background-color: #252525;
	color: white;
}

.button-primary:after, .button-tertiary:after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.2);
	opacity: 0;
	transition: all 0.25s ease-out;
	border-radius: 4px;
}

.button-primary:hover:after, .button-tertiary:hover:after{
	opacity: 0.5;
}

.button-primary:active:after, .button-tertiary:active:after{
	opacity: 1;
}

.button-secondary{
	border: solid 2px #239489;
	color: #239489;
}

.button-secondary:hover{
	background-color: #239489;
	color: white;
}

.button-secondary.inv{
    background-color: #239489;
    color: white;
}
.button-secondary.inv:hover{
     color: #239489;
     background-color: white;
}

.button-secondary:active{
	background-color: #1d7a71;
	border-color: #1d7a71;
}


/*:::::::::::::::::::::::*/
/* RESPONSIVE */
/*:::::::::::::::::::::::*/

@media all and (max-width: 1000px){}
