#imageGroups {
    position: relative;
    display: block;
    height: 34.58vw;
    overflow: hidden;
    width: 66.6%;
    float: left;
    margin: 0 auto;
}

.square {
    float: left;
    width: calc(45% - 20px);
    display: flex;
    margin: 60px 0px 45px;
    flex-direction: column;
    align-items: center;
}

.square:nth-of-type(even) {
    margin-left: 5%;
    margin-right: 20px;
}

.square:nth-of-type(odd) {
    margin-right: 5%;
    margin-left: 20px;
}

.seeMoreBtn {
    color: #000000;
    text-transform: uppercase;
    width: fit-content;
    font-size: 18px;
    width: -webkit-fit-content;
    padding: 0px 30px;
    width: -moz-fit-content;
    height: 40px;
    -moz-transition: background 0.3s ease-in-out;
    -webkit-transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
    -o-transition: background 0.3s ease-in-out;
    line-height: 40px;
    margin: 30px;
    border: 1px solid #000000;
}

.seeMoreBtn:hover {
    color: #ffffff;
    background-color: #000000;
}

.promoColumnImage {
    position: relative;
    display: block;
    width: 100%;
    height: 38vw;
    float: left;
    background-size: cover;
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.grayscaleImg {
    position: absolute;
    bottom: 0px;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
    /* Firefox 10+, Firefox on Android */
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray;
    /* IE 6-9 */
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.4s ease-out;
    -moz-transition: opacity 0.4s ease-out;
    -webkit-transition: opacity 0.4s ease-out;
    -o-transition: opacity 0.4s ease-out;
}

.promoColumnImage:hover .grayscaleImg {
    opacity: 1;
}

.promoWideImage {
    position: relative;
    float: left;
    width: 100%;
    height: 100%;
    margin-bottom: 30px;
    background-size: cover;
    background-position: 50% 100%;
    background-repeat: no-repeat;
    cursor: pointer;
    margin-right: 1%;
}

.fullScreenPromo {
    width: 92%;
    margin: 0 auto;
    height: auto;
    position: relative;
    display: block;
    margin-bottom: 20px;
    margin-top: 20px;
    border-radius: 16px;
}

.mobile.fullScreenPromo {
    display: none;
}

.fullScreenContainer {
    display: block;
    width: 100%;
    position: relative;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
    margin-top: 30px;
}

.promoImageColumnText {
    display: none;
    position: absolute;
    bottom: 20px;
    left: 20px;
    text-align: left;
    color: white;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 2px;
    transition: color 0.4s ease-out;
    -moz-transition: color 0.4s ease-out;
    -webkit-transition: color 0.4s ease-out;
    -o-transition: color 0.4s ease-out;
}

.bkgHovered {
    opacity: 0.8;
}

.textHovered {
    opacity: 1;
}

.rectangleContainer {
    height: 40px;
    position: relative;
    background-color: black;
    width: 80%;
    margin-left: 10%;
    display: none;
    justify-content: space-between;
    align-items: center;
    top: 90vh;
}

.rectangleContainer:hover {
    font-weight: 600;
}

.name {
    margin-left: 20px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    color: white;
}

.verMas {
    margin-right: 20px;
    color: white;
}

@media screen and (max-width: 1100px) {
    .desktop.fullScreenPromo {
        display: none;
    }

    .mobile.fullScreenPromo {
        display: block;
    }
}


@media screen and (max-width: 768px) {
    #imageGroups {
        width: 100%;
        height: fit-content;
        float: none;
        margin-bottom: 0px;
    }

    .square {
        width: 90%;
        margin: 0px;
    }

    .square:nth-of-type(even) {
        margin-right: 0px;
        margin-bottom: 4px;
    }

    .square:nth-of-type(odd) {
        margin-left: 5%;
        margin-bottom: 15px;
    }

    .seeMoreBtn {
        margin: 15px;

        padding: 0px 20px;

        height: 30px;

        line-height: 30px;

        font-size: 13px;
    }

    .promoColumnImage {
        width: 100%;
        height: 80vw;
        margin: 0 auto;
        display: block;
        float: none;
        margin-bottom: 0px;
        margin-top: 0px;
    }

    .promoWideImage {
        width: 100%;
        height: 83vw;
        margin-left: 0px;
        margin-right: 0%;
        display: block;
        margin-bottom: 0px;
    }

    .promoWideImage:nth-child(odd) {
        margin-right: 0px;
    }

    .promoImageColumnText {
        font-size: 17px;
        left: 15px;
        bottom: 15px;
    }

    .promoColumnImage .promoImageColumnText {
        font-size: 25px;
    }

    .fullScreenContainer {
        width: 100%;
        margin: 0px auto;
    }

    .rectangleContainer {
        height: 40px;
        position: sticky;
        background-color: black;
        width: 80%;
        margin-left: 10%;
        display: none;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }

    .name {
        margin-left: 15px;
        font-size: 13px;
    }

    .verMas {
        font-size: 13px;
    }

    .fullScreenPromo {
        margin-top: 40px;
        margin-bottom: 40px;
    }
}