/*
Theme Name: Avada Child
Description: Child theme for Avada theme
Author: ThemeFusion
Author URI: https://theme-fusion.com
Template: Avada
Version: 1.0.0
Text Domain:  Avada
*/

/* Landingpages Übersichts-Seiten */
.amo-landing-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Zentriert alle Elemente, auch die letzte Zeile */
    column-gap: 25px; /* Abstand zwischen den Spalten */
    row-gap: 20px; /* Etwas geringerer vertikaler Abstand für gleichmäßige Optik */
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 1200px; /* Optionale Begrenzung der Breite */
}

.amo-landing-list li {
    position: relative;
    overflow: hidden;
    width: 180px; /* Feste Breite */
    height: 180px; /* Feste Höhe */
}

.amo-landing-list li a {
    display: block;
    text-decoration: none;
}

.amo-landing-list li img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Bild bleibt quadratisch */
    filter: brightness(60%); /* Abdunklungseffekt */
    display: block;
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

/* Container für Titel & Hover-Text */
.amo-landing-list li .text-container {
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    transition: bottom 0.3s ease-in-out;
}

/* Standard-Titel */
.amo-landing-list li a .title {
    display: block;
    font-size: 16px;
    font-weight: normal;
	line-height: 1;
    text-transform: uppercase;
    color: white;
    transition: transform 0.3s ease-in-out;
}

