* {
	margin: 0;
	padding: 0;
	outline: 0;
	box-sizing: border-box;
    transition: all 0.1s;
	font-family: 'Raleway', sans-serif;
}

body {
    overflow-y: hidden;
}

.parallax {
	background-color: #3EA879;
	height: 100vh;
	display: inline-block;
	position: relative;
}

.parallax .item {
	position: absolute;
	height: 100vh;
    width: 100%;
    background-repeat: no-repeat;
    background-size: contain;
}

.right-button {
	background-image: url(images/right-arrow-1.png);
    width: 50px;
    height: 50px;
    background-size: contain;
    position: fixed;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    cursor: pointer;
}

.separator {
    background-image: url(images/rombo-1.png);
    height: 100vh;
    width: 19px;
    position: absolute;
    top: 0;
    background-size: contain;
}

.static-separator {
    background-image: url(images/rombo-1.png);
    height: 100vh;
    width: 19px;
    position: absolute;
    top: 0;
	right: 0;
    background-size: contain;
}

.separator-green {
    background-image: url(images/rombo_verde-1.png);	
}

.page-content {
	background: black;
	color: white;
    height: 100%;
    width: 4540px;
    position: absolute;
    top: 0;
}

.page-green {
    background-color: #3EA879;
}

.logo {
    background-image: url(images/logo-1.svg);
    background-position: -7px -185px;
    background-size: cover;
    width: 300px;
    height: 211px;
    margin: 10px auto 10px auto;
}

.crocodile-page {
	/* width: 70vw; */
    width: 1280px;
    height: 100%;
	float: left;
    position: relative;
    padding-right: 20px;
    text-align: center;
    overflow-y: scroll;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
}

.crocodile-page::-webkit-scrollbar { 
    display: none;
}

.descs {
	margin-top: 50px;
}

.desc-item {
    width: 32%;
    float: left;
    padding: 0 16px;
}

.centeremall {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 90%;
}

.characteristics-item {
    height: 100px;
}
.characteristics-item .img {
	width: 150px;
    height: 100px;
	float: left;
}
.characteristics-item .img-desc {
    height: 100px;
    vertical-align: middle;
    text-align: left;
    padding: 10px;
    margin-left: 150px;
}
.characteristics-item .img-desc h3 {
    margin-bottom: 5px;
}

/* Right */
.characteristics-item.right .img {
	float: right;
}
.characteristics-item.right .img-desc {
    text-align: right;
	margin-left: 0px;
    margin-right: 150px;
}

.copyright {
	position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: bolder;
}

/* Contact form */
.contact-form {
    text-align: left;
}
.label {
    font-size: 18px;
    font-weight: 500;
}
.form-control {
    width: 100%;
    background: transparent;
    color: white !important;
    font-size: 25px;
    border: none;
    padding: 25px;
    padding-left: 10px;
    border-bottom: 2px solid #CCC;
    margin-bottom: 10px;
    outline: none;
    box-shadow: none !important;
}
.form-control:focus {
    border-radius: 0px;
    border-bottom: 2px solid #246749;
    margin-bottom: 10px;
    outline: none;
    box-shadow: none !important;
}
.btn-send {
    border: none;
    color: white;
    background-color: #246749;
    border-radius: 2px;
    margin: 5px;
    padding: 5px;
    width: 150px;
    font-size: 20px;
    font-weight: inherit;
    cursor: pointer;
}