.page_banner-home {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    z-index: 1;
}

.banner_home_black1{
    width: 100%;
    height: 10%;
    background-color: #121212;
}

.banner_home_card{
    width: 100%;
    height: 80%;
    z-index: 10;
    display: flex;
    align-items: center;
}

.banner_home_card_in{
    width: 30%;
    height: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color:#2C2F33;
    padding: 20px;
}

.banner_home_text{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner_home_card_in .small_text {
    color: #C5A059;
    font-size: 15px;
    font-weight: 500;
}

.about_me_buttom{
    margin:20px;
}

.about_me_bt a{
    text-decoration: none;
    color: #C5A059;
    border: 1px solid #C5A059;
    padding: 10px 25px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    transition: all 0.3s ease;
}
.about_me_bt a:hover{
    color: #222222;
    background-color: #C5A059;
    border-color: #C5A059;
}

.banner_card_play_video{
    position: relative;
    width: 70%;
    height: 100%;
    overflow: cover;
    display: flex;
    justify-content: start;
    align-items: center;
    background-color: rgb(39, 39, 39);
}

.banner_card_play_video #background_video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner_card_black2{
    width: 5%;
    height: 100%;

    background-color: #3E4A59;
}

.banner_home_black2{
    width: 100%;
    height: 10%;
    background-color: #121212;
}

.banner_home_card_in h1{
    font-size: 30px;
    letter-spacing: 8px;
    color: #e6e6e6;
    font-weight: 700;
    margin-bottom: 20px;
    margin-left: 20px;
    margin-right: 20px;
}

.banner_home_card_in h2{
    font-size: 25px;
    letter-spacing: 5px;
    color: #e6e6e6;
    font-weight: 500;
    margin-bottom: 20px;
    margin-left: 20px;
    margin-right: 20px;
}

.banner_home_card_in p{
    font-size: 18px;
    line-height: 1.8;
    letter-spacing: 3px;
    color: #aaaaaa;
    font-weight: 350;
    margin-bottom: 20px;
    margin-left: 20px;
    margin-right: 20px;
}

@media screen and (max-width:768px) {
    
    .banner_home_black1{
        display: none;
    }
    
    .banner_home_black2{
        display: none;
    }
    .banner_home_card{
        height: 100%;
        width: 100%;
        justify-content: start;
        align-items: center;
        flex-direction: column;
        display: flex;
    }
    .banner_card_play_video{
        height: 50%;
        width: 100%;
    }
    .banner_home_card_in{
        height: 50%;
        width: 100%;
    }

    .banner_card_black2{
        display: none;
    }

    .banner_home_card_in h1{
        font-size: 20px;
        letter-spacing: 8px;
        color: #e6e6e6;
        font-weight: 700;
        margin-bottom: 20px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .banner_home_card_in h2{
        font-size: 16px;
        letter-spacing: 5px;
        color: #e6e6e6;
        font-weight: 500;
    }

    .banner_home_card_in p{
        font-size: 12px;
        line-height: 1.8;
        letter-spacing: 3px;
        color: #aaaaaa;
    }
}