html, body {
    height: 100%;
}

body {
    font-size: 15px;
    color: #0A0501;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.2rem;
}

.limited-container {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

.limited-container-col {
    max-width: 468px;
}

.large-pad {
    padding-left: 10%;
    padding-right: 10%;
}

a {
    transition: color .15s ease;
}

.pad-left {
    padding-left: 10%;
}

.pad-right {
    padding-right: 10%;
}

.pad-left-small {
    padding-left: 5%;
}

.pad-right-small {
    padding-right: 5%;
}

.margin-top {
    margin-top: 5rem;
}

.margin-bottom {
    margin-bottom: 5rem;
}

.pad-top {
    padding-top: 5rem;
}

.pad-bottom {
    padding-bottom: 5rem;
}

.pad-top-large {
    padding-top: 8rem;
}

.pad-bottom-large {
    padding-bottom: 8rem;
}

.margin-top-large {
    margin-top: 8rem;
}

.margin-bottom-large {
    margin-bottom: 8rem;
}

@media (max-width: 1365px) {
    .large-pad {
        padding-left: 5%;
        padding-right: 5%;
    }
    .pad-left {
        padding-left: 5%;
    }
    .pad-right {
        padding-right: 5%;
    }
}

@media (max-width: 1199px) {
    .large-pad {
        padding-left: 30px;
        padding-right: 30px;
    }
    .pad-left, .pad-left-small {
        padding-left: 30px;
    }
    .pad-right, .pad-right-small {
        padding-right: 30px;
    }
}

@media (max-width: 991px) {
    .pad-left-mobile {
        padding-left: 30px;
    }
    .pad-right-mobile {
        padding-right: 30px;
    }
    .margin-bottom-large {
        margin-bottom: 4rem;
    }
    .margin-top-large {
        margin-top: 4rem;
    }
    .pad-bottom-large {
        padding-bottom: 4rem;
    }
    .pad-top-large {
        padding-top: 4rem;
    }
}

@media (max-width: 767px) {
    .large-pad {
        padding-left: 15px;
        padding-right: 15px;
    }
    .pad-left, .pad-left-mobile, .pad-left-small {
        padding-left: 15px;
    }
    .pad-right, .pad-right-mobile, .pad-right-small {
        padding-right: 15px;
    }
    .margin-top {
        margin-top: 2rem;
    }
    .margin-bottom {
        margin-bottom: 2rem;
    }
}

a, a:hover {
    text-decoration: none;
    color: #0A0501;
}

ul {
    list-style-type: none;
}

h1, h2, h3, h4, h5 {
    font-weight: 900;
    text-transform: uppercase;
}

h2 {
    font-size: 1.33rem;
}

h3 {
    font-size: 2.46rem;
    letter-spacing: 0.5rem;
}

h4 {
    font-size: 1rem;
}

.text-red, 
nav.navbar a.text-red,
#menu a.text-red {
    color: #FC4422;
}

.text-cyan, 
nav.navbar a.text-cyan,
#menu a.text-cyan {
    color: #24B7AD;
}

.large-p {
    font-size: 1.33rem;
    text-transform: uppercase;
    font-weight: 900;
}

p {
    letter-spacing: 0;
}

.hero-wrapper {
    height: 100vh;
    position: relative;
    /* background-image: url('assets/images/hero_2560.jpg'); */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-bg {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: -1;
}

.hero-wrapper svg {
    position: absolute;
    left: 5%;
    top: 0;
    width: 90%;
    height: 80%;
    z-index: 0;
}

nav.navbar {
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 25px;
    padding-bottom: 25px;
    z-index: 100;
    color: #FFFFFF;
    background-color: rgba(0, 0, 0, 0);
}

nav.navbar a, 
nav.navbar a:hover, 
.hero-content a {
    color: #FFFFFF;
}

.navbar-brand {
    transform: scale(2); /* масштаб в 2 рази */
    transform-origin: top left;
}
.navbar-brand img {
    height: 80px;
    width: auto;
}

.nav-items {
    display: flex;
    pointer-events: none;
}

.nav-items li {
    opacity: 0;
}

.nav-items a {
    text-transform: uppercase;
    font-weight: 900;
}

.lang-bar .active {
    font-weight: 900;
}

.navbar-toggler {
    display: flex;
    flex-direction: column;
    width: 36px;
    height: 36px;
    padding: 7px;
    justify-content: center;
    align-items: center;
}

.toggler-bar {
    width: 100%;
    height: 1px;
    background-color: #24B7AC;
    transition: all 0.25s ease;
}

.toggler-bar.middle-bar {
    margin-top: 7px;
    margin-bottom: 7px;
}

#navbar-toggler:not(.collapsed) .toggler-bar.bottom-bar {
    opacity: 0;
}

