/* :root */
:root {
    --color-primary: #00193a;
    --color-primary-hover: #002a63;
    --color-gold: #ffc407;
    --color-gold-dark: #cc9c05;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-text: #555555;
    --color-whatsapp: #25d366;
    --color-whatsapp-hover: #1ebe5d;
    --font-primary: Questrial, sans-serif;
    --font-heading: Ibrand, sans-serif;
    --container-width: 90%;
    --container-width-mobile: 85%;
    --container-max: 1450px;
}

@font-face {
    font-family: Questrial;
    src: url(../../fonts/Questrial-Regular.woff2) format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Ibrand;
    src: url(../../fonts/ibrand.woff2) format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* * */
*, ::after, ::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* html */
html {
    overflow-x: hidden;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
}

/* body */
body {
    overflow-x: clip;
    color: var(--color-text);
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    background: var(--color-white);
}

/* svg */
svg {
    max-width: 100%;
    height: auto;
}

/* button */
button, input, select, textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

/* a */
a {
    text-decoration: none;
    color: var(--color-primary);
}

/* b */
b, strong {
    font-weight: 700;
}

/* h1 */
h1, h2, h3, h4, h5, h6 {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: .053em;
    margin-bottom: 10px;
}

/* p */
p {
    margin-bottom: 1rem;
}

@keyframes uros-availability-pulse {

@keyframes uros-availability-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(246, 200, 95, 0.55);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 0 7px rgba(246, 200, 95, 0);
        transform: scale(1.04);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(246, 200, 95, 0);
        transform: scale(1);
    }
}

}

/* misc */
::selection {
    background: var(--color-gold);
    color: var(--color-white);
}

/* img */
img:is([sizes=auto i],[sizes^="auto,"i]) {
    contain-intrinsic-size: 3000px 1500px;
}

/* contenedor-desk */
.contenedor-desk {
    width: var(--container-width);
    max-width: var(--container-max);
    margin: 0 auto;
}

/* ue-margint */
.ue-margint, .ue-espaces {
    padding: 2.5rem 0;
}

/* text-center */
.text-center {
    text-align: center;
}

/* text-decoration-none */
.text-decoration-none {
    text-decoration: none !important;
}

/* tx-white */
.tx-white, .white {
    color: var(--color-white);
}

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

/* fw-bold */
.fw-bold {
    font-weight: 700;
}

/* tp-mth */
.tp-mth {
    font-family: var(--font-heading);
}

/* ue-margint */
.ue-margint {
    margin-top: 30px;
}

/* gold-line-card */
.gold-line-card, .gold-line-main, .gold-line-main-left {
    display: block;
    width: 90px;
    height: 3px;
    border: 0;
    border-radius: 999px;
    background: var(--color-gold);
}

/* hr-center */
.hr-center {
    margin: 0 auto;
    margin-bottom: 15px;
}

/* contact-buttom */
.contact-buttom {
    display: flex;
    align-items: center;
}

/* btn-contact-modern */
.btn-contact-modern {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 5px;
    background: var(--color-gold);
    color: var(--color-primary);
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
}

.btn-contact-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(8, 34, 65, .28);
}

.btn-contact-modern .btn-icon, .btn-contact-modern .btn-text {
    position: relative;
    z-index: 1;
}

.btn-contact-modern .btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* header-main */
.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.header-main .logo img {
    max-width: 250px;
    height: auto;
}

/* header-informations */
.header-informations .contact-action, .header-informations .header-contact {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
}

.header-informations .header-contact {
    justify-content: flex-end;
}

.header-informations .contact-item a {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;
}

.header-informations .btn-contact {
    display: inline-block;
    padding: 8px 15px;
    border: none;
    border-radius: var(--radius-md);
    background-color: var(--color-gold);
    color: var(--color-primary);
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: none;
}

.header-informations .btn-contact svg {
    vertical-align: bottom;
    margin-right: 5px;
}

.header-informations .btn-contact:hover {
    color: var(--color-white);
}

/* header-info */
.header-info .menu {
    display: flex;
    list-style: none;
    margin: 10px 0;
}

.header-info .menu a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgb(255 255 255 / 74%);
    font-weight: 500;
}

/* header-main */
.header-main .menu-item a[href*="inca-trail-availability"] {
    color: var(--color-gold);
    font-weight: 700;
    text-decoration: none;
    border: 1px solid rgb(246 200 95);
    border-radius: 8px;
    padding: 5px 12px;
    display: inline-flex;
    align-items: center;
    animation: uros-availability-pulse 1.8s ease-in-out infinite;
}

/* menu-item */
.menu-item a[href*="inca-trail-availability"]:hover {
    text-decoration: none !important;
}

/* header-info */
.header-info .menu a:hover {
    text-underline-offset: 5px;
    text-decoration: underline;
}

.header-info > ul > .menu-item {
    display: flex;
    align-items: center;
    position: relative;
    margin-right: 20px;
    font-size: 14px;
}

.header-info > ul > .menu-item:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -10px;
    width: 1px;
    height: 10px;
    background: var(--color-primary);
    transform: translateY(-50%);
}

.header-info > ul > .menu-item:last-child {
    margin-right: 0;
}

.header-info .wpml-ls-current-language .wpml-ls-native {
    color: var(--color-gold);
    font-weight: 700;
    text-decoration: none;
}

/* wpml-ls-slot-25 */
.wpml-ls-slot-25, .wpml-ls-slot-3 {
    position: relative;
}

