@keyframes marquee {
    from {
        transform: translateX(100%)
    }

    to {
        transform: translateX(-100%)
    }
}

@keyframes marquee2 {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-200%)
    }
}



.heroRow {
    height: 89vh;
}

.heroImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0% 32%;
}

.heroImg {
    width: 100%;
    height: 100%;
    position: relative;
}

.heroText {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.heroText h1 {
    font-family: 'Axiforma';
    color: white;
    text-align: center;
    font-size: 3.2em;
}

.heroText h1 strong {
    font-weight: 900;
}

.heroText p {
    font-family: 'Axiforma';
    color: white;
    padding: 0 10%;
    text-align: center;
    font-size: 1.4em;
}

.heroText a {
    width: fit-content;
    margin: 0 auto;
    text-align: center;
    display: block;
    transform: translateY(30px);
    color: white;
    font-family: 'Axiforma';
    background-color: #162d3e;
    padding: 10px 20px;
    border-radius: 30px;
}

.servicesRow {
    background-color: #162d3e;
    padding-top: 20vh;
}

.servicesBlurbs {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 0 6%;
    box-sizing: border-box;
    justify-content: space-between;
}


.serviceBlurb {
    width: 37%;
    position: relative;
}


.serviceBlurb>a {
    display: block;
    width: 100%;
    height: 100%;
}

.serviceBlurbImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.serviceBlurb.shortBlurb {
    width: 19%;
}


.serviceBlurbImage {
    width: 100%;
    height: 50vh;
    border-radius: 25px;
    border: 3px solid #ff8b00;
    overflow: hidden;
    position: relative;
}


.serviceBlurbText {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%,-100%);
    width: 65%;
    padding-bottom: 5vh;
}


.shortBlurb .serviceBlurbText{
    width:90%;
}

.serviceBlurbText h3 {
    color: #ff8b00;
    font-family: 'Axiforma';
    font-size: 1.5em;
    text-align: center;
    margin: 5px 0;
}


.serviceBlurbText p {
    color: white;
    font-family: 'Axiforma';
    font-size: 1em;
    text-align: center;
    margin: unset;
    padding: 0 13%;
}

.serviceBlurbImage::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.36;
}

.shortBlurb .serviceBlurbText p {
    padding:unset;
}

.servicesRow>h2 {
    font-family: 'Axiforma';
    color: white;
    text-align: center;
    margin: 7% auto;
    margin-top: unset;
    font-size: 2.1em;
}

.servicesRow>h2>strong {
    color: #ff8b00;
}


.servicesCTALogo svg {
    width: 100%;
    height: 100%;
}

.servicesCTA {
    width: fit-content;
    height: fit-content;
    margin-left: auto;
    padding-right: 6%;
    margin-top: 30px;
}

.servicesCTA a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #ff8b00;
    border-radius: 50px;
    padding: 11px 21px;
    font-size: 1.1em;
}


.servicesCTALogo {
    width: 15px;
    height: 15px;
}

.servicesCTA p {
    font-family: 'Axiforma';
    font-style: italic;
    color: white;
    white-space: nowrap;
    text-wrap: nowrap;
    padding-right: 20px;
    margin: unset;
}


.shortRow {
    background-color: #162d3e;
    padding-top: 13vh;
}



.shortRow>h2 {
    color: #ff8b00;
    font-family: 'Axiforma';
    font-weight: 800;
    text-align: center;
    font-size: 2.3em;
}


.partner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.partnersMarquee {
    display: flex;
    flex-direction: row;
    background-color: white;
    border-top: 6px solid #ff8b00;
    border-bottom: 6px solid #ff8b00;
    height: 15vh;
    width: 214vw;
}


.partner {
    padding: 27px 30px;
    width: 14.5%;
}

.partnersMarquee>div {
    display: flex;
    flex-direction: row;
    width: 50%;
}

.partnersMarquee1{
    animation: 60s linear -25s infinite marquee;
}

.partnersMarquee2 {
    animation: 60s linear 5s infinite marquee2;
}

