/*
Theme Name: Scoutyn
Author: Aluxion
Version: 0.0.1
Text Domain: scoutyn
*/


:root {
    --site-container-width: 1200px;
    --blog-container-width: 1440px;
    --site-container-margin: 20px;
    --primary-color: #4ABD7A;
    --secondary-color: #10302D;
    --tertiary-color: #3391B8;
    --grey-color: #F4F4F4;
    --text-dark-color: #181818;
    --blog-nav-width: 240px;
    --header-height: 72px;
    --header-big-height: 120px;
}


@font-face {
    font-family: "Gilroy-Regular";
    src:
        local("Gilroy-Regular"),
        url("assets/fonts/Gilroy-Regular.ttf") format("truetype");
    font-weight: 400;
}

@font-face {
    font-family: "Gilroy-Medium";
    src:
        local("Gilroy-Medium"),
        url("assets/fonts/Gilroy-Medium.ttf") format("truetype");
    font-weight: 500;
}

@font-face {
    font-family: "Gilroy-SemiBold";
    src:
        local("Gilroy-SemiBold"),
        url("assets/fonts/Gilroy-SemiBold.ttf") format("truetype");
    font-weight: 600;
}

@font-face {
    font-family: "Gilroy-Bold";
    src:
        local("Gilroy-Bold"),
        url("assets/fonts/Gilroy-Bold.ttf") format("truetype");
    font-weight: 700;
}


/*
html,
body {
    overflow-x: hidden;
}
*/

body {
    background-color: #FFFFFF;
    font-family: 'Gilroy-Regular', sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #727272;
}

h1,
h2,
h3,
h4,
h5,
h6,
.elementor-widget-heading .elementor-heading-title {
    font-family: "Gilroy-SemiBold", sans-serif;
    font-weight: 600;
    line-height: 120%;
    color: #000000;
}

h1,
.elementor-widget-heading.biggest .elementor-heading-title {
    font-size: 48px;
    line-height: 100%;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container & content */
.site-container {
    width: var(--site-container-width);
    max-width: calc(100% - var(--site-container-margin) - var(--site-container-margin));
    margin-left: auto;
    margin-right: auto;
}

.site-contents {
    margin-top: var(--header-height);
    min-height: 60vh;
}

/* Formularios */
input[type=text],
input[type=number],
input[type=email],
input[type=date],
input[type=password],
select,
textarea {
    background-color: #F9FAFB;
    border: 1px solid #E5E5E5;
    border-radius: 10px;
    box-sizing: border-box;
    outline: none;
    font-family: inherit;
    font-size: 16px;
    padding: 12px 16px;
    width: 100%;
}

input[type=text]:focus,
input[type=number]:focus,
input[type=email]:focus,
input[type=date]:focus,
input[type=password]:focus,
select:focus,
textarea:focus {
    border: 1px solid var(--grey-color);
}

input[type=radio],
input[type=checkbox] {
    cursor: pointer;
}

textarea {
    resize: vertical;
    max-height: 100px;
}

select {
    cursor: pointer;
}

.form-container {
    display: flex;
    flex-direction: column;
    row-gap: 1.2rem;
    box-sizing: border-box;
    padding: 25px;
    max-width: 100%;
}

.form-container .form-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 15px;
    width: 100%;
}

.form-container .form-row .form-column {
    width: 100%;
}

.form-container .form-field {
    position: relative;
}

.form-container .form-field.with-icon input,
.form-container .form-field.with-icon select {
    padding-left: 40px;
}

.form-container .form-field .form-field-icon:before {
    position: absolute;
    top: 9px;
    left: 10px;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px;
    width: 16px;
    height: 16px;
    content: "";
}

.form-container .form-field .form-field-icon.is-link:before {
    cursor: pointer;
}

.form-container .form-field .icon-here {
    position: absolute;
    top: 4px;
    right: 5px;
}

.form-container label {
    display: block;
    font-family: "Gilroy-SemiBold", sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #3B3B3B;
    margin-bottom: .2rem;
}

.form-container .caption {
    display: block;
    font-size: .8rem;
    line-height: 1.1rem;
    margin-bottom: .5rem;
}

.demo-form-container .form-header {
    margin: 0 auto 20px auto;
    width: 390px;
    max-width: 100%;
}

