header {
    position: sticky; 
    right: 0; 
    left: 0;
    top: 0px;
    height: 10rem;
    display: flex; 
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-right: calc(1rem * 0);
    background-color: var(--main-color);
    z-index: 1000;
}
@media (max-width: 550px) {
	header {
		min-height: 90px;
		height: 4rem;
	}
}
@media (max-height: 450px) {
	header {
		min-height: 90px;
		height: 4rem;
	}
}

.header-icon {
    flex: 0 0 auto;
    display: flex; 
    flex: none; 
    align-items: center;
}

.header-desktop {
    flex: 1 1 auto;
    margin-left: calc(1.25rem * calc(1 - 0));
    margin-right: 9px;
    display: none; 
    flex-basis: 80%; 
    flex-wrap: wrap; 
    align-items: center; 
    justify-content: space-around; 
    font-size: 1.125rem; 
    line-height: 1.75rem;
    text-decoration: none;
}

.header-redirect {
    padding: 0.33rem;
    font-size: 1.25rem; 
    line-height: 1.75rem; 
    color: var(--text-header-color); 
    text-decoration: none;
}
.header-redirect:hover {
    color: rgb(255,255,255); 
    text-decoration: underline;
}

.mobile-header-wrapper {
    margin-left: auto;
    display: flex;
    align-items: center;
    margin-right: 3rem;
}

.header-menu-button {
    border: 1px solid white;
    background-color: transparent;
    color: white;
    font-size: 1.5rem;  
    width: 3rem; 
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
}

.header-redirect-2 {
    display: block; 
    padding-left: 1.5rem; 
    padding-right: 1.5rem; 
    padding-top: 1rem; 
    padding-bottom: 1rem; 
    font-weight: 500; 
    color: var(--text-primary-color);
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; 
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    display: block;
    text-decoration: none;
}
.header-redirect-2:hover {
    text-decoration: underline;
    color: rgb(25,89,5); 
    background-color: rgb(243,244,246);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-color: rgb(255,255,255);
    z-index: 9000;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);

    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-img {
    height: 3rem; 
    justify-content: flex-end;
}

.mobile-menu-top {
    display: flex; 
    align-items: center; 
    justify-content: flex-end; 
    background-color: rgb(6,112,49);
}

.mobile-menu-overlay {
    position: fixed; 
    inset: 0; 
    z-index: 8800; 
    display: none; 
    background-color: rgb(0,0,0,0.3);
}
.mobile-menu-overlay.active {
    display: block;
}

.header-inner {
    width: 100%;
    padding-right: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between; 
}

@media (max-width: 1300px) {
    .basic-header {
        height: 6.25rem;
    }
}
@media (max-width: 450px) {
    .mobile-header-wrapper {
        margin-right: 0.2rem;
    }
}

@media (max-width: 375px) {
    .mobile-header-wrapper {
        display: flex;
        align-items: right;
        margin-right: 4px;
    }
}
@media (min-width: 1300px) {
    .header-desktop {
        display: flex;
    }
    .mobile-header-wrapper {
        display: none;
    }
}
@media (min-width: 450px) {
    .header-inner{
        padding-left: 2rem;
    }
}


.desktop-settings {
	position: relative;
	display: inline-block;
	z-index: 1000;
}

.settings-dropdown {
	overflow-y: visible;
	position: absolute;
	right: 0;
	top: 100%;
	background-color: var(--bck-main-color);
	border: 1px solid var(--border-inverse-color);
	border-radius: 4px;
	padding: 1rem;
	z-index: 1000;
	width: 120px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3rem;
}

.settings-item {
	margin-bottom: 1rem;
	width: 100%;
	display: flex;
	justify-content: center;
    box-sizing: border-box;
}

.menu-button {
    display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	border-radius: 4px;
	transition: background-color 0.2s;
}
.menu-button:hover {
  	background-color: rgba(255, 255, 255, 0.1);
}
@media (min-width: 1300px) {
  .menu-button {
      display: flex;
  }
}

.menu-icon,
.icon-button {
	width: 48px;
	height: 48px;
}

/* Language */
.language-wrapper {
	position: relative;
	display: inline-flex;
	align-items: center;
}

.language-anchor {
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	z-index: 2;
}

.language-canvas {
	background: var(--bck-main-color);
	padding: 14px 14px;
	border-radius: 6px;
	overflow-x: visible;
}

.language-row {
	display: flex;
	gap: 1.85rem;
	margin-right: 1.5rem;
}
@media (max-width: 1300px) {
    .language-row {
	    margin: 0.5rem;
    }
}

.language-item {
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
}

