@font-face {
    font-family: "Gotham Bold";
    src: url("gotham-bold.otf");
}

@font-face {
    font-family: "Gotham Book";
    src: url("Gotham_Book.otf");
}

:root {
    --light-color: whitesmoke;
    --white-color: rgb(254, 253, 253);
    --primary-color: #e0011e;
    --dark-color: #ae011d;
}

body {
    background-color: var(--light-color);
    font-family: 'Gotham Book', sans-serif;
}

nav.navbar {
    background-color: var(--white-color);
    box-shadow: 0 8px 6px -9px darkgrey;
    opacity: .98;
    padding: 0 1rem;
}

nav.navbar ul.navbar-nav a.nav-link {
    font-family: 'Gotham Bold', sans-serif;
    font-size: 1.05rem;
    color: var(--bs-gray-800);
    padding-left: 1rem;
    padding-right: 1rem;
}

nav.navbar .nav-link:hover {
    color: var(--primary-color) !important;
}

img.brand-logo {
    height: 4rem;
}

.navbar-brand {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    margin-right: 0;
}

strong, h4, h5 {
    font-weight: 400;
    font-family: 'Gotham Bold', sans-serif;
}

strong.light {
    font-weight: 600;
    font-family: 'Gotham Book', sans-serif;
}

.navbar-media {
    justify-content: right;
    display: flex;
    padding-right: 1rem;
    padding-left: 1rem;
    color: var(--bs-gray-800);
    font-size: 1.5rem;
}

.navbar-media a.media {
    margin: auto 0.75rem;
    display: flex;
    text-decoration: none;
    color: var(--bs-gray-800);
}

.navbar-media a.media:hover {
    color: var(--primary-color);
}

.navbar-media i.fab.fa-instagram {
    font-size: 1.8rem
}

.hover-underline-animation {
    display: inline-block;
    position: relative;
}

.dropdown-toggle::after {
    width: 15px;
    height: 10px;
    margin-left: .375rem;
    vertical-align: 0;
    border: none;
    background: url(/images/arr-down.svg) no-repeat left top;
}

.navbar .dropdown-menu {
    border: none;
    opacity: .99;
}

.navbar .dropdown-menu.dropdown-lang {
    box-shadow: 0 1px 4px lightgrey;
}

.dropdown-menu {
    background-color: var(--bs-light);
    min-width: auto;
}

.dropdown-menu .dropdown-item {
    padding: 0.5rem 2rem 0.5rem 1.5rem;
    font-size: 0.9rem;
    color: var(--bs-gray-800);
}

.dropdown-menu .dropdown-item i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 0.95rem;
    position: relative;
    top: 1px;
}

.dropdown-menu .dropdown-item:hover {
    color: var(--white-color);
    background-color: var(--primary-color);
}

.dropdown-menu .dropdown-item:hover i {
    color: var(--white-color);
}

.btn-lang {
    font-family: 'Gotham Bold', sans-serif;
    font-size: 0.75rem;
    color: var(--bs-gray-800);
}

.btn-lang:hover {
    color: var(--primary-color);
}

.btn-lang:focus {
    box-shadow: none;
}

.btn.btn-lang.show, .btn.btn-lang:active {
    border-color: transparent;
}

.btn-lang.dropdown-toggle::after {
    width: 12px;
    height: 8px;
    background-size: contain;
    opacity: 0.7;
}

.dropdown-menu.dropdown-lang .dropdown-item {
    padding: 0.25rem 1.5rem 0.25rem 1rem;
    font-size: 0.75rem;
    font-family: 'Gotham Bold', sans-serif;
}

.main-image {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    filter: grayscale(0.1) brightness(0.95);
}

#main-carousel, div.section > div.actuality-detail {
    margin-top: 72.4px;
}

#main-carousel .carousel-control-next, #main-carousel .carousel-control-prev {
    width: 5%;
}

div.section {
    padding: 3rem 2rem;
}

div.section > div {
    max-width: 80rem;
    margin: auto;
}

div.section h2 {
    font-weight: 600;
    font-size: 2.25rem;
    text-align: center;
}

div.section p, div.section ul, div.section ol {
    font-size: 0.95rem;
    line-height: 1.75rem;
}

