@font-face {
    font-family: 'GothamRoundedBold';
    src: url('../fonts/gothamrnd-bold.eot');
    src: url('../fonts/gothamrnd-bold.eot') format('embedded-opentype'),
         url('../fonts/gothamrnd-bold.woff') format('woff'),
         url('../fonts/gothamrnd-bold.ttf') format('truetype'),
         url('../fonts/gothamrnd-bold.svg#GothamRoundedBold') format('svg');
}

@font-face {
    font-family: 'GothamRoundedBook';
    src: url('../fonts/gothamrnd-book.eot');
    src: url('../fonts/gothamrnd-book.eot') format('embedded-opentype'),
         url('../fonts/gothamrnd-book.woff') format('woff'),
         url('../fonts/gothamrnd-book.ttf') format('truetype'),
         url('../fonts/gothamrnd-book.svg#GothamRoundedBook') format('svg');
}
@font-face {
    font-family: 'GothamRoundedMedium';
    src: url('../fonts/gothamrnd-medium.eot');
    src: url('../fonts/gothamrnd-medium.eot') format('embedded-opentype'),
         url('../fonts/gothamrnd-medium.woff') format('woff'),
         url('../fonts/gothamrnd-medium.ttf') format('truetype'),
         url('../fonts/gothamrnd-medium.svg#GothamRoundedMedium') format('svg');
}
@font-face {
    font-family: 'GothamRoundedLight';
    src: url('../fonts/gothamrnd-light.eot');
    src: url('../fonts/gothamrnd-light.eot') format('embedded-opentype'),
         url('../fonts/gothamrnd-light.woff') format('woff'),
         url('../fonts/gothamrnd-light.ttf') format('truetype'),
         url('../fonts/gothamrnd-light.svg#GothamRoundedLight') format('svg');
}

*, *::before, *::after {
    box-sizing: inherit;
}
html {
    box-sizing: border-box;
    margin:0;
    padding:0;
}
body{
    font-family: "GothamRoundedLight", sans-serif;
    margin: 0;
    font-size: 1rem;
    color: #334242;
    background-color: #fff;
    transition: background-color .5s;
}
h1,h2,h3,h4,h5,h6{
    font-family: 'GothamRoundedBook';
    margin-bottom: .5rem;
    line-height: 1.2;
    letter-spacing: -1px;
}
h1{
    font-size: 2.5rem;
}
h2{
    font-size: 2rem;
}
h3{
    font-size: 1.75rem;
}
h4{
    font-size: 1.5rem;
}
h5{
    font-size: 1.25rem;
}
h6{
    font-size: 1rem;
}
.size-18{
    font-size: 1.15rem;
}
.size-20{
    font-size: 1.25rem;
}
.bold{
    font-weight:700;
}
.normal{
    font-weight: 400;
}
.light{
    font-weight: 300;
}
.color{
    color:#009da3;
}
.white{
    color:#fff;
}
.black{
    color:#333;
}
.bg-color{
    background-color:#009da3;
}
b{
    font-family: 'GothamRoundedMedium';
}
p{
    font-family: 'GothamRoundedLight';
    line-height:1.4;
    font-size:1rem;
    margin-top:0;
    margin-bottom:20px;
    color:#2b2b2b;
}
.btn{
    text-decoration: none;
    color:#fff;
    background-color:#00ccff;
    border-radius: 30px;
    padding:15px 20px;
    min-width: 180px;
    font-size:16px;
    line-height: 1;
    position: relative;
    -webkit-transition: all 0.15s ease-in;
    transition: all 0.15s ease-in;
    border:1px solid transparent;
    cursor: pointer;
    font-family: 'GothamRoundedMedium';
}
.btn:hover,
.btn:focus{
    background-color:#0f9cbc;
    outline: none;
}
.btn.white{
    background-color:#fff;
    color:#0d99ab;
}
.btn.white:hover,
.btn.white:focus{
    background-color:#eee;
    color:#0d99ab;
}
.btn.red{
    background-color:#ff6600;
    color:#fff;
}
.btn.red:hover,
.btn.red:focus{
    background-color:#d85700;
    color:#fff;
}
.container{
    width:100%;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    flex-direction: column;
}

