* {
    padding: 0;
    margin: 0;
}

.bg-image {
    background-image: url("/assets/images/background.jpg");
    width: 100%;
    height: 635px;
    padding-top: 50px;
}

/* 
.bg-image-card {
  background-image: url('/assets/images/card-image (1).jpg');
  height: 300px;
  width: 100%;
  background-position: center;
  background-size: cover;
} */

.my-padding h1 {
    font-size: 25px;
    color: #fff;
    padding: 5px;
}

.my-padding p {
    color: #fff;
    padding: 5px;
}

.my-padding {
    padding: 10px;
}

.rounded-circle {
    border-radius: 50px;
    padding: 5px;
}

.to-the-center {
    margin-top: 150px;
}

.starten-h1 {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 35px !important;
}

.starten-h1 strong {
    color: #f2b700;
}

.card-footer a {
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    float: right;
}

.card-body p {
    font-size: 20px;
}

/* carousel */
.carousel {
    overflow: hidden;
}

.carousel .slider {
    animation: slidein 60s linear infinite;
    white-space: nowrap;
}

@keyframes slidein {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-78%, 0, 0);
    }
}

.carousel .slider .logos {
    width: 100%;
    display: inline-block;
    margin: 0px 0;
}

.carousel .slider .logos .fab {
    width: calc(100% / 10);
    animation: fade-in 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) forwards;
}



@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.slider-image {
    height: 280px;
    width: 380px;
    object-fit: cover;

}

.custom-slider-image {
    object-fit: contain;
    width: 460px;
    height: 280px;

}

.rotate-90 {
    transform: rotate(-90deg);
    transform-origin: 100% 100%;
}

@media screen and (max-width: 700px) {
    .slider-image {
        height: 125px;
        width: 240px;
        object-fit: cover;
    }
}

@media screen and (max-width: 700px) {
    .custom-slider-image {
        height: 125px !important;
        width: 200px !important;
        object-fit: contain;
    }
}

/* carousel */

.colored {
    background-color: #212529 !important;
}

.bg-image-lestungen {
    background-image: url("/assets/images/pattern.jpg");
    /* height: 300px; */
    width: 100%;
    background-position: center;
    background-size: cover;
}

.bg-image-custom-css {
    margin-top: -450px;
}

@media screen and (max-width: 700px) {
    .bg-image-custom-css {
        margin-top: -170px;
    }
}

.remove-bullets {
    list-style-type: none;
}

.bold-arrow {
    font-weight: bolder;
    color: #f2b700;
}

.bold-text {
    font-weight: bolder;
}

.text-margin {
    margin-left: 30px;

}

.custom-image-css {
    height: 90px;
    width: 90;
    object-fit: contain;
}

.custom-image-css-nft {

    height: 60px;
    width: 100;
    object-fit: contain;
}

.logo-image-css {
    width: 500px;

}

.custom-image-css-margin-top {
    width: 100%;
    height: auto;
}

.backround-image {
    margin-top: -205px;
}

@media screen and (max-width: 600px) {
    .backround-image {
        margin-top: 20px;

    }
}

.custom-image-css-first {
    height: 150px;
    width: 120px;
    object-fit: contain;
}

.custom-image-css-large {
    height: 60px;
    width: 60px;
    object-fit: contain;
}

.custom-image-css-logo {
    height: 170px;
    width: 150px;
    object-fit: contain;
}

@media screen and (max-width: 700px) {
    .custom-image-css {
        width: 100%;
        height: auto;
    }
}

@media screen and (max-width: 700) {
    .custom-image-css-first {
        width: 100%;
        height: auto;
    }
}

@media screen and (max-width: 700) {
    .custom-image-css-large {
        width: 100%;
        height: auto;

    }
}

.logo-image-css {
    width: 100%;
    height: auto;
}

@media screen and (max-width: 700) {
    .custom-image-css-logo {
        width: 100%;
        height: auto;

    }
}

@media screen and (max-width: 700px) {
    .custom-offset-image {
        display: none;

    }
}

@media screen and (max-width: 700px) {
    .custom-image-css-nft {
        width: 100%;
        height: auto;
    }
}

/* Side Menu */

.sidebar {
    position: fixed;
    left: -78px;
    top: 0;
    height: 100%;
    width: 78px;
    background: #11101d;
    padding: 6px 14px;
    z-index: 99;
    transition: all 0.5s ease;
}

.sidebar.open {
    width: 250px;
    left: 0px;
}

.sidebar .logo-details {
    height: 60px;
    display: flex;
    align-items: center;
    position: relative;
}

.sidebar .logo-details .icon {
    opacity: 0;
    transition: all 0.5s ease;
}

.sidebar .logo-details .logo_name {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    opacity: 0;
    transition: all 0.5s ease;
}

.sidebar.open .logo-details .icon,
.sidebar.open .logo-details .logo_name {
    opacity: 1;
}

.sidebar .logo-details #btn {
    position: absolute;
    top: 50%;
    right: -78px;
    transform: translateY(-50%);
    font-size: 22px;
    transition: all 0.4s ease;
    font-size: 23px;
    text-align: center;
    cursor: pointer;
    transition: all 0.5s ease;
}

.sidebar.open .logo-details #btn {
    text-align: right;
}

.sidebar i {
    color: #fff;
    height: 60px;
    min-width: 50px;
    font-size: 28px;
    text-align: center;
    line-height: 60px;
}

.sidebar .nav-list {
    margin-top: 20px;
    height: 100%;
}

.sidebar li {
    position: relative;
    margin: 8px 0;
    list-style: none;
}

