/* Landing Page */
.landing-content {
    min-height: 100%;
}

.landing {
    position: relative;

    width: 100dvw;

    min-height: calc(100vh - 75px);
    height: fit-content;

    padding: 25px;

    /* background-image: url("../img/landing/background.webp");
    background-position: top;
    background-repeat: no-repeat;
    background-size: contain; */

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
}

.landing img#background {
    top: 0px;
    bottom: 0px;

    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: top;

    position: absolute;
    z-index: -1;

    display:none;

    user-select: none;
}

.landing .googleReviews {
    margin-bottom: 50px;
}

.landing .googleReviews .google {
    width: fit-content;

    display: flex;
    align-items: center;

    font-size: 20px;
    font-weight: 600;

    margin: 0px auto;

    cursor: pointer;
}

.landing .googleReviews .google img {
    width: 50px;
    height: 50px;
}

.landing .googleReviews .reviews {
    width: fit-content;

    margin: 0px auto;

    display: flex;
    justify-content: center;
    align-items: center;
}

.landing .googleReviews .reviews .number {
    /* color: grey; */
    font-weight: bold;
    font-size: 21px;

    margin-right: 10px;
}

.landing .googleReviews .reviews .stars {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;

    margin-right: 10px;
}

.landing .googleReviews .reviews .stars .star {
    width: 25px;
    height: 25px;
}

.landing .googleReviews .reviews .amount {
    color: lightgrey;
}

.landing .titlebox {
    padding: 25px;

    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
}