/*Header*/
.header{
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
}
.header .container{
    flex-direction: row;
    justify-content: space-between;
}
.header .brand{
    padding:20px 0;
    height:160px;
}
.header .brand img{
    height: 100%;
}
.header .menu-sandwich{
    height: 35px;
    width: 35px;
    margin-top:35px;
    padding:5px 0;
}
.header .menu-sandwich img{
    width: 100%;
}
.mobile-menu {
    padding:100px 30px 0;
    background: rgba(255, 204, 0,.95); 
    display: flex;
    flex-direction: column; 
    align-items:center;
    height:100%;
}
.mobile-menu .close{
    position:absolute;
    right:20px;
    top:25px;
    height: 40px;
    width: 40px;
    cursor: pointer;
    background:transparent;
    border:0;
}
.mobile-menu .close img{
    width: 100%;
}
.mobile-menu nav{
    padding:0;
    width:100%;
}
.mobile-menu nav ul{
    margin:0;
    padding:0;
    list-style: none;
}
.mobile-menu nav a {
    padding: 15px 0;
    text-decoration: none;
    font-size: 20px;
    font-family: 'GothamRoundedMedium';
    color: #fff;
    display:block;
    text-align: right;
    transition: 0.3s;
    border-bottom:1px solid transparent;
    position:relative;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.drawer-nav {
    position: fixed;
    z-index: 101;
    top: 0;
    overflow: hidden;
    width:300px;
    height: 100%;
    background: rgba(255, 204, 0,.95); 
 }
.drawer-overlay {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .2);
}
.drawer-open .drawer-overlay {
    display: block;
}
.drawer--right .drawer-nav {
    right:-300px;
    -webkit-transition: right .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
    transition: right .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
}
.drawer--right.drawer-open .drawer-nav{
    right: 0;
}

/*Index - Banner principal*/
.hero-banner{
    background:#fff url('../images/bg.svg') no-repeat center top;
    background-size:cover;
    height:900px;
    position: relative;
    background-position-y: -20px;
}
.banner-content{
    padding:200px 0 0;
    text-align: center;
    margin:auto;
    width: 100%;
}
.banner-content h1{
    color:#fff;
    margin:0 auto;
}
.banner-content .well{
    margin:25px auto;
    background-color: #fff;
    border-radius: 10px;
    padding:15px 25px;
}
.form-range{
    width: 100%;
    display:flex;
    margin-bottom: 5px;
    align-items: center;
    justify-content: space-between;
}
.form-range label{
    flex:30%;
    margin:auto;
    text-align: left;
    font-size: 26px;
    font-family: 'GothamRoundedMedium';
    color:#7248c4;
}
.form-range .range{
    flex:60%;
    display: block;
    padding: 0 25px;
}
.form-range .range-value{
    flex:15%;
    text-align: right;
    font-size: 26px;
    font-family: 'GothamRoundedMedium';
    color:#7248c4;
}
.noUi-target {
    position: relative;
    direction: ltr;
}
.noUi-base {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}
.noUi-target {
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    margin: 30px 0;
    box-shadow:none;
    background-color: #ddd;
    border: none;
}
.noUi-connect {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: #7248c4;
}
.noUi-horizontal {
    height: 8px;
}
.noUi-horizontal .noUi-handle {
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    border-radius: 15px;
    box-shadow: none;
    border: none;
    background-color: #7248c4;
    width: 30px;
    height: 30px;
    top: -11px;
    cursor: pointer;
}
.noUi-horizontal .noUi-handle.noUi-active {
    background-color: #7248c4;
}
.noUi-horizontal .noUi-handle:before,
.noUi-horizontal .noUi-handle:after {
    content: none;
}
.noUi-horizontal .noUi-handle:focus {
    outline: none;
}
.noUi-origin {
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}
.noUi-background {
    -moz-box-shadow: inset 0 0 3px rgba(51, 51, 51, 0.45), 0 3px 6px -5px #bbb;
    -webkit-box-shadow: inset 0 0 3px rgba(51, 51, 51, 0.45), 0 3px 6px -5px #bbb;
    box-shadow: inset 0 0 3px rgba(51, 51, 51, 0.45), 0 3px 6px -5px #bbb;
    background: white;
}
.noUi-tooltip {
    border: none;
    border-radius: 4px;
    background-color: #7248c4;
    box-shadow: 0 5px 4px 0 rgba(0, 0, 0, 0.13);
    font-size: 14px;
    color: #fff;
}
.form-row{
    display: flex;
    justify-content: center;
    margin:0 -10px;
}
.form-row .form-group{
    position: relative;
    margin:0 10px;
    width: 33%;
    margin-bottom: 5px;
}
.form-row label.error{
    position: absolute;
    bottom:-18px;
    color: red;
    font-size: 12px;
    left: 15px;
}
.form-row .input,
.form-row .textarea{
    border:1px solid #ccc;
    border-radius: 30px;
    height: 44px;
    width: 100%;
    padding:5px 12px;
    font-size:16px;
    font-family: 'GothamRoundedLight';
    text-align: center;
}
.form-row .textarea{
    height: auto;
    min-height: 200px;
    width: 100%;
    padding:20px;
    text-align: left;
    margin:0;
}
.input.error,
.textarea.error{
    border-color: red;
}
.form-row .input:focus,
.form-row .textarea:focus{
    border-color:#7248c4;
    outline: none;
}
/*Steps Homepage*/
.steps{
    padding: 40px 0;
    text-align: center;
}
.steps h1{
    color:#333;
    margin:0 auto;
}
.steps h5{
    color:#333;
    margin:10px auto 30px;
    font-family: 'GothamRoundedLight';
}
.steps-content{
    display: flex;
    justify-content: space-between;
}
.step{
    padding:20px;
    text-align: center;
    flex: 33%;
}
.step span{
    margin:auto;
    display: block;
    width: 100px;
}
.step span img{
    width: 100%;
}
.step p{
    margin:20px auto;
    font-family: 'GothamRoundedLight';
    font-size: 16px;
}

