.row2::after {
  content: "";
  clear: both;
  display: block
}
[class*="col-6"] {
  float: left;
  padding: 10px; 
  box-sizing: border-box;
}

[class*="col-8"] {
  float: left;
  padding: 10px; 
  box-sizing: border-box;
}

/* Column widths that will scale on mobile: */
.col-6 {width: 50%;}
.col-8 {width: 20%;}

@media only screen and (max-width: 768px) {
  /* For mobile phones: */
  [class*="col-6"] {
    width: 100%;
  }

  [class*="col-8"] {
    width: 40%;
  }
}

.Container3 {
  width: 100%;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.Gallery {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  line-height: 0;
}

.Gallery-item {
  display: inline-block;
  margin: 5px;
  width: 48%;
}

figure {
  margin: 0;
  position: relative;
}

figure img {
  width: 100%;
  height: auto;
}

figcaption {
  background: rgba(0, 0, 0, .5);
  position: absolute;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  bottom: 0;
  color: white;
  opacity: 0;
  height: 0;
  line-height: 1.3;
  transition: all .5s;
}

figcaption p{
  
  text-align: center;
  padding: 0 30px;
  width: 100%;
}

figcaption p:hover{
  color: #c0a799;
}

figure:hover figcaption,
figure:focus figcaption {
  opacity: 1;
  height: 100%;
}

figure:focus {
  outline: none;
}

@media screen and (max-width:960px) {
  .Gallery-item {
    width: 47%;
  }
}

@media screen and (max-width:768px) {
  .Gallery-item {
    width: 47%;
  }
}


@media screen and (max-width:480px) {
  .Gallery-item {
    width: 46%;
  }
  figcaption p{
    font-size: 62.5%;
  }
}

.btnlink {
  width: 150px;
  height: 40px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 500;
  color: #baa89b;
  background-color: #000;
  border: none;
  text-align: center;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}

.btnlink:hover {
  background-color: #baa89b;
  color: #fff;
  transform: translateY(-3px);
}

.col2 {
  display: block;
  float: left;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 1%;
  padding-left: 1%;
  min-height: 1px;
  word-break: break-all;
  *padding-right: 1% !important;
  *padding-left: 1% !important;
}
  .col2 img {
    max-width: 100%;
    height: auto;
  }

