/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

* {
  box-sizing: border-box;
}


html {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 100;
	height: 100%;
}

body {
	height: 100%;
    margin: 0;
	background-color: #547686;
	
}
html, body {
     min-height: 100%;
}

.main{
	position: relative;
    float: left;
    width: 100%;
}
.clouds {
	position: absolute;
	width: 100%;
	height: 900px;
    margin: 0;
	opacity: 0.8;
	background-image: url("../images/clouds.jpg");
	background-repeat: no-repeat;
    background-size: cover;
    background-position: left top;
}

.clouds_gradient {
	position: absolute;
	width: 100%;
	height: 900px;
    margin: 0;
	background: -webkit-linear-gradient(bottom, rgb(84 118 134) 0%, rgba(255,255,255,0) 30%);
	background: -o-linear-gradient(bottom, rgb(84 118 134) 0%, rgba(255,255,255,0) 30%);
	background: linear-gradient(to top, rgb(84 118 134) 0%, rgba(255,255,255,0) 30%);
}

.container{
	position: relative;
	float: left;
	width: 100%;
}

.header {
	position: absolute;
	width: 100%;
	color: #000000;
	line-height: 0px;
	top: 22px;
	right: 50px;
	z-index: 1;
}

nav {
	position: relative;
	float: right;
	overflow: hidden;
	list-style: none;
}

nav li {
  display: inline;
  padding: 0px 10px;
  border-left: solid 1px #000000;
}
nav li a.active {
	font-weight: bold;
	text-decoration: underline;
}
nav li:first-child {
  border-left: none;
}

nav li a {
	font-size: 14px;
    color:#000000;
	text-decoration: none;
	font-weight: bold;
	cursor: pointer;
}

nav li a:hover{
    color:#333333;
}

.wrapper{
	position: relative;
	float: left;
	width: 100%;
	padding: 200px 50px 120px 50px;
}

.logo{
	max-width: 500px;
}
.text{
	padding: 30px 0px;
	font-size: 22px;
}
.button {
	font-family: 'Montserrat', sans-serif;
	position: relative;
	float: left;
	left: 50%;
	transform: translateX(-100px);
	width: 200px;
	height: 40px;
    line-height: 40px;
	margin-top: 50px;
	background-color: rgba(255,255,255,0.7);
	color: #000000;
	font-size: 17px;
	border-radius: 25px;
    text-align: center;
    font-weight: bold;
	cursor: pointer;
}
.button:hover {
	background-color: rgba(255,255,255,1);
}

.planes {
	position: relative;
	float: left;
	width: 100%;
	margin-top: 50px;
}

.plan {
	position: relative;
	float: left;
	width: 100%;
	padding: 60px 40px;
	background-color: rgba(255,255,255,0.5);
	color: #000000;
	font-size: 18px;
	border-radius: 25px; 
	margin-bottom: 40px;
}

.plan_title{
	position: relative;
	float: left;
	width: 100%;
	font-size: 25px;
	color: #000000;
	font-weight: bold;
}
.plan_subtitle{
	position: relative;
	float: left;
	width: 100%;
	font-size: 18px;
	color: #000000;
	font-weight: bold;
}
.plan_description{
	position: relative;
	float: left;
	width: 100%;
	margin-top: 40px;
	font-size: 15px;
	color: #000000;
}
.plan_condition{
	position: relative;
	float: left;
	width: 100%;
	font-size: 14px;
	color: #000000;
	text-align: center;
	margin-top: 30px;
}
.sumate{
	margin-top: 120px;
	font-size: 30px;
	color: #FFFFFF;
	letter-spacing: 5px;
	text-align: center;
}

#subscribe {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 500;
}
#subscribe-background {
	position: absolute;
	display: none;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.75);
}
.subscribe_content {
	position: absolute;
	display: none;
	width: 600px;
    height: 360px;
    z-index: 15;
    top: 50%;
    left: 50%;
    margin: -180px 0 0 -300px;
    background: black;
	border-radius: 25px;
	padding: 60px;
}
.subscribe_text {
	font-size: 18px;
	color: #fff;
	text-align: center;
}
.subscribe_mail {
	position: relative;
    float: left;
	width: 100%;
	margin: 25px 0 20px 0;
	font-size: 16px;
	color: #fff;
	text-align: center;
}

input {
	position: relative;
    float: left;
	left: 50%;
	transform: translateX(-150px);
	padding: 8px 16px;
    font-size: 16px;
    width: 300px;
    border-radius: 10px;
    border: solid;
    background-color: #fff;
	text-align: center;
}
.enviado {
	font-size: 30px;
	color: #fff;
	text-align: center;
    margin-top: 40px;
}
.error {
	border: 1px solid red;
}
.subscribe_button{
	font-family: 'Montserrat', sans-serif;
	position: relative;
	float: left;
	left: 50%;
	transform: translateX(-100px);
	width: 200px;
	height: 40px;
    line-height: 40px;
	margin-top: 10px;
	background-color: rgba(255,255,255,0.7);
	color: #000000;
	font-size: 17px;
	border-radius: 25px;
    text-align: center;
    font-weight: bold;
	cursor: pointer;
}
.subscribe_button:hover {
	background-color: rgba(255,255,255,1);
}

.subscribe_close{
	display: none;
	position: relative;
    float: left;
    width: 100%;
    color: #ffffff;
    font-size: 20px;
    margin-top: 40px;
    text-align: center;
}

.footer {
	position: relative;
	float: left;
	width: 100%;
	height: 50px;
	background-color: #1c1c1c;
}
.footer_text{
	color: #FFFFFF;
	font-size: 14px;
	text-align: center;
	line-height: 50px;
}

@media (max-width: 768px) {
	.clouds {
		position: absolute;
		width: 100%;
		height: 1280px;
	}
	.clouds_gradient {
		height: 1280px;
	}
	.wrapper{
		padding: 100px 10px;
	}
	.plan {
		padding: 40px 20px;
	}
	
	.subscribe_content {
		position: absolute;
		display: none;
		width: 100%;
		height: 100%;
		padding: 30px;
		top: 0px;
		left: 0px;
		margin: 0px;
	}
	.subscribe_close{
		display: block;
	}
}