.wpml-ls-slot-25:focus-within .sub-menu, .wpml-ls-slot-25:hover .sub-menu, .wpml-ls-slot-3:focus-within .sub-menu, .wpml-ls-slot-3:hover .sub-menu {
    display: block;
}

.wpml-ls-slot-25 .sub-menu, .wpml-ls-slot-3 .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: initial;
    z-index: 99;
    min-width: 120px;
    margin: 0;
    padding: 0;
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
}

.wpml-ls-slot-25 .sub-menu li, .wpml-ls-slot-3 .sub-menu li {
    padding: 15px;
}

/* header-mobile */
.header-mobile, .wpml-ls-slot-25 .sub-menu a, .wpml-ls-slot-3 .sub-menu a {
    display: flex;
    align-items: center;
}

.header-mobile ul {
    list-style: none;
}

.header-mobile > div {
    padding: 0 10px;
    border-right: 1px solid #ccc;
}

/* contact-action */
.contact-action, .contact-item svg {
    color: #fff;
}

/* header-mobile */
.header-mobile > div:last-child {
    cursor: pointer;
    border-right: none;
    padding-right: 0;
}

/* whatsapp-contact */
.whatsapp-contact a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px;
    border-radius: 5px;
    background: var(--color-white);
    color: var(--color-primary);
    text-decoration: none;
    overflow: hidden;
    transition: background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.whatsapp-contact a:hover {
    transform: translateY(-2px);
}

/* whatsapp-icon */
.whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    background: var(--color-whatsapp);
    backdrop-filter: blur(4px);
}

.whatsapp-icon svg {
    width: 20px;
    height: 20px;
    color: var(--color-white);
}

/* whatsapp-content */
.whatsapp-content {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

/* whatsapp-label */
.whatsapp-label {
    font-size: 11px;
    font-weight: 500;
    opacity: .9;
}

/* whatsapp-number */
.whatsapp-number {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .3px;
}

/* menu-contenedor */
.menu-contenedor {
    position: relative;
    background-color: var(--color-primary);
}

/* main-menu */
.main-menu ul, .menu-gr-items ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu > ul {
    display: flex;
    justify-content: center;
}

.main-menu > ul > li > a {
    display: block;
    padding: 20px 10px;
    color: var(--color-white);
    text-transform: uppercase;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
}

.main-menu > ul > li:hover > a {
    color: #444;
    background: var(--color-gold);
}

.main-menu > ul > li.menu-item-has-children > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.main-menu > ul > li.menu-item-has-children > a::after {
    content: "\2335";
    font-size: 11px;
    line-height: 1;
    color: currentColor;
    transition: transform var(--transition-fast);
}

.main-menu > ul > li.menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}

.main-menu > ul > li > ul.sub-menu {
    display: none;
    position: absolute;
    left: 0;
    z-index: 99;
    width: 100%;
    background-color: var(--color-white);
}

.main-menu > ul > li:hover > ul.sub-menu {
    display: block;
}

.main-menu > ul > li.is-normal > ul.sub-menu {
    left: initial;
    width: auto;
    padding: 20px 40px;
}

.main-menu > ul li:hover .sub-menu:has(>li.is-style3) .content-style3-body > a, .main-menu > ul > li.is-normal .submenu-depth-1 > li.menu-item-has-children > a, .main-menu > ul > li.is-style1:hover .submenu-depth-1 > li > a, .main-menu > ul > li:hover > ul.sub-menu:has(>.is-style2) .content-style2-body > a {
    font-weight: 700;
}

.main-menu > ul > li.is-normal .submenu-depth-1 > li.menu-item-has-children > a, .main-menu > ul > li.is-style1:hover .submenu-depth-1 > li > a, .main-menu > ul > li:hover > ul.sub-menu:has(>.is-style2) .content-style2-body > a {
    font-size: 18px;
}

.main-menu > ul li:hover .sub-menu:has(>li.is-style3) .content-style3-body > a {
    font-size: 16px;
}

.main-menu > ul li:hover .sub-menu:has(>li.is-style3) .content-style3-body > a::after, .main-menu > ul > li.is-normal .submenu-depth-1 > li.menu-item-has-children > a::after, .main-menu > ul > li.is-style1:hover .submenu-depth-1 > li > a::after, .main-menu > ul > li:hover > ul.sub-menu:has(>.is-style2) .content-style2-body > a::after {
    content: "";
    display: block;
    width: 90px;
    height: 3px;
    border: 0;
    border-radius: 999px;
    background: var(--color-gold);
}

