@charset "utf-8";

@font-face {
    font-family: "Quicksand";
    src: url("../FONTS/quicksand/Quicksand-VariableFont_wght.ttf");
}

@font-face {
    font-family: "Quicksand-bold";
    src: url("../FONTS/quicksand/static/Quicksand-Bold.ttf");
}

@font-face {
    font-family: "Nunito-regular";
    src: url("../FONTS/Nunito/Nunito-Regular.ttf");
}

@font-face {
    font-family: "Nunito-bold";
    src: url("../FONTS/Nunito/Nunito-Bold.ttf");
}

:root {
    --gray1: #707070;
    --blue1: #005fae;
    --blue2: #3194D2;
    --orange: #fbb040;
    /*color: var(--gray1);*/
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Quicksand', sans-serif;
    text-decoration: none;
    color: var(--gray1);
}


/* css general */


.borderRadius {
    border-radius: 15px;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
}

.borderRadiusInput {
    border-radius: 21px;
    -moz-border-radius: 21px;   
    -webkit-border-radius: 21px;
}

.generalShadow {
    -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}


body{
    width: 100%;
    height: 100%;
    background-color: #F8F8F8;
    background-size: auto 100vh;
    overflow-x: hidden;
    -webkit-user-select: none;  /* Safari */
    -moz-user-select: none;     /* Firefox */
    -ms-user-select: none;      /* Internet Explorer/Edge */
    user-select: none;  
}

/* ---------- header ----------------- */


header{
    background-color: #FFFFFF !important;
    -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}

.optionHeader{
    color: #005fae !important;
}

.marignHeader{
    height: 110px;
}


/* seccion de productos */

.sectionProducts{
    width: 100vw;
    max-width: 1280px;
    margin: auto;
}

.titleSectionProducts{
    text-align: center;
    margin: 40px 5% 30px 5%;
    font-size: 40px;
    color: #3194d2;
}

.containerProducts{
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    row-gap: 20px;
    column-gap: 20px;
}



@media screen and (max-width: 500px){
    .titleSectionProducts{
        font-size: 30px;
    }
}

@media screen and (max-width: 400px){
    .titleSectionProducts{
        font-size: 25px;
    }
}
