.logo {
    display: flex;
    max-width: 80rem;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.logo img {
    vertical-align: middle;
}

.logo button {
    display: none;
}

@media screen and (max-width: 75rem) {
    .logo {
        justify-content: space-between;
        padding: 0;
    }

    .logo a:first-child :last-child {
        display: none;
    }

    .logo a:last-of-type {
        display: none;
    }

    .logo button {
        display: flex;
        flex-direction: column;
        background-color: #fff;
        border: none;
        height: min-content;
        align-self: center;
        cursor: pointer;
    }

    .logo button span {
        border: 1px solid #ccc;
        width: 2rem;
        margin: .3rem;
    }
}

.nav {
    background-image: linear-gradient(to right, rgb(19, 81, 143), rgba(39, 134, 230, 1));
}

.nav ul {
    display: flex;
    max-width: 80rem;
}

.nav ul li {
    flex: 1 0 auto;
    text-align: center;
}

.nav ul li a {
    color: white;
    padding: 0.7rem 0;
    font-size: 1.1rem;
    line-height: 1.5;
}

@media screen and (max-width:75rem) {
    .nav {
        background-image: none;
        position: relative;
    }

    .nav ul {
        background-image: linear-gradient(100deg, rgba(0, 104, 222, 0.9), rgba(0, 147, 222, .6));
        flex-direction: column;
        position: absolute;
        width: 70%;
        left: -100%;
        height: 100vh;
        transition: left 600ms linear;
    }

    .nav ul li {
        flex: 0 0 auto;
    }
}

.banner {
    background-image: url(../images/img44.jpg);
    text-align: center;
    margin-bottom: 5rem;
    background-position: center;
}

.banner .layout {
    height: 30rem;
    display: flex;
    margin: 0 auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,.2);
}

.banner h1 {
    font-size: 2.5rem;
    color: white;
}

.banner h2 {
    color: white;
    font-size: 1.5rem;
}

@media screen and (max-width: 75rem) {
    .banner {
        margin-bottom: 2rem;
        background-position: 85% 10%;
    }

}

.content{
    width: 80rem;
    margin: 0 auto;
    min-height: 60rem;
    margin-bottom: 3rem;
    color: #333;
}
.content .title{
    line-height: 2;
    border-bottom: 2px solid #e1e1e1;
}
.content .title h2{
    font-weight: 600;
    font-size: 2rem;
}
.content .title span{
    font-size: 1.1rem;
}
.content .main{
    padding: 1rem 0;
    font-size: 1.3rem;
    line-height: 2.5;
}
.content .main p{
    margin-bottom: 1em;
    font-size: 1.2rem;
    line-height: 2;
}
@media screen and (max-width: 75rem){
    .content{
        width: 100%;
        padding: 0 .5rem;
    }
    .content .title{
        line-height: 1.5;
    }
    .content .title h2{
        font-size: 1.5rem;
    }
    .content .title span{
        font-size: 1rem;
    }
    .content .main{
        font-size: 1.1rem;
    }
    .content .main p{
        margin-bottom: 0;
        font-size: 1rem;
    }
}

.pagination{
    width: 80rem;
    margin: 0 auto;
    display: flex;
    margin-bottom: 3rem;
}
.pagination span{
    flex: 1 0 auto;
}
.pagination a{
    color: #333;
}
@media screen and (max-width: 75rem){
    .pagination{
        width: 100%;
        flex-direction: column;
    }
    .pagination span{
        line-height: 2;
    }
}

#footer {
    background-image: linear-gradient(45deg, rgb(19, 81, 143) 0%, rgba(39, 134, 230, 1) 100%);
}

@media screen and (max-width: 75rem) {
    #news .layout {
        width: 100%;
        padding: 0 .5rem;
        flex-wrap: wrap;

    }

    #news .newsL {
        width: 100%;
    }
}

#footer .layout {
    width: 80rem;
    padding: 2rem 0;
}

#footer ul.nav {
    display: flex;
    background-color: rgba(255, 255, 255, 0.1);
}

#footer ul.nav li {
    flex: 1 0 auto;
    text-align: center;
}

#footer ul.nav li a {
    color: white;
    display: block;
    padding: 0.5rem 1rem;
}

#footer .info {
    display: flex;
    align-items: center;
    margin: 3rem 0;
    justify-content: space-between;
}

#footer .info img {
    height: fit-content;
}

#footer .info>div:last-child {
    color: #fff;
    flex-basis: 40%;
}

#footer .info span {
    display: block;
    line-height: 2;
}

#footer .info span:first-child {
    font-size: 2rem;
    font-family: "al_M";
}

#footer .hmsicp {
    text-align: center;
}

#footer .hmsicp a {
    color: #fff;
}

@media screen and (max-width: 75rem) {
    #footer .layout {
        width: 100%;
        box-sizing: border-box;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    #footer ul.nav {
        display: none;
    }

    #footer .info {
        flex-direction: column;
        text-align: center;
    }

    #footer .info img:first-child {
        display: none;
    }

    #footer .info span:first-child {
        visibility: hidden;
    }
}