/* best-seller */
.best-seller, .recommended, .trending {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 8px;
    margin-left: 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    white-space: nowrap;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

.best-seller {
    background: #002a63;
    border: 1px solid #00193a;
}

/* recommended */
.recommended {
    background: #4cc786;
    border: 1px solid #39b238;
}

/* trending */
.trending {
    background: #f4b942;
    border: 1px solid #e0a72f;
}

/* submenu-depth-2 */
.submenu-depth-2 {
    margin: 0;
    padding: 0;
    list-style: none;
}

.submenu-depth-2 > li {
    border-bottom: 1px solid #e6e6e6;
}

.submenu-depth-2 > li:last-child {
    border-bottom: 0;
}

.submenu-depth-2 > li > a {
    display: block;
    padding: 9px 0;
}

/* submenu-depth-1 */
.submenu-depth-1 {
    margin: 0;
    padding: 0;
    list-style: none;
}

.submenu-depth-1 > li {
    border-bottom: 1px solid #e6e6e6;
}

/* mega-menu */
.mega-menu a[href="#"],
.mega-menu a[href=""] {
    pointer-events: none;
    cursor: default;
}

/* submenu-depth-1 */
.submenu-depth-1 > li:last-child {
    border-bottom: 0;
}

.submenu-depth-1 > li > a {
    display: flex;
    align-items: center;
    flex-direction: column;
    align-items: self-start;
    gap: 8px;
    padding: 10px 0;
}

/* main-menu */
.main-menu > ul li:hover .sub-menu:has(>li.is-style3) .content-style3-body > a::after {
    height: 2px !important;
}

.main-menu > ul > li.is-style1:hover > .sub-menu {
    display: grid;
    grid-template-columns: 40% 60%;
    padding: 25px 6%;
}

.main-menu > ul > li.is-style1:hover .menu-item-extra {
    display: grid;
    grid-template-columns: 65% 35%;
}

.main-menu > ul > li.is-style1:hover .menu-item-extra .menu-imagen {
    height: 250px;
    padding: 0 20px;
}

.main-menu > ul > li.is-style1:hover .menu-item-extra .menu-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.main-menu > ul > li.is-style1:hover .menu-item-extra .menu-item-descrip {
    color: var(--color-primary-2);
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    padding: 0 20px;
    font-size: 14px;
}

.main-menu > ul > li.is-style1:hover .menu-titulo-extra {
    display: block;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
}

.main-menu > ul > li.is-style1:hover .item-extra-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.main-menu > ul > li.is-style1:hover .item-extra-links .thumb-item {
    position: relative;
    width: 150px;
    height: 100px;
}

.main-menu > ul > li.is-style1:hover .item-extra-links .thumb-item .thumb-item-img {
    position: absolute;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.main-menu > ul > li.is-style1:hover .item-extra-links .thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.main-menu > ul > li.is-style1:hover .item-extra-links .thumb-item span {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--color-white);
    text-align: center;
}

.main-menu > ul > li.is-style1:hover .item-extra-links .overlay-extra {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    border-radius: var(--radius-md);
}

.main-menu > ul > li:hover > ul.sub-menu:has(>.is-style2) {
    display: flex;
    padding: 20px 40px;
}

.main-menu > ul > li:hover > ul.sub-menu:has(>.is-style2) > .is-style2 {
    display: grid !important;
    grid-template-columns: 40% auto;
    gap: 20px;
    padding: 0 20px;
}

.main-menu > ul > li:hover > ul.sub-menu:has(>.is-style2) > .is-style2:not(:last-child) {
    border-right: 1px solid var(--color-border);
}

.main-menu > ul > li:hover > ul.sub-menu:has(>.is-style2) .menu-header-thumb {
    height: 200px;
}

.main-menu > ul > li:hover > ul.sub-menu:has(>.is-style2) .menu-header-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.main-menu > ul li:hover .sub-menu:has(>li.is-style3) {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: absolute;
    left: 0;
    width: 100%;
    padding: 2rem;
}

.main-menu > ul li:hover .sub-menu:has(>li.is-style3) .menu-header-thumb {
    width: 200px;
    height: 120px;
    margin-bottom: 10px;
}

.main-menu > ul li:hover .sub-menu:has(>li.is-style3) .menu-header-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.main-menu > ul li:hover .sub-menu:has(>li.is-style3) .content-style3-body ul > li > a {
    font-size: 16px;
}

/* menu-gr-items */
.menu-gr-items .sub-menu li:not(.menu-item-has-children) > a {
    position: relative;
    display: block;
    padding: 8px 10px;
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast), padding-left var(--transition-fast), background-color var(--transition-fast);
}

.menu-gr-items .sub-menu li:not(.menu-item-has-children) > a:hover {
    color: #d9a441;
    padding-left: 16px;
    background-color: rgba(217, 164, 65, .08);
}

.menu-gr-items .sub-menu li:not(.menu-item-has-children) > a::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 50%;
    width: 0;
    height: 2px;
    background: #d9a441;
    transform: translateY(-50%);
    transition: width var(--transition-fast);
}

.menu-gr-items .sub-menu li:not(.menu-item-has-children) > a:hover::before {
    width: 6px;
}

/* mobile-header-wrapper-style */
.mobile-header-wrapper-style {
    opacity: 0;
    visibility: hidden;
    z-index: 100;
    position: fixed;
    inset: 0;
    width: 100%;
    min-height: 100vh;
    background-color: var(--color-white);
    transition: all .4s ease-in-out;
    transform: translateX(-100%);
    box-shadow: 0 0 15px rgba(0, 0, 0, .09);
}

.mobile-header-wrapper-style.sidebar-visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner {
    height: 100vh;
    padding: 0 0 30px;
    overflow: hidden auto;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: var(--color-primary);
}

/* mobile-menu-active */
body.mobile-menu-active #header {
    display: none;
}

