.button {
    padding: 21px 23px;
    font-size: 0.875rem;
    font-weight: 700;
    background-color: var(--secondary);
    text-transform: uppercase;
    border-radius: 29px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    transition: background-size 0.3s ease;
    isolation: isolate;
}

.button::before {
    content: "";
    top: 100%;
    left: 0;
    border-radius: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    opacity: 0;
    background-color: var(--primary);
    transition: all 0.2s ease-in-out;
}

.button:hover::before {
    top: 0;
    opacity: 1;
}

.button:hover {
    color: var(--white);
    font-weight: 700;
}

.index .container {
    max-width: calc(100% - 200px);
    width: 100%;
    max-width: 1440px;
}

.card {
    border-radius: 50px;
    box-shadow: 0px 16px 27px 0 rgba(0, 0, 0, 0.05);
    background-color: var(--white);
    transition: var(--transition);
}

.card:hover {
    box-shadow: 0px 16px 27px 0 rgba(0, 0, 0, 0.14);
    transform: scale(1.02);
}

@media (max-width: 1500px) {
    .index .container {
        max-width: calc(100% - 60px);
    }

    /* .main-banner {
        width: 100vw;
        height: 100vh;
    } */
}

@media (max-width: 992px) {
    .index .container {
        max-width: calc(100% - 40px);
        width: 100%;
        height: auto;
    }

    .card:hover {
        box-shadow: 0px 16px 27px 0 rgba(0, 0, 0, 0.05);
        transform: scale(1);
    }
}

/**********************************/
/************* HEADER *************/
/**********************************/

header {
    height: 165px;
    width: 100%;
    padding: 0;
    position: fixed;
    top: 0;
    z-index: 11;
}

header.open {
    z-index: 12;
    transition: none;
}

header::before {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--black);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    -webkit-transition: var(--transition);
}

header.schedule-open::before,
header.open::before {
    opacity: 0.8;
    pointer-events: auto;
    z-index: 1;
}

header .upper {
    display: flex;
    align-items: flex-start;
    background-color: transparent;
    position: relative;
    transition: var(--transition);
    height: 165px;
}

header.fixed .upper {
    background-color: #ffffff;
    box-shadow: 4px 6.9px 38px 0 rgba(0, 0, 0, 0.05);
}

header.fixed,
header.fixed .upper {
    height: 120px;
}

header .upper .logo {
    display: block;
    transition: margin 0.3s ease-in-out;
    padding-left: 40px;
}

header .upper .logo span img {
    position: relative;
    display: block;
    width: 100%;
    opacity: 1;
}

header .upper .left-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 2;
}

header.open .upper .left-wrapper {
    z-index: 0;
    opacity: 0;
}

header .upper .right-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 30px;
    margin: 0 40px 0 auto;
    height: fit-content;
    gap: 30px;
}

header.open .upper .right-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0 40px 0 auto;
    gap: 10px;
}

header.open .upper .right-wrapper {
    padding-right: 40px;
}

header.fixed .upper .right-wrapper .custom-select.isSelected .options-wrapper {
    background-color: var(--white);
}

header .right-wrapper input {
    line-height: 1;
    color: var(--black);
    border: none;
    outline: none;
    background-color: var(--transparent);
    width: 306px;
    max-width: 306px;
    font-size: 0.875rem;
    font-weight: 300;
    transition: var(--transition);
    opacity: 1;
    padding-right: 20px;
    border-radius: 0;
}

header .right-wrapper button {
    position: relative;
    display: inline-block;
    width: 23px;
    height: 23px;
    transition: var(--transition);
    z-index: 2;
    background: none;
    border: none;
}

header.open .right-wrapper button {
    z-index: 0;
}

header .right-wrapper button::before,
header .right-wrapper .phone span::before {
    overflow: visible;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    transition: var(--transition);
    -webkit-mask-image: url("/assets/img/general/search.svg");
    mask-image: url("/assets/img/general/search.svg");
    background-color: var(--black);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

header .right-wrapper .search-open button {
    margin-left: -15px;
    margin-bottom: 0;
}

header .right-wrapper .Search-form {
    text-align: center;
    display: flex;
    align-items: center;
    padding: 17px 30px;
    background-color: var(--white);
    border-radius: 29px;
}

header.fixed .right-wrapper .Search-form {
    z-index: 0;
    opacity: 1;
    background-color: #f7f7f7;
}

header .logo span {
    display: block;
    width: 157px;
    /* height: 109px; */
    transition: var(--transition);
    margin-top: 25px;
    /* margin-top: 30px; */
}



header .letters {
    opacity: 1;
    height: 100%;
    max-height: 100%;
}

header.fixed .letters {
    opacity: 0;
    max-height: 0;
}

/* header.fixed .logo span {
    transform: scale(1.5);
    top: -10px;
    position: relative;
    width: 120px;
    height: auto;
    margin-top: 15px;
} */

header svg {
    position: relative;
    margin: auto;
    object-fit: contain;
    transition: var(--transition);
    width: 100%;
    height: 100%;
}

header.fixed svg {
    top: 0px;
}

header .cls-3 {
    transition: var(--transition);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

header .right-wrapper .phone span {
    display: inline-block;
    min-width: 23px;
    min-height: 23px;
    position: relative;
}

header .right-wrapper .phone span::before {
    -webkit-mask-image: url("/assets/img/general/phone.svg");
    mask-image: url("/assets/img/general/phone.svg");
    transition: var(--transition);
}

header .right-wrapper .phone:hover span::before {
    transform: rotate(15deg);
}

header .upper .right-wrapper .menu-toggle {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 31px;
    height: 36px;
    padding-top: 0px;
    cursor: pointer;
    pointer-events: all;
}

header .upper .right-wrapper .menu-toggle span {
    display: block;
    position: relative;
    width: 31px;
    height: 3px;
    background-color: var(--black);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    z-index: 1;
    pointer-events: none;
    border-radius: 1.5px;
}

header .upper .right-wrapper .menu-toggle:hover span:last-of-type {
    width: 70%;
    margin-left: 30%;
}

header.open .upper .right-wrapper .menu-toggle:hover span:last-of-type {
    width: 100%;
    margin-left: 0;
}

header .upper .right-wrapper .menu-toggle span:first-child {
    transform: translateY(7px);
}

header .upper .right-wrapper .menu-toggle span:last-child {
    transform: translateY(14px);
    top: -1px;
}

header.open .upper .right-wrapper .menu-toggle span:first-child {
    transform: translateY(11px) rotate(45deg);
}

header.open .upper .right-wrapper .menu-toggle span:last-child {
    transform: translateY(9px) rotate(-45deg);
}

header.fixed .menu .menu-section .menu-toggle span,
header.fixed .upper .right-wrapper .menu-toggle span {
    background-color: var(--black);
}

header .upper .right-wrapper .button::after {
    right: 22px;
    top: 0;
    bottom: 0;
    margin: auto;
}

/**********************************************/
/******************* MENU *********************/
/**********************************************/

header .menu {
    position: fixed;
    display: flex;
    height: 100vh;
    max-width: 100%;
    background-color: white;
    top: 0;
    right: 0;
    flex-direction: column;
    transform: translateY(100%);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    z-index: 1;
    max-width: 600px;
    min-width: 540px;
    opacity: 0;
}

header.open .menu {
    transform: translateY(0%);
    opacity: 1;
}

header .menu .menu-section {
    height: 100%;
    overflow: auto;
    padding: 35px 60px;
}

header .menu .menu-section>svg {
    position: relative;
    display: block;
    margin: auto;
    width: 157px;
    height: 109px;
}

header .menu .menu-section .letters {
    opacity: 1;
    height: 100%;
    max-height: auto;
}

header .menu .menu-section>div:first-of-type {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    gap: 10px;
}

header .menu .menu-section .menu-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 40px;
}

header .menu .menu-section .menu-toggle {
    display: block;
    width: 26px;
    height: 25px;
    margin: 0;
    transition: var(--transition);
}

header.open .upper .right-wrapper .menu-toggle {
    z-index: 2;
    top: -5px;
    margin-right: -24px;
}

header .menu .menu-section .menu-toggle span {
    background-color: var(--primary);
}

header .menu .menu-section .menu-toggle span:first-child {
    transform: rotate(45deg);
}

header .menu .menu-section .menu-toggle span:last-child {
    transform: rotate(-45deg);
}

header .menu .menu-section .menu-toggle:hover span {
    background-color: var(--black);
}

header .menu .menu-section .menu-header>a:first-of-type {
    font-size: 1.125rem;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    gap: 15px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.5;
    letter-spacing: -0.45px;
    text-transform: uppercase;
    transition: var(--transition);
    opacity: 0;
}

header.open .menu .menu-section .menu-header>a:first-of-type {
    opacity: 1;
}

header .menu .menu-section .menu-header>a:first-of-type:hover {
    color: var(--black);
}

/********** SEARCH FORM **********/

header .menu .form,
header .menu form {
    position: relative;
    width: 100%;
    background-color: var(--transparent);
    padding-inline: 0;
}

header .menu .form>input,
header .menu form>input {
    font-size: 0.875rem;
    color: var(--black);
    line-height: 1;
    padding: 23px 33px;
    padding-right: 52px;
    background-color: #f7f7f7;
    opacity: 0.7;
    border: none;
    width: 100%;
    font-weight: 300;
    border-radius: 50px;
}

header .menu .form label {
    display: inline-block;
    width: 0;
    height: 0;
    font-size: 0;
}

header .menu .form a[submit],
header .menu form a[submit] {
    position: absolute;
    height: 21px;
    width: 21px;
    top: 0;
    right: 32px;
    bottom: 0;
    font-size: 0;
    margin: auto;
}

header .menu .form a[submit]::before,
header .menu form a[submit]::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0px;
    margin: auto;
    margin-right: 0;
    width: 21px;
    height: 21px;
    -webkit-mask-image: url(/assets/img/general/search.svg);
    mask-image: url(/assets/img/general/search.svg);
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    background-color: var(--black);
}

.form .honey-input,
form .honey-input {
    position: fixed;
    top: -100%;
    left: -100%;
}

header .menu .menu-section>ul {
    margin-top: 120px;
}

header .menu .menu-section>ul>li>a {
    font-size: 1.875rem;
    color: var(--primary);
    font-weight: bold;
    letter-spacing: -0.26px;
    max-width: 440px;
    position: relative;
    pointer-events: auto;
}

header .menu .menu-section>ul li.sub ul li a {
    font-size: 1.125rem;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-align: left;
    color: var(--primary);
    margin: 0;
}

header .menu .menu-section>ul li.sub ul li a:hover {
    color: var(--secondary);
}

header .menu ul {
    list-style: none;
    padding: 0;
}

