@font-face {
    font-family: "Roboto_Slab";
    font-style: normal;
    font-weight:100 900;
    font-display: swap;
    src: url("../font/Roboto_Slab/RobotoSlab-VariableFont_wght.ttf");
  }
  
  @font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight:400;
    font-display: swap;
    src: url("../font/Roboto/Roboto-Regular.ttf");
  }
  
  @font-face {
    font-family: "Raleway";
    font-style: normal;
    font-weight:100 900;
    font-display: swap;
    src: url("../font/Raleway/Raleway-VariableFont_wght.ttf");
  }
  @font-face {
    font-family: "Raleway-Italic";
    font-style: normal;
    font-weight:100 900;
    font-display: swap;
    src: url("../font/Raleway/Raleway-Italic-VariableFont_wght.ttf");
  }
  @font-face {
    font-family: "Lora";
    font-style: normal;
    font-weight:400 700;
    font-display: swap;
    src: url("../font/Lora/Lora-VariableFont_wght.ttf");
  }
  @font-face {
    font-family: "Lora-Italic";
    font-style: normal;
    font-weight:400 700;
    font-display: swap;
    src: url("../font/Lora/Lora-Italic-VariableFont_wght.ttf");
  }
  @font-face {
    font-family: "Poor Story";
    font-style: normal;
    font-weight:400;
    font-display: swap;
    src: url("../font/Poor_Story/PoorStory-Regular.ttf");
  }
  @font-face {
    font-family: "Indie Flower";
    font-style: normal;
    font-weight:400;
    font-display: swap;
    src: url("../font/Indie_Flower/IndieFlower-Regular.ttf");
  }
  body {
    font-family: 'Lora';
    background-image: linear-gradient(rgba(207, 212, 218, 0.65), rgba(255, 255, 255, 0.65)), url("../img/Hotel/bg1.jpg");
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: 'Raleway';
  }
  
  p {
    line-height: 1.75;
  }

      /* Side Menu */
      #sidebar-wrapper {
        position: fixed;
        z-index: 2;
        right: 0;
        width: 220px;
        height: 100%;
        transition: all 0.4s ease 0s;
        transform: translateX(250px);
        /* background: #3895d2; */
        background: #545454;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
      }
      
      .sidebar-nav {
        position: absolute;
        top: 0;
        width: 220px;
        margin: 0;
        padding: 0;
        list-style: none;
      }
      
      .sidebar-nav li.sidebar-nav-item a {
        display: block;
        text-decoration: none;
        text-transform: uppercase;
        font-size: 1.0rem;
        font-weight: 0.8;
        font-family: 'Roboto_Slab';
        color: #fff;
        padding: 15px;
      }
      
      .sidebar-nav li a:hover {
        text-decoration: none;
        color: #fff;
        background: rgba(255, 255, 255, 0.2);
      }
      
      .sidebar-nav li a:active,
      .sidebar-nav li a:focus {
        text-decoration: none;
      }
      
      .sidebar-nav > .sidebar-brand {
        font-size: 1.2rem;
        background: rgba(52, 58, 64, 0.1);
        height: 80px;
        line-height: 50px;
        padding-top: 15px;
        padding-bottom: 15px;
        padding-left: 15px;
      }
      
      .sidebar-nav > .sidebar-brand a {
        color: #fff;
      }
      
      .sidebar-nav > .sidebar-brand a:hover {
        color: #fff;
        background: none;
      }
      
      #sidebar-wrapper.active {
        right: 220px;
        width: 220px;
        transition: all 0.4s ease 0s;
      }
      .menu-toggle {
        position: fixed;
        right: 15px;
        top: 15px;
        width: 50px;
        height: 50px;
        text-align: center;
        color: #fff;
        background: rgba(52, 58, 64, 0.5);
        line-height: 50px;
        z-index: 999;
      }
      
      .menu-toggle:focus, .menu-toggle:hover {
        color: #fff;
      }
      
      .menu-toggle:hover {
        background: #343a40;
      }

  header.masthead {
    position: relative;
    background-color: #343a40;
    background: url("../img/Hotel/AnsichtHotel.jpg") no-repeat center center;
    background-size: cover;
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  
  header.masthead .overlay {
    position: absolute;
    background-color: #212529;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0.3;
  }
  
  header.masthead h1 {
   /*  font-size: 2rem;
    font-weight: 400; */
    font-family: 'Raleway';
    text-transform: uppercase;
    color:whitesmoke;
    animation-name: header__heading-main-font-weight-mobile;
    animation-delay: 0.1s;
    animation-duration: 5s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
  }
  @keyframes header__heading-main-font-weight-mobile {
    0% {
      opacity: 0.2;
      font-weight: 50;
      font-size: 0.5rem;
    }
    100% {
      opacity: 1;
      font-weight: 400;
      font-size: 1.5rem;
    }
  }
  @media (min-width: 768px) {
    header.masthead {
      padding-top: 15rem;
      padding-bottom: 15rem;
    }
    header.masthead h1 {
      /* font-size: 3rem;
      font-weight: 400; */
      font-family: 'Raleway';
      text-transform: uppercase;
      color:whitesmoke;
      animation-name: header__heading-main-font-weight;
    animation-delay: 0.5s;
    animation-duration: 5s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
    }
    @keyframes header__heading-main-font-weight {
        0% {
          opacity: 0.2;
          font-weight: 100;
          font-size: 0.5rem;
        }
        100% {
          opacity: 1;
          font-weight: 400;
          font-size: 4rem;
        }
      }
    
}

.introduction{
    font-family: 'Roboto';
     padding-top: 3rem; 
     padding-bottom: 4rem;
       
  }
  .introduction .text-heading{
    font-family: 'Raleway';
      color: #525252;
      font-size: 2.0rem;
      font-weight: 400;
      text-transform: uppercase;
      animation-name: introduction-heading-font-weight;
      animation-delay: 0s;
      animation-duration: 2s;
      animation-timing-function: ease-in-out;
      animation-fill-mode: both;
      
  }
  @keyframes introduction-heading-font-weight {
    0% {
      opacity: 0.2;
      font-weight: 50;
      font-size: 0.5rem;
    }
    100% {
      opacity: 1;
      font-weight: 400;
      font-size: 1.5rem;
    }
  }
  .introduction .text-desc{
    font-family: 'Raleway';
    font-size: 1.1rem;
    font-weight:300;
    animation-name: introduction-text-font-weight;
    animation-delay: 2s;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
  }
  .introduction .text-desc .t1{
   
      color: #4A91bf;
      
  }
  .introduction .text-desc .text-t2{
   
    color: #525252;
     
  }
  .introduction .text-desc .text-t1-d{
    
      color: #4A91bf;
      font-size: 1.5rem;
      font: weight 1.1em;
      text-transform: uppercase;
      
      
  }
  @keyframes introduction-text-font-weight {
    0% {
      opacity: 0;
      font-weight: 50;
      font-size: 0.5rem;
    }
    100% {
      opacity: 1;
      font-weight: 300;
      font-size: 1.1rem;
    }
  }
  
  @media (min-width: 768px) {
   
    @keyframes introduction-heading-font-weight {
        0% {
          opacity: 0.2;
          font-weight: 100;
          font-size: 0.5rem;
        }
        100% {
          opacity: 1;
          font-weight: 400;
          font-size: 4rem;
        }
      }
    
}





    
  .projects-section {
    padding-top: 4rem;
  }
  .projects-section .text-header{
   
    font-family: 'Raleway';
    color: #525252;
    font-size: 2.0rem;
    font-weight: 400;
    text-transform: uppercase;
  }
  
  .projects-section .text-headerset{
   
    font-family: 'Raleway';
    color: #525252;;
    font-size: 1.0rem;
    font-weight: 400;
  }
  
  .projects-section .text-oneview{
   
    font-family: 'Raleway';
    color: #525252;;
    font-size: 1.0rem;
    font-weight: 400;
  }
  .projects-section .text-oneview-description{
   
    font-family: 'Raleway';
    color: #525252;;
    font-size: 0.9rem;
    font-weight: 300;
  }
  
  .projects-section .featured-text {
    padding: 2rem;
  }
  .projects-section .project-text {
    padding: 3rem;
    font-size: 90%;
  }
  @media (min-width: 992px) {
    .projects-section .featured-text {
      padding: 0 0 0 2rem;
      border-left: 0.5rem solid #64a19d;
    }
    .projects-section .text-header{
   
      font-family: 'Raleway';
      color: #525252;
      font-size: 3.0rem;
      font-weight: 400;
      text-transform: uppercase;
    }
    .projects-section .project-text {
      padding: 5rem;
    }
    .projects-section .project-text hr {
      border-color: #64a19d;
      border-width: 0.25rem;
      width: 30%;
    }
  }
  
  
.service-list{
    font-family: 'Raleway';
    color: #525252;
    font-size: 0.95rem;
    font-weight: 400;
    list-style-type:disc;
  }
  .service-list-second{
    font-family: 'Raleway';
    color: #464f5d;
    font-size: 0.8rem;
    font-weight: 0.8;
    list-style-type:circle;
  }
  .service-list-heading{
    font-family: 'Raleway';
    color: #464f5d;
    font-size: 1.0rem;
    font-weight: 0.9;
    text-transform: uppercase;
  }
  
  .booking{
    padding-top: 0rem;
  }
  .booking .booking-head{
    position: relative;
    background-color: #343a40;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../img/Hotel/booking3.jpg") no-repeat center center;
    background-size: 100% 100%;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .booking .booking-text{
    font-family: 'Raleway';
    font-size: 2.0rem;
    font-weight: 400;
    color:white;
  }



  .booking .booking-label{
    font-family: 'Raleway';
    font-size: 1.0rem;
    font-weight: 400;
    color:white;
    position: absolute;
    top: 0;
    left: 1.75rem;
    bottom: 4rem;
   
   /*  margin: 0.75rem 1rem;
    
    padding: 0.75rem 1rem; */
    text-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
  
   
  }
  .booking .booking-input{
    background-color: transparent;
    border: 0.125rem solid white;
    padding: 0.75rem 1rem;
    color: white;
    border-radius: 10px;
    font-size: 1rem;
    width: 20rem;
    min-height: 3rem;
    font-family: 'Raleway';
    left: 1.75rem;
  }
  .booking .booking-input:focus{
    outline: none;
  }
  .booking .booking-input::placeholder{
    color: whitesmoke;
  }
  .booking .booking-input-select{
    background-color: transparent;
    border: 0.125rem solid white;
    padding-top: 1rem;
    padding-bottom: 1rem;
    color: white;
    border-radius: 10px;
    font-size: 1rem;
    width: 20rem;
    min-height: 4rem;
    font-family: 'Raleway';
  }
  
  
  @media (min-width: 992px) {
    .booking .booking-head{
      position: relative;
      background-color: #343a40;
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../img/Hotel/booking3.jpg") no-repeat center center;
      background-size: 100% 100%;
      padding-top: 20rem;
      padding-bottom: 20rem;
    }
    .booking .booking-text{
      font-family: 'Raleway';
      font-size: 3.0rem;
      font-weight: 400;
      color:white;
    }
    .booking .booking-label{
      font-family: 'Raleway';
      font-size: 1.0rem;
      font-weight: 400;
      color:white;
      position: absolute;
      top: 0;
      left: 1.75rem;
      bottom: 4rem;
     
     /*  margin: 0.75rem 1rem;
      
      padding: 0.75rem 1rem; */
      
     
    }
    .booking .booking-input{
      background-color: transparent;
      border: 0.125rem solid white;
      padding: 0.75rem 1rem;
      color: white;
      border-radius: 50px;
      font-size: 1rem;
      
      font-family: 'Raleway';
    }
    .booking .booking-input-select{
      background-color: transparent;
      border: 0.125rem solid white;
      padding-top: 5rem;
      padding-bottom: 5rem;
      color: white;
      border-radius: 10px;
      font-size: 1rem;
    
      font-family: 'Raleway';
    }
  }
  .form__horizontal {
    display: flex;/*Flexbox*/
    flex-wrap: wrap;/*Zeilenumbruch*/
  }
  
  .form__group {
    position: relative;
    margin-bottom: 1.5rem;
  }
  .form__horizontal > .form__group {
    margin-right: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .form__input {
    background-color: transparent;
    border: 0.125rem solid #00e29c;
    padding: 0.75rem 1rem;
    color: #00e29c;
    text-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.25);
    border-radius: 10000px;
    font-size: 1rem;
    width: 12.5rem;
    font-family: inherit;
  }
  .form__input:focus {
    outline: none;
  }
  .form__input::placeholder {
    color: transparent;
  }
  
  .form__label {
    position: absolute;
    top: 0;
    left: 1.2rem;
    font-size: 1rem;
    margin: 0.75rem 1rem;
    color: #00e29c;
    text-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
    transform-origin: 0% 50%;
    transform: scale(1) translate(0, 0);
    will-change: transform;
    transition: transform 0.25s ease-in-out;
  }
  .form__input:focus ~ .form__label, .form__input[placeholder]:not(:placeholder-shown) ~ .form__label {
    transform: scale(0.75) translate(0.4rem, 2.7rem);
  }

 
.booking-modal {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 20000;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
  }
  .booking-modal:target {
    display: flex;
  }
  .booking-modal::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    animation-name: booking-modal--fade-in;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-delay: 0s;
    animation-iteration-count: 1;
    background-color: rgba(0, 0, 0, 0.85);
  }
  @supports (backdrop-filter: blur(4rem)) {
    .booking-modal::before {
      background-color: rgba(0, 0, 0, 0.15);
      backdrop-filter: blur(4rem);
    }
  }
  
  @keyframes booking-modal--fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  .booking-modal__content {
    position: relative;
    width: 45rem;
    height: 30rem;
    max-width: 100vw;
    max-height: 100vh;
    overflow: auto;
    border-radius: 0.25rem;
    padding-left: calc(min(100vw, 45rem) * 0.375);
    background-image: linear-gradient(95.7391704773deg, transparent 33%, rgba(64, 118, 130, 0.85) 33.15%), linear-gradient(90deg, transparent 33%, rgba(255, 255, 255, 0.5) 100%), url("../img/Hotel/booking4.jpg");
    background-color: #7f7f7f;
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: center center, center center, center 30%;
    background-size: auto, auto, cover;
    box-shadow: 0 0 1rem black;
    animation-name: booking-modal__content--fade-in;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
    animation-fill-mode: backwards;
  }
  @media (max-width: 36em) {
    .booking-modal__content {
      height: 30rem;
      padding-left: 1rem;
      background-color: #407682;
      background-image: none;
    }
  }
  
  @keyframes booking-modal__content--fade-in {
    0% {
      transform: translate(0, calc(-50vh - 50%));
    }
    100% {
      transform: translate(0, 0);
    }
  }
  .booking-modal__close {
    display: block;
    position: absolute;
    right: 1rem;
    top: 1rem;
    width: 1.25rem;
    height: 1.25rem;
    color: transparent;
    border-radius: 100000px;
    filter: drop-shadow(0 0 0.5rem rgba(0, 0, 0, 0.5));
    background-image: linear-gradient(-45deg, transparent 44%, #4A91bf 45%, #4A91bf 55%, transparent 56%), linear-gradient(45deg, transparent 44%, #4A91bf 45%, #4A91bf 55%, transparent 56%);
  }
  .booking-modal__close:hover {
    opacity: 0.8;
  }
  
  .booking-modal__heading {
    padding-top: 3rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.35rem;
    text-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.5);
  }
  
  .booking-modal__submit-container {
    text-align: right;
    margin-right: 1.5rem;
    margin-top: 1rem;
  }
  
  .booking-modal__paragraph {
    font-weight: 250;
    margin-bottom: 1rem;
    text-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.5);
  }
   

