@import url('https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap');

@import url('https://fonts.cdnfonts.com/css/sf-pro-display');


:root {
    --primary-color: #ffc557;
    --secondary-color: #ffffff;
    --background-color: #f0f0f0;
    --text-color: #333;
    --init-width: 1030px;
    --header-height: 70px;
}   

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'SF Pro Display', 'Roboto Flex', sans-serif;
}

/* tags */

h1 {
    color: var(--text-color);
    font-size: 50px;
}

h2 {
    color: var(--text-color);
    font-size: 40px;
}

h3 {
    color: var(--text-color);
    font-size: 35px;
}

h4 {
    color: var(--text-color);
    font-size: 25px;
}

h5 {
    color: var(--text-color);
    font-size: 20px;
}

p {
    color: var(--text-color);
    font-size: 20px;
}

img {
    width: 100%;
    border-radius: 20px;
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: 0.5s all;
}

a:hover {
    color: black;
}

/* klassen */

.main {}

.content {
    margin-top: var(--header-height);
}

a.btn {
    background: transparent;
    color: var(--text-color);
    padding: 9px 16px;
    border-radius: 100px;
    font-size: 18px;
    border: 2px solid;
    margin: 5px;
}

a.btn.active {
    background: var(--primary-color);
    color: white;
    padding: 9px 16px;
    border-radius: 100px;
    font-size: 18px;
    border: 4px solid var(--primary-color);
    margin: 5px;
}

.section {
    padding: 20px;
    margin-top: 150px;
}

.section_main {
    max-width: var(--init-width);
    margin: auto;
}

.section_title {
    text-align: center;
    margin-bottom: 60px;
}

.section_title h2 {
    margin-bottom: 10px;
}

/* header */

.header {
    position: fixed;
    top: 0;
    left: 0;
    padding: 0 10px;
    width: 100%;
    height: var(--header-height);
    display: flex;
    transition: 0.5s all;
    z-index: 9999;
}

.header.active {
    background-color: white;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.144);
}

.header_main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    max-width: var(--init-width);
    margin: auto;
    width: 100%;
}

.header_right {
    display: flex;
}

.header h4 {
    color: var(--primary-color);
    font-size: 50px;
    font-weight: 700;
    font-family: "Roboto Flex", sans-serif;
}

.header h5 {
    color: var(--text-color);
    font-size: 35px;
    font-weight: 700;
    margin-left: 15px;
}

.header a {
    float: left;
    font-size: 20px;
    text-align: center;
    padding: 14px 16px;
    font-size: 20px;
    border: none;
    outline: none;
    padding: 14px 16px;
    margin: 0;
    cursor: pointer;
    background-color: transparent;
    display: block;
}

.header_left a {
    display: flex;
    align-items: center;
    padding: 0;
}

.dropdown {
    float: left;
    overflow: hidden;
}

.dropbtn {
    font-size: 20px;
    border: none;
    outline: none;
    padding: 14px 16px;
    margin: 0;
    cursor: pointer;
    background-color: transparent;
    display: block;
    color: var(--text-color);
}

.dropdown-content {
    position: absolute;
    background-color: #ffffff;
    min-width: 160px;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.144);
    z-index: 1;
    border-radius: 10px;
    margin-left: 10px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.dropdown-content a {
    float: none;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 18px;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    pointer-events: auto;
}

.slider {
    display: none;
}

.hamburger {
    display: none;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: #fff;
    padding: 60px 20px 20px 20px;
    margin-top: 120px;
    border-radius: 30px 30px 0 0;
}

.footer h4 {
    color: var(--primary-color);
    font-size: 50px;
    font-weight: 700;
    font-family: "Roboto Flex", sans-serif;
}

.footer_mial {
    max-width: var(--init-width);
    margin: auto;
}

