    body {
        background-color: rgb(156, 209, 190);

    }

    @media (max-width: 480px) {
        body {
            padding-top: 2rem;
        }
    }
    .collapse{
        align-items: flex-end;
    }

    .spacer {
        padding-top: 2%;
        padding-bottom: 2%;
        background-color: rgb(156, 209, 190)
    }

    .bg-2 {
        background-color: rgb(156, 209, 190)
    }
    .bg-w{
        background-color: whitesmoke;
    }

    .map-container-2 {
        overflow: hidden;
        padding-bottom: 56.25%;
        position: relative;
        height: 0;
    }

    .map-container-2 iframe {
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        position: absolute;
    }

    p {
        font-family: 'Maven Pro', sans-serif;
        color: #3d3d3d
    }

    h1,
    h2,
    h3,
    h4,
    h5 {
        font-family: brandon-grotesque, sans-serif;
        font-weight: 700;
        font-style: normal;
    }

    a.kontakt-link {
        font-family: 'Roboto', sans-serif;
        color:rgb(255, 255, 255 );
        text-decoration: none;
    }
    a.kontakt-link:hover{
        color: rgb(239, 128, 177);
    }

    h2.fc-w,
    h3.fc-w,
    p.fc-w,
    a.fc-w {
        color: rgb(255, 255, 255 ) !important;
    }

    .fc-g{
        color: #4e685e !important;
    }
    h2.fc-y,
    h3.fc-y,
    p.fc-y,
    a.fc-y {
        color: rgb(199, 139, 27);
    }

    .bg-w{
        background-color: whitesmoke;
    }

    h2.fw-b,
    a.fw-b {
        font-weight: bold !important;
    }

    .form-label{
        font-family: brandon-grotesque, sans-serif;
        font-weight: 700;
        font-style: normal;
        color: #4e685e;
        font-size: 1.2rem;
    }

    .form-check-label{
        color:  #4e685e !important;
    }

    input[type=text]:focus, textarea:focus, input:focus {
        box-shadow: 0 0 5px rgb(239, 128, 177) !important;
        /*padding: 3px 0px 3px 3px !important;
        margin: 5px 1px 3px 0px !important; */
        border: 1px solid rgb(239, 128, 177) !important;
      }
    .button-link{
        font-family: brandon-grotesque, sans-serif;
        font-weight: 700;
        font-style: normal;
        color:white;
        text-decoration: non;
    }
    .btn-primary{
        background-color:rgb(239, 128, 177) ;
        border: whitesmoke;
    }
    .btn-primary:hover{
        color: whitesmoke!important;
        border-color: rgb(156, 209, 190) !important;
        background-color: #4e685e;
    }
    .navbar-collapse{
        flex-grow: 0;
    }
    .landing-img {
        height: 80%;
    }

    html {
        scroll-padding-top: 200px;
    }

    .active {
        background-color: rgb(156, 209, 190);
        box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
    }
    

    footer.a.fc-w:hover {
        color: rgb(239, 128, 177) !important;
    }

    header.a.fw-b:hover {
        color:rgb(239, 128, 177) !important;
    }

    .nonactive {
        background-color: rgb(156, 209, 190);
        
    }

    .fc-w {
        color: rgb(240, 240, 240) !important;
    }

    .nav-name {
        font-size: 1.5rem;
        margin-left: 1rem;
        margin-right: 0rem;
        font-weight: bold !important;
    }
    .nav-link:hover{
        color: rgb(239, 128, 177) !important;
    }
    .nav-link{
        color: white !important;
    }
    .img-style {
        height: 300px;
        width: 100% !important;
        object-fit:cover;
        object-position: center;
        border-radius: calc(.5rem);
        box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
    }

    .logoBig {
        width: 300px;
    }

    .logo {
        width: 200px;
    }

    .card-title {
        font-size: 1.5rem;
        font-weight: bolder;
    }
    .bg-img{
        background-image: url("../image/img_1.jpg") !important;
        background-size: cover;
        background-repeat: no-repeat;
        
    }
    .card {
        background-color:rgba(239, 128, 177, 0.0) !important;
        border-radius: .75rem;
        align-items: center !important;
        justify-content: center !important;
        margin: auto;
        /* box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2); */
    }

    /* .card-img-top {
        border-top-left-radius: calc(.75rem - 1px);
        border-top-right-radius: calc(.75rem - 1px);
    } */

    .navKontakt{
        justify-content: flex-end;
    }

    .navKontakt-blue {
        font-size: 1rem;
        color: rgb(10, 13, 144) !important;
        
    }
    .navKontakt-white {
        font-size: 1rem;
        color: white !important;
        
    }

    a.navKontakt-blue:hover {
        color: rgb(199, 139, 27) !important;
    }
    

    ul.navKontaktList {
        text-align: right !important;
        flex-direction: row-reverse !important;
    }

    li.navKontaktList {
        display: inline !important;
    }

    .hover-underline-animation-top {
        display: inline-block;
        position: relative;
        color: #0087ca;
    }

    .hover-underline-animation-top:after {
        content: '';
        position: absolute;
        width: 100%;
        transform: scaleX(0);
        height: 4px;
        bottom: 0;
        left: 0;
        background-color: rgb(239, 128, 177);
        transform-origin: bottom right;
        transition: transform 0.25s ease-out;
    }

    .hover-underline-animation-top:hover:after {
        transform: scaleX(1);
        transform-origin: bottom left;
    }

    .hover-underline-animation-bot {
        display: inline-block;
        position: relative;
        color: #0087ca;
    }

    .hover-underline-animation-bot:after {
        content: '';
        position: absolute;
        width: 100%;
        transform: scaleX(0);
        height: 4px;
        bottom: 0;
        left: 0;
        background-color: rgb(239, 128, 177);
        transform-origin: bottom right;
        transition: transform 0.25s ease-out;
    }

    .hover-underline-animation-bot:hover:after {
        transform: scaleX(1);
        transform-origin: bottom left;
    }

    .footerLink{
        color:white !important;
    }

    .footerLink:hover{
        color: black !important;
    }

    
