/*
    - Overrides/parches sobre el theme base (style.css) usado en todo el sitio principal
    - Estilos para elementos customizados

    01 base.html
    02 index.html
    03 contact.html
    04 coming-soon.html
    05 premade_tours.html
    06 Modal bloqueo details
    07 Sidebar filters
    08 Replace WOW animation
    09 premade tour details
    10 about.html
    11 credits.html
*/

:root {
    --white-color: #fff;
    --title-color: #110F0F;
    --primary-color: #1781FE;
    --white-text-color: #AAAAAA;
    --borders-color: #E8E8E8;
    --error-text: darkred;
    --highlight-orange: #ff751f;
    --light-gray: #F0F0F0;
    --badge-gray: #646a70;

    --font-poppins: "Poppins", sans-serif;
}

.errorlist {
    list-style: none;
    margin: 10px 0;
    padding: 0;
    color: var(--error-text);
    font-weight: 600;
}

.uppercase {text-transform: uppercase;}


.form-alert-message ul {
    list-style: none;
    margin: 0;
    padding: 12px;
}

.display-none {
    display: none;
}

.btn-disabled,
.btn-disabled:hover {
    background-color: var(--badge-gray);
    color: var(--white-text-color);
}


/* 01 base.html */
.topbar-wrap {
    width: 100%;
    gap: 50px;
}

.topbar-area .topbar-wrap .logo-and-search-area {
    width: 75%;
    gap: 95px;
}

.topbar-right {
    width: 25%;
}

header.style-1 {
    padding-left: 10px;
    padding-right: 10px;
}

.header-logo {
    width: 45%;
}

.topbar-area .topbar-wrap .logo-and-search-area .search-area {
    min-width: 55%;
    width: 55%;
}

.topbar-area .topbar-wrap .header-logo img {
    min-width: inherit;
    max-width: inherit;
}

@media (max-width: 1399px) {
    .topbar-area .topbar-wrap .logo-and-search-area {
        width: 70%;
        gap: 50px;
    }

    .topbar-right {
        width: 30%;
    }
}

@media (max-width: 1199px) {
    .topbar-area .topbar-wrap {
        gap: 25px;
    }

    .topbar-area .topbar-wrap .logo-and-search-area {
        gap: 25px;
    }
}

@media (max-width: 991px) {
    .header-logo {
        width: 65%;
    }

    header.style-1 .header-logo img {
        width: inherit;
    }

    header.style-1 .main-menu.show-menu {
        width: 50%;
    }

    header.style-1 .main-menu .menu-list {
        padding-top: 20px;
    }

    .mobile-logo-wrap {
        width: 85%;
    }

    header.style-1 .mobile-logo-area .mobile-logo-wrap img {
        width: inherit;
    }
    
    header.style-1 .contact-area .single-contact .content a {
        font-size: 16px;
    }
}

@media only screen and (max-width: 991px) {
    header.style-1 .main-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 50%;
        padding: 30px 20px !important;
        z-index: 99999;
        height: 100%;
        overflow: auto;
        background: var(--white-color);
        border-right: 1px solid var(--borders-color);
        transform: translateX(-100%);
        transition: transform .4s ease-in;
        box-shadow: 0 2px 20px rgba(0, 0, 0, .03);
    }
}


@media (min-width: 850px) {
    .mobile-logo-wrap-img {
        display: block;
    }

    .mobile-logo-wrap-img-sm {
        display: none;
    }
}

@media (max-width: 850px) {
    .mobile-logo-wrap {
        width: 65%;
    }

    .mobile-logo-wrap-img {
        display: none;
    }

    .mobile-logo-wrap-img-sm {
        display: block;
    }
}

@media (min-width: 576px) {
    .header-logo {
        width: 75%;
    }
}

@media (max-width: 576px) {
    .header-logo {
        width: 80%;
        padding-left: 10px;
    }

    header.style-1 .header-logo img {
        width: inherit;
    }
}

@media (max-width: 550px) {
    header.style-1 .main-menu.show-menu {
        width: 80%;
    }
}