@media (max-width: 450px) {
    .language-row {
        flex-direction: column;
    }
}




.theme-toggle {
  	cursor: pointer;
}

.sun-icon {
	transform: translateX(0);
	opacity: 0;
	transition: opacity 0s linear;
}

.moon-icon {
	transform: translateX(0);
	opacity: 1;
	transition: opacity 0s linear;
}

.theme-toggle:not(.dark-mode) .moon-icon {
	transform: translateX(-15px);
	opacity: 0;
	transition: opacity 0.3s ease, transform 0.3s ease;
}
.theme-toggle:not(.dark-mode) .sun-icon {
	opacity: 1;
	transition-delay: 0.3s;
}

.theme-toggle.dark-mode .sun-icon {
	transform: translateX(15px);
	opacity: 0;
	transition: transform 0.3s ease, opacity 0.3s ease;
}
.theme-toggle.dark-mode .moon-icon {
	opacity: 1;
	transition-delay: 0.3s;
}


.icon-button {
	background: none;
	border: none;
}
.icon-wrapper {
	position: relative;
	display: inline-block;
}
.cross-line {
	position: absolute;
	top: -5px;
	left: -5px;
	opacity: 0;
	transition: opacity 0.2s;
}

.cross-line.show-line {
  	opacity: 1;
}



/* Mobile header */
.mobile-button {
    display: flex;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	border-radius: 4px;
	transition: background-color 0.2s;
}
.mobile-button:hover {
  	background-color: rgba(255, 255, 255, 0.1);
}
@media (min-width: 1300px) {
    .mobile-button {
        display: none;
    }
}

.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 44%;
    height: 100%;
    background-color: var(--bck-surface-color2);
    border-left: 1px solid #333;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 9000;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: start;
    overflow-y: scroll;
    min-width: 120px;
}
.sidebar.active {
    transform: translateX(0);
    margin-right: 0.4rem;
}
.sidebar nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar nav li {
    padding: 0.75rem 1rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.sidebar nav li:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 375px) {
    .sidebar.active {
        margin-right: 0.2rem;
    }
    .header-redirect-2 {
        padding: 0.75rem 0.25rem;
    }
}

.mobile-separator {
    margin-top: 2rem;
}

.theme-toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  outline: none;
}

.theme-toggle-btn:focus-visible {
  outline: 2px solid var(--text-primary-color);
  border-radius: 13px;
  outline-offset: 2px;
}

.html-css-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    max-width: 740px;
    margin: 0 auto;
    clear: both;
}

.html-css-2 {
    width: 360px;
    height: 240px;
    object-fit: cover;
}

.html-css-3 {
    font-size: 13px;
}

.html-css-4 {
    font-size: 1em;
}

.html-css-5 {
    background-color: var(--body-bg-color);
    color: var(--body-text-color);
    font-family: var(--body-font-family);
    font-size: var(--body-font-size);
    font-style: var(--body-font-style);
    font-weight: var(--body-font-weight);
    letter-spacing: var(--body-letter-spacing);
    caret-color: auto;
}

.html-css-6 {
    border: 0px solid;
    list-style: none;
    margin: 0px;
    padding: 0px 0px 0.5rem;
    color: #161c23;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: normal;
    orphans: 2;
    text-align: start;
    text-indent: 0px;
    text-transform: none;
    widows: 2;
    word-spacing: 0px;
    white-space: normal;
    background-color: #ffffff;
}

.html-css-7 {
    border: 0px solid;
}

.html-css-8 {
    margin: 8px auto;
    display: block;
}

.html-css-9 {
    font-size: 11px;
}

.html-css-10 {
    float: left;
    margin: 0 46px 8px 0;
}

.html-css-11 {
    margin: 4px;
    vertical-align: middle;
}

.html-css-12 {
    vertical-align: middle;
    margin: 4px;
}

.html-css-13 {
    float: left;
    margin: 8px;
}

.html-css-14 {
    font-size: x-small;
}

.html-css-15 {
    margin: 8px;
    float: right;
}

.html-css-16 {
    text-align: left;
}

.html-css-17 {
    position: absolute;
    left: 0px;
    top: 241.667px;
    width: 10px;
    height: 10px;
    overflow: hidden;
}

.html-css-18 {
    font-size: 10.0pt;
    font-family: 'Bitstream Vera Sans Mono';
}

.html-css-19 {
    float: left;
}