.demo-form-container .form-header .title {
    margin-bottom: 12px;
}

.wpcf7 .wpcf7-spinner {
    display: none;
}

.wpcf7 form .wpcf7-response-output {
    margin: 1rem 0;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
}

.form-container.is-dark .wpcf7 form .wpcf7-response-output {
    color: #FFFFFF;
}

.wpcf7 form.submitting input[type=submit] {
    background-color: var(--grey-color);
    border: 1px solid var(--grey-color);
    pointer-events: none;
}

.wpcf7-not-valid-tip {
    font-size: .85rem;
    line-height: 1.1rem;
}

/* General */
.primary-color {
    color: var(--primary-color);
}

.secondary-color {
    color: var(--secondary-color);
}

.tertiary-color {
    color: var(--tertiary-color);
}

.text-center {
    text-align: center;
    width: 100%;
}

.entry-content p:not(:last-of-type) {
    min-height: 1px;
    margin-bottom: 1em;
}

.entry-content ul {
    list-style: initial;
}

.entry-content ol {
    list-style: decimal;
}

b,
strong,
.fw-bold,
.elementor-widget-heading.fw-bold .elementor-heading-title {
    font-family: "Gilroy-Bold", sans-serif;
    font-weight: 700;
}

.fw-semibold {
    font-family: "Gilroy-SemiBold", sans-serif;
    font-weight: 600;
}

.fw-medium {
    font-family: "Gilroy-Medium", sans-serif;
    font-weight: 500;
}

.fs-small {
    font-size: 14px;
}

.fs-smaller {
    font-size: 12px;
}

.simple-box {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    padding: 25px;
}

.elementor-widget-n-tabs .e-n-tabs-heading {
    background-color: #F4F4F4;
    border-radius: 8px;
    padding: 8px;
    width: fit-content;
    margin: 0 auto;
}

.elementor-widget-n-tabs .e-n-tabs-heading button {
    cursor: pointer;
}

.elementor-widget-n-tabs .e-n-tabs-heading button[aria-selected=false] .e-n-tab-icon {
    opacity: .2;
}

.social {
    display: flex;
    align-items: center;
    column-gap: 12px;
}

.icon-here,
.menu-icon-here > a {
    position: relative;
    transition: all .3s;
    cursor: pointer;
}

.icon-here,
.icon-here:before {
    width: 35px;
    height: 35px;
}

.icon-here.ih-full {
    background-color: #F9FAFB;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
}

.icon-here.ih-full:hover {
    background-color: #FFFFFF;
}

.icon-here:before {
    position: absolute;
    top: 0;
    left: 0;
}

.icon-here:before,
.menu-icon-here > a:before {
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px;
    content: "";
    transition: all .3s;
}

.icon-here.ih-small,
.icon-here.ih-small:before {
    width: 24px;
    height: 24px;
}

.icon-here.ih-small:before {
    background-size: 10px;
}

.menu .menu-item.menu-icon-here > a {
    display: flex;
    align-items: center;
    column-gap: 10px;
    flex-wrap: nowrap;
    width: 100%;
}

.menu-icon-here > a:before {
    background-size: cover;
    width: 16px;
    height: 16px;
    opacity: .5;
}

.menu-icon-here:hover > a:before,
.menu-item.current-menu-item.menu-icon-here > a:before {
    opacity: 1;
}

.ih-icon-share:before {
    background-image: url('assets/images/icon-share.svg');
}

.ih-icon-user:before {
    background-image: url('assets/images/icon-user.svg');
}

.ih-icon-clear:before {
    background-image: url('assets/images/icon-search-clear.svg');
}

.menu-icon-here.ih-icon-home > a:before {
    background-image: url('assets/images/menu-icon-home.svg');
}

.menu-icon-here.ih-icon-about > a:before {
    background-image: url('assets/images/menu-icon-about.svg');
}

.menu-icon-here.ih-icon-demo > a:before {
    background-image: url('assets/images/menu-icon-demo.svg');
}

.menu-icon-here.ih-icon-web > a:before {
    background-image: url('assets/images/menu-icon-web.svg');
}

.menu-icon-here.ih-icon-newsletter > a:before {
    background-image: url('assets/images/menu-icon-newsletter.svg');
}

