/* Apoyando Servicios by Carlos Galindo
	support@quickpixelstudio.com | +57 320 3820606
	For commercial use under BY-ND CCA 3.0 license. */

/* Style Sheets CSS*/
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;600&display=swap');
/* Variables CSS */
:root{
    --header-height: 3.5rem;
    /* Colors */
    --first-color: hsl(44,100%,49%);
    --first-color-alt: hsl(44,95%,55%);
    --first-color-light: hsl(48,94%,70%);
    --first-color-lighten: hsl(48,94%,90%);
    --second-color: hsl(29,88%,53%);
    --title-color: hsl(228,5%,30%);
    --text-color: hsl(228,5%,50%);
    --text-color-light: hsl(228,12%,75%);
    --border-color: hsl(228, 99%, 98%);
    --body-color: #ffffff;
    --container-color: #ffffff;
    --header-color: hsl(44,80%,50%);
    --header-title-color: hsl(0,0%,5%);
    --section-one: hsl(0,0%,97%);
    --section-two: hsl(0,0%,94%);
    --section-three: hsl(0,0%,88%);
    --partner-section: hsl(50,12%,90%);
    --footer-title-color: hsl(0,0%,80%);
    /* Font */
    --body-font: 'Oswald', sans-serif;
    --biggest-font-size: 2.25rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;
    /* Font Weight */
    --font-medium: 400;
    --font-semi-bold: 600;
    /* Z Index */
    --z-tooltip: 10;
    --z-fixed: 100;
    --z-loader: 500;
}
/* Responsive Typo */
@media screen and (min-width: 1024px){
    :root{
        --biggest-font-size: 4rem;
        --h1-font-size: 2.25rem;
        --h2-font-size: 1.5rem;
        --h3-font-size: 1.25rem;
        --normal-font-size: 1rem;
        --small-font-size: .875rem;
        --smaller-font-size: .813rem;
    }
}
/* Responsive Typo */
@media screen and (min-width: 1024px){
    :root{
        --biggest-font-size: 4rem;
        --h1-font-size: 2.25rem;
        --h2-font-size: 1.5rem;
        --h3-font-size: 1.25rem;
        --normal-font-size: 1rem;
        --small-font-size: .875rem;
        --smaller-font-size: .813rem;
    }
}
/* Base */
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
html{
    scroll-behavior: smooth;
}
body{
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    color: var(--text-color);
    transition: .3s;
}
h1,h2,h3{
    color: var(--title-color);
    font-weight: var(--font-semi-bold);
    text-shadow: 2px 2px 2px rgba(0,0,0,.2);
}
ul{
    list-style: none;
}
a{
    text-decoration: none;
}
img{
    max-width: 100%;
    height: auto;
}
input,button,select,textarea{
    font-family: var(--body-font);
    outline: none;
    border: none;
}
form{
    width: 550px;
    margin: auto;
    background: rgba(0,0,0,.4);
    padding: 10px 20px;
    box-sizing: border-box;
    margin-top: 20px;
    border-radius: 7px;
}
form img{
    width: 70%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    margin-bottom: 10px;
}
::placeholder{
    color: #f9f9f9;
}
input,tel,email,select,textarea{
    border-radius: 7px;
    background-color: rgba(0,0,0,.5);
    color: #f9f9f9;
}
/* Reusable CSS */
.container{
    max-width: 1024px;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}
