  .quicklinks {
    background: linear-gradient(79.39deg, #3ba9bd 24.31%, #9dd4de 88.32%), #3ba9bd;
    /* padding-top: 125px; */
    padding-bottom: 95px;
    position: relative;
    z-index: 3;
}

.quicklinks--wrapper {
    max-width: 1024px;
    margin: auto;
}

.quicklinks--below {
    margin-top: 5rem;
}

.quicklinks--top {
    border-radius: 8px;
    background-color: white;
    padding: 38px 60px;
    text-align: center;
    margin-top: -95px;
}

.quicklinks--top h2 {    
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 16px;
    margin-top: 0;
}

.quicklinks--top .content {
    font-weight: 400;
    font-size: 18px;
    max-width: 712px;
    margin: auto;
}

.quicklinks--bottom {
    margin-top: 26px;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.quicklinks--bottom::-webkit-scrollbar {
    width: 10px;
    height: 5px;
    background: rgba(255,255,255,0.2); 
}

  /* Track */
.quicklinks--bottom::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 
    border-radius: 10px;
}
   
/* Handle */
.quicklinks--bottom::-webkit-scrollbar-thumb {
background: white; 
border-radius: 10px;
}


.quicklinks--bottom a {
    display: block;
    background-color: white;
    padding: 28px 24px;
    border-radius: 8px;
    text-align: center;
    color: #2c3d4f;
    font-weight: 700;
    font-size: 24px;
    transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    text-decoration: none;
    position: relative;
}

.quicklinks--bottom .title {
    position: relative;
    max-width: max-content;
    margin: auto;
    /* white-space: nowrap; */
}

.quicklinks--bottom .title:after {
    background: none repeat scroll 0 0 transparent;
    bottom: -5px;
    content: "";
    display: block;
    height: 4px;
    left: 50%;
    position: absolute;
    background: #2c3d4f;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
    border-radius: 3px;
}

.quicklinks--bottom a:hover {
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.quicklinks--bottom a:hover .title:after {
    width: 100%;
    left: 0;
}

.quicklinks--bottom a img {
    max-width: 150px;
    margin: auto;
}

@media screen and (max-width: 1200px) {
    .quicklinks--top h2 {
        font-size: 36px;
    }
    .quicklinks--bottom a img {
        max-width: 150px;
    }
}
@media screen and (max-width: 1024px) {
    .quicklinks--bottom {
        display: block;
    }
    .quicklinks--bottom a img {
        max-width: 100%;
    }
    .quicklinks--bottom {
        overflow-x: scroll;
        overflow-y: hidden;
        white-space: nowrap;
        margin-right: -25px;
        padding-bottom: 4rem;
    }

    .quicklinks--bottom a {
        display: inline-block !important;
        vertical-align: top;
        white-space: normal;
        margin-right: 15px;
        max-width: 38%;
        overflow: hidden;
    }
}

@media screen and (max-width: 768px) {
    .quicklinks--top {
        margin-top: -20px;
        padding: 32px 26px;
    }
    .quicklinks--top h2 {
        font-size: 26px;
        line-height: initial;
    }
    .quicklinks--bottom a img {
        max-width: 100px;
    }
    .quicklinks {
        padding-bottom: 75px;
    }
    .quicklinks--bottom a {
        font-size: 16px;
    }
}
@media screen and (max-width: 480px) {
    .quicklinks--bottom a img {
        max-width: 100%;
    }
}