.icon-search:before {
    background-image: url('assets/images/icon-search.svg');
}

.map-hover svg {
    max-width: 100%;
}

.map-hover svg g use {
    transition: all .2s;
    filter: none;
}

.map-hover svg g use:hover {
    filter: hue-rotate(170deg);
}

/* Botones y links */
.button,
input[type=button],
input[type=submit],
.menu-item-button > a,
.elementor-widget-button .elementor-button {
    display: inline-block;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    color: #FFFFFF;
    font-family: "Gilroy-SemiBold", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    padding: 12px 16px;
    text-align: center;
    transition: all .3s;
    box-sizing: border-box;
    white-space: nowrap;
    min-width: 170px;
    cursor: pointer;
}

.button.secondary-button,
input[type=button].secondary-button,
input[type=submit].secondary-button,
.menu-item-button.menu-item-secondary-button > a,
.elementor-widget-button.secondary-button .elementor-button {
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.button.grey-button,
input[type=button].grey-button,
input[type=submit].grey-button,
.menu-item-button.menu-item-grey-button > a,
.elementor-widget-button.grey-button .elementor-button {
    background-color: var(--grey-color);
    border: 1px solid var(--grey-color);
    color: #525252;
}

.button.small-button,
.elementor-widget-button.small-button .elementor-button {
    padding: 8px 16px;
}

.button.big-button,
.elementor-widget-button.big-button .elementor-button {
    padding: 18px;
}

.button.full-width-button,
.elementor-widget-button.full-width-button .elementor-button {
    padding: 18px;
    width: 100%;
}

.button.alt-button,
.elementor-widget-button.alt-button .elementor-button {
    font-size: 14px;
    letter-spacing: .35px;
    border-radius: 20px;
}

.elementor-widget-button.alt-button .elementor-button-content-wrapper {
    align-items: center;
}

.elementor-widget-button.alt-button .elementor-button-icon {
    width: 6px;
}

.button[disabled],
input[type=button][disabled],
input[type=submit][disabled] {
    opacity: .5;
    cursor: initial;
}

.button:not([disabled]):hover,
input[type=button]:not([disabled]):hover,
input[type=submit]:not([disabled]):hover,
.menu-item-button > a:hover,
.elementor-widget-button .elementor-button:hover {
    background-color: #FFFFFF;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

/* Popup */
.featherlight:last-of-type {
    background-color: #d3d3d3;
}

.featherlight .featherlight-content {
    box-shadow: 0px 25px 50px -12px #00000040;
    border-radius: 8px;
    padding: 32px 48px;
}

.featherlight.form-popup .featherlight-content {
    width: 800px;
    max-width: 98%;
}

.popup {
    display: none;
}

.featherlight .popup {
    display: block;
}

.featherlight .featherlight-close-icon {
    top: 20px;
    right: 20px;
    font-size: 24px;
    transition: all .3s;
}

.featherlight .featherlight-close-icon:hover {
    color: var(--primary-color);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background-color: #FFFFFF;
    border-bottom: 1px solid #E5E5E5;
    box-sizing: border-box;
    height: var(--header-height);
    width: 100%;
    transition: all .2s;
    z-index: 999999;
}

.site-header .site-logo img {
    display: block;
    max-width: 150px;
}

.site-header .block.main-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Menus */
.menu {
    display: flex;
    column-gap: 10px;
}

.menu .legal-menu-container .menu-item > a {
    text-decoration: underline;
}

.blog-menu-container,
.blog-extra-menu-container {
    position: relative;
    padding-bottom: 6px;
    margin-bottom: 6px;
}

.blog-menu-container .menu,
.blog-extra-menu-container .menu,
.blog-categories-menu-container .menu {
    flex-direction: column;
    row-gap: 4px;
}

.blog-menu-container:after,
.blog-extra-menu-container:after {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 1px solid #E5E5E5;
    width: calc(100% + 40px);
    margin-left: -20px;
    content: "";
}

.blog-menu-container .menu a,
.blog-extra-menu-container .menu a,
.blog-categories-menu-container .menu a {
    display: block;
    border-radius: 8px;
    box-sizing: border-box;
    padding: 10px 12px;
    font-size: 14px;
    color: #6B7280;
    transition: all .2s;
}

.blog-menu-container .menu a:hover,
.blog-extra-menu-container .menu a:hover,
.blog-categories-menu-container .menu a:hover,
.blog-menu-container .current-menu-item a,
.blog-extra-menu-container .current-menu-item a,
.blog-categories-menu-container .current-menu-item a {
    background-color: #F3F4F6;
    font-family: "Gilroy-Bold", sans-serif;
    font-weight: 700;
    color: var(--text-dark-color);
}

.blog-categories-menu-container .title {
    text-transform: uppercase;
    color: #9CA3AF;
    padding: 10px 0 0 12px;
}

.blog-categories-menu-container .menu a {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.blog-categories-menu-container .blog-category-bullet {
    width: 6px;
    height: 6px;
}

.top-blog-categories-menu-container .blog-category-bullet {
    display: none;
}

.top-blog-categories-menu-container a {
    display: block;
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 14px;
    color: #6B7280;
    transition: all .2s;
}

.top-blog-categories-menu-container a:hover,
.top-blog-categories-menu-container .current-menu-item a {
    background-color: #F3F4F6;
    font-family: "Gilroy-SemiBold", sans-serif;
    font-weight: 600;
    color: var(--text-dark-color);
}

body.mobile-menu-opened {
    position: fixed;
    overflow: hidden;
}

.site-header .mobile-menu-opener {
    display: none;
    flex-direction: column;
    row-gap: 5px;
    cursor: pointer;
}

.site-header .mobile-menu-opener > div {
    background-color: var(--text-dark-color);
    width: 24px;
    height: 3px;
    transition: all .3s;
}

body.mobile-menu-opened .site-header .menu {
    flex-direction: column;
    row-gap: 15px;
}

body.mobile-menu-opened .mobile-menu-opener > div:first-child {
    transform: rotate(45deg);
}

body.mobile-menu-opened .mobile-menu-opener > div:nth-child(2) {
    transform: rotate(-45deg);
    margin-top: -8px;
}

body.mobile-menu-opened .mobile-menu-opener > div:last-child {
    display: none;
}

/* Footer */
.site-footer {
    background-color: var(--secondary-color);
    padding: 70px 0;
    color: #FFFFFF;
}

.site-footer .block {
    display: flex;
    justify-content: space-between;
}

.site-footer .main-block {
    padding-bottom: 130px;
    margin-bottom: 40px;
    border-bottom: 1px solid #FFFFFF33;
}

.site-footer .main-block .sub-block:first-child .wp-block-group {
    font-size: 10px;
    padding: 0;
    margin-top: 3px;
}

.site-footer .main-block .menu {
    flex-direction: column;
    row-gap: 12px;
}

.site-footer .main-block > .sub-block:first-child {
    width: 35%;
}

.site-footer .main-block > .sub-block:nth-child(2) {
    width: 30%;
}

.site-footer .main-block > .sub-block:last-child {
    width: 35%;
}

.site-footer .legal-block > .sub-block:first-child {
    display: flex;
    column-gap: 30px;
    align-items: center;
}

.site-footer .form-container {
    padding: 0;
}

.site-footer .wp-block-heading {
    color: #FFFFFF;
}

.site-footer .legal-menu-container a {
    text-decoration: underline;
}

/* Widgets */
.widget .wp-block-heading,
.widget p:not(:empty) {
    margin-bottom: 1em;
}

.widget .wp-block-group {
    border-radius: 10px;
    padding: 18px;
}

.widget .form-container {
    padding: 0;
    margin-bottom: 1em;
}

/* Blog */
body.is-blog {
    background-color: #F7F8FA;
}

.site-header.blog-header {
    background-color: #FFFFFF;
    padding: 0 var(--site-container-margin);
}

.site-header.blog-header .block.main-block {
    justify-content: initial;
    column-gap: 15px;
    width: 100%;
}

.site-header.blog-header .block.main-block > .sub-block:first-child {
    position: relative;
    width: calc(var(--blog-nav-width) - var(--site-container-margin));
}

.site-header.blog-header .block.main-block > .sub-block:first-child:after {
    position: absolute;
    top: -15px;
    right: 0;
    border-right: 1px solid #E5E7EB;
    width: 1px;
    height: calc(100% + 30px);
    content: "";
}

.site-header.blog-header .block.main-block > .sub-block:last-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - var(--blog-nav-width) - (var(--site-container-margin) / 2));
}

.site-header.blog-header .top-nav {
    display: flex;
    align-items: center;
    column-gap: 14px;
}

.site-header.blog-header .form-container {
    padding: 0;
}

.site-header.blog-header .form-container .form-field .icon-search-clear {
    position: absolute;
    top: 5px;
    right: 10px;
    width: 20px;
    height: 20px;
}

.site-header.blog-header input {
    border-radius: 8px;
    padding: 6px 16px;
}

body.is-blog .site-contents {
    margin-top: var(--header-height);
}

body.is-blog .site-container {
    width: var(--blog-container-width);
}

.blog-archive-title {
    margin-bottom: 15px;
}

.blog-archive-description {
    margin-bottom: 20px;
}

.blog-container {
    display: flex;
    column-gap: 0;
}

.blog-container .blog-nav,
.blog-container .blog-nav .blog-nav-inner {
    box-sizing: border-box;
    width: var(--blog-nav-width);
}

.blog-container .blog-nav .blog-nav-inner {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #FFFFFF;
    border-right: 1px solid #E5E7EB;
    padding: var(--site-container-margin);
    height: calc(100vh - var(--header-height));
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
}

.blog-container .blog-nav .blog-nav-inner > div:last-child {
    position: relative;
    padding-top: 15px;
}

.blog-container .blog-nav .blog-nav-inner > div:last-child:before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    border-top: 1px solid #E5E5E5;
    width: calc(100% + 40px);
    margin-left: -20px;
    content: "";
}

