/* Collective virtual tour */

.new-section .vt-section-content{
  max-width: 1350px;
  margin: 0 auto;
  padding-bottom: 20px;
}
.new-section .vr-tour-container {
  max-width: 1350px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vr-tour-container .vt-img-wrapper {
  width: 100%;
  padding: 15px;
  text-align: center;
}
.vr-tour-container .vt-img-wrapper img {
  margin: 0 auto;
  max-width: 100%;
  height: 254px;
}
.vr-tour-container .vt-info-wrapper {
  width: 100%;
  padding: 15px;
}
.new-section .vr-tour-container .single-virtual-tour {
   border: 1px solid; 
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.vr-tour-container h3.vt-title {
  font-size: 1.112rem;
  text-transform: uppercase;
  margin-bottom: 0;
  font-weight: 500;
}
.vr-tour-container .vt-flp-info {
  margin-bottom: 16px;
}
.vr-tour-container .vt-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
}
.vr-tour-container .vt-btns .btn {
  font-size: 0.875rem !important;
  line-height: 1;
  padding: 20px 18px;
  border-radius: 0;
  font-weight: 600 !important;
  border-radius: 0;
  display: flex;
  gap: 4px;
}

.vr-tour-container .vt-btns .btn i {
     font-size: 0.8rem;
    font-weight: 600;
    line-height: 1;
    position: relative;
    top: 2px;
}

@media screen and (max-width: 992px) {
  .new-section .vr-tour-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
   .new-section .vr-tour-container {
   gap: 12px;
       grid-template-columns: repeat(1, 1fr);
  }
  .new-section .vr-tour-container .single-virtual-tour{
    flex-direction: column;
  }
  .vr-tour-container .vt-img-wrapper{
    width: 100%;
    padding:14px;
  }
  .vr-tour-container .vt-img-wrapper img{
    height: 196px;
  }
  .vr-tour-container .vt-info-wrapper{
    width: 100%;
    padding: 12px;
  }
  .vr-tour-container .vt-flp-info{
    margin-bottom: 20px;
  }
  .vr-tour-container .vt-btns .btn{
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 6px;
    align-items: center;
  }
  .vr-tour-container h3.vt-title{
    font-size: 1.5rem;
  }
  .vr-tour-container .vt-btns .btn{
    font-size: 1rem !important;
  }
}
