.bgswitcher {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: grid;
    background: #000000;
    direction: ltr;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.bgswitcher::after {
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .3;
    background: #000;
}

.bg-item {
	position: relative;
    z-index: 2;
    border-top-color: rgba(255, 255, 255, 0.4);
    border-top-width: 1px;
    border-top-style: solid;
    border-right-color: rgba(255, 255, 255, 0.4);
    border-right-width: 1px;
    border-right-style: solid;
    min-height: 80vh;
}

.bg-title {
	z-index: 4;
	position: absolute;
    top: 20%;
    left: 10%;
    font-size: 2em;
    color:#fff;
    -webkit-text-stroke-width: 0.4px;
    font-weight: bold;
    /*text-shadow: #f3f3f3 -1px 0px 10px;*/
    text-shadow: #f3f3f3 -1px 5px 20;
}

.bg-descr {
    position: absolute;
    left: 5%;
    top: 30%;
    z-index: 0;
    display: none;
    color:#fff;
    -webkit-text-stroke-width: 0.4px;
	  /*text-shadow: #f3f3f3 -1px 0px 10px;*/
	  height: 140px;
    overflow: hidden;
}

.bg-item a {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 6px;
    transform: translate(-50%,0);
    background: #000;
    padding: 5px 25px;
    color: #fff;
    text-align: center;
    display: none;
}


@media(max-width: 768px){
  
  .bg-item {
  	height: 300px;
  }

  .bg-item a {
  	width:90% !important;
  	top: 50%;
  	bottom: unset;
  }

  .bg-title {
  	bottom: unset;
  	top:10% !important;
  	font-size: 1em;
  }

  .bg-descr {
  	bottom: unset;
    top:20% !important;
    font-size: 1em;
  }

}