.landing .titlebox .scrolldown {
    width: 10vw;

    margin: 0px auto;
    margin-top: 15px;

    max-width: 50px;

    filter: drop-shadow(0px 0px 20px #2020204d);
}

.landing .titlebox .title {
    font-family: 'azonix';
    font-size: 75px;
    font-weight: bold;
    text-align: center;
    color: #000;
    
    padding-bottom: 50px;

    text-shadow: 0px 0px 20px #2020204d;
}

.landing .titlebox .subtitle {
    font-family: 'montserrat';
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    color: #000;
    
    padding-bottom: 50px;

    text-shadow: 0px 0px 20px #2020204d;
}

.landing .titlebox .subtitle2 {
    font-family: 'montserrat';
    font-size: 20px;
    font-weight: bolder;
    text-align: center;
    color: #000;
    
    padding-bottom: 25px;

    text-shadow: 0px 0px 20px #2020204d;
}

.landing .titlebox .subtitle2 ul {
    width: fit-content;
    padding: 0px;

    margin: 0px auto;
}

.landing .titlebox .subtitle2 ul li {
    list-style: none;
    max-width: 500px;
    width: 90vw;

    text-align: left;
    /* text-align: center; */
    /* padding-bottom: 15px; */
}

.landing .titlebox .subtitle2 ul li::before {
    content: '✔';
    color: #27ae60;

    padding-right: 15px;
}

.colorized {
    background: linear-gradient(to right, #2D9DE2 0%, #4A00E0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

.landing .titlebox .buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.landing .titlebox .buttons .button {
    width: 305px;

    margin: 0px;
}

.landing .titlebox .buttons .button span {
    display: block;
    width: 100%;
    text-align: center;
}

.landing .titlebox .buttons .button:nth-child(2) {
    margin-left: 40px;
    background: linear-gradient(to right, #4a00e0, #ff1b1b) !important;
}

.landing .titlebox .buttons .button:nth-child(1)::before {
    background-color: transparent;
}

.fade-text {
    width: 100%;
    display: inline-block;
    position: relative;
    overflow: hidden;
    height: 49px;
  }
  
  .word {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    background: linear-gradient(to right, #2D9DE2 0%, #4A00E0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    animation: fade-in-out 6s infinite;
  }

  .word:nth-child(1) {
    animation-delay: 0s;
  }
  .word:nth-child(2) {
    animation-delay: 2s;
  }
  .word:nth-child(3) {
    animation-delay: 4s;
  }
  
  @keyframes fade-in-out {
    0% {
      opacity: 0;
      transform: translateY(100%);
    }
    10% {
      opacity: 1;
      transform: translateY(0);
    }
    30% {
      opacity: 1;
      transform: translateY(0);
    }
    40% {
      opacity: 0;
      transform: translateY(-100%);
    }
    100% {
      opacity: 0;
      transform: translateY(-100%);
    }
  }

.adbanner {
    max-width: 1500px;
    width: 100vw;

    height: fit-content;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;

    margin: 0px auto;
    margin-bottom: 50px;
}

.adbanner hr {
    background-color: #4A00E0;
    height: 7px;
    width: 100px;

    border: none;
    border-radius: 30px;
}

.adbanner .banner {
    width: 100%;
    height: 100%;
}

.adbanner .banner img {
    width: 100%;

    max-height: 200px;
    height: 100%;
    min-height: 175px;

    object-fit: contain;
    object-position: center;
    
    border-radius: 30px;
}

.adbanner .disclaimer {
    padding: 15px 25px;
}

.adbanner .disclaimer small em {
    text-align: center;
    font-style: italic;
    font-size: smaller;
    text-align: center;
    margin-top: 15px;
}

.dhs {
    max-width: 1200px;
    width: fit-content;
    height: fit-content;

    /* background-color: #f7f7f7; */
    /* border-radius: 30px; */

    margin: 25px;
    margin: 0px auto;

    padding: 25px;

    display: flex;
    flex-direction: row;
}

.dhs .left {
    width: 40%;
    height: fit-content;
}

.dhs .left img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
}

.dhs .right .title {
    width: fit-content;
    font-size: 35px;
    font-weight: 600;
    margin-top: 5px;
    margin-bottom: 15px;
}

.dhs .right .subtitle {
    font-size: 20px;
}

.dhs .right {
    width: 60%;
    height: fit-content;

    padding: 25px;
}

.dhs .right .new-badge {
    width: fit-content;
    height: fit-content;

    padding: 5px 10px;

    font-weight: bold;
    color: #4A00E0;

    background-color: #4A00E025;
    border-radius: 12px;

    margin: 0px 0px 5px 0px;
}

.dhs .right .liste {
    width: fit-content;
    padding: 0px;

    margin: 0px;
    margin-top: 15px;
}

.dhs .right .liste li {
    list-style: none;
    text-align: left;
}

.dhs .right .liste li::before {
    content: '✔';
    color: #27ae60;

    padding-right: 15px;
}

.dhs .right .infoText {
    margin-top: 15px;
}

.dhs .right .button {
    margin: 0px;
    margin-top: 25px;
}

.newsletter {
    display: none !important;
    
    width: 100vw;
    height: fit-content;

    background-color: #f7f7f7;

    margin: 25px;
    margin: 0px auto;

    padding: 25px;

    display: flex;
    flex-direction: row;
}

.newsletter .newsletter-content {
    max-width: 1200px;

    margin: 0px auto;
}

.newsletter .title {
    width: fit-content;

    text-align: center;
    font-size: 35px;

    margin: 0px auto;
    margin-bottom: 15px;
}

.newsletter .subtitle {
    text-align: center;
    font-size: 19px;

    margin-bottom: 25px;
}

.newsletter .benefits {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;

    margin-bottom: 25px;
}

.newsletter .benefits .benefit {
    margin: 0px 12.5px;
}

.newsletter .responseBox {
    display: none;

    width: 100%;
    max-width: 450px;

    margin: 0px auto;
    margin-bottom: 25px;

    text-align: center;
    font-weight: bold;
}

.newsletter .responseBox.error {
    display: block;

    color: #ef3030;
}

.newsletter .responseBox.success {
    display: block;

    color: #05bf05;
}

.newsletter .textfield {
    display: block;

    width: 100%;
    max-width: 450px;

    margin: 0px auto;
    margin-bottom: 25px;
}

.newsletter .textfield label {
    font-weight: 600;

    width: 100%;
    max-width: 450px;

    margin: 0px auto;
}

.newsletter .textfield input {
    width: 100%;

    height: 40px;

    margin: 0px auto;
    margin-top: 10px;

    padding: 5px 10px;

    border: 1px solid #ddd;
    border-radius: 8px;

    outline: none;
}

.newsletter .button {
    margin: 0px auto;
    margin-bottom: 25px;
}

.newsletter .smallInfo {
    text-align: center;
    font-size: small;
    font-style: italic;
}

.newsletter .smallInfo a:link {
    text-decoration: underline;
}

.doneforyou {
    max-width: 1500px;
    width: fit-content;
    height: fit-content;

    /* background-color: #f7f7f7; */
    border-radius: 30px;

    margin: 25px;
    margin: 0px auto;

    padding: 25px;
    padding-top: 0px;

    display: flex;
    flex-direction: row;

}

.doneforyou .dfy_right_content {
    max-width: calc(100% - 175px);
    width: 750px;

    padding: 50px;
    padding-right: 0px;
    padding-bottom: 25px;
}

.doneforyou .dfy_right_content .headline {
    font-size: 20px;
    font-weight: 700;
}

.doneforyou .dfy_right_content .title {
    width: fit-content;
    font-size: 35px;
    font-weight: 600;
    margin-top: 5px;
    margin-bottom: 15px;
}

.doneforyou .dfy_right_content .button {
    margin: 0px;
    margin-top: 15px;
}

.doneforyou .dfy_right_content .button span {
    display: flex;
    justify-content: center;
    align-items: center;
}

.doneforyou .dfy_right_content .button span img {
    width: 20px;
    height: 19px !important;

    margin-left: 15px;
}

.doneforyou .dfy_right_content .liste {
    width: fit-content;
    padding: 0px;

    margin: 0px;
    margin-top: 15px;
}

.doneforyou .dfy_right_content .liste li {
    list-style: none;
    text-align: left;
}

.doneforyou .dfy_right_content .liste li::before {
    content: '✔';
    color: #27ae60;

    padding-right: 15px;
}

.doneforyou .dfy_right_content .infotext {
    font-style: italic;
    font-size: 16px;
    margin-top: 15px;
}

.doneforyou .dfy_right_content .kundenstimmen {
    margin-top: 25px;
}

.doneforyou .dfy_right_content .kundenstimmen .title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}

.doneforyou .dfy_left_content {
    width: 400px;
    height: 617px;

    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
}

.doneforyou .dfy_left_content img {
    width: 400px;
    height: 400px;
    object-fit: contain;
    object-position: center;

    position: absolute;
}

section.clients {
    max-width: 1500px;
    width: 100vw;
}

section.clients .logos {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

section.clients .logos .logo {
    max-width: 200px;
    height: 75px;

    margin: 0px;
    margin: 0px 12.5px;
}

section.clients .logos .logo:not(:last-child) {
    /* margin-right: 25px; */
}

section.clients .logos .logo img {
    max-width: 200px;
    width: fit-content;
    height: 100%;
    object-fit: contain;
    object-position: center;

    filter: grayscale(1);
}

.buttons {
    padding-top: 6vh;
    display: inline-flex;
    list-style: none;
}

.landing-button {
    outline: none;
    cursor: pointer;
    border: none;
    width: 10vw;
    height: 4vh;
    position: relative;
    margin: 0 4vh;
    border-radius: 500vh;
    overflow: hidden;
    background: linear-gradient(to right, #7857fc, #7857fc);
    padding: 10px 25px !important;
    width: fit-content !important;
    height: fit-content !important;

    margin-bottom: 15px;
}

.landing-button span {
    position: relative;
    color: white;
    transition: white 0.4s;
    background: transparent;
    font-size: 15px !important;
}

.landing-button:hover span {
    color: white;
}

.landing-button::before,
.landing-button::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.landing-button::before {
    content: "";
    background: #000;
    width: 120%;
    left: -10%;
    transform: skew(30deg);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.75, 1);
}

.landing-button:hover::before {
    transform: translate3d(100%, 0, 0);
}

.scrolldown:hover {
    transform: scale(1.04);
    cursor: pointer;
}

/* Shop */

.shop-content {
    width: 100%;
    max-width: 1500px;
    padding: 25px;
    min-height: 50vh;
    margin: 0px auto;
    margin-top: 50px;
}

.shop-heading {
    text-align: center;
    font-size: 32px;
    font-weight: normal;
    padding-bottom: 25px;
}

.shop-text {
    text-align: center;
    font-size: 17px;
}

.shop-content .smallInfo {
    font-style: italic;
    font-size: smaller;
    text-align: center;

    margin-top: 15px;
}

.shop-content .shopifypartner {
    width: calc(100% - 50px);
    margin: 25px;
    margin-bottom: 0px;
}

.shop-content .shopifypartner .text {
    text-align: center;
    font-size: 17px;
    margin-bottom: 25px;
}

.shop-content .shopifypartner .images {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;
}

.shop-content .shopifypartner .images #shopifylogo {
    width: 160px;
    margin-left: 40px;
}

.shop-content .shopifypartner .images #shopifylogo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.shop-content .shopifypartner .images #x {
    width: 50px;
    height: 50px;
    margin-right: 50px;
    margin-left: 50px;
}

.shop-content .shopifypartner .images #x img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.shop-content .shopifypartner .images #deoniklogo {
    width: 200px;
}

.shop .shopifypartner .images #deoniklogo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.shop-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.shop-wrapper .item {
    flex: 0 0 calc(50% - 50px);

    margin: 25px;
    padding: 25px;

    background-color: #f7f7f7;
    border-radius: 30px;

    display: flex;
    align-items: flex-start;

    position: relative;

    overflow: hidden;

    /* cursor: pointer; */
}

