.pagination {
    display: flex;
    align-items: center;
}

.pagination li {
    color: #fff;
    margin: 0 1.5rem;
}

.pagination li a {
    color: #0e1113;
    padding: 0.5rem;
}

.pagination li.prev {
    width: 53px;
    height: 53px;
    border: 1px solid #042a5e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

.pagination li.prev a::after {
    content: "\f104";
    font-family: 'FontAwesome';
    display: inline-block;
}

.pagination li.next {
    width: 53px;
    height: 53px;
    border: 1px solid #042a5e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

.pagination li.next a::after {
    content: "\f105";
    font-family: 'FontAwesome';
    display: inline-block;
}

.pagination li.prev:hover {
    background: #042a5e;
    color: #fff
}

.pagination li.next:hover {
    background: #042a5e;
    color: #fff;
}

.pagination li.prev:hover a,
.pagination li.next:hover a {
    color: #fff;
}

@media (max-width:1500px) {
    .hero--home h1 {
        font-size:5rem;
    }
}



@media (max-width:1376px) {
    .hero--home h1 {
        font-size: 4.5rem
    }
}
@media (max-width:1245px) {
    .hero--home h1 {
        font-size: 4rem
    }
}

@media (max-width:979px) {
    .hero--home h1 {
        font-size: 4rem
    }
}

@media (max-width:768px) {
    .hero--home h1 {
        font-size: 3.5rem;
        line-height: 1.15;
        margin-top: 18px
    }
}


/* @media (max-width:1157.9px) {
    header .header__nav {
        width: 57%;
    }
} */

@media (max-width:1100px) {
    .hero--home h1 {
        font-size: 4rem;
    }
}

@media (max-width:900px) {
    .hero--home h1 {
        font-size: 3rem;
    }
}

@media (max-width:1024.9px) {
    header.header--sticky .header__nav>ul>li>a {
        color: #0e1113;
    }
}

@media (max-width:678.9px) {
    .detail-container .detail-wrapper {
        width: 98%;
        flex-basis: 97%;
    }
}