#banner{
    /* background: black; */
    height: 200px;
    margin-bottom: 20px;
    display: flex;
    position: relative;
    align-items: center;
    position: relative;
}
.banner-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-circle2 {
    width: 80%;
    height: 80%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.banner-circle2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: radial-gradient(circle at center, rgba(0, 0, 0, 0) 50%,#2c3083 51%, #0790db 100%); */
    border-radius: 50%;
}
.banner-dotted-line {
    height: 0;
    border: 2px dashed white;
    width: 100px;
    /* position: relative;
    top: 98px; */
    /* left: 200px; */
}
.banner-body {
    /* #2c3083
    #02558a */
    background: linear-gradient(to right, #2c3083, #2c3083, #02558a);
    opacity: 0.8;
    width: calc(100% - 300px);
    height: 50%;
    font-size: 30px;
    font-weight: bold;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}