/*
* Base Styles
*
*/


/* Create Vars for 4 colors from pallete */
:root {

    /*
    *
    *  Color Pallete
    *
    * Primary Color: #F2F2F2
    * Secondary Color: #3C3C3C
    * Tertiary Color: #616161
    * Quaternary Color: #A8A8A8
    * Black Color: #080808
    */  
    
    --primary-color: #F2F2F2;
    --secondary-color: #131313;
    --dark-color: #131313;
    --tertiary-color: #616161;
    --quaternary-color: #A8A8A8;
    --input-color: #e0e0e0;
    --black-color: #080808;
    --test-color: red;

    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #868e96;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --gray-1000: #121619;
}

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

body {
    font-family: "quiche-text", sans-serif;
    font-size: 16px;
    background-color: var(--primary-color);
    color: var(--black-color);
    font-display: swap;
    transition: all 0.3s ease;
    /* cursor: none; */
    
}
a{
    color: var(--black-color);
    text-decoration: none;
    /* cursor: none; */
}
a:hover{
    color: #616161;
}
h2{
    font-size: 8vh;
    font-weight: 700;
    text-transform: uppercase;
}
h3{
    font-size: 4vh;
    font-weight: 700;
    text-transform: uppercase;
}
h4{
    font-size: 6vh;
    font-weight: 700;
}
h5{
    font-size: 4vh;
    font-weight: 700;
}
ul{
    list-style: none;
}

img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
p{
    line-height: 1.6em;
}
header{
    width: 100%;
    max-width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 90px;
    position: fixed;
    z-index: 1000;
}
nav {
    background-color: var(--primary-color);
    top: 0;
    left: 0;
    width: 50%;
    padding: 2em 2em;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    z-index: 999;
    transition: all 0.3s ease;
}
.logo{
    z-index: 10;
    font-size: 23px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 900;
    margin-bottom: 10px;
    margin-top: .46em;
}
.ab-logo-img{
    width: 60px;
}
.ab-cloud-list{
    display: inline-block;
    text-align: start;
    padding: 0;
    margin: 0;
}
nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav ul li {
    list-style: none;
    margin-left: 25px;
    margin-right: 25px;
}
nav ul li a {
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
}
nav ul li a:active{
    color: var(--quaternary-color);
}
.ab-item-list a{
    font-size: 28px;
    display: inline-block;
}

/*Cookies Start*/
.wrapper-cookie{
    position: fixed;
    background-color: #000000ed;
    height: auto;
    width: 100%;
    bottom: 0;
    display: flex;
    align-content: center;
    align-items: center;
    border-top: 0;
    z-index: 99;
    bottom: 0;
}
.cookie{
    padding: 1.2em;
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}
.cookie-text{
    font-size: .9em;
    text-align: center;
    margin-top: .6em;
    width: 100%;
    color: var(--gray-100);
}
.privacity-link{
    color: var(--gray-600);
    text-decoration: underline;

}
.row-cookies{
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 21px;
    margin-bottom: 21px;
}

/* /cookie-btn firts element*/
.cookie-btn:first-child{
    margin-right: 1em;
}

.cookie-btn {
    padding: .6em 2.2em;
    border: 0;
    border-radius: 0px;
    cursor: pointer;
    transition: all 0.3s ease;
}
#cookie-accepted{
    color: var(--dark-color);
    background-color: var(--gray-100);
}
#cookie-denied{
    color: var(--gray-100);
    background-color: var(--gray-600);
}

.hide{
    display: none;
}
.post{
    width: 80%;
}
.post-paddin{
    padding-top: 10em;
}
.post-body{
    padding: 2em 0em;
}
.ab-paragraph{
    padding: 2em 0em;
    line-height: 1.5em;
    font-weight: 300;
    margin-bottom: 1em;
    text-align: justify;
    text-justify: inter-word;
}
.super-projects{
    font-size: 10em;
    margin: 0;
    padding: 0;
}
main{
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.frame {
    width: 100%;
    max-width: 100%;
    height: 100vh;
    display: flex;
    position: fixed;
    justify-content: center;
    align-items: center;
    position: fixed;
    padding: 50px 50px;
    z-index: 1;
    overflow: hidden;
    top: 0;
    pointer-events: none;
    left: 0;
}
.stroke{
    height: 100%;
    width: 100%;
    border: 2px solid var(--black-color);
    z-index: 3;
}
.top-bar{
    width: 100%;
    height: 118px;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}
.buttom-bar{
    width: 100%;
    height: 90px;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;

}

.super-h2{
    font-size: 4.6em;
    font-weight: 900;
    text-transform: uppercase;
}

.super-h3{
    font-size: 2.6em;
    font-weight: lighter;;
    text-transform: uppercase;
}
.ab-menu-items{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}
.ab-paragraph-1{
    text-align: center;
    padding: 1em 2em;
    width: 60%;
}


/* Footer Style */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    padding: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9;
}