.sidebar li .tooltip {
    position: absolute;
    top: -20px;
    left: calc(100% + 15px);
    z-index: 3;
    background: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 400;
    opacity: 0;
    white-space: nowrap;
    pointer-events: none;
    transition: 0s;
}

.sidebar li:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    transition: all 0.4s ease;
    top: 50%;
    transform: translateY(-50%);
}

.sidebar.open li .tooltip {
    display: none;
}

.sidebar input {
    font-size: 15px;
    color: #fff;
    font-weight: 400;
    outline: none;
    height: 50px;
    width: 100%;
    width: 50px;
    border: none;
    border-radius: 12px;
    transition: all 0.5s ease;
    background: #1d1b31;
}

.sidebar.open input {
    padding: 0 20px 0 50px;
    width: 100%;
}

.sidebar .bx-search {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 22px;
    background: #1d1b31;
    color: #fff;
}

.sidebar.open .bx-search:hover {
    background: #1d1b31;
    color: #fff;
}

.sidebar .bx-search:hover {
    background: #fff;
    color: #11101d;
}

.sidebar li a {
    display: flex;
    height: 100%;
    width: 100%;
    border-radius: 12px;
    align-items: center;
    text-decoration: none;
    transition: all 0.4s ease;
    background: #11101d;
}

.sidebar li a:hover {
    background: #fff;
}

.sidebar li a .links_name {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s;
}

.sidebar.open li a .links_name {
    opacity: 1;
    pointer-events: auto;
}

.sidebar li a:hover .links_name,
.sidebar li a:hover i {
    transition: all 0.5s ease;
    color: #11101d;
}

.sidebar li i {
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    border-radius: 12px;
}

.sidebar li.profile {
    position: fixed;
    height: 60px;
    width: 78px;
    left: 0;
    bottom: -8px;
    padding: 10px 14px;
    background: #1d1b31;
    transition: all 0.5s ease;
    overflow: hidden;
}

.sidebar.open li.profile {
    width: 250px;
}

.sidebar li .profile-details {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.sidebar li img {
    height: 45px;
    width: 45px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 10px;
}

.sidebar li.profile .name,
.sidebar li.profile .job {
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    white-space: nowrap;
}

.sidebar li.profile .job {
    font-size: 12px;
}

.sidebar .profile #log_out {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: #1d1b31;
    width: 100%;
    height: 60px;
    line-height: 60px;
    border-radius: 0px;
    transition: all 0.5s ease;
}

.sidebar.open .profile #log_out {
    width: 50px;
    background: none;
}

.home-section {
    position: relative;
    background: #e4e9f7;
    min-height: 100vh;
    top: 0;
    left: 78px;
    width: calc(100% - 78px);
    transition: all 0.5s ease;
    z-index: 2;
}

.sidebar.open~.home-section {
    left: 250px;
    width: calc(100% - 250px);
}

.home-section .text {
    display: inline-block;
    color: #11101d;
    font-size: 25px;
    font-weight: 500;
    margin: 18px;
}

@media (max-width: 420px) {
    .sidebar li .tooltip {
        display: none;
    }
}

.bg-form {
    padding: 20px;
    background-color: #eeeeee;
}

.no_decoration {
    text-decoration: none;
    color: #11101d;
}

.form-signin {
    width: 100%;
    max-width: 450px;
    padding: 15px;
    margin: auto;
}

.form-control:focus {
    color: #959595;
    background-color: #fff;
    border-color: #ced4da;
    outline: 0;
    box-shadow: none;
}

.textareaFormControl {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    outline: none;
}

.textareaFormControl::placeholder {
    color: #11101d;
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show>.nav-link {
    color: #18448a;
    font-family: fantasy;
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(0, 0, 0, .55);
    font-size: 20px;
    font-family: fantasy;
}


/* Media Querry */

@media only screen and (max-width: 700px) {
    .bg-image {
        height: 300px;

    }
}

.concert-link-image {
    width: 100%;
    height: 380px !important;
    margin-top: 54px;
    height: auto;
    object-fit: contain;


}

@media only screen and (max-width: 1200px) {
    .concert-link-image {
        height: 300px !important;
        width: 100%;
        margin-top: 50px;
        object-fit: contain;
    }
}

@media only screen and (max-width: 700px) {
    .concert-link-image {
        height: 300px !important;
        width: 100%;
        margin-top: -100px;
        object-fit: contain;
    }
}

/*  */

.custom-banner {
    margin-top: -95px;
}

/* @media only screen and (max-width: 992px) {
    .list-group-css {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
  } */
.list-group-css {
    display: flex;
    /* flex-direction: column; */
    padding-left: 0;
    margin-bottom: 0;
    border-radius: 0.25rem;
}

/* Media Querry */
._vue-flash-msg-body {
    z-index: 12050 !important;
    padding: 15px 0 15px 0;
}

._vue-flash-msg-body * {
    color: #fff !important;
}

._vue-flash-msg-body p {
    margin: 0;
}

.videos-styling {
    padding: 56.25% 0 0 0;
    position: relative;
}

.videos-styling-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.home-page-headline {
    font-size: 25px;
}

@media screen and (max-width: 700px) {
    .home-page-headline {
        font-size: 15px;


    }
}

@media screen and (max-width: 700px) {
    .home-page-text {
        font-size: 13px !important;


    }
}

.custom-slider-image {
    height: 280px;
    width: 458px;
    object-fit: contain;
}

.home-page-image {
    width: 100%;
    height: auto;
}

@media screen and (max-width: 700px) {
    .home-page-image {
        object-fit: contain;
        height: 340px;
    }
}

.slider-one {
    padding: 3rem !important;
}

@media screen and (max-width: 700px) {
    .slider-one {
        padding: 1rem !important;

    }
}