.most-popular-categories ul {
    list-style: none;
    margin: 0;
    padding: 0;
    column-count: 3;
    column-gap: 2rem;
    width: 100%
}

@media only screen and (max-width: 940px) {
    .most-popular-categories ul {
        column-count: 2
    }
}

@media only screen and (max-width: 500px) {
    .most-popular-categories ul {
        column-count: 2
    }
}

@media screen and (max-width:576px) {
    .btn-group {
      display: flex;
      flex-direction: column;
    }
  }

.most-popular-categories ul li a {
    font-size: 1.4rem;
    color: #203758;
    text-decoration: none
}

.most-popular-categories ul li a:hover {
    color: #203758
}

.most-popular-categories ul li a b {
    color: black
}

.most-popular-categories ul li a b:hover {
    color: #0086ff
}

.most-popular-categories ul li.active {
    position: relative
}

.most-popular-categories ul li.active a {
    color: #203758
}

.most-popular-categories ul li.active::before {
    content: "";
    position: absolute;
    width: .6rem;
    height: .6rem;
    left: -1.4rem;
    top: 50%;
    border-radius: 50%;
    transform: translateY(-50%);
    background-color: #0086ff
}

.most-popular-categories ul li:not(:last-child) {
    margin-bottom: 1.5rem
}

.most-popular-categories ul .cta {
    display: flex;
    align-items: flex-end
}

section.articles .slider {
    margin-top: 2rem
}

section.articles .item {
    display: flex;
    border-radius: 5px;
    background-color: #fff;
    overflow: hidden
}

section.articles .item .date {
    display: flex;
    align-items: center;
    color: #8d96a3;
    font-weight: 700
}

section.articles .item .date svg {
    width: 1.3rem;
    height: 1.3rem;
    margin-right: .7rem;
    fill: #6ab0ba
}

section.articles .item .title {
    line-height: 2.6rem;
    font-size: 1.6rem;
    font-weight: 600;
    color: #203758
}

section.articles .item .img {
    height: 100%;
    background-size: cover;
    background-position: center center
}

section.articles .item .description {
    line-height: 2.6rem;
    font-size: 1.6rem;
    color: #8d96a3
}

section.articles .item a {
    margin-left: auto
}

@media only screen and (max-width: 650px) {
    section.articles .item a {
        margin-left: 0 !important;
        padding-left: 0;
        justify-content: start
    }
}

section.articles .item.main {
    display: grid;
    grid-template-columns: 2fr 2fr
}

@media only screen and (max-width: 500px) {
    section.articles .item.main {
        grid-template-columns: 1fr
    }
}

@media only screen and (max-width: 500px) {
    section.articles .item.main .img {
        height: 26rem
    }
}

section.articles .item.main .content {
    display: flex;
    flex-direction: column;
    padding: 2.5rem 3.6rem
}

@media only screen and (max-width: 750px) {
    section.articles .item.main .content {
        padding: 2rem 2rem
    }
}

section.articles .item.main .content .title {
    margin-top: 2rem;
    margin-bottom: 2rem
}

@media only screen and (max-width: 750px) {
    section.articles .item.main .content .title {
        margin-top: 1rem;
        margin-bottom: 1rem
    }
}

section.articles .item:not(.main) {
    display: flex;
    flex-direction: column
}

@media only screen and (max-width: 420px) {
    section.articles .item:not(.main) {
        grid-template-columns: 1.5fr 2fr
    }
}

@media only screen and (max-width: 400px) {
    section.articles .item:not(.main) {
        grid-template-columns: 1fr
    }
}

section.articles .item:not(.main) .img {
    min-height: 12.1rem
}

@media only screen and (max-width: 650px) {
    section.articles .item:not(.main) .img {
        display: block
    }
}

section.articles .item:not(.main) .content {
    display: flex;
    flex-direction: column;
    padding: 1.5rem
}

section.articles .item:not(.main) .content .title {
    margin-top: 1.5rem
}

@media only screen and (max-width: 750px) {
    section.articles .item:not(.main) .content .title {
        line-height: 2.2rem;
        font-size: 1.5rem
    }
}

@media only screen and (max-width: 700px) {
    section.articles .item:not(.main) .content .title {
        line-height: 1.8rem;
        font-size: 1.4rem
    }
}

@media only screen and (max-width: 750px) {
    section.articles .item:not(.main) .content a {
        margin-right: auto
    }
}

section.fresh-companies h3 {
    margin-top: 3.5rem;
    margin-bottom: 2rem
}

section.fresh-companies .card {
    padding: 2rem;
    align-items: start
}

@media only screen and (max-width: 550px) {
    section.fresh-companies .card {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: 1fr 1fr auto
    }
}

@media only screen and (max-width: 550px) {
    section.fresh-companies .card img {
        grid-column: 1/2;
        grid-row: span 2
    }
}

section.fresh-companies .card .title {
    color: #203758;
    font-weight: 700;
    font-size: 1.6rem;
    margin-top: 2rem;
    /*margin: 0 auto;*/
}

section.fresh-companies .card .code {
    color: #203758;
    font-size: 1rem;
    /*margin: 0 auto;*/
}

