* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background-color: #f5f5f5 !important;
}

a {
    text-decoration: none;
    color: #000;
}

.main_header {
    /* background: red; */
    width: 100%;
    height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header {
    background: #fff;
    width: 100%;
    height: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 0 7px 2px #79797959;
    z-index: 9;
}

.logo {
    /* background: red; */
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 10px;
    font-size: 22px;
    color: #000;

    img {
        width: 50px;
    }
    b{
        margin-left: 5px;
        font-size: 25px;
    }
}

.hotline {
    /* background: red; */
    display: flex;
    flex-direction: row;
    align-items: center;
    color: #000;

    a {
        color: #000;
        margin-left: 5px;
    }
}

.roles {
    background: #134750;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 10px;
    padding: 5px 10px;
    border-radius: 5px;
    color: #fff;
}

.noticebar {
    background: rgb(255, 255, 255);
    display: flex;
    flex-direction: row;
    align-items: center;
    /* padding: 10px 0px; */
    width: 90%;
    height: 40px;
    border-radius: 0px 0px 10px 10px;
    overflow: hidden;

    b {
        background: #134750;
        font-size: 12px;
        text-align: center;
        width: 160px;
        height: 40px;
        line-height: 25px;
        font-family: sans-serif;
        color: #fff;
        line-height: 40px;
    }
}

.menus {
    /* background: red; */
    position: relative;
}

/* Hero Section */
.services {
    /* background: red; */
    width: 100%;
    height: 160px;
    position: absolute;
    z-index: 112;
    bottom: -100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service_items {
    width: 130px;
    height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    font-family: sans-serif;
    text-align: center;
    color: #000;
margin: 5px;
    span {
        background: #f5fdff;
        width: 90px;
        height: 90px;
        padding: 30px;
        border: 1px solid #134750;
        object-fit: contain;
        border-radius: 100%;
        display: block;
        display: flex;
        align-items: center;
        justify-content: center;

        img {
            width: 40px;
            font-size: 13px;
        }
    }
    p{
        margin-top: 5px;
    }
}

.show {
    display: block;
}

.hidden {
    display: none;
}

.sections {
    background: #fff;
    width: 100%;
    /* height: 180px; */
    margin-top: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: sans-serif;

    img {
        width: 60%;
    }
}

.footer {
    background: #134750;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}


.menus_roles {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;

    a {
        color: gray;
        font-size: 12px;
    }
}

@media (max-width: 700px) {
    .main_header {
        /* background: blue; */
        height: 150px;
    }

    .header {
        /* background: red; */
        flex-direction: column;
        align-items: start;
        justify-content: start;
        height: 100px;
    }

    .show {
        display: none;
    }

    .noticebar {
        flex-direction: column;
        height: 50px;

        b {
            /* background: blue; */
            height: 25px;
            width: 100%;
            line-height: 25px;
        }
    }

    .hidden {
        display: block;
        text-align: center;
    }

    .hotline {
        /* background: blue; */
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;

        a {
            font-size: 15px;
        }
    }

    .roles {
        font-size: 15px;
    }

    .services {
        height: auto;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        position: relative;
        bottom: -5px;
    }

    .sections {
        margin-top: 10px;

        img {
            width: 100%;
        }
    }

    .footer {
        /* background: red; */
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        font-size: 15px;

        p {
            text-align: center;
            color: #fff;

            a {
                color: #fff;
            }
        }
    }
}