.blog-container .blog-nav .copyright {
    font-size: 10px;
    line-height: 16px;
    color: #9CA3AF;
}

.blog-container .blog-contents {
    box-sizing: border-box;
    padding: 34px;
    width: calc(100% - var(--blog-nav-width));
}

.blog-entries {
    position: relative;
    margin-bottom: 3em;
}

.blog-entries:not(.mode-slider) .blog-entries-items {
    display: flex;
    flex-wrap: wrap;
    column-gap: 16px;
    row-gap: 16px;
    width: 100%;
}

.blog-entries .blog-entry {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    box-sizing: border-box;
    width: calc(20% - 13px);
    transition: all .3s;
    overflow: hidden;
}

.blog-entries .blog-entry:hover {
    border: 1px solid #cccccc;
}

.blog-entries .blog-entry .image-wrapper {
    overflow: hidden;
}

.blog-entries .blog-entry .image {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition: all .3s;
    width: 100%;
}

.blog-entries .blog-entry:hover .image {
    transform: scale(1.09);
}

.blog-entries .blog-entry.style-basic .content {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    padding: 16px;
}

.blog-entries .blog-entry.style-basic .content .title {
    font-family: "Gilroy-Bold", sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
}

.blog-entries .blog-entry.style-basic .content .excerpt {
    display: none;
}