@media (max-width: 500px) {
    .mobile-logo-wrap {
        width: 70%;
    }
}

.contact-area d-lg-flex d-none {
    width: 100%;
}

header.style-1 .contact-area {
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.nav-right {
    min-width: 310px;
}

@media (max-width: 991px) {
    .nav-right {
        min-width: auto;
    }
}

.text-icon {
    height: 20px;
}

.yarn-piece-01 {
    fill: var(--title-color);
    transition: all 0.5s ease-out 0s;
}

.yarn-piece-02 {
    fill: var(--white-color);
}

header.style-1 .main-menu > ul > li > a{
    padding-top: 18px;
    padding-bottom: 18px;
}

header.style-1 .main-menu > ul > li:hover > a > svg > path.yarn-piece-01 {
    fill: var(--primary-color);
}

.sparkles-zone {
    font-size: 3rem;
    font-weight: bold;
    color: #3498db;
    cursor: pointer;
    position: relative; /* Importante para el z-index */
    z-index: 10; /* Asegura que el texto esté SOBRE las chispitas */
}

.sparkles-zone > a {
    z-index: 10;
}

.sparkle {
    position: absolute; /* Esencial para el posicionamiento dinámico */
    pointer-events: none; /* Las chispas no deben interferir con el mouse */    width: 8px; /* Tamaño base */
    height: 8px;
    background: radial-gradient(circle, #f1c40f 20%, rgba(241, 196, 15, 0) 70%); /* Efecto de brillo */
    border-radius: 50%;
    opacity: 0;
    z-index: 1; /* Detrás del texto si quieres, o 11 si quieres que brillen sobre él */
    animation: animateSparkles 1s ease-out forwards;
}

@keyframes animateSparkles {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
    100% {
        /* El JS calculará translateX y translateY finales aleatorios */
        transform: translate(var(--tx), var(--ty)) scale(0.2);
        opacity: 0;
    }
}

.footer-section .footer-bottom .copyright-and-payment-method-area {
    justify-content: center;
}

.filter-wrapper .filter-input-wrap .filter-input .single-search-box {
    border: 1px solid var(--borders-color) !important;
}

/* 02 index.html */
.home1-banner-section .banner-video-area {
    min-height: 400px;
    height: 400px;
}

.home1-banner-section .banner-video-area video {
    min-height: 400px;
    height: 400px;
}

.banner-content {
    padding: 20px;
}


.filter-wrapper .filter-input-wrap .filter-input .single-search-box .custom-select-dropdown input.input-text-colored,
.input-text-colored {
    background-color: var(--borders-color);
    border-radius: 5px;
    padding-left: 5px;
    padding-right: 5px;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox-wrapper input,
.checkbox-wrapper label {
    margin: 0;
}

.filter-wrapper .filter-input-wrap .filter-input .single-search-box .custom-checkbox > span {
    font-size: 14px;
    font-family: var(--font-roboto);
    color: var(--text-color);
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.4;
    display: block;
}

.filter-wrapper .filter-input-wrap .filter-input .single-search-box .custom-select-dropdown textarea {
    background-color: transparent;
    color: var(--title-color);
    font-family: var(--font-poppins);
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    width: 100%;
    cursor: pointer;
    border-radius: 5px;
    border: none;
    outline: none;
    background-color: var(--borders-color);
    padding: 10px;
}

.filter-wrapper .filter-input-wrap .filter-input .single-search-box > svg.no-fill {
    fill: none;
}

.filter-wrapper .filter-item-list .single-item {
    text-align: center;
}

@media (min-width: 768px) {
    .filter-wrapper .filter-input-wrap .filter-input.activities .single-search-box.act-location {
        grid-column: span 1;
    }

    .filter-wrapper .filter-input-wrap .filter-input.activities .single-search-box.act-guest-field  {
        grid-column: span 2;
    }

    .filter-wrapper .filter-input-wrap .filter-input.custom-trip .single-search-box.room-field {
        grid-column: span 2;
    }

    .filter-wrapper .filter-input-wrap .filter-input.custom-trip .single-search-box.medio-contacto {
        grid-column: span 2;
    }

    .filter-wrapper .filter-input-wrap .filter-input.custom-trip .specifications-field {
        grid-column: span 2;
    }

    .filter-wrapper .filter-input-wrap .filter-input.custom-trip .primary-btn1 {
        grid-column: 1 / -1;
    }

    .filter-wrapper .filter-input-wrap .filter-input .single-search-box {
        grid-column: span 1;
    }

    .filter-wrapper .filter-input-wrap .filter-input.activities .single-search-box.date-field {
        grid-column: 2 / span 1;
    }

    .filter-wrapper .filter-input-wrap .filter-input .single-search-box.full-row,
    .filter-wrapper .filter-input-wrap .filter-input.filter-input.activities .primary-btn1  {
        grid-column: span 2;
    }

    .filter-wrapper .filter-input-wrap .filter-input.activities .single-search-box.act-location {
        grid-column: span 2;
    }

    .filter-wrapper .filter-input-wrap .filter-input.activities .single-search-box.act-guest-field  {
        grid-column: span 1;
    }
}

@media (min-width: 992px) {
    .filter-wrapper .filter-input-wrap .filter-input {
        grid-template-columns: 30% 30% 17% 17%;
    }

    .filter-wrapper .filter-input-wrap .filter-input .single-search-box {
        grid-column: span 3;
    }

    .filter-wrapper .filter-input-wrap .filter-input .primary-btn1 {
        grid-column: 4;
    }

    .filter-wrapper .filter-input-wrap .filter-input.custom-trip {
        grid-template-columns: 33% 33% 15% 15%;
        gap: 20px 1%;
    }

    .filter-wrapper .filter-input-wrap .filter-input.custom-trip .single-search-box {
        grid-column: span 1;
    }

    .filter-wrapper .filter-input-wrap .filter-input.custom-trip .single-search-box.all-inclusive {
        grid-column: span 2;
    }

    .filter-wrapper .filter-input-wrap .filter-input.custom-trip .specifications-field {
        grid-row: 3;
        grid-column: 1 / span 4;
    }

    .filter-wrapper .filter-input-wrap .filter-input.custom-trip .single-search-box.room-field {
        grid-column: span 1;
    }

    .filter-wrapper .filter-input-wrap .filter-input.custom-trip .primary-btn1 {
        grid-column: 4;
    }


    .filter-wrapper .filter-input-wrap .filter-input .single-search-box {
        grid-column: span 3;
    }

    .filter-wrapper .filter-input-wrap .filter-input.activities .single-search-box.date-field {
        grid-column: 4 / span 1;
    }

    .filter-wrapper .filter-input-wrap .filter-input .single-search-box.full-row {
        grid-column: span 4;
    }

    .filter-wrapper .filter-input-wrap .filter-input.filter-input.activities .primary-btn1  {
        grid-column: 4 / span 1;
    }

        .filter-wrapper .filter-input-wrap .filter-input.activities .single-search-box.act-location {
        grid-column: span 1;
    }

    .filter-wrapper .filter-input-wrap .filter-input.activities .single-search-box.act-guest-field  {
        grid-column: span 2;
    }

}

.package-card {
    padding: 0;
    overflow: hidden;
}

    .package-card .package-content {
    padding: 15px;
}

.package-card .package-img-wrap .package-img img {
    min-height: auto;
}

small.package-card-text {
    font-size: medium;
}

.package-card .package-content .bottom-area a {
    color: inherit;
}

.home1-offer-banner-section .banner-content {
    max-width: none;
}

.home1-offer-banner-section .banner-content h2 {
    font-size: 40px;
}

@media (max-width: 550px) {
    .home1-offer-banner-section .banner-content h2 {
        font-size: 30px;
    }
}

.home1-location-search-section .location-search-wrapper {
    background-image: url(../img/banners/home1-location-search-bg.png), linear-gradient(180deg, #2E8B57 0%, #2E8B57 100%);
}

.section-title p.width-100 {
    max-width: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}

.home1-offer-slider .swiper-slide img {
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    display: block;
}

/* 03 contact.html */
.contact-textarea::placeholder {
    color: #f70000;
}

/* 04 coming-soon.html */
@media (max-width: 993px) {
    .d-md-block {
        display: none !important;
    }
}

/* 05 premade_tours.html */
.package-img-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: 900;
    text-align: center;
    width: 90%; 
    color: var(--title-color);
}

.primary-btn1 span:first-child svg,
.primary-btn1 span:last-child svg {
    width: 10px !important;
    height: 10px !important;
    min-width: 10px;
    min-height: 10px;
    vertical-align: middle;
}

.package-card.premade-tours-listing .package-content .btn-and-price-area {
    flex-wrap: wrap;
}

.package-card.premade-tours-listing .btn-and-price-area .primary-btn1 {
    flex: 1 0 min-content;
    min-width: min-content;
}

.package-card.premade-tours-listing .btn-and-price-area .price-area {
    flex-shrink: 0;
}

.package-card.premade-tours-listing .package-content .btn-and-price-area .price-area {
    order: -1;
    margin-left: auto;
}

#packages-grid .package-item {
    display: flex;
}

#packages-grid .package-item .package-card {
    flex: 1;
    display: flex;
    flex-direction: column;
}

#packages-grid .package-item .package-card .package-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

#packages-grid .package-item .package-card .package-content .location-cities {
    margin-top: auto;
}