/* mobile-header-wrapper-style */
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area {
    padding: 20px;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area hr {
    width: 98%;
    height: 1px;
    margin: 10px 0;
    border: 0;
    border-top: 1px solid;
    background: #ccc;
    color: var(--color-border);
    opacity: .25;
}

/* mobile-menu */
.mobile-menu {
    border-bottom: 1px solid #f1f1f1;
    margin: 0;
    padding: 0;
}

.mobile-menu li {
    display: block;
    position: relative;
    margin-bottom: 0;
    padding: 10px 0;
}

.mobile-menu li > a {
    display: block;
    position: relative;
    color: #444;
    text-transform: uppercase;
    font-size: 16.5px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
}

.mobile-menu li ul li a {
    display: block;
    position: relative;
    padding-left: 12px;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}

/* toprightbox */
.toprightbox.d-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

/* close-style */
button.close-style.search-close {
    background: #00193a;
}

/* searchmobiletop */
.searchmobiletop {
    width: 100%;
    padding: 16px;
}

.searchmobiletop .bOfFT {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 52px;
    overflow: hidden;
    border-radius: 999px;
    background: var(--color-white);
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: rgba(99, 99, 99, .2) 0 2px 8px 0;
}

.searchmobiletop .F1 {
    flex: 1;
    min-width: 0;
}

.searchmobiletop input[type=search] {
    width: 100%;
    height: 52px;
    padding: 0 18px;
    border: 0;
    outline: 0;
    background: 0 0;
    color: var(--color-primary);
    font-size: 15px;
    font-weight: 500;
}

.searchmobiletop .WIdth {
    flex: 0 0 auto;
    padding-right: 5px;
}

.searchmobiletop button[type=submit] {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: var(--color-gold);
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.searchmobiletop button[type=submit] svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
}

/* mobile-menu */
.mobile-menu .sub-menu ul.sub-menu {
    padding-left: 20px;
}

.mobile-menu > ul {
    padding: 10px 0 0 10px;
}

.mobile-menu > .menu-item-has-children > a {
    display: inline-block;
}

.mobile-menu > .menu-item-has-children::before {
    content: "\25BE";
    position: absolute;
    right: 10px;
    transition: transform var(--transition-fast);
}

.mobile-menu > .menu-item-has-children.open::before {
    transform: rotate(180deg);
}

.mobile-menu > .menu-item-has-children > .sub-menu {
    opacity: 0;
    visibility: hidden;
    display: none;
    transition: all var(--transition-fast);
}

.mobile-menu > .menu-item-has-children.open > .sub-menu {
    opacity: 1;
    visibility: visible;
    height: auto;
    margin-left: 15px;
    display: block;
}

.mobile-menu > .menu-item-has-children.open > a {
    color: var(--color-gold);
    font-weight: 700;
}

.mobile-menu .sub-menu > .menu-item-has-children > a {
    color: var(--color-primary-hover);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .6px;
    padding: 14px 28px 10px 0;
}

.mobile-menu .sub-menu > li {
    border-bottom: 1px solid #e9e9e9;
}

.mobile-menu .sub-menu > li:last-child {
    border-bottom: 0;
}

/* menu-header-thumb */
@media (max-width: 1024px) {
    .menu-header-thumb, .mobile-menu .menu-item-extra .menu-descripcion, .mobile-menu .menu-item-extra .menu-imagen, .mobile-menu .menu-item-extra .menu-titulo-extra, .mobile-menu .menu-item-extra .overlay-extra, .mobile-menu .menu-item-extra .thumb-item span {
        display: none !important;
    }
}

/* mobile-menu */
@media (max-width: 1024px) {
    .mobile-menu .menu-item-extra .item-extra-links {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        gap: 3px;
        margin-top: 10px;
    }

    .mobile-menu .menu-item-extra .thumb-item a {
        display: block;
        padding-left: 0;
    }

    .mobile-menu .menu-item-extra .thumb-item-img img {
        width: 100%;
        height: 100px;
        object-fit: cover;
        border-radius: 8px;
        display: block;
    }
}

.mobile-menu .content-style2-body > a, .mobile-menu .content-style3-body > a {
    display: block;
    color: var(--color-primary-hover);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .6px;
    padding: 14px 28px 10px 0;
    text-decoration: none;
}

.mobile-menu .menu-item-has-children.open .content-style2-body > a, .mobile-menu .menu-item-has-children.open .content-style3-body > a {
    color: var(--color-primary-hover);
}

/* mb-link-additional */
.mb-link-additional ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mb-link-additional li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #e9e9e9;
}

.mb-link-additional li:last-child {
    border-bottom: 0;
}

.mb-link-additional ul a {
    display: block;
    padding: 13px 0;
    color: #444;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
}

.mb-link-additional {
    margin-top: 10px;
}

.mb-link-additional ul a {
    display: block;
    position: relative;
    color: #444;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
}

/* flags_mobile */
.flags_mobile .wpml-lang-switcher {
    display: flex;
    flex-direction: row;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}

.flags_mobile .wpml-lang-switcher li {
    display: inline-flex;
}

.flags_mobile .wpml-lang-switcher img {
    width: 20px;
    height: 20px;
    object-fit: cover;
    display: block;
    border-radius: 3px;
}

/* swiper-slide */
.swiper-slide {
    height: auto !important;
}

/* swiper-pagination-bullet-active */
.swiper-pagination-bullet-active {
    background-color: var(--color-primary);
    width: 30px;
}

/* custom-accordion-item */
li.custom-accordion-item::before {
    display: none;
}

li.custom-accordion-item {
    padding-left: 0 !important;
}

/* card-booking */
.card-booking .price, .price.tp-mth {
    color: var(--color-primary);
    line-height: 1;
}

