/*--
Author: Lesduit
Author URL: http://lesduit.com.ar
License: Creative Commons Attribution 3.0 Unported
License URL: http://creativecommons.org/licenses/by/3.0/
--*/


$accent-color: #355cc9;

* {
    box-sizing: border-box;
}



html,
body {
    margin: 0;
    font-size: 100%;
    background: #fff;
	font-family: 'Muli', sans-serif;
    display: flex;
    flex-direction: column;
/*align-items: center;*/
/*    justify-content: center;*/
/*        height: 100vh;*/
}

html {
  scroll-behavior: smooth;
}
body a {
    text-decoration: none;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;

}

body img {
    max-width: 100%;
}

a:hover {
    text-decoration: none;
}

input[type="button"],
input[type="submit"],
input[type="text"],
input[type="email"],
input[type="search"] {
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    letter-spacing: .5px;
}

p {
    margin: 0;
	font-size: 15px;
    line-height: 1.3em;
    letter-spacing: 0px;
    color: #fff;
}

ul {
    margin: 0;
    padding: 0.7em;
}

/*-- header --*/
header {
    position: absolute;
    width: 100%;
    padding: 15px 0;
	z-index: 9;
}
.right-p li ,.right-p li  a{
    display: inline-block;
    color: #ddd;
    font-size: 15px;
    letter-spacing: 2px;
}
.right-p li  span{
    color: #fff;
}
/*-- header --*/

.toggle,
[id^=drop] {
	display: none;
}

/* Giving a background-color to the nav container. */
nav { 
	margin:0;
	padding: 0;
}


#logo a {
	float: left;
    font-size: .7em;
    display: initial;
    margin: 0;
    letter-spacing: 1px;
    color: #fff;
    padding: 0px 0;
    border: none;
}
#logo a span.fa,.footer-title a span.fa {
    color: #ff4f81;
}


/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */

nav:after {
	content:"";
	display:table;
	clear:both;
}

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */
nav ul {
	float: right;
	padding:0;
	margin:0;
	list-style: none;
	position: relative;
	}
	
/* Positioning the navigation items inline */
nav ul li {
	margin: 0px;
	display:inline-block;
	float: left;
	}

/* Styling the links */
nav a {
    color: #ddd;
    text-transform: capitalize;
    letter-spacing: 1px;
    padding-left: 0;
    padding-right: 0;
	padding: 10px 13px;
    font-weight: 400;
    font-size: 16px;
    vertical-align: middle;
}
nav ul li ul li:hover { background: #f8f9fa; }

/* Background color change on Hover */
nav a:hover { 
	color: #ddd;
}
.menu li.active  a{ 
	color: #fff;
}

/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
	display: none;
	position: absolute; 
	/* has to be the same number as the "line-height" of "nav a" */
	top: 30px; 
    background: #fff;
    padding: 10px;
}
	
/* Display Dropdowns on Hover */
nav ul li:hover > ul {
	display:inherit;
}
	
/* Fisrt Tier Dropdown */
nav ul ul li {
	width:170px;
	float:none;
	display:list-item;
	position: relative;
}
nav ul ul li a {
    color: #333;
    padding: 5px 10px;
    display: block;
}
/* Second, Third and more Tiers	
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/
nav ul ul ul li {
	position: relative;
	top:-60px;
	/* has to be the same number as the "width" of "nav ul ul li" */ 
	left:170px; 
}

/* Change ' +' in order to change the Dropdown symbol */
li > a:only-child:after { content: ''; }


/* Media Queries
--------------------------------------------- */

@media all and (max-width : 991px) {

	#logo {
		display: block;
		padding: 0;
		width: 50%;
		text-align: center;
		float: none;
	}
	.menu li.active a {
		color: #ff4f81;
	}
	nav ul li span {
		color: #333;
	}
	nav {
		margin: 0;
	}
	nav a {
		color: #333;
	}

	/* Hide the navigation menu by default */
	/* Also hide the  */
	.toggle + a,
	.menu {
		display: none;
	}

	/* Stylinf the toggle lable */
	.toggle {
		display: block;
		padding: 5px 15px;
		font-size: 20px;
		text-decoration: none;
		border: none;
		float: right;
		background-color: #ff4f81;
		color: #fff;
		margin-bottom: 0;
	}
	.menu .toggle {
		float: none;
		text-align: center;
		margin: auto;
		width: 30%;
		padding: 5px;
		font-weight: normal;
		font-size: 15px;
		letter-spacing: 1px;
	}

	.toggle:hover {
		color:#333;
		background-color: #fff;
	}

	/* Display Dropdown when clicked on Parent Lable */
	[id^=drop]:checked + ul {
		display: block;
		background: #fff;
		padding: 15px 0;
		width:100%;
		text-align: center;
	}

	/* Change menu item's width to 100% */
	nav ul li {
		display: block;
		width: 100%;
		padding: 7px 0;
		}
	nav a{
		padding: 5px 0;
	}
	nav a:hover {
		color: #333;
	}
	.login-icon {
		text-align: center;
	}
	nav ul ul .toggle,
	nav ul ul a {
		padding: 0 40px;
	}

	nav ul ul ul a {
		padding: 0 80px;
	}

	nav a:hover,
 	nav ul ul ul a {
		background-color: transparent;
	}
  
	nav ul li ul li .toggle,
	nav ul ul a,
	nav ul ul ul a{
		padding:14px 20px;	
		color:#FFF;
		font-size:17px; 
	}
  
  
	nav ul li ul li .toggle,
	nav ul ul a {
		background-color: #fff; 
	}
	nav ul ul li a {
		font-size: 15px;
	}
	ul.inner-ul{
		padding: 0!important;
	}
	/* Hide Dropdowns by Default */
	nav ul ul {
		float: none;
		position:static;
		color: #ffffff;
		/* has to be the same number as the "line-height" of "nav a" */
	}
		
	/* Hide menus on hover */
	nav ul ul li:hover > ul,
	nav ul li:hover > ul {
		display: none;
	}
		
	/* Fisrt Tier Dropdown */
	nav ul ul li {
		display: block;
		width: 100%;
		padding: 0;
	}

	nav ul ul ul li {
		position: static;
		/* has to be the same number as the "width" of "nav ul ul li" */ 

	}

}