#navbar-toggler:not(.collapsed) .toggler-bar.middle-bar {
    transform: rotate(-45deg);
}

#navbar-toggler:not(.collapsed) .toggler-bar.top-bar {
    transform: translateY(8px) rotate(45deg);
}

#menu {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: -100%;
    left: 0;
    background-color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 84px;
    z-index: 2;
    transition: all 0.35s ease;
}

#menu.show {
    top: 0;
}

#menu a,
#menu span {
    color: #FFFFFF;
    text-transform: uppercase;
}

#res-modal .modal-content {
    width: auto;
    margin: 0 auto;
    border-radius: 0;
}

.hero-content {
    width: 100%;
    height: 100%;
    color: #FFFFFF;
    padding-bottom: 55px;
    padding-top: 135px;
    position: relative;
}

.btn {
    padding: 20px 10px;
    min-width: 230px;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 0;
    letter-spacing: 6px;
}

.btn-cyan, 
.btn-cyan:hover {
    color: #24B7AD;
    border: 1px solid #24B7AD;
}

.btn-red, 
.btn-red:hover {
    color: #FC4422;
    border: 1px solid #FC4422;
}

.hero-content .btn-cyan, 
.hero-content .btn-red {
    border: 1px solid #FFFFFF;
}

.book-span {
    font-size: 0.793rem;
    font-weight: 300;
    color: #FFFFFF;
    display: block;
    letter-spacing: 2px;
}

.hero-content .dropend .dropdown-toggle::after, .navbar .dropdown-toggle::after {
    content: none;
}

.hero-content .dropdown-menu, .navbar .dropdown-menu {
    color: #000000;
    border-radius: 0;
    padding: 10px;
    border: none;
}

.hero-content .dropdown-menu .menu-link, .navbar .dropdown-menu .menu-link {
    color: #000000;
    display: block;
    font-size: .875rem;
    text-transform: uppercase;
    padding: 0 .25rem 0 1rem;
    margin: .5rem 0;
}

.social-wrapper img {
    max-width: 1.75rem;
}

.r-icon-hero {
    max-width: 80%;
}

.hero-info {
    text-transform: uppercase;
}

.hero-info p {
    letter-spacing: 0.2rem;
}

html[lang="de"] .hero-info p {
    letter-spacing: .1rem;
}

.hero-info a span {
    font-size: 0.793rem;
}

h1.hero-h1 {
    letter-spacing: 0.7rem;
    font-size: 2.2vw;
}

.page-content {
    background-color: #FFFFFF;
    margin-top: -55px;
    z-index: 0;
    position: relative;
}

.r-icon-red {
    position: absolute;
    bottom: 0;
    left: 0;
}

.atmosphere-section {
    position: relative;
    background-image: url('assets/images/img_section_2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.atmosphere-section::before {
    content:'';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.83);
    display: block;
    z-index: 1;
}

.col-bg-black h3, .col-bg-black p {
    color: #FFFFFF;
}

.col-bg-black h3, 
.col-bg-black p,
.col-bg-black .btn,
.col-bg-black img {
    z-index: 2;
}

#newsletter-form input.form-control {
    border-radius: 0;
    border: 1px solid #24B7AD;
    width: calc(100% - 250px);
}

#newsletter-form input.form-control, .btn-submit-news {
    min-height: 66px;
}

#newsletter-form label.form-check-label,
#contact-form label.form-check-label {
    text-transform: uppercase;
    font-weight: 500;
    color: #000000;
    letter-spacing: 0;
}

#contact-form label.form-check-label {
    color: #FFFFFF;
}

#newsletter-form label.form-check-label a, 
#contact-form label.form-check-label a {
    color: #FC4422;
}

#newsletter-form input::placeholder,
#contact-form input::placeholder {
    font-size: 1.33rem;
    text-transform: uppercase;
    color: #000000;
    font-weight: 900;
    letter-spacing: 0.3rem;
    padding-left: 10px;
}

#contact-form textarea::placeholder {
    padding-left: 15px;
}

form .form-check-input:checked[type=checkbox] {
    background-image: url('assets/images/icon_check.svg');
    background-color: #FFFFFF;
    border: 1px solid #FC4422;
}

#agree-sub {
    margin-right: 10px;
    margin-bottom: 5px;
    border-radius: 0;
}

#contact-form label.form-check-label {
    text-transform: uppercase;
    padding-top: 5px;
}

#contact-form .input-group {
    border-bottom: 1px solid #24B7AD;
}

#contact-form label.input-group-text {
    min-width: 275px;
    background-color: transparent;
    color: #ffffff;
    border: none;
    border-radius: 0;
    padding-left: 0;
    letter-spacing: 0;
}

#contact-form input.form-control, 
#contact-form textarea {
    border: none;
    background-color: #FFFFFF;
    border-radius: 0;
    min-height: 60px;
}