/* price */
.price.tp-mth {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

/* title */
span.title {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
}

/* price */
span.price {
    color: var(--color-black);
    font-size: 1.3rem !important;
    font-weight: 700;
}

/* footer-mountains-decoration */
.footer-mountains-decoration {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
    overflow: hidden;
}

.footer-mountains-decoration .footer-mountains-image {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    display: block;
}

/* section-footer */
.section-footer {
    color: #fff;
    background-color: #00224f;
}

.section-footer a {
    color: #fff;
}

/* contenedor-ft */
.contenedor-ft {
    grid-template-columns: repeat(5, 1fr);
    gap: 45px;
    width: 90%;
    max-width: 1450px;
    margin: 0 auto;
    padding: 20px 0;
    font-size: 14px;
    display: grid;
}

.contenedor-ft ul {
    list-style: none;
}

.contenedor-ft ul li {
    margin-bottom: 10px;
}

.contenedor-ft .brand3 {
    color: var(--color-gold);
    margin-bottom: 15px;
    font-size: 18px;
}

.contenedor-ft .brand3 strong {
    color: var(--color-gold);
}

.contenedor-ft .ft-phones {
    color: #fff;
    border-bottom: 1px dashed #fff;
    margin: 40px 0;
}

.contenedor-ft .ft-phones p {
    margin-bottom: 30px;
}

.contenedor-ft .ft-office .address-info, .contenedor-ft .ft-office .office-hours {
    border-bottom: 1px dashed #fff;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

/* copy-footer */
.copy-footer {
    color: #fff;
    text-align: center;
    background-color: #00142e;
    padding: 20px;
}

/* whatsapp-button */
.whatsapp-button {
    color: #fff;
    cursor: pointer;
    z-index: 1000;
    background-color: #25d366;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    text-decoration: none;
    transition: all .3s;
    display: flex;
    position: fixed;
    bottom: 80px;
    right: 12px;
    box-shadow: 0 4px 10px #00000040;
}

.whatsapp-button:hover {
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 14px #0000004d;
}

.whatsapp-button:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

.whatsapp-button .whatsapp-tooltip {
    color: #fff;
    opacity: 0;
    visibility: hidden;
    white-space: nowrap;
    background-color: #333;
    border-radius: 4px;
    padding: 5px 10px;
    font-size: 14px;
    transition: all .3s;
    position: absolute;
    right: 70px;
}

/* icon-acco */
.icon-acco {
    display: none;
}

/* ft-redes-sociales */
.ft-redes-sociales .ulsocial {
    gap: 20px;
    display: flex;
}

/* icon-acco */
.icon-acco {
    display: none;
}

/* header-mobile */
@media (min-width: 1025px) {
    .header-mobile {
        display: none;
    }
}

/* header-informations */
@media (max-width: 1024px) {
    .header-informations, .menu-main-desk {
        display: none;
    }
}

/* home */
@media (max-width: 1024px) {
    .home #header {
        z-index: 2;
        color: var(--color-white);
        width: 100%;
        top: 0;
    }

    .home #header .languages a, .home .header-mobile svg {
        color: var(--color-white);
        fill: var(--color-white);
    }
}

/* header-main */
@media (max-width: 1024px) {
    .header-main .logo {
        width: 150px;
    }

    .header-main .logo img {
        width: 100%;
        max-width: 170px;
    }
}

/* home */
@media (max-width: 1024px) {
    .home .header-main .logo {
        width: auto;
    }
}

/* gold-line-main-left */
@media (max-width: 1024px) {
    .gold-line-main-left {
        margin: 5px auto 0;
    }
}

/* contenedor-ft */
@media (max-width: 1024px) {
    .contenedor-ft {
        text-align: center;
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* whatsapp-contact */
@media (max-width: 768px) {
    .whatsapp-contact a {
        width: 100%;
        justify-content: center;
        padding: 14px 18px;
    }
}

/* whatsapp-number */
@media (max-width: 768px) {
    .whatsapp-number {
        font-size: 16px;
    }
}

/* contenedor-desk */
@media (max-width: 576px) {
    .contenedor-desk {
        width: var(--container-width-mobile);
    }
}

/* icon-acco */
@media (max-width: 576px) {
    .icon-acco {
        float: right;
        display: block;
    }
}

/* ft-accordeon-title */
@media (max-width: 576px) {
    .ft-accordeon-title {
        cursor: pointer;
        text-align: start;
        text-transform: uppercase;
        border-bottom: 1px solid #2e4270;
    }
}

/* ft-accordeon-content */
@media (max-width: 576px) {
    .ft-accordeon-content {
        display: none;
    }

    .ft-accordeon-content.active {
        display: block;
    }
}

/* breadcrumb_last */
@media (max-width: 480px) {
    .breadcrumb_last {
        color: #767676;
        font-weight: 600;
    }
}

/* footer-mountains-image */
@media (min-width: 769px) {
    .footer-mountains-image {
        object-fit: cover;
        object-position: center;
    }
}

/* header */
header#header {
    position: relative;
    background: var(--color-primary);
}

/* nav */
nav#menu {
    position: relative;
    top: auto;
    left: auto;
    z-index: 90;
    width: 100%;
    background: var(--color-primary);
    border-top: 1px solid rgba(255, 255, 255, .12);
}

/* home */
body.home .hero-image, body.home .hero-image img, body.home .hero-media, body.home .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

body.home .hero-image img, body.home .hero-video {
    object-fit: cover;
}

body.home .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, .85) 0, rgb(0 0 0 / 60%) 35%, rgb(0 0 0 / 21%) 65%, rgba(0, 0, 0, 0) 100%);
}

body.home .hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: end;
    padding-top: 80px;
}

