/*
Theme Name: Agentur 77
Theme URI: https://agentur77.de
Author: Daniel Pelz
Author URI: https://daniel-pelz.de
Description: Agentur-77 Theme
Version: 1.0
screenshot: screenshot.jpg
Template: hello-elementor
*/

/* ------------- ------------- */



/* --------------------------- VACATION POPUP -------------------------- */
.vacation-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 10px;
  box-sizing: border-box;
}

.vacation-popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

.vacation-popup {
  background: #ffffff;
  border-radius: 15px;
  padding: 1.5rem;
  max-width: 400px;
  width: 95%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transform: scale(0.7) translateY(50px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: #333;
  text-align: center;
  box-sizing: border-box;
}

.vacation-popup-overlay.show .vacation-popup {
  transform: scale(1) translateY(0);
}

.vacation-popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none !important;
  border: none !important;
  cursor: pointer;
  color: #999 !important;
  font-size: 24px;
  font-weight: normal;
  line-height: 1;
  padding: 0 !important;
  margin: 0;
}

.vacation-popup-close:hover,
.vacation-popup-close:focus {
  background: none !important;
  border: none !important;
  color: #999 !important;
  text-decoration: none !important;
}

.vacation-popup-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.vacation-popup-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.vacation-popup-content {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.vacation-popup-content p {
  margin: 0.5rem 0;
}

.vacation-popup-dates {
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  padding: 0.8rem;
  border-radius: 8px;
  margin: 1rem 0;
  font-weight: bold;
  font-size: 1rem;
  color: #495057;
}

.vacation-popup-phone {
  background: #28a745 !important;
  color: white !important;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none !important;
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  margin-top: 20px;
  border: none !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.vacation-popup-phone:hover,
.vacation-popup-phone:focus {
  background: #34ce57 !important;
  color: white !important;
  text-decoration: none !important;
  border: none !important;
}

.vacation-popup-note {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-top: 1rem;
  font-style: italic;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .vacation-popup-overlay {
    padding: 15px;
  }

  .vacation-popup {
    padding: 1.5rem 1.2rem;
    margin: 0;
    border-radius: 15px;
    max-width: 380px;
    width: 100%;
  }

  .vacation-popup-close {
    top: 12px;
    right: 12px;
    font-size: 22px;
  }

  .vacation-popup-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }

  .vacation-popup-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .vacation-popup-content {
    font-size: 0.9rem;
    margin-bottom: 1.3rem;
    line-height: 1.5;
  }

  .vacation-popup-dates {
    font-size: 1rem;
    padding: 0.8rem;
    margin: 1rem 0;
  }

  .vacation-popup-phone {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 20px;
  }

  .vacation-popup-note {
    font-size: 0.8rem;
    margin-top: 1.2rem;
  }
}

@media (max-width: 480px) {
  .vacation-popup-overlay {
    padding: 10px;
  }

  .vacation-popup {
    padding: 1.2rem 1rem;
    width: 100%;
    max-width: 340px;
    border-radius: 12px;
  }

  .vacation-popup-close {
    top: 8px;
    right: 10px;
    font-size: 20px;
  }

  .vacation-popup-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }

  .vacation-popup-title {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }

  .vacation-popup-content {
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
    line-height: 1.4;
  }

  .vacation-popup-content p {
    margin: 0.4rem 0;
  }

  .vacation-popup-dates {
    font-size: 0.9rem;
    padding: 0.7rem;
    margin: 0.8rem 0;
  }

  .vacation-popup-phone {
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 18px;
  }

  .vacation-popup-note {
    font-size: 0.75rem;
    margin-top: 1rem;
  }
}