/*Steps Homepage*/
.help{
    padding:100px 0 40px;
    background:#fff url('../images/bg2.svg') no-repeat center top;
    background-size:cover;
    height:1050px;
    text-align: center;
    position: relative;
}
.help h1{
    font-size: 30px;
    margin:5px 0;
}
.help h2{
    font-size: 40px;
    margin:5px 0 30px;
    font-family: 'GothamRoundedMedium';
}
.help .btn{
    display: inline-block;
    margin:auto;
}
.help hr{
    border-color: #fff;
    width: 100%;
    max-width: 450px;
    box-shadow: none;
    margin:60px auto;
}
.help h3{
    color:#fff;
    font-size: 40px;
    margin:5px 0 30px;
    font-family: 'GothamRoundedMedium';
}
.help p{
    margin:0 auto 5px;
    color:#fff;
    font-family: 'GothamRoundedBook';
    font-size: 18px;
}

/*Footer*/
footer{
    padding:40px 0 40px;
    position: relative;
    text-align: center;
}
footer p{
    font-family: 'GothamRoundedLight';
}
footer h1.phone{
    font-family: 'GothamRoundedLight';
    color:#666;
}
footer h4{
    color: #7248c4;
}
footer nav {
    margin-top: 20px;
    padding-top:20px;
    border-top: 1px solid #ddd;
}
footer nav ul{
    display: flex;
    margin:0;
    padding:0;
    justify-content: center;
    list-style:none;
    align-items: center;
}
footer nav ul li a{
    display: block;
    padding:20px;
    color:#666;
    font-size: 14px;
    text-decoration: none;
}
footer nav ul li a:hover{
    color:#000;
}
footer .social{
    list-style: none;
    margin:0;
    padding:0;
    display: flex;
    justify-content: center;
}
footer .social li a{
    width: 50px;
    margin:5px;
    display: block;
}
footer .social li a:hover{
    opacity: .9;
}
footer .social li a img{
    width: 100%;
}
footer .copy{
    font-size: 13px;
    margin:20px 0;
}
footer .agency{
    height: 12px;
    margin:auto;
}
footer .agency img{
    height: 70%;
}
.whatsapp{
    position:fixed;
    right:1rem;
    bottom:1rem;
    width: 50px;
    height: 50px;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(255, 255, 255);
    background-color: rgba(255,255,255,0.6);
}
.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding:40px 30px;
    border: 1px solid #ddd;
    width: 100%;
    max-width: 500px;
    position: relative;
}
.modal-content h1{
      font-size: 24px;
      margin:0 0 20px;
}
.modal-content .form-group{
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
}
.modal-content .form-group .input{
    text-align: left;
}
.modal .close-modal {
    position:absolute;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    right:15px;
    top:15px;
} 
.modal .close-modal:hover,
.modal .close-modal:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
.main-bg{
    position: relative;
}
.main-bg:before{
    content:"";
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
    width: 600px;
    height: 600px;
    background:#fff url('../images/bg3.svg') no-repeat right top;
    background-size:contain;
    background-position-y: -20px;
}
.hero-content{
    padding:200px 0 0;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}