body.home .hero-text {
    max-width: 760px;
}

/* ft-accordeon-title */
@media (max-width: 768px) {
    .ft-accordeon-title {
        cursor: pointer;
    }
}

/* ft-accordeon-content */
@media (max-width: 768px) {
    .ft-accordeon-content, .ft-redes-sociales .ulsocial {
        display: none !important;
    }
}

/* ft-accord */
@media (max-width: 768px) {
    .ft-accord.active .ft-accordeon-content, .ft-accord.active .ulsocial {
        display: block !important;
    }

    .ft-accord .icon-acco {
        transition: transform .25s ease;
    }

    .ft-accord.active .icon-acco {
        transform: rotate(180deg);
    }

    .ft-accord.active .ulsocial {
        display: flex !important;
        align-items: center;
        gap: 14px;
        flex-wrap: nowrap;
    }

    .ft-accord.active .ulsocial li {
        display: inline-flex;
    }
}

/* trip-summary-timeline */
.trip-summary-timeline {
    position: relative;
}

.trip-summary-timeline::before {
    content: "";
    position: absolute;
    top: 45px;
    bottom: 25px;
    left: 15px;
    border-left: 1px dashed var(--color-gold);
}

.trip-summary-timeline .timeline-day-title {
    position: relative;
    z-index: 1;
    margin: 44px 0 22px;
    padding-left: 58px;
    color: var(--color-primary);
    font-size: 18px;
    font-weight: 500;
}

.trip-summary-timeline .timeline-day-title::before {
    content: attr(data-day);
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--color-gold);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 14px;
    font-weight: 500;
    transform: translateY(-50%);
}

.trip-summary-timeline .timeline-day-title::after {
    display: none;
}

.trip-summary-timeline ol, .trip-summary-timeline p, .trip-summary-timeline ul {
    margin-left: 58px;
    margin-bottom: 16px;
}

.trip-summary-timeline ol, .trip-summary-timeline ul {
    padding-left: 50px;
}

/* trainhotel-section */
.trainhotel-section {
    margin: 70px 0;
}

/* trainhotel-tab */
.trainhotel-tab {
    position: relative;
    bottom: -1px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 22px;
    border: 1px solid transparent;
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
    background: 0 0;
    color: #00193a;
    font-weight: 600;
    cursor: pointer;
    transition: .25s ease;
}

.trainhotel-tab.active, .trainhotel-tab:hover {
    background: #fff;
    border-color: #d9dee8;
    color: #00193a;
}

.trainhotel-tab.active::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: -1px;
    height: 2px;
    background: #fff;
}

/* trainhotel-panel */
.trainhotel-panel {
    display: none;
    grid-template-columns: 320px 1fr;
    gap: 0;
    overflow: hidden;
    border-radius: 0 0 18px 18px;
    background: #fff;
    box-shadow: 0 14px 35px rgba(0, 0, 0, .1);
}

.trainhotel-panel.active {
    display: grid;
}

/* trainhotel-section */
@media (max-width: 768px) {
    .trainhotel-section {
        margin: 50px 0;
    }
}

/* trainhotel-tab */
@media (max-width: 768px) {
    .trainhotel-tab {
        bottom: 0;
        width: 100%;
        justify-content: flex-start;
        white-space: normal;
        padding: 12px 5px;
        border: 1px solid #d9dee8;
        border-radius: 10px;
        font-size: 14px;
        text-align: center;
        flex-direction: column;
    }

    .trainhotel-tab.active::after {
        display: none;
    }
}

/* trainhotel-panel */
@media (max-width: 768px) {
    .trainhotel-panel.active {
        grid-template-columns: 1fr;
        border-radius: 16px;
    }
}

/* tour-title */
.tour-title {
    margin: 0;
    color: #fff;
    font-size: clamp(35px, 2vw, 50px);
    font-weight: 700;
    line-height: 1;
}

@media (max-width: 600px) {
    .tour-title {
        font-size: clamp(34px, 9vw, 46px);
    }
}

/* modal-open */
body.modal-open {
    overflow: hidden;
}

/* ══════════════════════════════════════════════════════
   Procedente de general.css
   ══════════════════════════════════════════════════════ */

/* page-template-page-templatespage-tour-new2024-php */
body.page-template-page-templatespage-tour-new2024-php #header, body.post-type-archive-travel-news #header, body.single-blog #header, body.single-travel-news #header {
    position: relative;
    z-index: 100;
    background: #00193a;
}

body.page-template-page-templatespage-tour-new2024-php #menu, body.post-type-archive-travel-news #menu, body.single-blog #menu, body.single-travel-news #menu {
    position: relative;
    top: auto;
    left: auto;
    z-index: 90;
    width: 100%;
    border-top: 1px solid #303030b8;
}

body.page-template-page-templatespage-tour-new2024-php .section-main-tour, body.post-type-archive-travel-news .section-lasted-new, body.single-blog .banner-blog-post, body.single-blog .blog-sld, body.single-travel-news .section-news {
    margin-top: 0;
}

/* page-template-page-templatespage-viajes-uros-php */
body.page-template-page-templatespage-viajes-uros-php #header, body.page-template-page-templatespage-viajes-uros-php #menu {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
}

body.page-template-page-templatespage-viajes-uros-php #header {
    z-index: 100;
    background: #00193a;
}

body.page-template-page-templatespage-viajes-uros-php #menu {
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    background: var(--color-primary);
    border-top: 1px solid #303030b8;
}