@media all and (max-width : 330px) {

	nav ul li {
		display:block;
		width: 94%;
	}

}
.user span.fa {
    font-size: 25px;
    color: #fff;
}
/*-- //header --*/


.section-title h3{
    font-size: 34px;
    font-weight: bold;
    color: #2d447b;
    padding: 0 0 20px 0px;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 0;
  font-family: "Poppins", sans-serif;
  color: #635551;
}

.section-title p {
  margin-bottom: 0;
}

.bannerPlan {
    background: url(../images/banner_plan_inicial.jpg)no-repeat center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    background-size: cover;
}


/*-- banner --*/
.banner {
    background: url(../images/banner.jpg)no-repeat center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    background-size: cover;
}
.layer {
    background: rgba(0, 0, 0, 0.47);
}
.w3ls_banner_txt p {
    color: #eee;
    text-transform: capitalize;
    font-size: 15px;
}
.banner-text-w3ls {
    padding: 10vw 0 15vw;
    box-sizing: border-box;
}
.banner-form-w3 {
    padding: 3vw 0 0vw;
    box-sizing: border-box;
}

h3.b-w3ltxt span {
    color: #fff;
}
h3.b-w3ltxt {
    font-size: 3.5em;
    color: #fff;
    font-weight: 600;
    text-shadow: 1px 1px 0px #333;
}

h4.b-w3ltxt {
    font-size: 2.em;
    letter-spacing: 0px;
    font-weight: 300;
    color: #FFFFFF;
}

.btn-banner {
    background: none;
	border: 2px solid #fff;
    color: #fff;
    font-size: 15px;
    letter-spacing: 1px;
    padding: 12px 30px;
    display: inline-block;
}
.btn-banner:hover  {
    color: #fff;
}

.carousel-indicators {
    position: absolute;
    bottom: -53px;
    margin-left: 0;
    justify-content: flex-start;
    z-index: 1;
}

.carousel-indicators li {
    cursor: pointer;
}
.carousel-indicators li {
    width: 18px;
    height: 8px;
    margin-right: 5px;
    margin-left: 5px;
}

/*cards*/
.card-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px;
  display: flex;
  flex-flow: row wrap;
}

.card-container .card {
  margin: 10px;
  width: calc(100% / 3 - 20px);
  float: left;
  box-shadow: 0 0 2px 2px rgba(0,0,0,.05);
  background: #FFF;
  -webkit-transition: .3s all ease;
  transition: .15s all ease;
  border-radius: 12px;
  padding: 10px;
}

.card-container .card img {
  width: 100%;
  padding: 0;
  margin: 0;
}
.card-container .card .content {
  padding: 15px 20px;
}
.card-container .card h3 {
  padding: 0;
  margin: 0 0 10px;
  letter-spacing: -.075rem;
  font-weight: bold;
  color: #2d447b;

}
.card-container .card p {
  color: #888;
  padding: 0;
  margin: 0;

}

.card {

border-radius: 38px;
}

.pt15 {
    padding-top: 40px;
}

.services .items .content nav {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 20px 20px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  z-index: 5;
}


li {
    font-size: 16px;
    list-style-type: disc;
    color: #fff;
    margin: 0px 0;
    letter-spacing: 0px;
    text-transform: capitalize;
}



.form-style-w3layout input[type="text"], .form-style-w3layout input[type="email"], .form-style-w3layout input[type="password"],select {
    outline: none;
    font-size: 14px;
    border: none;
    color: #666;
    background: #f1f1f1;
    letter-spacing: 0.5px;
    padding: 14px 20px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 15px;
}
.form-style-w3layout button.btn {
    color: #fff;
    background: #2d447b;
    border: none;
    padding: 14px 0;
    outline: none;
	border-radius: 0;
    width: 100%;
    font-size: 15px;
    cursor: pointer;
    letter-spacing: 1px;
    -webkit-transition: 0.5s all;
    -o-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    transition: 0.5s all;
}
.form-style-w3layout input[type="submit"]:hover {
    background: #dc3545;
}
.padding {
    padding: 2.5em;
	background: #FFFFFF7D;
}
.form-style-w3layout span {
    font-size: 13px;
    color: #666;
}
.form-style-w3layout span a {
    color: #ff4f81;
}

/*-- //banner --*/


.cardbutton {
  color: #fff;
  background: #2d447b;
  border: none;
  padding: 14px 0;
  outline: none;
  border-radius: 0;
  width: 40%;
  font-size: 15px;
  cursor: pointer;
  letter-spacing: 1px;
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -ms-transition: 0.5s all;
  transition: 0.5s all;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
}

