* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

#el-landing-page {
    position: relative;
    width: 100dvw;
    padding-bottom: 2rem;
    background-color: #000;
    /*
    background-image: url(../images/bg_leanding-page-phone.jpg); */
}

#el-landing-page .el-leading-logo {
    position: absolute;
    width: 250px;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

#el-landing-page #el-img-background {
    width: 100%;
}

#el-landing-page .el-title {
    color: var(--white);
    text-align: center;
    font-family: var(--font-title);
    text-transform: uppercase;
    font-size: 22px;
}

#el-landing-page .el-title span {
    display: block;
}

#el-landing-page .el-container {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
}

#el-landing-page .el-container .el-teaser {
    outline: 4px solid var(--white);
    width: calc(100% - 3rem);
    border-radius: 10px;
    overflow: hidden;
    /*padding: 8px;
     background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(2px);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, .25); */
}

/* #el-landing-page .el-container .plyr--video{
    border-radius: 10px;
} */

#el-landing-page form {
    width: 100%;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

#el-landing-page form .el-title {
    background-color: var(--primary);
    width: 100%;
    padding: .25rem 0;
    text-shadow: 0 0 2px rgba(0, 0, 0, .25);
}

#el-landing-page form .el-content-form {
    width: calc(100% - 3rem);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    backdrop-filter: blur(4px);
    border-radius: 10px;
    box-shadow: 0 25px 45px rgba(0, 0, 0, .1);
    border: 1px solid rgba(255, 255, 255, .25);
    border-right: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    overflow: hidden;
    padding: 1rem;
    position: relative;
}

#el-landing-page form .el-content-form:before {
    position: absolute;
    content: '';
    top: 0;
    left: -40%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .1);
    pointer-events: none;
    transform: skewX(-45deg);
}

#el-landing-page form .el-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    width: 100%;
}

#el-landing-page form .el-col {
    width: 100%;
    position: relative;
    height: 35px;
    border-radius: 10px;
    overflow: hidden;
}


#el-landing-page form input,
#el-landing-page form textarea {
    width: 100%;
    height: 100%;
    padding: .5rem;
    outline: none;
    border: none;
    background: none;
    color: var(--white);
    resize: vertical;
}

#el-landing-page form .el-col.el-textarea {
    min-height: 70px;
}

#el-landing-page form input::placeholder,
#el-landing-page form textarea::placeholder {
    color: var(--white);
    font-family: var(--font-text);
}

#el-landing-page form span {
    width: 100%;
    height: 1px;
    display: block;
    background-color: var(--secondary);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: var(--transition);
    pointer-events: none;
    z-index: -1;
}

#el-landing-page form input:focus~span,
#el-landing-page form input:valid~span,
#el-landing-page form textarea:focus~span,
#el-landing-page form textarea:valid~span {
    height: 100%;
}

#el-landing-page form button {
    outline: none;
    border: none;
    padding: .5rem 1.5rem;
    text-transform: uppercase;
    color: var(--white);
    background-color: var(--primary);
    font-family: var(--font-text);
    cursor: pointer;
    border-radius: 10px;
    width: fit-content;
    align-self: center;
}

#el-landing-page .el-container .el-pages-network {
    font-family: var(--font-text);
    color: var(--white);
    margin-top: .5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

#el-landing-page .el-container a {
    display: flex;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--primary);
    justify-content: center;
    align-items: center;
    color: var(--white);
}

#el-landing-page .el-container .el-pages-network div {
    display: flex;
    align-items: center;
    gap: .5rem;
}

#el-landing-page #el-container-mobile,
#el-landing-page #el-container-desktop {
    display: none;
}
@media all and (min-width: 485px) {
    #el-landing-page {
        padding-bottom: 0;
    }

    #el-landing-page .el-title {
        font-size: 29px;
    }

    #el-landing-page .el-container {
        gap: 1.5rem;
    }

    #el-landing-page form {
        gap: 2rem;
    }
}