/* Animation for popup entrance */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.vacation-popup-overlay.animate-in .vacation-popup {
  animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------------------------- ANCHOR Buttonizer --------------------------- */
._widget_10ma8_1 {
  top: 300px !important;
}

a.buttonizer-button {
  border-radius: 12px !important;
}

.buttonizer-label {
  border-radius: 12px !important;
}

.buttonizer-head {
  border-radius: 12px !important;
}

.list-icon .elementor-icon-box-icon {
  min-height: 100% !important;
  margin: 0 !important;
  position: relative !important;
  left: inherit !important;
  right: inherit !important;
  top: inherit !important;
  top: 5px;
  bottom: inherit !important;
  opacity: 1 !important;
  transform: scale(1) rotate(0deg) !important;
}

.elementor-icon-box-icon {
  min-height: 100% !important;
  margin: 0 !important;
  position: relative !important;
  left: inherit !important;
  right: inherit !important;
  top: inherit !important;
  top: 5px;
  bottom: inherit !important;
  opacity: 1 !important;
  transform: scale(1) rotate(0deg) !important;
}

#uc_uc_card_post_carousel_elementor_46620e3 .owl-nav .owl-prev {
  position: absolute;
  display: inline-block;
  text-align: center;
  right: 50px !important;
}

.elementor-2 .elementor-element.elementor-element-46620e3 .owl-carousel .owl-nav .owl-next,
.elementor-2 .elementor-element.elementor-element-46620e3 .owl-carousel .owl-nav .owl-prev {
  top: -75px !important;
  right: 0;
  border-radius: 0px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  font-size: 16px;
  background-color: var(--e-global-color-6e871b9);
  color: #000000;
}

.comments-area a,
.page-content a {
  text-decoration: none;
}

.bdt-panel-slide-item:hover .bdt-panel-slide-thumb.bdt-background-cover:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 10;
}

.bdt-panel-slide-item:hover .bdt-panel-slide-thumb.bdt-background-cover {
  overflow: hidden;
  transition: 0.3s all;
}

.bdt-panel-slide-thumb {
  position: relative;
}

.bdt-panel-slide-item:hover .bdt-panel-slide-thumb.bdt-background-cover:after {
  z-index: 10;
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.bdt-panel-slide-thumb.bdt-background-cover:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 10;
}

.bdt-panel-slide-thumb.bdt-background-cover {
  overflow: hidden !important;
}

