section.page-banner {
  height: 600px;
  background-color: blue;
  background-image: url(../images/virtualtour-bg.jpg);
  background-size: cover;
}

section.menu-option ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

section.menu-option ul li {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  cursor: pointer;
  text-align: center;
  padding: 1.5rem 0;
  font-family: "Rubik Bold";
  border: 1px solid #000;
}

section.menu-option ul li.active {
  background-color: #083038;
  color: #fff;
  border-color: #fff;
}

section.vtour-content {
  width: 95%;
  margin: auto !important;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 2rem;
          column-gap: 2rem;
  row-gap: 2rem;
  margin-top: 2rem !important;
  padding-bottom: 2rem !important;
}

section.vtour-content > div {
  background-color: #f5f5f5;
  text-align: center;
  padding: 2rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

section.vtour-content > div.australia {
  display: none;
}

section.vtour-content > div > picture img {
  width: 70%;
  margin: auto;
}

section.vtour-content > div > a {
  display: block;
  width: 150px;
  text-decoration: none;
  margin: auto;
  background-color: #ccc;
  color: #fff;
  font-family: "Rubik";
  padding: 0.5rem 2rem;
  border-radius: 20px;
}

@media screen and (max-width: 768px) {
  section.vtour-content {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 550px) {
  section.vtour-content a {
    font-size: 3vw;
  }
}
/*# sourceMappingURL=virtual-tours.css.map */