/* Show Me More (Start: Unsichtbar) */
.amo-landing-list li a .hover-text {
    display: block;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* Hover-Effekt */
.amo-landing-list li:hover img {
    transform: scale(1.05); /* Leichter Zoom-Effekt */
   
}

.amo-landing-list li:hover .text-container {
    bottom: 25px; /* Titel nach oben verschieben */
}

.amo-landing-list li:hover .title {
    transform: translateY(-5px); /* Titel leicht nach oben schieben */
}

.amo-landing-list li:hover .hover-text {
    opacity: 1; /* Show Me More sichtbar machen */
}









/* Model Backend */
.ami-backend-fett {
	font-weight: bold;
}

/* Model Detailseite */
.ami-model-details ul {
    list-style-type: none; /* Entfernt standard Aufzählungszeichen */
    padding: 0; /* Entfernt padding */
}

.ami-model-details li {
    margin-bottom: 20px; /* Abstand zwischen den Listenpunkten */
    padding-left: 34px; /* Platz für das Sternsymbol */
    position: relative; /* Ermöglicht die Positionierung des Sternsymbols */
}

.ami-model-details li::before {
    content: "\f005"; /* FontAwesome Stern Symbol */
    font-family: 'Font Awesome 5 Pro'; /* Stellt sicher, dass FontAwesome korrekt geladen wird */
    display: inline-block; /* Erlaubt andere Eigenschaften wie margin */
    margin-right: 10px; /* Abstand zwischen Stern und Text */
    position: absolute; /* Absolute Positionierung */
    left: 0px; /* Am Anfang des `li` Elements */
    top: 0; /* Am oberen Rand des `li` Elements */
    font-weight: 600;
    font-size: 14px;
}

.ami-model-details li::after {
    content: ""; /* Wichtig, um das Pseudo-Element zu erzeugen, aber es zeigt keinen Text an */
    display: block; /* Erzeugt ein Block-Element */
    width: 70px; /* Breite der Linie */
    height: 1px; /* Dicke der Linie */
    background-color: #ddd; /* Farbe der Linie */
    position: absolute; /* Absolute Positionierung */
    left: -18px; /* Ausrichtung am Anfang des Textes */
    bottom: -10px; /* Positioniert unter dem Text */
}

/* Komplimente auf der Model Detailseite */
 .ami-review-container {
        position: relative;
        margin-bottom: 80px;
    }
    .ami-quote-icon {
        position: absolute;
        top: -8px;
        left: 0px;
    }
    .ami-quote-icon img {
        width: 45px;
        height: 45px;
    }
    .ami-review-title {
        font-size: 28px !important;
        margin-top: 0;
        margin-bottom: 15px;
        padding-left: 55px;
		color: #000;
    }
    .ami-review-text {
        padding-left: 55px;
    }




/* Reisekosten Honorar Tab */
.ami-container {
	margin-top: 50px;
            display: flex;
	flex-wrap: wrap;
        }
        
        .column {
            flex: 1; /* Die Spalten nehmen den gleichen Platz ein */
            padding: 20px; /* Ein bisschen Platz innerhalb der Spalten */
          
          font-size:14px;
          margin-left:20px;
        }
@media (max-width: 480px) {
  .column {
    flex: 100%; /* Auf kleinen Bildschirmen wird nur eine Spalte angezeigt */
	padding-left: 0px;
	  margin-left: 0px;
	  margin-top:0px;
	  padding-right:0px;

  }
}
@media (max-width: 900px) {
  .column {
   
	padding-left: 0px;
	  margin-left: 0px;
	  padding-right:0px;
	}

	  .ami-container {
		   -moz-column-gap: 40px;
    -webkit-column-gap: 40px;
    column-gap: 40px;
	}
	  
	 

}



/* Bewerbungs Formular */

.ami_bewerbung_text {
    text-align: center !important;
    color: #000;
    margin: auto;
    max-width: 600px;
	margin-top: 30px;
	margin-bottom: 30px;
}
/* Honorar Plugin */

.spe_honorartext_wrapper {
    max-width: 550px;
    margin: 0 auto;
    text-align: center;
  font-size: 14px;
}

.spe_honorartext_hl {
    font-weight: bold;
  color: #000000;
    
}
.spe_honorartext_sub {
    margin-bottom: 20px;
    
}
.spe_tagline {
  font-style: italic;
  color: #000000;
}

.spe-honorar_liste {
	margin-top:50px;
    -moz-column-count: 3;
    -webkit-column-count: 3;
    column-count: 3;
    -moz-column-gap: 40px;
    -webkit-column-gap: 40px;
    column-gap: 40px;
	margin-bottom:0px;
}

.spe-honorar_liste li {
    display: inline-block;
    width: 100%;
    break-inside: avoid; /* Verhindert das Brechen von Items über Spalten */
}

.spe-hours, .spe-price {
    display: block; /* Stellt sicher, dass Stunden und Preise untereinander stehen */
	font-size:14px;
}

.spe-hours {
	margin-bottom:0px !important;
	color: #9B7D48;
}
.spe-price {
	font-weight: bold;
	border-bottom: 1px solid #ccc; /* Fügt eine Linie unter jedem Preis hinzu */
    padding-bottom: 10px; /* Fügt Abstand unter dem Preis hinzu, bevor die Linie beginnt */
    margin-bottom: 20px; /* Abstand nach der Linie zum nächsten Listenelement */
}
.spe-honorar_liste_footer {
	font-size: 12px;
	margin-left: 40px;
}
/* Für Tablets */
@media (max-width: 900px) {
    .spe-honorar_liste {
        -moz-column-count: 2;
        -webkit-column-count: 2;
        column-count: 2;
		padding-left: 0px;
    }
}

/* Für Smartphones */
@media (max-width: 480px) {
    .spe-honorar_liste {
        -moz-column-count: 1;
        -webkit-column-count: 1;
        column-count: 1;
		padding-left: 0px;
       /* -moz-column-gap: 20px;
        -webkit-column-gap: 20px;
        column-gap: 20px; */
    }
    .spe-honorar_liste_footer {
        margin-left: 0px;
		
    }
}

/* Landingpage */
.ami_landing_locations .tab-pane ul {
  list-style-type: none;
  padding-left: 0;
  font-size:12px;
}

.ami_landing_locations .tab-pane li {
  position: relative;
  padding-left: 25px;
 
}

.ami_landing_locations .tab-pane a {
  color: #626262;
  text-decoration: underline;
}

.ami_landing_locations .tab-pane li::before {
  font-family: 'Font Awesome 5 Pro';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
}

.ami_landing_locations .tab-pane li:nth-child(1)::before {
  content: '\f3c5';  /* map-pin icon */
}

.ami_landing_locations .tab-pane li:nth-child(2)::before {
  content: '\f095';  /* phone icon */
}

.ami_landing_locations .tab-pane li:nth-child(3)::before {
  content: '\f0ac';  /* globe icon */
}
.ami_landing_locations .tab-pane h3 {
   position: relative;
  padding-top: 0px; 
  margin-top: 0px;
    font-size: 20px;
}


.contact-inline{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:20px;
  margin-top:5px;
  font-size:12px;
  font-family:inherit;
  color:#000;
}

.contact-item{
  display:flex;
  align-items:center;
  gap:0px;
  color:#000;
  text-decoration:none;
}

.contact-item i{
  font-size:12px;
}

.contact-sep{
  opacity:0.6;
}

.contact-inline-left{
  display:flex;
  gap:20px;
  margin-top:20px;
  font-size:12px;
  font-family:inherit;
  color:#000;
}

.contact-inline-hell{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:20px;
  margin-top:5px;
  font-size:12px;
  font-family:inherit;
  color:#fff;
}
.contact-item-hell{
  display:flex;
  align-items:center;
  gap:0px;
  color:#fff;
  text-decoration:none;
}
.contact-item-hell i{
  font-size:12px;
}


/* footer */
.ami-link-weiss a {
  color: #c9c9c9;
}
  
.ami-link-weiss a:hover {
  text-decoration: underline;
}

.ami-link-schwarz a {
  color: #000000;
}
  
.ami-link-schwarz a:hover {
  text-decoration: underline;
}

.aml-social .fusion-social-network-icon {
  margin-left: 20px !important;
    margin-right:20px !important;
}