@charset "utf-8";

@font-face {
    font-family: "Quicksand";
    src: url("../FONTS/quicksand/Quicksand-VariableFont_wght.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;
    --placeholder: #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);
}

body{
    width: 100%;
    height: 100%;
    background-color: #f8f8f8;
}

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

.generalShadow{
    -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.37);
    -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.37);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.37);
}
.titleSection{
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
    font-size: 40px;
    color: var(--blue2);
    font-family: 'Nunito-bold';
}
.titleBeneficiario{
    width: 100%;
    margin-top: 40px;
    padding: 30px;
    font-size: 40px;
    text-align: center;
    color: var(--blue1);
}

#beneficiarios{
    width: 100%;
    padding: 0 0 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.beneficiarioTarjeta{
    width: 100%;
    padding-bottom: 20px;
    max-width: 340px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 10px 30px;
    cursor: pointer;
    -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.37);
    -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.37);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.37);
    border-radius: 20px ;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
}

.beneficiariosImg{
    width: 100%;
    height: 330px;
    background-position-y: top;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px 20px 0 0;
    -moz-border-radius: 20px 20px 0 0;
    -webkit-border-radius: 20px 20px 0 0;
}

.infoBeneficiario{
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.nombreBeneficiario{
    width: 100%;
    text-align: center;
    color: var(--blue1);
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 20px;
}

.localidadBeneficiario{
    width: 100%;
    text-align: center;
    font-size: 16px;
    margin-bottom: 20px;
}

.artesTitle{
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.artedepescaBenneficiario{
    width: 100%;
    text-align: center;
    font-size: 16px;
}

footer{
    width: 100%;
    padding: 30px;
}

#logoTerceros{
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

#logoTerceros img{
    width: 80%;
    max-width: 250px;
    height: auto;
}

#emailTerceros{
    width: 100%;
    margin-bottom: 30px;
    font-size: 16px;
    text-align: center;
}

#emailTerceros a{
    text-decoration: underline;
    color: var(--blue1);
}

#numeroTercero{
    width: 100%;
    font-size: 16px;
    text-align: center;
    color: var(--blue1);
}

.powerBy{
    width: 100%;
    padding: 10px 10px 65px;
    background-color: var(--blue1);
    display: flex;
    justify-content: center;
}

.powerBy span{
    color: #fff;
    font-size: 15px;
    font-weight: bold;
}

.containerInsignias{
    display: flex;
    width: 100%;
    justify-content: space-evenly;
}

.imageLabelFisherman{
    width: 10%;
}

@media (max-width: 600px) {
    
    #imgOvideo video{
        width: 100%;
    }

    #emailProyecto{
        font-size: 16px;
    }

    #urlProyecto{
        font-size: 16px;
    }
}

@media (max-width: 440px) {
    #tituloProyecto{
        font-size: 30px;
    }

    #subtituloProyecto{
        font-size: 25px;
    }

    #emailProyecto{
        font-size: 15px;
    }

    #urlProyecto{
        font-size: 15px;
    }
}