body.page-template-page-templatespage-viajes-uros-php #slider, body.page-template-page-templatespage-viajes-uros-php .main-hero, body.page-template-page-templatespage-viajes-uros-php .uro-hero {
    margin-top: 0;
}

/* list-group-item */
.list-group-item.active, .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #00224f !important;
    background-color: var(--color-gold) !important;
}

/* inquiryFroms */
.inquiryFroms div.wpforms-container-full input[type=checkbox]:before, div.wpforms-container-full input[type=radio]:before {
    border-radius: 8px;
}

/* trip-summary-timeline */
.trip-summary-timeline.no-timeline::after, .trip-summary-timeline.no-timeline::before {
    display: none !important;
}

/* tabs-tour-info */
.tabs-tour-info {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 15px;
    width: 100%;
    margin: 0;
    padding: 8px 10px 5px;
    box-shadow: none;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #0000003d #e5e5e5;
}

.tabs-tour-info::-webkit-scrollbar {
    height: 5px;
}

.tabs-tour-info::-webkit-scrollbar-track {
    background: #e5e5e5;
    border-radius: 999px;
}

.tabs-tour-info::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 999px;
}

.tabs-tour-info li {
    flex: 0 0 auto;
    list-style: none;
}

/* tour-tab-panel */
.tour-tab-panel {
    scroll-margin-top: 120px;
}

/* modal */
.modal {
    padding: 5px;
    z-index: 1050;
    background: #0009;
    width: 100%;
    height: 100%;
    transition: opacity .3s;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    overflow: auto;
}

.modal.show {
    display: block;
}

@keyframes fadeIn {

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

}

/* tabs-tour-info */
@media (max-width: 1024px) {
    .tabs-tour-info {
        top: 0;
    }
}

/* header-info */
.header-info {
    text-align: center;
}

.header-info h2 {
    color: #00193a !important;
    font-size: clamp(1rem, 2vw + .5rem, 1.75rem) !important;
}

/* wpforms-submit-container */
.wpforms-submit-container {
    text-align: center !important;
}

/* wpforms-container-full */
div.wpforms-container-full button[type=submit] {
    color: #000;
    text-transform: uppercase;
    background-color: var(--color-gold);
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s;
    display: inline-block;
}

div.wpforms-container-full button[type=submit] svg {
    vertical-align: middle;
}

div.wpforms-container-full button[type=submit]:hover {
    color: #000;
    background-color: #f59e0b;
    transform: translateY(-1px);
}

/* custom-accordion-item */
.custom-accordion-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px #0000000d;
}

/* custom-accordion-header */
.custom-accordion-header {
    margin: 0;
}

@keyframes promoFadeUp {

@keyframes promoFadeUp {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

}
@keyframes promoFloat {

@keyframes promoFloat {
    0%, 100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-6px)
    }
}

}
@keyframes attract-shake-strong {

@keyframes attract-shake-strong {
    0% {
        transform: translateX(0) rotate(0)
    }

    5% {
        transform: translateX(-7px) rotate(-6deg)
    }

    10% {
        transform: translateX(7px) rotate(6deg)
    }

    15% {
        transform: translateX(-7px) rotate(-6deg)
    }

    20% {
        transform: translateX(7px) rotate(6deg)
    }

    25% {
        transform: translateX(-5px) rotate(-4deg)
    }

    30% {
        transform: translateX(5px) rotate(4deg)
    }

    35% {
        transform: translateX(0) rotate(0)
    }

    100% {
        transform: translateX(0) rotate(0)
    }
}

}

/* #slider */
#slider, #sobre-nosotros, #tours-paquetes {
    scroll-margin-top: 100px;
}

@keyframes vibrate-3 {

@keyframes vibrate-3 {
    0% {
        transform: translate(0)
    }

    20% {
        transform: translate(-2px, 2px)
    }

    40% {
        transform: translate(-2px, -2px)
    }

    60% {
        transform: translate(2px, 2px)
    }

    80% {
        transform: translate(2px, -2px)
    }

    100% {
        transform: translate(0)
    }
}

}

/* mobile-menu-active */
body.mobile-menu-active:has(.nav-viaj-main) {
    overflow: hidden;
}

/* single-blog */
body.single-blog table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin: 30px 0 !important;
    border: 1px solid #000 !important;
    table-layout: auto !important;
    background-color: transparent !important;
}

body.single-blog th {
    padding: 15px !important;
    border: 1px solid #00193a !important;
    text-align: left !important;
    color: #fff !important;
    background: #fff !important;
    width: auto !important;
    vertical-align: middle !important;
}

body.single-blog td {
    padding: 15px !important;
    border: 1px solid #00193a !important;
    text-align: left !important;
    color: #00193a !important;
    background: #fff !important;
    width: auto !important;
    vertical-align: middle !important;
}

body.single-blog th, body.single-blog thead th {
    background-color: #00193a !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
}

