header {
    width: 100%;
    border: 1px solid white;
    position: absolute;
}

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

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 .banner-area {
    background-color: #3667C9;
}

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

main .banner-text {
    max-width: 55%;
}

main .banner-text h1 {
    font-family: 'Roboto', sans-serif;
    color: white;
    font-size: 20px;
    padding: 20px 0px;
}

main .banner-text h1:hover {
    color: #C99836;
    transition: 1s;
    cursor: pointer;
}

main .banner-text p {
    color: white;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    line-height: 19px;
}   

main .banner-img {
    max-width: 40%;
}

main .banner-img img{
    max-width: 420px;
    height: 320px;
    float: right;
    border-radius: 50px;
    object-fit: cover;
}

main .card-area {
    width: 100%;
}

main .post-cards {
    width: 80%;
    position: absolute;
    top: 450px;
    right: 150px;
    display: flex;
    justify-content: space-between;
}

main .post-card {
    width: 250px;
}

main .post-card img {
    width: 250px;
    height: 200px;
    border-radius: 40px;
    object-fit: cover;
}

.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: 5px 0px;
}

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

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

main .card-btn {
    width: 110px;
    margin: 430px auto 0px;
}

main .card-btn button {
    background-color: transparent;
    border: 1px solid #3667C9;
    border-radius: 50px;
    height: 30px;
    margin: 5px;
}

main .card-btn a {
    color: #C99836;
    font-size: 13px;
    font-family: 'Roboto', sans-serif;
}

main .card-btn button:hover {
    background-color: #3667C9;
    transition: 1s;
}

main .card-btn a:hover {
    color: white;
}

main .slider-section .slider-title {
    width: 120px;
    margin: 50px auto;
}

main .slider-section h1 {
    font-family: 'Roboto', sans-serif;
    color: #C99836;
    font-size: 20px;

}

.slider-wrapper {
    position: relative;
}

.arrow {
    width: 30px;
    height: 30px;
    background-color: transparent;
    position: absolute;
    border: none;
    color: rgb(119, 118, 118);
    font-size: 40px;
    cursor: pointer;
    margin-top: 100px;
}

.arrow.arrow-left {
    left: 30px;
}

.arrow.arrow-right {
    right: 30px;   
}

.slide {
    display: flex;
    width: 100%;
    justify-content: center;
}

.slide img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 70px;
}

.dots {
    display: flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgb(119, 118, 118);
    border-radius: 50%;
    cursor: pointer;
    margin: 7px;
}

.dot .active {
    background-color: rgb(182, 181, 181);
}

main .card-btn-second {
    width: 110px;
    margin: 90px auto;
}

main .card-btn-second button {
    background-color: transparent;
    border: 1px solid #3667C9;
    border-radius: 50px;
    height: 30px;
    margin: 5px;
}

main .card-btn-second a {
    color: #C99836;
    font-size: 13px;
    font-family: 'Roboto', sans-serif;
}

main .card-btn-second button:hover {
    background-color: #3667C9;
    transition: 1s;
}

main .card-btn-second a:hover {
    color: white;
}

main .faq {
    width: 80%;
    margin: auto;
}

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

main .faq-asides {
    display: flex;
    justify-content: space-between;
}

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

.faq-asides .text {
    margin-top: 15px;
}

.faq-asides .text h4 {
    color: #73788A;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    padding: 10px 0px;
    font-weight: bold;
}

.faq-asides .text h4:hover {
    color: #3667C9;
    transition: 1s;
    cursor: pointer;
}

.faq-asides .text p {
    color: #73788A;
    font-size: 13px;
    font-family: 'Roboto', sans-serif;
    padding: 10px 0px;
}

.faq-asides .left {
    width: 45%;
}

.faq-asides .right {
    width: 45%;
}

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

@media only screen and (max-width: 1200px) {
    header .menu-aside {
        width: 45%;
    }

    main .banner-img img{
        max-width: 350px;
        height: 250px;
    }

    main .banner-text {
        max-width: 50%;
    }
    
    main .post-card {
        width: 200px;
    }
    
    main .post-card img {
        width: 200px;
        height: 150px;
    }

    main .post-cards {
        right: 135px;
    }
}

@media only screen and (max-width: 900px) {
    header nav {
        width: 85%;
    }
    
    header .logo-aside {
        width: 12%;
        border-radius: 20px;
    }

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

    header .reg-auth {
        width: 40%;
    }

    main .banner-img img{
        max-width: 300px;
        height: 200px;
        margin-top: 60px;
    }

    main .banner-text {
        max-width: 40%;
    }

    main .post-card {
        width: 180px;
    }
    
    main .post-card img {
        width: 150px;
        height: 120px;
    }

    main .post-cards {
        right: 90px;
    }
}

@media only screen and (max-width: 748px) {
    main .post-cards {
        flex-wrap: wrap;
    }

    main .card-btn {
        margin: 730px auto 0px;
    }
}

@media only screen and (max-width: 600px) {
    header nav {
        width: 90%;
    }
    
    header .logo-aside {
        width: 15%;
    }

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

    header .menu-aside li a {
        font-size: 10px;
    }

    header .reg-auth {
        width: 35%;
    }

    header .reg-auth button {
        margin: 5px;
    }

    header .reg-auth a {
        font-size: 7px;
    }

    main .banner-img img{
        max-width: 270px;
        height: 190px;
        margin-top: 60px;
    }

    main .banner-text {
        max-width: 37%;
    }

    main .post-cards {
        flex-wrap: wrap;
    }

    main .card-btn {
        margin: 730px auto 0px;
    }

}
