html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }

}



.noDec{
    text-decoration:none !important;
}
.noGutters{
    padding-left:0 !important;
    padding-right:0 !important;
}
.sticky {
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0; /* Position from the top edge */
    padding: 10px;
}
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    background-color:transparent;
    /*background: linear-gradient(90deg, rgba(40,38,38,1) 11%, rgba(9,9,121,1) 50%, rgba(40,38,38,1) 86%);*/
    color: white;
}
/* Variables */

@font-face {
    font-family: 'opensans-medium';
    src: url('../fonts/opensans-medium.woff') format('woff');
}
@font-face {
    font-family: 'jmh-typewriter';
    src: url('../fonts/jmh-typewriter.woff') format('woff');
}

:root {
    /* Colors */
    --Primary-Color: black;
    --Secondary-Color: grey;
    --Tertiary-Color: #090979;
    /* Font Sizes */
    --Main-Heading: clamp(30px, 3vw, 40px);
    --Sub-Heading: clamp(20px, 3vw, 30px);
    --Body-Heading: clamp(16px, 3vw, 18px);
    --Buttons-Font-Size: clamp(16px, 3vw, 18px);
    /*Font Families*/
    --Main-Font: 'jmh-typewriter';
    --Secondary-Font: 'Times New Roman', Times, serif;
}
.row {
    --bs-gutter-x: 0 !important;
}
.imgBorder{
    border:2px solid black;

}
.imgBoxSpacing{
    padding:0px 10px 0 10px;
}
.d-flex-justify-center {
    display: flex;
    justify-content: center;
}
.carouselImage {
    width: 100%;
    max-width: 1280px;
    height:100%;
    max-height: 720px;
}

.containerSpacing {
    padding-top: 70px;
    padding-bottom: 70px;
}
.blackDecoration {
    background-color: rgba(0,0,0,0.7);
    width: 100%;
    text-align: center;
}
/* Headers */
.MainHeading {
    font-size: var(--Main-Heading);
    font-family: var(--Main-Font);
    color: black;
    z-index:3;
}
.PageIntro{
    z-index:2;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center ;
    height:100%;
}
.defaultBody{
    color:black;
    font-size:var(--Body-Heading);
    font-family:var(--Secondary-Font);
}
/* Navbar Related */


.navbar-toggler-icon {
    background-image: url('../images/websiteimages/icons/hamburgerbutton.png');
    width: 2em;
    height: 2em;
}
@keyframes moveGradient {
    0% {
        background-position: 50% 0%;
    }

    50% {
        background-position: 50% 100%;
    }

    100% {
        background-position: 50% 0%;
    }
}

@keyframes moveColor {
    0% {
        color: rgba(255,255,255,1) !important;
    }

    50% {
        color: rgba(0,0,0,1) !important;
    }

    100% {
        color: rgba(255,255,255,1) !important;
    }
}

.navbar {
    /*background: linear-gradient(180deg, rgba(2,0,36,1) 33%, rgba(9,9,121,1) 51%, rgba(150,198,255,1) 68%);*/
    background-color:lightgrey;
    background-size: 200% 200%;
    animation: moveGradient 15s ease infinite;
}

.nav-link {
    color: var(--Primary-Color);
    animation: moveColor 15s ease infinite;
    font-family: var(--Main-Font);
    font-size: var(--Body-Heading);
    transition: 0.5s;
}

    .nav-link:focus, .nav-link:hover {
        color: transparent !important;
        text-shadow: 0px 0px 3px white;
        transition: 3s;
    }
/*@keyframes moveColor {
    0% {
        color: rgba(255,255,255,1);
    }

    50% {
        color: rgba(150,198,255,1);
    }

    100% {
        color: rgba(255,255,255,1);
    }
}


@keyframes moveGradient {
    0% {
        background-position: 50% 0%;
    }

    50% {
        background-position: 50% 100%;
    }

    100% {
        background-position: 50% 0%;
    }
}

.navbar {
    background: linear-gradient(180deg, rgba(2,0,36,1) 33%, rgba(9,9,121,1) 51%, rgba(150,198,255,1) 68%);
    background-size: 200% 200%;
    animation: moveGradient 15s ease infinite;
}
.nav-link {
    color: white !important;
    animation: moveColor 10s easy infinite;
    font-family: var(--Main-Font);
    font-size: var(--Body-Heading);
    transition: 0.5s;
}

    .nav-link:focus, .nav-link:hover {
        color: transparent !important;
        text-shadow: 0px 0px 3px white;
        transition: 3s;
    }*/