.custom-slider .bdt-panel-slide-thumb.bdt-background-cover:hover:after {
  z-index: 10;
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.swiper-container.kurse-slider {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.swiper-container.kurse-slider .swiper-slide {
  background: #fff;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
}

.kurse-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.swiper-container.kurse-slider {
  width: 90%;
  padding-top: 50px;
  padding-bottom: 50px;
  margin: 0 auto;
  z-index: 99;
  display: flex;
  position: relative;
}

/* add gradients to before and after and make it look so the container is faded */
.swiper-container.kurse-slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(90deg,
      rgb(243 243 243) 0%,
      rgb(255 255 255 / 0%) 100%);
  z-index: 1;
  bottom: 0;
  height: 100%;
  display: block;

  width: 100px;
  z-index: 9;
}

.swiper-container.kurse-slider::after {
  content: "";
  position: absolute;
  top: 0;

  background: linear-gradient(270deg,
      rgb(243 243 243) 0%,
      rgb(255 255 255 / 0%) 100%);

  bottom: 0;
  height: 100%;
  display: block;
  right: -5px;
  width: 100px;
  z-index: 9;
}

.kurse-slider img {
  border-radius: 12px;
  width: 285px;
  height: 175px;
  margin: 0 auto;
}

.kurse-slider h3 {
  margin: 0;
  line-height: 26px;
  font-weight: 700;
  color: var(--e-global-color-secondary);
  margin-bottom: 0.5rem;
}

.kurse-slider p {
  margin-bottom: 20px;
}

.kurse-slider a:hover {
  color: #fff;
  padding: inherit;
  padding: 10px;
  font-size: 17px;
}

.kurse-slider a {
  display: inline-block;
  color: #fff;
  margin-top: 30px;
  background: var(--e-global-color-primary);
  padding: 10px;
  width: 100%;
  border-radius: 12px;
  transition: 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-weight: 600;
  border: 2px solid var(--e-global-color-primary);
}

.kurse-slider a::after {
  content: "" !important;
  display: block !important;
  width: 0 !important;
  position: absolute !important;
  top: 0;
  left: 0 !important;
  bottom: 0 !important;
  z-index: -1 !important;
  background: #fff !important;
  height: 100% !important;
  border-radius: 2px;
  transition: 0.3s ease-in-out;
}

.kurse-slider a:hover {
  color: var(--e-global-color-primary) !important;
}

.kurse-slider a:hover::after {
  width: 100% !important;
}

/* --------------------- Mozilla Slider Pointer Events Fix ---------------------- */

.kurse-slider .btn-2 {
  position: relative;
  z-index: 999;
  /* Stelle sicher, dass der Button darüber liegt */
  pointer-events: auto;
  /* Sicherstellen, dass Klicks zugelassen werden */
}

.swiper-wrapper {
  pointer-events: none;
}

.swiper-slide-active .btn-2 {
  pointer-events: auto;
}

.swiper-container {
  touch-action: auto !important;
}

.e-con.e-con>.e-con-inner>.elementor-widget,
.elementor.elementor .e-con>.elementor-widget {
   
}

/* .swiper-container {
  cursor: grab !important;
}
.swiper-container:active {
  cursor: grabbing !important;
} */
/* ------------------------------------------------------------------------------  */

@media screen and (min-width: 93.75rem) {
  .swiper {
    width: 85%;
  }
}

/* .swiper-slide {
  width: 300px !important; 
} */

.btn-highlight a,
form button {
  display: inline-block;
  color: #fff;
  background: var(--e-global-color-primary);
  padding: 17px 20px 17px 20px !important;
  border-radius: 12px;
  transition: 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-weight: 600;
  border: 2px solid var(--e-global-color-primary);
}

.btn-highlight a::after,
form button:after {
  content: "" !important;
  display: block !important;
  width: 0 !important;
  position: absolute !important;
  top: 0;
  left: 0 !important;
  bottom: 0 !important;
  z-index: -1 !important;
  background: #fff !important;
  height: 100% !important;
  border-radius: 2px;
  transition: 0.3s ease-in-out;
}

.btn-highlight a:hover,
form button:hover {
  color: var(--e-global-color-primary) !important;
}

.btn-highlight a:hover::after,
form button:hover::after {
  width: 100% !important;
}

.btn-highlight2 a {
  display: inline-block;
  color: #fff;
  background: var(--e-global-color-primary);
  padding: 10px 50px 10px 50px !important;
  border-radius: 12px;
  transition: 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-weight: 600;
  border: 2px solid var(--e-global-color-primary);
}

.btn-highlight2 a::after {
  content: "" !important;
  display: block !important;
  width: 0 !important;
  position: absolute !important;
  top: 0;
  left: 0 !important;
  bottom: 0 !important;
  z-index: -1 !important;
  background: #fff !important;
  height: 100% !important;
  border-radius: 2px;
  transition: 0.3s ease-in-out;
}

.btn-highlight2 a:hover {
  color: var(--e-global-color-primary) !important;
}

.btn-highlight2 a:hover::after {
  width: 100% !important;
}

.icon-section .elementor-icon-box-title {
  min-height: 65px;
}

.icon-section .e-con-boxed {
  overflow: hidden;
}

.icon-section .elementor-icon-box-description {
  min-height: 320px;
}

.ti-header .ti-rating-text {
  color: #fff !important;
}

.ti-header .nowrap,
.ti-header .nowrap strong {
  color: #fff !important;
}

.ti-widget.ti-goog .ti-controls .ti-next:before,
.ti-widget.ti-goog .ti-controls .ti-prev:before {
  background: #fff !important;
}

.ti-widget.ti-goog .ti-controls .ti-next:after,
.ti-widget.ti-goog .ti-controls .ti-prev:after {
  background: #fff !important;
}

.ti-widget.ti-goog .ti-controls .ti-next:before,
.ti-widget.ti-goog .ti-controls .ti-prev:before {
  background: #fff !important;
}

.ti-widget.ti-goog .ti-controls .ti-next:after,
.ti-widget.ti-goog .ti-controls .ti-prev:after {
  background: #fff !important;
}

.elementor-icon-box-wrapper:hover {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0) !important;
  cursor: pointer;

  position: relative !important;
}

