.v1-grid {
    position: relative;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: auto;
    padding: 50px 0px;
    background-color: #1E1A1B;
}
.v1-grid__wrapper{
    width: 100%;
    height: 100%;
}
.v1-grid__row.odd-row {
    position: relative;
    display: -ms-grid;
    display: grid;
    grid-template-areas:
      "a a a a b b b c c c"
      "a a a a d d d d d d";
    -ms-grid-columns: (10%)[10];
    grid-template-columns: repeat(10, 10%);
    -ms-grid-rows: (calc(25vw - 50px))[2];
    grid-template-rows: repeat(2, calc(25vw - 50px));
}

@media(max-width: 1100px) {
  .v1-grid__row.odd-row {
grid-template-areas:
        "a a a a a b b b b b"
        "c c c c c d d d d d";
  }
}

@media(max-width: 1000px) {
  .v1-grid__row.odd-row {
/*
grid-template-areas:
        "a a a a a a a a a a"
        "a a a a a a a a a a"
        "a a a a a a a a a a"
        "b b b b b b b b b b"
        "b b b b b b b b b b"
        "c c c c c c c c c c"
        "c c c c c c c c c c"
        "d d d d d d d d d d"
        "d d d d d d d d d d";
  }
*/
    display: block;
}
}
.v1-grid__item {
    position: relative;
    overflow: hidden;
    min-height: calc(25vw - 50px);
}


.v1-grid__item.item-1 {
    grid-area: a;
}

.v1-grid__item.item-2 {
    grid-area: b;
}

.v1-grid__item.item-3 {
    grid-area: c;
}

.v1-grid__item.item-4 {
    grid-area: d;
}

.v1-grid__item-background {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 40px;
    background-position: center;
    background-size: cover;
    -webkit-transition: 1s;
    transition: 1s;
}

.v1-grid__item-background::before {
   content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
      opacity: 0.5;
    z-index: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}


@media(max-width: 1100px) {
.v1-grid__item-background {
       padding: 20px 15px;
}
}

.v1-grid__item-wrapper {
    position: relative;
    z-index: 1;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -ms-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.odd-row .item-1 .v1-grid__item-wrapper {
    border: 1px solid rgba(255, 255, 255, 0.15);
}

@media(max-width: 1100px) {
 .v1-grid__item-wrapper {
   -webkit-box-align: start;
   -ms-flex-align: start;
   align-items: flex-start;
}

  .odd-row .item-1 .v1-grid__item-wrapper {
    border: none;
}
}

.v1-grid__item:hover .v1-grid__item-background:before {
    opacity: 0.7;
}

.v1-grid__item-title {
    font-size: 30px;
    line-height: 35px;
    color: #FFFFFF;
    margin-bottom: 15px;
}

@media(max-width: 1100px) {
.v1-grid__item-title {
   font-size: 18px;
    line-height: 20px;
}
}

.v1-grid__item-description {
    position: relative;
    font-size: 16px;
    color: #FFFFFF;
    padding-bottom: 15px;
}

.v1-grid__item-description:before {
    content: '';
    position: absolute;
    top: 100%;
    right: 0px;
    left: 0px;
    width: 20px;
    height: 1px;
    margin: 0px auto;
    background-color: #ffffff;
}

@media(max-width: 1100px) {
.v1-grid__item-description {
       font-size: 14px;
}
}


.v1-grid__item-butotn {
    margin-top: 70px;
}

.v1-grid__item-butotn .button-primary:hover {
  color: #ffffff;
}

.v1-grid__item-link.cover {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.v1-grid__item-link.cover span {
    display: none;
}


@media(max-width: 800px) {
.v1-grid__item {
    margin-bottom: 20px;
}
}

/*
.v1-grid__item>img {
    position: absolute;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
}

.v1-grid__item:hover img {
    transform: scale(1.05);
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
}

.v1-grid__item-wrapper {
    position: relative;
    z-index: 2;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 40px;
}

.odd-row .item-1 .v1-grid__item-wrapper:before {
    content: '';
    position: absolute;
    width: calc(100% - 80px);
    height: calc(100% - 80px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}


.v1-grid__item-title {
    font-size: 30px;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.v1-grid__item-description {
    position: relative;
    font-size: 16px;
    color: #FFFFFF;
    padding-bottom: 15px;
}

.v1-grid__item-description:before {
    content: '';
    position: absolute;
    top: 100%;
    right: 0px;
    left: 0px;
    width: 20px;
    height: 1px;
    margin: 0px auto;
    background-color: #ffffff;
}

.v1-grid__item-butotn {}

.v1-grid__item-link.cover {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.v1-grid__item-link.cover span {
    display: none;
}*/