.container{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    position: relative;
    z-index: 1;
    height: 100vh;
}

.container-portfolio{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    position: relative;
    z-index: 1;
    padding-top: 10em;
    padding-bottom: 13em;
    transition: all 0.3s ease;
}
.container-privacy{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-flow: column;
    position: relative;
    z-index: 1;
    padding: 10em 0em; 
}

/* .padding-60{
    padding: 2em 2em;
} */

.column{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    position: relative;
    z-index: 1;
}

.row{
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.col{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.col-4{
    width: 33.33%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.col-6{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.col-12{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.justify-content-end{
    justify-content: flex-end;
}
.justify-content-center{
    justify-content: center;
}
.justify-content-start{
    justify-content: flex-start;
}

.position-absolute{
    position: absolute;
}
.ab-witch{
    /* cursor: none; */
    transition: all 0.3s ease;
}
.ab-witch:hover {
    transform: scale(1.1);
    /* cursor: none; */
}
.ab-footer{
    background-color: var(--primary-color);
    text-align: center;
    padding-bottom: 10px;
    padding-top: 10px;
    width: 50%;
}
.ab-footer a{
    margin-left: 1em;
    transition: all 0.3s ease;
}
.ab-footer a:first-child{
    margin-left: 0;
}
 
.swith-color-cricle{
    display: flex;
    justify-content: center;
    align-items: center;
}

.ab-bio{
    width: 70%;
    text-align: center;
    line-height: 1.6em;
    font-weight: 300;
    margin-bottom: 1em;
    text-align: left;
    text-justify: inter-word;
}

form{
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    position: relative;
    z-index: 1;
    padding: 2em 0em;
}


input[type="text"], input[type="email"], input[type="password"],input[type="tel"], textarea, select{
    width: 100%;
    font-family: "quiche-text", sans-serif;;
    background-color: var(--primary-color);
    padding: 1em 0em;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid var(--black-color);
    border-top: 0;
    border-left: 0;
    border-right: 0;
}
textarea{
    width: 100%;
}
input[type="submit"]{
    width: 100%;
    border: 0;
    background-color: var(--dark-color);
    color: var(--primary-color);
}

.ab-form-group{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-flow: column;
    position: relative;
    z-index: 1;
    padding: .6em 0em;
}

.ab-form-control{
    width: 100%;
    padding: 1em 0em;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    position: relative;
    z-index: 1;
}

/*
*
* Custom Cursor
*
*/
.cursor {
    position: fixed;
    width: 30px;
    height: 30px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 30;
    pointer-events: none;
    mix-blend-mode: difference;
    background-color: var(--primary-color);
}
.cursor-2 {
    position: fixed;
    top: 18px;
    left: -2.5px;
    display: block;
    width: 5px;
    border-radius: 50%;
    height: 5px;
    z-index: 30;
    pointer-events: none;
    mix-blend-mode: difference;
    background-color: var(--primary-color);
    opacity: .5;
}
.cursor-out{
    transition: all 0.3s ease;
    width: 0px;
    height: 0px;
    transform: scale(0);
}





/* Intro Loader */
.intro {
    /* position: fixed;
    top: 0;
    left: 0; */
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
}
.loader {
    width: 60px;
    height: 60px;
    z-index: 9999;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.slide-1, .slide-2, .slide-3{
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
}
.slide-1{
    z-index: 999;
}
.slide-2{
    z-index: 998;
}
.slide-3{
    z-index: 997;
}



/* Slide 1*/
.bg-color-slide-1{
    position: absolute;
    width: 100%;
    height: 100vh;
    background-color: var(--dark-color);
    
}
/* Slide 2*/
.bg-color-slide-2{
    position: absolute;
    width: 100%;
    height: 100vh;
    background-color: var(--tertiary-color);
}
/* Slide 3*/
.bg-color-slide-3{
    position: absolute;
    width: 100%;
    height: 100vh;
    background-color: var(--quaternary-color);
}

.ab-title{
    font-size: 1.6em;
    padding: .23em 0em;
    /* transform: translateY(20vh); */
    /*opacity: 0; */
}
.ab-title-1{
    /* transform: translateX(-100vh); */
    /* opacity: 0; */
    /* cursor: pointer; */
    text-align: center;
}

.ab-sub-title{
    font-size: 1.6em;
    text-align: center;
    text-transform: uppercase;
    font-weight: 100;
    /* transform: translateX(-100vh); */
    /* opacity: 0; */
}
.cursor-pointer{
    cursor: pointer;
}
.hamburger {
    display: none;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    cursor: pointer;
    padding: .6em;
    z-index: 9;
}
.ab-menu-line{
    display: flex;
    width: 25px;
    height: 2px;
    position: relative;
    z-index: 1;
    background-color: var(--black-color);
    margin-bottom: 0.5em;
    transition: all 0.3s ease;
}
.dark-mode{
    background-color: var(--dark-color);
    transition: all 0.5s ease-in-out;
    color: var(--primary-color);
}
.bg-dark-mode{
    transition: all 0.5s ease-in-out;
}
.dark-mode-line{
    background-color: var(--primary-color);
    transition: all 0.5s ease-in-out;
}
.dark-mode-text{
    color: var(--primary-color);
    transition: all 0.5s ease-in-out;
}
.dark-mode-logo{
    fill: var(--primary-color);
    transition: all 0.5s ease-in-out;
}
.dark-mode-menu{
    fill: var(--primary-color);
    transition: all 0.5s ease-in-out;
}
.white-mode{
    fill: var(--primary-color);
    transition: all 0.5s ease-in-out;
}
.ab-list-skills{
    list-style: none; 
    text-align: center;  
    width: 100%;
}
.ab-slash{
    padding: 0 0.5em;
}
.ab-img-featured{
    opacity: 0;
}
.ab-about-paragrph{
    width: 60%;
    margin: 0 auto;
}
.ab-meta-info{
    margin-top: 2em;
    flex-flow: row;
}
.ab-meta-title{
    font-size: 1.2em;
    font-weight: 300;
}
.in-post{
    padding-bottom: 2em;
    padding-top: 2em;
}
.ab-container-post{
    padding-top: 2em;
    display: flex;
    
}

.ab-py-2{
    padding-top: 2em;
    padding-bottom: 2em;
}
.ab-meta-description{
    font-size: 1.2em;
    font-weight: 700;
}

.z-index-99{
    z-index: 99;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
input:-webkit-autofill:active, 
.webkit-select  {
    -webkit-box-shadow: 0 0 0 30px var(--input-color) inset !important;
    -webkit-text-fill-color: var(--dark-color) !important;
}




















/* Small devices (tablets, 375px and up) */
@media screen and (max-width: 376px) {
    h2{
        font-size: 7vw;
        text-transform: uppercase;
    }
    .ab-item-projects h2{
        font-size: 28px;
    }
    label{
        font-size: 12px;
    }
    form{
        padding: 1em 0 0 0;
    }
    nav{    
        padding: .6em 0em 0 0;
    }
    .container-portafolio{
        padding: 1em 0em;
    }
    .top-bar{
        height: 90px;
    }
    .buttom-bar{
        height: 70px;
    }
    .ab-footer{
        width: 80%;
    }
}





/*
* Generate the Media Queries for the responsive design
*/
/* Extra small devices (phones, 600px and down) */
@media screen and (max-width: 479px) {
    h2{
        font-size: 32px;
        text-transform: uppercase;
    }
    h3{
        font-size: 6vw;
        text-transform: uppercase;
    }
    .container{
        padding: 2em 2.3em;
    }
    p{
        font-size: 12.5px;
        line-height: 22px;
    }
    nav{
        padding: 1em 1em;
        width: 85%;
    }
   .cursor {
        display: none;
    }
    .cursor-2 {
        display: none;
    }
    .super-projects{
        font-size: 2.6em;
    }
    #ab{
        font-size: 36px;
    }
    .ab-logo-img{
        width: 50px;
    }
    .row{
        display: flex;
        flex-flow: column;
        width: 100%;
        align-items: center;
        justify-content: space-between;
    } 
    .info-project{
        padding-top: 1em;
        padding-bottom: 1em;
    }
    .ab-meta-info{
        /* flex-flow: row; */
        font-size: .7em;
    }
    .row-md{
        flex-flow: row;
    } 
    .col-4{
        width: 100%;
    }
    .col-6{
        width: 100%;
    }
    .justify-content-end{
        justify-content: flex-end;
        text-align: end;
    }
    .justify-content-start{
        justify-content: flex-start;
        text-align: start;
    }
    .ab-title-2{
        justify-content: flex-end;
        align-items: center;
    }
    .ab-paragraph-1{
        padding: .5em 1em;
        width: 100%;
    }
    .frame{
        padding: 25px 20px;
    }
    .bg-dark-mode{
        background-color: var(--dark-color);
        transition: all 0.5s ease-in-out;
    }
    .ab-about-paragrph{
        width: 100%;
    }
    .flex-start{
        justify-content: flex-start;
    }
    .ab-list-skills{
        text-align: right;
    }
    footer{
        padding: 1em 1em;
    }
    form{
        width: 90%;
    }
   
    
    nav ul li {
        margin-left: 10px;
        margin-right: 10px;
    }
    nav ul li a {
        font-size: 12px;
    }
    .logo{
        font-size: 18px;
    }
    .ab-sub-title{
        font-size: 1em;
    }
    .ab-bio{
        width: 100%;
        text-align: center;
    }
    .ab-cloud-list {
        text-align: center;
    }
    .ab-form-group{
        padding: 1em 0em;
    }
}


/* Small devices (tablets, 768px and up) */
@media screen and (min-width: 480px) and (max-width: 767px) {
    .super-h2-intro ,.ab-h3  {
        font-size: 2.1em;
    }
    .logo{
        font-size: 18px;
    }
    .row{
        display: flex;
        flex-flow: column;
        width: 100%;
        align-items: center;
        justify-content: space-between;
    }
    .frame{
        padding: 30px 30px;
    }
    .col-6{
        width: 100%;
    }
    .ab-cloud-list {
        text-align: center;
    }
}


/* Medium devices (desktops, 992px and up) */
@media screen and (min-width: 768px) and (max-width: 991px) {

}

/* Large devices (large desktops, 1200px and up) */
@media screen and (min-width: 992px) and (max-width: 1199px) {

}

/* Extra large devices (large desktops, 1200px and up) */
@media screen and (min-width: 1200px) and (max-width: 1399px) {

}

/* Extra extra large devices (large desktops, 1200px and up) */
@media screen and (min-width: 1400px) and (max-width: 1599px) {

}

/* Extra extra extra large devices up to 1920px */
@media screen and (min-width: 1920px) and (max-width: 3900px) {
    /* .super-h2-intro{
        font-size: 6.6em;
    } */
}






/* Tools */
.ab-align-items-top{
    align-items: flex-start;
}

.ab-overflow-hidden{
    overflow: hidden;
}

.ab-uppercase{
    text-transform: uppercase;
}


.ab-list-rate{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    flex-flow: row;
    margin: 0
}

.ab-rate{
    font-size: 1.6em;
    color: var(--quaternary-color);
    margin-right: 10px;
    margin-top: 20px;
}

.ab-rate svg {
    width: 40px; /* Cambia esto al tamaño que desees */
    height: 50px;
}

.align-self-center{
    align-self: center;
}

.ab-stars {
    transition: all 0.3s ease;
    fill: var(--gray-700);
}

/* .ab-stars:hover,
.ab-stars:focus {
    fill: var(--gray-500);
} */

.ab-stars:active {
    fill: var(--gray-300);
}
.ab-feedback-form{
    display: none;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    width: 100%;
    padding: 2em 0em;
}
.ab-text-center{
    text-align: center;
}

.ab-h5-policy{
    font-size: 1.2em;
    font-weight: 300;
    padding: 1em 0em;
}

.ab-rate-hover{
    fill: var(--gray-1000);
}

.ab-rate-selected{
    fill: var(--gray-1000) !important;
}   


.mb-10{
    margin-bottom: 10px;
}
.mb-20{
    margin-bottom: 20px;
}
.mb-30{
    margin-bottom: 30px;
}
.mb-40{
    margin-bottom: 40px;
}
.mb-50{
    margin-bottom: 50px;
}
.mb-60{
    margin-bottom: 60px;
}
.mb-120{
    margin-bottom: 120px;
}