.elementor-icon-box-wrapper {
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s,
    transform 0.3s, 0.4s;
}

html body ._head_1g9qh_1._whatsAppStyle_1g9qh_139 {
  background: #11172b !important;
  color: #fff;
}

html body ._whatsAppStyle_1f5yn_99 ._buttonContainer_1f5yn_69 button {
  background: #11172b !important;
}

html body ._whatsAppStyle_1f5yn_99 ._buttonContainer_1f5yn_69 button:hover {
  background: var(--e-global-color-primary) !important;
}

.no-link-wrapper .effekt-box .elementor-widget-container.elementor-icon-box-wrapper:hover {
  cursor: default !important;
}

.no-link-wrapper .effekt-box .elementor-icon-box-icon:hover {
  cursor: default !important;
}

.no-link-wrapper .effekt-box .elementor-icon-box-icon:hover {
  cursor: default !important;
}

.no-link-wrapper .effekt-box h3.elementor-icon-box-title {
  cursor: default !important;
}

.no-link-wrapper .effekt-box .elementor-icon-box-description {
  cursor: default !important;
}

.no-link-wrapper .effekt-box .elementor-icon-box-wrapper {
  cursor: default !important;
}

/* ------------------------ ANCHOR Kontakt Box Hover ------------------------ */
/* .kontakt-box a{
  color: #4F676D;
}
.kontakt-box{
background-color: #fff;
padding: 40px 15px;
display: flex;
justify-content: center;
align-items: center;
height: 275px;
 box-shadow: 0px 10px 30px 0px rgba(0,0,0,0.05);
 position: relative;
 top: 0;
 border-radius: 12px
}
.kontakt-box:hover{
transition: 0.3s ease-in-out;
position: relative;
top: -5px;
border-bottom: 2px solid #b00400;
}
.kontakt-box:hover svg{
transform: scale(1.05);
transition: 0.3s ease-in-out;
} */

.contact-boxes-wrapper {
  position: relative;
  transform: translateY(0px);
  border-bottom: 2px solid transparent !important;
}

.contact-boxes-wrapper:hover {
  cursor: pointer;
  position: relative;
  transform: translateY(-5px);
  transition: 0.3s ease-in-out;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1) !important;
  border-bottom: 2px solid #b00400 !important;
}

/* ------------------------- ANCHOR KONTAKTFORMULAR ------------------------- */

form input[type="checkbox"] {
  border: none;
  outline: none;
  background-color: #f3f3f3;
  width: 16px;
  height: 16px;
  display: block;
  position: relative;
  top: 3px;
  accent-color: #11172b !important;
}

form a {
  color: #b00400;
  font-weight: 500 !important;
  position: relative;
}

form a:hover {
  color: #11172b !important;
  transition: 0.3s ease-in-out;
}

form .elementor-message.elementor-message-success {
  color: #ffffff !important;
  font-size: 18px;
  background: rgb(17 23 43 / 80%);
  border-radius: 12px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 12px 25px;
  position: relative;
  top: 15px;
}

form .elementor-message .elementor-message-danger {
  color: #ffffff !important;
  font-size: 18px;
  background: #b00400 !important;
  border-radius: 12px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 12px 25px;
  position: relative;
  top: 15px;
}

/* ------------------------------ ANCHOR Slider ----------------------------- */
.kurse-slider .swiper-slide {
  position: relative;
}

.kurse-slider p.old-price {
  padding: 0px 15px 0px 15px;
  color: #11172b;
  font-size: 14px;
  font-weight: 400;
  line-height: 32px;
  position: absolute;
  right: 39px;
  top: 175px;
  background: #fff;
  width: fit-content;
  border-radius: 12px 0 0 12px;
  text-decoration: line-through;
  text-decoration-color: #b00400;
}

.kurse-slider p.new-price {
  background-color: #fff;
  padding: 0px 15px 0px 15px;
  color: #14a54c;
  font-size: 14px;
  font-weight: 600;
  line-height: 32px;
  border-radius: 12px 0 0 12px;
  position: absolute;
  right: 39px;
  top: 215px;
}

/* -------------------------- ANCHOR Video Section -------------------------- */
.video-sec .dotted-line {
  position: relative;
}

