.banner-container3.close {
    min-height: auto;
}

.common-title.rms-title {
    width: 150px;
    height: 150px;
    background-color: #1156aa;
    text-align: center;
    border-radius: 50%;
    line-height: 1;
    margin: 0 auto;
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    user-select: none;
}

.common-title.rms-title:after {
    content: none;
}

.rms-button-container {
    display: flex;
    flex-flow: column;
    position: relative;
}

.rms-button-container:before {
    content: '';
    display: block;
    height: calc(100% + 40px);
    width: 3px;
    background-color: #1156aa;
    position: absolute;
    top: -40px;
    left: 50%;
}

.rms-button {
    display: block;
    width: calc(50% - 20px);
    font-size: 20px;
    position: relative;
}

.rms-button:nth-child(2n) {
    margin-left: auto;
}

.rms-button:nth-child(2n-1):before {
    content: '';
    display: block;
    height: 3px;
    width: 20px;
    background-color: #1156aa;
    position: absolute;
    top: 50%;
    right: -20px;
}

.rms-button:nth-child(2n):before {
    content: '';
    display: block;
    height: 3px;
    width: 20px;
    background-color: #1156aa;
    position: absolute;
    top: 50%;
    left: -20px;
}

ul.rms-link-radiolist {
    width: 73%;
    font-size: 18px;
    font-family: 'Assistant', sans-serif;
    margin: 0px auto;
    margin-bottom: 15px;
}

@media only screen and (max-width: 600px) {
    .rms-button {
        font-size: 16px;
        padding: 10px 5px;
        text-align: center;
        margin-bottom: 5px;
    }

    .rms-link-button {
        font-size: 20px;
        padding: 10px 5px;
        line-height: 1;
    }
}

.common-title.rms-title span {
    z-index: 1;
}

.common-title.rms-title:before {
    content: '';
    -webkit-animation: fadein 5s 1;
    -o-animation: fadein 5s 1;
    animation: fadein 5s 1;
    animation-iteration-count: infinite;
    width: 150px;
    height: 150px;
    background-color: rgb(0 53 107);
    position: absolute;
    border-radius: 50%;
    display: block !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.common-title.rms-title:after {
    content: '';
    -webkit-animation: fadein 5s 1;
    -o-animation: fadein 5s 1;
    animation: fadein 5s 1;
    animation-delay: 0.3s;
    animation-iteration-count: infinite;
    width: 160px;
    height: 160px;
    border: 3px solid #1156aa;
    background-color: #ffffff;
    position: absolute;
    border-radius: 50%;
    display: block !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

@keyframes fadein {
    0% {transform: translate(-50%, -50%)scale(1);}
    50% {transform: translate(-50%, -50%)scale(1.1);}
    100% {transform: translate(-50%, -50%)scale(1);}
}

.rms-button {
    transition: 0.3s transform, 0.3s opacity;
}

.rms-button span {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    opacity: 0;
    border-radius: 10px;
    background-color: #fff;
    transform: translate(-50%, -50%);
    animation-name: bg-fade;
    animation-duration: 7s;
    animation-iteration-count: infinite;
}

@keyframes bg-fade {
    0% {width: 0;  height: 0; opacity: 0;}
    30% {opacity: 0.2;}
    40% {width: 100%; height: 100%;}
    50% {opacity: 0;}
    100% {width: 100%; height: 100%;opacity: 0;}
}