* {
    margin: 0;
    padding: 0;
}

@media only screen and (min-width: 1420px) {
    .mob_header {
        display: none;
    }
}

@media only screen and (max-width: 1419px) {

    .header {
        background-color: var(--bg2);
        margin-top: 0;
        width: 100%;
        max-width: 100%;
        justify-content: space-between;
        height: 55px;
        left: 0;
    }

    .header.scrolled {
        width: 100%;
    }

    .nav1 {
        display: none;
    }

    .nav1-btn {
        display: none;
    }

    .logo img {
        width: 80px;
        margin-left: 10px;
        margin-top: 7.5px;
    }

    .mob_header {
        display: block;
        max-width: 0px;
        width: 0px;
        min-width: 0px;
        height: calc(100vh - 110px);
        bottom: 0;
        background-color: #ffffff;
        text-align: center;
        overflow-y: scroll;
        padding-bottom: 30px;
        padding-top: 10px;
        transition: 0.75s all;
        position: fixed;
        z-index: 400;
    }
    
    .mob_header.flip {
        width: calc(100%);
        min-width: calc(280px);
        max-width: none;
        transition: 0.75s all;
    }
    
    .mob_header img {
        width: 100%;
        max-width: 100px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .mob_header .dblock {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .mob_header .dblock a {
        text-decoration: none;
        color: rgb(0, 0, 0);
        font-size: 100%;
        font-weight: normal;
        text-transform: uppercase;
        width: 90%;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    
    .mob_header .sm .bbttm {
        margin-top: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mob_header .sm .bbttm a i {
        text-decoration: none;
        color: rgb(0, 0, 0);
        width: 40px;
        height: 40px;
        border: 2px solid rgb(0, 0, 0);
        border-radius: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 5px;
        font-size: 110%;
        padding: 0;
    }
    
    .mob_header .erstgsprch {
        margin-top: 40px;
    }
    
    .mob_header .erstgsprch a {
        text-decoration: none;
    }
    
    .mob_header .erstgsprch a .gspr {
        background: var(--cta2);
        color: white;
        text-decoration: none;
        font-size: 15px;
        font-weight: 600;
        text-transform: uppercase;
        display: inline-block;
        padding: 10px 20px;
        border-radius: 5px;
        font-family: Arial, sans-serif;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* optional shadow */
        transition: background-color 0.3s ease;
    }
    
    .mob_header .erstgsprch a .gspr:hover, .mob_header .sm .bbttm a i:hover {
        cursor: pointer;
        scale: 1.05;
        transition: 0.75s scale;
    }

    .mob_header .mob_legal {
        margin-top: 30px;
    }
    
    .mob_header .mob_legal a {
        color: rgb(180, 180, 180);
    }
    
    
    
    .rightside {
        padding-left: 10px;
        padding-right: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: 17px;
        right: 10px;
        padding-bottom: 3px;
        z-index: 1000;
    }
    
    .rightside .nav {
        width: 35px;
        height: 35px;
        margin-top: 3px;
    }
    
    .rightside .nav:hover {
        cursor: pointer;
    }
    
    .rightside .nav .span {
        width: 100%;
        height: 3px;
        background-color: white;
        border-radius: 1000px;
        margin-bottom: 7px;
        margin-top: 7px;
        transform: rotate(0deg);
        transition: 0.75s transform;
    }
    
    .rightside .nav.flip {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    
    .rightside .nav.flip .span:nth-child(1) {
        margin-bottom: -1px;
        transform: rotate(-45deg);
        transition: 0.75s transform;
        background-color: white;
    }
    
    .rightside .nav.flip .span:nth-child(2) {
        display: none;
    }
    
    .rightside .nav.flip .span:nth-child(3) {
        background-color: white;
        transform: rotate(45deg);
        margin-top: -1px;
        transition: 0.75s transform;
    }
}