@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);
}


.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;
}

.titleSection{
    text-align: center;
    margin-top: 40px;
    font-size: 40px;
    color: var(--blue2);
    font-family: 'Nunito-bold';
}

#conten-products{
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    row-gap: 10px;
    column-gap: 10px;
    margin-top: 35px;
}

.infoSearcher{
    text-align: center;
    color: #A2A2A2;
    margin-top: 35px;
    font-size: 20px;
    height: 50vh;
}