/**
* 2007-2023 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2023 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/
.shttblogList {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    padding-top: 30px;
}

.shttblogList h1 {
    text-align: center;
}

.shttblogList__categories {
    display: inline-flex;
    justify-content: flex-start;
    gap: 50px;
    margin-bottom: 30px;
    overflow: auto;
    width: calc(100% - 120px);
    margin-left: auto;
    border-bottom: 1px solid #707070;
    position: relative;
}

.shttblogList__category {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 7px 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    border-bottom: 4px solid transparent;
}

.shttblogList__category--active {
    color: var(--primary);
    position: relative;
    border-color: var(--primary);
}

.shttblogList__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 30px;
}

.shttblogList:not(.shttblogList--filter) .shttblogList__list .shttblogMinia--highlighted,
.shttblogList:not(.shttblogList--filter) .shttblogList__list .shttblogMinia--top {
    display: none;
}

.shttblogMinia,
.elementor-widget .swiper-slide> :not(.swiper-lazy-preloader).shttblogMinia {
    display: block;
    width: 100%;
    max-width: 420px;
    padding-bottom: 5px !important;
}

.shttblogMinia--hidden,
.shttblogHighlighted--hidden,
.shttblogTops--hidden {
    display: none;
}

.shttblogMinia__imgs {
    width: 100%;
    aspect-ratio: 422/384;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.shttblogMinia__imgs::before {
    content: '';
    position: absolute;
    z-index: 1;
    left: 15px;
    top: 15px;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    border: 2px solid white;
    border-radius: 8px;
    opacity: 0;
    transition: opacity .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.shttblogMinia:hover .shttblogMinia__imgs::before {
    opacity: 1;
}

.shttblogMinia__imgs::after {
    content: '';
    position: absolute;
    z-index: 1;
    left: 50%;
    bottom: 0;
    translate: 0 50%;
    transform: translateX(-50%);
    width: calc(90% + 10px);
    aspect-ratio: 364/125;
    background-color: white;
    border-radius: 60px;
}

.shttblogMinia__img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    transition: scale .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.shttblogMinia:hover .shttblogMinia__img {
    scale: 1.1;
}

span.shttblogMinia__category {
    font-size: 14px;
    line-height: 19px;
    margin-bottom: 12px;
    display: block;
    color: black;
}

.shttblogMinia__title {
    font-family: 'sofia-pro', sans-serif !important;
    font-size: 16px !important;
    font-weight: 600;
    line-height: 21px;
    text-transform: uppercase;
    color: var(--secondary);
    margin: -38px auto 0 auto;
    width: calc(90% - 10px);
    position: relative;
    z-index: 1;
    text-align: center;
    min-height: 42px;
}

.shttblogMinia__description {
    margin-top: 15px;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 22px;
    color: black;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: color .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.shttblogMinia:hover .shttblogMinia__description {
    color: var(--secondary);
}

.shttblogMinia__link {
    font-size: 15px;
    line-height: 1em;
    text-transform: uppercase;
    text-decoration: underline;
    text-align: center;
    color: var(--secondary);
}

.shttblogMinia__link:hover {
    color: var(--primary);
}

.shttblog {
    padding-top: 30px;
    margin-bottom: 30px;
}

.shttblog__logo {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.shttblog__name {
    text-align: center;
    font-size: 40px;
    line-height: 51px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.shttblog__shortDescription {
    text-align: center;
    max-width: 690px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 74px;
}

.shttblog__content {
    width: 100%;
    max-width: 900px;
    margin: 35px auto 0 auto;
}

.shttblog__text {
    grid-column: 3/11;
}

.shttblog__description {
    font-size: 15px;
    line-height: 30px;
    margin-bottom: 32px;
}

.shttblog__contact {
    padding: 10px 12px;
    border: 1px solid black;
    color: black;
    font-size: 14px;
    transition: 300ms ease;
    display: inline-block;
}

.shttblog__contact:hover {
    color: white;
    background-color: black;
}

.shttblog__imgs {
    position: relative;
    width: 100%;
    aspect-ratio: 1/0.3;
}

.shttblog__imgs::after {
    content: '';
    position: absolute;
    z-index: 1;
    left: 50%;
    bottom: 0;
    translate: -50% 50%;
    width: 100%;
    max-width: 1100px;
    height: 120px;
    background-color: white;
    border-radius: 60px;
}

.shttblog__imgs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
}

.shttblog__sameCategoryRealTitle {
    font-size: 25px;
    line-height: 30px;
    max-width: 500px;
    text-align: left;

    margin-bottom: 50px;
    text-transform: uppercase;
}

.shttblogList__gmWrapper {
    height: 700px;
    width: 100%;
    transition: 400ms ease;
}

.shttblogList__gmWrapper--hidden {
    height: 0px;
}

.shttblogList__gm {
    height: 100%;
    width: 100%;
}

.shttblogList__stateMap {
    margin-bottom: 85px;
    width: 100%;
    padding-top: 8px;
}

.shttblogList__stateMapShow,
.shttblogList__stateMapHide {
    font-size: 14px;
    line-height: 19px;
    color: black;
    display: inline-block;
    cursor: pointer;
}

.shttblogList__gmWrapper--open+.shttblogList__stateMap .shttblogList__stateMapShow {
    display: none;
}

.shttblogList__gmWrapper--close+.shttblogList__stateMap .shttblogList__stateMapHide {
    display: none;
}

.shttblogList__gmWrapper--close {
    height: 0px !important;
}

p.shttblogMinia__date {
    color: #a2a2a2;
    font-size: 14px;
    text-align: center;
}

.shttblogTops h3 {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 26px;
}

.shttblogTops {
    background: #fafafa;
    box-shadow: 0 0 0 100vmax #fafafa;
    clip-path: inset(0 -100vmax);
    padding: 60px 0;
    margin-bottom: 130px;
}

.shttblogTops__articles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.shttblogTops h2.shttblogMinia__title {
    font-size: 20px;
    line-height: 25px;
}

.shttblogTops .shttblogMinia__description {
    display: none;
}

.shttblog__articleData {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

h1.shttblog__title {
    position: relative;
    z-index: 2;
    font-size: 30px;
    font-weight: 400;
    line-height: 38px;
    text-align: center;
    color: var(--secondary);
    margin-top: -38px;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 25px;
    width: 100%;
    max-width: 900px;
    border-bottom: 1px solid var(--lightblue);
}

p.shttblog__excerpt {
    margin-bottom: 20px;
}

span.shttblog__date {
    color: #a2a2a2;
    font-size: 16px;
    padding-top: 4px;
    text-align: center;
    display: block;
    position: relative;
    z-index: 2;
}

.shttblog__sameCategoryReals {
    grid-template-columns: repeat(3, 1fr);
}

.shttblog__sameCategoryReals h2.shttblogMinia__title {
    font-size: 20px;
    line-height: 25px;
    width: 85%;
}

.shttblog__sameCategoryReals .shttblogMinia__description {
    display: none;
}

.shttblog__sameCategoryRealWrapper {
    padding: 40px 0 60px 0;
    background: #fafafa;
    box-shadow: 0 0 0 100vmax #fafafa;
    clip-path: inset(0 -100vmax);
}

.shttblog__acticleContent {
    font-size: 16px;
    color: black;
}

.shttblog__acticleContent br+p {
    margin-bottom: 0px;
}

.shttblog__acticleContent a {
    color: black !important;
    text-decoration: underline !important;
}

.shttblog__acticleContent h3,
.shttblog__acticleContent h3 strong,
.shttblog__acticleContent h4,
.shttblog__acticleContent h4 strong {
    font-family: 'sofia-pro', sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
}

.shttblog__productsList {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.shttblogHighlighted {
    width: 100%;
    margin-bottom: 60px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-radius: 8px;
    overflow: hidden;
}

.shttblogHighlighted__imgs {
    width: 100%;
    height: 100%;
}

.shttblogHighlighted__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shttblogHighlighted__text {
    background-color: var(--secondary);
    color: white;
    padding: 60px;
}

.shttblogHighlighted__title {
    font-size: 30px;
    font-weight: 400;
    text-align: left !important;
    margin-top: 0;
    margin-bottom: 30px;
    color: white !important;
}

.shttblogHighlighted__separator {
    display: block;
    width: 100%;
    border-bottom: 1px solid white;
    margin-bottom: 40px;
}

.shttblogHighlighted__description {
    color: white;
    max-width: 450px;
    margin-bottom: 30px;
}

.shttblogHighlighted__link {
    text-transform: uppercase;
    text-decoration: underline;
}

.shttblogHighlighted__link:hover {
    color: var(--primary);
}

.shttLastArticles .swiper-pagination {
    bottom: 0 !important;
}

.shttLastArticles .swiper-pagination .swiper-pagination-bullet {
    background-color: #DEEAEE;
    opacity: 1;
}

.shttLastArticles .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #9EB9C3;
}

@media (min-width: 992px) {
    body#shtt-blog-article #wrapper {
        position: relative;
        z-index: 1;
    }

    body#shtt-blog-article #wrapper::before {
        content: "";
        width: 330px;
        height: 330px;
        background-image: url('/themes/sobreal/assets/img/background-corner.png');
        background-size: cover;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }
}

@media (max-width: 991px) {
    .shttblogList__list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }

    .shttblogMinia__title {
        font-size: 15px !important;
        line-height: 17px;
        margin-top: -30px;
        min-height: 34px;
    }

    .shttblogMinia__imgs::before {
        opacity: 1;
    }

    .shttblogMinia__description {
        font-size: 14px;
        line-height: 18px;
    }

    .shttblog__imgs {
        grid-column: 1/13;
    }

    .shttblog__text {
        grid-column: 1/13;
    }

    .shttblog__articleData {
        grid-column: 1/13;
        align-items: flex-start;
    }

    h1.shttblog__title {
        grid-column: 1/13;
    }

    p.shttblog__excerpt {
        grid-column: 1/13;
        grid-row: 3/4;
    }

    .shttblog__shortDescription {
        font-size: 16px;
        line-height: 22px;
    }

    h1.shttblog__name {
        font-size: 30px;
        line-height: 40px;
    }

    .shttblogTops__articles {
        grid-template-columns: 1fr 1fr;
    }

    .shttblogTops__articles .shttblogMinia:nth-child(3),
    .shttblog__sameCategoryReals .shttblogMinia:nth-child(3) {
        display: none;
    }
}

@media (max-width: 767px) {
    .shttblog__sameCategoryReals {
        grid-template-columns: repeat(1, 1fr);
    }

    .shttblogTops__articles {
        grid-template-columns: 1fr;
    }

    .shttblogTops__articles .shttblogMinia:nth-child(3),
    .shttblog__sameCategoryReals .shttblogMinia:nth-child(3) {
        display: block;
    }

    span.shttblogMinia__highlightIndication {
        color: black;
        margin-bottom: 10px;
        display: block;
        font-size: 16px;
        font-weight: bold;
        padding-top: 0px;
    }

    .shttblogList__list {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .shttblogList {
        padding-top: 0px;
    }

    .shttblogTops {
        padding: 16px 0px 40px 0px;
        margin-bottom: 40px;
    }

    .shttblog__acticleContent {
        font-size: 15px;
        color: black;
    }

    .shttblogHighlighted {
        grid-template-columns: 1fr;
    }

    .shttblogHighlighted__text {
        padding: 35px 40px;
    }

    .shttblogHighlighted__title {
        font-size: 24px !important;
        margin-bottom: 20px;
    }

    .shttblogHighlighted__separator {
        margin-bottom: 20px;
    }

    .shttblogHighlighted__description {
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .shttblog {
        padding-top: 0;
    }

    .shttblog__imgs {
        width: 100vw;
        margin-left: -15px;
    }

    .shttblog__imgs::after {
        height: 60px;
        border-radius: 30px;
    }

    .shttblog__imgs img {
        border-radius: 0px;
    }

    h1.shttblog__title {
        font-size: 24px;
        line-height: 30px;
        margin-top: -15px;
    }
}

@media (hover: none) and (pointer: coarse) {
    .shttblogList__categories {
        flex-wrap: nowrap;
        -ms-overflow-style: none;
        /* IE and Edge */
        scrollbar-width: none;
        /* Firefox */
    }

    .shttblogList__categories::-webkit-scrollbar {
        display: none;
    }
}