/*
 * Globals
 */
@import '../fonts/Inter/inter.css';

/* Links */
a, a:focus, a:hover {
	color: #fff;
}

/* Custom default button */
.btn-secondary, .btn-secondary:hover, .btn-secondary:focus {
	color: #333;
	text-shadow: none; /* Prevent inheritance from `body` */
	background-color: #fff;
	border: .05rem solid #fff;
}

/*
 * Base structure
 */
html, body {
	font-family: 'Inter', sans-serif;
	min-height: 100%;
	background-size: cover;
	/* 	background-image: linear-gradient(to bottom, #FFFFFF, #FFFCEB, #4ECDC4); */
	background: -moz-linear-gradient(to bottom, #FFFFFF, #FFFCEB, #4ECDC4);
}

body {
	display: -ms-flexbox;
	display: flex;
	color: #3A3A3A;
	/* 	text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5); */
	/*   box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5); */
}

h1 {
	font-size: 31.9px;
	line-height: 36px;
	color: #3A3A3A;
}

.cover-container {
	/*   max-width: 42em; */
	
}

.margin-logo {
	margin-left: 9px;
}

/*
 * Header
 */
.masthead {
	margin-bottom: 2rem;
}

.masthead-brand {
	margin-bottom: 0;
}

.nav-masthead .nav-link {
	padding: .25rem 0;
	font-weight: 700;
	color: rgba(255, 255, 255, .5);
	background-color: transparent;
	border-bottom: .25rem solid transparent;
}

.nav-masthead .nav-link:hover, .nav-masthead .nav-link:focus {
	border-bottom-color: rgba(255, 255, 255, .25);
}

.nav-masthead .nav-link+.nav-link {
	margin-left: 1rem;
}

.nav-masthead .active {
	color: #fff;
	border-bottom-color: #fff;
}

@media ( min-width : 48em) {
	.masthead-brand {
		float: left;
	}
	.nav-masthead {
		float: right;
	}
}

/*
 * Cover
 */
.cover {
	/*   padding: 0 1.5rem; */
	
}

.cover .btn-lg {
	padding: .75rem 1.25rem;
	font-weight: 700;
}

.background-people {
	min-height: 700px;
	/* The image used */
	background-color: transparent; /* Used if the image is unavailable */
	background-position: bottom right; /* Center the image */
	background-repeat: no-repeat; /* Do not repeat the image */
	background-size: 555px;
	background-image: url("../images/mysuite-people.svg");
	/* Resize the background image to cover the entire container */
}

.background-suite {
	background: rgba(255, 255, 255, .5);
	border-radius: 0 40px 40px 40px;
}

.margin-2nd-block {
	margin-top: 52px;
}

.margin-schedule {
	margin-top: 52px;
	margin-bottom: 34px;
}

.margin-button-send {
	margin-top: 15px;
	margin-bottom: 70px;
	margin-right: 10px;
}

.form-group label {
	font-size: 12px;
	line-height: 15px;
	font-weight: 700;
	margin-left: 25px;
	text-transform: uppercase;
}

.form-group {
	margin: 15px 10px;
}

.form-group input, .form-group textarea{
	border: 1px solid #707070;
	border-radius: 26px;
	font-size: 18px;
	line-heigth: 32px;
	padding: 0 24px;
	-webkit-transition: border-color 0.15s ease-in-out, color 0.15s
		ease-in-out, background 0.15s ease-in-out;
	-moz-transition: border-color 0.15s ease-in-out, color 0.15s ease-in-out,
		background 0.15s ease-in-out;
	-ms-transition: border-color 0.15s ease-in-out, color 0.15s ease-in-out,
		background 0.15s ease-in-out;
	transition: border-color 0.15s ease-in-out, color 0.15s ease-in-out,
		background 0.15s ease-in-out;
}

.form-group textarea{
	border-radius: 26px 26px 0 26px;
	min-height: 100px;
	padding-top: 6px;
	padding-bottom: 6px;
}

input[disabled], textarea {
	border: 1px solid rgba(58, 58, 58, 0.5);
	color: solid rgba(58, 58, 58, 0.5) !important;
	background: solid rgba(255, 255, 255, 0.5);
}

input:focus, textarea:focus {
	border: 1px solid rgba(58, 58, 58, 1) !important;
	color: rgba(58, 58, 58, 1) !important;
}

input:hover, textarea:hover {
	border: 1px solid #4ECDC4 !important;
	color: #4ECDC4 !important;
}

input::placeholder, textarea:placeholder {
	color: rgba(112, 112, 112, .8) !important;
}

input[disabled]::placeholder, textarea:[disabled]::placeholder {
	color: rgba(112, 112, 112, .8) !important;
}

:invalid {
	box-shadow: none;
}

:focus:required:invalid {
	border: 1px solid #FF6B6B !important;
}

:focus:required:-moz-submit-invalid {
	border: 1px solid #FF6B6B !important;
	box-shadow: none;
}

:focus:required:-moz-ui-invalid {
	border: 1px solid #FF6B6B !important;
	box-shadow: none;
}

.form-control:focus {
	box-shadow: none;
}

.btn {
	background-color: #4ECDC4;
	border: 1px solid transparent;
	border-radius: 30px;
	color: #FFF;
	font-size: 23.9px;
	line-height: 29px;
	min-width: 200px;
	padding: 12px 24px;
	-webkit-transition: border-color 0.15s ease-in-out, color 0.15s
		ease-in-out, background 0.15s ease-in-out;
	-moz-transition: border-color 0.15s ease-in-out, color 0.15s ease-in-out,
		background 0.15s ease-in-out;
	-ms-transition: border-color 0.15s ease-in-out, color 0.15s ease-in-out,
		background 0.15s ease-in-out;
	transition: border-color 0.15s ease-in-out, color 0.15s ease-in-out,
		background 0.15s ease-in-out;
}

.btn-primary:focus {
	-webkit-box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, 0.16);
	box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, 0.16);
}