.blog-entries .blog-entry.style-basic .content .date {
    font-size: 12px;
    color: #6B7280;
}

.blog-entries .blog-entry.style-basic .image {
    height: 120px;
}

.blog-entries .blog-entry.style-big {
    margin-bottom: 2.4em;
    width: 100%;
}

.blog-entries .blog-entry.style-big .blog-entry-inner {
    display: flex;
    flex-direction: row-reverse;
    column-gap: 20px;
    box-sizing: border-box;
    padding: 24px 30px;
    width: 100%;
}

.blog-entries .blog-entry.style-big .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-entries .blog-entry.style-big .content,
.blog-entries .blog-entry.style-big .image-wrapper {
    border-radius: 8px;
    width: 50%;
}

.blog-entries .blog-entry.style-big .content .author,
.blog-entries .blog-entry.style-big .content .date {
    display: none;
}

.blog-entries .blog-entry.style-big .content .icon {
    background-image: url('assets/images/logo-blog-entry.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 56px;
    height: 56px;
}

.blog-entries .blog-entry.style-big .content .info {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.blog-entries .blog-entry.style-big .image {
    height: 340px;
}

.blog-category .title-wrapper {
    display: flex;
    column-gap: 10px;
    align-items: center;
    margin-bottom: .8em;
}

.blog-category .title {
    font-size: 24px;
    color: var(--text-dark-color);
}

.blog-category .description {
    margin-bottom: 1.4em;
    width: 60%;
}

.blog-category-bullet {
    border-radius: 50%;
    width: 10px;
    height: 10px;
}

.blog-entries .slick-track {
    margin: 0;
}

.blog-entries .slider-arrows > div {
    position: absolute;
    bottom: 120px;
    background-color: #F9FAFB;
    box-shadow: 0px 4px 4px 0px #0000000D;
    border: 1px solid #E5E5E5;
    border-radius: 6px;
    width: 32px;
    height: 32px;
    transition: all .3s;
    cursor: pointer;
}

.blog-entries .slider-arrows > div:before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    background-image: url('assets/images/slider-arrow.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 6px;
    width: 100%;
    height: 100%;
    content: "";
}

.blog-entries .slider-arrows > div:hover {
    background-color: #FFFFFF;
}

.blog-entries .slider-arrows .arrow-prev {
    left: -16px;
}

.blog-entries .slider-arrows .arrow-next {
    right: -16px;
}

.blog-entries .slider-arrows .arrow-next:before {
    transform: rotate(180deg);
}

.blog-entries.layout-full .slider-arrows > div {
    bottom: 62px;
}

.blog-entries.layout-full .slider-arrows .arrow-prev {
    left: 44%;
}

.blog-entries.layout-full .slider-arrows .arrow-next {
    right: initial;
    left: calc(44% + 40px);
}

.blog-entries .slick-track {
    display: flex !important;
}

.blog-entries .slick-slide {
    margin: 0 8px;
    height: inherit !important;
}

.blog-entries .slick-list {
    margin: 0 -8px;
}

/* Paginado */
.pagination {
    margin: 20px 0;
    text-align: center;
}

.pagination .nav-links {
    display: flex;
    column-gap: 8px;
    align-items: center;
    font-size: 14px;
}

.pagination .page,
.pagination .page-numbers:not(.next):not(.prev) {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    width: 32px;
    height: 32px;
}

.pagination .page-numbers.current {
    background-color: var(--primary-color);
    color: #FFFFFF;
    cursor: default;
}

.pagination .page-numbers:not(.current):not(.next):not(.prev):hover {
    background-color: #eeeeee;
}

/* Entrada de Blog */
body.single-post .entry-header {
    margin-bottom: 40px;
}

body.single-post .entry-body {
    display: flex;
    column-gap: 35px;
    border-bottom: 1px solid #E5E7EB;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

body.single-post .entry-body .entry-content {
    width: 72%;
}

body.single-post .entry-body .entry-sidebar {
    width: 28%;
}

body.single-post .entry-body .entry-sidebar .widget .form-container .form-column {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

body.single-post .entry-image img {
    display: block;
    border-radius: 8px;
    object-fit: cover;
    object-position: center;
    height: 363px;
}

body.single-post .entry-content .entry-category {
    display: flex;
    align-items: center;
    column-gap: 8px;
    font-size: 14px;
    margin-bottom: 11px;
}

body.single-post .entry-content .entry-meta {
    display: flex;
    justify-content: space-between;
    column-gap: 10px;
    align-items: center;
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
    padding: 20px 0;
    margin-bottom: 40px;
}

body.single-post .entry-content .entry-meta-data {
    display: flex;
    column-gap: 10px;
    align-items: center;
}

body.single-post .entry-content .entry-meta .entry-author-avatar {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 50%;
    width: 55px;
    height: 55px;
}

body.single-post .entry-content .entry-meta .entry-author-name {
    font-size: 14px;
    color: var(--text-dark-color);
}

body.single-post .entry-content .entry-meta .entry-date {
    font-size: 12px;
    color: #6B7280;
}

body.single-post .entry-content .entry-title {
    margin-bottom: 25px;
}

body.single-post .entry-content .entry-excerpt {
    font-size: 18px;
    color: #6B7280;
    margin-bottom: 25px;
}

body.single-post .entry-content .wp-block-heading {
    margin-bottom: 13px;
}

body.single-post .entry-content .wp-block-group {
    margin-bottom: 25px;
}

body.single-post .entry-content .wp-block-quote {
    font-size: 20px;
    line-height: 30px;
    margin: 2.5em 1em;
    text-align: center;
}

body.single-post .entry-content .wp-block-image img {
    display: block;
    border-radius: 8px;
    margin-bottom: 2em;
}

body.single-post .entry-footer .blog-category {
    display: none;
}

body.single-post .entry-footer .entry-tags {
    display: flex;
    flex-wrap: wrap;
    column-gap: 8px;
    row-gap: 6px;
    border-bottom: 1px solid #E5E7EB;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

body.single-post .entry-footer .entry-tag {
    background-color: #F3F4F6;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    box-sizing: border-box;
    font-size: 14px;
    color: #6B7280;
    padding: 3px 13px;
}

@media only screen and (min-width : 1025px) {
    body:not(.sticky-header) .site-header:not(.blog-header) {
        height: var(--header-big-height);
    }

    .site-contents {
        margin-top: var(--header-big-height);
    }
}

@media only screen and (max-width : 1350px) {
    .blog-entries .blog-entry {
        width: calc(25% - 12px);
    }

    body.is-blog .site-header .mobile-menu-opener {
        display: flex;
    }

    .site-header.blog-header .top-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        padding: 30px 0 0 var(--site-container-margin);
        align-items: flex-start;
        flex-direction: column;
        row-gap: 20px;
        background-color: #FFFFFF;
        width: 100%;
        height: calc(100vh - var(--header-height));
    }

    body:not(.mobile-menu-opened) .site-header.blog-header .top-nav {
        display: none;
    }

    .site-header.blog-header .block.main-block > .sub-block:last-child {
        justify-content: flex-end;
    }
}

@media only screen and (max-width : 1170px) {
    .blog-entries .blog-entry {
        width: calc(33.3333% - 11px);
    }

    .blog-entries .blog-entry.style-big .blog-entry-inner {
        flex-direction: column;
        row-gap: 20px;
    }

    .blog-entries .blog-entry.style-big .content, 
    .blog-entries .blog-entry.style-big .image-wrapper {
        width: 100%;
    }

    .blog-entries .blog-entry.style-big .content {
        row-gap: 15px;
    }

    .blog-entries .blog-entry.style-big .image-wrapper {
        height: 220px;
    }
}

@media only screen and (max-width : 1024px) {
    .blog-category .description {
        width: 100%;
    }

    body.single-post .entry-body {
        flex-direction: column;
        row-gap: 60px;
    }

    body.single-post .entry-body .entry-content,
    body.single-post .entry-body .entry-sidebar {
        width: 100%;
    }

    body.single-post .entry-image img {
        height: 260px;
    }
}

@media only screen and (max-width : 960px) {
    .site-footer {
        padding: 50px 0;
    }

    .site-footer .main-block {
        padding-bottom: 50px;
    }

    .blog-entries .blog-entry {
        width: calc(50% - 9px);
    }
}

@media only screen and (max-width : 767px) {
    h1,
    .elementor-widget-heading.biggest .elementor-heading-title {
        font-size: 40px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 26px;
    }

    h4 {
        font-size: 24px;
    }

    body:not(.mobile-menu-opened) .site-header:not(.blog-header) .top-nav {
        display: none;
    }

    .site-header:not(.blog-header) .top-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        padding: 30px 0 0 var(--site-container-margin);
        background-color: #FFFFFF;
        width: 100%;
        height: calc(100vh - var(--header-height));
    }

    body:not(.is-blog) .site-header .mobile-menu-opener {
        display: flex;
    }

    .form-container .form-row {
        flex-direction: column;
        row-gap: 1.2rem;
    }

    .featherlight .featherlight-content {
        padding: 20px;
    }

    .site-footer .main-block,
    .site-footer .legal-block,
    .site-footer .legal-block > .sub-block:first-child {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 40px;
    }

    .site-footer .main-block > .sub-block:first-child,
    .site-footer .main-block > .sub-block:nth-child(2),
    .site-footer .main-block > .sub-block:last-child {
        width: 100%;
    }

    .blog-container .blog-nav {
        display: none;
    }

    .blog-container .blog-contents {
        padding: var(--site-container-margin);
        width: 100%;
    }
}
