/* 
	1. Allgemein
	2. Inhaltslemente
		2.1 Banner
	3. Vorteilsboxen
	4. Videobereich
    5. SEO Vortiele
    6. Counter-Bereich
    7. Login + Register Seiten
	8 .footer
*/


/*****************
	1. Allgemein
******************/
*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

.mb-10{
	margin-bottom: 2.5rem;
}

.ml-30{
	margin-left: 30px;
}

.padding-top-100 {
	padding-top: 100px;
}

.padding-bottom-100 {
	padding-bottom: 100px;
}

.padding-top-50 {
	padding-top: 50px;
}

.padding-bottom-50 {
	padding-bottom: 50px;
}

.margin-bottom-30 {
	margin-bottom: 30px;
}

/*****************
	2.1 Banner
******************/

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.header {
    background: linear-gradient(135deg, #1d85ed 0%, #1799ff 100%);
    color: white;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 16px 32px;
    position: relative;
}
.header-container .div-logo-toggle-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    flex-shrink: 0;
    z-index: 1001;
}

.logo img {
    height: 32px;
    width: auto;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    background: white;
    border-radius: 3px;
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: #000;
    margin: 2px 0;
    border-radius: 2px;
    transition: all 0.4s ease-in-out;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    gap: 8px;
    align-items: center;
    margin: 0;
}

.nav-item {
    position: relative;
}

.nav-item .fa-chevron-down{
    position: absolute;
    right: 0;
    top: 18px;
    transition: transform 0.5s ease;
}


.nav-link {
    display: block;
    padding: 12px 20px;
    color: white;
    font-weight: 500;
    font-size: 18px;
    transition: all 0.3s ease;
    border-radius: 6px;
    white-space: nowrap;
}

/* .nav-link:hover {
    background: #ffffff26;
} */

.d-flex:hover .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu-list {
    position: absolute;
    top: 130%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 8px;
    min-width: 300px;
    z-index: 999;

}

.nav-item.has-dropdown:hover .dropdown-menu-list {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.nav-item.has-dropdown:hover .d-flex .fa-chevron-down {
   transform: rotate(180deg);
}


.dropdown-content {
    display: flex;
    gap: 32px;
    padding: 24px;
}
.dropdown-content p{
    font-weight: 300;
    font-size: 14px;
    margin-top: 4px;
    color: #1F2937;
}

.dropdown-column {
    flex: 1;
    min-width: 200px;
}

.dropdown-title {
    color: #000000;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}


.dropdown-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid #1F2937;
    padding: 0;
}

.dropdown-list li:nth-child(1) {
    padding-top: 10px;
}

.dropdown-list li a {
    display: block;
    /* padding: 8px 12px; */
    color: #1D85ED;
    font-size: 15px;
    border-radius: 4px;
    transition: all 0.2s ease;
}
.dropdown-list li span{
    font-weight: 300;
    font-size: 12px;
    margin-top: 4px;
    color: #1F2937;
    margin-bottom: 5px;
}

.dropdown-list li a:hover {
    color: #0a7cee;
    font-weight: 600;
}


.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 1001;
}

.language-selector {
    position: relative;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lang-dropdown {
    position: absolute;
    top: 130%;
    right: 0;
    background: white;
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 8px;
    min-width: 100px;
}

.language-selector:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    margin-top: 4px;
}

.lang-option {
    display: block;
    padding: 10px 16px;
    color: #4b5563;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
}

.lang-option:hover {
    color: #1799ff;
}

.lang-option:first-child {
    border-radius: 6px 6px 0 0;
}

.lang-option:last-child {
    border-radius: 0 0 6px 6px;
}


.btn-login {
    background: transparent;
    color: white;
    border: 1px solid #fff;
    font-weight: 500;
}

.btn-login:hover {
    background: #fff;
    color: #000;
}


.btn-testen {
    background: #fff;
    color: #000;
    font-weight: 500;
}