.cardbutton:hover {
  color: #124991;
  background: #fff;
  border: #183684;
  padding: 14px 0;
  outline: none;
  border-radius: 0;
  width: 100%;
  font-size: 15px;
  cursor: pointer;
  letter-spacing: 1px;
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -ms-transition: 0.5s all;
  transition: 0.5s all;
  border-radius: 10px;
  padding: 10px;
  border-width: 1px;
  border-style: solid;
  border-color: #2b2b60;
}


/*-- banner bottom --*/
/* girds */
.three-grids-w3pvt-1 {
    background: url(../images/couple1.jpg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    min-height: 300px;
	position: relative;
    z-index: 1;
}

.three-grids-w3pvt-1:before,.three-grids-w3pvt-2:before,.three-grids-w3pvt-3:before,.three-grids-w3pvt-4:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.5;
    background: #111;
    z-index: -1;
}

.three-grids-w3pvt-2 {
    background: url(../images/couple2.jpg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    min-height: 300px;
	position: relative;
    z-index: 1;
}

.three-grids-w3pvt-3 {
    background: url(../images/couple3.jpg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    min-height: 300px;
	position: relative;
    z-index: 1;
}
.three-grids-w3pvt-4 {
    background: url(../images/couple4.jpg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    min-height: 300px;
	position: relative;
    z-index: 1;
}

.text-effect-wthree {
    margin-top: 13em;
}

.text-effect-wthree h5 {
    font-size: 22px;
	color: #fff;
}

.text-effect-wthree p {
    font-size: 15px;
	color: #ccc;
}
.ser-img span.fa {
    font-size: 40px;
    color: #000;
}
/* //girds */

h2.heading{
    font-size: 30px;
    text-transform: capitalize;
    color: #333;
    font-weight: 600;
}
.banner-bottom{
	background: #f6f6f6;
}
/*-- banner bottom --*/


/*-- services --*/
.mb-60 {
    margin-bottom: 60px;
}
.services-inner {
    border: 2px solid #ff4f81;
    margin-left: 35px;
    transition: .3s;
    background: #fff
}
.our-services-img {
    float: left;
    margin-left: -36px;
    margin-right: 8px;
    margin-top: 45px;
    text-align: center;
}
.our-services-img span.fa {
    width: 68px;
    font-size: 40px;
    color: #ff4f81;
    background: #fff;
}
.our-services-text {
    padding-right: 10px;
}
.our-services-text {
    overflow: hidden;
    padding: 28px 0 25px;
}
.our-services-text h4 {
    color: #222222;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
    padding-bottom: 10px;
    position: relative;
    text-transform: uppercase;
}
.our-services-text h4::before {
    background: #ff4f81 none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 1px;
    position: absolute;
    width: 40px;
}
.our-services-wrapper:hover .services-inner {
    background: #fff none repeat scroll 0 0;
    border: 2px solid transparent;
    box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.2);
}
.our-services-text p {
    margin-bottom: 0;
}
.services p {
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
    color: #666;
}
.services  {
    position: relative;
    z-index: 2;
}
/*-- //services-- */


/*-- team --*/ 

.team-info {
    padding: 20px 20px 0;
}

.team-info h3 {
    font-size: 1.3em;
    letter-spacing: 1px;
    color: #222;
}

.team-info span{
    margin-top: .5em;
    font-size: .8em;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 1px;
}
/* layout */


@media screen and (min-width: 641px){

	.section{
		padding-top: 8rem;
		padding-bottom: 8rem;
	}

	.section__header{
		margin-bottom: 6rem;
	}

	.section__content{
		justify-content: center;
	}
}

@media screen and (max-width: 640px){


	.section{
		padding-top: 4rem;
		padding-bottom: 4rem;
	}

	.section__header{
		margin-bottom: 3rem;
	}
}



/* options */ 

.radio{
    position: absolute;
    left: -9999px;
}

.preview-options{
    padding-top: 2rem;
}

.preview-options__container{
    display: flex;
    justify-content: center;
}

.preview-options__param{
    display: inline-block;
    cursor: pointer;
}

.preview-options__param:not(:last-child){
    margin-right: 1.5rem;
}

.preview-options__color:before{
    content: "";
    width: 3.2rem;
    height: 3.2rem;
    display: block;
    border-radius: 50%;
}

/* social buttons */

.socials{
    box-sizing: border-box;
    width: 42px;
    height: 42px;
    padding: 10px;

    background-color: #fff;
    border-radius: 100%;

    margin: 5px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.socials__icon{
    width: 100%;
    height: 100%;
    fill: rgba(72, 27, 174, 1); 
}

.socials__name{
    position: absolute;
    left: -9999px;
}

@media screen and (max-width: 640px){

    .preview-options{
        padding-bottom: 2rem;
    }
}

@media screen and (min-width: 641px){

}

/* grid */

.teamy-team{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media screen and (min-width: 849px){

     .teamy{
         width: 24.5%;
     }
}

@media screen and (min-width: 425px) and (max-width: 848px){

     .teamy{
         width: 50%;
     }
}

@media screen and (max-width: 424px){

     .teamy{
         width: 100%;
     }
}

@media screen and (max-width: 384px){

}
/*-- //team --*/ 



/*-- stats --*/

h3.heading {
    font-size: 40px;
    /*text-transform: capitalize;*/
    color: #333;
    font-weight: 600;
}

.stats-section-w3pvt h3.heading, .testimonials h3.heading {
    color: #fff;
}

.stats-section-w3pvt h3.heading, .planes h3.heading {
    color: #fff;
}
.stats-section-w3pvt {
    background: #ff4f81;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    position: relative;
}

p.counter {
    color: #111;
    font-size: 2.5em;
    letter-spacing: 1px;
}

.text-stat p {
    font-size: 15px;
    letter-spacing: .5px;
}
p.para-text-w3ls{
    font-size: 15px;
}
.w3layouts_stats_left i {
    font-size: 30px;
    color: #fff;
    background: #333;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    line-height: 70px;
}
.text-stat h4 {
    font-size: 22px;
    color: #ddd;
    line-height: 35px;
    padding: 1em;
    border: 8px solid #aaa;
}
.w3layouts_stats_left{
	border:1px solid transparent;
    padding: 2em 0 !important;
	background: #fff;
}
.stats-icon {
    background: #333;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    line-height: 70px;
    margin: auto;
}
.w3layouts_stats_left span.fa {
    color: #ff4f81;
    font-size: 25px;
    line-height: 70px;
}
.w3layouts_stats_left:hover{
	border: 1px solid transparent !important;
}

/*-- //stats --*/

/*-- other services --*/

.info p {
    color: #888;
    font-size: 15px;
}
.info h4 {
    color: #222222;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    text-transform: uppercase;
}
.info img{
	width:50px;
}
.info{
	/*box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);*/
}
/*-- //other services --*/


/* -- testimonials --*/
.testimonials {
    background: url(../images/testimonials.jpg)no-repeat 0px 0px;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    background-size: cover;
}

.prepagas {
    background-color: #57f0ca;
    padding: 5px 0 5px 0;
}


.planes {
    background: url(../images/planes-back.jpg)no-repeat 0px 0px;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    background-size: cover;
}
.testi-w3pvt-grid p {
  letter-spacing: 1px;
  width: 80%;
  margin: 0em auto 0;
  color: #fff;
  line-height: 30px;
  padding: 1em 1em;
  font-size: 20px;
}
.testi-pos h4 {
    text-transform: uppercase;
    font-size: 1em;
    color: #fff;
    font-weight: 600;
    letter-spacing: 2px;
}
/* -- //testimonials --*/


/*-- subscribe --*/
subscribe form {
    border: 1px solid #808080;
    width: 80%;
    margin-top: 10px;
}

footer {
    background: url(../images/footer.jpg)no-repeat center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    background-size: cover;
}

.footer-layer {
    background: rgba(0, 0, 0, 0.6);
}
.footer-grid_section {
    width: 70%;
    margin: auto;
}
.footer-title a {
    font-size: 33px;
    text-transform: capitalize;
    font-weight: 600;
    color: #eee;
}
.footer-text p{
    color: #aaa;
}
ul.social_section_1info {
    margin-top: 20px;
}
ul.social_section_1info li {
    display: inline-block;
}

ul.social_section_1info a {
    margin-right: 4px;
    width: 40px;
    height: 40px;
    display: block;
	background: rgba(0, 0, 0, 0.4);
    text-align: center;
    line-height: 40px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

ul.social_section_1info a span.fa {
    font-size: 13.5px;
    color: #ccc;
    line-height: 40px;
}
ul.links li {
    display: inline-block;
}
ul.links a ,.copy-right p,.copy-right p{
    color: #c6c6c6;
    letter-spacing: 1px;
    text-transform: capitalize;
}

.copy-right a{
    color: #c6c6c6;
    letter-spacing: 1px;
    text-transform: capitalize;
}


ul.links a {
    padding: 0 10px;
    display: inline-block;
}
.copyright {
    background: #2d447b;
}
.copy-right {
    text-align: right;
}
.copy-right p a:hover{
    color: #fff;
}
.subscribe form input[type="email"] {
    outline: none;
    padding: 15px 25px;
    color: #333;
    font-size: 15px;
    width: 90%;
    border: none;
    background: #fff;
    letter-spacing: 1px;
}
.subscribe button.btn1 {
    color: #fff;
    border: none;
    padding: 13px 0;
    outline: none;
    text-align: center;
    text-decoration: none;
    background: #333;
    cursor: pointer;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
    transition: 0.5s all;
    float: right;
    width: 10%;
}

.subscribe form {
    width: 80%;
    margin-top: 10px;
}
.subscribe h3 {
    font-size: 40px;
    color: #fff;
    letter-spacing: 1px;
}
.subscribe-left {
	background: #ff4f81;
}
.subscribe-right {
    background: #f6f6f6;
}
.news-icon {
    width: 20%;
	text-align: center;
}
.news-icon span.fa {
    color: #fff;
    font-size: 55px;
    margin-top: 20px;
}
/*-- //subscribe --*/

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #fff;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px;
  background-color: #2d447b;
  border-radius: 20px;
}

.contact .info-box i {
  font-size: 32px;
  color: #F16A60;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #ffded4;
  float: left;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #c1c1c1;
  font-weight: 700;
  margin: 10px 0 10px 6px;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin: 0 0 0 6px;
}

.contact .info-box a {
  font-size: 15px;
  color: #fff;
  font-weight: 500;
  margin: 8px 0 8px 1px;
}
.contact .info-box a:hover {
  font-size: 15px;
  color: #c1c1c1;
  font-weight: 700;
  margin: 10px 0 10px 6px;
}


.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea, .contact .php-email-form select {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input::focus, .contact .php-email-form textarea::focus {
  background-color: #F16A60;
}

.contact .php-email-form input {
  padding: 20px 15px;
}

.contact .php-email-form select {
  padding: 9px 86px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  background: #82dedd;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #ff7e54;
}


/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li + li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #ffb8a1;
}

.faq .faq-list .icon-show, .faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #F16A60;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*-- move top --*/

.move-top {
    position: relative;
}

a.move-top {
    text-align: center;
    position: absolute;
    right: 1%;
    bottom: 0%;
}

a.move-top span{
    color: #fff;
    width: 36px;
    height: 36px;
    border: transparent;
    line-height: 2em;
    background: #333;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -o-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
}

.procesos h3{
    font-size: 34px;
    font-weight: bold;
    color: #2d447b;
    padding: 0 0 20px 0px;
}

.procesos i{
    color: #4e8fc8;
    padding: 0px 0px 20px 0;
}

/*-- //move top --*/


/*flip cards*/

.wrapper {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

.card {
    width: 420px;
    height: 460px;
    margin: 1em;
    perspective: 1500px;
    .content {
        position: relative;
        width: 100%;
        height: 100%;
        transform-style: preserve-3d;
        transition: transform 0.8s cubic-bezier(0.75, 0, 0.85, 1);
        border-radius: 51px;
    }
}

.more {
    display: none;

    &:checked ~ .content {
        transform: rotateY(180deg);
    }
}

.front,
.back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    border-radius: 38px;

    .inner {
        height: 100%;
        display: grid;
        padding: 1.5em;
        transform: translateZ(80px) scale(0.94);
    }
}

.front {
    background-color: #2d447b;
    background-size: cover;
    background-position: center center;
    &:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
        border-radius: 6px;
        backface-visibility: hidden;
        /*background: linear-gradient(
            40deg,
            rgba(67, 138, 243, 0.7),
            rgba(255, 242, 166, 0.7)
        );*/
    }
    .inner {
        grid-template-rows: 0fr 0fr 0fr 1fr 1fr;
        justify-items: left;
    }

    h2 {
        grid-row: 1;
        margin-bottom: 0.3em;
        text-transform: uppercase;
        letter-spacing: 3px;
        color: #fff;
        font-weight: 800;
        text-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
    }

    .rating {
        grid-row: 3;
        color: rgba(255, 255, 255, 0.8);
        font-size: 14px;
        display: flex;
        flex-flow: row nowrap;
        i {
            margin: 0 1px;
        }
    }
}

.back {
    transform: rotateY(180deg);
    background-color: #42495b;
    border: 2px solid rgb(240, 240, 240);
    border-radius: 38px;
    .inner {
        grid-template-rows: 1fr 2fr 1fr 2fr 14fr 1fr 1fr;
        grid-template-columns: repeat(4, auto);
        grid-column-gap: 0.8em;
        justify-items: center;
    }

    .info {
        position: relative;
        display: flex;
        align-items: center;
        color: $accent-color;
        grid-row: 3;
        &:not(:first-of-type):before {
            content: '';
            position: absolute;
            left: -0.9em;
            height: 18px;
            width: 1px;
            background-color: #ccc;
        }
        span {
            font-size: 2em;
            font-weight: 700;
        }
        i {
            &:before {
                background: linear-gradient(40deg, $accent-color, rgb(67, 138, 243));

                -webkit-text-fill-color: transparent;
                -webkit-background-clip: text;
            }
            font-size: 1.2em;
        }
        .icon {
            margin-left: 0.3em;
            span {
                display: block;
                margin-top: -0.25em;
                font-size: 0.8em;
                font-weight: 600;
                white-space: nowrap;
            }
        }
    }

    .description {
        grid-row: 5;
        grid-column: 1/-1;
        font-size: 0.86em;
        border-radius: 5px;
        font-weight: 600;
        line-height: 1.4em;
/*        overflow: auto;*/
        color: $accent-color;
        padding-right: 10px;
    }

    .location,
    .price {
        font-weight: 600;
        color: $accent-color;
        grid-row: 1;
        font-size: 0.86em;
    }

    .location {
        grid-column: 1/3;
        justify-self: left;
    }

    .price {
        grid-column: 3/-1;
        justify-self: right;
    }

    .button {
        grid-column: 1/-1;
        justify-self: center;
    }
}

.button {
    grid-row: -1;
    text-transform: uppercase;
    letter-spacing: 0px;
    font-weight: 600;
    cursor: pointer;
    display: block;
    padding: 0 0em;
    height: 3em;
    line-height: 2.9em;
    min-width: 10em;
    background-color: transparent;
    border: solid 2px #fff;
    color: #fff;
    border-radius: 26px;
    text-align: center;
    left: 50%;
    backface-visibility: hidden;
    transition: 0.3s ease-in-out;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.3);

    &:hover {
        background-color: #22222263;
        box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
        text-shadow: none;
        color: $accent-color;
    }

    &.return {
        line-height: 3em;
        color: $accent-color;
        border-color: $accent-color;
        text-shadow: none;
        &:hover {
            background-color: $accent-color;
            color: #fff;
            box-shadow: none;
        }
    }
}

::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: lighten($accent-color, 20%);
}
::-webkit-scrollbar-thumb:hover {
    background: $accent-color;
}



/*-- responsive design --*/

@media(max-width:1440px) {
    .position-image img {
		top: 23%;
	}
}
@media(max-width:1080px) {
    .navbar-light .navbar-nav .nav-link {
		padding: 0 0px 5px;
	}
	h3.b-w3ltxt {
		font-size: 3em;
	}
	h4.b-w3ltxt {
		font-size: 2.5em;
	}
	.padding {
		padding: 2em;
	}
	.subscribe h3 {
		font-size: 35px;
	}
	.w3layouts_stats_left span.fa {
		font-size: 22px;
	}
	.banner-form-w3 h5 {
		font-size: 17px;
	}
	.our-services-img {
		margin-right: 8px;
	}
	.our-services-text h4 {
		font-size: 17px;
		letter-spacing: .5px;
	}
	.our-services-img img {
		width: 62px;
	}
	.info h4 {
		font-size: 18px;
	}
	.info img {
		width: 42px;
	}
	.footer-grid_section {
		width: 75%;
	}
	ul.links a, .copy-right p, .copy-right p a {
		letter-spacing: 0.5px;
	}
    .banner-text-w3ls {
		padding: 19vw 0 15vw;
	}
	.banner-form-w3 {
		padding: 15vw 0 0vw;
	}
}
@media(max-width:1024px) {
	.news-icon span.fa {
		font-size: 43px;
	}
}
@media(max-width:991px) {
	.ser-img span.fa {
		margin-right: 15px;
	}
    .banner-text-w3ls {
		padding: 19vw 0 8vw;
	}
	.banner-form-w3 {
		padding: 0vw 0 10vw;
	} 
	.testi-w3pvt-grid p {
		padding: 1em 0em;
		font-size: 14px;
	}
	.team-grid {
		padding: 0 5px;
	}
	.team-info {
		padding: 20px 0px 0;
	}
	.team-info h3 {
		font-size: 1.2em;
		letter-spacing: 0px;
	}
	.subscribe h3 {
		font-size: 32px;
	}
	p.counter {
		font-size: 2.2em;
	}
	.footer-grid_section {
		width: 100%;
	}
	.links{
		text-align: center;
	}
	.copy-right {
		text-align: center;
		margin-top: 10px
	}
	.subscribe form {
		width: 90%;
	}
	.subscribe h3 {
		font-size: 31px;
	}
}
@media(max-width:768px) {
    .subscribe h3 {
		font-size: 30px;
	}
	.footer-title a {
		font-size: 27px;
	}
	.testi-w3pvt-grid h4 {
		font-size: 20px;
		letter-spacing: 1px;
	}
	h3.heading {
		font-size: 35px;
	}
	.w3layouts_stats_left i {
		font-size: 20px;
	}
	p.counter {
		font-size: 2em;
	}
	.banner-text-w3ls {
		padding: 19vw 8vw 8vw;
	}
	.banner-form-w3 {
		padding: 0vw 0vw 10vw 8vw;
	} 
	ul.banner_slide_bg .container-fluid {
		padding: 0;
	}
	.csslider>.navigation {
		bottom: -2% !important;
		left: -1% !important;
	}
	.testimonials {
		background: url(../images/testimonials.jpg)no-repeat center;
		-webkit-background-size: cover;
		-moz-background-size: cover;
		-o-background-size: cover;
		-ms-background-size: cover;
		background-size: cover;
	}
    .planes {
        background: url(../images/planes-back.jpg)no-repeat center;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        -ms-background-size: cover;
        background-size: cover;
    }
}
@media(max-width:736px) {
    
	h3.b-w3ltxt {
		font-size: 2.8em;
	}
	h4.b-w3ltxt {
		font-size: 2.5em;
	}
	.navbar-brand {
		font-size: 25px;
	}
	.navbar-brand img, .footer-title img {
		width: 40px;
	}
	.image {
		width: 14%;
	}
	.img1 h3 {
		font-size: 22px;
	}
	ul.callbacks_tabs {
		position: absolute;
		bottom: -25px;
	}
	.banner-text-w3ls {
		padding: 22vw 0vw 8vw;
	}
	.banner-form-w3 {
		padding: 0vw 0vw 10vw;
	}  
	.carousel-item p {
		font-size: 14px;
	}
	.ser-img img {
		width: 70px;
	}
	.news-icon span.fa {
		margin-top: 0px;
	}
	.team-grid {
		padding: 0 5px;
		width: 50%;
	}
	.news-icon {
		width: 14%;
	}
	.ser-img span.fa {
		margin-right: 7px;
		font-size: 35px;
	}
}
@media(max-width:667px) {
    
	h3.b-w3ltxt {
		font-size: 2.5em;
	}
	h4.b-w3ltxt {
		font-size: 2.2em;
	}
	.subscribe-right {
		padding: 0 2em;
	}
	.stats-icon {
		width: 65px;
		height: 65px;
		line-height: 65px;
	}
	.w3layouts_stats_left span.fa {
		font-size: 20px;
		line-height: 65px;
	}
	.text-effect-wthree h5 {
		font-size: 18px;
	}
}

@media(max-width:568px) {
    
	.banner-text-w3ls {
		padding: 22vw 8vw 8vw;
	}
	.banner-form-w3 {
		padding: 0vw 8vw 10vw 8vw;
	} 
	.carousel-indicators {
		bottom: -35px;
	}
	.banner-bottom p {
		font-size: 15px;
	}
	.w3ls_banner_txt p {
		font-size: 14px;
	}
}
@media(max-width:480px) {
    h3.heading {
		font-size: 34px;
	}
	h3.b-w3ltxt {
		font-size: 2.2em;
	}
	h4.b-w3ltxt {
		font-size: 20px;
		letter-spacing: 0px;
	}
	.banner-text-w3ls {
		padding: 11vw 8vw 8vw;
	}
    .banner {
    background: url(../images/banner_m.jpg)no-repeat center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    background-size: cover;
}
	h2.heading {
		font-size: 26px;
		line-height: 28px;
	}
	.right-p li, .right-p li a {
		font-size: 14px;
		letter-spacing: 1px;
	}
	.subscribe form {
		width: 100%;
	}
	.csslider>.navigation label,.csslider>.navigation label:after {
		height: 3px !important;
	}
	.btn-banner {
		letter-spacing: 1px;
		padding: 11px 26px;
	}
	ul.links a, .copy-right p, .copy-right p a {
		font-size: 14px;
	}

.card-container .card {
  margin: 10px;
  width: calc(100% - 20px);
  float: left;
  box-shadow: 0 0 2px 2px rgba(0,0,0,.05);
  background: #FFF;
  -webkit-transition: .3s all ease;
  transition: .15s all ease;
  border-radius: 12px;
  padding: 10px;
}




}
@media(max-width:415px) {
	h3.b-w3ltxt {
		font-size: 2em;
	}
	h4.b-w3ltxt {
		font-size: 1em;
		letter-spacing: 1px;
	}
	h2.heading {
		font-size: 22px;
	}
	p.counter {
		font-size: 2em;
	}
	.teamy__name {
		font-size: 1.2em;
	}
	.social {
		width: 38px;
		height: 38px;
		margin: 2px;
		font-size: 13px;
	}
	p.para-text-w3ls {
		font-size: 13px;
	}
	.subscribe form input[type="email"] {
		width: 85%;
	}
	.subscribe button.btn1 {
		width: 15%;
	}
	ul.links a, .copy-right p, .copy-right p a {
		font-size: 15px;
	}
	.image {
		width: 20%;
	}
	.ser-img img {
		width: 65px;
	}
	h3.heading {
		font-size: 29px;
	}
	.news-icon {
		width: auto;
	}
	.news-icon span.fa {
		font-size: 24px;
	}
	.subscribe-right p {
		font-size: 14px;
	}
	#logo a {
		font-size: .65em;
	}
	.footer-text p {
		font-size: 14px;
	}
}
@media(max-width:384px) {
    .right-p li, .right-p li a {
		font-size: 13px;
		letter-spacing: .5px;
	}
	.navbar-brand img, .footer-title img {
		width: 35px;
	}
	.navbar-brand {
		font-size: 22px;
	}
	.banner-text-w3ls {
		padding: 33vw 7vw 8vw;
	}
	h3.b-w3ltxt {
		font-size: 2em;
	}
	h4.b-w3ltxt {
		font-size: 1.6em;
		letter-spacing: 1px;
	}
	.btn-banner {
		font-size: 14px;
		letter-spacing: 1px;
		padding: 10px 25px;
	}
	.padding {
		padding: 2em;
	}
	.banner-form-w3 {
		padding: 0vw 7vw 10vw 7vw;
	}
	h2.heading {
		font-size: 21px;
	}
	h3.heading {
		font-size: 30px;
	}
	.teamy__content {
		padding: 20px 10px;
	}
	.footer-text p {
		font-size: 14px;
	}
	ul.links a, .copy-right p, .copy-right p a {
		font-size: 14px;
	}
	.image {
		width: 25%;
	}
	.subscribe h3 {
		font-size: 25px;
	}
	.ser-img {
		padding-right: 0;
	}
	h3.b-w3ltxt {
		font-size: 1.8em;
	}
	h4.b-w3ltxt {
		font-size: 1.2em;
		letter-spacing: 1px;
	}
	.banner-form-w3 h5 {
		font-size: 16px;
	}
	.stats-section-w3pvt .col-6 {
		padding: 0 7px;
	}
	.info p {
		font-size: 14px;
	}
	.subscribe-right {
		padding: 0 1em;
	}
	.copyright {
		padding: 0 1em;
	}
	.news-icon span.fa {
		margin-top: 10px;
	}
}
@media(max-width:375px) {
    
}
@media(max-width:320px) {
    
}