.video-sec .dotted-line:after {
  content: "";
  background: url(/wp-content/uploads/2024/07/dotted-1.svg);
  background-repeat: no-repeat;
  height: 590px;
  left: -110px;
  z-index: 1;
  width: 800px;
  position: absolute;
  top: 190px;
  transform: rotate(-6deg);
  mix-blend-mode: difference;
}

/* ---------------------------- ANCHOR RESPONSIVE --------------------------- */
@media (min-width: 1367px) and (max-width: 99999px) {
  /*   .elementor .elementor-hidden-desktop {
    display: block;
  } */
}

@media (max-width: 1366px) {
  nav .btn-highlight a {
    padding: 15px 12px 15px 12px !important;
    font-size: 14px !important;
    border-radius: 12px;
    transition: 0.3s ease-in-out;
    position: relative;
  }

  .video-sec .btn-highlight {
    margin-top: 6.5rem;
  }

  .video-sec .dotted-line:after {
    content: "";
    height: 605px !important;
    left: -110px;
    top: 125px;
  }

  .contact-boxes-wrapper {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 auto;
  }
}

@media (max-width: 1250px) {
  .swiper-container.kurse-slider {
    width: 90%;
    padding-top: 50px;
    padding-bottom: 50px;
    margin: 0 auto;
  }

  .swiper-container.kurse-slider .swiper-slide {
    background: #fff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
  }

  .swiper-container.kurse-slider::before {
    left: -25px;
  }

  .swiper-container.kurse-slider::after {
    right: -25px;
  }
}

@media (max-width: 1100px) {
  .video-sec .btn-highlight {
    margin-top: 25px;
    align-self: flex-start;
  }

  .video-sec .dotted-line:after {
    content: none !important;
  }
}

@media (max-width: 1024px) {
  nav .btn-highlight {
    margin-top: 5px;
    margin-bottom: 5px;
    display: flex;
    margin-left: 0px;
    background-color: unset !important;
    padding: 3px;
  }

  nav .btn-highlight a {
    border-radius: 12px 12px 12px 12px !important;
  }

  nav .btn-highlight a:hover {
    background-color: unset !important;
    color: #fff !important;
  }

  nav li.btn-highlight.menu-item:hover,
  nav li.btn-highlight.menu-item:focus {
    background: #fff;
  }

  /*  .btn-highlight a::after,
  form button:after {
    background: none !important;
  } */

  .video-sec .btn-highlight {
    margin-top: 20px !important;
  }

  .video-sec .dotted-line {
    mix-blend-mode: unset !important;
  }
}

@media (max-width: 1023px) {
  .swiper-container.kurse-slider {
    width: 550px;
    padding-top: 50px;
    padding-bottom: 50px;
    margin: 0 auto;
    padding-left: 85px;
    padding-right: 85px;
  }

  .swiper-container.kurse-slider::before {
    left: -25px;
    background: linear-gradient(90deg,
        rgb(243 243 243) 50%,
        rgb(255 255 255 / 5%) 100%);
  }

  .swiper-container.kurse-slider::after {
    right: -25px;
    background: linear-gradient(270deg,
        rgb(243 243 243) 50%,
        rgb(255 255 255 / 5%) 100%);
  }

  .effekt-box:hover {
    box-shadow: none !important;
    transform: scale(1) !important;
  }

  .contact-boxes-wrapper:hover {
    transform: translateY(0px);
  }
}

@media (max-width: 767px) {
  .swiper-container.kurse-slider {
    width: 350px;
    padding-top: 50px;
    padding-bottom: 50px;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
  }

  .swiper-container.kurse-slider::before {
    left: -50px;
    background: linear-gradient(90deg,
        rgb(243 243 243) 0%,
        rgb(255 255 255 / 0%) 100%);
  }

  .swiper-container.kurse-slider::after {
    right: -25px;
    background: linear-gradient(270deg,
        rgb(243 243 243) 0%,
        rgb(255 255 255 / 0%) 100%);
  }

  nav .btn-highlight {
    margin-left: 25px;
  }

  #smoke1,
  #smoke2,
  #smoke3,
  #smoke4,
  #smoke5,
  #smoke6,
  #smoke7,
  #smoke8,
  #smoke9 {
    display: none !important;
  }

  .parallax-position .mixblend {
    mix-blend-mode: normal !important;
  }

  .mixblend {
    mix-blend-mode: normal !important;
  }

  .contact-boxes-wrapper .elementor-icon-box-icon {
    display: flex !important;
    width: 100% !important;
    justify-content: center !important;
    align-items: center !important;
    margin-bottom: 15px !important;
  }

  .video-sec .dotted-line:after {
    display: none;
  }
}