.btn-primary:hover{
	background-color: #FF6B6B;
	color: #FFF;
	border-color: transparent;
}

.btn-primary:not(:disabled):not(.disabled):active{
	background-color: #FFF;
	color: #3A3A3A;
	border: 1px solid #3A3A3A;
}

.btn-primary[disabled] {
	background-color: #707070;
	color: #FFF;
	border-color: transparent;
	opacity: .35;
}

/*
 * Footer
 */
.mastfoot {
	color: rgba(255, 255, 255, .5);
}

footer .row{
	background: #F2F2F2;
	margin-top: 20px;
	height: 60px;
}

footer p{
	color: #3A3A3A;
	font-size: 12px;
	line-height: 15px;
	margin-bottom: 0;
	width: 340px;
}

footer a{
	margin-left: 8px;
}

@media ( max-width : 1280px) {
	.background-people {
		min-height: 700px;
		height: 555px; /* You must set a specified height */
		background-position: bottom right; /* Center the image */
		background-size: 555px;
	}
}

@media ( max-width : 992px) {
	.background-people {
		min-height: 604px;
		background-position: bottom right; /* Center the image */
		background-size: 433px;
	}
}

@media ( max-width : 768px) {
	.background-people {
		min-height: 566px;
		background-position: bottom right; /* Center the image */
		background-size: 369px;
	}
}

@media ( max-width : 576px) {
	.background-people {
		min-height: 700px;
		background-position: bottom; /* Center the image */
		background-size: 320px;
	}
}