.btn-testen:hover {
    background: #AFD6FE;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    border: 1px solid #AFD6FE;
    color: #1F2937;
    
}

/* Media */
@media (max-width: 1280px) {

    .header-container {
        justify-content: space-around;
    }

    .header-container .div-logo-toggle-button {
        width: 100%;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        /* max-width: 350px; */
        height: 100vh;
        background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
        padding: 160px 0 32px;
        transition: left 0.3s ease;
        overflow-y: auto;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
    }
    .nav-list {
       width: 100%;
    }


    .main-nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        padding: 0;
    }
    .title-plus-arrow{
        width: fit-content;
    }

    .nav-item {
        width: 100%;
        /* display: flex;
        align-items: center;
        justify-content: center; */
        text-align: center;
    }

    .nav-item .fa-chevron-down {
        right: -10px;
        top: 20px;
    }

    .nav-link {
        padding: 16px 24px;
        border-radius: 0;
        font-size: 16px;
    }

    .header-actions {
        position: fixed;
        bottom: 0;
        left: -100%;
        width: 100%;
        /* max-width: 350px; */
        padding: 24px;
        flex-direction: column;
        gap: 12px;
        transition: left 0.3s ease;
    }

    .header-actions.active {
        left: 0;
    }


    .lang-btn {
        width: 100%;
    }

    .lang-dropdown {
        position: static;
    }


    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
    }

    .nav-item.has-dropdown .dropdown-menu-list {
        /* position: static; */
        /* transform: none;
        top: auto;
        left: auto; */
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background: transparent;
        margin-top: 0;
        padding: 0 24px;
        display: none; 
        align-items: center;
        width: 400px;
    }

  .nav-item.has-dropdown.active .dropdown-menu-list {
    display: block; 
  }

  .dropdown-content {
    flex-direction: column;
    gap: 24px;
    background: #fff;
    border-radius: 8px;
    padding: 16px;
  }

  .dropdown-column {
    padding: 0;
  }

  .dropdown-title {
    font-size: 16px;
    color: #000;
  }

  .dropdown-list li a {
    font-size: 14px;
  }

  .dropdown-list li span {
    font-size: 12px;
    color: #4b5563;
  }

  .nav-item .fa-chevron-down {
    position: initial;
  }

  .title-plus-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    /* padding: 16px 24px; */
  }
}




.header-section {
  background: linear-gradient(135deg, #1d85ed, #1799ff);
  padding: 60px 20px;
  color: white;
}


.content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}


.text-content {
  max-width: 500px;
}

.text-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.text-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}


.btn-header {
  background-color: #2BC46A;
  color: white;
  padding: 15px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s;
}

.btn-header:hover {
  background-color: #28B463;
}

.image-content {
    margin: 50px;
}

.image-content img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive behavior */
@media (max-width: 1280px) {
  .content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .text-content {
    margin-bottom: 40px;
  }

  .image-content img {
    max-width: 60%;
  }
}



/*****************
	3. Vorteilsboxen
******************/
.boxen-container {
    background: #EBF5FF;
}

.section-title {
	margin-bottom: 55px;
}
.section-title .title {
    font-size: 46px;
    margin-bottom: 12px;
    color: #3c3954;
    font-weight: 700;
    position: relative;
	font-family: "Poppins", sans-serif;
}

.section-title p {
    font-size: 18px;
    line-height: 28px;
}


.card-item{
	text-align: center;
	padding: 40px 30px 30px 30px;
	border: 1px solid #ccc;
    background: #ffffff8a;
    border-radius: 5px;
}
.card-item:hover{
	background-color: white;
    box-shadow: 0px 50px 100px 10px rgba(0, 0, 0, 0.08);
}

.card-item .icon{
	font-size: 50px;
    background: #cccccc4d;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    border-radius: 50%;
    margin: 0 auto;
    margin-bottom: 25px;
	border: 1px solid transparent;
	transition: border 0.3s ease-in-out;
	
}