.social {
    position: fixed;
    z-index: 3;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 15px;
    min-height: 3.5rem;
    min-width: 3.5rem
}

@media screen and (min-width:576px) {
    .social {
        right: auto;
        left: 50%;
        -webkit-transform: translate(calc(255px - 100%), -50%);
        -ms-transform: translate(calc(255px - 100%), -50%);
        transform: translate(calc(255px - 100%), -50%)
    }
}

@media screen and (min-width:768px) {
    .social {
        -webkit-transform: translate(calc(345px - 100%), -50%);
        -ms-transform: translate(calc(345px - 100%), -50%);
        transform: translate(calc(345px - 100%), -50%)
    }
}

@media screen and (min-width:992px) {
    .social {
        -webkit-transform: translate(calc(536px - 100%), -50%);
        -ms-transform: translate(calc(536px - 100%), -50%);
        transform: translate(calc(536px - 100%), -50%)
    }
}

@media screen and (min-width:1200px) {
    .social {
        -webkit-transform: translate(calc(620px - 100%), -50%);
        -ms-transform: translate(calc(620px - 100%), -50%);
        transform: translate(calc(620px - 100%), -50%)
    }
}

.social__items {
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
    -webkit-transform: translateY(1rem);
    -ms-transform: translateY(1rem);
    transform: translateY(1rem);
    pointer-events: none;
    opacity: 0
}