.footer_mial_links {
    display: flex;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer_mial_links a {
    margin-right: 10px;
    font-size: 20px;
    color: white;
    display: block;
}

.footer_main {
    max-width: var(--init-width);
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer_col {
    flex: 1 1 180px;
    min-width: 180px;
    margin-bottom: 30px;
}

.footer_col h4 {
    font-size: 22px;
    margin-bottom: 18px;
    color: white;
    font-weight: 700;
}

.footer_col ul {
    list-style: none;
    padding: 0;
}

.footer_col ul li {
    margin-bottom: 12px;
}

.footer_col ul li a {
    color: #fff;
    font-size: 18px;
    transition: color 0.3s;
}

.footer_col ul li a:hover {
    color: white;
}

.footer_social {
    display: flex;
    gap: 18px;
    margin-top: 8px;
}

.footer_social a {
    color: #fff;
    font-size: 22px;
    transition: color 0.3s;
}

.footer_social a:hover {
    color: white;
}

.footer_col p {
    font-size: 17px;
    margin-bottom: 10px;
    color: #fff;
}

.footer_col i {
    margin-right: 10px;
    font-size: 20px;
    vertical-align: middle;
    color: white;
}

.footer_bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 16px;
    background-color: #fcd07e;
    padding: 20px;
    margin-bottom: -20px;
}

.footer_bottom p {
    color: white;
}

/* styles */

.topper {
    padding-top: 100px;
}

.topper_image {
    max-width: 900px;
    margin: auto;
    margin-top: 50px;
}

.topper_title h1 {
    text-align: center;
    max-width: 700px;
    margin: auto;
}

.topper_title p {
    text-align: center;
    max-width: 900px;
    margin: auto;
    margin-top: 20px;
}

.topper_btn {
    padding-top: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mial {
    background-color: var(--primary-color);
    color: white;
    padding-top: 80px;
    padding-bottom: 80px;
}    

.mial h2 {
    color: white;
}

.mial_swiper_img {
    overflow: hidden;
    width: 100%;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.mial_swiper_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.mial .swiper-slide {
    background-color: white;
    padding: 30px;
    border-radius: 20px;
    height: auto;
}

.mial span {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 40px;
    line-height: 25px;
}

.mial h3 {
    margin-bottom: 15px;
}

.mial .btn {
    margin-top: 20px;
    display: block;
    width: fit-content;
}

.swiper-wrapper {
    height: auto!important;
}

/* IT */

.dringend {
    background-color: var(--primary-color);
    color: white;
    padding-top: 80px;
    padding-bottom: 80px;
}

.dringend h2, .dringend p{
    color: white;
}

.dringend_flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.dringend_item {
    padding: 20px;
    border: 3px solid;
    border-radius: 20px;
    margin: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 35px;
    margin-top: 0;
}

.dringend_item i {
    margin-right: 10px;
}

.dringend_item p {
    font-size: 28px;
}

.leistungen_flex {
    display: flex;
    margin-bottom: -40px;
}

.leistungen_flex_right {
    width: 50%;
    margin-left: 40px;
    margin-top: 200px;
}

.leistungen_flex_left {
    width: 50%;
}

.leistungen_item {
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 25px;
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 10%);
}

.leistungen_item_icon i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.leistungen_item_text h3 {
    font-size: 30px;
    margin-bottom: 10px;
}

.leistungen_item_button {
    margin-top: 30px;
    display: block;
    width: fit-content;
}

.leistungen_item_button .btn {
    display: block;
}

.preise_flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.preise_item {
    text-align: center;
    padding: 20px;
    margin: 20px;
    height: 300px;
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    background-color: var(--primary-color);
}

.web .preise_item .btn {
    margin-top: 20px;
}

.preise_item i {
    font-size: 40px;
    color: white;
    margin-bottom: 15px;
}

.preise_item h3 {
    font-size: 30px;
    margin-bottom: 10px;
}

.preise_item * {
    color: white!important;
}

.prio_head {
    width: 600px;
    display: flex;
    flex-direction: row;
}

.prio_left {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
}

.prio_right {
    display: flex;
    flex-wrap: wrap;
    width: 50%;
}

.section_content * {
    hyphens: auto;
}

.prio_item {
    width: calc(50% - 20px);
    padding: 10px;
    background-color: white;
    border-radius: 10px;
    margin: 10px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.prio_item p, .prio_item i {
    font-size: 18px;
    color: var(--text-color)!important;
    margin-bottom: 0;
}

/* Kontakt Section */
.kontakt_content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: center;
    align-items: flex-start;
}

.kontakt_form {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 10%);
    max-width: 450px;
    flex: 1 1 350px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.kontakt_form_row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.kontakt_form input,
.kontakt_form textarea, .kontakt_form button {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 18px;
    color: var(--text-color);
    resize: none;
    transition: border 0.3s;
    background: transparent;
}

.kontakt_form input:focus,
.kontakt_form textarea:focus {
    border: 1.5px solid var(--primary-color);
    outline: none;
}

.kontakt_form button {
    margin-top: 10px;
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
}

.kontakt_info {
    flex: 1 1 250px;
    background: var(--primary-color);
    color: white;
    border-radius: 20px;
    padding: 40px 30px;
    font-size: 22px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    min-width: 250px;
    max-width: 350px;
}

.kontakt_info i {
    margin-right: 12px;
    font-size: 26px;
    vertical-align: middle;
}

/* KI Section */
.ki {
}

.ki_content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: center;
    align-items: center;
}

.ki_left {
    flex: 1 1 350px;
    max-width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ki_left img {
    width: 100%;
    max-width: 350px;
    border-radius: 25px;
    box-shadow: 0 0 20px 0 rgba(255,197,87,0.15);
}

.ki_right {
    flex: 2 1 400px;
    max-width: 600px;
    background: white;
    border-radius: 25px;
    padding: 40px 35px;
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 10%);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ki_right h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ki_right ul {
    list-style: none;
    padding: 0;
    margin-bottom: 18px;
}

.ki_right ul li {
    font-size: 20px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-color);
}

.ki_text {
    font-size: 18px;
    color: #555;
    margin-bottom: 18px;
}

.ki_right .btn {
    width: fit-content;
    margin-top: 10px;
}

/* HOSTING SEITE STYLES */
.section.hosting {
    margin-top: 100px;
}

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

.hosting .btn {
    margin-top: 20px;
    display: block;
    width: fit-content;
    padding: 5px 10px!important;
    font-size: 20px;
}

.hosting_item {
    background: #fff;
    color: var(--text-color);
    border-radius: 18px;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.06);
    padding: 28px 20px;
    min-width: 220px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0;
    border: 1px solid #eee;
}