#packages-grid .package-item.premade-tours-listing {
    display: none;
}

.small-note-travel-options {
    text-align: right;
    width: 100%;
    display: inline-block;
    padding-right: 16px;
}

.filter-wrapper .filter-input-wrap .filter-input .single-search-box .act-guest-dropdown h6 {
  font-size: 16px !important;
  font-family: var(--font-poppins) !important;
  color: var(--title-color) !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
  margin-bottom: 0 !important;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .filter-wrapper .filter-input-wrap .filter-input .single-search-box .act-guest-dropdown h6 {
    font-size: 15px !important;
  }
}

.custom-select-wrap.act-guests {
  min-width: 320px !important;
  left: unset !important;
  right: 0 !important;
  max-height: unset !important;
  padding: 25px 20px !important;
}

.custom-select-wrap.act-guests .title-area {
  line-height: 1 !important;
  margin-bottom: 20px !important;
}
.custom-select-wrap.act-guests .title-area h6 {
  color: var(--title-color) !important;
  font-family: var(--font-poppins) !important;
  font-weight: 500 !important;
  font-size: 16px !important;
  line-height: 1 !important;
}
.custom-select-wrap.act-guests .title-area span {
  color: var(--text-color) !important;
  font-family: var(--font-roboto) !important;
  font-weight: 400 !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
  display: block !important;
}