@media (max-width: 500px) {
  .list-icon .elementor-headline {
    font-size: 18px;
    line-height: 31px;
    /*  padding-left: 25px; */
  }

  .effekt-box .elementor-icon-box-wrapper {
    padding-top: 2rem;
    padding-bottom: 2rem;
    border: 0px solid #fff !important;
  }

  .effekt-box p.elementor-icon-box-description.elementor-inline-editing {
    height: 215px;
  }

  .effekt-box .elementor-widget-container {
    height: 460px !important;
    padding: 0 10px;
  }

  .effekt-box .elementor-icon-box-description {
    font-size: 15px;
    line-height: 24px;
  }

  .buttonizer-group.buttonizer-button {
    right: 3%;
    bottom: 3%;
  }

  .buttonizer .buttonizer-button {
    width: 50px;
    height: 50px;
    position: absolute;
  }

  .schulungs-box .preis-hr {
    bottom: 50% !important;
    right: 20px !important;
  }

  .schulungs-box .preis {
    bottom: 50% !important;
    right: 20px !important;
    transform: translate(0px, 40px) !important;
  }

  /*Button Navigation Color reset*/
  header li.btn-highlight {
    background: #11172b !important;
    margin-left: 0;
    padding-left: 40px;
  }

  header li.btn-highlight a.elementor-item-active {
    background: transparent !important;
    color: #fff !important;
  }

  header li.btn-highlight a::after {
    background: transparent !important;
  }
}

@media (max-width: 375px) {
  .schulungs-box .preis-hr {
    right: 10px !important;
  }

  .schulungs-box .preis {
    right: 10px !important;
  }

  .effekt-box .elementor-icon-box-wrapper {
    padding-top: 1rem !important;
    padding-bottom: 2rem;
  }

  .effekt-box .elementor-icon-box-title {
    margin: 10px auto !important;
  }

  .effekt-box .elementor-widget-container {
    padding: 15px 20px 15px 20px !important;
  }

  .effekt-box .elementor-icon-box-icon {
    height: 85px !important;
  }

  .e-con.e-flex {
    padding-inline: 10px !important;
  }

  /*  .effekt-box .elementor-icon-box-title span {
    hyphens: auto !important;
  } */

  .swiper-container.kurse-slider {
    width: 310px;
    padding-top: 50px;
    padding-bottom: 50px;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
  }
}

._buttonContainer_g66v5_69 button,
._buttonContainer_g66v5_69 button {
  background: #b00400 !important;
}

._whatsAppStyle_frn86_139,
._head_frn86_1 _whatsAppStyle_frn86_139 {
  background: #11172b !important;
}

/* Modern Floating Price Container */
.price-hero-container {
  font-size: 24px;
  font-family: var(--e-global-typography-primary-font-family), Sans-serif;
  gap: 10px;
  margin-left:2.4rem;
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  color: #fff;
  /* White text for contrast */
}

.price-hero-container .old-box {
    display: flex;
    gap: 8px;
}