.hosting_item h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--text-color);
}

.hosting_item .preis {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.hosting_item ul {
    list-style: none;
    padding: 0;
    margin-bottom: 12px;
}

.hosting_item ul li {
    font-size: 16px;
    margin-bottom: 4px;
    color: #555;
}

.backup_info {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;
    font-size: 22px;
    color: #333;
}

.backup_info i {
    font-size: 40px;
    color: var(--primary-color);
}
.vorteile.section {
    border-radius: 30px;
    margin-top: 80px;
    padding: 40px 0;
}

.vorteile_content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: stretch;
}

.vorteile_item {
    background: white;
    border-radius: 20px;
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 10%);
    padding: 35px 30px;
    flex: 1 1 320px;
    min-width: 280px;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.vorteile_item i {
    font-size: 40px;
    color: var(--primary-color);
}

.vorteile_item h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.vorteile_item p {
    font-size: 18px;
    color: #333;
}

/* Webcheck Section */

.webcheck {
    background: var(--primary-color);
    padding: 80px 0;
}

.webcheck * {
    color: white;
    text-align: center;
}

.webcheck_content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.webcheck_form {
    background: #fff;
    padding: 30px 25px;
    border-radius: 18px;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: row;
    gap: 18px;
    align-items: center;
}

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

.webcheck_form input {
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 18px;
    background: #f9f9f9;
    color: var(--text-color);
    width: 250px;
}

.webcheck_form button {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    padding: 12px 16px;
    cursor: pointer;
    font-weight: 700;
}

.warum_mial_list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 600px;
}

.warum_mial_list li {
    font-size: 20px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-color);
}

.warum_mial_list i {
    color: var(--primary-color);
    font-size: 22px;
}