div.section ul > li::marker {
    font-size: 1.25rem;
}

div.section ul > li, div.section ol > li {
    padding-left: 0.5rem;
}

div.section table {
    font-size: 0.95rem;
}

hr.title-underline {
    width: 7rem;
    height: 3px;
    color: var(--primary-color);
    background-color: var(--primary-color);
    opacity: 1;
    margin: 0.75rem auto 2rem auto;
}

a {
    color: var(--primary-color);
    text-underline-offset: 3px;
}

a.inverted {
    text-decoration: none;
}

a.inverted:hover {
    text-decoration: underline;
}

a.secondary {
    color: var(--bs-gray-700);
}

a > i.fading {
    transition: transform 0.5s ease;
}

a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover > i.fading {
    transform: translateX(6px);
}

footer {
    text-align: center;
    padding: 2rem;
    background-color: var(--dark-color);
    color: var(--light-color);
    font-size: 0.9rem;
}

footer .title {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1rem;
}

footer img {
    width: 4rem;
}

footer i {
    font-size: 1rem;
}

footer hr {
    width: 75%;
    height: 2px !important;
    margin: 2rem auto;
    color: var(--white-color);
    background: var(--white-color);
}

footer a {
    color: var(--light-color);
}

footer a:hover {
    color: var(--light-color);
}

footer a.media {
    margin: auto 0.75rem;
    display: flex;
    text-decoration: none;
    color: var(--light-color);
}

footer a.media i {
    font-size: 1.5rem;
}

.card-img-wrapper {
    overflow: hidden;
    position: relative;
    border-top-left-radius: var(--bs-card-inner-border-radius);
    border-top-right-radius: var(--bs-card-inner-border-radius);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    transition: 0.5s ease;
    filter: grayscale(10%);
}

.card-img-top:hover {
    transform: scale(1.05);
}

.card-img-top.vertical {
    height: 100%;
    min-height: 200px;
    max-height: 250px;
    border-top-right-radius: 0;
    border-bottom-left-radius: var(--bs-card-inner-border-radius);
}

.actuality-card {
    background-color: var(--white-color);
    border: none;
    height: 100%;
    box-shadow: 0 10px 30px 0 rgba(0,0,0,.051);
}

.actuality-card .img-wrapper-vertical {
    overflow: hidden;
    border-top-left-radius: var(--bs-card-inner-border-radius);
    border-bottom-left-radius: var(--bs-card-inner-border-radius);
}

.actuality-card a {
    text-decoration: none;
    color: var(--bs-body-color);
    font-size: 1.05rem;
    font-family: 'Gotham Bold', sans-serif;
}

.actuality-card a:hover {
    color: var(--primary-color);
}

.tns-outer {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

.slider-controls .carousel-control-prev {
    left: -3rem;
}

.slider-controls .carousel-control-next {
    right: -3rem;
}

.slider-controls .carousel-control-prev, .slider-controls .carousel-control-next {
    width: 2.5rem;
}

.slider-controls .carousel-control-prev:disabled, .slider-controls .carousel-control-next:disabled {
    visibility: hidden;
}

div.button-wrapper {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.btn.btn-primary {
    padding: 0.5rem 1rem;
    font-family: 'Gotham Bold', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--white-color);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-width: 2px;
}

.btn.btn-primary:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
}

.btn.btn-secondary {
    padding: 0.5rem 1rem;
    font-family: 'Gotham Bold', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--primary-color);
    background-color: var(--white-color);
    border-color: var(--primary-color);
    border-width: 2px;
}

.btn.btn-secondary:hover {
    background-color: var(--bs-body-color);
    border-color: var(--bs-body-color);
    color: var(--white-color);
}

.main-image-holder {
    background-size: cover;
    background-position: center;
    height: 400px;
    margin-top: 4.5rem;
}

.main-image-holder .section {
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
}

.main-image-holder h1 {
    color: var(--white-color);
    font-family: 'Gotham Bold', sans-serif;
    font-size: 4.5rem;
    font-weight: 400;
    margin-top: 8rem;
}

.actuality-detail h1 {
    font-family: 'Gotham Bold', sans-serif;
    font-size: 3.25rem;
    text-align: center;
    padding: 2rem 0;
}

