* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #1b1d21;
}
.overlay {
    position: fixed;
    inset: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 9999999;
}

.card {
    width: 500px;
    background: #2b2d31;
    border-radius: 24px;
    color: #fff;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .65);
    margin: 10px;
    font-family: Segoe UI;
}

.card {

    position: relative;
    z-index: 2;

}

.hero {
    text-align: center;
}

.logo {
    max-width: 280px;
    position: relative;
    z-index: 2;
    display: block;
    margin: auto;
    padding-top: 30px;
}

.content {
    padding: 10px 48px;
    text-align: center;
    z-index: 100;
    position: relative;
}

.tag {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgb(255 108 0 / 91%);
    border: 1px solid rgb(255 140 0 / 20%);
    color: #dbdbdb;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
}

p.za-p-experience {
    color: #b9bcc4;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer {
    margin-top: 18px;
    border-top: 1px solid #3b3d44;
    padding: 10px;
    color: #9da1aa;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-style: oblique;
    font-size: 0.92rem;
}

.footer img {
    width: 20px;
}

.hero {
    position: relative;
    padding: 42px;
}

.hero {

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: flex-start;
    background-image: url(../img/zikatmos-waves.svg);
    background-repeat: no-repeat;
    background-position: center -50px;
    background-size: 200%;
}

button.close {
    position: absolute;
    right: 10px;
    z-index: 100;
    top: 10px;
    color: #ff6b00;
    font-weight: bolder;
    background: none;
    border: none;
    box-shadow: none;
}

.hero-container {
    height: 150px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(0deg, rgb(43 45 49) 30%, rgba(0, 0, 0, 0) 60%);
    z-index: 20;
}

.mini-zikatmos {
    width: 28px;
}

.header-za {
    position: relative;
    width: 100%;
    height: 110px;
    z-index: 20;
}

.za-blur {
    position: absolute;
    inset: 0;
    backdrop-filter: blur(3px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    background: rgba(15, 18, 22, .2);
}
#zaExperience{

    opacity:0;

    visibility:hidden;

    transition:
        opacity .22s ease,
        visibility .22s ease;

}

#zaExperience.show{

    opacity:1;

    visibility:visible;

}
@media (max-width:480px){

    .content {
        padding: 10px 28px;
    }

    .footer {
        font-size: 0.8rem;
    }

}