.card-item:hover .icon{
	border: 1px solid #ec671a;
}

.card-item .icon i{
	color: #ec671a;
}


.card-item .content .title {
	font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    margin-bottom: 15px;
}
.card-item .content p {
	margin-bottom: 0;
	font-size: 16px;
    color: #757575;
    line-height: 1.85;
}

@media (max-width: 1280px) {
    .section-title .title {
        font-size: 30px;
    }
}

/*****************
	4. Videobereich
******************/

.intro-video-inner {
	display: flex;
    align-items:  center;
    justify-content: center;
}

.intro-video-inner .img-wrapper {
	text-align: center;
    position: relative;
    z-index: 0;
}

.img-wrapper img{
    max-width: 100%;
    vertical-align: middle;
    border-style: none;

}
.img-wrapper .hover {
	position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.img-wrapper .hover .video-play-btn {
    background-image: -moz-linear-gradient(180deg, #f96834 0%, #ec671a 51%, #f96834 99%);
    background-image: -webkit-linear-gradient(180deg, #f96834 0%, #ec671a 51%, #f96834 99%);
    background-image: -ms-linear-gradient(180deg, #f96834 0%, #ec671a 51%, #f96834 99%);
    color: #fff;
    width: 120px;
    height: 120px;
    line-height: 120px;
    font-size: 30px;
}

.video-play-btn {
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    font-size: 16px;
    background-color: #fff;
    border-radius: 50%;
    color: #313131;
    position: relative;
    z-index: 1;
	animation: animation 2s infinite alternate;
}



@keyframes animation {
	100%{
		box-shadow: 0px 0px 0px 25px #ec671a;
		opacity: .4;
	}

}


/*****************
	5. SEO Vortiele
******************/

.seo-container {
    width: 100%;
    margin: 0 auto;
    padding: 100px;
    background-color: #0E3358;
}

.seo-container .title-and-bullets {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 35px;
}

.seo-container h1 {
    font-size: 36px;
    color: #FFF;
    margin-bottom: 50px;
    font-weight: 600;
}

#image-bullets {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.bullet {
    width: 30px;
    height: 10px;
    border-radius: 5px;
    background-color: #ffffff66;
    transition: background 0.3s ease;
}
.bullet.active {
    background-color: #ffffff;
}

.seo-content{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.img-wrapper {
    text-align: center;
    /* margin-bottom: 30px; */
    width: 50%;
}

.seo-container .img-wrapper img {
    width: 400px;
    cursor: pointer;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.seo-container .accordion {
    width: 50%;
    margin: 50px;
}

.seo-container .accordion-item {
    border-top: 1px solid white;
    border-left: none;
    border-right: none;
    border-bottom: none;
    position: relative;
}

.accordion-item > i {
    position: absolute;
    color: #fff;
    font-size: 20px;
    top: 19px;
}

.seo-container .accordion-header {
    cursor: pointer;
    padding: 15px 30px;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0e3358;
    color: white;
}

   
.seo-container .accordion-content {
    display: none;
    padding: 0 20px 20px;
    font-size: 15px;
    color: #d9d9d9;
    background-color: #0e3358;
}

.accordion-item.active .accordion-content {
    display: block;
}


.accordion-header i {
    transition: transform 0.5s ease;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

@media (max-width: 1280px) {

    .seo-container {
        padding: 50px;
    }
    .seo-container h1 {
        margin-bottom: 0px;
    }
    .seo-container .title-and-bullets {
        margin-bottom: 0px;
    }
    .seo-content{
       flex-direction: column;
       align-items: center;
    }
    .seo-container h1 {
        font-size: 24px;
    }

    #image-bullets {
    display: none;
    }

    .img-wrapper {
        width: 100%;
    }

    .img-wrapper img {
    max-width: 100%;
    }

    .seo-container .accordion {
        width: 100%;
    }
}


/*****************
	6. Counter-Bereich
******************/
.counter-container {
    background-color: #EBF5FF;
    padding: 100px;
}

.counter-container h2{
    color: #1F2937;
    text-align: center;
    margin-bottom: 24px;
}

.counter-container h2 strong {
    color: #1D85ED !important;
}

.counter-container .counter-content {
    display: flex;
    flex-direction: row;
    text-align: center;
    align-items: center;
    justify-content: space-evenly;
}

.counter-content .counter > div{
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
}

.counter-content .counter > span{
    color: #1F2937;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}


@media (max-width:1280px) {
    .counter-container h2{
        font-size: 24px;
    }

    .counter-container .counter-content{
        flex-direction: column;
        gap: 25px;
    }
}


/*****************
	7. Login + Register Seiten
******************/
.login-container, 
.register-container{
    display: flex;
    height: 100%;
}

.register-container .aside-bar {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
}

.login-container .aside-bar,
.register-container .aside-bar {
    width: 480px;
    background: rgb(29 133 237);
    height: 100%;
}

.login-container .aside-bar img,
.register-container .aside-bar a > img{
    padding: 45px 35px;
}


.register-container .aside-bar .leading > span {
    font-size: 20px;
    text-align: center;
    color: #fff;
    font-weight: normal;
}

.register-container .aside-bar .leading .img-container {
    margin: 20px;
}

.register-container .aside-bar .leading .img-container img{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    line-height: 60px;
}   

.register-container .aside-bar .leading .name-position{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}   


.login-form, 
.register-form {
    width: calc(100% - 480px);
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    background: rgb(244 246 250);
}

.login-form form, 
.register-form form{
    width: 350px;
}

.login-form p:nth-child(1),
.register-form p:nth-child(1){
    font-weight: 700;
    font-size: 28px;
    line-height: 32px;
}

.login-form p:nth-child(2),
.register-form p:nth-child(2) {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 1.25rem;
    color: rgb(109 143 176);
}
 
.login-form .google,
.register-form .google {
    padding: 10px;
    border: 1px solid #d8e3ee;
    border-radius: 5px;
}

.login-form input,
.register-form input{
    height: 40px;
    border: 1px solid rgb(194 212 229);
    border-radius: 5px;

}

.login-form input:focus,
.register-form input:focus {
    border: 2px solid #2563eb !important;
    outline: none;
    padding-left: 15px;
}

.login-container .linkedin-facebook a {
    border: 1px solid #d8e3ee;
    width: 50%;
    margin-right: 5px;
}
.login-container .linkedin-facebook a:hover,
.login-form .google:hover{
    background: rgb(235 240 244);
}


@media (max-width:1280px) {
    .login-container,
    .register-container{
        flex-direction: column;
        height: 100vh;
    }

    .login-container .aside-bar,
    .register-container .aside-bar {
      width: inherit;
      height: initial;
    }

    .register-container .aside-bar .leading,
    .register-container .aside-bar .icons {
        display: none !important;
    }

    .login-form, .register-form {
       width: initial;
       height: inherit;
       position: relative;
       padding-top: 30px;
    }
}



/*****************
	8. Footer
******************/

.footer {
  background-color: #0f1b2d;
  color: #ffffff;
}
.footer .kontakt-btn{
	min-width: 117px;
	font-weight: 500;
}
.footer .kontakt-btn:hover{
	color: #000;
	text-decoration: none;
}

.footer a {
  color: #d1d1d1;
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
}

.footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer h6 {
  font-size: 16px;
  margin-bottom: 12px;
}

.footer-logo {
  font-size: 28px;
  font-weight: bold;
}

.social-icons{
	display: flex;
	gap: 60px;
}

.social-icons a {
  color: #ffffff;
  font-size: 22px;
  margin-left: 12px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #1799ff;
}
	