/* Default & normalize setter */
a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}

article,
aside,
footer,
header,
nav,
section,
figcaption,
figure,
main,
details,
menu {
    display: block;
    overflow: auto;
}

template,
[hidden] {
    display: none;
}

audio,
video,
canvas {
    display: inline-block;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

svg:not(:root) {
    overflow: hidden;
}

button,
input,
optgroup,
select,
textarea {
    margin: 0;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

textarea {
    overflow: auto;
}

[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

/******************************/

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

body {
    padding: 0;
    margin: 0;
    font-size: 18px;
    color: #222;
    font-family: 'Alegreya Sans';
}

h2 {
    font-size: 36px;
    font-weight: normal;
}

.decorated-header,
.decorated-header-white {
    padding-top: 30px;
    position: relative;
    display: inline-block;
}

.decorated-header::before,
.decorated-header-white::before {
    content: '';
    height: 2px;
    background-color: #659150;
    width: calc(100% - 35px);
    position: absolute;
    top: 14px;
    left: 35px;
}

.decorated-header-white::before {
    background-color: #fff;
}

.decorated-header::after,
.decorated-header-white::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background: url('../data/img/leafs-decoration.png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.decorated-header-white::after {
    background: url('../data/img/leafs-decoration-white.png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.mr-20 {
    margin-right: 20px;
}

.mr-40 {
    margin-right: 40px;
}

.header {
    display: block;
    overflow: auto;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    z-index: 100;
    transition: all 0.2s ease;
}

.dark-header {
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.logo {
    height: 40px;
}

.logo-img {
    display: block;
    height: 100%;
    width: auto;
}

.navigation {
    display: flex;
    align-items: center;
}

.link-btn {
    padding: 10px 20px;
    background-color: #659150;
    transition: all 0.2s ease;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    text-align: center;
    min-width: 160px;
    display: inline-block;
}

.link-btn.ghost {
    background-color: transparent;
    border: 1px solid #659150;
}

.link-btn:hover {
    background-color: #84A872;
}

.link-btn.ghost:hover {
    background-color: #84A872;
    border: 1px solid #659150;
}

.menu {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    padding: 0 20px;
    font-size: 24px; /* nebo 18px */
}

.menu a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 5px 20px;
    position: relative;
}

.menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    width: 0%;
    height: 1px;
    background-color: #fff;
    transition: all 0.2s ease;
}

.menu a:hover::before,
.current-menu-item a::before {
    width: calc(100% - 40px);
}

.hp-intro-w {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    position: relative
}

.hp-intro-img-w {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.hp-intro-img-w::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) -10%, rgba(0, 0, 0, 0.4) 70%, rgba(0, 0, 0, 1) 110%);
}

.hp-intro-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hp-intro {
    width: 100%;
    position: relative;
    z-index: 1;
}

.hp-title-w {
    padding: 40px;
}

.hp-title {
    color: #fff;
}

.hp-title h1 {
    font-size: 72px;
    font-weight: normal;
    font-style: italic;
    margin-bottom: 0;
}

.hp-title-description {
    color: #fff;
    padding-top: 10px;
}



.hp-title-description h2 {
    margin: 0;
    font-weight: normal;
}

.hp-title-decoration {
    height: 70px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 20px 0;
}

.hp-title-decoration::after {
    content: '';
    width: 140px;
    margin-left: 10px;
    height: 2px;
    background-color: #659150;
}

.hp-title-decoration-img {
    height: 100%;
    display: block;
    width: auto;
}

.hp-title-cta {
    padding-top: 20px;
   
    
}
.hp-title-ctb {
    padding-top: 20px;
    width: 1200px;
}

.hp-intro-info-w {
    padding: 32px;
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hp-intro-info {
    /* width: 25%;
    padding: 20px; */
    display: flex;
    align-items: center;
}

.hp-intro-info-icon-img {
    width: 40px;
    height: auto;
    display: block;
}

.hp-intro-info-text {
    color: #fff;
    font-size: 18px;
    padding-left: 20px;
}

.hp-about {
    padding: 80px 32px;
    display: flex;
    align-items: center;
    position: relative;
}

.hp-about-img-w {
    width: 50%;
    padding: 10px;
    padding-right: 20px;
    position: relative;
}

.hp-about-img-w::before {
    content: '';
    width: 40%;
    padding-top: 40%;
    position: absolute;
    left: 0;
    top: 0;
    border-top: 2px solid #659150;
    border-left: 2px solid #659150;
    z-index: 0;
}

.hp-about-img-w::after {
    content: '';
    width: 40%;
    padding-top: 40%;
    position: absolute;
    right: 10px;
    bottom: 0;
    border-right: 2px solid #659150;
    border-bottom: 2px solid #659150;
    z-index: 0;
}

.hp-about-img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 10;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.hp-about-text-w {
    position: relative;
    width: 50%;
    padding-left: 20px;
}

.hp-about-text {
    position: relative;
    z-index: 10;
}

.about-btn {
    margin-top: 20px;
}

.decoration-img {
    width: 30%;
    padding-top: 30%;
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0.2;
    background: url("../data/img/tree-decoration.png");
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}

.hp-advantages-w {
    width: 100%;
    padding: 40px 32px;
    position: relative;
    background: url("../data/img/forest-decoration.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hp-advantages-w::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) -10%, rgba(0, 0, 0, 0.4) 70%, rgba(0, 0, 0, 1) 110%);
    z-index: 0;
}

.hp-advantages-c {
    width: 100%;
    position: relative;
    z-index: 10;
    color: #fff;
}

.hp-advantages {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.hp-advantage {
    width: 25%;
    padding: 20px;
}

.hp-advantages-header {
    padding-left: 20px;
    margin-bottom: 0;
}

.hp-advantages-c .decorated-header-white::before {
    left: 55px;
    width: calc(100% - 55px);
}

.hp-advantages-c .decorated-header-white::after {
    left: 20px;
}

.hp-advantage-header {
    display: flex;
    align-items: center;
}

.hp-advantage-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #659150;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hp-advantage-icon img {
    width: 20px;
    height: auto;
    position: relative;
    left: 1px;
    top: 1px;
    display: block;
}

.cooperation-w {
    width: 100%;
    padding: 80px 32px;
    background: url("../data/img/tree-decoration-2.png");
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
}

.cooperation-header {
    display: flex;
    justify-content: center;
}

.cooperation-logos-w {
    display: flex;
    justify-content: center;
}

.cooperation-logos {
    width: 80%;
    display: flex;
    flex-wrap: wrap;
}

.cooperation-logo {
    display: flex;
    width: 25%;
    padding: 20px;
    justify-content: center;
}

.cooperation-logo img {
    width: auto;
    height: 80px;
    display: block;
}

.contact-w {
    padding: 40px;
}

.contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.contact-text {
    width: 30%;
    padding-right: 40px;
}

.contact-map {
    width: 70%;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 400px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.label-text {
    color: #659150;
}

.contact-text h3 {
    margin-top: 5px;
}

.contact-tel a,
.contact-mail a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #222;
    margin-bottom: 5px;
}

.contact-address {
    display: flex;
}

.contact-tel img,
.contact-mail img,
.contact-address img {
    display: block;
    width: auto;
    height: 20px;
    margin-right: 10px;
}

.contact-cta {
    padding-top: 20px;
}

.footer {
    width: 100%;
    padding: 40px;
    position: relative;
    background: url("../data/img/forest-decoration.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) -10%, rgba(0, 0, 0, 0.7) 70%, rgba(0, 0, 0, 1) 110%);
    z-index: 0;
}

.footer-top {
    position: relative;
    z-index: 10;
    display: flex;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    position: relative;
    z-index: 10;
    color: #bbb;
    padding-top: 20px;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
}

.gettogether {
    display: flex;
}

.gettogether a {
    display: flex;
    align-items: center;
}

.gettogether img {
    height: 20px;
    width: auto;
    margin-right: 5px;
    margin-left: 10px;
    display: block;
}

.page-title {
    width: 100%;

}

.intro-w {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    position: relative;
    text-align: center;
}

.intro-img-w {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.intro-img-w::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) -10%, rgba(0, 0, 0, 0.4) 70%, rgba(0, 0, 0, 1) 110%);
}

.intro-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.intro {
    width: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.title-w {
    padding: 40px;
}

.title {
    color: #fff;
}

.title h1 {
    font-size: 50px;
    font-weight: normal;
    font-style: italic;
    margin-bottom: 0;
    display: inline-block;
}

.title-description {
    color: #fff;
    padding-top: 10px;
}

.title-description h2 {
    margin: 0;
    font-size: 28px;
    font-weight: normal;
    color: #bbb;
}

.title-decoration {
    height: 70px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 20px 0;
}

.title-decoration::after {
    content: '';
    width: 100px;
    margin-left: 10px;
    height: 2px;
    background-color: #659150;
}

.title-decoration-img {
    height: 100%;
    display: block;
    width: auto;
}

.content-w {
    width: 100%;
    padding: 32px;
    display: flex;
    justify-content: center;
    position: relative;
}

.content {
    width: 100%;
    max-width: 1000px;
    position: relative;
    z-index: 10;
}

.content-decoration-left {
    width: 200px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: url("../data/img/tree-decoration-2.png");
    background-position: right center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.5;
}

.content-decoration-right {
    width: 200px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    background: url("../data/img/tree-decoration-3.png");
    background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.5;
}

.content iframe {
    width: 100%;
    height: 400px;
    margin-top: 40px;
}

.gallery {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.gallery-img {
    width: calc(100% / 6);
    height: 200px;
    display: block;
}

.room-box-price .gallery-img {
    width: 100%;
}


.gallery-img-room {
    width: 100%;
    height: 200px;
    display: block;
}

.gallery-img img,
.gallery-img-room img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Cennik */
.gallery-hide {
    display: none;
}

.room-box-price {
    background: #FFFFFF;
    border: 1px solid #EFEFEF;
    box-shadow: 2px 2px 4px 1px rgba(0, 0, 0, 0.02);
    border-radius: 12px;
    overflow: hidden;
}

.room-box-price .content {
    padding: 16px;
}


.rooms {
    margin-top: 32px;
}

/* Vybaveni */

.content-section h3 {
    font-size: 28px;
}

.boxes-container {
    text-align: center;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 62px;
}
.room-box .hide-image {
    display: none;
}

.box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.boxes-container .box .icon {
    width: 52px;
    height: 52px;
}

.boxes-container .box .icon img {
    width: 100%;
}

.box strong {
    font-weight: 700;
    font-size: 22px;
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    margin-top: 62px;
    align-items: flex-end;
}

.benefit .checks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.benefit-header {
    margin-bottom: 32px;
}

.benefit-header,
.benefit .checks span {
    font-size: 20px;
    font-weight: 500;
    color: black;
}

.room-boxes-container .room-box .check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 4px;
}

.benefit .checks .check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 4px;
}

.benefit .checks .green-circle,
.room-boxes-container .room-box .green-circle,
.typs-container .type .green-circle {
    width: 14px;
    height: 14px;
    position: relative;
    background-color: #84A872;
    border-radius: 50%;
}

.benefit .checks .green-circle {
    top: 2px;
}


.benefit .checks span {
    font-size: 16px;
    font-weight: 400;
    color: black;
}


/* ROOM BOXES */

.room-boxes {
    margin-top: 64px;
    margin-bottom: 64px;
}

.room-box .double-box {
    display: flex;
    gap: 16px;
}

.room-boxes-container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.room-boxes-container .room-box {
    background: #FFFFFF;
    border: 1px solid #EFEFEF;
    box-shadow: 2px 2px 4px 1px rgba(0, 0, 0, 0.02);
    border-radius: 12px;
    overflow: hidden;
}

.room-boxes-container .room-box-content {
    padding: 16px;
}

.room-boxes .title {
    font-size: 20px;
    font-weight: 500;
    color: black;
    margin-bottom: 32px;
}

.room-boxes-container .room-box .title-box {
    font-size: 18px;
    font-weight: 500;
    color: black;
}

.room-boxes-container .room-box .title-box h4 {
    margin-top: 0px;
    margin-bottom: 8px;
}

.room-boxes-container .room-box .room-name {
    font-size: 16px;
    margin-bottom: 8px;
}

.room-boxes-container .room-box .check span {
    font-size: 14px;
    font-weight: 400;
}

.room-boxes-container .room-box img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* LYZOVANIE, TURISITKA PAGE */

.tourist-links-group {
    display: flex;
    gap: 32px;
    align-content: center;
}

.tourist-links-group .link {
    font-weight: 600;
    font-size: 18px;
}

.typs-container .typs-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.typs-container .type .green-circle {
    display: block;
    padding-right: 14px;
    top: 4px;
}

.typs-container .type .check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 4px;
}

.typs-container h3 {
    color: black;
}


/* CONTACT PAGE */

.contact-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    width: 100%;
}