a.secondary i {
    font-size: 0.95rem;
    position: relative;
    top: 1px;
}

.actuality-photo {
    width: 100%;
    height: 500px;
    object-fit: cover;
    margin-bottom: 2.25rem;
}

#place-detail {
    width: 14rem;
    box-shadow: 0 10px 30px 0 rgba(0,0,0,.15);
    background-color: var(--white-color);
    border-radius: 0.2rem;
    display: none;
    position: absolute;
}

#place-detail > img {
    width: 100%;
    border-top-left-radius: 0.2rem;
    border-top-right-radius: 0.2rem;
}

.gallery img {
    width: 100%;
    aspect-ratio: 7/5;
    object-fit: cover;
}

.gallery img:hover {
    opacity: 0.75;
}

img.single-img {
    width: auto;
    max-width: 100%;
    aspect-ratio: auto;
}

.actuality-content {
    margin-bottom: 2.25rem;
}

.actuality-content {
    margin-bottom: 2.25rem;
}

.place-detail-content {
    padding: 0.5rem;
    text-align: center;
    font-family: 'Gotham Bold', sans-serif;
    font-size: 0.95rem;
}

.secondary-links {
    padding-bottom: 0.375rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--bs-gray-400);
}

.secondary-links > span {
    font-family: 'Gotham Bold', sans-serif;
    color: var(--bs-gray-800);
    text-decoration: underline;
    text-underline-offset: 0.75rem;
}

.secondary-links > a {
    text-decoration: none;
    font-weight: 600;
    text-underline-offset: 0.75rem;
}

.secondary-links > a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.file-holder {
    padding: 0.5rem 0 1rem 0;
    height: 50rem;
    max-height: 90vh;
    text-align: center;
}

.file-holder > object {
    width: 100%;
    height: 100%;
    max-width: 51rem;
}

