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;
    box-shadow: 0px 0px 10px 0px gray;
    margin: auto;
    max-width: 1100px;
}

.inner {
    display: flex;
}

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

.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);
}

.license-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120% !important;
    margin-left: -60px;
    margin-top: 300px;
}

@media only screen and (max-width: 750px) {
    .inner {
        flex-direction: column;
    }
    .indexing {
        flex-direction: column;
    }
    .center-box {
        width: 80%;
    }
    .license-box {
        width: 110% !important;
        margin-top: 20px;
        margin-left: -20px;
    }
    .indexing-icons {
        width: 100%;
    }
    .line {
        width: 95%;
    }
    .under-indx-line-2 {
        width: 220px;
    }
}