.grid{
    display: grid;
}
.section{
    padding: 4.5rem 0 2rem;
}
.section_title{
    font-size: var(--h2-font-size);
    margin-bottom: 1rem;
}
.section_title span{
    color: var(--second-color);
}
.section_subtitle{
    display: block;
    font-size: var(--small-font-size);
    color: var(--second-color);
}
.main{
    overflow: hidden;
}
/* Header & Nav */
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: var(--z-fixed);
    transition: .2s;
}
.nav{
    height: var(--header-height);
    display: flex;
    justify-content: center;
    align-items: center;
}
.nav_logo{
    color: #fff;
    display: inline-flex;
    align-items: center;
    column-gap: .25rem;
    font-weight: var(--font-medium);
    transition: .3s;
}
.nav_logo i{
    font-size: 1rem;
}
.nav_logo:hover{
    color: var(--first-color);
}
@media screen and (max-width: 1023px){
    .nav_menu{
        position: fixed;
        bottom: 2rem;
        background-color: hsla(230, 0%, 25%, 1);
        box-shadow: 0 8px 24px hsla(44, 66%, 45%, .15);
        width: 90%;
        left: 0;
        right: 0;
        margin: 0 auto;
        padding: 1.30rem 3rem;
        border-radius: 1.25rem;
        transition: .5s;
    }
    .nav_list{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .nav_link{
        color: var(--text-color-light);
        display: flex;
        padding: .5rem;
        border-radius: 50%;
    }
    .nav_link i{
        font-size: 1.25rem;
    }
    .nav_link span{
        display: none;
    }
}
/* Change Background Header */
.scroll-header{
    background-color: var(--header-color);
    box-shadow: 0 5px 10px hsla(0, 0%, 5%, .5);
}
.scroll-header .nav_logo{
    color: var(--header-title-color);
}
/* Active Link */
.active-link{
    background: linear-gradient(101deg,hsl(44,90%,50%),hsl(44,90%,50%));
    color: #000;
    box-shadow: 0 4px 8px hsla(46,66%,45%,.25);
}
.nav_button{
    display: none;
}
/* Scroll Bar */
::-webkit-scrollbar{
    width: .6rem;
    border-radius: .5rem;
    background-color: hsl(44,8%,76%);
}
::-webkit-scrollbar-thumb{
    background-color: hsl(44,8%,64%);
    border-radius: .5rem;
}
::-webkit-scrollbar-thumb:hover{
    background-color: hsl(44,8%,54%);
}
/* Meta Theme */
.meta-theme{
    color: #fbb800;
}
/* Scroll Up */
.scrollup{
    position: fixed;
    right: 1rem;
    bottom: -30%;
    background-color: var(--first-color);
    box-shadow: 0 8px 12px hsla(44,66%,45%,.1);
    display: inline-flex;
    padding: .35rem;
    border-radius: .25rem;
    color: var(--title-color);
    font-size: 1.25rem;
    z-index: var(--z-tooltip);
    transition: .3s;
}
.scroll-up:hover{
    transform: translateY(-.25rem);
    color: var(--first-color);
}
/* Show Scroll Up */
.show-scroll{
    bottom: 8rem;
}
/* Button */
.button{
    display: inline-block;
    background: linear-gradient(101deg,hsl(44,100%,49%),hsl(44,100%,49%));
    color: #fff;
    padding: 14px 28px;
    border-radius: .5rem;
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
    box-shadow: 0 4px 8px hsla(44,96%,45%,.25);
    transition: .3s;
    cursor: pointer;
    text-align: center;
}
.button:hover{
    box-shadow: 0 4px 12px hsla(44,86%,45%,.25);
    color: #fff;
    background-color: var(--second-color);
}
/* Contact */
.form-contact{
    margin-bottom: 5rem;
    margin-top: 0;
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(175,175,175,1) 100%);
    opacity: 1;
}
.form-contact_content{
    width: 450px;
    margin-top: 0;
    justify-content: center;
}
.form-contact h2{
    color: var(--first-color);
    font-weight: var(--font-semi-bold);
    text-shadow: 2px 2px 2px rgba(0,0,0,.2);
    text-align: center;
    margin: 0;
    margin-bottom: 20px;
}
.form-contact input,textarea,select{
    width: 100%;
    margin-bottom: 20px;
    padding: 7px;
}
.form-contact textarea{
    resize: none;
    min-height: 100px;
}
.form-contact_logo{
    margin: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.logo_2{
    display: none;
}
@media only screen and (max-width: 500px){
    .logo_1{
        display: none;
    }
    .logo_2{
        display: block;
    }
}
/* Footer */
.footer{
    background-color: hsl(0,0%,10%);
}
.footer_container{
    row-gap: 2.5rem;
}
.footer_logo{
    color: var(--first-color);
    font-size: var(--h3-font-size);
    font-weight: var(--font-semi-bold);
    display: inline-flex;
    align-items: center;
    column-gap: .25rem;
    margin-bottom: .75rem;
}
.footer_logo i{
    font-size: 1.25rem;
}
.footer_description, .footer_link{
    font-size: var(--small-font-size);
    font-weight: var(--font-medium);
}
.footer_content, .footer_links{
    display: grid;
}
.footer_content{
    grid-template-columns: repeat(2, max-content);
    gap: 2.5rem 4rem;
}
.footer_title{
    font-size: var(--h3-font-size);
    margin-bottom: 1rem;
    color: var(--footer-title-color);
}
.footer_links{
    row-gap: .5rem;
}
.footer_link{
    color: var(--text-color);
    transition: .3s;
}
.footer_link:hover{
    color: var(--title-color);
}
.footer_social{
    display: flex;
    column-gap: 1rem;
}
.footer_social-link{
    font-size: 1.25rem;
    color: var(--text-color);
    transition: .3s;
}
.footer_social-link:hover{
    color: var(--title-color);
}
.footer_info, .footer_privacy{
    display: flex;
}
.footer_info{
    padding-bottom: 6rem;
    margin-top: 5.5rem;
    flex-direction: column;
    text-align: center;
    row-gap: 1.5rem;
}
.footer_copy, .footer_privacy a{
    font-size: var(--smaller-font-size);
    font-weight: var(--font-medium);
    color: var(--text-color);
}
.footer_copy{
    color: var(--footer-title-color);
}
.footer_privacy{
    justify-content: center;
    column-gap: 1.25rem;
}
.sign-link{
    color: var(--footer-title-color);
    transition: .3s;
}
.sign-link:hover{
    color: var(--title-color);
}
/* Honeypot */
.honeypot {
    display: none;
}
/* Resolutions */
/* Small Devices */
@media screen and (max-width:350px){
    .form-contact{
        height: 100vh;
    }
    .container{
        margin-left: 1rem;
        margin-right: 1rem;
    }
    .section{
        padding: 3.5rem 0 1rem;
    }
}
@media screen and (max-width: 320px){
    .nav_menu{
        padding: 1rem 1.5rem;
    }
    .form-contact{
        height: 100vh;
    }
    form{
        max-width: 90%;
    }
    .footer_content{
        gap: 1rem;
    }
}
@media screen and (max-width: 480px){
    form img{
        width: 50%;
    }
    form{
        max-width: 90%;
    }
}
/* Medium Devices */
@media screen and (min-width:576px){
    .nav_menu{
        width: 342px;
    }
    .footer_content{
        grid-template-columns: repeat(3,max-content);
    }
}
@media screen and (min-width: 767px){
    .form-contact_container{
        grid-template-columns: repeat(2,1fr);
        align-items: center;
    }
    .footer_container{
        grid-template-columns: repeat(1,max-content);
        justify-content: center;
    }
}
/* Large Devices */
@media screen and (min-width: 1023px){
    .section{
        padding: 7.5rem 0 1rem;
    }
    .section_title{
        font-size: 2.25rem;
    }
    .section_subtitle{
        font-size: var(--normal-font-size);
    }
    .footer_content{
        grid-template-columns: repeat(4,max-content);
    }
    .footer_title{
        margin-bottom: 1.5rem;
    }
    .footer_links{
        row-gap: 1rem;
    }
    .show-scroll{
        bottom: 3rem;
        right: 3rem;
    }
    .nav{
        height: calc(var(--header-height) + 1.5rem);
    }
    .nav_menu{
        width: initial;
        margin-left: auto;
    }
    .nav_list{
        display: flex;
        column-gap: 3rem;
    }
    .nav_link{
        color: #fff;
        transition: .3s;
    }
    .nav_link:hover{
        color: var(--first-color);
    }
    .nav_link i{
        display: none;
    }
   /*.nav_button{
       display: inline-block;
    }*/
    .active-link{
        background: none;
        box-shadow: none;
        color: var(--first-color);
        font-weight: var(--font-medium);
    }
}
@media screen and (min-width: 1040px){
    .container{
        margin-left: auto;
        margin-right: auto;
    }
    .footer{
        justify-content: space-between;
        border-spacing: 1rem;
        padding-bottom: 1rem;
    }
}
/* Loader */
#container-loader {
    background-color: var(--first-color);
    top: 0;
    height: 100vh;
    width: 100%;
    position: fixed;
    -webkit-transition: all .7s ease;
    -o-transition: all .7s ease;
    transition: all 1s ease;
    z-index: var(--z-loader);
}
#loader {
    border: 15px solid #9f9f9f;
    border-top-color: #0c0c0c;
    border-top-style: groove;
    height: 100px;
    width: 100px;
    border-radius: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    -webkit-animation: spin .3s linear infinite;
    -o-animation: spin .3s linear infinite;
    animation: spin .3s linear infinite;
    z-index: var(--z-loader);
}
@keyframes spin {
    0% {transform: rotate(0); animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);}
    50% {transform: rotate(1800deg); animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);}
    100% {transform: rotate(3600deg);}
}