header .menu .menu-section ul li {
    transition: var(--transition);
    overflow: hidden;
    cursor: pointer;
    line-height: 1.56;
}

header .menu .menu-section > ul > li{
    margin-bottom: 15px;
}

header .menu .menu-section ul li ul li:has(.subsub):hover .open-submenu span,
header .menu .menu-section ul li.sub:hover>a+.open-menu span,
header .menu .menu-section ul li.sub li.subsub:hover>a+.open-submenu span,
header .menu ul li.sub.active>.open-menu span,
header .menu .menu-section>ul li.sub ul li.subsub.active .open-submenu span,
header .menu .menu-section>ul>li ul li:has(.subsub):hover {
    background-color: var(--secondary);
}

header .menu .menu-section ul li.sub:hover>a,
header .menu .menu-section ul li.sub li.subsub:hover>a,
header .menu ul li.sub.active>a,
header .menu ul li.sub.active>.open-menu span,
header .menu ul li.subsub.active a.selected,
header .menu .menu-section>ul li.sub ul li.subsub.active>a,
header .menu .menu-section>ul>li:hover a,
header .menu .menu-section>ul>li:hover a+div span {
    color: var(--secondary);
}

header .menu ul li.subsub,
header .menu ul li.sub {
    position: relative;
    transition: var(--transition);
}

header .menu .menu-section>ul>li:last-of-type {
    margin-bottom: 0;
}

header .menu ul li a{
    padding-right: 15px;
}

header .menu .menu-section>ul>li>ul,
header .menu .menu-section>ul>li>a {
    margin: 0;
}

header .menu .menu-section>ul>li:hover a+div span {
    background-color: var(--black);
}

header .menu ul li>ul {
    transition: var(--transition);
    max-height: 0;
    opacity: 0;
    gap: 5px;
    display: flex;
    flex-direction: column;
}

header .menu ul li.subsub>ul:first-of-type {
    padding-top: 0;
}

header .menu ul li.subsub.active>ul:first-of-type,
header .menu ul li.sub.active>ul:first-of-type {
    padding-top: 20px;
    opacity: 1;
}

header .menu ul li.subsub.active>ul:first-of-type {
    padding-top: 5px;
    margin-bottom: 5px;
}

header .menu ul li.subsub.active>ul,
header .menu ul li.sub.active>ul {
    max-height: 700px;
    margin-bottom: 20px;
    padding-right: 0;
}

header .menu ul li.sub.active>ul{
    margin-bottom: 10px;
}

header .menu ul li.sub .open-submenu,
header .menu ul li.sub .open-menu {
    position: absolute;
    right: 0;
    height: 17px;
    width: 17px;
    display: block;
    z-index: 0;
    top: 18px;
}

header .menu ul li.sub .open-submenu {
    width: 12px;
    top: 3px;
}

header .menu ul li.sub .open-submenu span,
header .menu ul li.sub .open-menu span {
    height: 3px;
    width: 17px;
    background-color: var(--primary);
    display: flex;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}

header .menu ul li.sub .open-submenu span {
    width: 12px;
    height: 2px;
}

header .menu ul li.sub .open-submenu span:last-of-type,
header .menu ul li.sub .open-menu span:last-of-type {
    transform: rotate(90deg);
    transition: var(--transition);
}

header .menu ul li.sub .open-submenu span:last-of-type,
header .menu ul li.sub.active .open-menu span:last-of-type {
    transform: rotate(0deg);
}

header .menu ul li.subsub .open-submenu span:last-of-type {
    transform: rotate(90deg);
}

header .menu ul li.subsub .open-submenu span:last-of-type {
    transform: rotate(90deg);
}

header .menu ul li.subsub.active .open-submenu span:last-of-type {
    transform: rotate(0deg);
}

header .menu ul li ul li {
    color: var(--black);
    padding-left: 20px;
    line-height: 1;
}

header .menu ul li ul li:hover a {
    color: var(--secondary);
}

header.open .custom-select {
    z-index: 0;
}

header .mobile-bar {
    display: none;
}

@media (max-width: 992px) {
    .button:hover::before {
        top: 100px;
        opacity: unset;
    }

    header .right-wrapper input {
        width: 0;
        max-width: 0;
        padding-inline: 0;
        border-bottom: 1px solid var(--black);
    }

    header .right-wrapper .Search-form.open input {
        width: 100px;
        max-width: 100px;
    }

    header .right-wrapper .Search-form {
        padding-inline: 0;
        cursor: pointer;
        background-color: var(--transparent);
    }

    header.fixed .right-wrapper .Search-form {
        background-color: var(--white);
    }

    header .upper .right-wrapper .menu-toggle:hover span:last-of-type {
        width: 100%;
        margin-left: 0;
    }

    header .right-wrapper .phone:hover span::before {
        transform: none;
    }
}

@media (max-width: 768px) {
    header.fixed,
    header.fixed .upper {
        height: 65px;
    }
    header .mobile-bar {
        display: block;
        padding: 10px;
        background-color: var(--secondary);
        width: 100%;
        text-align: center;
    }

    header .mobile-bar a {
        color: var(--white);
        font-size: 0.923rem;
    }

    header .logo span {
        margin-top: 0;
    }

    header .right-wrapper .phone span,
    header .right-wrapper button {
        height: 20px;
        min-height: 20px;
        width: 20px;
        min-width: 20px;
    }

    header .upper .right-wrapper .menu-toggle {
        justify-content: start;
        margin-top: -4px;
    }

    header .upper .left-wrapper a span {
        width: 114px;
        height: 80px;
    }

    header .upper .right-wrapper {
        justify-content: flex-end;
        gap: 20px;
    }

    header .right-wrapper .Search-form {
        background-color: var(--transparent);
        justify-content: flex-end;
        padding: 0;
        width: 100%;
        pointer-events: auto;
    }

    header .right-wrapper input {
        width: 0;
        max-width: 0;
    }

    header:has(.right-wrapper .Search-form.open) .left-wrapper{
        display: none;
    }

    header .right-wrapper .Search-form.open input {
        width: 100%;
        max-width: 80%;
        border-bottom: 1px solid var(--black);
    }

    header .right-wrapper .Search-form input::placeholder {
        display: none;
        max-width: 0;
        width: 0;
    }

    header.open .upper .right-wrapper .menu-toggle {
        z-index: 2;
        top: -13px;
        margin-right: -53px;
    }

    header .menu .menu-section>ul>li>a {
        line-height: 1.25;
    }

    header .menu .menu-section>ul li.sub ul li a{
        font-size: 16px;
    }
    header .menu .menu-section>ul li.subsub ul li a{
        font-size: 14px;
    }
}

@media (max-width: 500px) {
    header .menu .select-wrapper.mobile {
        display: block;
    }

    header .menu .form a[submit],
    header .menu form a[submit] {
        right: 20px;
        height: 17px;
        width: 17px;
    }

    header .menu .form a[submit]::before,
    header .menu form a[submit]::before {
        height: 17px;
        width: 17px;
    }
}

@media (max-width: 1200px) {
    header .upper>div.header-menu {
        display: none;
    }
}

@media (max-width: 768px) {

    header .upper,
    header {
        height: 100px;
    }

    header .menu {
        width: 100vw;
        max-width: unset;
        min-width: unset;
    }

    header .upper .logo {
        padding: 15px 0 15px 20px;
        transition: var(--transition);
    }

    header.fixed svg {
        top: 10px;
    }

    header.fixed .upper .logo {
        padding-top: 0;
    }

    header .upper .logo span {
        width: 96px;
        height: 35px;
    }

    header .upper .right-wrapper {
        width: 100%;
        margin-right: 20px;
        padding-top: 22px;
        align-items: start;
    }

    header.open .upper .left-wrapper .logo {
        margin-left: unset;
        padding-right: 0;
        position: absolute;
        right: 20px;
    }

    header .upper .right-wrapper .button {
        padding: 15px 38px 14px 14px;
        display: none;
    }

    /*   header.open .upper .right-wrapper {
        display: none;
    } */

    header .upper .right-wrapper .button::after {
        right: 20px;
        height: 10px;
        width: 10px;
    }

    header .menu .menu-section {
        padding: 40px 30px;
    }

    header .menu .form>input,
    header .menu form>input {
        padding: 17px 40px 17px 25px;
    }

    header .menu .select-wrapper.mobile .custom-select .placeholder {
        padding: 18px 0 18px 55px;
    }

    header .upper .right-wrapper .select-wrapper .custom-select .placeholder {
        padding: 11px 0 10.5px 55px;
    }

    header .upper .right-wrapper .custom-select.isSelected .options-wrapper {
        margin-top: -10px;
    }

    header .upper .right-wrapper .custom-select:not(.has-reset) .placeholder::before {
        width: 4px;
    }

    header .menu ul li.sub .open-menu {
        top: 13px;
    }
}

.template hr{
    border: none;
    border-top: 2px solid rgba(38, 128, 187, 0.2);
    background: none;
}

/*******************************/
/*********** FOOTER ************/
/*******************************/

footer {
    transform: translate3d(0px, 100px, 0px);
    background-color: var(--primary);
    border-radius: 50px;
    padding: 95px 100px 57px 100px;
    color: var(--white);
    margin: 95px auto 60px;
    max-width: 1280px;
    width: calc(100% - 120px);
}

.index footer {
    margin: 150px auto 60px;
}