@media(max-width: 1024px) {
  .price-hero-container {
    font-size: 18px;
    margin-left: 1.3rem;
  }
  .price-button {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .price-hero-container {
    margin-left: 0;
    font-size: 16px;
    justify-content: center;
    gap: 8px;
  }
  .price-button {
    font-size: 16px;
    margin-left: 0;
  }
  .price-hero-container .old-box {
    display: none;
    
}

.login-button {
  background: #eeeeee14 !important;
  padding: 17px 20px 17px 20px !important;
}
 
 nav .btn-highlight {
  margin-left: 0px !important;
 

 }
 

.caption .elementor-icon-list-item {
  max-width: 400px !important;
  width: 100% !important;
}
.caption .elementor-icon-list-text {
  font-size: 17px !important;
  line-height: 28px !important;
  display: block !important;

}

.caption .elementor-icon-list-icon {
  display: block !important;
}

.caption .elementor-heading-title {
  font-size: 28px !important;

   

}

 
 
.menu-last-two-wrapper {
  display: flex !important;
  align-items: center;
  gap: 15px; /* adjust spacing as desired */
}

}

@media (max-width: 500px) {
  .caption .elementor-icon-list-item {
    max-width: 280px !important;
    width: 100% !important;
  }
}



.price-hero-container p {
  margin: 0;
  padding: 0;
}


/* Old Price Styling */
.old-price {
  color: #b00300;
  text-decoration: line-through;

}

/* New Price Styling */
.new-price {
  color: #14a64c;


}

.new-price span {
  font-weight: bold;
}

/* Call-to-Action Button */
.price-button {
  margin-left: 1rem;
  display: inline-block;
  color: #fff;
  background: #14a64c !important;
  padding: 10px;
  border-radius: 12px;
  transition: 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-weight: 500;
  font-size: 18px;
  border: 2px solid #14a64c !important;
}

.price-button:after {
  content: "" !important;
  display: block !important;
  width: 0 !important;
  position: absolute !important;
  top: 0;
  left: 0 !important;
  bottom: 0 !important;
  z-index: -1 !important;
  background: #fff !important;
  height: 100% !important;
  border-radius: 2px;
  transition: 0.3s ease-in-out;
}

.price-button:hover {
  color: #14a64c !important;
}

.price-button:hover:after {
  width: 100% !important;
}

/* Fallback Message Styling */
.no-price {
  font-size: 14px;
  color: #fff;
  text-align: center;
  margin: 0;
}
 


.btn-highlight-2 a {
  display: inline-block;
  color: #fff;
  background: #14a64c !important;
  padding: 17px 20px 17px 20px !important;
  border-radius: 12px;
  transition: 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-weight: 600;
  border: 2px solid #14a64c !important;
}


.btn-highlight-2 a:hover {
  color: #14a64c !important;
}

.btn-highlight-2 a::after {
  content: "" !important;
  display: block !important;
  width: 0 !important;
  position: absolute !important;
  top: 0;
  left: 0 !important;
  bottom: 0 !important;
  z-index: -1 !important;
  background: #fff !important;
  height: 100% !important;
  border-radius: 2px;
  transition: 0.3s ease-in-out;
}

.btn-highlight-2  a:hover::after {
  width: 100% !important;
} 


.kurse-slider .active-btn {
  display: inline-block;
  color: #fff;
  background: #14a64c !important;
  padding: 17px 20px 17px 20px !important;
  border-radius: 12px;
  transition: 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-weight: 600;
  border: 2px solid #14a64c !important;
}


.kurse-slider .active-btn:hover {
  color: #14a64c !important;
}

.kurse-slider .active-btn::after {
  content: "" !important;
  display: block !important;
  width: 0 !important;
  position: absolute !important;
  top: 0;
  left: 0 !important;
  bottom: 0 !important;
  z-index: -1 !important;
  background: #fff !important;
  height: 100% !important;
  border-radius: 2px;
  transition: 0.3s ease-in-out;
}

.kurse-slider .active-btn:hover::after {
  width: 100% !important;
}

/* 
@media only screen and (orientation: landscape) { 
  .buttonizer {
    display: none!important;
  }
  .google-rating {
    display: none!important;
  } 
}*/

@media (orientation: landscape) and (max-height: 600px)  {
  .google-rating {
    display: none!important;
  }
  .login-button {
    background: #eeeeee14 !important;
    padding: 17px 20px 17px 20px !important;
  }
   
   nav .btn-highlight {
    margin-left: 0px !important;
   
  
   }
  .menu-last-two-wrapper {
    display: flex !important;
    align-items: center;
    gap: 15px; 
  }
}