/**ESTILOS WEB CUERVI**/
body{
	background-image: linear-gradient(to bottom, #FFFFFF, #FFFCEB, #4ECDC4, #4ECDC4, #FFFCEB, #FFFFFF);
}
.boxes{
	margin: 40px 14px 0 14px;
}

.how-works{
	padding-bottom: 75px;
}
 
.how-works .title-boxes{
	margin-top: 58px;
	margin-bottom: 65px;	
}

.features .title-boxes{
	margin-bottom: 30px;
	margin-top: 0px;
	text-align: left !important;	
}

.roles .title-boxes{
	margin-bottom: 45px;
	margin-top: 55px;
}

.benefits .title-boxes{
	margin-bottom: 58px;
	margin-top: 58px;
}

.boxes .title-boxes, .benefits .title-boxes{
	text-align: center;
	font-size: 32px;
	line-height: 36px;
	color: #3a3a3a;
	font-weight: 500;
}

.boxes .elements, .bene-elements{
	text-align: center;
	font-size: 15px;
	line-height: 20px;
}

.elements img{
	width: 60px;
	height: 60px;
}

.boxes  .subtitle-boxes, .bene-elements .subtitle-boxes{
	font-size: 18px;
	line-height: 22px;
	margin-top: 58px;
	display: block;
	margin: 10px 0;
	font-weight: bold;
}

.boxes .subtitle-boxes-normal{
	font-size: 24px;
	line-height: 27px;
	color: #3A3A3A;
}

.benefits .subtitle-boxes-normal{
	font-size: 31px;
	line-height: 36px;
	color: #3A3A3A;
}

.boxes .feature-img{
	padding: 49px 55px 49px 108px;
}

.feature-img img{
	width: auto;
}

.boxes .feature-text{
	padding: 115px 108px 55px 127px;
}

.boxes .features-text p{
	font-size: 18px;
	line-height: 22px;
	color: #3A3A3A;
	margin-top: 20px;
}

.img-roles{
	text-align: center;
}

.img-roles img{
	width: auto;
}

.text-roles{
	padding: 0 110px;
	margin-bottom: 25px;
}

.text-roles p{
	margin-top: 14px;
}

.benefits-img img{
	margin-left: -16px;
	width: 100%;
}

.bene-elements img{
	width: 70px;
	height: 70px;
}

.benefits-container{
	padding: 56px 10px;
}

.benefits-texts{
	margin-top: auto;
    margin-bottom: auto;
}

/**MENU**/
.nav-menu{
	margin-top: 40px;
	margin: 12px 0;
}

.menu-items{
	padding: 0px;
}

.menu-items ul{
	list-style: none;
	padding: 0px;
	margin: 12px 0;
}


.menu-items ul li:first-child{
	margin: 0px 20px 0 0;
}

.menu-items ul li{
	display: inline;
	margin: 0 20px;
}

.menu-items a{
	color: #3A3A3A;
	font-size: 18px;
	font-weight: 500;
}

.bg-image{
	width: 100%;
}

.content-info{
	margin: 133px 148px;
}

.title-info{
	font-size: 42px;
    line-height: 47px;
    color: #3A3A3A;
}

section.pricing {
}

.pricing .card {
  border: none;
  border-radius: 0 40px 40px 40px;
  transition: all 0.2s;
  box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.1);
}

.pricing hr {
  margin: 1.5rem 0;
}

.pricing .card-title {
  margin: 0.5rem 0;
  font-size: 0.9rem;
  letter-spacing: .1rem;
  font-weight: bold;
}

.pricing .card-price {
  font-size: 3rem;
  margin: 0;
}

.pricing .card-price .period {
  font-size: 0.8rem;
}

.pricing ul li {
  margin-bottom: 1rem;
}

.pricing .text-muted {
  opacity: 0.7;
}

.pricing .btn {
  font-size: 80%;
  border-radius: 5rem;
  letter-spacing: .1rem;
  font-weight: bold;
  opacity: 0.7;
  transition: all 0.2s;
}

/* Hover Effects on Card */

@media (min-width: 992px) {
  .pricing .card:hover {
    margin-top: -.25rem;
    margin-bottom: .25rem;
    box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.3);
  }
  .pricing .card:hover .btn {
    opacity: 1;
  }
}

@media ( max-width : 1279px) {
	.feature-img img, .img-roles img{
		width: 100%;
	}
	
	.feature-text{
		padding: 80px 80px 55px 80px !important;
	}
	
	.text-roles {
    	padding: 0 80px;
	}
	
	.content-info {
    	margin: 120px 120px;
	}
}

@media ( max-width : 992px) {
	.feature-text{
		padding: 55px 55px 55px 0px !important;
	}
	
	.boxes .feature-img{
		padding: 49px 55px 49px 50px !important;
	}
	
	.text-roles {
    	padding: 0 50px;
	}
	
	.content-info {
    	margin: 70px 70px;
	}
	
  	.menu-items ul li:first-child{
		margin: 0px 20px;
	}
}

@media ( max-width : 768px) {
	.feature-text{
		padding: 10px !important;
	}
	
	.boxes .feature-img{
		padding: 49px 55px 0px 50px !important;
	}
	
	.benefits-texts{
		margin-top: 20px;
		text-align: center;
	}
	
	.benefits-container {
    	padding: 45px 10px;
	}
	
	.elements{
		margin: 20px 0;
	}
	
	.text-roles {
    	padding: 0 25px;
	}
	
	.content-info {
    	margin: 50px 25px;
	}
	
	.menu-items ul li:first-child{
		margin: 0px 20px 0 20px;
	}
	
}

@media ( max-width : 576px) {
	.background-people {
		min-height: 700px;
		background-position: bottom; /* Center the image */
		background-size: 320px;
	}
	
	.bene-elements img {
    	width: 50px;
    	height: 50px;
	}
	
	.content-info {
    	margin: 10px 0px;
	}
}