.html-css-20 {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.html-css-21 {
    list-style-type: circle;
}

.html-css-22 {
    text-align: left;
    padding: 24px;
}

.html-css-23 {
    font-size: 14pt;
}

.html-css-24 {
    list-style-type: disc;
}

.html-css-25 {
    float: right;
    padding-left: 8px;
    padding-right: 10px;
}

.html-css-26 {
    display: block;
    margin: 12px auto;
}

.html-css-27 {
    margin-top: 12px;
    margin-bottom: 12px;
    float: left;
}

.html-css-28 {
    margin: 12px;
    float: right;
}

.html-css-29 {
    padding-left: 30px;
}

.html-css-30 {
    margin: 8px;
    vertical-align: baseline;
    float: left;
}

.html-css-31 {
    margin-top: 0px;
    margin-bottom: 1rem;
}

.html-css-32 {
    font-size: 21px;
    margin-top: 1.25rem;
    margin-bottom: 0.625rem;
    font-family: Barlow;
    font-weight: 500;
    line-height: 1.333;
    color: #333333;
    letter-spacing: normal;
    font-style: normal;
    orphans: 2;
    text-align: left;
    text-indent: 0px;
    text-transform: none;
    white-space: normal;
    widows: 2;
    word-spacing: 0px;
}

.html-css-33 {
    margin-top: 0px;
    margin-bottom: 1rem;
    color: var(--text-secondary-color2);
    font-family: Barlow;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: normal;
    orphans: 2;
    text-align: left;
    text-indent: 0px;
    text-transform: none;
    white-space: normal;
    word-spacing: 0px;
}

.html-css-34 {
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
}

.html-css-35 {
    color: #000;
}

.html-css-36 {
    font-size: 20px;
}

.html-css-37 {
    float: left;
    width: 100%;
}

.html-css-38:has(span.alert-primary) {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.alert-primary {
    color: var(--text-html-color);
}

.alert-primary strong {
    font-weight: 700;
}

.alert-secondary {
    color: var(--text-html-color);
    gap: 1rem;
    margin-top: 1rem;
    font-weight: 680;
}

.html-info {
    margin-top: 1rem;
}



@media(min-width: 865px) {
    .html-css-39 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 0;
        height: 405px;
    }

    .html-css-40 {
        grid-column: 1;
        height: auto;
    }
    .html-css-40:nth-child(1) {
        grid-row: 1;
    }
        .html-css-40:nth-child(2) {
        grid-row: 2;
    }

    .html-css-41 {
        grid-column: 2;
        grid-row: 1 / span 2;
        height: 100%;
        overflow-y: hidden;
        align-self: stretch;
    }
}

@media(max-width: 865px) {
    .html-css-41 {
        width: 360px;
        object-fit: cover;
        overflow-x: hidden;
    }
}

.html-css-42 {
    max-width: 660px;
    max-height: 540px;
    object-fit: cover;
}

.html-css-43 {
    max-width: 660px;
    max-height: 540px;
    object-fit: cover;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.html-css-44 {
    content: "";
    display: table;
    clear: both;
}

.html-css-45 {
    width: 360px;
    height: 240px;
    object-fit: cover;   
    float: left;
    margin: 0 46px 8px 0;
}

.html-css-46 {
    list-style: none;
    padding-left: 0;
    margin: 2rem 0;
}
.html-css-46 li {
    margin-bottom: 0.8rem;
    margin-left: 2rem;
}

.html-space-top {
    padding-top: 15rem;
}

.main-intro {
    background-color: #0a6f79;
    box-sizing: border-box;
    margin-top: -3rem;
    margin-left: -1rem;
    margin-left: -1rem;
    padding: 190px;
    width: calc(100% + 2rem);

    display: flex;
    justify-content: center;
    justify-items: center;
}

.main-intro-text {
    color: white;
    flex: 1 1 400px;
}

ul.custom-check li {
    list-style: none;
    position: relative;
    padding-left: 3rem;
}

ul.custom-check li::before {
    content: "✓";
    display: inline-block;
    width: 1.2rem;
    height: 1.2rem;
    border: 2px solid #28630d;
    text-align: center;
    line-height: 1.1rem;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 0.2rem;
    font-weight: bold;
    transform: translateY(50%);
}
.sub-li {
    color: var(--text-secondary-color);
    padding: 1rem;
}

.main-intro-image {
    display: block;
    max-width: 100%;
    height: auto;
}

.main-authentic {
    display: flex;
    flex-direction: row;
    justify-content: center;
    justify-items: center;
    padding: 20px;
}

.main-authentic-image img {
    width: 100%;
    max-width: 650px;
    height: auto;
}

.main-authentic-text {
    margin: 50px;
    max-width: 772px;
}

.main-text {
    color: var(--text-secondary-color2);
}

.redirect-but {
    max-width: 190px;
    padding: 1em;
    border-radius: 14px;
    background: #067031;
    color: white;
    text-decoration: none;

    display: flex;
    align-items: center;
    justify-content: center;
}
.redirect-but:hover {
    color: white;
    background: #3f7555;
}


.reason-top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.reason-top-title-text {
    font-size: 12px;
    border-radius: 30px;
    font-weight: 700;
    padding: 8px 20px;
    color: #067031;
    background: #eafff8;
}

.reason-title-text {
    font-size: 18px;
}
.reason-title-text-2 {
    font-size: larger;
}

.reason-main-padder {
    padding-left: 1rem;
    padding-right: 1rem;
}

.reasons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.reason {
    padding: 1rem;
    margin: 1rem;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background: #fafafa;
    background-color: var(--bck-surface-color2);
}

.reason-circle {
    height: 88px;
    width: 88px;
    line-height: 88px; 
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    font-size: 36px;
    font-weight: 300;
    background: #eafff8;
    color: #067031;
}

.reason-sub-title-text {
    font-size: 24px;
    font-weight: 200;
    text-align: center;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.uppercase {
    text-transform: uppercase;
}

.home-recommendations {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.recommended-roundtrips,
.recommended-hotels,
.recommended-others {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    margin-bottom: 5rem;
    margin-left: 1rem;
    margin-right: 1rem;
}

.rec-headers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  @media (max-width: 768px) {
    flex-direction: column;
    align-items: stretch;

    .rec-header {
      margin: 0.25rem 0;
      text-align: center;
    }
  }
}

.rec-header {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0.5rem 1rem;
    margin: 0.5rem;
    border-radius: 12px;
    transition: opacity 0.15s ease, background-color 0.15s ease;
    color: var(--text-primary-color);


    &:hover {
        opacity: 1;
        background-color: var(--sub-color);
        color: var(--text-primary-inverted-color);
    }

    &.is-active {
        opacity: 1;
        background-color: var(--sub-color);
        color: var(--text-primary-inverted-color);
    }
}
.rec-header h3 {
    margin: 0.4rem;
}

.is-hidden {
    display: none;
}

.article-home {
	padding: 1rem;
	margin: 1rem;
	max-width: 480px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	background: #fafafa;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    background-color: var(--bck-surface-color2);
}

.rec-headers {
    display: flex;
    justify-content: center;
}

.reccom-title {
    text-align: center;
}

@media(max-width: 772px) {
    .main-intro {
        padding: 80px;
    }
    .recommended-roundtrips,
    .recommended-hotels,
    .recommended-others {
        margin-left: 0;
        margin-right: 0;
    }
    .article-home {
        margin-left: 0rem;
        margin-right: 0rem;
    }
}
@media (max-width: 1150px) {
    .main-intro-image {
        display: none;
    }
    .main-authentic {
        flex-direction: column-reverse;
    }
    .article-home {
        padding: 1rem;
        margin: 1rem;
        max-width: 380px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        background: #fafafa;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        background-color: var(--bck-surface-color2);
    }
}
@media(max-width: 1600px) {
    .main-intro-image img {
        width: 100%;
        height: auto;
        max-width: 600px;
    }
}
@media(min-width: 1300px) {
    .main-authentic {
        padding: 120px;
    }
}

:root {
    --main-color: #0a6f79;
    --sub-color: #00dd51;
    --bck-main-color: #121212d8;
    --bck-main-color-no-inv: #121212;
    --bck-main-color2: #1a1a1a;
    --bck-surface-color: #171717f0;
    --bck-surface-color2: #3b3838;
    --bck-surface-color3: #858585d8;
    --bck-surface-color4: #6c6f6fd8;
    --text-primary-color: #e0e0e0;
    --text-primary-inverted-color: black;
    --text-secondary-color: #f8f8f8;
    --text-secondary-color2: #f5f5f5;
    --text-interactive-color: #4db8c1;
    --text-price-color: #48c9b0;
    --text-redirect-color: #88a3e8;
    --text-redirect-color2: #9bb4f1;
    --text-header-color: #ffffff;
    --text-success-color: #35df12;
    --text-html-color: #b8e4cb;
    --button-submit-color: #6bab46;
    --button-submit-color2:#447727;
    --border-inverse-color: #ddd;
    --cookie-accept-button-color: #4dc01f;
}
:root.light-mode {
    --sub-color: #3d7e0a;
    --bck-main-color: #fffffffc;
    --bck-main-color-no-inv: #ffffff;
    --bck-main-color2: #eeeded;
    --bck-surface-color: #f5f5f5f0;
    --bck-surface-color2: #fcf9f9;
    --bck-surface-color3: #a2a2a2d8;
    --bck-surface-color4: #d5e8e4d8;
    --text-primary-color: black;
    --text-primary-inverted-color: white;
    --text-secondary-color: #f7f7f7;
    --text-secondary-color2: #0e0e0e;
    --text-interactive-color: #067031;
    --text-price-color: #15e01c;
    --text-redirect-color: #1a6bbf;
    --text-redirect-color2: #2b489d;
    --text-header-color: #fafafa;
    --text-success-color: green;
    --text-html-color: #013b19;
    --button-submit-color: #b3cda4d8;
    --border-inverse-color: #232323;
    --cookie-accept-button-color: #29790a;
}

html, body {
    margin: 0;
    height: 100%;
    min-height: 100vh;
    background-color: var(--bck-main-color);
    color: var(--text-primary-color);
}

a {
    color: var(--text-redirect-color);
    text-decoration: none;
}
a:hover {
    color: var(--text-redirect-color2);
    text-decoration: underline;
}

button {
    cursor: pointer;
}

p {
    text-align: justify;
    text-justify: inter-word;
}

.main-screen {
    display: flex; 
    min-height: 100vh; 
    flex-direction: column;
    background-color: var(--bck-main-color-no-inv);
}

.header-screen {
    width: 100%; 
    padding-bottom: 1rem;
}

.yield-screen {
    width: 100%; 
    flex: 1 1 0%; 
    padding: 1rem;
    box-sizing: border-box;
    max-width: 100%;
}

.footer-screen {
    width: 100%; 
    padding-top: 1rem;
}

.title-text {
    font-size: 28px;
    font-weight: 700;
}
.title-text.recc {
    text-align: center;
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1.3;
    margin: 0 0 2.25rem 0;
}

.title-main {
    font-size: 30px;
    font-weight: 600;
    text-align: center;
}

.sub-title-text {
    font-size: 24px;
    font-weight: 200;
}

.plain-text {
    font-size: 18px
}

.responsive-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 400px;
    display: block;
    object-fit: contain;
}

.sm-separator {
    padding: 1rem;
}


.scroll-to-top {
    position: fixed;
    right: 1.5rem;
    bottom: 2rem;
    z-index: 100;
    width: 54px;
    height: 54px;
    transition: opacity .3s ease, visibility .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;

    button {
        background-color: var(--bck-surface-color3);
        color: #fff;
        border: none;
        border-radius: 50%;
        width: 100%;
        height: 100%;
        font-size: 1.5rem;
        cursor: pointer;
        box-shadow: 0 2px 6px rgba(0,0,0,.3);
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.scroll-to-top.hidden {
    opacity: 0;
    visibility: hidden;
}

@media (max-height: 400px) {
    .title-text {
        font-size: 1rem;
        font-weight: 800;
    }
}

.show-article-flex-item h1 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
}

.h2, h2 {
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 2.25rem 0;
}

.h3, h3 {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.4;
    margin: 0 0 1rem 0;
}

.h4, h4 {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
    margin: 0 0 0.75rem 0;
}

h4 strong {
    font-weight: 700;
}

.breadcrumb {
    font-size: 0.85rem;
    margin-top: 0.3rem;
    margin-bottom: 0.6rem;
}


@media (max-width: 600px) {
    .show-article-flex-item h1 {
        font-size: 1.75rem;
    }
    .h2, h2 {
        font-size:  1.35rem;
    }
    .h3, h3 {
        font-size: 1rem;
    }
    h4 strong {
        font-weight: 600;
    }
}

footer {
    background: #0a6f79;
    color: var(--text-secondary-color);
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 50px;
}

.footer-top {
    padding: 20px 0;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
    font-size: 20px;
}

.f-text-email {
    font-size: 29px;
    color: var(--text-secondary-color);
}
.f-text-phone {
    color: var(--text-secondary-color);
    font-size: 26px;
}

.footer-row {
    padding: 15px;
}

.f-text-title {
    text-decoration: underline;
    font-size: 1.7rem;
    color: var(--text-secondary-color);
}
.f-text-link {
    color: var(--text-secondary-color);
    text-decoration: none;
}
.f-text-link:hover {
    color: #ffffffe3;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    color: var(--text-secondary-color);
}

@media (max-width: 1300px) {
    footer {
        padding-left: 100px;
        padding-right: 100px;
    }
    .f-text-email {
        font-size: 22px;
    }
    .f-text-phone {
        font-size: 19px;
    }
}
@media (max-width: 1000px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 740px) {
    footer {
        padding-left: 50px;
        padding-right: 50px;
    }
}

.content-parent {
    background-color: var(--bck-surface-color2);
}
.articles {
    overflow-x: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
    padding-left: 2rem;
    padding-right: 2rem;
    max-width: 100vw;
}

.article {
	padding: 1rem;
	margin: 1rem;
	max-width: 580px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	background: #fafafa;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    background-color: var(--bck-surface-color2);
}

.article-title {
    color: var(--text-interactive-color);
    font-size: 18px;
    text-decoration: none;
}
.article-title:hover {
    color: var(--text-interactive-color);
    text-decoration: underline;
}

.link-image-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6rem;
    padding: 4rem;
    max-width: 100%;
}

.link-image-card {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
    background-color: var(--bck-surface-color2);
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 16px;
	margin: 12px;
	min-width: 210px;
	max-width: 620px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.link-image-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.link-image-card img {
	width: 100%;
	height: auto;
	border-radius: 6px;
	object-fit: cover;
	margin-bottom: 8px;
}

.link-image-card a {
	font-size: 1.1rem;
	font-weight: 600;
    color: var(--text-interactive-color);
	text-decoration: none;
}

.link-image-card a:hover {
  	text-decoration: underline;
}

.show-article-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px;
    padding-bottom: 12;
    box-sizing: border-box;
}
.show-article-container.pricing {
    max-width: 2000px;
    display: flex;
    flex-direction: row;
    gap: 32px;
}

.show-article-flex-main {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    width: 100%;
}

.show-article-flex-item {
    flex: 1 1 300px;
    background-color: var(--bck-surface-color2);
    padding: 16px;
    box-sizing: border-box;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    min-width: 0;
}
.show-article-flex-item h1 {
	overflow-wrap: break-word;
	word-break: break-word;
}

.show-article-flex-item img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}

.indexize-title {
    font-size: 24px;
    font-weight: 800;
    margin: 1rem 0;
    text-justify: none;
}

.indexize-content {
    font-size: 16px;
    font-weight: 300;
    margin: 1rem 0;
}

@media(max-width: 772px) {
	.show-article-container {
		padding: 12px;
	}
    .articles {
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .show-article-flex-prices {
        max-width: 300px;
        width: auto;
    }
}

@media(min-width: 1300px) {
    .show-article-flex-prices {
        position: sticky;
        top: 20px;
    }
}

.show-article-flex-prices {
    box-sizing: border-box;
    width: min(300px, 100%);
    height: fit-content;
    padding: 20px;
    background: var(--bck-surface-color4);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.show-article-flex-prices p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    font-size: large;
}
.show-article-flex-prices p:nth-child(even) {
    font-size: larger;
    padding-left: 1rem;
}

.price-value {
    font-weight: bold;
}

@media(max-width: 1300px) {
    .show-article-container.pricing {
        flex-direction: column-reverse;
        max-width: 1200px;
    }

    .show-article-flex-prices {
        max-width: 300px;
        margin-bottom: 5rem;
    }
}


.centered-icon {
	width: 68px;
	height: 44px;
}

.centered-icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border: none;
    background: var(--bck-surface-color3);
    cursor: pointer;
    border-radius: 25%;
}

.center-icon-button svg {
    display: block;
    margin: 0 auto;
}


.price-tour {
  width: 100%;
  max-width: 300px;
  min-width: 240px;
  margin-bottom: 1rem;
}

.price-tour-header {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
}

.price-tour-title {
  font-weight: 450;
}

.price-value {
  font-weight: 700;
}

.price-includes-label {
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

.article-intro {
    text-align: justify;
    text-justify: inter-word;
}

.formular-parent {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.formular-form {
	background-color: var(--bck-surface-color2);
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.formular-form div {
  	margin-bottom: 15px;
}
.formular-form label {
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
    white-space: nowrap;
}
.formular-form input[type="text"],
.formular-form input[type="email"],
.formular-form select,
.formular-form textarea {
	width: 100%;
	padding: 8px;
	border: 1px solid #ddd;
	border-radius: 4px;
}
.formular-form textarea {
  	min-height: 100px;
}
.formular-form input[type="submit"] {
	background: #007bff;
	color: white;
	border: none;
	padding: 10px 15px;
	border-radius: 4px;
	cursor: pointer;
}
.formular-form input[type="submit"]:hover {
  	background: #0056b3;
}


.formular-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.formular-content h2 {
    text-align: center;
}

label {
    display: inline-block;
    width: 100px;
    align-items: center;
    height: 36px;
    margin-right: 1rem;
    text-align: left;
    padding-top: 0.5rem;
}
.long-label {
    width: 200px;
}

input[type="text"],
input[type="email"],
textarea {
    flex: 1;
    min-width: 150px;
    width: min(100%, 400px);
    padding: 0.5rem;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    background-color: var(--bck-surface-color2);
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    color: var(--text-primary-color);
    font-size: 16px;
}

textarea {
    width: 100%;
    min-height: 100px;
    margin-top: 0.5rem;
    display: block;
}

button[type="submit"] {
    display: block;
    min-width: 30%;
    padding: 0.75rem;
    margin-top: 1rem;
    background-color: var(--button-submit-color);
    color: inherit;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

button[type="submit"]:hover {
    background-color: var(--button-submit-color2);
}

button[type="submit"]:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
    background-color: var(--button-submit-color2);
}

.footer-formular button {
    color: black;
}

.error-message {
    color: red;
    background: #ffeeee;
    display: block;
    padding: 10px;
    font-size: 0.8em;
    margin-top: 0.25rem;
}

.success-message {
    color: var(--text-success-color);
    margin-top: 1rem;
}

.expandable-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.expandable-text h3 {
    cursor: pointer;
    margin-top: 1rem;
}

.expandable-text div {
    margin-top: 0.5rem;
    gap: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
}

.toggle-icon {
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
}

.spinning {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@media (max-width: 600px) {
    label {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 0.25rem;
    }

    input[type="text"],
    input[type="email"] {
        width: 100%;
    }
}

:root {
	--cookie-read-button-border-color: #dcdcdc;
	--cookie-button-bg-color: transparent;
	--cookie-separator-color: #eeeeee;
}

.cookies-container {
	position: fixed;
	bottom: 2rem;
	left: 2rem;
	right: 2rem;
	max-width: 425px;
	min-width: 200px;
	width: auto;
	background-color: var(--bck-main-color-no-inv);
	border: 1px solid #cccccc;
	border-radius: 8px;
	padding: 1rem;
	z-index: 200;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	box-shadow:
		0 0 0 0.75rem rgba(0, 0, 0, 0.1),
		0 0 0 1rem rgba(0, 0, 0, 0.04),
		0 4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-title {
	color: var(--text-primary-color);
	font-weight: 600;
	font-size: 1rem;
	margin: 0;
}

.cookie-content {
	color: var(--text-primary-color);
	font-size: 0.875rem;
	line-height: 1.4;
	margin: 0;
}

.cookie-buttons {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	padding-top: 0.75rem;
	border-top: 1px solid var(--cookie-separator-color);
}
.cookie-buttons-row {
	display: flex;
	flex-direction: row;
	/* justify-content: flex-end; */
	gap: 0.75rem;
}

.cookie-button {
	flex: 1;
	min-width: 0;
	padding: 0.5rem 1rem;
	border-radius: 4px;
	font-size: 0.875rem;
	cursor: pointer;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: background-color 0.2s;
}

.accept-button {
	background-color: var(--cookie-button-bg-color);
	color: var(--cookie-accept-button-color);
	border: 1px solid var(--cookie-accept-button-color);
}
.accept-button:hover {
  	background-color: #4dc01f1a;
}

.read-button {
	background-color: var(--bck-surface-color);
	color: var(--text-primary-color);
	border: 1px solid var(--cookie-read-button-border-color);
}
.read-button:hover {
  	background-color: var(--bck-surface-color2);
}

@media (max-width: 400px) {
	.cookies-container {
		gap: 0.2rem;
		padding: 0.6rem;
		position: fixed;
		left: 1rem;
		right: 1rem;
		bottom: 0.3rem;
	}
	.cookie-buttons {
		padding-top: 0.25rem;
	}
  	.cookie-title {
    	display: none;
  	}
}

@media (max-height: 400px) {
	.cookie-button {
		padding: 0.25rem 0.5rem;
		border-radius: 1px;
	}
}

@media (max-width: 300px) {
	.cookies-container {
		min-width: 0;
		left: 0.25rem;
		right: 0.25rem;
		bottom: 1rem;
	}
	.cookie-button {
		white-space: normal;
		word-break: break-word;
		text-align: center;
		padding: 0.3rem 0.7rem;
	}
}

.cookie-banner {
    position: fixed;
    left: 50%;
    top: calc(10rem + 1rem);
    transform: translate(-50%);
    z-index: 400;
    width: 70%;
    max-width: 1000px;
    min-height: 300px;
    max-height: calc(90vh - 10rem - 2rem);
    background-color: var(--bck-main-color-no-inv);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    box-shadow: 0 0 0 1rem rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.cookie-banner-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 2rem 0.5rem;
	flex-shrink: 0;
}

.cookie-banner-middle {
	flex: 1;
	overflow-y: auto;
	padding: 0 2rem;
	min-height: 10px;
}

.cookie-banner-bottom {
	flex-shrink: 0;
	padding: 1rem 2rem;
}


.cookie-close-button {
    display: flex;
    align-items: center;
    justify-content: center;
	border: none;
    border-radius: 20%;
	background: none;
    background-color: var(--text-secondary-color);
	font-size: 1.2rem;
	cursor: pointer;
}

.cookie-close-wrapper {
  	padding: 0rem 1rem;
}
.close-icon {
	width: 24px;
	height: 24px;
}

.optional-cookie-head {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding-right: 5rem;
}

.toggle-switch {
	cursor: pointer;
	transition: fill 0.3s;
}
.toggle-switch circle {
  	transition: cx 0.3s;
}

.optional-cookies-foot {
	display: flex;
	justify-content: end;
	margin: 1rem;
	margin-bottom: 2rem;
}

.accept-custom-button {
	min-height: 50px;
	min-width: 260px;
	background-color: var(--cookie-accept-button-color);
	border-color: 4px green;
}
.accept-custom-button:hover {
  	background-color: rgb(9, 171, 9);
}

.cookie-preferences {
	line-height: 1.6;
	color: #333;
	max-width: 600px;
	margin: 0 auto;
	padding: 1rem;
}

.cookie-preferences__description {
	margin-bottom: 0.75rem;
	font-size: 1rem;
}

.cookie-preferences__list {
	margin: 0;
	padding-left: 1.25rem;
	list-style-type: none;
}

.cookie-preferences__item {
	margin-bottom: 0.5rem;
	padding-left: 1rem;
	position: relative;
	font-size: 0.95rem;
}

.cookie-preferences__item::before {
	content: "•";
	position: absolute;
	left: 0;
	color: #666;
}

.ask-cookies-container {
	position: fixed;
	display: flex;
	flex-direction: column;
	top: 40%;
	right: 30%;
	transform: translate(80%, -80%);
	max-width: 20rem;
	max-height: 20rem;
	width: auto;
	background-color: var(--bck-main-color-no-inv);
	border: 1px solid #ccc;
	border-radius: 0.5rem;
	z-index: 1100;
	padding: 1rem;
	gap: 0.75rem;
}
@media (max-width: 1000px) {
	.ask-cookies-container {
		top: 50%;
		right: 50%;
		transform: translate(50%, -50%);
		max-width: 90%;
		max-height: 90%;
		overflow-y: auto;
	}
}

.top-row {
	display: flex;
	flex-direction: row;
}

.timer-dialog {
	border-radius: 50%;
	border: 1px solid #ccc;
	padding: 0.5rem;
	display: inline-block;
	margin-right: 1rem;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}

p.plain-text {
	color: var(--text-secondary-color2);
}

@media (max-width: 550px) {
    .cookie-banner {
        top: calc(4rem + 1rem);
        max-height: calc(80vh - 4rem - 0.5rem);
        margin-top: 4rem;
        width: 85%;
        padding-left: 0.2rem;
        padding-top: 0.4rem;
        box-shadow:
            0 0 0 0.5rem rgba(0, 0, 0, 0.15);
    }
    strong {
        font-size: 0.9rem;
        font-weight: 300;
    }
    strong.plain-text {
        text-decoration: underline;
    }
    p.plain-text {
        font-size: 0.9rem;
        font-weight: 200;
    }
}

@media (max-width: 768px) {
	.cookie-banner {
		width: 85%;
		margin: 0.25rem;
	}
}

@media (max-height: 370px) {
	.cookie-banner {
		position: absolute;
	}
    .cookie-button {
        padding: 0.1rem 1rem;
    }
    .cookie-buttons {
        gap: 0.1rem;
        padding: 0.18rem;
    }
}

@media (max-height: 550px) {
    .cookie-banner {
        margin: 0;
        padding: 0;
        border-radius: 10px;
        top: max(95px, calc(4rem + 1.7rem));
        max-height: calc(80vh - 4rem - 0.5rem);
        box-shadow:
            0 0 0 0.2rem rgba(0, 0, 0, 0.15);
    }
    .title-text {
        font-size: 1.2rem;
        font-weight: 800;

    }
    strong {
        font-size: 0.9rem;
        font-weight: 300;
    }
    strong.plain-text {
        text-decoration: underline;
    }
    p.plain-text {
        font-size: 0.9rem;
        font-weight: 200;
    }
    .close-icon {
        width: 16px;
        height: 16px;
    }
    .cookie-banner-bottom {
        padding: 0.2rem 2rem;
    }
    .cookie-banner-top {
        padding: 0 2rem 0;
    }
}