footer .newsletter {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 80px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

footer .newsletter span {
    font-family: var(--font-family-2);
    font-size: 3.125rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1.25px;
    color: var(--white);
    text-align: center;
}

footer .newsletter p {
    font-family: var(--font-family);
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: normal;
    color: var(--white);
    margin: 30px auto 40px;
    text-align: center;
    max-width: 650px;
}

footer .newsletter .button {
    overflow: visible;
    padding: 27px 30px;
    border-radius: 50px;
}

footer .newsletter .button::before {
    top: 0;
    bottom: 0;
    right: 0;
    border-radius: 50px;
    display: block;
    margin: auto;
    background-color: var(--secondary);
    transition: var(--transition);
}

footer .newsletter .button:hover::before {
    transform: scale(1.05);
}

footer .contactos {
    display: flex;
    padding: 53px 0 70px 0;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

footer .contactos:has(.apoios) {
    padding-bottom: 40px ;
}

footer .contactos>div>div {
    width: 25%;
    max-width: 25%;
}

footer .contactos>div>div>p {
    font-weight: 800;
    font-size: 1.5rem;
}

footer .contactos>div>div>p:first-of-type{
    margin-top: 0;
    text-align: left;
}

footer .contactos>div>div>p+p {
    font-weight: 400;
    font-size: 1.125rem;
    margin-bottom: 2.2rem;
    text-align: left;
    line-height: 1.67;
}

footer .contactos>div>div>p+p a {
    display: inline-block;
    font-weight: bold;
    font-size: 1.125rem;
    color: var(--secondary);
}


footer .contactos>div>div>p+p a:hover {
    opacity: 0.7;
}

footer .contactos>div:first-of-type p+a {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.5;
    letter-spacing: -0.24px;
    text-align: left;
    color: var(--white);
}

footer .contactos a {
    color: var(--white);
    font-weight: 300;
}

footer .contactos>div:first-of-type>span {
    font-family: var(--font-family-2);
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.7px;
}

footer .contactos .social-box {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

footer .contactos .social-box a {
    height: 100%;
    width: 100%;
    max-width: 65px;
    max-height: 65px;
    border: 1px solid #414141;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: border 0.3s ease-in-out;
}

footer .contactos .social-box a i {
    width: 25px;
    height: 25px;
    font-size: 1.438rem;
}

footer .contactos .social-box a:hover {
    border: 1px solid #ffffff;
}

footer .contactos>div:first-of-type {
    display: flex;
    gap: 55px;
    width: 100%;
    font-family: var(--font-family);
    font-size: 1.125rem;
}

footer .contactos>div:first-of-type ul {
    padding: 0;
}

footer .contactos>div:first-of-type ul li {
    line-height: 1.67;
}

footer .contactos>div:first-of-type ul li .phone,
footer .contactos>div:first-of-type ul li .email {
    margin-bottom: 0;
}

footer .contactos>div:first-of-type ul li .email {
    margin-top: 30px;
}

footer .contactos>div:first-of-type ul li .phone+a,
footer .contactos>div:first-of-type ul li .email+a {
    color: var(--secondary);
    font-weight: bold;
    margin: 0;
    font-size: 1.125rem;
}

footer .contactos>div:first-of-type ul li .phone+a:hover,
footer .contactos>div:first-of-type ul li .email+a:hover {
    opacity: 0.5;
}

footer .contactos .schedule ul li {
    display: flex;
    gap: 45px;
    justify-content: space-between;
}

footer .contactos>div:first-of-type span p {
    margin-top: 0;
    margin-bottom: 0px;
}

footer .contactos>div:first-of-type span p:last-of-type {
    margin-top: 20px;
    font-weight: bold;
    line-height: 2.5;
}

footer .contactos>div:first-of-type span p:has(small) {
    margin-top: -3px;
}

footer .contactos>div:first-of-type span p small {
    font-size: 0.75rem;
    color: #858585;
}

footer .contactos>div:first-of-type span a {
    display: block;
    margin-bottom: 12px;
}

footer .contactos>div:first-of-type span a.mail {
    position: relative;
    border-bottom: 1px solid currentColor;
    display: inline;
    padding-bottom: 0px;
}

footer .contactos>div:first-of-type span a.mail:hover {
    padding-bottom: 5px;
    opacity: 1;
}

footer .contactos>div.apoios p{
    font-size: 18px;
    font-weight: 300;
    line-height: 1.67;
    letter-spacing: normal;
    text-align: left;
    color: #f7f7f7;
    margin: 0;
}

footer .contactos>div.apoios .apoios-logos{
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 20px;
    width: 100%;
    max-width: 100%;
}

footer .contactos>div.apoios .apoios-logos img{
    width: auto;
    height: 60px;
    border-radius: 10px;
    transition: var(--transition);
}

footer .contactos>div.apoios .apoios-logos a:hover img{
    transform: scale(1.05);
}

footer .under-footer {
    padding: 55px 0 0;
    font-size: 1rem;
    display: flex;
    gap: 50px;
    justify-content: space-between;
}

footer .under-footer>.under-links {
    display: flex;
    justify-content: flex-start;
    gap: 55px;
    flex-wrap: wrap;
}

footer .under-footer>.under-links span:last-of-type {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

footer .under-footer>.under-links span:last-of-type span {
    display: flex;
    gap: 5px;
}

footer .under-footer>.under-links span a {
    color: var(--white);
    font-weight: 300;
}

footer .under-footer>.under-links span a:hover {
    color: var(--secondary);
}

footer .socials {
    display: flex;
    gap: 27px;
    margin-top: -3px;
}

footer .socials i {
    font-size: 1.313rem;
}

footer .under-social a {
    color: var(--white);
}

footer a:hover {
    color: var(--secondary);
}

footer .fab.fa-facebook-f {
    height: 17px;
    width: 8px;
    display: block;
}

footer .under-footer .under-logos {
    justify-content: center;
    gap: 30px;
}

.location .tns-controls {
    display: none;
}

.in {
    opacity: 1;
}
  
.out {
    opacity: 0;
}

@media (max-width: 1400px) {
    footer .contactos>div:first-of-type {
        flex-wrap: wrap;
        gap: 70px;
        justify-content: center;
    }

    footer .contactos>div:first-of-type>div {
        width: 100%;
        max-width: calc(50% - 50px);
    }
}

footer .contactos>div:first-of-type {
    justify-content: space-between;
}

@media (max-width: 992px) {
    footer {
        transform: translate3d(0px, 50px, 0px);
        padding: 60px 60px 57px 60px;
        color: var(--white);
        margin: 0;
        margin-top: 100px;
        width: 100%;
        max-width: 100%;
    }

    footer .newsletter .button:hover::before {
        transform: scale(1);
    }

    footer .contactos>div:first-of-type ul li .phone+a:hover,
    footer .contactos>div:first-of-type ul li .email+a:hover {
        opacity: 1;
    }

    footer .contactos>div {
        margin: 0 auto;
    }

    footer a:hover {
        color: var(--white);
    }

    footer .contactos>div:first-of-type a:hover {
        opacity: 1;
    }

    footer .under-footer>.under-links span a:hover {
        opacity: 1;
        color: var(--white);
    }
}

@media (max-width: 768px) {
    footer {
        padding: 60px 20px 57px;
        margin: 150px 20px 40px 20px;
        border-radius: 30px;
        width: calc(100% - 40px);
    }

    footer .newsletter span{
        font-size: 28px;
    }

    footer .contactos>div:first-of-type {
        gap: 35px;
    }

    footer .contactos>div:first-of-type>div {
        max-width: calc(50% - 35px);
    }
    footer .contactos>div>div>p+p,
    footer .contactos>div>div>p:first-of-type{
        text-align: center;
    }

    .index footer {
        margin: 75px 20px 40px 20px;
    }

    footer .newsletter p {
        font-size: 1.125rem;
        line-height: 1.3;
        margin: 20px auto 30px;
    }

    footer .newsletter {
        padding-bottom: 40px;
    }

    footer .newsletter .button {
        padding: 13px 20px;
    }

    footer .contactos {
        padding: 40px 0;
        gap: 60px;
    }

    footer .contactos>div:first-of-type>span {
        font-size: 1.375rem;
        text-align: center;
        width: 100%;
        display: block;
    }

    

    footer .contactos .social-box {
        gap: 15px;
    }

    footer .contactos .social-box a {
        max-width: 55px;
        max-height: 55px;
    }

    footer .under-footer{
        flex-wrap: wrap;
        justify-content: center;
    }

    footer .under-footer>.under-links {
        justify-content: center;
        gap: 30px;
        order: 2;
    }

    footer .under-footer>.under-links > span{
        flex-direction: column;
        align-items: center;
    }


}

@media (max-width: 600px) {
    footer .contactos>div:first-of-type {
        flex-direction: column;
        align-items: center;
    }

    footer .contactos>div:first-of-type>div {
        max-width: 100%;
        justify-content: center;
    }

    footer .contactos>div:first-of-type ul li,
    footer .contactos>div>div>p {
        text-align: center;
    }

    footer .contactos .schedule ul li {
        justify-content: space-between;
        max-width: calc(100% - 175px);
        margin: 0 auto;
    }

    footer .contactos>div.apoios .apoios-logos{
        gap: 10px;
        flex-wrap: nowrap;
        justify-content: space-between; /* distribui as imagens */
        align-items: center;
        width: 100%; /* importante para limitar à largura do container */
        box-sizing: border-box;
    }

    footer .contactos>div.apoios .apoios-logos > * {
        flex: 1 1 0;
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }

    footer .contactos > div.apoios .apoios-logos img {
    max-height: 40px;
    object-fit: contain;            /* mantém proporção, sem corte */
    }
}

@media (max-width: 500px) {
    footer .contactos .schedule ul li {
        max-width: 100%;
        
    }
    
}

/**************************/
/********LOCATION**********/
/**************************/

.location {
    margin-top: 172px;
}

.location h2 {
    font-size: 3.75rem;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -1.5px;
    text-align: center;
    color: var(--primary);
}

.location p {
    font-size: 1.625rem;
    max-width: 845px;
    font-weight: 300;
    line-height: 1.38;
    text-align: center;
    color: var(--black);
    margin: 57px auto 0;
}

.location .slide .slide-container {
    display: flex;
    justify-content: center;
    gap: 115px;
    width: 100%;
    padding-inline: 30px;
    max-width: 1100px;
    margin-top: 100px;
    margin-inline: auto;
}

.location .slide .slide-container .text {
    width: 100%;
    max-width: calc(44.5% - 57.5px);
}

.location .slide .slide-container .img {
    width: 100%;
    max-width: calc(55.5% - 57.5px);
}

.location .slide .slide-container .img img {
    width: 100%;
    height: auto;
    border-radius: 475px;
}

.location .text h3 {
    font-size: 2.813rem;
    font-weight: 900;
    line-height: 1.44;
    margin-bottom: 0;
    letter-spacing: -1.13px;
    color: var(--primary);
    margin-top: 20px;
}

.location .text p {
    font-size: 1.375rem;
    font-weight: 300;
    line-height: 1.45;
    margin-top: 0.5rem;
    text-align: left;
    color: var(--black);
}

.location .text a {
    font-size: 0.875rem;
    font-weight: bold;
    line-height: 1;
    display: block;
    margin-top: 1.3rem;
    text-transform: uppercase;
    color: var(--secondary);
}

.location .text p.location {
    font-weight: 600;
    color: var(--primary);
    margin-top: 3rem;
}

.location .text:has( a + *) a {
    margin-bottom: 40px;
}

.location .text p strong{
    font-weight: 600;
}

.location .text p small{
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5;
}

.location .text p:has( > small){
    line-height: 1;
}

.location .text span {
    display: block;
    margin-top: 2.55rem;
    font-size: 1rem;
    font-weight: 300;
}

.location .nav {
    margin: 50px auto 0;
    display: flex;
    padding: 5px;
    border-radius: 40px;
    width: fit-content;
    gap: 20px;

    background-color: #f0f0f0;
    cursor: pointer;
}

.location .nav .button {
    width: 100%;
    transition: var(--transition);
    color: var(--primary);
    padding: 26px 65px;
    border-radius: 35px;
    background-color: #f0f0f0;
}

.location .nav .button::before {
    background-color: var(--transparent);
}

.location .nav .tns-nav-active .button {
    width: 100%;
    color: var(--white);
    background-color: var(--secondary);
    padding: 26px 65px;
    border-radius: 35px;
}

@media (max-width: 992px) {
    .location {
        width: 100%;
        max-width: calc(100% - 40px);
        margin-inline: auto;
        margin-top: 75px;
    }

    .location .slide .slide-container {
        flex-direction: column;
    }

    .location .slide .slide-container .text {
        width: 100%;
        margin-inline: auto;
        max-width: 100%;
    }

    .location p {
        margin-top: 30px;
    }

    .text-image .button:hover::before {
        transform: none;
    }

    .location .slide .slide-container {
        margin-top: 50px;
        gap: 50px;
    }

    .location .nav .button,
    .location .nav .tns-nav-active .button {
        padding: 20px 30px;
    }
    .location .slide .slide-container .img {
        margin: auto;
    }
}

@media (max-width: 768px) {
    .location h2 {
        font-size: 30px;
    }
    .location p {
    font-size: 1.575rem;
}

    .location .text h3 {
        font-size: 2.5rem;
        margin-top: 0;
    }

    .location .slide .slide-container{
        margin-top: 20px;
    }

    .location .text:has( a + *) a {
        margin-bottom: 14px;
    }
}

@media (max-width: 767px) {
    .location .slide .slide-container .img {
        width: 100%;
        margin-inline: auto;
        max-width: 100%;
    }
}

/**************************/
/******TESTEMONIAL*********/
/**************************/

.testemonial {
    margin-top: 150px;
    width: 100%;
    max-width: 1260px;
    padding-inline: 30px;
}

.testemonial .tns-horizontal.tns-subpixel>.tns-item {
    display: inline-flex;
}

.testemonial .slider .slide-container {
    padding: 0;
    display: flex;
    gap: 106px;
    justify-content: center;
    align-items: start;
    width: 100%;
    height: auto;
}

.testemonial .slide .img {
    width: 40%;
    max-width: 218px;
    position: relative;
    margin-left: -22px;
}

.testemonial .slide .text {
    width: 65%;
    max-width: calc(65% - 53px);
}

.testemonial .slide .img img {
    width: 100%;
    height: 100%;
    border-radius: 475px;
    position: relative;
    top: 22px;
    left: 22px;
}

.testemonial .slide .img::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 50%;
    margin: auto;
    overflow: visible;
    background-color: #beddef;
}

.testemonial .text .rank {
    display: flex;
    align-items: center;
    gap: 5px;
}

.testemonial .text .rank span {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    color: var(--primary);
}


.testemonial .text .rank span:last-of-type {
    width: 90px; /* 5 estrelas x 18px cada = 90px */
    height: 18px;
    position: relative;
    display: block;

    background-color: #f7f7f7;
    
    mask-image: url(/assets/img/general/start.svg);
    -webkit-mask-image: url(/assets/img/general/start.svg);
    
    mask-repeat: repeat;
    -webkit-mask-repeat: repeat;
    
    mask-size: 18px 18px;          /* cada estrela tem 18px */
    -webkit-mask-size: 18px 18px;  /* cada estrela tem 18px */
}

/* camada preenchida */
.testemonial .text .rank span:last-of-type::before {
    content: "";
    position: absolute;
    display: block;
    width: var(--fill, 0%);
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--secondary);

    mask-image: url(/assets/img/general/start.svg);
    -webkit-mask-image: url(/assets/img/general/start.svg);
    
    mask-repeat: repeat;
    -webkit-mask-repeat: repeat;
    
    mask-size: 18px 18px;
    -webkit-mask-size: 18px 18px;
    
    transition: width 0.3s ease;
}

.testemonial .text p {
    font-size: 1.875rem;
    font-weight: 300;
    font-stretch: normal;
    margin-bottom: 0;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: left;
    color: #1a1a1a;
}

.testemonial .text p+span {
    font-size: 1.35rem;
    display: block;
    margin-top: 1.1rem;
    font-weight: bold;
    line-height: 1.42;
    color: var(--primary);
}

.testemonial .text p:last-of-type {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.5;
    margin-top: 0.1rem;
    text-align: left;
    color: var(--secondary);
}

.testemonial .arrows {
    position: absolute;
    top: 110px;
    left: 0;
    right: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    width: 100%;
    max-width: calc(100% - 40px);
    cursor: pointer;
}

.testemonial .arrows .prev,
.testemonial .arrows .next {
    width: 35px;
    height: 67px;
    z-index: 1;
    position: relative;
    display: block;
}

.testemonial .arrows .prev::before,
.testemonial .arrows .next::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* margin: auto; */
    transition: var(--transition);
    width: 100%;
    height: 100%;
    mask-image: url(/assets/img/general/slider-arrow.svg);
    -webkit-mask-image: url(/assets/img/general/slider-arrow.svg);
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    background-color: #beddef;
}

.testemonial .arrows .next::before {
    transform: rotate(180deg);
    top: -5px;
}

.testemonial .arrows .prev:hover::before,
.testemonial .arrows .next:hover::before {
    transform: translatex(-5px);
}

.testemonial .arrows .next:hover::before {
    transform: rotate(180deg) translateX(-5px);
}

@media (max-width: 1400px) {
    .testemonial .slider .slide-container {
        max-width: calc(100% - 70px);
        margin-inline: auto;
        gap: 56px;
    }
}

@media (max-width: 992px) {

    .testemonial .slide .img,
    .testemonial .slide .text {
        width: 100%;
        max-width: calc(100% - 100px);
    }

    .testemonial .slider .slide-container {
        flex-direction: column;
        align-items: center;
    }

    .testemonial .arrows .prev:hover::before,
    .testemonial .arrows .next:hover::before {
        transform: none;
    }

    .testemonial .arrows .next:hover::before {
        transform: rotate(180deg);
    }
}

@media (max-width: 768px) {
    .testemonial {
        margin-top: 50px;
        padding-inline: 15px;
    }

    .testemonial .slide .img{
        max-width:130px
    }
    .testemonial .slide .img::before{
        border-radius: 475px;
    }

    .testemonial .slide .text {
        width: 100%;
        max-width: calc(100% - 20px);
        text-align: center;
    }

    .testemonial .text .rank{
        justify-content: center;
    }

    .testemonial .arrows {
        top: 65px;
        bottom: auto;
        width: 100%;
        max-width: calc(100% - 60px);
    }

    .testemonial .arrows .prev,
    .testemonial .arrows .next {
        width: 18px;
        height: 38px;
    }

    .testemonial .slider .slide-container {
        max-width: 100%;
    }

    .testemonial .text p {
        font-size: 1.3rem;
        text-align: center;
    }
    .testemonial .text p:last-of-type{
        text-align: center;
    }
}

/**************************/
/*****SERVICES SECTION*****/
/**************************/

.vet-domicile .services-container {
    display: flex;
    flex-direction: column;
    max-width: 1400px;
    margin-inline: auto;
}

.vet-domicile .content .services-container h2 {
    font-size: 45px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1.13px;
    text-align: center;
    color: var(--primary);
    margin-top: 90px;
    margin-bottom: 0;
}

.vet-domicile .services-wrapper {
    display: flex;
    gap: 50px;
    width: 100%;
    padding-inline: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.vet-domicile .services-wrapper .service.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: calc(33.333% - 50px);
    min-width: 280px;
    max-width: 365px;
    padding: 60px 55px;
}

.vet-domicile .services-wrapper .service.card .img {
    width: 100%;
    height: 75px;
}

.vet-domicile .services-wrapper .service.card .img span {
    position: relative;
    top: 0;
    left: 0;
    width: auto;
    max-width: 100%;
    height: 75px;
    margin: 0 auto;
    display: block;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
    mask-size: contain;
    -webkit-mask-size: contain;
    background-image: linear-gradient(to top, #132448, #3eacf4);
    pointer-events: none;
}


.vet-domicile .services-wrapper .service.card h3 {
    text-align: center;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.68px;
    color: var(--primary);
    margin-bottom: 0;
}

.vet-domicile .services-wrapper .service.card p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.44;
    color: var(--black);
    text-align: center;
}

@media (max-width: 1200px) {
    .vet-domicile .services-wrapper {
        width: 100%;
        max-width: calc(100% - 60px);
        margin-inline: auto;
    }
}

@media (max-width: 768px) {
    .vet-domicile .services-wrapper {
        width: 100%;
        margin-top: 50px;
        max-width: calc(100% - 40px);
        margin-inline: auto;
        gap: 25px;
        padding-inline: 0;
    }

    .vet-domicile .content .services-container h2 {
        font-size: 45px;
        margin-top: 45px;
    }

    .vet-domicile .services-wrapper .service.card {
        padding: 40px 30px;
    }

    .vet-domicile .services-wrapper .service.card h3 {
        margin-block: 15px;
        font-size: 26px;
    }
}

/**************************/
/***DEPARASITAGE SECTION***/
/**************************/

.deparasitage {
    width: 100%;
    /* margin-top: 165px; */
    margin-inline: auto;
}

.deparasitage .card:hover {
    transform: none;
    box-shadow: 0px 16px 27px 0 rgba(0, 0, 0, 0.05);
}

.deparasitage .deparasitage-wrapper {
    width: 100%;
    max-width: calc(1440px - 210px);
    margin-top: 75px;
    display: flex;
    margin-inline: auto;
    gap: 60px;
}

.deparasitage .template:first-of-type {
    margin-top: 0;
}

.deparasitage .template .template-module p:first-child {
    margin-top: 0;
}

.deparasitage .deparasitage-wrapper .sidebar-wrapper {
    width: 100%;
    display: flex;
    height: auto;
    position: relative;
    max-width: 365px;
}

.deparasitage .deparasitage-wrapper .sidebar-wrapper ul {
    width: 100%;
    display: flex;
    height: auto;
    position: relative;
    max-width: 365px;
    margin: 0;
    padding: 0;
    max-height: 100%;
    padding-right: 10px;
    box-sizing: border-box;
}

.deparasitage .deparasitage-wrapper .sidebar-wrapper ul.fixed {
    position: fixed;
    width: 100%;
    max-width: 365px;
    top: 195px;
    /* max-height: 73vh; */
    overflow: hidden;
}

/* .deparasitage .deparasitage-wrapper .sidebar-wrapper ul.fixed li {
    overflow: scroll;
    height: auto;
} */

.deparasitage .deparasitage-wrapper .sidebar-wrapper a {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.5;
    text-align: left;
    color: var(--primary);
}

.deparasitage .deparasitage-wrapper .sidebar-wrapper a.selected {
    font-weight: 600;
    color: var(--secondary);
}

.deparasitage .deparasitage-wrapper .sidebar-wrapper>ul {
    height: max-content;
    max-height: auto;
    padding: 80px 45px 80px;
    width: 100%;
    margin-top: 0;
    min-width: 365px;
    max-width: 365px;
    border-radius: 50px;
    box-shadow: 0px 16px 27px 0 rgba(0, 0, 0, 0.05);
    background-color: var(--white);
}

.deparasitage .deparasitage-wrapper .sidebar-wrapper>ul li{
    width: 100%;
}

.deparasitage .deparasitage-wrapper .sidebar-wrapper>ul a span:first-of-type {
    position: relative;
    top: 0;
    left: 0;
    width: auto;
    max-width: 100%;
    height: 75px;
    margin: 0 auto;
    display: block;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
    mask-size: contain;
    -webkit-mask-size: contain;
    background-image: linear-gradient(to top, #132448, #3eacf4);
    pointer-events: none;
}

.deparasitage .deparasitage-wrapper .sidebar-wrapper>ul>li>a+ul {
    margin-top: 35px;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
}

.deparasitage .deparasitage-wrapper .sidebar-wrapper>ul li>ul {
    display: block;
    margin-bottom: 15px;
    padding-left: 0;
}

.deparasitage .deparasitage-wrapper .sidebar-wrapper ul li.open>ul li {
    margin-left: 20px;
}

.deparasitage .deparasitage-wrapper .sidebar-wrapper ul li ul{
    max-width: 100%;
    padding: 0;
    background: none;
    box-shadow: none;
}

.deparasitage .deparasitage-wrapper .sidebar-wrapper ul li>ul li:first-of-type {
    margin-top: 10px;
}

.deparasitage .deparasitage-wrapper .sidebar-wrapper>ul a span {
    font-size: 1.625rem;
    display: block;
    margin-top: 45px;
    margin-bottom: 35px;
    font-weight: 800;
    line-height: 1.46;
    letter-spacing: -0.52px;
    color: var(--primary);
}

.deparasitage .deparasitage-wrapper .module-wrapper {
    width: 100%;
    max-width: 785px;
    display: flex;
    height: fit-content;
}

@media (max-width: 1400px) {
    .deparasitage .deparasitage-wrapper {
        width: 100%;
        max-width: 100%;
        margin-top: 75px;
        gap: 30px;
    }

    .deparasitage .deparasitage-wrapper .sidebar-wrapper {
        width: 100%;
        display: flex;
        height: auto;
        position: relative;
        max-width: 33.5%;
        min-width: 365px;
        padding: 0 30px 30px;
    }
}

.deparasitage-wrapper .sidebar-wrapper .mobile-sidemenu-title {
    display: none;
    font-size: 0.875rem;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.86;
    letter-spacing: 0.7px;
    text-align: right;
    color: var(--white);
}

.deparasitage-wrapper .sidebar-wrapper .mobile-sidemenu-title>span {
    display: inline-block;
    position: relative;
    width: 28px;
    height: 20px;
    /* -webkit-mask-image: url("/assets/img//template/bullet-arrow.svg");
    mask-image: url("/assets/img//template/bullet-arrow.svg"); */
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: var(--primary);
    margin-left: 20px;
    margin-block: -5px;
    transition: var(--transition);
}

@media (max-width: 992px) {
    .deparasitage-wrapper {
        flex-direction: column;
        gap: 0;
    }

    .deparasitage .deparasitage-wrapper {
        gap: 0;
    }

    .deparasitage .deparasitage-wrapper .module-wrapper {
        width: 100%;
        max-width: 100%;
    }

    .deparasitage .deparasitage-wrapper .sidebar-wrapper {
        display: flex;
        position: absolute;
        width: 100%;
        padding: 0;
        /* background: var(--primary); */
        justify-content: center;
        align-items: center;
        max-width: unset;
        pointer-events: none;
        top: 0;
        left: 0;
        right: 0;
    }

    .deparasitage-wrapper .sidebar-wrapper::before {
        top: 230px;
        right: unset;
        opacity: 0.05;
        transform: none;
    }

    .deparasitage-wrapper .sidebar-wrapper::after {
        top: 0;
        left: unset;
        opacity: 0.05;
        transform: none;
    }

    .deparasitage .deparasitage-wrapper .sidebar-wrapper>ul{
        position: fixed;
        overflow-y: auto;
    }

    .deparasitage-wrapper .sidebar-wrapper>ul {
        max-width: unset;
        overflow: hidden;
        position: fixed;
        background-color: var(--white);
        top: 53px;
        bottom: 0;
        left: 0;
        right: 0;
        transform: translateX(100vw);
        z-index: 1000201;
        height: calc(100vh - 43px);
        padding: 40px 15px;
        display: flex;
        flex-direction: column;
        gap: 5px;
        opacity: 0;
    }

    .deparasitage-wrapper .sidebar-wrapper>ul>li {
        width: 80%;
        margin: 0 auto;
    }

    .deparasitage-wrapper .sidebar-wrapper>ul>li>ul>li {
        font-size: 1.219rem;
        margin-left: 0;
    }

    .deparasitage-wrapper .sidebar-wrapper>ul.open {
        transform: translateX(0);
        pointer-events: all;
        opacity: 1;
        width: 100%;
        min-width: 100%;
        border-radius: 0;
    }

    .deparasitage-wrapper .sidebar-wrapper .mobile-sidemenu-title {
        display: flex;
        text-transform: uppercase;
        cursor: pointer;
        padding: 20px 0;
        transition: var(--transition);
        background-color: var(--secondary);
        width: 100vw;
        text-align: center;
        border-radius: 0;
        border: none;
        white-space: normal;
        pointer-events: auto;
        z-index: 10;
        position: fixed;
        bottom: 0;
        justify-content: center;
        align-items: center;
        line-height: 1;
        /* box-shadow: rgba(0, 0, 0, 0.5) -2.8px 8.6px 24px 0px; */
    }

    .deparasitage-wrapper .sidebar-wrapper .mobile-sidemenu-title>span {
        display: inline-block;
        position: relative;
        width: 22px;
        height: 12px;
        -webkit-mask-image: url("/assets/img/general/template/list-mark.svg");
        mask-image: url("/assets/img/general/template/list-mark.svg");
        transform: rotate(-45deg);
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        background-color: var(--primary);
        margin-left: 10px;
        /* margin-block: -5px; */
        transition: var(--transition);
    }

    .sidemenu .mobile-sidemenu-title.top {
        position: fixed;
        top: 74px;
        z-index: 10;
    }

    .deparasitage-wrapper .sidebar-wrapper .mobile-sidemenu-title.fullscreen {
        position: fixed;
        transform: translateX(-100vw);
        top: 0;
        z-index: 100;
        padding: 16px 0;
        bottom: unset;
    }

    .deparasitage-wrapper .sidebar-wrapper .mobile-sidemenu-title.fullscreen.open {
        justify-content: start;
    }

    .deparasitage-wrapper .sidebar-wrapper .mobile-sidemenu-title.fullscreen.open span {
        display: inline-block;
        position: relative;
        width: 22px;
        height: 12px;
        -webkit-mask-image: url(/assets/img/general/template/list-mark.svg);
        mask-image: url(/assets/img/general/template/list-mark.svg);
        transform: rotate(135deg);
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        background-color: var(--white);
        margin-left: 10px;
        margin-right: 10px;
        top: 2px;
        /* margin-block: -5px; */
        transition: var(--transition);
    }

    .deparasitage-wrapper .sidebar-wrapper .mobile-sidemenu-title.fullscreen.open {
        transform: translateX(0);
    }

    .deparasitage-wrapper .sidebar-wrapper .mobile-sidemenu-title>span {
        background-color: var(--white);
        top: -5px;
        cursor: pointer;
        pointer-events: none;
    }

    .deparasitage-wrapper .sidebar-wrapper .mobile-sidemenu-title.fullscreen>span {
        position: absolute;
        transform: rotate(180deg);
        left: 0;
        bottom: 17px;
    }
}

@media (max-width: 400px) {
    .deparasitage-wrapper .sidebar-wrapper .mobile-sidemenu-title {
        left: 0;
    }
}

/**************************/
/***NEWSLETTER SECTION*****/
/**************************/

.form-section {
    margin-top: 60px;
}

@media (max-width: 1400px) {
    .form-section .form {
        width: 100%;
        max-width: calc(100% - 40px);
    }
}

.form {
    background-color: var(--transparent);
    width: 100%;
    max-width: 1300px;
    padding-inline: 20px;
    margin: 0 auto;
    border-radius: 30px;
    padding: 30px 30px 100px 30px;
}

.newsletter .content {
    min-height: auto;
}

.newsletter .banner:not(.no-img) .container {
    max-height: 448px;
    min-height: 448px;
    padding-bottom: 95px;
}

.form {
    width: 100%;
    max-width: 1280px;
    padding-inline: 20px;
    border-radius: 30px;
    padding: 30px 30px 100px 30px;
    background: rgba(190, 221, 239, 0.25);
}

.form .form-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 40px;
    width: 100%;
}

.form .input-wrapper {
    width: calc(50% - 20px);
}


.form .filter-wrapper {
    margin: 0;
    width: 100%;
    max-width: 100%;
    background-color: var(--transparent);
    padding: 0;
}

.newsletter .form .required {
    font-size: 11px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    width: 100%;
    margin-top: 30px;
    line-height: normal;
    letter-spacing: 0.11px;
    text-align: left;
    color: #96afc0;
}

@media (max-width: 1400px) {
    .newsletter .form {
        width: 100%;
        max-width: calc(100% - 40px);
    }
}

@media (max-width: 768px) {
    .newsletter .form-section {
        margin-top: 0px;
    }

    .newsletter .template:last-of-type {
        margin-bottom: 50px;
    }

    .newsletter .banner:not(.no-img) .container {
        min-height: 300px;
        max-height: 300px;
        padding-bottom: 40px;
    }

    .newsletter .form {
        padding: 15px 15px 50px 15px;
    }

    .newsletter .form .input-wrapper {
        width: 100%;
    }
}

/****************************/
/***********FORMS*********+**/
/****************************/

.form {
    background-color: rgba(190, 221, 239, 0.25);
    width: 100%;
    max-width: 1300px;
    padding-inline: 20px;
    margin: 100px auto 0;
    border-radius: 30px;
    padding: 30px;
}

.form .form-fields {
    max-width: 910px;
    padding-inline: 30px;
    margin: 70px auto 0;
}

.form-fields .input-wrapper {
    position: relative;
}

.form-fields .input-wrapper input,
.form-fields .input-wrapper textarea {
    padding: 20px 32px;
    border-radius: 30px;
    border: solid 2px rgba(38, 128, 187, 0.15);
    position: relative;
    font-size: 16px;
    font-family: var(--font-family);
}

.form-fields .input-wrapper:has(textarea) {
    width: 100%;
    max-width: 100%;
}

@media (max-width: 768px) {
    .form-fields .input-wrapper input {
        padding: 13px 25px;
    }
}

/****************************/
/***********INPUTS***********/
/****************************/

.form .input {
    position: relative;
}

.content .form textarea.not-filled,
.content .form select.not-filled,
.content .form input[type="checkbox"].not-filled+label,
.content .form input:not([type="checkbox"], [type="file"]).not-filled {
    border-color: var(--warning) !important;
}

.content .form .warning {
    font-size: 14px;
    font-weight: 400;
    color: var(--warning);
    height: 20px;
    margin: 0;
    margin-top: 5px;
    padding-left: 35px;
    position: relative;
    text-align: left;
}

/****************************/
/*********CHECKBOXES******+**/
/****************************/

.form input[type="checkbox"],
.form input[type="radio"] {
    display: none;
    visibility: hidden;
}

.form input[type="checkbox"]+.privacy {
    display: inline-block;
    vertical-align: middle;
    height: 24px;
    left: 0;
    min-width: 24px;
    top: 0px;
    background-color: var(--white);
    border: 2px solid rgba(38, 128, 187, 0.15);
    border-radius: 5px;
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    transition: var(--transition);
}

.form input[type="checkbox"]+label::before,
.form input[type="radio"]+label::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-size: 0.875rem;
    font-weight: bold;
    color: var(--secondary);
    line-height: 1;
    width: 11px;
    height: 12px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -2px;
    right: 0;
    margin: auto;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    -webkit-transition: var(--transition);
}