.shop-wrapper .item .blured-circle {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  filter: blur(50px);
  z-index: 0;
  opacity: 0;
  transition: opacity .3s ease-in-out;
  -webkit-transition-property: opacity;
  -webkit-transition-duration: .3s;
  -webkit-transition-timing-function: ease-in-out;
}

.shop-wrapper .item .blured-circle.top {
  top: -30px;
  left: -30px;
  background-color: #2d9de250;
}

.shop-wrapper .item .blured-circle.bottom {
  bottom: -30px;
  right: -30px;
  background-color: #4A00E050;
}

.shop-wrapper .item:hover  .blured-circle {
    opacity: 1;
}

.shop-wrapper .item:active  .blured-circle {
    opacity: 1;
}

.shop-wrapper .item .icon {
    width: 175px;
    height: 175px;
    margin-right: 15px;
}

.shop-wrapper .item .icon img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;
}

.shop-wrapper .item .text {
    width: calc(100% - 175px - 15px);
    height: 100%;

    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
}

.shop-wrapper .item .text .title {
    font-size: 20px;
    font-weight: bold;

    margin-bottom: 15px;
}

.shop-wrapper .item .text .desc {
    font-size: 17px;
    font-weight: normal;

    margin-bottom: 15px;
}

.shop-wrapper .item .text .liste {
    width: fit-content;
    padding: 0px;

    margin-bottom: 15px;
}