#contact-form textarea {
    min-width: 50%;
}

#contact-form .form-check-input {
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 0;
    background-color: #FFFFFF;
    margin-right: 10px;
}

label.error {
    color: #FC4422;
    width: 100%;
    font-size: .875rem;
    letter-spacing: normal;
}

.grecaptcha-badge { 
    visibility: hidden;
}

footer a,
footer p {
    color: #FFFFFF;
    font-size: 0.875rem;
}

footer a:hover,
footer a:focus {
    color: #FFFFFF;
}

.card-body {
    border: none;
    padding: 0;
}

:root{
    --cc-btn-primary-bg: #FC4422;
    --cc-btn-primary-hover-bg: #000000;
    --cc-btn-secondary-bg: #E9EBE2;
    --cc-btn-secondary-hover-bg: #bec0b9;
    --cc-cookie-category-block-bg: #E9EBE2;
    --cc-cookie-category-block-bg-hover: #bec0b9;
    --cc-text: #000000;
}

#cc--main {
    letter-spacing: normal;
}

@media (min-aspect-ratio: 2.25/1) {
    .hero-wrapper {
        height: auto;
    }
}

@media (max-width: 1365px) {
    .r-icon-hero {
        max-width: 70%;
    }
    .hero-content .pad-top {
        padding-top: 1.3rem;
    }
}

@media (max-width: 1365px) and (min-aspect-ratio: 5/3) {
    .hero-wrapper {
        height: auto;
    }
}

@media (max-width: 1199px) {
    .r-icon-hero {
        max-width: 60%;
    }
}

@media (max-width: 991px) {
    nav.navbar {
        padding-top: 8px;
        padding-bottom: 8px;
    }
    .navbar-brand img {
        height: 80px;
        width: auto;
    }
    .hero-wrapper {
        height: auto;
    }
    .hero-wrapper svg {
        position: relative;
        left: -50%;
        top: 4vw;
        width: 200%;
        height: auto;
        margin-bottom: -20vw;
    }
    .hero-content {
        padding-top: 0;
    }
    h1.hero-h1 {
        font-size: 1.1rem;
    }
    .page-content {
        padding-top: 4rem;
    }
    .r-icon-hero {
        z-index: 1;
    }
    .atmosphere-section::before {
        width: 100%;
    }
    .nav-items {
        height: 0;
        overflow: hidden;
        width: 100%;
    }
    .nav-items li {
        margin-bottom: 1.5rem;
    }
    .nav-items li:last-child {
        margin-bottom: 0;
    }
    .r-icon-red {
        max-width: 50%;
    } 
}

@media (max-width: 767px) {
    #newsletter-form input.form-control {
        width: 100%;
    }
    #contact-form .form-control {
        width: auto;
    }
    #newsletter-form input::placeholder,
    #contact-form input::placeholder {
        font-size: 1rem;
    }
    #contact-form label.input-group-text {
        min-width: 170px;
    }
}

@media (max-width: 575px) {
    h1.hero-h1 {
        font-size: 1rem;
        letter-spacing: .125rem;
        line-height: 1.375;
    }
    h3 {
        font-size: 1.2rem;
    }
    #newsletter-form label.form-check-label,
    #contact-form label.form-check-label {
        font-size: 0.75rem;
    }
}

/* *** LEGAL PAGES *** */
/***********************/

body.legal #navbar {
    background-color: #000000;
}

body.legal {
    letter-spacing: normal;
}

.legal-page {
    padding-top: 150px;
    padding-bottom: 100px;
    font-size: 0.938rem;
}

.legal-page h1 {
    font-size: 2rem;
    text-align: center;
}

.legal-page a {
    color: #EB3A16;
}

.legal-page a, .legal-page h1, .legal-page h2 {
    font-weight: 700;
}

.legal-page h2 {
    font-size: 1.5rem;
}

.legal-page li span {
    display: block;
    margin-bottom: 1rem;
}

.legal-page p.ps-custom {
    padding-left: 2rem;
}

.legal-page li span.span-title {
    font-size: 1.2rem;
    font-weight: 700;
}

.legal-page ul {
    list-style-type: disc;
}

.legal-page ul.no-pad {
    padding-left: 0;
}

.legal-page ol li {
    margin-bottom: 25px;
}

label.error {
    color: #FC4422;
    width: 100%;
}

.grecaptcha-badge { 
    visibility: hidden;
}

#contact h4 {
    font-size: 1.25rem;
    color: #000000;
}

.btn-gallery {
    position: relative;
    z-index: 999;
}

.lightbox .btn-close {
    display: none;
}

.lightbox .ratio-16x9 {
    background-color: transparent!important;
}

.lightbox .carousel-control-next {
    right: 5%;
}

.lightbox .carousel-control-prev {
    left: 5%;
}