.custom-select-wrap.act-guests .guest-count {
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
  padding: 25px 15px !important;
}

.custom-select-wrap.act-guests .guest-count .single-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  line-height: 1;
}
.custom-select-wrap.act-guests .guest-count .single-item:last-child {
  margin-bottom: 0;
}
.custom-select-wrap.act-guests .guest-count .single-item .title h6 {
  color: var(--title-color);
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 5px;
}
.custom-select-wrap.act-guests .guest-count .single-item .title span {
  color: var(--text-color);
  font-family: var(--font-roboto);
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
}
.custom-select-wrap.act-guests .guest-count .single-item .quantity-counter {
  display: flex;
  align-items: center;
}
.custom-select-wrap.act-guests .guest-count .single-item .quantity-counter a {
  height: 20px;
  min-width: 20px;
  max-width: 20px;
  border-radius: 50%;
  border: 1px solid var(--primary-color1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s;
  font-size: 17px;
  color: var(--primary-color1);
}
.custom-select-wrap.act-guests .guest-count .single-item .quantity-counter a:hover {
  color: var(--white-color);
  background-color: var(--primary-color1);
}
.custom-select-wrap.act-guests .guest-count .single-item .quantity-counter input {
  width: 40px;
  background-color: transparent;
  text-align: center;
  line-height: 1;
  color: var(--title-color);
  font-family: var(--font-roboto);
  font-size: 14px;
  font-weight: 500;
}

/* 06 Modal bloqueo details */
#modal-bloqueo {
    width: 100%;
    overflow: hidden;
    background-color: transparent;
    background-color: color-mix(in srgb, var(--title-color), transparent 50%);
}

