header {
    width: 100%;
    border: 1px solid white;
    background-color: #3667C9;
    /* position: fixed; */
}

header nav {
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0px;
}

header aside {
    display: inline-block;
}

header .logo-aside {
    width: 7%;
    height: 40px;
    background-color: white;
    border-radius: 30px;
    display: flex;
    justify-content: center;
}

nav .logo-aside img {
    width: 55px;
    height: 25px;
    margin: 5px;
}

header .menu-aside {
    width: 35%;
}

header .menu-aside ul {
    display: flex;
    justify-content: space-around;
}

header .menu-aside li a {
    color: white;
    font-size: 13px;
    font-family: 'Roboto', sans-serif;
}

header .menu-aside li a:hover {
    color: #C99836;
    transition: 1s;
}

header .menu-aside li .active {
    color: #C99836;
}

header .reg-auth {
    width: 60%;
    display: flex;
    justify-content: flex-end;
}

header .reg-auth button {
    background-color: transparent;
    border: 1px solid white;
    border-radius: 50px;
    height: 25px;
    margin: 5px;
}

header .reg-auth a {
    color: white;
    font-size: 13px;
    font-family: 'Roboto', sans-serif;
}

header .reg-auth button:hover {
    background-color: white;
    transition: 1s;
}

header .reg-auth a:hover {
    color: #C99836;
}

main .about-us {
    width: 60%;
    margin: 40px auto;
    text-align: center;
}

main .about-us h1 {
    font-family: 'Roboto', sans-serif;
    color: #C99836;
    font-size: 20px;
    padding: 20px 0px;
}

main .about-us p {
    color: #73788A;
    font-size: 13px;
    font-family: 'Roboto', sans-serif;
    text-indent: 50px;
}

main .team-section .title {
    font-family: 'Roboto', sans-serif;
    color: #C99836;
    font-size: 20px;
    padding: 20px 0px;
    margin: auto;
    width: 180px;
}

.animate {
    animation-name: bottom;
    animation-duration: 2s;
}

@keyframes bottom {
    0% {
        opacity: 0;
        transform: translateY(400px);
    }

    80% {
        transform: translateY(-50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

main .post-cards {
    width: 80%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 50px auto;
}

main .post-card {
    width: 300px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

main .post-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.post-card .card-content {
    padding: 10px;
}

.post-card .card-content h4 a {
    color: #73788A;
    font-size: 13px;
    font-family: 'Roboto', sans-serif;
}

.post-card .card-content h4 a:hover {
    color: #3667C9;
    transition: 1s;
    cursor: pointer;
}

.post-card .card-content h4 {
    padding-bottom: 5px;
}

.post-card .card-content h1 {
    padding-top: 5px;
}

.post-card .card-content h1 a:hover {
    color: #3667C9;
    transition: 1s;
    cursor: pointer;
}

.post-card .card-content h1 a {
    color: #73788A;
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
}

.post-card .card-content p {
    color: #73788A;
    font-size: 13px;
    font-family: 'Roboto', sans-serif;
    padding: 5px 0px;
}

.pagination {
    justify-content: center;
    margin-bottom: 30px;
}

.pagination .page-item a {
    color: #3667C9;
}

footer {
    background-color: #3667C9;
}

footer .footer-content {
    width:80%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding: 30px 0px;
}

footer .footer-content .footer-left {
    width: 50%;
}

footer .logo-aside {
    width: 85px;
    height: 40px;
    background-color: white;
    border-radius: 30px;
    display: flex;
    justify-content: center;
}

footer .logo-aside img {
    width: 55px;
    height: 25px;
    margin: 5px;
}

footer .footer-content .footer-left p {
    color: white;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    line-height: 19px;
    padding: 17px 0px;
}

footer .footer-content .footer-right {
    width: 40%;
    display: flex;
    justify-content: space-between;
}

.footer-content .footer-right article p {
    color: #C99836;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    padding: 10px 0px;
    font-weight: bold;
}

.footer-content .footer-right article ul {
    padding: 10px 0px;
}

.footer-content .footer-right article ul a {
    color: white;
    font-size: 13px;
    font-family: 'Roboto', sans-serif;
}

.footer-content .footer-right article ul a:hover {
    color: #C99836;
}

hr {
    width: 80%;
}

footer .copyright {
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding: 15px 0px;
}

footer .copyright .first p {
    color: white;
    font-size: 13px;
    font-family: 'Roboto', sans-serif;
}

footer .copyright .second ul {
    width: 100px;
    display: flex;
    justify-content: space-between;
} 

footer .copyright .second ul li a {
    color: white;
}

footer .copyright .second ul li a:hover {
    color: #C99836;
}