@media screen and (min-width:768px) {
    .social__items {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

.social__item {
    height: 3rem;
    width: 3rem;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
    -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.25)
}

.social__item-icon {
    color: #ffffff;
    font-size: 2rem
}

@media screen and (min-width:768px) {
    .social__item-icon {
        font-size: 1.5rem
    }
}

.social__item--facebook {
    background-color: #0081ff
}

.social__item--facebook:hover {
    background-color: #0074e6
}

.social__item--whatsapp {
    background-color: #48c43f
}

.social__item--whatsapp:hover {
    background-color: #3fb337
}

.social__btn {
    height: 3rem;
    width: 3rem;
    border-radius: 50%;
    background-color: #fd7219;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.25);
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

.social__btn-lines {
    display: block;
    position: relative;
    height: 14px;
    width: 1rem
}

.social__btn-line {
    display: block;
    background-color: #ffffff;
    height: 2px;
    width: 1rem;
    border-radius: 1rem;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0
}

.social__btn-line::-moz-selection {
    background-color: transparent
}

.social__btn-line::selection {
    background-color: transparent
}

.social__btn-line:first-child {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    top: 0
}

.social__btn-line:last-child {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    bottom: 0;
    top: auto
}

.social__btn:hover {
    background-color: #fa6302
}

.social--active .social__items {
    opacity: 1;
    pointer-events: all;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none
}

.social--active .social__btn {
    top: auto;
    bottom: 0;
    -webkit-transform: translate(-50%, 100%) rotate(45deg);
    -ms-transform: translate(-50%, 100%) rotate(45deg);
    transform: translate(-50%, 100%) rotate(45deg)
}

.social--active .social__btn-line:first-child {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.social--active .social__btn-line:nth-child(2) {
    opacity: 0
}

.social--active .social__btn-line:last-child {
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%) rotate(-90deg);
    -ms-transform: translateY(-50%) rotate(-90deg);
    transform: translateY(-50%) rotate(-90deg)
}

.about-section{
    background-color: #00AAFF
}
.mas-section{
    background-color: #d5d4d3
}

.mas{
    background: #aaa;
}

.boxsosiedades {
        background: #e3e3e3;
        border-radius: 20px;
        padding: 10px 20px 10px 20px;
        margin: 0 0 0 20px

    }


.cta__btn {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #5db836;
    margin-top: 3rem;
    font-family: "Noyh", "Helvetica", "Arial", sans-serif;
    font-weight: 400;
    border-radius: 10rem;
    padding: 1.333rem 5rem;
    font-size: 3.5rem; }
    .cta__btn:link, .cta__btn:hover, .cta__btn:active, .cta__btn:focus, .cta__btn:visited {
      color: #ffffff;
      text-decoration: none; }


 .cta__title h2 {
 font-family: "Noyh", "Helvetica", "Arial", sans-serif;
    font-weight: 400;
    border-radius: 10rem;
    padding: 1.333rem 5rem;
    font-size: 3.5rem; 

}


    @media screen and (min-width: 768px) {
      .cta__btn {
        margin-top: 0;
        margin-left: 1.75rem;
        padding: 0.5rem 1.75rem;
        font-size: 2.625rem; } }
    .cta__btn span {
      line-height: 1;
      -webkit-transform: translateY(2px);
      -ms-transform: translateY(2px);
      transform: translateY(2px); }
    .cta__btn i {
      margin-left: 3.333rem;
      font-size: 4.5rem; }
      @media screen and (min-width: 768px) {
        .cta__btn i {
          margin-left: 2.5rem;
          font-size: 3.375rem; } }
    .cta__btn:hover {
      background-color: #5db836; }



      .services {
    padding: 70px 30px 0;
    text-align: center; 
    position: relative;
    
    h2 {
        color: $green;
        font-size: 38px;
        margin-bottom: 38px;
        position: relative;
        z-index: 1;
    }


    
   

    .items {
        
        .item {
            border-radius: 30px;
            box-shadow: 1px 1px 5px rgba(0, 0, 0, .3);
            position: relative;
            text-align: left;
            overflow: hidden;
            background: $white;
            transition: all .3s ease-out; 
            margin-bottom: 30px;
            
            h3 {
                color: $green;
                font-size: 46px;
                transition: all .3s ease-out; 
            }
            
            header {
                border-bottom: 2px $green solid;
                padding: 30px 20px 0;
                transition: all .3s ease-out; 
            }

            .requisitos {

                &-before {
                    padding-left: 22px;
                    opacity: 1;
                    
                    li {
                        list-style: disc;
                    }                   
                }
                &-after {
                    position: absolute;
                    background: $green;
                    color: $white;
                    padding: 0 20px;
                    top: 100%;
                    left: 0;
                    transition: all .2s ease-in; 
                    z-index: 1;
                    opacity: 0;
                    
                    &.open-module {
                        top: 20px;
                        opacity: 1;
                    }
                }
            }

            &.is-open {
                background: $green;
                
                h3 {
                    color: $white;
                }

                header {
                    border-bottom-color: $white;
                }

                .requisitos-before {
                    opacity: 0;
                }

                .content nav {
                    // background: $green;
                }
            }
        }

        .content {
            position: relative;
            padding: 20px 20px 80px;

            nav {
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                padding: 0 20px 20px;
                display: flex;
                justify-content: space-between;
                z-index: 5;
                
                a {
                    padding: 12px 18px;
                    background: $white;
                    border-radius: 30px;
                    box-shadow: 1px 1px 5px rgba(0, 0, 0, .3);
                    
                    &:last-child {
                        background: $green;
                        color: $white;
                    }
                }
            }
        }
    }



/*-- //responsive design --*/