.hero-content h1{
    margin-bottom:30px;
}
.contact-list{
    list-style: none;
    padding:0;
    margin:0;
}
.contact-list li{
    vertical-align: middle;
    margin-bottom: 10px;
}
.contact-list li img{
    height: 40px;
    margin-right: 10px;
    vertical-align: middle;
}
.form {
    max-width: 600px;
}
.form .form-row .form-group{
    width:100%;
    text-align: left;
    margin-bottom: 15px;
}
.form .form-row .form-group .input{ 
    text-align: left;
    padding:12px 30px;
}
.alerts {
    display: flex;
    align-items: center;
}
.alerts .thanks_error{
    color:red;
    margin:0;
}
label.error{
    color: red;
    font-size: 0.75rem;
}
.alerts .thanks{
    color:green;
    margin:0;
}
form .form-row.action{
    text-align: left;
}

@media(max-width:991px){
    .form-range label {
        flex: 42%;
        font-size: 24px;
    }
    .form-range .range-value {
        flex: 20%;
        font-size: 24px;
    }
    footer nav ul {
        margin-bottom: 30px;
        flex-flow: row wrap;
    }
    footer nav ul li a {
        padding: 5px 10px;
    }
    .main-bg:before{
        width: 500px;
        height: 500px;
    }
}
@media(max-width:767px){
    .header .brand {
        padding: 20px 0;
        height: 120px;
    }
    .hero-banner {
        height: 100%;
    }
    .banner-content h1,
    .steps h1 {
        font-size: 32px;
    }
    .mobile-menu nav a {
        font-size: 18px;
    }
    .form-range{
        margin-bottom:20px;
        flex-direction: column;
    }
    .form-range .label,
    .form-range .range,
    .form-range .range-value{
        width: 100%;
        padding:0;
        text-align: center;
    }
    .form-row {
        margin:0;
        flex-direction: column;
    }
    .form-row .form-group{
        width: 100%;
        margin-bottom:10px;
        margin-left: 0;
        margin-right: 0;
    }
    .step span {
        width: 80px;
    }
    footer h1.phone{
        font-size: 34px;
    }
    .main-bg:before{
        width: 400px;
        height: 400px;
    }
}
@media(max-width:576px){
    footer {
        margin-top: 80px;
    }
    .steps-content {
        justify-content: center;
        flex-direction: column;
    }
    .steps h5 {
        font-size: 18px;
    }
    footer h1.phone{
        font-size: 24px;
    }
    footer p{
        font-size: 14px;
    }
    .modal-content {
        margin: 15% auto;
        padding:30px 20px;
        text-align: center;
    }
    .modal-content .close-modal{
        right:10px;
        top:10px;
    }
    .main-bg:before{
        width: 250px;
        height: 250px;
    }
    .contact-list li{
        margin-bottom: 15px;
    }
    .contact-list li img{
        display: block;
        margin-right: 0;
        margin-bottom: 10px;
        margin-top:30px;
    }
    .contact-form h1{
        font-size: 30px;
    }
}


/*iframe*/
.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.embed-container iframe {
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media(max-width:576px){
    .embed-container {
        position: unset;       
    }
}

@media(max-width:767px){
    .embed-container {
        position: unset;       
    }
}
@media(max-width:991px){
}