.wrapper-aboutHistory {
    position: relative;
    overflow: hidden;
}

.about-history-link {
      width: 100%;
      display: flex;
      height: 100%;
      flex-direction: column;
}

.history-img img {
    width: 100%;
    transform: scale(1.02) translateY(0px);
    transition: transform 0.5s ease-in-out;
}

.dark-img {
    position: relative;
}

.dark-img:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(0deg, rgba(0, 10, 60, 0.4), rgba(0, 10, 60, 0.4));
}

.dark-overlay {
    position: relative;
}

.dark-overlay:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #000A3C;
    opacity:0.4;
    transition: all 0.5s ease-in-out;
}
.aboutHistory-section {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    width: 100%;
    flex-direction: column;
    height: 100%;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.aboutHistory-container{
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
}
.wrapper-aboutHistory .history-text {
    font-family: 'Paramount Vista Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 192px;
    line-height: 90%;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 40px;
}
/** Fix for Accessibility **/
.about-history-link:focus-visible .primary-btn.dark svg rect {
  fill: #fff;
}

.about-history-link:focus-visible .primary-btn.dark svg path {
  fill: #000A3C !important;
}

.about-history-link:focus-visible .external_link_icon {
  background-color: #fff;
}

.about-history-link:focus-visible .history-img img {
  transform: scale(1.02) translateY(-10px);
}

.about-history-link:focus-visible .dark-overlay:after {
  opacity: 0.65;
}
/** Fix for Accessibility **/
@media (min-width: 1025px){
    .about-history-link:hover .primary-btn.dark svg rect {
        fill: #fff;
    }
    .about-history-link:hover .primary-btn.dark svg path {
        fill: #000A3C !important;
    }
    .about-history-link:hover .external_link_icon {
        background-color: #fff;
    }
    .about-history-link .primary-btn svg rect, .about-history-link .primary-btn svg path{
        transition: all 0.5s ease-in-out;
    }
    .about-history-link:hover .history-img img {
        transform: scale(1.02) translateY(-10px);
    }

    .about-history-link:hover .dark-overlay:after {
        opacity: 0.65;
    }

}
@media (max-width: 1024px){
    .wrapper-aboutHistory .history-text {
        font-size: 96px;
        margin-bottom: 24px;
    }

}
