/* Fonts */
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,regular,500,600,700,800,300italic,italic,500italic,600italic,700italic,800italic);
@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Russo+One&display=swap');
@import url(https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css);
/* VARIABLES */
:root{
    --colorlight: #f0f0f0;
    --colorprimary: #123B1A;
    --colorsecondary: #b50001;
    --colorthree: #071A2C;
    --grey: #f5f5f5;
    --black1: #222;
    --black2: #515151;
    --white: #fafafa;
}
/* RESET */
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: Lato, sans-serif;
}
/* HTML */
html{
    scroll-behavior: smooth;
}
/* BODY */
body{
    background: var(--colorlight);
    background: linear-gradient(90deg, #071A2C 50%, #123B1A 50%);
}
/* HEADER & NAV */
header{
    background: linear-gradient(138deg, rgba(7,26,44,0.9) 0%, rgba(18,59,26,0.8) 100%), url("https://i.ibb.co/9sKQzwF/IMG-20210718-WA0001.jpg") center center / cover no-repeat;
}
/* SCROLL UP*/
.scrollUp{
    background: var(--colorthree);
    color: var(--colorlight);
    position: fixed;
    left: 2%;
    top: 93%;
    padding: 10px;
    border: solid 2px var(--grey);
    cursor: pointer;
    display: none;
}
.scrollUp:hover{
    filter: saturate(0.7);
}
/*NAV*/
header nav{
    width: 100%;
    padding-top: 0px;
    box-shadow: none;
    z-index: 9;
    top: 0px;
    left: 0px;
    right: 0px;
    position: fixed !important;
}
header nav.sticky{
    background: var(--colorthree);
}
header nav .navContainer{
    width: 100%;
    max-width: 1500px;
    position: relative;
    padding: 0px 20px;
    margin: 0px auto;
    z-index: 19;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header nav .logo{
    transition: padding 0.3s linear 0s;
    padding: 20px 0;
}
header nav.sticky .logo{
    padding: 10px 0;
}
header nav .logo img{
    transition: max-width 0.3s linear 0s;
    max-width: 250px;
    display: block;
}
header nav.sticky .logo img{
    max-width: 200px;
}
header nav .linkSection{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    margin: 0 20px;
}
header nav .linkSection .links {
    align-items: center;
    display: flex;
    padding: 10px 0;
}
header nav .linkSection .links .link a{
    text-decoration: none;
    text-overflow: ellipsis;
    max-width: 250px;
    display: block;
    width: 100%;
    padding: 10px;
    color: var(--white);
    white-space: nowrap;
    transition: opacity 0.1s linear 0s;
}
header nav .linkSection .links .link a:hover{
    opacity: 0.5;
}
header nav .toggle{
    display: none;
}
/** DROPDOWN**/
header nav .linkSection .links .link a i{
    padding-left: 5px;
    padding-right: 5px;
}
header nav .linkSection .links .link a i:nth-child(2){
    display: none;
}
header nav .dropdown{
    position: absolute;
    overflow: hidden;
}
header nav .dropdown div{
    position: relative;
    top: -180px;
    transition: top 0.5s ease-in-out;
}
header nav .linkSection .links .link .dropdown ul{
    padding: 10px;
}
header nav.sticky .linkSection .links .link .dropdown ul{
    background: var(--colorthree);
}
/* DROPDOWN ACTIVED */
header nav .dropdown.active div{
    top: 0;
}
header nav .linkSection .links .link .dropdown.active ul{
    list-style: none;
    padding: 10px;
}
header nav .linkSection .links .link .dropdown.active ul li a{
    word-break: break-word;
    max-width: initial;
}
/*FORM*/
section.formulario{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
section.formulario .container{
    padding: 40px;
    border-radius: 20px;
    border: 8px solid var(--colorthree);
    box-shadow: -5px -5px 15px var(--black2),
                5px 5px 15px var(--black1),
                inset -5px -5px 15px var(--black2),
                inset 5px 5px 15px var(--black1);
}
section.formulario .container .form{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 25px;
}
section.formulario .container .form h2{
    color: #FFF;
    font-weight: 500;
    letter-spacing: 0.1em;
}
section.formulario .container .form .inputBox{
    position: relative;
    width: 300px;
}
section.formulario .container .form .inputBox input{
    padding: 12px 10px 12px 48px;
    border: none;
    width: 100%;
    background: var(--colorthree);
    border: 1px solid var(--black1);
    color: #FFF;
    font-weight: 300;
    border-radius: 25px;
    font-size: 1em;
    box-shadow: -5px -5px 15px var(--black2),
                5px 5px 15px var(--black1);
    transition: 0.5s;
    outline: none;
}
section.formulario .container .form .inputBox input::placeholder{
    color: #FFF;
}
section.formulario .container .form .inputBox i{
    position: relative;
    top: -32px;
    left: 15px;
    width: 25px;
    padding: 2px 0;
    padding-right: 8px;
    color: var(--colorsecondary);
    border-right: 1px solid var(--colorsecondary);
}
section.formulario .container .form .inputBox input[type="submit"]{
    background: var(--colorsecondary);
    color: var(--colorprimary);
    padding: 10px 40px;
    font-weight: 500;
    cursor: pointer;
}
section.formulario .container .form .inputBox input[type="submit"]:hover{
    filter: saturate(.8);
}
/*FOOTER*/
/* FOOTER SECTIONS */
section .footerSection{
    background: var(--colorthree);
    flex-direction: column;
    padding: 80px 0;
    display: flex;
    overflow: hidden;
}
section .footerSection .container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
}
section .footerSection .container h1{
    color: var(--white);
    text-align: center;
    width: 100%;
    max-width: 700px;
    margin: 0 auto 50px;
    font-family: 'Russo One';
    font-weight: 400;
    font-size: 43px;
}
section .footerSection .container .sections{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: -20px auto -30px;
}
section .footerSection .container .sections div{
    padding: 20px;
    width: 23%;
    min-width: 250px;
}
section .footerSection .container .sections div h2{
    width: 100%;
    color: var(--colorsecondary);
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Russo One';
    font-weight: 400;
    font-size: 20.5px;
}
section .footerSection .container .sections div a{
    font-weight: 400;
    font-size: 14.2px;
    line-height: 1.4;
    text-decoration: none;
    display: block;
    width: 100%;
    text-align: center;
    color: var(--white);
    margin-bottom: 10px;
    transition: all 0.1s linear 0s
}
section .footerSection .container .sections div a:hover{
    opacity: 0.7;
}
section .footerSection .container .sections div p{
    width: 100%;
    text-align: center;
    color: var(--white);
    margin-bottom: 10px;
    font-size: 14.2px;
    line-height: 1.4;
}
/* FOOTER */
footer .container{
    width: 100%;
    padding: 50px 0;
    background-color: var(--colorthree);
}
footer .container > div{
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;

}
footer .container > div .links{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
footer .container > div .links div{
    display: flex;
    align-items: center;
    position: relative;
    font-weight: 400;
}
footer .container > div .links div a{
    cursor: pointer;
    text-decoration: none;
    text-overflow: ellipsis;
    max-width: 250px;
    display: block;
    overflow: hidden;
    width: 100%;
    padding: 10px;
    color: var(--white);
    white-space: nowrap;
    transition: opacity 0.1s linear 0s;
    font-size: 23px;
}
footer .container > div .links div a:hover{
    opacity: 0.6;
}
@media only screen and (max-width: 1024px){
    header nav .dropdown div{
        top: -270px;
    }
    header nav .dropdown.active{
        position: relative;
    }
    header nav.activeToggle{
        height: 100%;
        background: var(--colorthree);
    }
    header nav.activeToggle .navContainer{
        flex-direction: column-reverse;
    }
    header nav .logo img{
        width: 150px;
    }
    header nav.activeToggle .logo{
        display: none;
    }
    header nav.activeToggle .linkSection{
        justify-content: flex-start;
    }
    header .headerContainer,
    section .faqs .container > div .content .container > div .title .icon{
        padding-left: 0;
        padding-right: 0;
    }
    header .headerContainer .lema{
        width: 50%;
        padding-right: 40px;
        padding-left: 40px;
    }
    header .headerContainer .lema .lemaText{
        width: 100%;
        max-width: initial;
    }
    header .headerContainer .lema .lemaText h1{
        word-break: break-word;
    }
    header nav .linkSection .links{
        display: none; 
    }
    header nav.activeToggle .linkSection .links a{
        font-size: 20px;
        max-width: 100%;
        padding: 20px 30px;
    }
    header nav.activeToggle .linkSection .links{
        display: block;
        width: 100%;
    }
    header nav .toggle{
        display: flex;
        align-items: center;
        justify-content: flex-end;
        width: 100%;
        margin: 20px;
    }
    header nav .toggle i{
        font-size: 25px;
        color: var(--white);
    }
    header nav .toggle i:last-child{
        display: none;
    }
    section .faqs .container,
    section .footerSection .container,
    footer .container > div{
        width: 100%;
    }
    section .footerSection .container h1{
        max-width: 100%;
    }
    footer .container{
        padding: 50px 0px;
    }
    section .titleAndButton .container,
    section .contentAndImage > div,
    section .title div,
    section .titleAndContainer > div,
    section .footerSection .container,
    section .faqs .container{
        width: 100%;
        padding-right: 40px;
        padding-left: 40px;
    }
}
@media only screen and (max-width: 767px){
    header .headerContainer{
        flex-direction: column;
        padding-left: 0;
        padding-right: 0;
        padding-top: 130px;
    }
    header .headerContainer .lema{
        width: 100%;
        padding: 40px;
    }
    header .headerContainer .lema .lemaText h1{
        font-size: 35px;
    }
    header .headerContainer .lema .lemaText{
        width: 100%;
    }
    header .headerContainer .slidePresentation{
        width: 100%;
    }
    section .titleAndButton .container .titleDescription h1,
    div .titleDescription h1,
    section .title div h1,
    div .titleDescription h1,
    section .faqs .container > div .title h1,
    section .footerSection .container h1{
        font-size: 26px
    }
    section .titleAndSubtitles .container h1{
        font-size: 24px;
    }
    div .titleDescription h1{
        margin-bottom: 0;
    }
    section .titleAndContainer div .container{
        padding: 20px 14px 40px;
    }
    section .footerSection .container h1{
        margin-bottom: 40px;
    }
    section .footerSection .container .sections div{
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
}
@media only screen and (max-width: 457px){
    header .headerContainer .lema,
    section .titleAndSubtitles .container,
    section .titleAndButton .container,
    section .contentAndImage > div,
    section .title div,
    section .titleAndContainer > div,
    section .faqs .container,
    section .footerSection .container,
    footer .container > div{
        padding-right: 20px;
        padding-left: 20px;
        margin: 0;
    }
    section .titleAndButton,
    section .titleAndSubtitles,
    section .contentAndImage,
    section > .title,
    section .titleAndContainer,
    section .faqs,
    section .footerSection{
        padding: 60px 0;
    }
    .containerButton .button{
        width: 165px;
        padding-bottom: 15px;
        justify-content: center;
    }
    section .contentAndImage > div .titleDescription ul li .icon,
    section .contentAndImage > div .titleDescription,
    section .faqs .container > div .content .container,
    section .faqs .container > div .content .container > div .title .icon{
        padding: 0;
    }
    section .contentAndImage > div .titleDescription ul li p{
        margin-top: 0;
        line-height: normal;
    }
    section .faqs .container > div .content{
        margin-bottom: 0;
    }
    section .faqs .container > div .content .container > div{
        margin: 30px 0 0;
    }
    section .faqs .container > div .content .container > div .title{
        flex-direction: column;
        padding: 20px 0;
    }
    section .faqs .container > div .content .container > div .title .icon{
        margin: 0 0 20px;
    }
    section .faqs .container > div .content .container > div .description p{
        margin: 0;
        padding: 0;
    }
    section .footerSection .container h1{
        padding-left: 20px;
        padding-right: 20px;
    }
    footer .container{
        padding-top: 50px;
        padding-bottom: 20px;
    }
    section .contentAndImage div.buttons{
        flex-direction: column;
    }
}