/**
 * ----------------------------------------
 * animation kenburns-top
 * ----------------------------------------
 */
 @-webkit-keyframes kenburns-top {
    0% {
      -webkit-transform: scale(1) translateY(0);
              transform: scale(1) translateY(0);
      -webkit-transform-origin: 50% 16%;
              transform-origin: 50% 16%;
    }
    100% {
      -webkit-transform: scale(1.25) translateY(-15px);
              transform: scale(1.25) translateY(-15px);
      -webkit-transform-origin: top;
              transform-origin: top;
    }
  }
  @keyframes kenburns-top {
    0% {
      -webkit-transform: scale(1) translateY(0);
              transform: scale(1) translateY(0);
      -webkit-transform-origin: 50% 16%;
              transform-origin: 50% 16%;
    }
    100% {
      -webkit-transform: scale(1.25) translateY(-15px);
              transform: scale(1.25) translateY(-15px);
      -webkit-transform-origin: top;
              transform-origin: top;
    }
  }
  
  /**
   * ----------------------------------------
   * animation kenburns-bottom
   * ----------------------------------------
   */
  @-webkit-keyframes kenburns-bottom {
    0% {
      -webkit-transform: scale(1) translateY(0);
              transform: scale(1) translateY(0);
      -webkit-transform-origin: 50% 84%;
              transform-origin: 50% 84%;
    }
    100% {
      -webkit-transform: scale(1.1) translateY(15px);
              transform: scale(1.1) translateY(15px);
      -webkit-transform-origin: bottom;
              transform-origin: bottom;
    }
  }
  @keyframes kenburns-bottom {
    0% {
      -webkit-transform: scale(1) translateY(0);
              transform: scale(1) translateY(0);
      -webkit-transform-origin: 50% 84%;
              transform-origin: 50% 84%;
    }
    100% {
      -webkit-transform: scale(1.1) translateY(15px);
              transform: scale(1.1) translateY(15px);
      -webkit-transform-origin: bottom;
              transform-origin: bottom;
    }
  }
  
  
  .kenburns-top {
      -webkit-animation: kenburns-top 5s ease-out both;
              animation: kenburns-top 5s ease-out both;
  }
  
  .kenburns-bottom {
      -webkit-animation: kenburns-bottom 5s ease-out reverse both;
              animation: kenburns-bottom 5s ease-out reverse both;
  }
  