.modal-content {
    width: 80%;
    max-width: 950px;
    margin: 4% auto;
    height: 90%;
    overflow: auto;
    border-radius: 20px;
    position: relative;
}

.primary-btn1.close{
    background-color: var(--error-text);
    width: fit-content;
    position: absolute;
    right: 20px;
    top: 20px;
    border-radius: 15px;
}

.modal {
    animation: modalFadeIn 0.3s ease forwards;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 07 Sidebar filters */
#tours-row {
    align-items: flex-start;
}

#filters-sidebar {
    top: 40px;             
    max-height: calc(100vh - 120px);
    overflow-y: visible;
    scrollbar-width: thin;
    scrollbar-color: #ddd transparent;
}

#filters-sidebar::-webkit-scrollbar { width: 4px; }
#filters-sidebar::-webkit-scrollbar-thumb { background: #ddd; border-radius: 4px; }

.filters-card {
    background: var(--white-color, #fff);
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 24px 20px;
}

.filters-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--title-color, #1a1a2e);
}

.btn-clear-filters {
    background: none;
    border: none;
    font-size: 0.78rem;
    color: var(--primary-color1, #e05b00);
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
}

.filter-group {
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 4px;
}

.filter-group:last-child {
    border-bottom: none;
}

.filter-group-toggle {
    width: 100%;
    background: none;
    border: none;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--title-color, #333);
    gap: 6px;
}

.filter-group-toggle:hover {
    color: var(--primary-color1, #e05b00);
}

.toggle-arrow {
    flex-shrink: 0;
    transition: transform 0.25s ease;
    color: currentColor;
}

.filter-group-toggle[aria-expanded="false"] .toggle-arrow {
    transform: rotate(-90deg);
}

.filter-group-body {
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.2s ease;
    max-height: 600px;
    opacity: 1;
    padding-bottom: 10px;
    overflow-y: auto;
}

.filter-group-body.collapsed {
    max-height: 0;
    opacity: 0;
    padding-bottom: 0;
}

.filter-check {
    margin-bottom: 6px;
}

.filter-check .form-check-label {
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
    padding-right: 10px;
}

.filter-count {
    font-size: 0.75rem;
    color: #999;
    background: #f4f4f4;
    border-radius: 20px;
    padding: 1px 7px;
    min-width: 22px;
    text-align: center;
}

#active-filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--primary-color1, #e05b00);
    color: #fff;
    border-radius: 20px;
    font-size: 0.75rem;
    padding: 3px 10px;
    cursor: pointer;
}

.filter-tag .remove-tag {
    font-weight: 700;
    font-size: 0.85rem;
    line-height: 1;
}

.filter-check--unavailable {
    display: none;
}

@media (max-width: 991px) {
    #filters-sidebar {
        position: static;
        max-height: none;
        overflow-y: visible;
    }
}

/* 08 Repalce WOW animation */
.package-item {
    opacity: 1;
    transform: translateY(-30px);
    /* transition: opacity 1500ms ease, transform 1500ms ease; */
}

.package-item.dt-animated {
    opacity: 1;
    transform: translateY(0);
}

/* 09 Premade tour details */
#bloqueo-content-page > div:not(:first-child),
#bloqueo-content > div:not(:first-child) {
    padding: 0 30px;
}

.bloqueo-details-img {
    min-width: 100%;
    border-radius: 0 !important;
}

#bloqueo-content-page span.badge,
#bloqueo-content span.badge {
    border-radius: 100px;
    font-size: 16px !important;
    background-color: var(--primary-color) !important;
}

