.security_inner {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.security_info img {
    max-width: 100%;
}

.security_content {
    width: 70%;
    background: #fff;
    margin-right: 35px;
    padding: 0 15px 0 15px;
    font-size: 20px;
}

.security_selector {
    width: 30%;
}

.security_selector_bg {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.news_column_bg {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.news_column_title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
    background-color: #F95020;
     /*background-image: url(../assets/bg/headerBG.jpg); */
    margin: 10px;
}

.docs {
    display: flex;
    flex-direction: column;
}


/* .security_selector_bg{
display: flex;
flex-direction: column;
width: 100%;
} */

.selector {
    content: none;
    margin-top: 5px;
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    /* width: 340px; */
    width: 100%;
    height: 40px;
    background-color: #F7ECDA;
    font-size: 24px;
    outline: none;
    animation: change-color 1.2s linear;
    animation-iteration-count: infinite;
}

.selector:after {
    content: "";
}

.selector:hover {
    border: 4px solid #FD4E17;
     /*border: 4px solid #5099FF; */
    animation: none;
}

option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    max-width: 350px;
}

@keyframes change-color {
    0% {
        border: 4px solid #F7ECDA;
    }
    50% {
        border: 4px solid #FD4E17;
        /* border: 4px solid #5099FF; */
    }
    100% {
        border: 4px solid #F7ECDA;
    }
}

.news_column_back {
    display: flex;
    flex-direction: column;
}

.news_column_back a {
    margin: 5px 0;
    color: #F95020;
    text-decoration: none;
}

@media screen and (max-width: 460px) {
    .security_inner {
        display: flex;
        flex-direction: column-reverse;
    }
    .news_column_back {
        display: none;
    }
    .security_selector {
        width: 100%;
    }
    .security_content {
        width: 100%;
    }
}