
   
    .video{
        width: 100%;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        position: relative;
    }

    .video:hover .video .options{
        display: flex;
    }
  

    .video .options{
        background: #FDC300;
    width: 140px;
    height: 40px;
    position: absolute;
    bottom: 15px;
    border-radius: 20px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    }
   
    .video .options a{
	width: 150px;
    height: 150px;
    background: #333333;
    border-radius: 300px;
    color: white;
    text-decoration: initial;
    display: flex;
    justify-content: center;
    align-items: center;
    }

    .video .options a:hover{
    background: #FFFFFF;
    color: #333333;
    }

    .video #play{
        width: 100%;
        height: 100%;
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #00000040;
    }
    .video #play button{
        width: 120px;
        height: 120px;
        color: white;
        border-radius: 170px;
        background-image: linear-gradient(to bottom, #fdc300, #fdb707, #fcab10, #fa9f17, #f7931e);
        border: 0;
        cursor: pointer;
    }

    .video #play button i{
    font-size: 40px;
    margin-left: 5px;
    }

    .video video{
        width: 100%;
        height: 100%;
        background: black;
    }

    .video .intection{
        width: 100%;
        height: 100%;
        position: absolute;
        background: #000000b5;
        z-index: 1000;
        display: none;
        justify-content: center;
        align-items: center;
    }

    .video .intection .questao{
        width: 90%;
        height: 40%;
        background: white;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .video .intection .questao button{
        width: 70%;
        height: 30px;
        border-radius: 10px;
        margin-bottom: 10px;
    }

    .video .intection .questao .titulo{
        width: 90%;
        margin-bottom: 10px;
        background: red;
        padding: 10px;
    } 
    .video .intection .questao .titulo h3{
        margin: 0;
        padding: 0;
    }

    .video .intection .questao_itens{
        width: 90%;
        height: 40%;
        min-height: 260px;
        padding: 10px;
        display: flex;
        justify-content: space-around;
        transition: opacity .3s;
    }

    .video .intection .questao_itens .questao_item{
        width: 100%;
        min-width: 150px;
        height: 100%;
        background: #CCCCCC;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
        margin-top: 10px;
        margin-right: 20px;
        border-radius: 20px;
        position: relative;
        cursor: pointer;
    }

    .video .intection .questao_itens .questao_item:hover{
  
        background: white;
       
    }

    


    .video .intection .questao_itens .questao_item .borda-bottom{
        background: #43C0F1;
        width: 71%;
        height: 7px;
        position: absolute;
        bottom: 0;
    }
    .video .intection .questao_itens .questao_item:hover .questao_item-left{
  
  border: 4px white solid;
 
}

    .video .intection .questao_itens .questao_item .questao_item-left{
        width: auto;
        height: auto;
        position: absolute;
        top: -20px;
        border: 4px #CCCCCC solid;
        border-radius: 100px;
    }


   
    
    .video .intection .questao_itens .questao_item .questao_item-left span{
        width: 40px;
        height: 40px;
        border-radius: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        font-size: 30px;
        font-weight: bolder;
        color: #333333;
        background-image: linear-gradient(to bottom, #ffcf2d, #ffc534, #ffc047, #fa9f17, #f7931e);
    }


    .video .intection .questao_itens .questao_item .questao_item-right{
        padding: 20px;
        color: black;
        margin-top: 20px;
    }

    .video .intection .feedback_final{
      
        width: 100%;
        max-height: 330px;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }

    .video .intection .feedback_final a{
        width: 120px;
        height: 120px;
        color: white;
        font-size: 40px;
        border-radius: 240px;
        background-image: linear-gradient(to bottom, #fdc300, #fdb707, #fcab10, #fa9f17, #f7931e);
        border: 0;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
       
    }

    .video .intection .feedback_final a i{
        font-size: 50px;
    }
    

    .video .intection .feedback_final a:hover{
        background: #333333;
    }

    .video #play button:hover{
        background: #333333;
    }
    
    @media(max-width: 650px){
        .video .intection .questao_itens{
             flex-direction: column;
        }
    }

   