@media screen and (max-width: 768px) {
    body.single-blog thead {
        display: none !important;
    }

    body.single-blog table, body.single-blog tbody, body.single-blog td, body.single-blog tr {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }

    body.single-blog table {
        border: none !important;
        margin-bottom: 40px !important;
    }

    body.single-blog tr {
        margin-bottom: 30px !important;
        border: 2px solid #00193a !important;
        border-radius: 10px !important;
        overflow: hidden !important;
        background: #fff !important;
        box-shadow: 0 4px 8px rgba(0, 0, 0, .1) !important;
    }

    body.single-blog td {
        text-align: center !important;
        border: none !important;
        border-bottom: 1px solid #eee !important;
        padding: 12px 15px !important;
        color: #333 !important;
        min-height: 40px !important;
    }

    body.single-blog td:first-child {
        background-color: #00193a !important;
        color: #fff !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        font-size: 16px !important;
        padding: 15px !important;
        border-bottom: none !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    body.single-blog td:first-child b {
        color: #fff !important;
    }

    body.single-blog td:last-child {
        border-bottom: none !important;
    }
}

/* modal */
.modal {
    z-index: 9999 !important;
}

/* #myModalenquire */
#myModalenquire {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    padding: 24px;
    background: rgba(0, 0, 0, .55);
    overflow-y: auto;
}

/* show */
#myModalenquire.show {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

/* header */
@media only screen and (max-width: 480px) and (orientation: portrait) {
    header#header {
        height: 70px !important;
    }
}

/* whatsapp-button */
@media only screen and (max-width: 480px) and (orientation: portrait) {
    .whatsapp-button {
        width: 45px;
        height: 45px;
        bottom: 145px;
    }
}

@media only screen and (max-width: 812px) and (orientation: landscape) and (max-height: 480px) {
    .whatsapp-button {
        display: none;
    }
}

/* slider-reviews */
.slider-reviews .card {
    background: linear-gradient(180deg, #fff 0, #f7f9fb 100%);
    border: 1px solid rgba(0, 0, 0, .05);
    border-radius: var(--border-radius-lg);
    padding: 1.25rem 1.5rem;
    max-width: 420px;
    margin: 1.5rem auto;
    font-family: var(--font-sans);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
}

.slider-reviews .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.slider-reviews .avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #ff7a3d 0, #ffc371 100%);
    box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
    flex-shrink: 0;
}

.slider-reviews .user-info {
    margin-left: 12px;
    flex: 1;
}

.slider-reviews .user-name {
    font-size: 15px;
    font-weight: 500;
    color: #1f2937;
    margin: 0;
}

.slider-reviews .user-date {
    font-size: 13px;
    color: #6b7280;
    margin: 2px 0 0;
}

.slider-reviews .stars {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
}

.slider-reviews .star-row {
    display: flex;
    gap: 3px;
}

.slider-reviews .star {
    margin-right: 2px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #00c27a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-reviews .review-title {
    min-height: 45px;
    font-size: 15px;
    font-weight: 500;
    color: #111827;
    margin: 0 0 6px;
}

.slider-reviews .review-body {
    font-size: 14px;
    line-height: 1.65;
    color: #4b5563;
    margin: 0;
}

.slider-reviews .review-wrapper {
    position: relative;
    overflow: hidden;
    transition: max-height .5s ease;
    max-height: 72px;
}

.slider-reviews .review-wrapper.expanded {
    max-height: 400px;
}

.slider-reviews {
    margin-bottom: 20px;
    padding-top: 40px;
    position: relative;
    padding-bottom: 20px;
}

.slider-reviews .swiper-button-next.nextp {
    right: 5px !important;
    position: absolute;
    top: 30px;
    transition: all .3s;
    box-shadow: 0 0 5px #00000040;
    padding: 10px;
    border: 1px solid #d7d7d7;
    width: 40px;
    height: 40px;
    border-radius: 509%;
}

.slider-reviews .swiper-button-next.nextp {
    box-shadow: 0 0 10px #00000040;
}

.slider-reviews .swiper-button-prev.prevp {
    left: 92% !important;
    position: absolute;
    top: 30px;
    transition: all .3s;
    box-shadow: 0 0 5px #00000040;
    padding: 10px;
    border: 1px solid #d7d7d7;
    width: 40px;
    height: 40px;
    border-radius: 509%;
}

.slider-reviews .swiper-button-prev.prevp {
    box-shadow: 0 0 10px #00000040;
}

.slider-reviews .swiper-button-next.nextp path {
    fill: #bdbdbd;
}

.slider-reviews .swiper-button-prev.prevp path {
    fill: #bdbdbd;
}

.slider-reviews .avatar img {
    width: 100%;
    height: 100%;
}

.slider-reviews .dots {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* dots */
.dots {
    width: fit-content;
    margin: 14px auto;
    display: flex;
    gap: 12px;
    align-items: center;
}

.dots span {
    width: 16px !important;
    height: 16px !important;
    border: 3px solid #00b894;
    border-radius: 50%;
    background: #00b894;
}

/* rev-title */
p.rev-title {
    font-size: 1.4rem;
    line-height: 1rem;
    font-weight: 900 !important;
}

/* trip_logo */
.trip_logo svg {
    width: 140px;
}

/* btn-tripadvisor */
a.btn-tripadvisor {
    color: #198754;
    border-bottom: 1px solid #19875440;
    padding-bottom: 2px;
}

a.btn-tripadvisor b {
    color: #198754;
    border-bottom: 1px solid #19875440;
    padding-bottom: 2px;
}

/* slider-reviews */
@media (max-width: 480px) {
    .slider-reviews .swiper-button-prev.prevp {
        left: 70% !important;
    }
}

/* section-review */
section.section-review {
    padding: 45px 0;
    margin: 0 auto;
    max-width: 1300px;
    align-items: center;
    text-align: center;
}

/* tour-tab-panel */
.tour-tab-panel {
    display: none;
}

.tour-tab-panel.is-active {
    display: block;
}