.custom-form {
    position: relative;
}

.wpcf7-form label {
    font-weight: 500;
}

.wpcf7-form input {
    border-radius: 6px;
    min-width: 220px;
    width: 100%;
    height: 32px;
    border: solid 1px #659150;
}

.wpcf7-form textarea {
    border-radius: 6px;
    min-width: 220px;
    height: 120px;
    width: 100%;
    border: solid 1px #659150;
}

.wpcf7-submit {
    max-width: 220px;
    background: #659150;
    color: white;
    border-radius: 4px;
}

.input-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    width: 100%;
}


/* MOBILE NAVIGATION */

.mobile-nav {
    display: none;
}

.mobile-nav .nav-popup {
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100vh;
    width: 100%;
    background: #000000de;
    padding-top: 52px;
    padding-left: 32px;
    transition: all ease .4s;
    transform: translateY(-100%);
}

.mobile-nav .nav-popup.active {
    display: block;
    transition: all ease .4s;
    transform: translateY(0%);
}

.mobile-nav .link-btn {
    margin-top: 16px;
}


.hamburger-btn {
    background: #659150;
    border: solid 1px #659150;
    width: 52px;
    height: 52px;
    padding: 10px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 20px;
    top: 14px;
}


.hamburger-btn svg path {
    fill: white;
}

