.logogrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 5px;
    margin-top: 15px;
}

.logogrid.twocolumns {
    grid-template-columns: repeat(2, 1fr);
}

.logogrid.threecolumns {
    grid-template-columns: repeat(3, 1fr);
}

.logogrid.fourcolumns {
    grid-template-columns: repeat(4, 1fr);
}

.logogrid.fivecolumns {
    grid-template-columns: repeat(5, 1fr);
}

.logoitem img {
    height: 120px !important;
    width: 100% !important;
}

.hero-gallery-container img {
    width: 100%;
    object-fit: cover;
    display: flex;
    height: 100%;
}

.flextopRow {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 400px;
    overflow: hidden;
    margin-bottom: 10px;
}

.flexbottomRow {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
}

.oneAndtwo {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 25%;
    padding-right: 10px;
}

.flextopRow img {
    height: 100%;
}

.flexbottomRow,
.titleandCopy {
    height: 325px;
}

.img1,
.img2 {
    height: 200px !important;
    width: 100%;
}

.oneAndtwo img {
    width: 100%;
    height: 200px;
}

.img3,
.img4,
.img5 {
    width: 25%;
}


.titleandCopy {
    width: 40%;
    background-color: var(--primary);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.titleandCopy h1 {
    font-family: var(--font2);
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: 3px;
}

.titleandCopy p {
    color: white;
    text-transform: uppercase;
    font-family: var(--font1);
    margin: 5px 0 10px;
    /* width: 450px; */
    text-align: center;
    max-width: 100%;
    font-weight: 300;
    font-size: 32px;
}

.img6,
.img8 {
    width: 15%;
}

.img7 {
    width: 30%;
}


.imgAll {
    overflow: hidden;
    height: 100%;
}

.img1 {
    padding-bottom: 10px;
}

.img2 {
    padding-top: 10px;
}

.img3,
.img4 {
    padding-right: 10px;
}

.img6 {
    padding-left: 10px;
    padding-right: 10px;
}

.img8 {
    padding-left: 10px;
}

.titleandCopy a {
    margin-top: 20px;
}


.mobileVersion {
    display: none;
}

@media (max-width:1199px) {
    .mobileVersion {
        display: block;
    }

    .desktopVersion {
        display: none;
    }

    .slickthis {
        position: relative;
    }

    .slickthis img {
        padding: 0 5px;
        object-fit: cover;
        aspect-ratio: 4/3;
    }

    .titleandCopy {
        width: 100%;
        height: initial;
        padding: 50px 30px;
    }

    .titleandCopy p {
        font-size: 24px;
        font-weight: 700;
    }

}