/* Namari Landing Page Dynamic Style Index

1. Website Default Styling
2. Navigation
3. Primary and Secondary Colors
4. Banner
5. Typography
6. Buttons
6a. checkbox
6b. Formular Flexbox
7. Footer


/*------------------------------------------------------------------------------------------*/
/* 1. Website Default Styling */
/*------------------------------------------------------------------------------------------*/


body {
    background:#a4b2b6;
}


/* Default Link Color */

a, .la-ball-triangle-path {
    color:#a4b2b6;
}

a:hover, #header.nav-solid nav a:hover {
    color:#441155;
}

/* Default Icon Color */

.icon i {
    color:#441155;
}

/* Border Color */

#banner .section-heading:before, .testimonial.classic footer:before {
    background: #fdfdfd00;
}

.pricing-block-content:hover {
    border-color:#441155;
}


/*------------------------------------------------------------------------------------------*/
/* 2. Navigation */
/*------------------------------------------------------------------------------------------*/


/* Transparent Navigation Color on a Banner */

#header nav a, #header i {
    color:#111;
}


/* Navigation Colors when the Navigation is sticky and solid */ 

#header.nav-solid, #header.nav-solid a, #header.nav-solid i, #nav-mobile ul li a {
    color:#363636;
}


/* Navigation Active State */

#header.nav-solid .active {
    color: #441155;
    border-color: #441155;
}    



/*------------------------------------------------------------------------------------------*/
/* 3. Primary and Secondary Colors */
/*------------------------------------------------------------------------------------------*/


/* Primary Background and Text Colors */

.primary-color, .featured .pricing {
    background-color:#441155;
}

.primary-color, .primary-color .section-title, .primary-color .section-subtitle, .featured .pricing, .featured .pricing p {
    color:#a4b2b6;    
}

.section-heading h2:after {
    background:#44115500;
    content:"";
    display:block;
    width:30px;
    height:5px;
    margin-top:30px;
}

.text-center .section-heading h2:after {
    margin:30px auto 25px auto;
}

/* Primary Icon Colors */

.primary-color .icon i, .primary-color i {
    color:#a4b2b6;
}


/* Secondary an Third Background and Text Colors */

.secondary-color {
    background-color:#f5f5f5;
}

.third-color {
    background-size:cover;
    border-color: #441155;
    background-color: white;
    opacity: 0.95;
                border: 2px;
                border-style: solid;
    			border-radius: 5px 5px 5px 5px;
                padding: 8px;
}


/*------------------------------------------------------------------------------------------*/
/* 4. Banner */
/*------------------------------------------------------------------------------------------*/


/* Banner Background and Text Colors */

#banner {
    background: url("../images/banner-images/banner-image-ram.png") no-repeat center top;
    background-size:cover;
}


/*------------------------------------------------------------------------------------------*/
/* 5. Typography */
/*------------------------------------------------------------------------------------------*/


body {
    font-family: 'Poppins', sans-serif, Arial, Helvetica;
    font-size:15px;
    font-weight:normal;
    color:#111;
}

/* Logo, if you are using Fonts as Logo and not image

#logo h1 {
    font-family:;
    font-size:; 
    font-weight:;
    color:;
}

#logo h2 {
    font-family:;
    font-size:; 
    font-weight:;
    color:;
}

*/


/* Banner Typography */

#banner h1 {
    font-family: 'Poppins', sans-serif, Arial, Helvetica;
    font-size:62px;
    line-height:50px;
    font-weight:600;
    color:#111;
    text-shadow: -1px 0 grey, 0 1px grey, 1px 0 grey, 0 -1px grey;
}

#banner h2 {
    font-family: 'Poppins', sans-serif, Arial, Helvetica;
    font-size:18px;
    font-weight:500;
    color:#111;
}


/* Section Title and Subtitle */

.section-title {
    font-family: 'Poppins', sans-serif, Arial, Helvetica;
    font-size: 32px; 
    font-weight:700;
    color:#111;
}

.section-subtitle {
    font-family: 'Poppins', sans-serif, Arial, Helvetica;
    font-size: 16px;
    font-weight:300;
    color:#626c71;
}

