.landing-titles {
    justify-content: center;
    padding-left: 40px;
    height: calc(100vh - 60px);
    background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 50%);
    display: flex;
    flex-direction: column;
}

.landing-big-title {
    color: white;
    font-size: 60pt;
    font-weight: 800;
    margin-bottom: -10px;
}

.landing-sub-title {
    color: rgba(210, 210, 210);
    font-size: 40pt;
    margin-top: -20px;
    font-weight: 300;
    margin-top: 30px;
}

.landing-search-bar {
    margin-top: 20px;
    width: 450px;
    border-radius: 40px;
    background-color: rgba(160, 160, 160, 0.1) !important;
    padding-left: 25px;
    padding-right: 25px;
    height: 80px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.landing-search-bar img {
    float: left;
    width: 25px;
}

.landing-search-bar span {
    float: left;
    color: var(--input-text-color);
    font-size: 20pt;
    margin-left: 15px;
}

.video-container {
    background-color: transparent;
    width: 100%;
    height: calc(100vh - 60px);
    position: absolute;
    top: 60px;
    left: 0px;
    z-index: -1;
}

.landing-video {
    float: left;
    height: 100%;
    width: auto;
    min-height: 600px;
}

.landing-video-gradient {
    position: relative;
    height: calc(100vh - 60px);
    width: 100px;
    background: linear-gradient(to right, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0) 100%);
}

#landing-symbols {
    height: 50px;
    margin-top: 30px;
}

.landing-symbol {
    height: 40px;
    border-radius: 50px;
    background-color: rgba(160, 160, 160, 0.1);
    border: 0.03em rgba(211.44, 211.44, 211.44, 0.10) solid;
    color: var(--primary-color);
    font-size: 14pt;
    font-weight: 400;
    padding-left: 10px;
    padding-right: 10px;
    margin-right: 5px;
    overflow: hidden;
    display: flex;
    align-items: center;

}

.landing-symbol-1 {
    min-width: 190px;
}

.landing-symbol-2 {
    min-width: 190px;
}

.landing-symbol-3 {
    width: 245px;
}

.symbol-landing-price {
    font-size: 13pt;
    color: var(--input-text-color);
    font-weight: 300;
    margin-left: 5px;
}

.symbol-landing-change {

    margin-left: 5px;
}

.landing-tag-logo {
    width: 26px;
    height: 26px;
    border-radius: 13px;
    margin-right: 6px;
    margin-top: -2px;
}


.third-symbol {
    display: block;
}

@media screen and (max-width: 800px) {
    .landing-titles {
        justify-content: center;
        padding-left: 40px;
        width: 100%;
        height: 50%;
        background: rgb(10, 10, 10);
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .landing-big-title {
        color: white;
        font-size: 40pt;
        font-weight: 800;
        margin-bottom: -10px;
        text-align: center;
    }

    .landing-sub-title {
        color: rgba(210, 210, 210);
        font-size: 20pt;
        margin-top: -20px;
        font-weight: 300;
        margin-top: 30px;
        text-align: center;
    }


    .video-container {
        background-color: transparent;
        width: 100%;
        height: calc(50vh - 60px);
        position: absolute;
        top: calc(50vh + 60px);
        left: 0px;
        z-index: 0;
    }

    .landing-video {
        float: left;
        width: 100%;
        min-height: 0px;
    }

    .third-symbol {
        display: none;
    }

}


@media screen and (max-width: 500px) {

    #landing-symbols {
        height: 40px;
        margin-top: 30px;
    }

    .landing-symbol {
        height: 30px;
        border-radius: 50px;
        background-color: rgba(160, 160, 160, 0.1);
        border: 0.03em rgba(211.44, 211.44, 211.44, 0.10) solid;
        color: var(--primary-color);
        font-size: 10pt;
        font-weight: 300;
        padding-left: 10px;
        padding-right: 10px;
        margin-right: 5px;
    }

    .landing-tag-logo {
        width: 18px;
        height: 18px;
        border-radius: 9px;
        margin-right: 6px;
        margin-top: -2px;
    }

    .landing-symbol span {
        font-size: 10pt;
        font-weight: 400;
    }

    .landing-search-bar {
        margin-top: 20px;
        width: 250px;
        border-radius: 30px;
        background-color: rgba(160, 160, 160, 0.1) !important;
        padding-left: 15px;
        padding-right: 15px;
        height: 60px;
        display: flex;
        align-items: center;
        cursor: pointer;
    }
    

    .landing-search-bar img {
        float: left;
        width: 20px;
    }
    
    .landing-search-bar span {
        float: left;
        color: var(--input-text-color);
        font-size: 12pt;
        margin-left: 15px;
    }

    .landing-titles {
        padding-left: 0px;
    }

    .video-container {
        display: none;
    }
}