html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font: normal 16px / 24px "Roboto", Helvetica, Arial, Verdana, sans-serif;
}

body {
    transition: background-color .5s;
}

.container {
    border: none 1px;
    box-shadow: 0px 0px 10px 0px gray;
    margin: auto;
    max-width: 1100px;
    min-height: 1400px;
}


/*           */

.inner {
    display: flex;
    justify-content: space-between;
}

.center-box {
    border: none;
    width: 60%;
    min-height: 700px;
    margin-top: 10px;
}

.bold {
    font-weight: bold;
    color: #7a7a7a;
    font-size: 14px;
}

.txt {
    margin: -8px 13px;
}

.txt-small {
    color: #055380;
    font-size: 80%;
}

.center_box__texts>p {
    color: #333333;
    margin: 7px 12px;
    text-align: justify;
    font-size: 15px;
}

.text-link {
    color: #3b8ced;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

.banner {
    width: 96% !important;
    height: auto;
    margin: 10px;
}

.top-bottom-texts {
    font-weight: bold;
}

.viewers {
    border: none;
    width: 100%;
    height: 120px;
    margin: auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.on-box {
    border: none;
    text-align: center;
    align-items: center;
}

.for-plus {
    display: flex;
    justify-content: center;
}

.plus {
    font-weight: bolder;
}

.in-static-box {
    border: none;
    background-color: #006fb7;
    width: 45px;
    height: 45px;
    border-radius: 100%;
    line-height: 55px;
    text-align: center;
    margin: auto;
}

.in-view-box {
    border: none;
    background-color: #006fb7;
    width: 45px;
    height: 45px;
    border-radius: 100%;
    line-height: 55px;
    margin: auto;
}

.in-downl-box {
    border: none;
    background-color: #006fb7;
    width: 45px;
    height: 45px;
    border-radius: 100%;
    line-height: 50px;
    text-align: center;
    margin: auto;
}

#User-icons {
    font-size: 28px;
    color: white;
}

.in-static-box:hover {
    background-color: #23a455;
    transition: 0.5s;
}

.in-view-box:hover {
    background-color: #23a455;
    transition: 0.5s;
}

.in-downl-box:hover {
    background-color: #23a455;
    transition: 0.5s;
}

.center_box_img {
    display: flex;
    justify-content: center;
}

.big-indx-box {
    border: none;
    max-width: 85%;
    margin: auto;
}

.indexing-text {
    color: #055380;
    font-weight: bold;
    font-size: 35px;
    text-transform: uppercase;
    line-height: 27px;
}

.indexing-text,
.under-indx-line,
.under-indx-line-2,
.under-indx-line-3 {
    margin: 5px;
}

.under-indx-line {
    width: 150px;
    background-color: #055380;
    height: 3px;
    border: none;
}

.under-indx-line-2 {
    width: 400px;
    background-color: #055380;
    height: 3px;
    border: none;
}

.under-indx-line-3 {
    width: 180px;
    background-color: #055380;
    height: 3px;
    border: none;
}

.indexing {
    display: flex;
    border-radius: 20px;
    background-color: #f1f3f4;
    justify-content: center;
}

.line {
    display: flex;
    height: auto;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: first baseline;
    box-sizing: border-box;
    margin: 15px 5px;
    width: 28%;
}

.indexing-icons {
    width: 100%;
    cursor: pointer;
    margin: 0 auto;
    object-fit: cover;
    transition: .1s linear;
}

.indexing-icons:hover {
    opacity: 0.7;
    transform: scale(1.1);
}

@media only screen and (max-width: 880px) {
    .indexing {
        justify-content: start;
    }
}

@media only screen and (max-width: 770px) {
    .inner {
        flex-direction: column;
    }
    .viewers {
        flex-direction: column;
        height: auto
    }
    table {
        width: 100%;
    }
    .indexing {
        flex-direction: column;
    }
    .indexing-icons {
        width: 100%;
    }
    .line {
        width: 95%;
    }
    .center-box {
        width: 85%;
        margin: 0 auto;
    }
    .on-box {
        margin: 10px;
    }
    .under-indx-line-2 {
        width: 220px;
    }
}