.booking-modal-text{
  font-family: 'Raleway';
  font-size: 0.8rem;
  font-weight: 400;
  color:white;
}


.footer {
    background-color: rgba(20, 20, 19, 0.9);
  }
  
  .footer-section {
    padding-top: 0.25rem;
    padding-bottom: 1rem;
  }
  .footer-section .card {
    border: 0;
    border-bottom: 0.25rem solid #64a19d;
  }
  .footer-section .card h4 {
    font-size: 0.8rem;
    font-family: 'Roboto';
    text-transform: uppercase;
    letter-spacing: 0.15rem;
  }
  .footer-section .card hr {
    border-color: #64a19d;
    border-width: 0.25rem;
    width: 3rem;
  }
  .footer-section .social {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .footer-section .social a {
    text-align: center;
    height: 3rem;
    width: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100%;
    line-height: 3rem;
    color: rgba(255, 255, 255, 0.3);
  }
  .footer-section .social a:hover {
    color: rgba(255, 255, 255, 0.5);
  }
  .footer-section .social a:active {
    color: #fff;
  }

  .button {
    display: inline-block;
    border: 0.125rem solid currentColor;
    border-radius: 10000rem;
    color: #00e29c;
    text-decoration: none;
    padding: 1rem 6rem;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    font-family: 'Raleway';
  }
  .button:hover {
    color: #1cffb9;
  }
  
  .button--form {
    font-size: 1rem;
    padding: 0.75rem 1rem;
    color: white;
    background-color: #4A91bf;
    border: 0.125rem solid white;
    font-weight: normal;
    text-transform: none;
  }
  .button--form:hover {
    color: #323232;
  }
  
  .button--background-blur {
    -webkit-backdrop-filter: blur(3rem);
    backdrop-filter: blur(3rem);
  }
  
  .button--white {
    color: white;
    text-shadow: 0 0 0.125rem rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0.125rem rgba(0, 0, 0, 0.5);
  }
  .button--white:hover {
    color: #e6e6e6;
  }
  
  .button--secondary {
    color: white;
    background-color: #26464d;
    border: 0.125rem solid #26464d;
  }
  .button--secondary:hover {
    color: white;
    background-color: #011820;
    border: 0.125rem solid #011820;
  }
  
  .button--slim {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .story__book {
    text-align: center;
    padding: 4rem 0 4rem 0;
  }
  .story__video {
    position: absolute;
    z-index: 0;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
  }
  @supports (object-fit: cover) and (object-position: center center) {
    .story__video {
      height: 100%;
      object-fit: cover;
      object-position: center center;
    }
  }
  
  .story__video-colorize {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(38, 70, 77, 0.5);
  }
  