.shop-wrapper .item .text .liste li {
    list-style: none;

    text-align: left;
}

.shop-wrapper .item .text .liste li::before {
    content: '✔';
    color: #27ae60;

    padding-right: 15px;
}


.shop-wrapper .item .text .req {
    font-size: 14px;
    font-style: italic;
    font-weight: normal;
}

.shop-wrapper .item .text .price {
    font-weight: bold;

    margin-bottom: 15px;
}

.shop-wrapper .item .text .button {
    border-radius: 16px;

    margin: 0px;
    margin-bottom: 15px;
}

.shop-container .shopTextClients {
    text-align: center;
    width: fit-content;
    margin: 0px auto;

    font-size: 16px;
    font-weight: 500;
    padding: 15px;
}

.shop-content .faq {
    width: calc(100% - 50px) ;
    margin: 25px;

    display: none;
}

.shop-content .faq .title {
    width: fit-content;

    text-align: center;
    font-size: 35px;
    
    margin-top: 5px;
    margin-bottom: 15px;
    
    padding-left: 25px;
}

.shop-content .faq .questions {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

.shop-content .faq .questions .question {
    background-color: #f7f7f7;

    padding: 25px;

    cursor: pointer;
}

.shop-content .faq .questions .question:hover {
    background-color: #ddd;
}

.shop-content .faq .questions .question:first-child {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.shop-content .faq .questions .question:last-child {
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.shop-content .faq .questions .question .title {
    font-size: 22px;
    font-weight: 600;
    margin: 0px;
}

.shop-content .faq .questions .question .answer {
    height: 0px;
    display: none;

    overflow: hidden;
    
    padding-top: 20px;
    padding-left: 35px;
    padding-right: 35px;
}

.shop-content .faq .questions .question .answer.open {
    height: fit-content;
    display: block;
}

/* Customers */
.customers-content {
    padding: 25px;

    width: calc(100vw - 50px);
    max-width: 1500px;

    margin: 0px auto;
    margin-bottom: 50px;
    margin-top: 50px;
}

.customers-heading {
    width: fit-content;
    font-size: 35px;
    font-weight: 600;
    text-align: center;

    margin: 0px auto;
    margin-top: 5px;
    margin-bottom: 15px;
}

.customers-content .subtitle {
    text-align: center;
    font-weight: normal;
    text-align: center;
    font-size: 17px;
}

.customers-content .compactCustomerList {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;

    padding: 50px 0px 25px 0px;
}

.customers-content .compactCustomerList .ccl_customer {
    width: 350px;
    height: fit-content;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;

    margin: 15px;
}

.customers-content .compactCustomerList .ccl_customer .website:hover {
    box-shadow: 0px 0px 20px #4A00E050 !important;
}

.customers-content .compactCustomerList .ccl_customer .logo {
    width: 350px;
    height: 75px;
    margin: 0px auto;
    margin-bottom: 15px;
}

.customers-content .compactCustomerList .ccl_customer .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    box-shadow: unset;
    box-sizing: border-box
}

.customers-content .compactCustomerList .ccl_customer .website {
    width: 350px;
    height: 200px;

    border-radius: 30px;

    margin-bottom: 15px;

    box-shadow: 0px 0px 20px #ddd;

    cursor: pointer;

    transition: all .3s ease-in-out;
}

.customers-content .compactCustomerList .ccl_customer .company {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    margin: 0px auto;
}

.customers-content .button {
    width: fit-content;

    margin: 0px;
    margin: 0px auto;
    margin-top: 25px;

}

.customers-content .button span {
    display: flex;
    justify-content: center;
    align-items: center;
}

.customers-content .button span img {
    width: 20px;
    height: 19px !important;
    margin: 0px;
    margin-left: 15px;
}

.customers-content .customerlist {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

    padding: 25px;

    display: none;
}

.customers-content .customerlist .customer {
    width: 100vw;
    max-width: 1300px;

    margin: 0px auto;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.customers-content .customerlist .customer:not(:last-child) {
    margin-bottom: 25px;
}

.customers-content .customerlist .customer img {
    width: 450px;
    height: 450px;

    margin-right: 20px;
}

.customers-content .customerlist .customer .text {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: center;
}

.customers-content .customerlist .customer .text .logo {
    width: fit-content;
    height: 60px;

    margin: 0px;
    margin-bottom: 15px;

    float: left;
}

.customers-content .customerlist .customer .text .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.customers-content .customerlist .customer .text .titlebar {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;

    margin-bottom: 15px;
}

.customers-content .customerlist .customer .text .titlebar .company {
    width: fit-content;
    font-size: 20px;
    font-weight: 600;

    margin-right: 15px;
}

.customers-content .customerlist .customer .text .titlebar .category {
    background-color: #4A00E050;
    color: #4A00E0;

    font-weight: 500;

    padding: 5px 10px;
    border-radius: 12px;
}

.customers-content .customerlist .customer .text .clientssays {
    font-style: italic;
}

.customers-content .customerlist .customer .text .clientssays .from {
    margin-top: 5px;
    color: #666;
}

.customers-content .customerlist .customer .text .button {
    width: fit-content;

    margin: 0px;

    margin-top: 25px;
}

.customers-content .customerlist .customer .text .button span {
    display: flex;
    justify-content: center;
    align-items: center;
}

.customers-content .customerlist .customer .text .button span img {
    width: 20px;
    height: 19px !important;
    margin: 0px;
    margin-left: 15px;
}

@keyframes scrollText {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Big Screen */
@media only screen and (min-width: 2500px) {
    .landing-content {
        min-height: fit-content;
    }
    
    .services-content {
        min-height: fit-content;
    }
}

/* Big Screen */
@media only screen and (max-width: 1269px) {
    .doneforyou {
        flex-direction: column;
    }
    
    .services-content {
        min-height: fit-content;
    }
}

/* Tablet */
@media only screen and (max-width: 1024px) {
    /* Landing Page ***/

    .landing {
        background-size: cover !important;
    }

    .landing .titlebox .subtitle2 ul li {
        text-align: center;
        padding-bottom: 15px;
    }

    .landing .titlebox .buttons {
        flex-direction: column;
        flex-wrap: wrap;
    }

    .landing .titlebox .buttons .button:not(:last-child) {
        margin-bottom: 15px;
    }

    .landing .titlebox .buttons .button:nth-child(2) {
        margin: 0px;
    }

    /* Shop */ 
    .shop-wrapper .item {
        flex: 0 0 calc(100% - 50px);

        flex-direction: row;
        flex-wrap: wrap;

        min-height: 450px;
        height: fit-content;
    }

    .shop-wrapper .item .icon {
        width: 100%;
    }

    .shop-wrapper .item .text {
        width: 100%;
        height: calc(100% - 175px - 50px);
    }

    .shop-wrapper .item .text .title {
        padding-bottom: 15px;
    }

    .shop-wrapper .item .text .desc {
        padding-bottom: 15px;
    }

    .shop-wrapper .item .text .button {
        width: 100%;
        margin-bottom: 15px !important;
    }

    .shop-wrapper .item .text .button span {
        display: block;
        width: 100%;
        text-align: center;
    }

    .shop-content .shopifypartner .images {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: center;
    }

    .shop-content .shopifypartner .images #shopifylogo {
        margin: 0px;
        margin-bottom: 50px;
    }

    .shop-content .shopifypartner .images #x {
        margin: 0px;
        margin-bottom: 50px;
    }

    /* Services ***/
    .services-content .services-container .box-container .box {
        flex: 0 0 calc(100% - 50px);
    }

    /* CUSTOMER */
    .customers-content {
        width: calc(100vw - 50px);
    }

    .customers-content .customers-container {
        width: 100%;
    }

}

/* Tablet */
@media only screen and (max-width: 992px) {
    /* Landing Page ***/

    .adbanner .banner img {
        border-radius: 0px;
    }

    .scrolldown {
        width: 15vw;
    }
}

/* Mobile */
@media only screen and (max-width: 768px) {
    .dhs {
        width: 100vw;
        flex-direction: column;
    }

    .dhs .left {
        width: 100%;
    }
    .dhs .right {
        width: 100%;
        padding: 0px;
        padding-top: 25px;
    }

    .dhs .right .button {
        display: block;
        margin: 0px auto;
        margin-top: 25px;
    }

    .doneforyou {
        width: 100vw;
        flex-direction: column;
    }

    .doneforyou .dfy_left_content {
        width: 100%;
        height: 341px;
    }

    .doneforyou .dfy_left_content img {
        width: 85%;
    }

    .doneforyou .dfy_right_content {
        max-width: unset;
        width: 100%;
    
        padding: 25px;
    }

    .shop-content .faq {
        width: 100%;
        margin: 0px;
    }

    .shop-content .faq .questions .question .title {
        text-align: left;
        padding: 0px;
    }
    
    .customers-content {
        padding: 0px;
    }

    .customers-content .customerlist .customer {
        width: 100%;
        flex-direction: column;
    }
    
    .customers-content .customerlist .customer img {
        width: 100%;
        height: fit-content;
    }
    
    .customers-content .customerlist .customer .text .logo {
        margin: 0px auto;
        margin-bottom: 15px;
    }
    
    .customers-content .customerlist .customer .text .titlebar {
        flex-direction: column;
        margin: 0px auto;
    }
    
    .customers-content .customerlist .customer .text .titlebar .company {
        text-align: center;
        margin-right: 0px;
    }
    
    .customers-content .customerlist .customer .text .titlebar .category {
        margin: 15px 0px;
    }
    
    .customers-content .customerlist .customer .text a {
        margin: 0px auto;
        margin-top: 15px;
    }

    .customers-content .compactCustomerList .ccl_customer {
        width: 100%;
        margin: 25px 0px;
    }

    .customers-content .compactCustomerList .ccl_customer .logo {
        width: 75%;
    }

    .customers-content .compactCustomerList .ccl_customer a {
        width: fit-content;
        margin: 0px auto;
    }

    .customers-content .compactCustomerList .ccl_customer .website {
        width: 100%;
        max-width: 350px;
        margin: 10px auto;
    }
}

.info-bar {
    position: sticky;
    overflow: hidden;
    white-space: nowrap;
    width: 100vw; /* Volle Breite */
    background-color: #f4f4f4;
    border-top: 2px solid #ddd;
    border-bottom: 2px solid #ddd;
    display: flex;
    justify-content: center; /* Zentriert die Inhalte */
    align-items: center; /* Vertikal zentriert */
}

.scroll-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center; /* Zentriert die Items */
    align-items: center; /* Vertikal zentriert */
    gap: 50px; /* Abstand zwischen den Items */

    padding: 10px 0;    
    animation: scroll 20s linear infinite; /* Animation für Scrollen */
}

.scroll-container .scroll-item {
    flex: 0 0 100%; /* Jedes Item nimmt 100% der Breite ein */
    text-align: center; /* Text zentriert */
    font-size: 16px;
    font-weight: bold;
    color: #333;
}
  
  /* Animation for scrolling */
  @keyframes scroll {
    from {
      transform: translateX(100%);
    }
    to {
      transform: translateX(-100%);
    }
  }
  

.tmfb-content {
    display: none !important;
}

.tmfb {
    max-width: 1500px;

    background-color: #f7f7f7;
    border-radius: 30px;

    margin: 0px auto;
    margin: 25px;
    padding: 25px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    /* width: 100dvw; */
}

/* Landing iPad */
.tmfb .iPad {
    width: 60%;
    height: fit-content;

    /* transform: rotate(-20deg); */

    transition: all .3s ease-in-out;
}

.tmfb .iPad img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    filter: drop-shadow(0px 0px 20px #ddd);

    border-radius: 8px;
}

/* Landing iPhone */
.tmfb .iPhone {
    display: none;

    width: 75%;
    height: 50%;

    /* transform: rotate(-20deg); */

    transition: all .3s ease-in-out;
}

.tmfb .iPhone img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;

    filter: drop-shadow(0px 0px 20px #ddd);

    border-radius: 8px;
}


.tmfb .infos {
    width: 40%;
    height: fit-content;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
}

.tmfb .infos .title {
    font-size: 30px;
    font-weight: 700;

    text-align: center;

    margin-bottom: 15px;
}

.tmfb .infos .subtitle {
    font-size: 24px;

    text-align: center;

    margin-bottom: 15px;
}

.tmfb .infos .appicon {
    width: 100px;
    height: 100px;

    margin-bottom: 25px;
}

.tmfb .infos .appicon img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    border-radius: 18px;

    box-shadow: 0px 0px 20px grey;
}

.tmfb .infos .button {
    margin-bottom: 25px;
}



.tmfb .landing-img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0px 0px 20px black;
    position: relative;
}

.tmfb .landing-img .landing-btn {
    position: absolute;
    top: 724px;

    background-color: #4a00e0;
    color:white;
    height: 50px;
    width: 350px;
}

.tmfb .landing-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;

    border-radius: 8px;
}