.gallery-title {
    font-family: 'Gotham Bold', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.accordion-button {
    font-family: 'Gotham Bold', sans-serif;
    font-weight: 400;
    font-size: 1.0625rem;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button {
    border-top-left-radius: var(--bs-accordion-border-radius) !important;
    border-top-right-radius: var(--bs-accordion-border-radius) !important;
}

.accordion-button.collapsed {
    background-color: var(--bs-gray-200);
    border-bottom-left-radius: var(--bs-accordion-border-radius) !important;
    border-bottom-right-radius: var(--bs-accordion-border-radius) !important;
}

.accordion-button:not(.collapsed) {
    color: var(--light-color);
    background-color: var(--dark-color);
}

.accordion-button:not(.collapsed)::after {
    background-image: var(--bs-accordion-btn-icon);
    filter: invert(1);
}

.accordion-item {
    margin-bottom: 1rem;
    border-radius: var(--bs-accordion-border-radius) !important;
    background-color: var(--white-color);
}

img.title-logo {
    width: 4rem;
}

img.spirituality-img {
    height: 350px;
    max-width: 100%;
}

img.img-thumbnail {
    padding: 0.125rem;
    background-color: var(--white-color);
}

blockquote {
    border-left: 3px solid #ddd;
    padding: 0.25rem 0 0.25rem 0.5rem;
    margin: 1rem;
}

blockquote > p:last-child {
    margin: 0;
}

#author {
    padding: 1rem 3rem 0 3rem;
    height: 40vh;
}

.form-control:hover {
    border-color: var(--bs-gray-600);
}

.form-select:not([disabled]):hover {
    border-color: var(--bs-gray-600);
    cursor: pointer;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 1px rgba(224, 1, 30, .75);
}

@media all and (min-width: 576px) {

    .brand-logo.smaller {
        display: none;
    }

}

@media all and (min-width: 1400px) {

    .navbar .nav-item .dropdown-menu {
        display: none;
        box-shadow: 0 1px 4px lightgrey;
    }

    .navbar .nav-item:hover .dropdown-menu {
        display: block;
    }

    .hover-underline-animation::after {
        content: '';
        position: absolute;
        width: calc(100% - 2rem);
        transform: scaleX(0);
        height: 2px;
        bottom: 6px;
        left: 1rem;
        background-color: var(--primary-color);
        transform-origin: bottom;
        transition: transform 0.25s ease-out;
    }

    .hover-underline-animation.dropdown::after {
        width: calc(100% - 3.35rem);
    }

    .hover-underline-animation:hover::after {
        transform: scaleX(1);
        transform-origin: bottom;
    }

}

@media all and (max-width: 1670px) {

    nav.navbar.navbar-de ul.navbar-nav a.nav-link {
        padding-left: 0.625rem;
        padding-right: 0.625rem;
        font-size: 1.025rem;
    }

    nav.navbar.navbar-de .hover-underline-animation::after {
        left: 0.625rem;
        width: calc(100% - 1.25rem);
    }

    nav.navbar.navbar-de .hover-underline-animation.dropdown::after {
        width: calc(100% - 2.6rem);
    }

}

@media all and (max-width: 1599px) {

    nav.navbar {
        padding: 0 0 0 0.5rem;
    }

    nav.navbar ul.navbar-nav a.nav-link {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .hover-underline-animation::after {
        left: 0.75rem;
        width: calc(100% - 1.5rem);
    }

    .hover-underline-animation.dropdown::after {
        width: calc(100% - 2.85rem);
    }

    img.brand-logo {
        height: 3.5rem;
    }

    .navbar-media {
        padding-left: 0;
    }

    #main-carousel, .main-image-holder, div.section > div.actuality-detail {
        margin-top: 4rem;
    }

}

@media all and (max-width: 1500px) {

    nav.navbar.navbar-de ul.navbar-nav a.nav-link {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        font-size: 1rem;
    }

    nav.navbar.navbar-de .hover-underline-animation::after {
        left: 0.5rem;
        width: calc(100% - 1rem);
    }

    nav.navbar.navbar-de .hover-underline-animation.dropdown::after {
        width: calc(100% - 2.35rem);
    }

}

@media all and (max-width: 1449px) and (min-width: 1400px) {

    nav.navbar.navbar-cz ul.navbar-nav a.nav-link {
        padding-left: 0.625rem;
        padding-right: 0.625rem;
        font-size: 1.025rem;
    }

    nav.navbar.navbar-cz .hover-underline-animation::after {
        left: 0.625rem;
        width: calc(100% - 1.25rem);
    }

    nav.navbar.navbar-cz .hover-underline-animation.dropdown::after {
        width: calc(100% - 2.6rem);
    }

}

@media all and (max-width: 1399px) {

    .tns-outer {
        margin-left: 0;
        margin-right: 0;
    }

    .slider-controls .carousel-control-prev {
        left: -1.75rem;
    }

    .slider-controls .carousel-control-next {
        right: -1.75rem;
    }

    .slider-controls .carousel-control-prev, .slider-controls .carousel-control-next {
        width: 2rem;
    }

    .navbar-media {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    nav.navbar {
        padding: 0 4rem 0 0.5rem;
    }

    .navbar-toggler {
        position: absolute;
        right: 0.5rem;
        top: 0.85rem;
    }

}

@media all and (max-width: 1199px) {

    div.section h2 {
        font-size: 2rem;
    }

}

@media only screen and (max-width: 767px) {

    footer hr {
        width: 95%;
    }

    .main-image-holder h1 {
        font-size: 2.5rem;
    }

    .main-image-holder {
        height: 350px;
    }

    .actuality-detail h1 {
        font-size: 2.75rem;
    }

    .actuality-photo {
        height: 300px;
    }

    .file-holder {
        height: 4rem;
    }

    .secondary-links {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 0.35rem;
    }

    #author {
        padding: 1rem 1rem 0 1rem;
    }

}

@media only screen and (max-width: 575px) {

    .brand-logo.bigger {
        display: none;
    }

    div.section h2 {
        font-size: 1.75rem;
    }

    div.section, footer {
        padding: 2rem 1rem;
    }

    .slider-controls .carousel-control-prev, .slider-controls .carousel-control-next {
        display: none;
    }

    .navbar-media {
        padding-right: 0.5rem;
    }

    .btn.btn-lang.dropdown-toggle {
        padding: 0.25rem;
    }

}

@media only screen and (max-width: 400px) {

    img.brand-logo {
        height: 3rem;
    }

    .navbar-brand {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

}