#bloqueo-content-page span.badge.bg-success,
#bloqueo-content span.badge.bg-success {
    background-color: rgba(var(--bs-success-rgb),var(--bs-bg-opacity))!important
}

#bloqueo-content-page span.badge.bg-secondary,
#bloqueo-content span.badge.bg-secondary {
    background-color: var(--badge-gray) !important;
}

#bloqueo-content-page h1,
#bloqueo-content h1 {
    font-size: 40px;
}

#bloqueo-content-page h1,
#bloqueo-content h1,
#bloqueo-content-page h5,
#bloqueo-content h5 {
    color: var(--title-color) !important;
}

#bloqueo-content-page .menu-bar,
#bloqueo-content .menu-bar {
    background-color: var(--light-gray);
    height: fit-content;
    padding: 10px !important;
}

#bloqueo-content-page .menu-bar button,
#bloqueo-content .menu-bar button {
    border: none;
    color: var(--title-color)
}

#bloqueo-content-page .btn.active,
#bloqueo-content .btn.active,
#bloqueo-content-page .menu-bar button:hover,
#bloqueo-content .menu-bar button:hover {
    color: var(--light-gray);
}

#bloqueo-content-page .div-dates .year,
#bloqueo-content .div-dates .year {
    font-weight: bold;
    color: var(--title-color);
    margin-bottom: 0px;
}

#bloqueo-content-page .div-dates div br,
#bloqueo-content .div-dates div br {
    height: 0px;
    display: contents;
}

#bloqueo-content-page .table-responsive table,
#bloqueo-content .table-responsive table {
    border: 0 !important;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
}

#bloqueo-content-page .table-responsive td,
#bloqueo-content .table-responsive td {
    padding: 5px 10px !important;
}

#bloqueo-content-page .table-responsive table tr:nth-child(odd) td,
#bloqueo-content .table-responsive table tr:nth-child(odd) td {
    background-color: var(--light-gray);
}

#bloqueo-content-page .table-responsive td,
#bloqueo-content .table-responsive td,
#bloqueo-content-page .table-responsive th,
#bloqueo-content .table-responsive th {
    border-style: none;
}


#bloqueo-content-page table thead th,
#bloqueo-content table thead th,
#bloqueo-content-page table thead td,
#bloqueo-content table thead td {
    text-align: center;
}


@media (max-width: 767px) {
    #bloqueo-content-page h1,
    #bloqueo-content h1 {
        font-size: 30px;
    }

    #bloqueo-content-page h5,
    #bloqueo-content h5 {
        font-size: 17px;
    }

    #bloqueo-content-page span.badge,
    #bloqueo-content span.badge {
        font-size: 13px !important;
    }

    #bloqueo-content-page .gap-3,
    #bloqueo-content .gap-3 {
        gap: 0.3rem !important;
    }

    #bloqueo-content-page, #bloqueo-content p,
    #bloqueo-content, #bloqueo-content p {
        font-size: 13px;
    }
}

/* 10 about.html */
.service-wrapper.RNT-about-wrapper {
    padding: 30px;
}

.service-wrapper .RNT-about {
    border-radius: 15px;
}

/* 11 credit.html */
.a-credit {
    padding-left: 10px;
    color: var(--primary-color);
    font-weight: bold;
}

.a-credit:hover {
    color: var(--title-color);
}

.blog-card .blog-img img.search-result {
    object-fit: cover;
}

.search-snippet mark {
    font-weight: bold;
    color: var(--title-color);
}

.blog-card .blog-content .divider.search-result {
    width: 100%;
    height: 6px;
}

.search-result .blog-card .blog-content {
    padding: 25px;
}

.search-result .blog-card .blog-content .blog-content-top {
    padding: 0;
}

.search-result .blog-card .blog-content .blog-content-top h4 {
    margin: 0;
}

.search-result .blog-card {
    grid-template-columns: 30% 70%;
    display: grid;
}

@media (max-width: 990px) {
    .search-result .blog-card {
        display:  block;
    }

    /* .blog-card .blog-img img {
        max-height: 100px;
        width: 100%;
    } */
}