/*-------------
        General
-------------*/

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    font: normal 16px sans-serif;
    color: #555;
}

ul, nav{
    list-style: none;
}

a.menuLink {
    font: 20px 'Muli', sans-serif;
}

.suma {
    max-width: 50em;
    max-height: 20em;
}

@media (max-width: 700px){
    .suma {
        max-width: 100%;
    }
}


a{
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    opacity: 0.9;
}

a:hover{
    opacity: 1;
}

a.btn, button.btn{
    color: #fff;
    border-radius: 4px;
    text-transform: uppercase;
    background-color: #387c82;
    font-weight: 800;
    text-align: center;
}

hr{
    width: 150px;
    height: 2px;
    background-color: #20bebf;
    border: 0;
    margin-bottom: 40px;
}

section{
    display: flex;
    flex-direction: column;
    align-items: center;

    /*padding: 125px 100px;*/
}

/*@media (max-width: 1000px){

    section{
        padding: 100px 50px;
    }

}

@media (max-width: 600px){
    .logo {
        max-height: 2em;
    }
    .burbujas {
        width: 90%;

    }
    section{
        padding: 80px 30px;
    }

}*/

section h3.title{
    color: #ffffff;
    /*color: #414a4f;
    text-transform: capitalize; */
    font: bold 25px 'Comfortaa', cursive;
    margin-bottom: 5px;
    text-align: center;
    background-color: #1C7175;
    background: -webkit-linear-gradient(left top, #61c1c9, #1C7175);
    background: -o-linear-gradient(bottom right, #61c1c9, #1C7175);
    background: -moz-linear-gradient(bottom right, #61c1c9, #1C7175);
    background: linear-gradient(to bottom right, #61c1c9, #1C7175);
    padding: 20px;
    width: 100%;
    margin-bottom: 25px;
}

section p{
    max-width: 800px;
    text-align: center;
    margin-bottom: 35px;
    padding: 0 20px;
    line-height: 2;
    font: 20px 'Muli', sans-serif;
}
.contact_link{
    position: fixed;
    right: 15px;
    bottom: 1.2em;
    padding: 15px;
    background: #f59052;
    border-radius: 7px;
}
ul.grid{
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 22px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
    background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

#terms{
    border-bottom: 1px solid #555; 
    font-size: 22px;
}

#terms:hover{
    border-bottom: 2px solid #555;
}
@media (max-width: 3000px){
    section p{
        font: 28px 'Muli', sans-serif;
    }

    .features-col li h4, .features .grid li h4, .features-agent .grid li h4{
        font: bold 30px 'Comfortaa', cursive;
    }
}

@media (max-width: 1800px){
    section p{
        font: 20px 'Muli', sans-serif;
    }

    .features-col li h4, .features .grid li h4, .features-agent .grid li h4 {
        font: bold 22px 'Comfortaa', cursive;
    }
}


/*-------------
        Header
-------------*/

header{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    /*padding: 35px 100px 0;*/
    padding: 3px 100px 0;
}

header h2{
    font-family: 'Comfortaa', cursive;
}

header nav{
    display: flex;
}

header nav li{
    margin: 0 15px;
}

header nav li:first-child{
    margin-left: 0;	
}

header nav li:last-child{
    margin-right: 0;	
}

@media (max-width: 3000px){
    .burbujassq {
        display: none;
    }
}

@media (max-width: 1000px){
    header{
        padding: 20px 50px;
    }
    .burbujas {
        display: block;
    }
}


@media (max-width: 800px){
    header{
        flex-direction: column;		
    }
    .burbujassq {
        display: block;
    }
    .burbujas {
        display: none;
    }
    header h2{
        margin-bottom: 15px;
    }
    .hero {
        background-size: auto 100% !important;
    }
}



/*----------------
        Hero Section
----------------*/

.hero{
    justify-content: center;
    color: #fff;
    text-align: center;
    background-image: url(/img/landing/fondomain3.jpg);
    background-size: 100%;
}

.hero .background-image{
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-color: #20bebf;
    z-index: -1;
}

.sectionTitle{
    left: 0;
    width: 100%;
    background-color: #1C7175;
    padding: 20px 40px;
}

.sectionContent{
    width: 100%;
    background-color: #f1f1f1;
    padding: 20px 70px;
    display: flex;
    flex-direction: column;
    align-items: center;    
}

.hero .background-image:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #414a4f;
    opacity: 0.75;
}

.hero h1{
    font: bold 37px 'Comfortaa', cursive;
    margin-bottom: 15px;
    margin-top: 8%;
    font-weight: 100;    
    transform: scale(1, .9);
}

.hero h2{
    display: block;
    font-size: 1.5em;
    -webkit-margin-before: 0.83em;
    -webkit-margin-after: 0.83em;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
    font-weight: bold;
    font-family: 'Comfortaa';
}

.hero h3{
    font: normal 28px 'Comfortaa', cursive;
    margin-bottom: 40px;
}

.hero button.btn{
    padding: 20px 46px;
}

.hero form{
    z-index: 100;
    position: absolute;
    right: 0;
    top: 15%;
}

.hero form input{
    padding: 15px;
    flex: 1;
    margin-right: 30px;
    font-size: 18px;
    color: #555;
}

.hero form .btn{
    padding: 16px 42px;
    border: none;
    font-size: 16px;
}

@media (max-width: 800px){

    .hero{
        min-height: 600px;
    }

    .hero h1{
        font-size: 30px;
        margin-top: 50%;
    }

    .hero h3{
        font-size: 24px;
    }

    .hero a.btn{
        padding: 15px 40px;
    }

}

@media (max-width: 600px){

    .hero form{
        margin-top: 50%
    }

}



/*--------------------
        Our Work Section
---------------------*/
.our-work ul{
    display: flex;
    margin-bottom: 25px;
    font-size: 32px;
}

.our-work ul li{
    margin: 0 8px;	
}

.our-work ul li:first-child{
    margin-left: 0;	
}

.our-work ul li:last-child{
    margin-right: 0;	
}

.our-work-grid {
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.our-work-col {
    flex-basis: 50%;
    padding: 30px;
}

.our-work{
    background-color: #f1f1f1;
}

.carnet {
    max-width: 100%;
}

.our-work .grid li{
    padding: 20px;
    height: 350px;
    border-radius: 3px;

    background-clip: content-box;
    background-size: cover;
    background-position: center;
    background-color: #333;
}

.our-work .grid li.small{
    flex-basis: 40%;
}

.our-work .grid li.large{
    flex-basis: 60%;
}


@media (max-width: 1000px){

    .our-work .grid li.small,
    .our-work .grid li.large{
        flex-basis: 100%;
    }

}

@media (max-width: 600px){

    .our-work-col {
        flex-basis: 100%;
        padding: 2%;
    }

}



/*----------------------
        Features Section
----------------------*/

.features{
    background-color: white;
}

.features .grid li{
    padding: 30px 30px;
    flex-basis: 33%;
    text-align: center;
}

.features .grid li i{
    font-size: 50px;
    color: #f59052;
    margin-bottom: 25px;
}

.features .grid li h4{
    color: #555;
    margin-bottom: 25px;
}

.features .grid li p{
    margin: 0;
}

.features-grid {
    width: 96%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.features-col {
    flex-basis: 33%;
}

.features-col li{
    padding: 30px 30px;
    flex-basis: 33%;
    text-align: center;
}

.features-col li i{
    font-size: 50px;
    color: #f59052;
    margin-bottom: 25px;
}

.features-col li h4{
    color: #555;
    margin-bottom: 25px;
}

.features-col li p{
    margin: 0;
}

@media (max-width: 1000px){

    .features .grid li{
        flex-basis: 70%;
        margin-bottom: 30px;
    }

    .features .grid li:last-child{
        margin-bottom: 0;
    }

}


@media (max-width: 600px){

    .features-col, .features .grid li{
        flex-basis: 100%;
    }

}

.features-agent{
    background-color: #f1f1f1;
}

.features-agent .grid li{
    padding: 30px 30px;
    flex-basis: 33%;
    text-align: center;
}

.features-agent .grid li i{
    font-size: 50px;
    color: #20bebf;
    margin-bottom: 25px;
}

.features-agent .grid li h4{
    color: #555;
    margin-bottom: 25px;
}

.features-agent .grid li p{
    margin: 0;
}

@media (max-width: 1000px){

    .features-agent .grid li{
        flex-basis: 70%;
        margin-bottom: 30px;
    }

    .features-agent .grid li:last-child{
        margin-bottom: 0;
    }

}


@media (max-width: 600px){

    .features-agent .grid li{
        flex-basis: 100%;
    }

}



/*--------------------
        Reviews Section
--------------------*/

.reviews{
    background-color: #fff;
}

.reviews .quote{
    text-align: center;
    width: 80%;
    font-size: 22px;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 20px;
    padding: 0;
}

.reviews .author{
    font-size: 18px;
    margin-bottom: 50px;
}

.reviews .author:last-child{
    margin-bottom: 0;
}

@media (max-width: 1000px){

    .reviews .quote{
        font-size: 20px;
    }

    .reviews .author{
        font-size: 16px;
    }

}



/*---------------------
        Contact Section
---------------------*/

.contact{
    background-color: white;
}

.contact form{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
    max-width: 800px;
    width: 80%;
    margin-bottom: 30px;
}

.contact form input{
    width: 50%;
    margin-left: 20px;
    margin-bottom: 10px;
    padding: 15px;
    flex: 1;
    margin-right: 30px;
    font-size: 18px;
    color: #555;
}

.contact form textarea{
    font-size: 18px;    
    font-family: Arial;
    width: 50%;
    margin-left: -10px;
    margin-bottom: 10px;
    color: #555;
    padding-top:.8em;
    padding-left: .8em;
}

#name, #email, #enterprise{
    background-image: url(../img/abacusstar.svg);
    background-position: right;
    background-size: 20px;
    background-repeat: no-repeat;
    border: solid #A9A9A9 1px;
}

textarea::placeholder { /* Chrome/Opera/Safari */
    /*padding-top:.8em;
    padding-left: .8em;*/
}
textarea::-moz-placeholder { /* Firefox 19+ */
    padding-top:.8em;
    padding-left: .8em;
}
textarea:-ms-input-placeholder { /* IE 10+ */
    padding-top:.8em;
    padding-left: .8em;
}
textarea:-moz-placeholder { /* Firefox 18- */
    padding-top:.8em;
    padding-left: .8em;
}

.contact form .btn{
    padding: 18px 42px;
}

#dialog{
    text-align: center;
    background: white; 
    height: 300px; 
    width: 400px; 
    border: 1px solid #A9A9A9; 
    position: absolute;
    left: 35%;
    top: 25%;
}

#dialog .btn{
    padding: 18px 42px;
    top: 5px;
    position: relative;
}

#headermodal{
    background: linear-gradient(to bottom right, #61c1c9, #1C7175); 
    height: 30px; 
    width: 400px; 
    color: white; 
    font: 18px Arial; 
    line-height: 27px;
}

#modal{
    display: none;
    position: fixed;
    background: rgba(0,0,0,0.8);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index:10;
}

#textmodal{
    font: 18px Arial; 
    line-height: 20px;
}


@media (max-width: 800px){

    .contact form input{
        flex-basis: 100%;
        margin: 0 0 20px 0;
        width: 100%;
    }

    .contact form textarea{
        width: 100%;
        margin-left: 0;
    }

}




/*-------------
        Footer
-------------*/

footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #fff;
    background-color: #414a4f;
    padding: 60px 0;
}

footer ul{
    display: flex;
    margin-bottom: 25px;
    font-size: 32px;
}

footer ul li{
    margin: 0 8px;	
}

footer ul li:first-child{
    margin-left: 0;	
}

footer ul li:last-child{
    margin-right: 0;	
}

footer p{
    text-transform: uppercase;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 10px;
}

footer p a{
    color: #fff;
}

@media (max-width: 700px){

    footer{
        padding: 80px 15px;
    }

}


/* -- Demo ads -- */

@media (max-width: 1200px) {
    #bsaHolder{ display:none;}
}