/* #selection_of_register {
    display: none;
} */

.container-fluid .selection_of_register {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0px;
    margin: 0px;
    background-color: bisque;
    display: flex;
    /* flex-direction: column; */
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    z-index: 100;
}

.container-fluid .selection_of_register h1 {
    margin: 20px auto;
    text-align: center;
}

.container-fluid .selection_of_register .inner {
    background-color: rgba(0, 255, 0, 0.698);
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}

.container-fluid .selection_of_register .inner div {
    width: 30%;
    border: 2px solid greenyellow;
    margin: 40px 40px;
    padding: 20px 0px;
    text-align: center;
}

.container-fluid .selection_of_register .inner div:hover {
    box-shadow: 10px 10px 20px green;
    cursor: pointer;
}

.container-fluid .selection_of_register .inner h3 a {
    text-align: center;
    color: green;
    padding: 20px 40px;
    text-decoration: none;
}


/*  responsive work */

@media screen and (max-width: 630px) {
    .carousel-caption {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }
    .carousel-caption h3 {
        font-size: 1.3rem;
    }
    .carousel-caption h5 {
        font-size: 1rem;
    }
    .carousel-indicators li {
        width: 10px !important;
        height: 10px !important;
        margin: 0px 20px !important;
    }
    .container-fluid .selection_of_register .inner {
        flex-direction: column;
    }
    .container-fluid .selection_of_register .inner div {
        width: 80% !important;
        margin: 30px 30px !important;
        padding: 5px 0px !important;
    }
    .container-fluid .selection_of_register .inner h3 a {
        padding: 5px 0px !important;
    }
    .container-fluid .selection_of_register .inner div h3 {
        font-size: 1.5rem !important;
    }
}