.form input[type="checkbox"]:checked+label::before,
.form input[type="radio"]:checked+label::before {
    opacity: 1;
}

.form input[type='checkbox']+label::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-size: .875rem;
    font-weight: bold;
    color: var(--primary);
    line-height: 1;
    width: 12px;
    height: 14px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0px;
    right: 0;
    margin: auto;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    -webkit-transition: var(--transition);
}

.form input[type='checkbox']:checked+label::before {
    opacity: 1;
}

.form input[type='radio']:checked+label::before {
    opacity: 1
}

.form .checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    z-index: 0;
    margin: 0px;
    position: relative;
}

.form .checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: -12px;
    width: 100%;
    z-index: 0;
}

.checkbox-wrapper p {
    text-align: left;
}

.checkbox-wrapper p a {
    color: var(--secondary);
    font-weight: 600;
}

.form p {
    font-size: 16px;
    font-weight: normal;
    line-height: 1.63;
    letter-spacing: normal;
    text-align: left;
    margin-block: 0;
    color: var(--black);
}

.form .email {
    font-weight: 600;
    color: var(--primary);
}

.form .button {
    margin: 0px auto 0;
    padding: 27px;
    border-radius: 40px;
}

.template .form .checkbox-wrapper:last-child {
    font-size: 15px;
    line-height: 1.47;
    text-align: left;
    font-weight: 400;
    color: var(--black);
}