@media all and (min-width: 575px) {
    #el-landing-page .el-leading-logo {
        width: 300px;
    }

    #el-landing-page .el-container {
        bottom: 2rem;
    }

    #el-landing-page .el-title {
        font-size: 34.5px;
    }

    #el-landing-page form input,
    #el-landing-page form textarea {
        font-size: 15px;
    }

    #el-landing-page .el-container .el-pages-network {
        font-size: 18px;
    }
}

@media all and (min-width: 768px) {
    #el-landing-page .el-container {
        gap: 2.5rem;
    }

    #el-landing-page .el-title {
        font-size: 45px;
    }

    #el-landing-page .el-container {
        bottom: 2rem;
    }

    #el-landing-page form {
        gap: 3rem;
    }

    #el-landing-page .el-container .el-teaser,
    #el-landing-page form .el-content-form {
        width: calc(100% - 6rem);
    }

    #el-landing-page form .el-content-form {
        padding: 2rem;
    }

    #el-landing-page form .el-row,
    #el-landing-page form .el-content-form {
        gap: 2rem;
    }

    #el-landing-page form button {
        font-size: 16.5px;
    }
}

@media all and (min-width: 992px) {
    #el-landing-page {
        height: 100dvh;
        min-height: 100dvh;
    }

    #el-img-background {
        position: absolute;
        object-fit: cover;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    #el-landing-page .el-leading-logo {
        width: 250px;
    }

    #el-landing-page .el-container {
        bottom: 0rem;
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }

    #el-landing-page .el-container .el-zone-left,
    #el-landing-page .el-container .el-zone-right {
        width: 400px;
        padding: 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    #el-landing-page .el-zone-left form {
        margin: 0;
    }

    #el-landing-page form .el-content-form {
        width: 100%;
        padding: 1rem;
        gap: 1.5rem;
    }

    #el-landing-page form .el-row {
        gap: 1rem;
    }

    #el-landing-page form button {
        font-size: .8rem;
    }

    #el-landing-page .el-zone-left .el-title {
        font-size: 1.2rem;
        margin: 0;
    }

    #el-landing-page .el-zone-left .el-title:last-of-type {
        font-size: 1.15rem;
    }

    #el-landing-page .el-container .el-teaser {
        width: 100%;
    }

    #el-landing-page .el-container .el-zone-right {
        align-items: flex-end;
        gap: 3rem;
        width: 380px;
    }
}

@media all and (min-width: 1200px) {
    #el-landing-page .el-container {
        padding: 0 2rem 1rem;
    }

    #el-landing-page .el-container .el-zone-right {
        width: 420px;
    }
}

@media all and (min-width: 1366px) {

    #el-landing-page .el-container .el-zone-left,
    #el-landing-page .el-container .el-zone-right {
        width: 450px;
        gap: 2rem;
    }

    #el-landing-page .el-zone-left .el-title {
        font-size: 1.7rem;
    }

    #el-landing-page .el-zone-left .el-title:last-of-type {
        font-size: 1.3rem;
    }

    #el-landing-page .el-container .el-zone-right {
        width: 470px;
    }

    #el-landing-page .el-leading-logo {
        width: 300px;
    }

    #el-landing-page form button {
        font-size: 1rem;
    }

    #el-landing-page form .el-content-form {
        gap: 2rem;
        padding: 2rem;
    }

    #el-landing-page .el-container a {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }

    #el-landing-page .el-container .el-pages-network {
        font-size: 20px;
    }
}

@media all and (min-width: 1920px) {

    #el-landing-page .el-container .el-zone-left,
    #el-landing-page .el-container .el-zone-right {
        width: 600px;
        gap: 3rem;
    }

    #el-landing-page .el-zone-left .el-title {
        font-size: 2.3rem;
    }

    #el-landing-page .el-zone-left .el-title:last-of-type {
        font-size: 1.8rem;
    }

    #el-landing-page .el-container .el-zone-right {
        width: 650px;
    }

    #el-landing-page .el-leading-logo {
        width: 350px;
    }
}
