.cio-signup {
    display: flex;
    padding: 20px 30px;
    color: #ffffff;
    transition: all 0.3s ease-in;
    background-color: #2454ff;
}

.cio-signup:hover{
    color: #C3FCF1;
}

.CIO-kv {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    height: 65vh;
    background-color: #ffac18;
    color: #FFFFFF;
    background-size: cover !important;
    background: url(../img/kv_bg.jpg) no-repeat center center scroll;
}

.CIO-kv-box{
    padding: 1rem;
    text-shadow: 0.1rem 0.2rem 0.1rem #2454ff;
}

.CIO-kv-box h1{
    font-size: 4.2rem;
    font-weight: 900;
}

.CIO-kv-box small {
    font-weight: 900;
    font-size: 3rem;
}

.cio-info {
    background-color: #eeeeee
}

.cio-list{
    margin-bottom: 2rem;
}

.cio-list ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.cio-list ul li::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #2454ff;
    margin-right: 10px;
}

.cio-list ul li {
    padding-bottom: 10px;
}

.cio-btn {
    display: block;
    border-radius: 30px;
    background-color: #2454ff;
    text-align: center;
    font-size: 20px;
    padding: 0.6rem 2rem;
    width: 360px;
    transition: all 0.5s;
    margin: 0 auto;
    letter-spacing: 0.5rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.cio-btn span {
    display: inline-block;
    position: relative;
    transition: 0.5s;
    color: #FFFFFF;
}

.cio-btn span:after {
    content: "\F280";
    font-family: "bootstrap-icons";
    position: absolute;
    opacity: 0;
    top: 0;
    right: -25px;
    transition: 0.5s;
}

.cio-btn:hover span {
    padding-right: 15px;
}

.cio-btn:hover span:after {
    opacity: 1;
    right: -10px;
}

.cio-photo{
/*    border: 1px solid #212121;*/
    cursor: pointer;
    margin-bottom: 2rem;
    box-shadow: 0 0 10px #BBBBBB;
}

.cio-photo:hover {
    opacity: 0.85;
}

.cio-photo img {
    width: 100%;
}