html {
  height: 100%
  width:100%;
}
body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  color: #fff;
  font-family: helvetica;
  background: rgba(94, 24, 93, 1);
  }

h1 {
    font-family: 'Comic Neue', cursive;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 50px;
    margin: 15px 0;
}
h3 {
    text-transform: uppercase;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #660a60;
    text-align: center;
}
h5 {
    text-transform: uppercase;
    font-size: 22px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

a {
  text-decoration: none;
  -moz-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  color: #fff; }

a:hover {
  color: #03e6d6; }

.title-wrapper {
  margin: 20px 0; }

.links-wrapper {
  margin: 30px auto 0;
  width: 90%;
  position: relative;
  zoom: 1;
  overflow: hidden; }

.links-wrapper .img-bg {
    position: relative;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.links-wrapper .img-bg::before {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    content: '';
    background: #660a60;
    z-index: -1;
}
.links-wrapper .col:nth-child(2) .img-bg::before {
    width: 85%;
}

.links-wrapper .col {
    box-sizing: border-box;
    width: 33.33%;
    float: left;
    padding: 0 40px;
    cursor: pointer;
}

.links-wrapper .col:hover .img-bg {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);

}

.img-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* right: 100px;  */
    width: 200px;
}
.links-wrapper .col:nth-child(2) .img-text {
    /* right:150px; */
    /* top: 130px; */
}
.links-wrapper .col:nth-child(3) .img-text {
    /* right:150px; */
}
.img-text p {
    font-size: 18px;
}

.img-text span {
    font-size: 14px;
    margin-top: 30px;
    display: block;
}

.footer-wrapper {
  margin: 10px 0;
  font-family: 'Comic Neue', cursive;
  text-transform: uppercase;
  line-height: 25px;
}

.content {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
}

.booking-modal {
    position: fixed;
    background: rgba(255,255,255,0.7);
    top: 0; left: 0;
    width: 100%; height: 100%;
}

.modal-content {
    background: white;
    width: 400px;
    margin: 0 auto;
    border-radius: 40px;
    padding: 5px 30px 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.form-group {
    margin-bottom: 10px;
}
.control-label {
    color: #792d7d;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 100;
}
.form-control {
    width: 100%;
    height: 40px;
    padding: 15px 10px;
    box-sizing: border-box;
    border-radius: 4px;
    box-shadow: none;
    border: 1px solid #792d7d;
}

textarea.form-control {
    resize: none;
    height: 100px;
}
.btn {
    background: #792d7d;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    display: block;
    width: 100%;
    color: white;
    border-radius: 4px;
    font-size: 20px;
    padding: 10px;
    margin-top: 30px;
    cursor: pointer;
}
.close-modal {
    position: absolute;
    z-index: 1;
    top: 20px; right: 30px;
    cursor: pointer;
}
label.error {
    color: red;
    font-family: helvetica, sans-serif;
    font-weight: 100;
    margin-top: 4px;
    font-size: 10px;
    display: block;
}

.result {
    color: #000;
    text-align: center;
}
.g-recaptcha > div {
    margin: 0 auto;
}
@media (max-width: 1400px) {
    .links-wrapper {
        width: 95%;
    }
}

@media (max-width: 1100px) {
    .links-wrapper {
        width: 98%;
    }
    .links-wrapper .col {
        padding: 0 20px;
    }
}

@media (max-width: 900px) {
    .links-wrapper .col {
        padding: 0 10px;
    }
}

@media (max-width: 899px) {
    .links-wrapper .col {
        width: 100%;
        margin-bottom: 20px;
        padding-top: 0 !important;
    }
    .links-wrapper .col .img-bg::before {
        background: none;
    }
    .content {
        text-align: center;
        transform: none;
        position: static;
        margin-bottom: 30px;
    }
    h1 {
        font-size: 30px;
    }
    h5 {
        font-size: 20px;
    }
    .img-text p {
        font-size: 14px;
    }
    .img-text span {
        font-size: 12px;
    }

    .modal-content {
        width: 80%;
    }
}