.defaultButtonFloat {
    position: relative;
    width:60%;
    height: 50px;
    background-color: var(--Secondary-Color);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: white !important;
    font-weight: 600;
    transition: 3s;
    border: 1px solid black;
    border-radius: 10px;
    font-family: var(--Main-Heading);
    font-size: var(--Buttons-Font-Size) !important;
}

    .defaultButtonFloat:hover {
        transition: 1s;
        background-color: black;
        color: white !important;
        border: 1px solid white;
    }

.defaultButton {
    position: relative;
    width: 250px;
    height: 60px;
    background-color: var(--Secondary-Color);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: white !important;
    font-weight: 600;
    transition: 3s;
    border: 1px solid black;
    border-radius: 10px;
    font-family: var(--Main-Heading);
    font-size: var(--Buttons-Font-Size) !important;
}
    .defaultButton:hover {
        transition:1s;
        background-color: black;
        color: white !important;
        border: 1px solid white;
    }

.nav-item{
    padding-left:20px;
    padding-right:20px;
  
}


/*#navbarSupportedContent {
    display: flex;
    justify-content: center;
    align-items: center;
}*/


.AboveNavBoilerPlate {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 5px;
    background-color: black;
}
.aboveNavIcons {
    width: 25px;
    margin-left: 10px;
    margin-right: 10px;
}
.aboveNavIconsF{

}
.cursor_Pointer {
    cursor: pointer !important;
}
/* Background */
.background_main {
    width: 100%;
    position: relative;
    height: 100vh; /* Ensures the background fills the viewport height */
    overflow: hidden; /* Prevents scrolling caused by extra image content */
}
.text-primary{
    color: white !important;
    font-weight:900 !important;
}
.footerInfo {
    display: flex;
    justify-content: space-between;
}
.background_main_1 {
    width: 100%;
    position: relative;
    height: 80vh;
}
.purrr{
    margin-top:25px;
}

.meinLogo {
    width:100%;
    max-width:250px;
}

.floatingHeading2 {
    position: absolute;
    width: 100%;
    height: 100vh;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding:20px;
}

.floatingHeading{
    position:absolute;
    width:100%;
    height:100%;
    z-index:2;
    display:flex;
    justify-content:center;
    align-items:center;
}
.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Ensures the image covers the entire parent */
    object-fit: cover; /* Maintains the image's aspect ratio while covering the area */
}
.topBannerImage {
    width: 100%;
    max-width: 500px;
    
}
@media only screen and (max-width: 991px) {
    .topBannerImage{
        padding:55px;
    }
}
.background_contain {
    object-fit: contain !important;
}

.floatingButton{
    position:absolute;
    top:80%;
    left:20%;
}
/* Footer */
.footerContactDetails {
    display: flex;
    flex-direction: column;
    text-align: start;
    height: 100%;
    justify-content: center;
    align-items: center;
}
.footerContactDetailsText {
    font-family: var(--Secondary-Font) ;
    font-size: var(--Sub-Heading);
    color:white !important;
    text-decoration:none;
    padding:2.5% 0 2.5% 0;
}
.bgImageTopbannerDesktop{
    display:inline;
}
/* Gallery */
.GalleryText {
    font-size: var(--Main-Heading);
    text-decoration: none;
    color: var(--Primary-Color) !important;
    font-family: var(--Secondary-Font);
}
.galleryDiv{
    width:100%;
    padding:20px;
 
}
hr{
    height:4px !important;
    background-color:White;
}
.bgImageTopbannerMobile{
    display:none;
}
@media only screen and (max-width: 1150px) {
    .bgImageTopbannerMobile{
        display:inline;
    }
    .bgImageTopbannerDesktop {
        display: none;
    }
}