/**************************************************** Tablet (768px bis 1024px) *****************************************************/
@media (min-width: 768px) and (max-width: 1023px) {
    .sub-social-media>div {
        display: none;
    }

    .main-social-media {
        z-index: 9000;
        display: flex;
        flex-direction: column;
        gap: 10px;
        background-color: gold;
        padding: 10px;
        border-radius: 10px;
    }

    .main-social-media {
        position: fixed;
        top: 30%;
        right: -5px;
    }

    .main-social-media i {
        font-size: 2em;
        color: black;
    }

    .banner-contact {
        all: revert;
        background-color: black;
        color: white;
        padding: 10px;
    }

    .email {
        display: none;

    }


    /* Header */
    .logo {
        font-size: 1.3em;
    }

    .main-header {
        padding: 15px 20px;
        font-size: 18px;
        background-color: gold;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 200;
    }

    .sub-header button {
        padding: 5px 12px;
        position: fixed;
        right: 70px;
    }

    .sub-header button a {
        font-size: 1.2em;
    }

    .sub-header {
        all: revert;
        display: flex;
        align-items: center;
    }

    .menu {
        display: none;
    }

    .menu-mobile {
        display: block;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        cursor: pointer;
        position: fixed;
        top: 0;
        right: 20px;
        z-index: 2000;
    }

    .hamburger span {
        display: block;
        height: 3px;
        width: 100%;
        background: black;
        transition: all 0.3s ease;
    }

    .menu-mobile {
        position: fixed;
        left: -100%;
        top: 0;
        background-color: gold;
        padding: 40px 30px;
        width: 80%;
        height: 100vh;
        max-width: 300px;
        z-index: 2999;
        transition: all 0.3s ease;

    }

    .menu-mobile ul {
        list-style: none;
    }

    .menu-mobile ul li {
        margin-bottom: 20px;
    }

    .menu-mobile ul li a {
        font-size: 1.3em;
        border-bottom: 1px solid #ffffff;
        display: block;
        padding: 10px;

    }


    .menu-toggle:checked~.menu-mobile {
        left: 0;
    }

    .menu-toggle:checked+.hamburger span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle:checked+.hamburger span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle:checked+.hamburger span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .overlay {
        display: none;
        position: fixed;
        background-color: rgba(0, 0, 0, 0.331);
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 1998;
        transition: all 0.3s ease;
    }

    .menu-toggle:checked~.overlay {
        display: block;
    }

    /* Banner */
    .main-banner {
        margin-top: 36px;
    }

    .sub-banner img {
        height: 100%;

    }

    .main-banner::before {
        all: revert;
    }

    /* Titel */
    .sub-titel {
        padding: 0 30px;
    }

    /*  Social Proof */
    .main-social-prof {
        display: flex;
        justify-content: space-between;
        gap: 50px;
        align-items: start;
    }

    .sub-social-prof {
        font-size: 1.3em;
    }

    .strength h2 {
        text-align: right;
    }

    .strength>p {
        font-size: 1.3em;
        line-height: 1.5;
        text-align: right;
    }

    /************************** Services ***************************/
    .sub-survices {
        display: grid;
        grid-template-columns: auto auto;
        align-items: center;
        gap: 10px;
    }

    .service-card {
        font-size: 1.3em;
    }

    /* My Teaching Method */
    .sub-teaching img {
        width: 30%;
    }

    /* Testimonials */
    .sub-testimonials {
        display: grid;
        grid-template-columns: auto auto;
        gap: 10px;
    }

}