@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: ND;
    src: url("../font/ND\ LOGOS\ REGULAR.woff2") format("woff2");
}

:root {
    --background-color: #f3e6d4;
    --black-color: #000;
    --grey-color: #808080;
    --secondary-color: #FF6347;
    --white-color: #fff;
    scrollbar-color: var(--secondary-color) transparent;
    text-rendering: optimizeLegibility;
    font-synthesis: none;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

::selection {
    color: var(--black-color);
    background-color: var(--secondary-color);
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

html,
body {
    scroll-behavior: smooth !important;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: var(--background-color);
    font-family: Raleway, sans-serif;
    text-rendering: optimizeLegibility !important;
}

p {
    font-weight: 400;
}

span {
    font-weight: 500;
}
.no-scroll {
    overflow: hidden;
}

.centrado {
    position: relative;
    width: clamp(21.497395833332593rem, 0.0001rem + 88.1941vw, 141.110625rem);
    margin: 0 auto;
    z-index: 100;
}

.fondo {
    width: 100%;
}
/*----------------------------------------------------------------HERO-----------------------------------------------------------------*/
.hero {
    width: 100%;
    height: 100vh;
}

.fixed-navigation {
    position: fixed;
    z-index: 1000;
    width: 100%;
    margin: 0 auto;
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    margin: auto 0;
    width: 190px;
    height: 83px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
}

.nav-images {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 63px;
    width: clamp(16.25rem, 1.8672rem + 24.2236vw, 40.625rem);
}

.nav-images img {
    width: 70px;
    height: auto;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;

}

.nav-images img:hover {
    transform: scale(1.3);
    transition: all .3s;
}

.menu {
    width: 50%;
    margin: auto 0;
}

.navbar {
    margin: auto 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}

.nav-links {
    color: var(--black-color);
    text-transform: uppercase;
    text-decoration: none;
    margin: auto 0;
}

.menu-btn {
    box-sizing: border-box;
    position: relative;
    display: none;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    width: 70px;
    height: 70px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    margin-right: 15px;
}

.menu-btn-bars {
    width: 45px;
    height: 4px;
    background: var(--black-color);
    border-radius: 5px;
    transition: all 0.5s ease-in-out;
}

.menu-btn-bars::before,
.menu-btn-bars::after {
    content: "";
    position: absolute;
    width: 45px;
    height: 4px;
    background: var(--black-color);
    border-radius: 5px;
    transition: all 0.5s ease-in-out;
}

.menu-btn-bars::before {
    transform: translateY(-14px);
}

.menu-btn-bars::after {
    transform: translateY(14px);
}

.cross .menu-btn-bars {
    background: transparent;
    border: 1px solid transparent;
    transform: translateX(-50px);
}

.cross .menu-btn-bars::before {
    transform: rotate(45deg) translate(35px, -35px);
}

.cross .menu-btn-bars::after {
    transform: rotate(-45deg) translate(35px, 35px);
}

.cross .menu-btn-bars {
    background: transparent;
    box-shadow: 1px 1px 1px transparent;
    transform: translateX(-50px);
}

.cross .menu-btn-bars::before {
    transform: rotate(45deg) translate(35px, -35px);
}

.cross .menu-btn-bars::after {
    transform: rotate(-45deg) translate(35px, 35px);
}
.menu-btn-bars2 {
    width: 45px;
    height: 4px;
    background: var(--white-color);
    border-radius: 5px;
    transition: all 0.5s ease-in-out;
}

.menu-btn-bars2::before,
.menu-btn-bars2::after {
    content: "";
    position: absolute;
    width: 45px;
    height: 4px;
    background: var(--white-color);
    border-radius: 5px;
    transition: all 0.5s ease-in-out;
}

.menu-btn-bars2::before {
    transform: translateY(-14px);
}

.menu-btn-bars2::after {
    transform: translateY(14px);
}

.cross .menu-btn-bars2 {
    background: transparent;
    border: 1px solid transparent;
    transform: translateX(-50px);
}

.cross .menu-btn-bars2::before {
    transform: rotate(45deg) translate(35px, -35px);
}

.cross .menu-btn-bars2::after {
    transform: rotate(-45deg) translate(35px, 35px);
}

.cross .menu-btn-bars2 {
    background: transparent;
    box-shadow: 1px 1px 1px transparent;
    transform: translateX(-50px);
}

.cross .menu-btn-bars2::before {
    transform: rotate(45deg) translate(35px, -35px);
}

.cross .menu-btn-bars2::after {
    transform: rotate(-45deg) translate(35px, 35px);
}

.hero-section {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
}

.hero-content {
    position: relative;
    width: 336px;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    z-index: 50;
}

.hero-content h1 {
    font-size: 48px;
    font-family: ND, sans-serif;
    animation-name: title;
    margin-bottom: 20px;
}

.hero-content p {
    max-width: 330px;
    margin-bottom: 20px;
    font-size: clamp(1rem, 0.8393rem + 0.3348vw, 1.375rem);
    line-height: 150%;
    width: 100%;
}

.div-btns {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-readMore,
.btn-readObjetivos {
    background-color: var(--white-color);
    border-radius: 26px;
    display: inline-block;
    cursor: pointer;
    color: var(--black-color);
    font-weight: 400;
    font-size: 16px;
    padding: 14px 25px;
    text-decoration: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.btn-readMore:hover,
.btn-readObjetivos:hover {
    background-color: var(--secondary-color);
    border: none;
    transition: all .3s;
    box-shadow: none;
}

.btn-readMore:hover .flecha,
.btn-readObjetivos:hover .flecha {
    transform: translateX(5px);
    transition: all .3s;
}

.ripple {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 225%;
    min-height: 225%;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: #0f172a;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease-out;
}

.big-tomato {
    width: clamp(8.734375rem, 0rem + 35.8333vw, 57.33333125rem);
    height: clamp(9.59765625rem, 0rem + 39.375vw, 63rem);
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 52;
}

/*-----------------------------------------------------------Objetivo------------------------------------------------------------------*/
.objetivo {
    padding-top: 63px;
    width: 100%;
}

.antecedentes {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.foto1,
.foto3 {
    width: clamp(20.833333125rem, 0rem + 43.4028vw, 69.4444375rem);
    height: clamp(50.458125rem, 54.6723rem + -8.7796vw, 40.625rem);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
}

.foto1-mobile,
.foto3-mobile {
    display: none;
}

.antecedentes-txt {
    width: 50%;
}

.antecedentes-txt h2 {
    font-family: ND, sans-serif;
    font-size: clamp(1.875rem, 1.4464rem + 0.8929vw, 2.875rem);/*52 to 28px hasta 768px viewport*/
    animation: fadeIn linear;
    animation-timeline: view();
    animation-range-start: 20px;
    animation-range-end: 300px;
}

.antecedentes-txt p {
    margin-top: 20px;
    line-height: 180%;
    font-size: clamp(1.125rem, 0.9643rem + 0.3348vw, 1.5rem);/*24 to 18px hasta 768px viewport*/
    animation: fadeIn linear;
    animation-timeline: view();
    animation-range-start: 20px;
    animation-range-end: 300px;
}

.txt1,
.txt2 {
    width: clamp(20.833333125rem, 0rem + 43.4028vw, 69.4444375rem);
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
}

.txt1 {
    align-items: start;
}

.txt2 {
    text-align: start;
    align-items: end;
}

.txt1 p,
.txt2 p {
    max-width: clamp(39.0625rem, 34.1071rem + 10.3237vw, 50.625rem);
    /* margin-bottom: 10px; */
    animation: fadeIn linear;
    animation-timeline: view();
    animation-range-start: 20px;
    animation-range-end: 300px;
}

.txt2 {
    margin-top: 20px;
    order: 1;
}

.foto3 {
    order: 2;
}

.foto2 {
    height: 290px;
    object-fit: cover;
}

.foto2-mobile {
    display: none;
    width: 100%;
    max-height: 300px;
    object-fit: cover;
}

.objetivos {
    margin-top: 120px;
    width: 100%;
    display: flex;
}

.mitad-derecha {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 35px 20px;
}

.mitad-derecha>div {
    box-sizing: border-box;
}

.arriba-izquierda,
.arriba-derecha,
.abajo-izquierda,
.abajo-derecha {
    width: clamp(10.066666666666668rem, 0rem + 20.9722vw, 33.5555rem);
    text-align: center;
    animation: fadeIn linear;
    animation-timeline: view();
    animation-range-start: 20px;
    animation-range-end: 300px;
}

.arriba-izquierda .small-circle,
.arriba-derecha .small-circle,
.abajo-izquierda .small-circle,
.abajo-derecha .small-circle {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.arriba-izquierda:hover .small-circle,
.arriba-derecha:hover .small-circle,
.abajo-izquierda:hover .small-circle,
.abajo-derecha:hover .small-circle {
    box-shadow: 0px 0px 2px 3px var(--secondary-color);
    transition: all .3s;
}

.arriba-izquierda h3,
.arriba-derecha h3,
.abajo-izquierda h3,
.abajo-derecha h3 {
    font-size: clamp(1.375rem, 1.2143rem + 0.3348vw, 1.75rem);/*28 to 22px hasta 768px viewport*/
    font-weight: 600;
    text-transform: uppercase;
    line-height: 150%;
    margin-top: 16px;
}

.arriba-izquierda p,
.arriba-derecha p,
.abajo-izquierda p,
.abajo-derecha p {
    margin-top: 20px;
    font-size: 18px;
    line-height: 150%;
}

.mitad-izquierda {
    display: flex;
    flex-direction: column;
}

.arriba {
    width: clamp(17.26666666666667rem, 0rem + 35.9722vw, 57.55555555555556rem);/*2560-768*/
    flex: 1;
}

.arriba h1 {
    font-size: clamp(1.875rem, 1.4464rem + 0.8929vw, 2.875rem);/*52.8 to 40px hasta 768px viewport*/    
    font-family: ND, sans-serif;
    text-align: right;
    text-transform: uppercase;
    line-height: 150%;
    animation: fadeIn linear;
    animation-timeline: view();
    animation-range-start: 20px;
    animation-range-end: 70px;
}

.arriba p {
    margin-top: 20px;
    font-size: clamp(1.125rem, 0.9643rem + 0.3348vw, 1.5rem);/*24 to 18px hasta 768px viewport*/
    line-height: 150%;
    text-align: right;
    animation: fadeIn linear;
    animation-timeline: view();
    animation-range-start: 20px;
    animation-range-end: 300px;
}

.arriba>p>strong {
    font-weight: 600;
}

.abajo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.abajo .big-circle {
    width: clamp(17.23333333333333rem, 0rem + 35.9028vw, 57.44444444444444rem);
    height: clamp(17.23333333333333rem, 0rem + 35.9028vw, 57.44444444444444rem);
    border-radius: 50%;
    background-color: var(--secondary-color);
    filter: blur(100px);
    transform: translateY(150px);
    view-timeline: --circle;
    view-timeline-axis: block;

    animation-timeline: --circle;
    animation-name: scrollAnim;

}
/*-----------------------------------------------------------PROYECTO------------------------------------------------------------------*/
.proyecto {
    padding-top: 123px;
    width: 100%;
}

.header-proyecto {
    width: clamp(17.23333333333333rem, 0rem + 35.9028vw, 57.44444444444444rem);
}

.header-proyecto h1 {
    font-size: clamp(1.875rem, 1.4464rem + 0.8929vw, 2.875rem);/*52.8 to 40px hasta 768px viewport*/    
    font-family: ND, sans-serif;
    text-transform: uppercase;
    line-height: 150%;
    animation: fadeIn linear;
    animation-timeline: view();
    animation-range-start: 20px;
    animation-range-end: 175px;
}

.header-proyecto p {
    margin-top: 20px;
    font-size: clamp(1.125rem, 0.9643rem + 0.3348vw, 1.5rem);/*24 to 18px hasta 768px viewport*/
    line-height: 150%;
    animation: fadeIn linear;
    animation-timeline: view();
    animation-range-start: 20px;
    animation-range-end: 300px;
}

/*Acordeón*/
.div-accordion {
    margin-top: 60px;
}

.accordion {
    background-color: transparent;
    font-family: Raleway, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--black-color);
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 38.4px;
    line-height: 150%;
    transition: 0.4s;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    animation: fadeIn linear;
    animation-timeline: view();
    animation-range-start: 20px;
    animation-range-end: 300px;
}

.accordion h1 {
    width: 410px;
}

.title-accordion {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.acc-title-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: clamp(6.940104166875rem, 0rem + 28.4722vw, 45.555555rem);/*2560->728,88888  390->111,04166667*/
}

.acc-title-left h1 {
    width: 410px;
}

.acc-title-left .primer-span {
    font-family: ND, sans-serif;
    margin-right: 40px;
}

.accordion .inactive,
.accordion .aactive {
    font-size: 38.4px;
    margin-right: 10px;
}

.accordion .aactive {
    display: none;
}

.line-animation {
    animation: animateBg 3s infinite linear;
    background-image: linear-gradient(90deg, var(--secondary-color), var(--black-color), var(--secondary-color), var(--black-color));
    background-size: 300% 100%;
    border-radius: 1rem;
    height: 1px;
    width: 100%;
}

.line-animation2 {
    animation: animateBg 3s infinite linear;
    background-image: linear-gradient(90deg, var(--white-color), var(--secondary-color), var(--white-color), var(--secondary-color));
    background-size: 300% 100%;
    border-radius: 1rem;
    height: 1px;
    width: 100%;
}

.panel {
    max-height: 0;
    overflow: hidden;
    font-size: 16px;
    overflow: hidden;
    line-height: 150%;
    transition: max-height 0.2s ease-out;
    display: flex;
    gap: 20px;
}

.panel > p {
    max-width: 56ch;
    line-height: 150%;
    margin-bottom: 5px;
    font-size: clamp(1rem, 0.9464rem + 0.1116vw, 1.125rem);
}

.active .inactive,
.active .aactive {
    transition: all .2s;
}

.active .inactive {
    display: none;
}

.active .aactive {
    display: block;
    margin-bottom: 20px;
}

.panel-num-list {
    list-style: decimal;
    max-width: 60ch;
}

/*-----------------------------------------------------------MIEMBROS-------------------------------------------------------------------------*/
.miembros {
    width: 100%;
}

.mimebros-title {
    padding-top: 68px;
    font-family: ND, sans-serif;
    font-size: 30px;/*52.8 to 40px hasta 768px viewport*/
    text-align: right;
    animation: fadeIn linear;
    animation-timeline: view();
    animation-range-start: 20px;
    animation-range-end: 120px;
}

.div-miembros {
    margin-top: 60px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
    gap: 20px
}

.member {
    overflow: hidden;
    height: 100px;
    transition: all .3s linear;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    object-fit: cover;
    cursor: pointer;
    filter: invert(0%) sepia(7%) saturate(5%) hue-rotate(189deg) brightness(98%) contrast(100%);
    animation: fadeIn linear;
    animation-timeline: view();
    animation-range-start: 20px;
    animation-range-end: 125px;
}

.member1,
.member2,
.member3 {
    width: clamp(13.6666875rem, 0rem + 28.4722vw, 45.5555625rem);/*2560->728.889  768->218.667*/
}

.member4,
.member5 {
    width: clamp(20.8333125rem, 0rem + 43.4028vw, 69.4444375rem);/*2560->1111.111  768->333.333*/
}

.member:hover {
    transition: all .3s;
    filter: brightness(100%);
    transform: scale(1.1);
}

.member.active {
    transition: all .3s;
    filter: none;
    transform: scale(1.1);
}

.info-members {
    margin-top: 70px;
    width: 100%;
}

.info-members h1 {
    padding-top: 68px;
    font-family: ND, sans-serif;
    font-size: 30px; /*52.8 to 40px hasta 768px viewport*/
    text-align: left;
}

.inf-mem1 {
    display: block;
}

.inf-mem2,
.inf-mem3,
.inf-mem4,
.inf-mem5 {
    display: none;
}

.info-members-content {
    margin-top: 30px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.info-members-content img {
    width: clamp(20.833333125rem, 0rem + 43.4028vw, 69.4444375rem);/*2560->1111.11  768->333.333*/
    aspect-ratio: 1 / 1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
    border-radius: 16px;
}

.info-members-content p {
    padding: 20px;
    width: clamp(11.03645833125rem, 0.5392rem + 43.0658vw, 69.4444375rem);
    max-width: clamp(39.0625rem, 34.1071rem + 10.3237vw, 50.625rem);
    font-size: clamp(1.125rem, 0.9643rem + 0.3348vw, 1.5rem);
    /*2560->24px  768->18px*/
    line-height: 150%;
    animation: fadeIn linear;
    animation-timeline: view();
    animation-range-start: 20px;
    animation-range-end: 300px;
}

/*------------------------------------------------------FINANCIACIÓN--------------------------------------------------------*/
.financiacion {
    padding-top: 68px;
    width: 100%;
}

.financiacion h1 {
    font-family: ND, sans-serif;
    font-size: clamp(1.875rem, 1.4464rem + 0.8929vw, 2.875rem);/*52.8 to 40px hasta 768px viewport*/
    text-align: right;
    animation: fadeIn linear;
    animation-timeline: view();
    animation-range-start: 8px;
    animation-range-end: 150px;
}

.primero {
    margin: 64px auto 0 0;
    max-width: 68ch;
    line-height: 150%;
    animation: fadeIn linear;
    animation-timeline: view();
    animation-range-start: 0px;
    animation-range-end: 125px;
}

.segundo {
    margin: 20px auto 0 0;
    line-height: 150%;
    max-width: 58ch;
    animation: fadeIn linear;
    animation-timeline: view();
    animation-range-start: 0px;
    animation-range-end: 125px;
}

.segundo:last-child {
    margin-bottom: 33px;
}

.financiacion p {
    font-size: clamp(1.125rem, 0.9643rem + 0.3348vw, 1.5rem); /*24 to 18px hasta 768px viewport*/   
}

.financiacion span {
    text-transform: uppercase;
    font-weight: 600;
}

/*----------------------------------------------------------------CONTACTO------------------------------------------------------------------------*/
.contacto {
    padding-top: 68px;
    width: 100%;
}

.contacto h1 {
    font-family: ND, sans-serif;
    text-transform: uppercase;
    font-size: clamp(1.875rem, 1.4464rem + 0.8929vw, 2.875rem);
    animation: fadeIn ease-out;
    animation-timeline: view();
    animation-range-start: 8px;
    animation-range-end: 60px;
}

.contact-enterprise {
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: space-between;
    animation: leftCenter linear;
    animation-timeline: view();
    animation-range-start: 12px;
    animation-range-end: 300px;
}

.conct-1 {
    margin-top: 70px;
}

.mapa {
    width: 49%;
}

.contact-content {
    width: 49%;
}

.title-contact {
    margin-top: 25px;
    font-size: clamp(1.375rem, 1.2488rem + 0.4695vw, 2rem);
    text-align: center;
}

.title-contact>a {
    color: inherit;
    text-decoration: dotted;
}

.title-contact>a:hover {
    color: var(--secondary-color);
    transition: all .3s;
}

.enterprise-content {
    width: 100%;
    height: 81%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.enterprise-tlf,
.enterprise-email,
.enterprise-adress {
    font-weight: 600;
    font-size: clamp(1.125rem, 1.0493rem + 0.2817vw, 1.5rem);
}

.tlf,
.email,
.adress {
    margin-left: 15px;
    font-size: clamp(1rem, 0.9243rem + 0.2817vw, 1.375rem);
    line-height: 150%;
}

.tlf>a,
.email>a,
.adress>a {
    color: var(--black-color);
    text-decoration: none;
}

.adress>a {
    display: inline-block;
}

.tlf>a:hover,
.email>a:hover,
.adress>a:hover {
    color: var(--secondary-color);
    transition: all .3s;
}

.tlf,
.email {
    display: flex;
    align-items: center;
}

.adress {
    display: flex;
    flex-wrap: wrap;
}

/*------------------------------------------------------------------------NEWSLETTER------------------------------------------------------------*/
.newsletter {
    position: relative;
    margin-top: 60px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.newsletter h1 {
    width: 33%;
    font-size: clamp(1rem, 0.5714rem + 0.8929vw, 2rem);
    text-transform: uppercase;
}

.newsletter input {
    font-size: clamp(1rem, 0.8929rem + 0.2232vw, 1.25rem);
    color: var(--black-color);
    width: clamp(8.76822916666667rem, -12.1406rem + 43.5601vw, 57.55555555555556rem);
    height: 43px;
    border: none;
    border-radius: 50px;
    padding-left: 20px;
    caret-color: var(--secondary-color);
}

.newsletter input:focus {
    outline: none;
    border: 1px solid var(--secondary-color);
}

.newsletter .arrow-input {
    position: absolute;
    right: 2%;
    color: var(--black-color);
    cursor: pointer;
}

.newsletter:hover .arrow-input {
    right: 1.5%;
    transition: all .3s;
}

/*--------------------------------------------------------ULTIMAS NOTICIAS--------------------------------------------------------------------------*/
.latest-news {
    margin-top: 63px;
    width: 100%;
}

.latest-news h1 {
    text-align: center;
    font-size: clamp(1.875rem, 1.4464rem + 0.8929vw, 2.875rem);
    margin-bottom: 20px;
    font-family: ND, sans-serif;
    animation: fadeIn linear;
    animation-timeline: view();
    animation-range-start: 10px;
    animation-range-end: 300px;
}

.news-intro-desc {
    margin: 20px auto 40px auto;
    max-width: 600px;
    /*!!Importante cambiarlo si cambiamo el texto*/
    font-size: clamp(1.125rem, 0.9643rem + 0.3348vw, 1.5rem);
    line-height: 150%;
    animation: fadeIn linear;
    animation-timeline: view();
    animation-range-start: 40px;
    animation-range-end: 300px;
}

.noticias {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.noticia {
    width: 31%;
    background-color: var(--white-color);
    border-radius: 15px;
    animation: fadeIn linear;
    animation-timeline: view();
    animation-range-start: 20px;
    animation-range-end: 450px;
}

.noticia:hover {
    transition: all .3s;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

.tag-noticia {
    margin-left: 15px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px 5px;
    transform: translateY(10px);
    margin-bottom: 20px;
}

.tag {
    text-transform: uppercase;
    width: auto;
    height: auto;
    padding: 5px;
    cursor: pointer;
}

.tag>a {
    color: inherit;
    text-decoration: none;
}

.tag>a:hover {
    color: inherit;
    transition: all .3s;
}

.noticia img {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    object-fit: cover;
}

.noticia-content {
    padding-left: 20px;
    padding-right: 20px;
}

.noticia-meta {
    font-size: 13px;  
    margin-bottom: 5px;
    line-height: 150%;
    color: #4B4B4B;
    padding-left: 15px;
    line-height: 19.5px; /* Cambiar en 1156px el line-line-height: 39px;  */
}

.noticia-meta a {
    display: inline-block;
    color: #4B4B4B;
    text-decoration: none;
    font-size: 13px;
}

.noticia-meta a:hover {
    color: var(--secondary-color);
    transition: all .3s;
}

.titulo-noticia {
    line-height: 130%;
    font-size: clamp(1.5rem, 1.2857rem + 0.4464vw, 2rem);
    font-weight: 600;
    margin: 0 15px 10px 15px;
}

.titulo-noticia>a {
    color: var(--black-color);
    text-decoration: none;
}

.titulo-noticia>a:hover {
    color: var(--secondary-color);
    transition: all .3s;
}

.hover-secondary {
    color: var(--black-color);
    text-decoration: none;
}

.hover-secondary:hover {
    color: var(--secondary-color);
    transition: all .3s;
}

.noticia .excerpt {
    font-size: clamp(1rem, 0.9195rem + 0.1675vw, 1.1875rem);
    text-align: left;
    margin: 0 15px 0 15px;
    margin-bottom: 20px;
    line-height: 150%;
}

.arrow {
    transform: translateX(15px);
}

.noticia .readMore {
    width: clamp(12.344375rem, 6.5377rem + 12.0815vw, 25.868125rem);
    display: flex;
    flex-direction: row;
    align-items: center;
    color: var(--black-color);
    font-size: clamp(1rem, 0.8393rem + 0.3348vw, 1.375rem);
    text-transform: uppercase;
    text-decoration: none;
    margin-bottom: 20px;
    transform: translateX(15px);
}

.readMore:hover {
    color: var(--secondary-color);
    transition: all .3s;
}

.noticia .readMore .flecha {
    margin-left: 10px;
}

.noticia .readMore:hover .flecha {
    transform: translateX(5px);
    color: var(--secondary-color);
    transition: all .3s;
}

/*----------------------------------------------------------FOOTER-----------------------------------------------------------------------------*/
.footer {
    position: relative;
    margin-top: 60px;
    width: 100%;
    background-color: var(--black-color);
    z-index: 2;
}

.footer-centrado {
    margin: 0 auto;
    width: clamp(21.4973958125rem, 0rem + 88.1944vw, 141.11111125rem);
}

.div-logos {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
}

.logo2 {
    width: clamp(10.1131510416875rem, 0rem + 21.0417vw, 33.6666666668125rem);/* 2560->538.66  768->161.93 */
    height: clamp(5.5rem, 1.8235rem + 7.6494vw, 14.0625rem);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
}

.footer-flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.divs-footer {
    margin-top: 100px;
    width: clamp(10.1rem, 0rem + 21.0417vw, 33.66666875rem);/*2560->538.6667  768->161.6*/
    display: flex;
    justify-content: space-evenly;
    gap: 0 20px;
}

.divs-footer-mobile {
    width: 100%;
    display: none;
    display: flex;
    justify-content: space-evenly;
    gap: 0 20px;
    margin-bottom: 20px;
}

.divs-footer-mobile img {
    width: 88px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: contain;
}

.divs-footer img {
    width: clamp(2.9333125rem, 0rem + 6.1111vw, 9.77775rem);/*2560->538.6667  768->161.6*/ 
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: contain;
}

.divs-footer img:hover {
    transform: scale(1.3);
    transition: all .3s;
}

.div-content-footer {
    width: 100%;
    height: 407px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.content-footer {
    height: 280px;
}

.content-footer h1 {
    text-align: center;
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 40px;
    font-weight: 600;
    color: var(--white-color);
    font-family: Raleway, sans-serif;
}

.ul-flex {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

.ul-flex li {
    cursor: pointer;
    margin-bottom: 35px;
    color: var(--grey-color);
    text-transform: uppercase;
}

.ul-flex li a {
    color: var(--grey-color);
    text-decoration: none;
}

.ul-flex li a:hover {
    color: var(--white-color);
    transition: all .3s;
}

.divs-footer-mobile {
    display: none;
}

.subfooter {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.subfooter p {
    font-size: 8px;
    line-height: 150%;
    color: var(--white-color);
}

.rrss {
    display: flex;
    gap: 0 25px;
    justify-content: space-evenly;
}

.rrss>a>svg {
    width: 30px;
    height: 30px;
}

.rrss svg:hover {
    transform: scale(1.1);
    transition: all .3s;
    color: #ff0000;
}

/*-----------------------------------------------------PAGE ARCHIVOS--------------------------------------*/
.centrado-archives {
    position: relative;
    width: clamp(21.497395833332593rem, 0.0001rem + 88.1941vw, 141.110625rem);
    margin: 0 auto;
}

.grid-section {
    width: 100%;
}

.grid {
    margin-top: 30px;
    width: 100%;
}

.grid-item {
    width: clamp(13.75rem, -4.9528rem + 30.1658vw, 43.3125rem);/*2560->693  992->220*/
    margin: 10px;
    padding: .8rem;
    border-radius: 5px;
    flex-grow: 1; /* Funciona correctamente*/
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
}

.header-grid {
    border-bottom: 1px dotted var(--black-color);
}

.header-grid h2 {
    text-transform: uppercase;
    text-align: center;
    font-size: 30px;
    margin: 0 0 10px;
    letter-spacing: 2px;
    line-height: 150%;
}

.post-entry {
    margin-top: 10px;
    font-size: 16px;
}

/*-------------------------------------------------------BLOG-------------------------------------------------------------------------*/
.blog-hero {
    width: 100%;
    height: 45vh;
    display: flex;
    flex-direction: column;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: contain;
}

.navigation2 {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    width: 88%;
}

.blog {
    width: 100%;
    margin-top: 120px;
    display: flex;
    justify-content: space-evenly;
}

.blog-hero-title {
    margin: auto;
    width: 50%;
    text-align: center;
    text-transform: uppercase;
    font-size: 34px;
    color: var(--white-color);
    text-shadow: 1px 1px 1px var(--black-color);
}

.blog-hero-title-blog {
    margin: auto;
    width: 50%;
    text-align: center;
    text-transform: uppercase;
    font-size: 34px;
    color: var(--white-color);
    text-shadow: 3px 0px 7px rgba(0, 0, 0, 0.8), -3px 0px 7px rgba(0, 0, 0, 0.8), 0px 4px 7px rgba(0, 0, 0, 0.8);
}

.main-content {
    margin-top: 60px;
    width: 100%;
    display: flex;
    flex-direction: row;
}

.photo-main {
    margin-left: auto;
    /* width: clamp(30.75rem, 8.1161rem + 47.154vw, 83.5625rem); */
    width: 50%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: contain;
}

.main-all-content {
    width: 35%;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main-all-content>.tags-articulo {
    margin-left: 4px;
}

.tags-articulo {
    margin-bottom: 10px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.tag-articulo {
    border: 1px solid var(--black-color);
    color: var(--black-color);
    font-size: clamp(0.875rem, 0.6982rem + 0.3683vw, 1.2875rem);
    background-color: transparent;
    padding: 10px;
    margin: 5px;
    text-align: center;
    cursor: pointer;
}

.tag-articulo:hover {
    background-color: var(--black-color);
    color: var(--white-color);
    transition: 0.3s;
}

.dotted-sep {
    width: 100%;
    border-top: 1px dotted var(--black-color);
    margin-bottom: 20px;
}

.article-title {
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 3px;
    font-size: clamp(1.5rem, 1.3764rem + 0.5069vw, 2.1875rem);
}

.article-title>a {
    color: var(--black-color);
    text-decoration: none;
}

.article-title>a:hover {
    color: var(--secondary-color);
    transition: 0.5s;
    cursor: pointer;
}

.article-content>p {
    font-size: clamp(1rem, 0.7991rem + 0.4185vw, 1.46875rem);/*2560->24px  768->16px*/
    line-height: 150%;
    margin-bottom: 20px;
    margin-left: 3px;
}

.article-button {
    margin-top: 20px;
    margin-left: 5px;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    color: var(--black-color);
    margin-bottom: 30px;
}

.article-button svg {
    transition: transform 0.3s ease;
    transform: translateX(5px);
}

.article-button:hover {
    transition: all .3s;
    color: var(--secondary-color);
}

.article-button:hover .flecha {
    color: var(--secondary-color);
    transition: all 0.3s ease;
    transform: translateX(10px);
}

.content {
    width: 62%;
}

.content h1 {
    margin-top: 40px;
    font-size: clamp(2.5rem, 1.9964rem + 1.0491vw, 3.675rem);
    font-weight: 700;
}

.content article {
    margin-top: 30px;
    width: clamp(30.75rem, 8.1161rem + 47.154vw, 83.5625rem);
}

.foto-articulo {
    width: clamp(30.75rem, 8.1161rem + 47.154vw, 83.5625rem);
    aspect-ratio: 16 / 9;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    margin-bottom: 10px;
}

.publicacion-articulo {
    margin-left: 3px;
    margin-bottom: 20px;
    font-size: clamp(0.875rem, 0.6982rem + 0.3683vw, 1.2875rem);
    color: #666666;
}

.publicacion-articulo a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.publicacion-articulo a:hover {
    color: var(--secondary-color);
    transition: .3s;
}

.article-categories {
    margin: 0 0 20px 5px;
    display: flex;
    align-items: stretch;
    flex-direction: row;
}

.article-categories>a:first-child {
    padding-left: 5px;
}

.article-categories>a {
    font-size: 14px;
    color: var(--black-color);
    text-transform: uppercase;
    text-decoration: none;
}

.article-categories>a:hover {
    transition: all .3s;
    color: var(--secondary-color);
}

.pagination {
    margin-top: 60px;
    display: inline-block;
}

.pagination a,
.pagination span {
    border: 1px solid var(--black-color);
    border-radius: 5px;
    color: var(--black-color);
    float: left;
    padding: 12px 12px;
    text-decoration: none;
    margin-left: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.current {
    background-color: var(--secondary-color);
    border: none;
    color: var(--white-color);
}

.pagination a:last-child {
    color: var(--black-color);
}

.pagination a.active {
    background-color: var(--secondary-color);
    border: none;
    color: var(--black-color);
}

.pagination a:hover:not(.active) {
    background-color: #d8d8d8;
}

.sidebar {
    margin-top: 80px;
    width: 20%;
}

.sidebar-section {
    width: 95%;
    margin-top: 40px;
}

.sidebar-section>form {
    width: 100%;
}

.sidebar-section h3 {
    width: 100%;
    font-weight: 700;
    font-size: clamp(1.1875rem, 1.0864rem + 0.4147vw, 1.75rem);
    margin-top: 0px;
}

.sidebar-section:first-child {
    display: flex;
    align-items: center;
}

.search {
    margin: 0 auto;
    width: 100%;
    border-radius: 10px;
    height: 25px;
    background-color: var(--white-color);
    border: 1px solid #e6e6e6;
    padding-left: 10px;
    font-family: Raleway, sans-serif;
}


.search:active,
.search:focus {
    border: 1px solid var(--secondary-color);
}

.fa-search {
    margin-left: -30px;
    cursor: pointer;
}

.list-categories {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.list-categories-autor,
.list-categories-pagina {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.category-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.category-icon {
    margin-right: 10px;
    font-size: 20px;
}

.category-number {
    margin-left: auto;
}

.tag-cloud {
    margin: 10px auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-left: 7px;
}

.tag-sidebar {
    background-color: transparent;
    padding: 10px;
    margin: 5px 5px 5px 0;
    text-align: center;
    cursor: pointer;
}

.tag-sidebar>a {
    color: inherit;
    text-decoration: none;
}

.tag-sidebar:hover .tag-sidebar>a {
    border: none;
    background-color: inherit;
    transition: 0.3s;
}

.month {
    text-align: center;
}

#calendar {
    border-collapse: collapse;
    width: 100%;
    text-align: center;
    margin-left: 11px;
}

#calendar th,
#calendar td {
    padding: 1px;
    border: 1px solid rgb(142, 142, 147);
}

#calendar th {
    background-color: var(--secondary-color);
    color: var(--black-color);
}

#calendar td {
    cursor: pointer;
}

#calendar td:hover {
    background-color: var(--black-color);
    color: var(--secondary-color);
    font-weight: 600;
    transition: 0.3s;
}

.lpost-text #text {
    margin-right: 100px;
}

.latest-div {
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 20px 20px 20px 0;
}

.latest-div li {
    display: flex;
    align-items: baseline;
    margin-bottom: 10px;
}

.latest-div li span {
    margin-right: 10px;
    font-size: 16px;
    font-weight: 400;
}

.category-name a {
    text-decoration-line: none;
    text-transform: uppercase;
    color: inherit;
}

.category-name a:hover,
.lpost-text>a:hover {
    transition: .3s all;
    color: var(--secondary-color);
}

.lpost-text>a {
    text-decoration: none;
    color: var(--black-color);
}

/*---------------------------------------------------------PAGINA 404-----------------------------------------------------*/
.error-content {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
}

.div-error {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    height: 100vh;
    background-color: var(--background-color);
}

.error-img {
    margin: auto 0;
    width: 100vw;
    height: 100vh;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    object-fit: cover;
}

.abc {
    width: 80%;
    margin: auto 0;
    text-align: center;
}

.abc h1 {
    text-align: center;
    font-weight: 600;
    font-size: 92px;
    margin-bottom: 30px;
}

.abc p {
    text-align: center;
    margin-bottom: 20px;
}

.error-btn {
    border-radius: 26px;
    color: var(--black-color);
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    padding: 14px 25px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}

.error-btn svg {
    transition: transform 0.3s ease;
    transform: translateX(5px);
}

.error-btn:hover {
    background-color: var(--secondary-color);
    border: none;
    transition: all .3s;
    box-shadow: none;
}

.error-btn:hover .flecha {
    transform: translateX(10px);
}

/*----------------------------------------------------------------SINGLE PAGE--------------------------------------------------------------*/
.single {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}

.single-content {
    margin-top: 90px;
    width: clamp(29.375rem, 21.875rem + 15.625vw, 46.875rem);/*2560->750  768->470*/
}

.single-image {
    width: clamp(29.375rem, 21.875rem + 15.625vw, 46.875rem);
    aspect-ratio: 16 / 9;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
    margin-bottom: 10px;
}

.single-title {
    font-size: 22px;
    line-height: 150%;
    font-weight: 500;
    margin-bottom: 20px;
}

.single-contents {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    color: #4B4B4B;
    line-height: 150%;
}

.single-contents>a {
    color: inherit;
    text-decoration: none;
}

.single-contents>a:hover {
    transition: all .3s;
    color: var(--secondary-color);
}

.single-category {
    text-transform: uppercase;
}

.single-body {
    margin-top: 20px;
    width: 100%;
}

.single-body p {
    line-height: 150%;
    margin-bottom: 10px;
    max-width: 54ch;
}

.related-posts {
    margin-top: 60px;
    width: 100%;
    margin-bottom: 60px;
}

.related-posts h3 {
    font-size: 30px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 30px;
}

.posts-related {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: stretch;
}

.related {
    width: 31%;
    background-color: var(--white-color);
    border-radius: 15px;
}
.related.single{
    width: 60%;
    display: flex;
    flex-direction: column;
    background-color: var(--white-color);
    border-radius: 15px;
}
.related.double{
    width: 45%;
    display: flex;
    flex-direction: column;
    background-color: var(--white-color);
    border-radius: 15px;
}
.related:hover {
    transition: all .3s;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px
}

.related-img {
    width: 100%;
    height: clamp(6.67875rem, 6.3268rem + 0.7333vw, 7.5rem);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: contain;
    margin-bottom: 20px;
}
.related .tags-articulo{
    margin-left: 10px;
}
.related-padding {
    padding: 0 10px 0px 10px;
}

.related-padding h1 {
    font-size: 22px;
    margin-bottom: 10px;
}
.related-padding > .noticia-meta{
    padding-left: 0;
    margin-bottom: 10px;
}
.related-padding>h1>a {
    text-decoration: none;
    color: var(--black-color);
}

.related .readMore {
    font-size: clamp(24.14375rem, 23.4667rem + 1.4087vw, 25.720625rem);
    display: flex;
    flex-direction: row;
    align-items: center;
    color: var(--black-color);
    font-size: clamp(1rem, 0.8393rem + 0.3348vw, 1.375rem);
    text-decoration: none;
    text-transform: uppercase;
    margin-left: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}

.related .readMore svg {
    transform: translateX(12px);
}
.related .readMore:hover{
    color: var(--secondary-color);
    transition: all .3s;
}
/* .related a:hover {
    color: var(--secondary-color);
    transition: all .3s;
} */

.related a:hover svg {
    transform: translateX(17px);
    color: var(--secondary-color);
    transition: all .3s;
}

.comment-section {
    width: 100%;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.comment1 {
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 42rem;
}

.comment2 {
    display: flex;
    margin-bottom: 1.5rem;
    justify-content: space-between;
    align-items: center;
}

.comment2 h2 {
    font-size: clamp(1.375rem, 1.2677rem + 0.2233vw, 1.625rem);
    line-height: 150%;
    font-weight: 700;
}

.comment-form {
    margin-bottom: 1.5rem;
}

.div-form {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
    background-color: var(--white-color);
    border-radius: 0.5rem;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    border-width: 1px;
    border-color: #E5E7EB;
}

.div-form label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.div-form textarea {
    padding-top: 5px;
    padding-left: 5px;
    padding-right: 0;
    color: var(--black-color);
    font-size: 0.875rem;
    line-height: 150%;
    width: 100%;
    border-width: 0;
    font-family: Raleway, sans-serif;
    max-width: 525px;
    max-height: 225px;
}

.div-form textarea:focus {
    border: none;
}

.comment-form button {
    background-color: var(--white-color);
    display: inline-flex;
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    padding-left: 1rem;
    padding-right: 1rem;
    color: var(--black-color);
    line-height: 150%;
    font-weight: 500;
    text-align: center;
    align-items: center;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
}

.comment-form button:hover {
    transition: all .3s;
    background-color: var(--secondary-color);
    border: none;
}

.comments {
    display: flex;
    margin-bottom: 20px;
}

.comment-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
    background-position: right right;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
}

.comment-content {
    flex: 1;
}

.comment-author {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: bold;
}

.comment-date {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
}

.comment-text {
    margin-bottom: 10px;
}

.comment-reply a {
    color: #007bff;
    text-decoration: none;
}

.comment-reply a:hover {
    text-decoration: underline;
}
/*---------------------------------------------------------------AUTORES(NI HACE FALTA)------------------------------------------------------------------*/
.author-hero {
    width: 100%;
    height: 65vh;
    display: flex;
    flex-direction: column;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: contain;
}

.author-content {
    margin: 0 auto;
    width: clamp(21.497395833332593rem, 0.0001rem + 88.1941vw, 141.110625rem);
}

.author-info {
    margin-top: 60px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

.info-photo {
    width: clamp(20.86046006875rem, 0rem + 43.4028vw, 69.44444444375rem);
    height: clamp(13.875rem, 0.001rem + 28.8666vw, 46.1875rem);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
}

.info-text {
    width: clamp(20.86046006875rem, 0rem + 43.4028vw, 69.44444444375rem);
    margin: auto 0;
}

.info-text h1 {
    font-size: 38px;
    font-weight: 600;
    font-family: ND, sans-serif;
    margin-bottom: 20px;
}

.info-text p {
    font-size: 18px;
    line-height: 150%;
}

.skills {
    width: 100%;
}

.skills h1 {
    margin-top: 150px;
    text-align: center;
    font-size: 38px;
    font-family: ND, sans-serif;
    margin-bottom: 20px;
}

.skill-content {
    margin: 0 auto;
    width: 75%;
}

.skill-content h6 {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 18px;
    margin-bottom: 5px;
}

.progress {
    height: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.progress-bar {
    width: 0;
    height: 100%;
    background-color: var(--secondary-color);
    border-radius: 5px;
}

.news-author {
    margin-top: 150px;
}

.noticias-auth {
    margin-top: 60px;
}

.add-content {
    margin-top: 120px;
    width: 100%;
}

.add-content h1 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 38px;
    font-family: ND, sans-serif;
}

.video-content {
    width: 100%;
    height: 430px;
}

.video-content iframe {
    width: 100%;
    height: 100%;
}

/*----------------------------------------------------------------BUSCADOR-------------------------------------------------------------------*/
.search-hero {
    width: 100%;
    height: 48vh;
    display: flex;
    flex-direction: column;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: contain;
}

.blog-hero-title h2:first-child {
    margin-bottom: 40px;
}

.blog-hero-title h2 {
    display: inline;
    flex-direction: column;
    align-items: center;
}

.srch-span {
    color: var(--secondary-color);
}

.blog-search {
    width: 100%;
    margin-top: 0;
    display: flex;
    justify-content: space-evenly;
}

.search-content {
    margin-top: 120px;
    width: 100%;
    display: flex;
    flex-direction: column;

}

.srch-content-ul {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.srch-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 64px;
    height: auto;
}

.srch-cont {
    width: calc(100% - 64px);
    display: flex;
    flex-direction: column;
    padding-left: 10px;
}

.srch-title {
    width: 100%;
    margin-bottom: 15px;
    line-height: 150%;
    max-width: 548px;
}

.srch-title>a {
    color: inherit;
    text-decoration: none;

}

.srch-title>a:hover {
    color: var(--secondary-color);
    transition: all .3s;
}

/*---------------------------------------------------------POLITICA DE PRIVACIDAD-------------------------------------------------------------*/
.centrado-policy {
    border-radius: 5px;
    background-color: var(--white-color);
    width: 50%;
    margin: 0 auto 150px auto;
    padding: 20px;
    transform: translateY(120px)
}

.centrado-policy>h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

.centrado-policy>.policy-title {
    text-align: center;
    margin-bottom: 20px;
}

.centrado-policy>h2 {
    font-size: 26px;
    font-weight: 500;
    text-align: center;
    width: 67%;
    margin: 0 auto 20px auto;
}

.centrado-policy>p {
    max-width: 800px;
    font-size: 18px;
    line-height: 150%;
    margin: 0 auto 20px auto;
    max-width: 54ch;
}

.centrado-policy>p>span {
    font-weight: 600;
}

.centrado-policy>p>a {
    color: var(--black);
    text-decoration: none;
}

.centrado-policy>p>a:hover {
    color: var(--secondary-color);
    transition: all .3s;
}

.centrado-ul {
    text-align: center;
}

.centrado-ul>ul {
    display: inline-block;
    text-align: left;
    margin-bottom: 20px;
    list-style-type: disc;
    margin-left: 30px;
}

.centrado-ul>ul>li {
    font-size: 18px;
    line-height: 150%;
    max-width: 54ch;
    margin-bottom: 4px;
}

.centrado-ul>ul>li>label {
    font-weight: 600;
}

.centrado-ul>ul>li>a {
    color: var(--black);
    text-decoration: none;
}

.centrado-ul>ul>li>a:hover {
    color: var(--secondary-color);
    transition: all .3s;
}
.sidebar {
    margin-bottom: 60px !important;
}

.srch-div {
    position: relative !important;
}

.search {
    width: 100% !important;
}

.search-btn {
    width: 16.4px;
    height: 25.2px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    background-color: white;
    border: none;
    outline: none;
    margin-left: -30px;
    cursor: pointer;
    transform: translateX(12.5px);
}

.search-btn>i {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.wp-block-calendar {
    width: 100% !important;
    margin-top: 30px;
}

.wp-calendar-table>caption {
    margin-bottom: 10px;
    text-transform: capitalize;
    color: var(--black-color);
}

.wp-calendar-table>thead>tr>th {
    background-color: var(--secondary-color);
}

.wp-block-calendar table:where(:not(.has-text-color)) {
    color: var(--black-color);
}

.wp-block-calendar table:where(:not(.has-text-color)) td,
.wp-block-calendar table:where(:not(.has-text-color)) th {
    border-color: #8e8e93;
}

.wp-calendar-nav-next>a {
    color: inherit;
    text-decoration: none;
}

.wp-calendar-nav-next>a:hover {
    color: var(--secondary-color);
    transition: all .3s;
}

.wp-calendar-table>tbody>tr>td>a {
    text-decoration: none;
    font-weight: 700;
    color: var(--black-color);
}

.wp-calendar-table>tbody>tr>td>a:hover {
    color: var(--secondary-color);
    transition: all .3s;
}

.wp-calendar-nav {
    margin-top: 10px !important;
}

.wp-calendar-nav-prev a {
    text-decoration: none;
    color: inherit;
}

.wp-calendar-nav-prev a:hover {
    color: var(--secondary-color);
    transition: all .3s;
}

.list-categories>li {
    display: flex;
    align-items: stretch;
    margin-bottom: 10px;
}

.list-categories-autor>li {
    display: flex !important;
    align-items: stretch !important;
    margin-bottom: 10px !important;
}

.list-categories-autor>li::before {
    font-family: 'FontAwesome';
    content: '\f007';
    margin-right: 10px;
}

.list-categories-pagina>li {
    display: flex;
    align-items: stretch;
    margin-bottom: 5px;
}

.list-categories-pagina>li::before {
    font-family: 'FontAwesome';
    content: '\f0c1';
    margin-right: 10px;
}

.list-categories>li>a,
.list-categories-autor>li>a,
.list-categories-pagina>li>a {
    margin-bottom: 10px;
    color: var(--black-color);
    text-decoration: none;
}

.list-categories-pagina>li>a:hover,
.list-categories-autor>li>a:hover,
.list-categories-pagina>li>a:hover,
.list-categories>li>a:hover {
    color: var(--secondary-color);
    transition: all .3s !important;
}

/*AUTHOR*/
.info-hero-blog>h1>span {
    color: var(--secondary-color);
}

/*ARCHIVES*/
.grid {
    display: flex;
    flex-wrap: wrap;
}

.last-entries {
    display: flex;
    flex-direction: column;
    width: 100% !important;
    padding-left: 1px !important;
}

.last-entries>li {
    list-style-type: none !important;
    margin-bottom: 10px;
    width: 100%;
}

.last-entries>li>a {
    text-decoration: none;
    color: var(--black-color);
}

.last-entries>li>a:hover {
    color: var(--secondary-color);
    transition: all .3s;
}

.badge {
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    background-color: #777;
    border-radius: 10px;
}

.pull-right {
    margin-left: auto;
    float: right !important;
}

.cat-item::before {
    font-family: 'FontAwesome';
    content: '\f07b';
    margin-right: 10px;
}

/*COMMENTS*/
.comment-form {
    margin-top: 20px;
}

.logged-in-as {
    margin-bottom: 10px;
}

.logged-in-as a {
    color: #0073aa;
    text-decoration: none;
}

.required-field-message {
    font-weight: 600;
}

.comment-form-comment {
    margin-bottom: 20px;
}

.comment-form-comment label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
}

.comment-form-comment textarea {
    font-family: Montserrat, sans-serif;
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
}

.comment {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 20px;
}

.comment .comment-author {
    font-weight: bold;
    margin-bottom: 5px;
}

.comment .comment-meta {
    color: #999;
    font-size: 0.9em;
    margin-bottom: 5px;
}

.comment .comment-content {
    margin-top: 5px;
}

.comment a {
    text-decoration: none;
    color: #0073aa;
}

.comment .reply {
    margin-top: 10px;
}

.comment .avatar {
    border-radius: 50%;
    border: 1px solid #777;
}

/*-----------------------------------------------------------------NINJA FORM CONTACT-------------------------------------------------*/
.nf-form-cont {
    margin-top: 60px !important;
    margin: 0 auto;
    font-family: Raleway, sans-serif, system-ui;
}

.nf-form-title {
    text-align: center;
    text-transform: uppercase;
    font-size: 50px;
}

.nf-form-title h3 {
    font-size: clamp(1.875rem, 1.4464rem + 0.8929vw, 2.875rem) !important;
    margin-bottom: 20px !important;
}

.nf-form-fields-required {
    margin-bottom: 20px !important;
}

.ninja-forms-req-symbol {
    color: var(--secondary-color) !important;
}
#nf-field-1, #nf-field-2, #nf-field-3{
    border-radius: 10px !important;
}
.nf-error.field-wrap .nf-field-element:after{
    border-radius: 10px !important;
}
.nf-field-element,
.nf-field-3 {
    font-family: Raleway, sans-serif !important;
}

.nf-form-content textarea {
    font-family: Raleway, sans-serif !important;
}

.nf-form-content input[type=submit] {
    background-color: var(--black-color) !important;
    padding: 15px !important;
    border-radius: 10px !important;
}

.nf-form-content input[type=submit]:hover {
    background-color: var(--secondary-color) !important;
    color: var(--black-color) !important;
    cursor: pointer !important;
    transition: all .3s !important;
}

.checkbox-wrap .nf-field-label label.nf-checked-label:before {
    color: var(--secondary-color) !important;
}

.nf-response-msg {
    margin: 0 auto;
    line-height: 150%;
    font-size: 20px;
    max-width: 50ch;
    text-align: center;
}
.moove-gdpr-branding-cnt{
    display: none !important;
}
/*---------------------------------------------------------------KEYFRAMES-----------------------------------------------------------------*/
@keyframes grain {
    0%,
    100% {
        transform: translate(0, 0)
    }

    10% {
        transform: translate(-5%, -10%)
    }

    20% {
        transform: translate(-15%, 5%)
    }

    30% {
        transform: translate(7%, -25%)
    }

    40% {
        transform: translate(-5%, 25%)
    }

    50% {
        transform: translate(-15%, 10%)
    }

    60% {
        transform: translate(15%, 0%)
    }

    70% {
        transform: translate(0%, 15%)
    }

    80% {
        transform: translate(3%, 35%)
    }

    90% {
        transform: translate(-10%, 10%)
    }
}
@keyframes animateBg {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: 0 0;
    }
}
@keyframes fadeIn {
    from {
        scale: .8;
        opacity: 0;
    }

    to {
        scale: 1;
        opacity: 1;
    }
}
@keyframes scrollAnim {
    from {
        opacity: 0;
        scale: 25%;
    }

    to {
        opacity: 1;
        scale: 100%;
    }
}
@keyframes leftCenter {
    0% {
        transform: translateX(-100vw);
    }

    100% {
        transform: translateX(0vw);
    }
}

@keyframes reveal {
    from { opacity: 0; clip-path: inset(0% 60% 0% 50%); }
    to { opacity: 1; clip-path: inset(0% 0% 0% 0%); }
  }
/*---------------------------------------------------------------MediaQueries--------------------------------------------------------------*/
@media screen and (max-width: 950px) {
    .navigation {
        width: 100%;
    }

    .menu {
        width: auto;
        position: relative;
    }

    .menu-btn {
        display: flex;
    }

    .navbar {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 77px;
        right: 0;
        margin: 0;
        padding: 0;
        width: 0;
        height: calc(100vh - 82px);
        list-style-type: none;
        text-align: center;
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: all 0.5s ease-in-out;
        z-index: 9999;
    }

    .open {
        width: 100vw;
        transform: translateX(clamp(1.375rem, -0.1049rem + 6.0714vw, 3.5rem));
    }

    .navbar li {
        width: 100%;
        margin: 20px 0;
    }

    .navbar a {
        text-decoration: none;
        color: var(--black-color);
        display: none;
    }

    .info-hero .texto-hero {
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 991px) {
    .single-image {
        height: clamp(21.67875rem, -0.683rem + 36.0673vw, 26.3675rem);/*991->264.36  768->264.36*/
    }
}

@media screen and (max-width: 768px) {
    .logo {
        width: clamp(6.5625rem, 3.9831rem + 10.582vw, 9.0625rem);
    }

    .nav-images img {
        width: 50px;
    }

    .hero-content {
        width: 200px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .div-btns {
        margin-top: 5px;
        gap: 10px 0;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .txt1 {
        order: 1;
    }

    .foto1 {
        display: none;
        order: 2;
        width: 100%;
    }

    .foto1-mobile { /*!!!!Cambiar animacion por otra*/
        margin-top: 40px;
        display: block;
        max-height: 300px;
        order: 2;
        width: 100%;
        aspect-ratio: 3 / 2;
        animation: auto linear reveal both;
        animation-timeline: view();
        animation-range: entry 15% cover 30%;
    }

    .foto2 {
        display: none;
        margin-top: 40px;
        order: 3;
    }

    .foto2-mobile {
        margin-top: 40px;
        order: 3;
        aspect-ratio: 3 / 2;
        display: inline-block;
        animation: auto linear reveal both;
        animation-timeline: view();
        animation-range: entry 15% cover 30%;
    }

    .txt2 {
        order: 4;
    }

    .foto3 {
        display: none;
        order: 5;
    }

    .foto3-mobile {
        margin-top: 66px;
        display: block;
        width: 100%;
        max-height: 300px;
        order: 5;
        aspect-ratio: 16 / 9;
        animation: auto linear reveal both;
        animation-timeline: view();
        animation-range: entry 15% cover 30%;
    }

    .txt1,
    .txt2 {
        width: 100%;
    }

    .txt2 {
        margin-top: -56px;
    }

    .antecedentes-txt h2,
    .arriba h1 {
        font-size: 26px;
        text-align: center;
        width: 100%;
    }

    .arriba-izquierda h3,
    .arriba-derecha h3,
    .abajo-izquierda h3,
    .abajo-derecha h3 {
        font-size: 20px;
    }
    .antecedentes-txt p:first-child, #txt1 > p:nth-child(2) {
        margin-top: 20px;
    }
    .antecedentes-txt p,
    .arriba-izquierda p,
    .arriba-derecha p,
    .abajo-izquierda p,
    .abajo-derecha p {
        font-size: 16px;
        line-height: 150%;
        margin: 0px auto 10px auto;
        max-width: 46ch;
    }

    .objetivos {
        margin-top: 60px;
        flex-wrap: wrap;
    }

    .arriba {
        width: 100%;
    }

    .mitad-izquierda {
        width: 100%;
        order: 1;
    }

    .arriba h1 {
        text-align: center;
    }

    .arriba p {
        font-size: 16px;
        text-align: center;
        line-height: 150%;
        width: 100%;
    }

    .mitad-derecha {
        margin-top: 30px;
        width: 100%;
        order: 2;
        justify-content: space-evenly;
    }

    .mitad-derecha>div {
        width: clamp(10.11393229166667rem, 0rem + 41.4931vw, 19.916666666666668rem);
    }

    .arriba {
        order: 1;
    }

    .abajo {
        position: relative;
        order: 10;
        display: none;
        z-index: -1;
        transform: translateY(1090px);
    }

    .arriba-izquierda {
        order: 2;
    }

    .arriba-derecha {
        order: 3;
    }

    .abajo-izquierda {
        order: 4;
    }

    .abajo-derecha {
        order: 5;
    }

    .acc-title-left .primer-span {
        margin-right: 18px;
        font-size: 32px;
    }

    .accordion {
        font-size: 26px;
    }

    .accordion span {
        margin-right: 0;
    }

    .header-proyecto {
        width: 100%;
    }

    .header-proyecto h1 {
        text-align: center;
        font-size: 26px;
    }

    .header-proyecto p {
        font-size: 16px;
        line-height: 150%;
    }

    /**************ACORDEON**********************/
    .panel {
        flex-wrap: wrap;
        padding: 0 0 0 15px;
    }

    /**/
    .member1,
    .member2,
    .member3,
    .member4,
    .member5 {
        width: 300px;
    }

    .miembros h1 {
        text-align: center;
        line-height: 150%;
        font-size: 26px;
    }

    .info-members-content {
        flex-wrap: wrap-reverse;
    }

    .info-members-content img {
        width: clamp(21.4973958125rem, 0rem + 88.1944vw, 42.278211805625rem);
        animation: auto linear reveal both;
        animation-timeline: view();
        animation-range: entry 15% cover 30%;
    }

    .info-members-content p {
        width: 100%;
        text-align: center;
    }

    /************FINANCIACIÓN***************/
    .financiacion h1 {
        text-align: center;
        font-size: 26px;
    }

    .financiacion p {
        font-size: 16px;
    }

    .primero,
    .segundo {
        font-size: 16px;
    }

    /*******CONTACTO********/
    .contacto h1 {
        text-align: center;
        font-size: 26px;
        animation: fadeIn linear;
        animation-timeline: view();
        animation-range-start: 0px;
        animation-range-end: 300px;
    }

    .contact-enterprise {
        flex-direction: column-reverse;
        height: 400px;
        justify-content: space-around;
        animation: none;
    }

    .title-contact,
    .tlf,
    .email,
    .adress {
        animation: fadeIn linear;
        animation-timeline: view();
        animation-range-start: 0px;
        animation-range-end: 300px;
    }

    .mapa {
        width: 100%;
        height: 245px;
        animation: fadeIn linear;
        animation-timeline: view();
        animation-range-start: 0px;
        animation-range-end: 300px;
    }

    .contact-content {
        width: 100%;
    }

    .enterprise-content {
        margin-top: 10px;
        height: 150px;
    }

    .footer-flex {
        flex-direction: column;
    }

    .logo2 {
        margin: 0 auto;
        width: 161.93px;
    }

    .div-content-footer {
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 30px;
    }

    .ul-flex {
        line-height: 150%;
        text-align: center;
    }

    .divs-footer-mobile {
        display: flex;
    }

    .divs-footer-mobile img {
        width: clamp(3.5rem, 1.4365rem + 8.4656vw, 5.5rem);
    }

    /*******LATEST NEWS****************/
    .latest-news h1 {
        font-size: 26px;
        line-height: 150%;
    }

    .noticias {
        gap: 20px 0;
        flex-direction: column !important;
        margin: 20px auto 0 auto;
        align-items: center;

    }

    .noticia {
        width: 100% !important;
    }

    .add-content {
        margin-top: 60px;
    }

    /*****NEWSLETTER*****/
    .newsletter h1 {
        text-align: center;
        width: 45%;
        font-size: 26px;
    }

    /*Footer*/
    .divs-footer {
        display: none;
        visibility: hidden;
    }

    /******BLOG PAGE*************/
    .blog {
        margin-top: 40px;
        flex-direction: column;
    }

    .content {
        width: clamp(22.0625rem, 13.0754rem + 36.87vw, 30.75rem);/*768->492  */
        margin: 0 auto;
    }

    .content h1 {
        font-size: 24px;
    }

    .main-content {
        flex-direction: column;
    }

    .photo-main {
        width: clamp(22.0625rem, 13.0754rem + 36.87vw, 30.75rem);
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 10px;
    }

    .video-main iframe {
        margin: 0 auto;
        width: clamp(22.0625rem, 13.0754rem + 36.87vw, 30.75rem);
        height: clamp(12.375rem, 7.2672rem + 20.9549vw, 17.3125rem);
    }

    .main-all-content>.tags-articulo,
    .article-title,
    .publicacion-articulo,
    .article-categories,
    .article-content>p,
    .article-button {
        margin-left: 0;
    }

    .main-all-content {
        width: clamp(22.0625rem, 13.0754rem + 36.87vw, 30.75rem);
        margin-top: 0px;
    }

    .content article {
        width: clamp(22.0625rem, 13.0754rem + 36.87vw, 30.75rem);
    }

    .foto-articulo {
        width: clamp(22.0625rem, 13.0754rem + 36.87vw, 30.75rem);
    }

    .single-image {
        font-size: clamp(29.375rem, 29.375rem + 0vw, 29.375rem);
    }

    .publicacion-articulo {
        font-size: 14px;
    }

    .article-title {
        font-size: 24px;
    }

    .article-content {
        font-size: 16px;
    }

    .sidebar {
        width: 66%;
        margin: 0 auto;
    }
    /*SINGLE PAGE*/
    .single {
        align-items: center;
        flex-direction: column;
    }

    .single-content {
        margin: 120px auto 0 auto;
    }

    .single-image {
        height: clamp(12.66875rem, -1.0369rem + 56.2281vw, 25.9175rem); /*991->264.36  768->264.36*/
    }

    .posts-related {
        gap: 20px 0;
        flex-direction: column;
        align-items: center;
    }

    .related {
        width: 100%;
    }

    .related-img {
        height: clamp(12.1875rem, 4.127rem + 33.0688vw, 20rem);
    }

    .related .readMore {
        width: 95%;
    }

    .single-body p {
        text-align: justify;
    }

    /******AUTHORS******/
    .author-info {
        flex-direction: column-reverse;
    }

    .info-photo,
    .info-text {
        width: 100%;
    }

    .info-text {
        margin-bottom: 20px;
    }

    .info-text h1 {
        text-align: center;
    }

    .info-photo {
        height: clamp(14.375rem, 0.1885rem + 58.2011vw, 28.125rem);
    }

    /******ARCHIVES******/
    .grid-item {
        width: 95%;
    }

    /*****SEARCH-ARCHIVE*****/
    .blog-search {
        flex-direction: column;
    }

    .blog-search>.content {
        margin: 0 auto;
        width: 88%;
    }

    /*****************/
    .centrado-policy>h2 {
        text-align: center;
        font-size: 22px;
    }

    .centrado-policy>p {
        font-size: 16px;
    }

    /********404 ERROR*********/
    .div-error>div {
        width: 100%;
    }

    .div-error {
        flex-direction: column;
    }
}

/*FOOTER-CONTENT */
@media screen and (max-width: 544px) {
    .div-content-footer {
        height: 620px;
    }

    .content-footer:last-child {
        width: 100%;
    }
}