/* Testimonial */

.testimonial q {
    font-family: 'Poppins', sans-serif, Arial, Helvetica;
    font-size: 17px; 
    font-weight:300;
}

.testimonial.classic q, .testimonial.classic footer {
    color:#111;
}


/* Standard Headings h1-h6 */

h1 {
    font-family: 'Poppins', sans-serif, Arial, Helvetica;
    font-size: 40px; 
    font-weight:300;
    color:#111;
}

h2 {
    font-family: 'Poppins', sans-serif, Arial, Helvetica;
    font-size: 34px; 
    font-weight:300;
    color:#111;
}

h3 {
    font-family: 'Poppins', sans-serif, Arial, Helvetica;
    font-size: 30px; 
    font-weight:700;
    color:#111;
}

h4 {
    font-family: 'Poppins', sans-serif, Arial, Helvetica;
    font-size: 18px; 
    font-weight:400;
    color:#111;
}

h5 {
    font-family: 'Poppins', sans-serif, Arial, Helvetica;
    font-size: 12px; 
    font-weight:400;
    color:#111;
}

h6 {
    font-family: 'Times', serif, Times, Helvetica;
    font-size: 24px; 
    font-weight:700;
    color:red;
}


/*------------------------------------------------------------------------------------------*/
/* 6. Buttons */
/*------------------------------------------------------------------------------------------*/

/* ----------Default Buttons---------- */


/* Button Text */

.button, input[type="submit"]  {
    font-family: 'Poppins', sans-serif, Arial, Helvetica;
    font-size:14px;
    font-weight:bold;
    color:#111;
}


/* Button Color */

.button, input[type="submit"] {
    border-color:#111;
}


/* Button Hover Color */

.button:hover,  input[type="submit"]:hover {
    border-color:#441155;
    color:#441155;
}

.button:disabled {
            opacity: 0.25; /* Setzt die Transparenz auf 25% */
        }


/* ----------Banner Buttons---------- */


/* Button Text */

#banner .button {
    font-family: 'Poppins', sans-serif, Arial, Helvetica;
    font-size:16px;
    color:#111;
}


/* Button Color */

#banner .button {
    border-color:#111;
}


/* Button Hover Color */

#banner .button:hover {
    color:#441155;
    border-color:#441155;
}

/* 6a Checkbox */
  /* Container für die Checkbox */
  .checkbox-container {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif, Arial, Helvetica;
    font-size: 12px;
  }

  /* Versteckt die Standard-Checkbox */
  .checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }

  /* Erstellen einer benutzerdefinierten Checkbox */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    border-width: 2px;
    border-color: #a4b2b6;
    border-style: solid;
    border-radius: 5px 5px 12px 5px;
    background-color: rgba(164, 181, 182, 0.795);
  }

  /* Beim Anklicken der Checkbox */
  .checkbox-container input:checked ~ .checkmark {
    background-color: rgba(164, 181, 182, 0.795);
    border-color: #441155;
  }

  /* Wenn die Checkbox markiert ist, fügt einen blauen Haken hinzu */
  .checkbox-container input:checked ~ .checkmark:after {
    content: "";
    position: absolute;
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border-style: solid;
    border-color: #441155;
    border-width: 0 4px 4px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

/* 6b. Formular Flexbox */

.form-container {
  display: flex;
}
.form-left, .form-right {
  flex-grow: 1;
}
.form-right {
  margin-left: 20px;
}

/*------------------------------------------------------------------------------------------*/
/* 7. Footer */
/*------------------------------------------------------------------------------------------*/

#landing-footer, #landing-footer p, #landing-footer a {
    font-family: 'Poppins', sans-serif, Arial, Helvetica;
    font-size:12px;
    font-weight:normal;
    color:#363636;
}

/* Footer Icon Color */

#landing-footer i {
    color:#363636;
}

table {
    width: 90%;
    border-collapse: collapse;
}
th, td {
    border: none;
    text-align: left;
}

#dreieck img {
    max-height: 71px;
    vertical-align: middle;
    margin-right: 15px;
}

