body {
    border-top: unset;
}

html .footer {
    margin-top: 35vh;
}

.heroBGImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.heroRow {
    height: 90vh; 
    position: relative;
}

.heroBGImage {
    width: 97.7%;
    height: 95%;
    margin: 0 auto;
    position: relative;
}

.heroBGImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom-left-radius: 64px;
    border-bottom-right-radius: 64px;
} 
 
.heroText p {
    font-family: 'Open sans', sans-serif;
    color: white;
    text-align: center;
    padding: 0 22%;
    font-size: 1.2em;
}
.heroText h1 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    text-align: center;
    color: white;
    font-size: 3.1em;
}

.yellowHR {
    width: 55%;
    height: 3px;
    margin: 0 auto;
    background: #ffc629;
    border-radius: 10px;
}



.heroText {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
}


.heroBGImage::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0,0,0,0.57);
    border-bottom-right-radius: 64px;
    border-bottom-left-radius: 64px;
}

.goDown {
    position: absolute;
    top: 81%;
    left: calc(50%);
    width: 44px;
    height: auto;
    transform: translateX(-50%);
    cursor: pointer;
    padding: 3vh;
    box-sizing: content-box;
}

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

.machineBlurbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25%;
    padding: 0 10%;
    margin-bottom: 5vh;
}


.machineBlurbImage img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: white;
    mix-blend-mode: multiply;
}

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

.cfvalueIcon {
    width: 20px;
    height: 20px;
}


.machineBlurb {
    box-shadow: 0px 0px 7px rgba(0,0,0,0.38);
    border-radius: 64px;
    transition: all 0.25s ease-in-out;
    position: relative;
    cursor: pointer;
}

.machineBlurbText p {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    color: white;
    font-weight: 600;
    font-size: 1em;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0% 10%;
    padding-left: 0%;
    display: -webkit-box;
    display: box;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-underline-offset: 4px;
}

.machineBlurbText {
    width: 80%;
    height: 64px;
    background-color: #000f9f;
    display: flex;
    align-items: center;
    padding-left: 13%;
    box-sizing: border-box;
    border-bottom-right-radius: 40px;
    border-top-left-radius: 64px;
}

.overflowed{
    text-decoration:underline dotted;
}




.cfvalueHeader {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.cfvalueHeader p {
    margin: 0;
    color: #1a1a1a;
    font-family: 'Open Sans';
    font-weight: 400;
    font-size: 0.9em;
    padding-left: 5px;
    line-height: 100%;
    height: fit-content;
    padding-bottom: 1px;
}

.blueSepparator {
    width: 95%;
    height: 3px;
    background: #000f9f;
    border-radius: 50%;
    margin: 2vh auto;
}

.machineBlurbImage {
    width: 100%;
    height: 40vh;
}

.machineBlurb::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    outline: 5px solid #000f9f;
    border-radius: 64px;
    transition: all 0.15s ease-in-out;
    opacity: 0;
    transform: scale(0.99);
    pointer-events: none;
}

.machineBlurb:hover::after{
    opacity:1;
}

.machineBlurb:hover{
    transform: scale(1.01);
}

.cfValues {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 5%;
    justify-content: center;
    align-items: flex-start;
}


.cfvalue {
    width: 49%;
}

.cfvalueIcon {
    width: 25px;
    height: 25px;
    min-width: 25px;
    min-height: 25px;
}

.cfvalueContent p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9em;
    padding-left: 25px;
    color: #000f9f;
    font-weight: 600;
}

.cfvalue  p{
    text-overflow: ellipsis;
    display: -webkit-box;
    display: box;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    text-underline-offset: 4px;
}

body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 5px;
    background: grey;
    z-index: -1;
}

.cfValues>div:last-child:nth-child(odd) {
    width: 100%;
}

.machineBlurb>a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: unset;
}

@media only screen and (max-width:1600px){
    
    .heroText p {
    padding: 0 7%;
    font-size:1em;
}

.heroText h1 {
    font-size: 2.5em;
    padding: 0 3%;
    margin: 0.2em 0em;
}

.machineBlurbs {
    grid-template-columns: repeat(3, 1fr);
}


.goDown {
    width: 29px;
}
.heroSwiperPagination {
    width: 32%!important;
}


.yellowHR {
    width: 65%;
}

.welcomeRow {
    width: 89%;
    aspect-ratio: unset;
    height: auto;
}

}

@media only screen and (max-width:950px){
    .machineBlurbs {
    display: flex;
    flex-direction: column;
}

.machineBlurbs {
    display: flex;
    flex-direction: column;
    padding: 0px 7%;
}


.machineBlurb {
    margin-bottom: 4vh;
}


.machineBlurbImage {
    height: 32vh;
}

.goDown {
    width: 29px;
}

.heroText h1 {
    font-size: 2.3em;
}

.heroText p {

    padding: 0 11%;
    font-size: 0.9em;
}

.heroText {
    width: 90%;
    top: 30%;
}

}