.form .input-wrapper.input-full{
    width: 100%
}

@media(min-width:768px){
    .form .button {
        margin: 47px auto 0;
        border-radius: 50px;
    }
}

/****************************/
/***********LABELS********+**/
/****************************/

label {
    position: absolute;
    top: 20px;
    left: 32px;
    font-size: 16px;
    color: var(--black);
    pointer-events: none;
    transition: var(--transition);
    z-index: 2;
}

.select-wrapper:has(.isSelected) label,
.filter-wrapper:has(.isSelected)+label,
input:focus+label,
textarea:focus+label,
.input-wrapper.filled label,
.input-wrapper.filled input:focus+label,
.input-wrapper.filled textarea:focus+label,
.input-wrapper.filled input:not(:focus)+label,
.input-wrapper.filled textarea:not(:focus)+label {
    top: -7px;
    left: 22px;
    font-size: 11px;
    color: #92b5cc;
    font-weight: 600;
    border-radius: 10px;
    background-image: linear-gradient(to top, var(--white), #f7faf2);
    padding: 1px 6px;
    z-index: 2;
    font-size: 11px;
}

@media (max-width: 768px) {
    label {
        top: 15px;
        font-size: 13px;
    }

    .form .form-fields {
        max-width: 100%;
        padding-inline: 0;
        margin-top: 30px;
    }

    .newsletter .form-section .form {
        width: 100%;
        margin-top: 50px;
    }

    .form .button {
        padding: 15px;
    }

    .form p {
        font-size: 14px;
    }
}

/****************************/
/********CUSTOM SELECT*******/
/****************************/

.filter-wrapper .custom-select .placeholder {
    padding-block: 0;
    padding-inline: 32px;
    min-height: 60px;
    height: 100%;
    font-size: 14px;
    border: solid 2px rgba(38, 128, 187, 0.15);
    cursor: pointer;
    font-weight: normal;
    transition: var(--transition);
    line-height: 1;
    letter-spacing: -0.15px;
    text-align: left;
    background-color: var(--white);
    border-radius: 30px;
    color: var(--black);
    display: flex;
    align-items: center;
}

.filter-wrapper .custom-select.has-reset .placeholder>div.reset,
.filter-wrapper .custom-select .placeholder>div.reset {
    right: 32px;
    top: 0;
    height: 100%;
    overflow: visible;
}

.filter-wrapper .custom-select.has-reset .placeholder>div.reset::before,
.filter-wrapper .custom-select.has-reset .placeholder>div.reset::after,
.filter-wrapper .custom-select .placeholder>div.reset::before,
.filter-wrapper .custom-select .placeholder>div.reset::after {
    width: 10px;
    height: 2px;
    top: 10px;
}

.filter-wrapper .custom-select.has-reset .placeholder>div.reset::before,
.filter-wrapper .custom-select .placeholder>div.reset::before {
    border-radius: 30px;
    transform-origin: 50%;
    left: 0;
    transform: translateX(-30%) rotate(40deg) scaleX(0.9);
    top: 0;
    bottom: 0;
    right: 20px;
}

/* .filter-wrapper .custom-select.has-reset .placeholder > div.reset::before, 
.filter-wrapper .custom-select.has-reset .placeholder > div.reset::after {
    bottom: -8px;
    left: -1px;
    width: 14px;
} */

.filter-wrapper .custom-select.has-reset .placeholder>div.reset::after,
.filter-wrapper .custom-select .placeholder>div.reset::after {
    border-radius: 30px;
    transform-origin: 50%;
    transform: translateX(30%) rotate(-40deg) scaleX(0.9);
    top: 0;
    bottom: 0;
    right: 20px;
    left: 0;
}

.filter-wrapper .custom-select.isSelected .placeholder>div.reset::before {
    transform: translateX(1px) rotate(45deg) scaleX(1.2);
}

.filter-wrapper .custom-select.isSelected .placeholder>div.reset::after {
    transform: translateX(1px) rotate(-45deg) scaleX(1.2);
}

.filter-wrapper .custom-select.has-reset .placeholder>div.reset {
    right: 32px;
    width: 12px;
    height: 9px;
}

.filter-wrapper .custom-select.open .placeholder {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: var(--transparent);
    z-index: 3;
}

.filter-wrapper .custom-select.open.isSelected .placeholder {
    background-color: var(--white);
    color: var(--black);
}

.filter-wrapper .custom-select:not(.has-reset) .placeholder::before {
    content: "";
    position: absolute;
    top: -2px;
    bottom: 0;
    right: 32px;
    margin: auto;
    width: 7px;
    height: 7px;
    border-right: 2px solid var(--black);
    border-bottom: 2px solid var(--black);
    transform: rotate(45deg);
    pointer-events: none;
}

.custom-select .options {
    font-size: 14px;
}

.filter-wrapper .custom-select .options>div {
    padding: 5px 30px;
}

.glossary .filter-wrapper .custom-select .options-wrapper,
.filter-wrapper .custom-select .options-wrapper {
    border-top: 2px solid var(--transparent);
    border-left: 2px solid 2px rgba(38, 128, 187, 0.15);
    border-right: 2px solid 2px rgba(38, 128, 187, 0.15);
    border-bottom: 2px solid 2px rgba(38, 128, 187, 0.15);
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.glossary .filter-wrapper .custom-select.open .placeholder {
    border-top: solid 2px rgba(38, 128, 187, 0.15);
    border-right: solid 2px rgba(38, 128, 187, 0.15);
    border-left: solid 2px rgba(38, 128, 187, 0.15);
}

.glossary .filter-wrapper .custom-select.open .options-wrapper,
.filter-wrapper .custom-select.open .options-wrapper {
    border-top: 2px solid var(--transparent);
    border-left: 2px solid rgba(38, 128, 187, 0.15);
    border-right: 2px solid rgba(38, 128, 187, 0.15);
    border-bottom: 2px solid rgba(38, 128, 187, 0.15);
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.glossary .filter-wrapper .custom-select:not(.open) .options-wrapper,
.filter-wrapper .custom-select:not(.open) .options-wrapper {
    border-top: 2px solid var(--transparent);
    border-left: 2px solid rgba(38, 128, 187, 0.15);
    border-right: 2px solid rgba(38, 128, 187, 0.15);
    border-bottom: 2px solid rgba(38, 128, 187, 0.15);
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.glossary .filter-wrapper .custom-select.isSelected .options-wrapper,
.filter-wrapper .custom-select.isSelected .options-wrapper {
    border-top: 2px solid var(--transparent);
    border-left: 2px solid rgba(38, 128, 187, 0.15);
    border-right: 2px solid rgba(38, 128, 187, 0.15);
    border-bottom: 2px solid rgba(38, 128, 187, 0.15);
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.glossary .filter-wrapper .custom-select .options-wrapper,
.filter-wrapper .custom-select .options-wrapper {
    border-top: 2px solid var(--transparent);
    border-left: 2px solid rgba(38, 128, 187, 0.15);
    border-right: 2px solid rgba(38, 128, 187, 0.15);
    border-bottom: 2px solid rgba(38, 128, 187, 0.15);
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    top: 0;
    transition: var(--transition);
}

.filter-wrapper .custom-select.open .options-wrapper {
    top: 50px;
    z-index: -1;
    border-top: 2px solid var(--transparent);
}

@media (max-width: 1370px) {
    .filter-wrapper {
        max-width: calc(100% - 40px);
    }
}

@media (max-width: 768px) {
    .filter-wrapper .custom-select .placeholder {
        padding: 13px 25px;
        font-size: 13px;
        min-height: 4px;
    }

    .filter-wrapper .custom-select.open .options-wrapper {
        top: 25px;
    }
}

/****************************/
/****** FIXED SOCIALS *******/
/****************************/

.fixed-socials {
    position: fixed;
    min-width: 39px;
    min-height: 39px;
    bottom: 10px;
    right: 9px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: end;
    z-index: 10;
}

.fixed-socials a {
    height: 39px;
    width: 39px;
    background-color: var(--white);
    border-radius: 50%;
}

.fixed-socials a::after {
    position: absolute;
    content: "";
    height: 39px;
    width: 39px;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: var(--primary-change);
    transition: var(--transition);
}

.fixed-socials.fixed-color a::after {
    background-color: var(--primary);
}

.fixed-socials a.fixed-msn::after {
    -webkit-mask-image: url("/assets/img/general/msn.svg");
    mask-image: url("/assets/img/general/msn.svg");
    background-color: var(--secondary);
}

.fixed-socials a.fixed-wts::after {
    -webkit-mask-image: url("/assets/img/general/wts.svg");
    mask-image: url("/assets/img/general/wts.svg");
    background-color: #189d0e;
}

.vet .fixed-socials a::after {
    background-color: var(--primary-vet);
}

.aca .fixed-socials a::after {
    background-color: var(--primary-aca);
}

.spa .fixed-socials a::after {
    background-color: var(--primary-spa);
}

@media (min-width: 768px) {
    footer .container {
        flex-direction: row;
    }

    .fixed-socials {
        width: 55px;
        height: auto;
        right: 29px;
        bottom: 20px;
        display: flex;
        flex-direction: column;
    }

    .fixed-socials.fixed {
        position: absolute;
        bottom: 145px;
    }

    .fixed-socials a {
        min-height: 55px;
        min-width: 55px;
    }

    .fixed-socials a::after {
        height: 55px;
        width: 55px;
    }
}

@media (min-width: 992px) {
    .fixed-socials a:hover::after {
        transform: scale(1.05);
    }
}

/*****************************************/
/****************CONTACTS*****************/
/*****************************************/

.contacts .template {
    margin-top: 80px;
}

.contacts .template b,
.contacts .template strong {
    color: var(--black);
}

.contacts .form {
    background: rgba(190, 221, 239, 0.25);
    padding: 100px 20px;
}

.contacts .form h2 {
    font-size: 3.75rem;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -1.5px;
    text-align: center;
    color: var(--primary);
    margin-top: -5px;
}

.contacts p {
    font-size: 1.625rem;
    margin-inline: auto;
    font-weight: 300;
    line-height: 1.38;
    letter-spacing: normal;
    text-align: center;
    margin-top: 10px;
}

.contacts .form .form-fields {
    margin-top: 65px;
}

.contacts .form-fields>p {
    font-size: 0.688rem;
    letter-spacing: 0.11px;
    text-align: left;
    color: var(--secondary);
    margin-top: 30px;
    margin-inline: 0;
}

.contacts .checkbox-wrapper p {
    margin-inline: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.63;
    text-align: left;
    color: var(--black);
    margin-top: 0;
}

.contacts .checkbox-wrapper p a {
    font-weight: 600;
}

.contacts .template-module.module5.module11 p {
    margin-top: 15px;
    line-height: 1.42;
    margin-top: 30px;
    margin-bottom: 0;
}

.contacts .template-module .button {
    padding: 27px 30px;
    margin-top: 22px;
}

@media (max-width: 768px) {
    .contacts .form {
        padding-block: 50px;
    }

    .form .form-fields {
        gap: 20px;
    }

    .form .input-wrapper {
        width: calc(50% - 10px);
    }

    .contacts .form h2 {
        font-size: 30px;
    }

    .contacts .form .form-fields{
        margin-top: 25px;
    }

    .contacts .form-fields>p{
        margin-top: 0px;
    }
}

@media (max-width: 600px) {
    .form .form-fields {
        gap: 20px;
    }

    .form .input-wrapper {
        width: 100%;
    }
}

/*********************************/
/*********CONSULTAS***************/
/*********************************/

.contacts.consults .container{
    max-width: 910px;
}
.contacts.consults .form {
    background: none;
    padding: 0;
    max-width: 100%;
    border-radius: 0;
    margin: 60px auto 0;
}

.contacts.consults .form-section{
    margin-inline: auto;
    max-width: calc(100% - 40px);
}

.checkbox-wrapper + .checkbox-wrapper{
    margin-top: -22px;
}

@media(max-width:768px){
    .contacts.consults .form,
    .contacts.consults .form-section{
        margin-top: 30px;
    }
    .contacts.consults .content .container{
        max-width: calc(100% - 40px);
    }
}

/****************************/
/*********BLOG***************/
/****************************/

.blog .banner:not(.no-img) .container {
    padding-bottom: 80px;
    min-height: 428px;
    max-height: 428px;
}

.filter-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 10px;
    margin-inline: auto;
}

.search.input-wrapper {
    padding: 17px 32px;
    font-size: 10px;
    font-weight: 500;
    padding: 11px 20px;
    line-height: 1;
    text-align: left;
    color: #b1b1b1;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    width: 100%;
    max-width: 380px;
    border-radius: 30px;
    border: solid 2px rgba(38, 128, 187, 0.15);
    background-color: var(--white);
}

.search.input-wrapper input {
    border: none;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: normal;
    line-height: 1;
    letter-spacing: -0.15px;
    text-align: left;
    color: var(--black);
    background-color: var(--transparent);
    width: 100%;
}

.filter-wrapper .input-wrapper.select-wrapper {
    width: 100%;
    max-width: 250px;
    position: relative;
}

.filter-wrapper .custom-selectnot:not(.open) .placeholder,
.filter-wrapper .custom-select.isSelected .placeholder,
.filter-wrapper .custom-select.open .options-wrapper {
    border: solid 2px #2680bb;
    border-bottom: 2px solid #2680bb;
}

body:not(.newsletter) .filter-wrapper .custom-select.isSelected .placeholder {
    pointer-events: none;
    cursor: default;
}

.custom-select.has-reset.isSelected .placeholder>div.reset {
    pointer-events: all;
    cursor: pointer;
}

.filter-wrapper .custom-select.open .options-wrapper {
    border: solid 2px #2680bb;
    border-bottom: 2px solid #2680bb;
    z-index: 3;
    border-top: 2px solid var(--transparent);
}

.filter-wrapper .custom-select.has-reset.open .options-wrapper {
    border-top: none;
}

.filter-wrapper .custom-select.has-reset:not(.open) .options-wrapper {
    border-top: 0px solid var(--white);
}

.filter-wrapper .custom-select.open .placeholder {
    border-top: solid 2px #2680bb;
    border-right: solid 2px #2680bb;
    border-left: solid 2px #2680bb;
}

.filter-wrapper .custom-select .options-wrapper {
    border: none;
}

.filter-wrapper .custom-select:not(.open) .options-wrapper {
    border: solid 2px #2680bb;
}

.search span {
    pointer-events: auto;
    cursor: pointer;
}

.select-wrapper:has(.isSelected) label {
    top: 20px;
    left: 32px;
    opacity: 0;
}

.content.blog .blog-article-container .items {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.content.blog .blog-article-container .items.fade-out {
    opacity: 0;
}

.blog .blog-article-container,
.article .blog-article-container {
    width: 100%;
    max-width: calc(1370px - 30px);
    margin-inline: auto;
    padding-inline: 30px;
}

.blog .blog-article-container .row,
.article .blog-article-container .row {
    margin-top: 100px;
    width: 100%;
    gap: 100px 40px;
    display: flex;
    flex-wrap: wrap;
}

.blog .blog-article-container .row .blog-article,
.article .blog-article-container .row .blog-article {
    width: 50%;
    max-width: calc(50% - 20px);
}

.blog .blog-article-container .row .blog-article>a:first-of-type,
.article .blog-article-container .row .blog-article>a:first-of-type {
    height: 100%;
    max-height: 442px;
}

.blog .blog-article-container .row .blog-article>a:first-of-type:hover img,
.article .blog-article-container .row .blog-article>a:first-of-type:hover img {
    transform: scale(1.05);
}

.blog .blog-article-container .row .blog-article .img,
.article .blog-article-container .row .blog-article .img {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 50px;
    max-height: 442px;
}

.blog .blog-article-container .row .blog-article .img img,
.article .blog-article-container .row .blog-article .img img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.blog .blog-article-container .row .blog-article>a:last-of-type,
.article .blog-article-container .row .blog-article>a:last-of-type {
    display: block;
    margin-top: 34px;
    font-size: 1.875rem;
    font-weight: 800;
    line-height: 1.13;
    letter-spacing: -0.3px;
    text-align: left;
    color: var(--primary);
}

.blog .blog-article-container .row .blog-article>span:first-of-type,
.article .blog-article-container .row .blog-article>span:first-of-type {
    display: inline-block;
    font-size: 0.875rem;
    margin-top: 14px;
    margin-right: 12px;
}

.blog .blog-article-container .row .blog-article>span:last-of-type a,
.article .blog-article-container .row .blog-article>span:last-of-type a {
    font-size: 0.875rem;
    color: var(--secondary);
}

@media (max-width: 992px) {

    .blog .blog-article-container .row .blog-article>a:first-of-type:hover img,
    .article .blog-article-container .row .blog-article>a:first-of-type:hover img {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .blog .filter-wrapper {
        flex-wrap: wrap;
        max-width: 500px;
    }

    .blog .filter-wrapper .custom-select .placeholder {
        padding: 14px 20px;
        font-size: 13px;
        width: 100%;
        max-width: 100%;
    }

    .blog .filter-wrapper .custom-select.has-reset .placeholder>div.reset {
        right: 22px;
        width: 12px;
        height: 9px;
    }

    .blog .filter-wrapper .input-wrapper.select-wrapper {
        max-width: calc(50% - 10px);
    }

    .blog .search.input-wrapper {
        width: 100%;
        max-width: calc(100% - 10px);
    }

    .blog .filter-wrapper .custom-select.open .options-wrapper {
        top: 30px;
    }

    .blog .blog-article-container .row,
    .article .blog-article-container .row {
        gap: 50px 20px;
        flex-direction: column;
    }

    .blog .blog-article-container,
    .article .blog-article-container {
        padding-inline: 20px;
        max-width: 100%;
    }

    .blog .blog-article-container .row .blog-article,
    .article .blog-article-container .row .blog-article {
        width: 100%;
        max-width: 100%;
    }

    .blog .listing .pagination {
        margin-top: 50px;
        margin: auto;
    }
}

/****************************/
/*****BLOG - ARTICLE*********/
/****************************/

.article .content {
    max-width: 1020px;
    margin-inline: auto;
    min-height: unset;
}

.article .banner .container h1 {
    font-size: 3.75rem;
    max-width: 700px;
    text-align: center;
    margin-inline: auto;
    margin-top: 30px;
}

.article .template .slider-wrapper+div {
    display: flex;
    position: relative;
    margin-inline: auto;
    justify-content: center;
    align-items: center;
}

.article .template .slider-wrapper:first-of-type+div a,
.article .template .slider-wrapper:first-of-type+div p {
    position: relative;
    font-size: 0.875rem;
}

.article .template .slider-wrapper+div a {
    color: var(--secondary);
}

.article .template .slider-wrapper+div p {
    margin-right: 10px;
}

.article .template .slider-wrapper:last-of-type+div {
    display: none;
}

/*******************************/
/**********RELATED NAV**********/
/*******************************/

.blog-article-container h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1.2px;
    text-align: center;
    color: var(--primary);
    margin-top: 90px;
}

.article .blog-article-container .row {
    margin-top: 52px;
    justify-content: center;
}

.article .content.article .banner ul li a {
    color: var(--breadcrumbs);
    font-size: 16px;
}

.article .content .article-nav {
    border-top: none;
    margin-top: 20px;
    padding-block: 25px;
    background-color: var(--transparent);
}

.article .content .article-nav .container {
    max-width: 980px;
    padding: 0;
}

.article .content .article-nav .row {
    margin: -10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.article .content .article-nav .row>div {
    padding: 0px;
}

.article .content .article-nav .row>div:nth-child(2) {
    text-align: center;
    order: 1;
}

.article .content .article-nav .row>div:last-child {
    text-align: right;
}

.article .content .article-nav .row>div a {
    font-size: 0.875rem;
    font-family: var(--secondary-font-family);
    color: var(--secondary);
    text-transform: uppercase;
    font-weight: bold;
}

.article .content .article-nav .row>div.disabled a {
    opacity: 0.25;
    pointer-events: none;
}

.article .content .article-nav .row>div.prev a,
.article .content .article-nav .row>div.next a {
    padding-left: 0px;
    position: relative;
}

/* .container .article-nav .row>div.prev a::before,
.container .article-nav .row>div.next a::after {
    content: "";
    display: inline-block;
    -webkit-mask-image: url(/assets/img/blog/pagination-arrow.svg);
    mask-image: url(/assets/img/blog/pagination-arrow.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: var(--primary);
    width: 11px;
    height: 11px;
    position: relative;
    transition: var(--transition);
    top: 0;
    bottom: 0;
    margin: auto;
} */

.article .content .article-nav .row>div.prev a {
    padding-left: 0px;
}

.article .content .article-nav .row>div.prev a::before {
    transform: rotate(-90deg);
    margin-right: 11px;
}

.article .content .article-nav .row>div.next a {
    padding-right: 0;
    padding-left: 0;
}

.article .content .article-nav .row>div.next a::after {
    right: 0;
    margin-left: 11px;
    transform: rotate(0deg);
}

.article .content .article-nav {
    position: relative;
}

.article .content .article-nav::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: #f0eded;
    transform: translateY(-50%);
}

@media (min-width: 992px) {

    .article .content .article-nav .row>div.prev a,
    .article .content .article-nav .row>div.next a {
        padding-left: 0px;
    }

    .article .content .article-nav .row>div.next a {
        padding-right: 0px;
    }
}

@media (min-width: 768px) {
    .article .content .article-nav {
        margin-top: 110px;
        padding: 0px 0 68px 0;
    }

    .article .lower span.date {
        padding-left: 25px;
    }

    .article .content .article-nav .row>div:nth-child(2) {
        order: initial;
    }

    .article .content .article-nav .row>div.prev a:hover::before {
        transform: rotate(-90deg) translate(5px, -5px);
    }

    .article .content .article-nav .row>div.next a:hover::after {
        transform: rotate(0deg) translate(5px, -5px);
    }
}

@media (max-width: 768px) {
    .article .content .article-nav .row {
        gap: 20px;
        padding-bottom: 35px;
    }
}

/********************************/
/*********** GLOSSARY ***********/
/********************************/

.glossary .template .container {
    max-width: 1020px;
}

.glossary .description .template .container {
    padding: 0;
}

.glossary .input-wrapper.select-wrapper {
    max-width: 303px;
    margin: auto;
}

.glossary .custom-select.has-reset.isSelected .placeholder>div.reset::after,
.glossary .custom-select.has-reset.isSelected .placeholder>div.reset::before {
    top: 0;
}

.glossary .listing .filter.glossary-filter {
    overflow-y: hidden;
    overflow-x: hidden;
    margin-bottom: 38px;
}

.glossary .listing .filter.glossary-filter>div {
    font-size: 17px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    text-align: center;
    color: #1a1a1a;
    padding-bottom: 5px;
    border: 0;
}

.glossary .listing .filter.glossary-filter>div.disabled {
    color: #dedddd;
}

.glossary .listing .filter.glossary-filter>div.active,
.glossary .listing .filter.glossary-filter>div:hover {
    color: var(--secondary);
}

.glossary .listing .filter.glossary-filter {
    margin-top: 68px;
}

.glossary .listing .accordion .toggle::before,
.glossary .listing .accordion .toggle::after {
    height: 2px;
}

@media (min-width: 768px) {
    .filter.glossary-filter {
        max-width: 1020px;
        position: relative;
        width: 100%;
        padding: 0 20px;
        margin: auto;
    }
}

@media (max-width: 768px) {
    .glossary .template .container{
        max-width: calc( 100% - 40px);
    }
    .content.glossary .template {
        margin-top: 30px;
    }

    .glossary .listing .filter.glossary-filter {
        overflow-x: scroll;
        margin-top: 40px;
        margin-bottom: 25px;
        gap: 7px;
        padding-inline: 20px;
    }

    .glossary .listing .filter.glossary-filter>div {
        font-size: 17px;
        line-height: 1;
    }
}


.container_tarifs{
    display: flex;
    align-items: flex-start;
    gap: 55px;
    max-width: 1200px;
    margin-inline: auto;
    position: relative;
}

.container_tarifs .tarifas{
    max-width: 365px;
    width: 100%;
    margin-top: 100px;
    border-radius: 50px;
    box-shadow: 0px 16px 27px 0 rgba(0, 0, 0, 0.05);
    background-color: var(--white);
    padding: 78px 50px 81px;
}

.container_tarifs .tarifas.fixed{
    position: fixed;
    left: auto;
}

@media(min-width: 768px){
    .container_tarifs .tarifas{
        position: absolute;
        top: 0;
        left: 0;
        z-index: 10;
        height: fit-content;
    }
    .container_tarifs .template {
        flex: 1;
        margin-left: 420px;
        margin-top: 85px;
    }
}


.container_tarifs .tarifas h3{
    font-size: 26px;
    font-weight: 800;
    line-height: 1.38;
    letter-spacing: -0.52px;
    text-align: center;
    color: #132448;
    margin: 0;
}

.container_tarifs .tarifas p{
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: center;
    color: #132448;
    margin: 10px auto 20px;
}

.container_tarifs .tarifas .form{
    background: none;
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: 0;
    padding: 0;
}

.container_tarifs .tarifas .form .input-wrapper {
    position: relative;
}

.container_tarifs .tarifas .form .input-wrapper {
    width: 100%;
}

.container_tarifs .tarifas .form input {
    padding: 19px 32px;
    border-radius: 30px;
    border: solid 2px rgba(38, 128, 187, 0.15);
    position: relative;
    font-size: 16px;
    font-family: var(--font-family);
}

.container_tarifs .tarifas .form .input-wrapper a.clear {
    position: absolute;
    width: 15px;
    height: 15px;
    right: 31px;
    top: 0;
    bottom: 0;
    margin: auto;
    opacity: 1;
    pointer-events: all;
}

.container_tarifs .tarifas .form .input-wrapper a.clear::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    right: 4px;
    top: 0;
    bottom: 0;
    margin: auto;
    -webkit-mask-image: url(/assets/img/general/close.svg);
    mask-image: url(/assets/img/general/close.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: #1a1a1a;
    cursor: pointer;
    transition: var(--transition);
    opacity: 1;
    pointer-events: all;
}

.container_tarifs .tarifas .form .input-wrapper .hidden {
    opacity: 0 !important;
    pointer-events: none !important;
}

.container_tarifs .tarifas .autocomplete-items {
    list-style: none;
    margin: 0;
    padding: 0;
    border: solid 2px transparent;
    border-radius: 20px;
    overflow-y: auto;
    position: absolute;
    background-color: #fff;
    width: 100%;
    z-index: 999;
    margin-top: 10px;
    padding-block: 10px;
    opacity: 0;
}

.container_tarifs .tarifas .autocomplete-items:has(li) {
    border: solid 2px rgba(38, 128, 187, 0.15);
    opacity: 1;
}

.container_tarifs .tarifas .autocomplete-items li {
    padding: 8px 32px;
    cursor: pointer;
    font-size: 15.5px;
    font-weight: normal;
    line-height: 1.68;
    letter-spacing: normal;
    text-align: left;
    color: #1a1a1a;
}

.container_tarifs .tarifas .autocomplete-items li:hover {
    background-color: #f6fafc;
}

.container_tarifs .tarifas .autocomplete-items li strong {
    font-weight: bold;
}

.container_tarifs .tarifas #selected-item{
    padding: 25px 36px 26px;
    position: relative;
    border-radius: 20px;
    display: none;
    margin-top: 30px;
    overflow: hidden;
}

.container_tarifs .tarifas #selected-item:has( > * ){
    display: block;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: center;
    color: #1a1a1a;
}

.container_tarifs .tarifas #selected-item strong{
    display: block;
    color: #2680bb;
    font-weight: bold;
}

.container_tarifs .tarifas #selected-item:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #2680bb;
    opacity: 0.1;
}

@media(max-width: 768px){
    .container_tarifs{
        flex-direction: column;
        align-items: center;
        margin-inline: 20px;
    }

    .container_tarifs .tarifas{
        padding: 68px 40px 71px;
    }

    .container_tarifs .tarifas .form input {
        padding-block: 12px;
    }

    .container_tarifs .tarifas .autocomplete-items{
        padding-block: 2px;
    }
    .container_tarifs .tarifas .autocomplete-items li{
        padding-block: 5px;
    }
    

}