.uberdiv {
                position: fixed;
                max-width: 49%;
                max-height: 35%;
                overFlow: auto;
                top: 50px;
                left: 50px;
                z-index: 10000;
                background-color: white;
                opacity: 0.95;
                border: 2px black;
                border-style: solid;
    			border-radius: 5px 5px 5px 5px;
                padding: 8px;
            }
            
.loaderdiv {
                position: fixed;
                max-width: 99%;
                max-height: 99%;
                overFlow: auto;
                top: 50px;
                left: 50px;
                z-index: 100000;
                background-color: white;
                opacity: 0.95;
                border: 2px black;
                border-style: solid;
    			border-radius: 5px 5px 5px 5px;
                padding: 8px;
            }

.admintext {
    font-family: Monospace;
    font-size:10px;
    color:black;
}

.featherlight-iframe .featherlight-content{
        /* dimensions: 1140px prevents iframe from spanning the full width of the browser */
        width: 80%;
        max-width: 1140px;
        
        /* spacing */
        margin: 0;
        padding: 0;
    }

    .featherlight-iframe .featherlight-inner{
        /* positioning */
        display: block;
        float: left;
        position: relative;

        /* dimensions */
    
        width: 100%;
        height: 600px;
    }
    .featherlight .featherlight-inner:after{
        /* dimensions */
        content: "";
        float: left;
        width: 80%;
    	height:80%;
        padding-top: 57%;
        display: block;
        position: relative;
    }
}

.randram {
  border: 10px solid black;
  border-radius: 10px; /* Hier kannst du die Ecken des Rahmens abrunden */
  padding: 10px; /* Raum zwischen dem Inhalt und dem Rahmen */
}

.teaser {
    width: 124px; /* Breite des Teasers */
    height: 128px; /* Höhe des Teasers */
    background: url('../images/gallery-images/video.mp4') no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-attachment: fixed;
    -webkit-background-attachment: fixed;
    -moz-background-attachment: fixed;
    -o-background-attachment: fixed;
    animation: playVideo 10s infinite; /* Hier wird das Video endlos abgespielt */
}

@keyframes playVideo {
    0% {
        background-position: center;
    }
    100% {
        background-position: center;
    }
}

.video-container {
  position: relative;
  width: 100%;
  height: 120px;
  overflow: hidden;
  border: 0px solid #000;
  border-radius: 5px 5px 12px 5px;
}

.video-container1 {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  border: 0px solid #000;
  border-radius: 5px 5px 12px 5px;
}

.video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
}

input::placeholder {
            color: black; /* Black color */
            font-style: italic; /* Italic font style */
            font-weight: bold; /* Bold font weight */
            font-size: 12px; /* Font size */
        }

#werbe-container {
            
            
            min-width: 360px;
            height: 75%;
            background: #363636;
            display: flex; /* Initially hidden */
            
            	opacity: 0.95;
            	position: fixed;
                overFlow: hidden;
                top: 80px;
                left: 50%;
                transform: translateX(-50%);
                z-index: 10001;
                border: 2px black;
                border-style: solid;
    			border-radius: 5px 5px 12px 5px;
    		align-items: center;
    		justify-content: center;
               
        }
        werbung {
            //width: 100%;
            height: 100%;
        }
        .werbunginner {
  			display: inline-flex;
  			justify-content: center;
  			align-items: center;
  			height: 100%; /* Beispielhafte Höhe des Containers */
  			width: 100%; /* Beispielhafte Breite des Containers */
  			}

#close-butn {
            position: absolute; /* Position the button absolutely */
            z-index: 10002;
            top: 10px;  /* Adjust as needed */
            right: 10px; /* Adjust as needed */
            background-color: white; /* Example of a background color */
            color: black; /* Text color */
            font-size: 10px; /* Font size */
            padding: 5px 10px; /* Padding for the button */
            cursor: pointer; /* Change cursor to pointer */
            border: 2px black;
                border-style: solid;
    			border-radius: 2px 2px 4px 2px;
        }

        #close-butn:hover {
            background-color: grey; /* Optional: change background on hover */
        }
