.light-blue-bar::before {
    content: "";
    position: absolute;          /* fixed to viewport so it spans the screen */
    top: 0;
    left: 50%;                /* start at the horizontal center */
    transform: translateX(-50%); /* shift back by half its width */
    width: 100vw;             /* span entire viewport width */
    min-width: 1250px;
    height: 100%;             /* or desired height */
    z-index: -1;
    background-color: #123e69;
    clip-path: polygon(0 0px, 100% 0px, 100% 100%, 50% calc(100% - 40px), 0 100%);
}

.light-blue-bar::after {
    content: "";
    position: absolute;          /* fixed to viewport so it spans the screen */
    top: 0;
    left: 50%;                /* start at the horizontal center */
    transform: translateX(-50%); /* shift back by half its width */
    width: 100vw;             /* span entire viewport width */
    min-width: 1250px;
    height: 100%;             /* or desired height */
    z-index: -1;
    background-color: #7898b6;
    clip-path: polygon(
        0 100%,
        50% calc(100% - 80px),
        100% 100%,
        50% calc(100% - 40px),
        0 100%
    );
}

.blue-bar::before {
    clip-path: polygon(0 40px, 50% 0px, 100% 40px, 100% 100%, 0 100%);
}

.blue-bar {
    padding-top: 70px;
}
















.listed-expert {
    width: calc(1250px / 3);
    text-align: center;
    overflow: hidden;
    transition: height 0.3s ease;
    height: 484px;
    margin-bottom: calc((1250px / 3) - 380px);
}

.listed-expert-bottom {
    text-align: left;
    transition: 0.75s ease-in-out;
    width: 381px;
    height: 104px;
    background-color: #123e69;
    transform: translate(calc(((1250px / 3) - 380px)/2 - 0.5px), -4px);
}

.listed-expert-bottom h2 {
    font-size:45px;
    font-weight:normal;
    color:#ffffff;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    margin-bottom:0px;
    margin-left: 30px;
    margin-right: 30px;
    line-height: 1;
    max-height: 104px;
    margin-top: 28px;
    max-width: 380px;
    display: inline-block;
}

.listed-expert-bottom h3 {
    transition-timing-function: linear;
    transition-duration: 0.25s;
    font-size:25px;
    font-weight:normal;
    color:#cecece;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    margin: 30px;
    line-height: 1;
    display: inline-block;
}

.listed-expert:hover .listed-expert-bottom {
    position: relative;
    transform: translate(calc(((1250px / 3) - 380px)/2 - 0.5px), -384px);
    height: 484px;
}

.listed-expert:hover {
    cursor: pointer;
}

.listed-expert-bottom .breaks {
    width: 250px;
    height: 3px;
    background-color: #1e77d1; 
    border-color: #1e77d1; 
    border-radius: 3px; 
    border-width: 2px;
    margin: 0;
}

.listed-expert-bottom a h3 {
    margin-bottom: 25px;
    color:#cecece;
    transition-timing-function: linear;
    transition-duration: 0.25s;
}

.listed-expert-bottom a img {
    width: 30px; 
    height: 30px; 
    filter: brightness(0.808);
    transition-timing-function: linear;
    transition-duration: 0.25s;
    transform: translate(30px, 7.5px);
}

.listed-expert-bottom a:hover h3 {
    color: white;
    transform: scale(1.05);
}

.listed-expert-bottom a:hover img {
    filter: brightness(1);
    transform: scale(1.05) translate(28.75px, 6.875px);
}

.learn-more-text h3 {
    transition-duration: 0.5s;
    transition: cubic-bezier();
}

.learn-more-text h3 {
    transition-duration: 0.2s;
    transition: cubic-bezier();
    color:#f00;
}

.learn-more-text:hover h3 {
    filter: brightness(2);
}

.learn-more-text:hover .arrows {
    transform: translate(10px, 0);
}