.hamburger-btn:hover {
    cursor: pointer;
    background: white;
    border: solid 1px #659150;
}

.hamburger-btn:hover svg path {
    fill: #659150;
}


/* RESPONSIVE 
    sizes
    640px, 768px, 1024px, 1280px, 1536px
*/

@media (max-width: 1280px) {
    .navigation li {
        font-size: 16px;
    }
}

@media (max-width: 1024px) {
    .navigation {
        display: none;
    }

    .mobile-nav {
        display: block;
    }

    .wpcf7-form input {
        min-width: unset;
    }

    .header {
        overflow: unset;
    }

    .menu {
        display: unset;
        align-items: flex-start;
        padding: 12px 20px;
        font-size: 32px;
    }

    .menu a:hover::before,
    .current-menu-item a::before {
        width: 30%;
    }

    .menu a {
        padding: 12px 20px;
    }
}

@media (max-width: 900px) {
    .hp-intro-info-w {
        display: grid;
        gap: 32px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .boxes-container {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 62px;
    }

    .room-boxes-container {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .hp-about {
        flex-direction: column;
        padding: 32px;
        gap: 16px;
    }

    .hp-about-text-w {
        width: 100%;
        padding-left: 0px;
    }

    .hp-about-img-w {
        width: 100%;
        order: 2;
    }

    .hp-advantages .hp-advantage {
        width: 50%;
    }

    .cooperation-logos {
        width: 100%;
    }

    .cooperation-logo {
        width: 50%;
    }

    .cooperation-w {
        background-position: left top;
        background-size: 22%;
    }

    .contact {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .contact-map {
        width: 100%;
    }

    .contact-map iframe {
        height: 280px;
    }

    .contact-text {
        width: 100%;
        padding-right: 0px;
    }

    ul {
        padding-left: 0px;
    }

    .intro-w h1 {
        font-size: 40px;
    }

    .boxes-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 62px;
    }

    .benefits-container {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 8px;
    }

    .benefit-header {
        margin-bottom: 16px;
    }

    .room-boxes-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .intro-w {
        height: 280px;
    }

    .typs-container .typs-list,
    .contact-container {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

@media (max-width: 500px) {

    .header {
        padding: 20px 16px;
    }

    .footer,
    .contact-w {
        padding: 26px 16px;
    }

    .hp-advantages-w {
        padding: 40px 16px;
    }

    .hp-about,
    .content-w {
        padding: 32px 16px;
    }

    .hp-advantage {
        padding: 0px;
    }

    ul {
        padding-left: 16px;
    }

    .hp-intro-info-w {
        display: grid;
        gap: 16px;
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .hp-title h1 {
        font-size: 41px;
    }

    .hp-title-w {
        padding: 16px;
    }

    h2 {
        font-size: 24px;
    }

    .hp-title-cta a {
        margin-right: 0px;
        width: 100%;
        margin-bottom: 8px;
    }

    .hp-title-cta a::last-child {
        margin-bottom: 0px;
    }

    .hp-advantages .hp-advantage {
        width: 100%;
        padding: 0px 8px;
    }

    .hp-advantages-c .decorated-header-white::after {
        left: 0px;
    }


    .hp-advantages-header {
        padding-left: 0px;
    }

    .hp-advantages-c .decorated-header-white::before {
        left: 40px;
    }

    .cooperation-logos {
        flex-direction: column;
        align-content: center;
    }

    .cooperation-logo {
        padding: 8px;
    }

    .gallery-img {
        width: 100%;
        height: 240px;
    }

    .benefit .checks,
    .room-boxes-container {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .tourist-links-group {
        flex-direction: column;
        gap: 16px;
    }

    .input-container {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 16px;
    }

    .wpcf7-submit {
        width: 100%;
    }

    .hp-title .hp-title-decoration {
        display: none;
    }

    .room-box-price .gallery-img img {
        width: 100%;
    }
}