section.fresh-companies .card .address {
    color: #203758;
    font-size: 1rem;
    /*margin: 0 auto;*/
}

@media only screen and (max-width: 550px) {
    section.fresh-companies .card .title {
        grid-column: 2/3;
        grid-row: 1/2;
        margin-top: auto
    }

    section.fresh-companies .card .code {
        display: none;
    }

    section.fresh-companies .card .address {
        display: none;
    }
}

section.fresh-companies .card .description {
    width: 100%;
    color: #8d96a3;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: 1.4rem
}

@media only screen and (max-width: 550px) {
    section.fresh-companies .card .description {
        white-space: normal;
        grid-column: span 2;
        grid-row: 3/4;
        margin-bottom: auto
    }
}

section.fresh-companies .card .date {
    display: flex;
    align-items: center;
    color: #8d96a3;
    margin-bottom: 1.5rem
}

@media only screen and (max-width: 550px) {
    section.fresh-companies .card .date {
        grid-column: 2/3;
        grid-row: 2/3
    }
}

section.fresh-companies .card .date svg {
    width: 1.3rem;
    height: 1.3rem;
    fill: #6ab0ba;
    margin-right: 1rem
}

section.fresh-companies .card .btn {
    align-self: stretch;
    margin-top: 15px;
}

@media only screen and (max-width: 550px) {
    section.fresh-companies .card .btn {
        grid-row: span 3
    }
}

@media only screen and (max-width: 400px) {
    section.fresh-companies .card .btn {
        grid-row: auto;
        grid-column: auto;
        margin-top: 1.5rem
    }
}

section.reviews h3 {
    margin-top: 3.5rem;
    margin-bottom: 2rem
}

section.reviews .list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2rem
}

@media only screen and (max-width: 700px) {
    section.reviews .list {
        grid-template-columns: 1fr
    }
}

section.reviews .card {
    padding: 2rem;
    position: relative
}

@media only screen and (max-width: 700px) {
    section.reviews .card {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: min-content 1fr auto;
        grid-column-gap: 5rem
    }
}

@media only screen and (max-width: 700px) {
    section.reviews .card {
        grid-template-columns: 1fr
    }
}

section.reviews .card .quotes-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 2rem;
    height: 2rem;
    fill: rgba(0, 0, 0, .04)
}

section.reviews .title {
    color: #203758;
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 2rem
}

@media only screen and (max-width: 700px) {
    section.reviews .title {
        grid-column: 1/2;
        grid-row: 1/2;
        margin-bottom: 0
    }
}

@media only screen and (max-width: 500px) {
    section.reviews .title {
        margin-bottom: 1rem
    }
}

section.reviews blockquote {
    font-style: italic;
    font-size: 1.3rem;
    color: #8d96a3;
    line-height: 2.2rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical
}

@media only screen and (max-width: 700px) {
    section.reviews blockquote {
        grid-column: 2/3;
        grid-row: span 2;
        padding-right: 2rem
    }
}

@media only screen and (max-width: 700px) {
    section.reviews blockquote {
        grid-column: 1/2;
        grid-row: 2/3
    }
}

@media only screen and (max-width: 400px) {
    section.reviews blockquote {
        -webkit-line-clamp: 5
    }
}

section.reviews .date {
    display: flex;
    align-items: center;
    color: #8d96a3;
    margin-bottom: 1.5rem
}

@media only screen and (max-width: 700px) {
    section.reviews .date {
        align-self: start;
        grid-column: 1/2;
        grid-row: 2/3;
        margin-bottom: 0
    }
}

@media only screen and (max-width: 700px) {
    section.reviews .date {
        grid-column: 1/2;
        grid-row: 3/4
    }
}

section.reviews .date svg {
    width: 1.3rem;
    height: 1.3rem;
    fill: #6ab0ba;
    margin-right: 1rem
}

section.reviews .cta {
    grid-column: 1/-1
}

section.reviews .cta .btn {
    padding: 0
}

section.reviews .cta .btn.user {
    color: #0086ff
}

section.reviews .cta .btn.user:hover {
    color: #8d96a3
}

.content {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    grid-gap: 2rem
}

@media only screen and (max-width: 1240px) {
    .content {
        grid-template-columns: 1fr
    }
}

.content aside {
    display: grid;
    grid-gap: 2rem;
    align-content: start
}

@media only screen and (max-width: 1240px) {
    .content aside {
        grid-row: 1/2;
        grid-template-columns: repeat(2, 1fr)
    }
}

@media only screen and (max-width: 740px) {
    .content aside {
        grid-template-columns: 1fr
    }
}

.content .slider {
    margin: 0 -1rem
}

.content .slick-slide {
    margin: 0 1rem
}

@media only screen and (max-width: 500px) {
    .content .slick-slide {
        opacity: .5;
        transition: opacity .2s
    }
}

.content .slick-active {
    opacity: 1
}

.content .slick-next:before, .content .slick-prev:before {
    color: #000
}

.content .slick-prev {
    left: 0
}

.content .slick-next {
    right: 0
}

.fab .fas{
    color: #0186FF;
    font-size: 28px;
    padding-right: 10px;
}