* {
  margin: 0px;
  padding: 0px;
}

[v-cloak] {
  display: none;
}

html,
body {
  width: 100%;
}

body::-webkit-scrollbar {
  width: 0px;
}

body {
  --font-regular: "Roboto-Regular";
  --font-light: "Roboto-Light";
  --font-lightitalic: "Roboto-LightItalic";
  --font-thin: "Roboto-Thin";

  --font-beauty: "Borest-Regular";

  --text-normal: 12px;
  --line-height-normal: 24px;
  --letter-spacing-normal: 0.08em;
  
  --text-big: 24px;
  --text-notbig: 22px;
  --line-height-big: 36px;

  --color-text: #fafafa;
  --color-text-invert: #000;

  --color-bg: #000;
  --color-bg-white: #fafafa;

  --padding-lr: 40px;
}

.main {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;

  font-family: var(--font-light);
  color: var(--color-text);

  font-size: var(--text-normal);
  line-height: var(--line-height-normal);
  letter-spacing: var(--letter-spacing-normal);

  background-color: var(--color-bg);

  padding: 0px var(--padding-lr);
  box-sizing: border-box;
}

.white-page{
  display: none;
  width: 100%;
  height: 100vh;
  background-color: var(--color-bg);
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 1000;
}

main {
  width: 100%;
  padding: 80px 0px 50px 0px;
}

a {
  color: inherit;
  text-decoration: inherit;
  transition: opacity 0.2s;
  cursor: pointer !important;
  position: relative;
}

strong {
  font-weight: normal;
}

p {
  line-height: var(--line-height-normal);
  margin-bottom: var(--line-height-normal);
}

p:last-of-type {
  margin-bottom: 0px;
}

ul,
li {
  list-style: none;
  display: inline-block;
}

.mobile-only,
.mobile-menu,
.hidden-gallery,
.hidden-line {
  display: none;
}

button,
select,
input {
  background: none;
  border: none;
  font-family: inherit;
  font-size: inherit;
  text-transform: inherit;
  box-sizing: border-box;
  transition: all 0.2s;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0px !important;
}

input {
  cursor: initial;
}

input::placeholder {
  color: inherit;
}

button:active,
select:active,
input:active,
button:focus,
select:focus,
input:focus {
  outline: none;
}

h1,
h2,
h3,
h4 {
  font-weight: inherit;
  font-size: inherit;
}

img, video {
  width: 100%;
  box-sizing: border-box;
}


strong{
  font-family: var(--font-regular);
  font-weight: normal;
}



.newsletter{
  position: relative;
  z-index: 100;
}

.newsletter input{
  display: inline-block;
  font-family: var(--font-light);
  line-height: var(--line-height-normal);
  letter-spacing: var(--letter-spacing-normal);
  color: var(--color-text);
  width: 100%;
}

.newsletter input::placeholder{
  font-family: var(--font-light);
  font-size: var(--text-normal);
  line-height: var(--line-height-normal);
  letter-spacing: var(--letter-spacing-normal);
  color: var(--color-text);
}

.newsletter::before{
  position: absolute;
  content: '';
  height: 1px;
  width: calc(100% - 2px);
  bottom: -2px;
  left: 0px;
  background-color: var(--color-text);
}

.newsletter button{
  display: inline-block;
  position: absolute;
  right: 0px;
  bottom: 6px;
  color: var(--color-text);
}

.newsletter input:focus::placeholder{
  opacity: 0;
}

.newsletter-checkbox form{
  display: none;
  position: relative;
  width: 220px;
}

.newsletter-checkbox-text{
  width: 220px;
  display: inline-block;
}

.newsletter-checkbox-text:hover{
  cursor: pointer;
}

.newsletter-checkbox {
  width: 220px;
}

.newsletter-checkbox>input {
  position: absolute;
  z-index: -1;
  opacity: 0;
  margin: 0px;
}

.newsletter-checkbox>input:checked + .newsletter-checkbox-text {
  display: none;
}

.newsletter-white-page{
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 99;
  width: 100%;
  height: 100vh;
  background-color: var(--color-bg);
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.2s;
}

.newsletter-checkbox>input:checked ~ form {
  display: inline-block;
}

.newsletter-checkbox>input:checked ~ .newsletter-white-page {
  transform: translateY(0px);
  opacity: 0.2;
}

.newsletter-thanks{
  display: none;
  text-align: right;
  width: 220px;
}

.newsletter input:-webkit-autofill,
.newsletter input:-webkit-autofill:hover, 
.newsletter input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--color-text);
  -webkit-box-shadow: 0 0 0px 1000px #000 inset;
  transition: background-color 5000s ease-in-out 0s;
}


.home-bg{
  display: inline-block;
  width: 100%;
  object-fit: cover;
}


.image-rotator{
  position: relative;
  /* height: 100vh; */
  font-size: 0px;
  line-height: 0px;
}

.image-rotator-item{
  position: absolute;
  left: 0px;
  top: 0px;
  transition: opacity 0.7s;
  opacity: 0;
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
}

.image-rotator-item.current{
  position: static;
  padding: 0px;
  opacity: 1;
}

button.disabled{
  opacity: 0.7;
  pointer-events: none;
}


header{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  text-transform: uppercase;
  padding: var(--line-height-normal) 0px;
  position: sticky;
  top: 0px;
  z-index: 100;
  background-color: var(--color-bg);
  line-height: initial;
}

.right-side{
  text-align: right;
  display: flex;
  justify-content: flex-end;
}

footer{
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-transform: uppercase;
  margin-top: auto;
  padding: var(--line-height-normal) 0px;
}

.menu, header .right-side{
  word-spacing: 30px;
}

.menu a, header .right-side a, .copyright a, .newsletter-checkbox-text a{
  word-spacing: initial;
  position: relative;
}

.menu a:hover::after, header .right-side a:hover::after, .copyright a:hover::after, .newsletter-checkbox-text a:hover::after{
  content: '';
  position: absolute;
  bottom: -5px;
  left: 1px;
  width: calc(100% - 2px);
  height: 1px;
  background-color: var(--color-text);
}

#book-a-table, #ig-link {
  margin-right: 30px;
  position: relative;
  display: inline-block;
}
#book-a-table:hover::after, #ig-link:hover::after {
  bottom: 5px;
}

#booking {
  position: relative;
}

#booking::after{
  content: '';
  position: absolute;
  bottom: 5px;
  left: 1px;
  width: calc(100% - 2px);
  height: 1px;
  background-color: var(--color-text);
}

.home-text{
  text-align: center;
  padding-top: 170px;
}

.home-text p{
  display: inline-block;
  max-width: 790px;
  font-size: var(--text-big);
  line-height: var(--line-height-big);
  font-family: var(--font-beauty);
}

.logo{
  display: inline-block;
  content: url('../img/TWH_LOGO_SHORT.svg');
  height: var(--line-height-normal);
  width: auto;
  max-width: 30vw;
}

.home-sub-items{
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 170px 80px 0px 80px;
  grid-column-gap: 120px;
}

.home-sub-image{
  height: 55vw;
  overflow: hidden;
}

.home-sub-image img{
  height: 100%;
  object-fit: cover;
}

.home-sub-text{
  padding: 40px 0px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-sub-text p{
  /* max-width: 280px;
  display: inline-block; */
  padding: 0px 30px;
}

.home-sub-text h3{
  font-family: var(--font-beauty);
  font-size: var(--text-big);
  line-height: var(--line-height-big);
  text-transform: uppercase;
  margin-bottom: var(--line-height-normal);
}

.home-sub-text a{
  text-transform: uppercase;
  position: relative;
}

.home-sub-text a::after{
  content: '';
  position: absolute;
  bottom: -5px;
  left: 1px;
  width: calc(100% - 2px);
  height: 1px;
  background-color: var(--color-text);
}

.home-gallery{
  /*display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 120px;
  grid-row-gap: 90px;*/
  
  /*padding: calc(190px * 2) 80px 0px 80px;*/
  padding: 190px 0px 0px 0px;
  margin: 0px 80px;
}

.home-gallery.mobile-only{
  display: none;
}

/*.home-gallery-image:nth-child(3n + 2){
  transform: translateY(-190px);
}*/

.home-gallery-image{
  width: calc((100% - 120px - 120px) / 3);
  cursor: pointer;
  margin-bottom: 90px;
  /*float: left;*/
}

.home-contact p:first-child{
  text-transform: uppercase;
}

.home-contact p{
  display: inline-block;
  max-width: 380px;
  line-height: var(--line-height-big);
  margin-bottom: var(--line-height-big);
}

.home-contact p:last-child{
  margin-bottom: 0px;
}

.home-contact{
  font-family: var(--font-beauty);
  font-size: var(--text-notbig);

  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;

  margin-top: -90px;
  padding-top: 190px;
}

.big-logo{
  padding: 140px 0px 0px 0px;
  text-align: center;
}

.big-logo img{
  width: 220px;
}

.booking-enquiry{
  background-color: rgba(0,0,0,0.6);
  width: 100%;
  height: 100vh;
  position: fixed;
  display: none;

  align-items: center;
  justify-content: center;

  z-index: 101;
  overflow-y: scroll;
  left: 0px;
  top: 0px;
}

.booking-enquiry form{
  background-color: var(--color-bg-white);
  color: var(--color-text-invert);
  padding: 45px 60px;
  
  width: calc(100% - 40px);
  max-width: 720px;

  box-sizing: border-box;

  position: relative;
}
.booking-form.booking-enquiry > .tripleseat_embed_form {
  background-color: var(--color-bg-white);
  color: var(--color-text-invert);
  padding: 45px 60px;
  width: calc(100% - 40px);
  max-width: 720px;
  box-sizing: border-box;
  position: relative;

}
html body .booking-form.booking-enquiry {
  display: none;
}
#tripleseat_embed_form input, #tripleseat_embed_form button, #tripleseat_embed_form textarea {
  border: none!important;
}
#tripleseat_embed_form tr input,
#tripleseat_embed_form tr textarea {
  background-color: transparent!important;
  font-size: inherit !important;
  font-family: inherit !important;
  line-height: inherit !important;
  letter-spacing: inherit !important;
  padding: 10px 0px;
  border-bottom: 1px solid var(--color-text-invert)!important;
  width: 100%!important;
  background-image: none!important;
}
tr.row_guest_count {
  clear: both;
  margin-bottom: 40px;
}
tr.row_additional_information {
  margin-bottom: 40px;
}
div#errorExplanation {
  display: none;
}
#tripleseat_embed_form .danger {
  display: none!important;
}
label img {
  display: none!important;
}
* {
  outline: none!important;
}
#tripleseat_embed_form tr textarea {
  height: 24px;
  display: block;
}
#tripleseat_embed_form tr textarea {
  height: 24px;
}
span.required {
  display: none!important;
}
div#tripleseat_embed_form > table, 
div#tripleseat_embed_form > table > tbody,
div#tripleseat_embed_form > table > tbody > tr, 
div#tripleseat_embed_form > table > tbody > tr > td {
  display: block!important;
  width: 100%;
}
div#tripleseat_embed_form > table > tbody > tr {
  position: relative;
}
div#tripleseat_embed_form tr.row_email_opt_out {
  display: none!important;
}
div#tripleseat_embed_form tr.row_contact_header, div#tripleseat_embed_form tr.row_details_header {
  display: none!important;
}
div#tripleseat_embed_form tr.row_referred_by {
  display: none!important;
}
tr.row_company {
  width: calc(50% - 20px) !important;
  float: left;
}
tr.row_event_description {
  float: right !important;
  width: calc(50% - 20px) !important;
}
.close-form,#book-a-table,#booking {
  cursor: pointer;
}
div#tripleseat_embed_form tr.row_availbility {
  display: none!important;
}
div#tripleseat_embed_form tr.row_submit > td > a {
  display: none!important;
}
#tripleseat_embed_form table td {
  padding: 0!important;
  vertical-align: top;
}
div#tripleseat_embed_form > table > tbody > tr.row_first_name {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  width: 100%;
}
tr.row_phone_number {
  width: calc(50% - 20px) !important;
  float: right;
  margin-bottom: 40px;
}
div#tripleseat_embed_form > table > tbody > tr > td#lead_form_submit {
  display: flex !important;
  justify-content: center;
}
table tr td input#lead_submit {
  padding: 0 !important;
  display: inline-block !important;
  width: auto !important;
  line-height: 18px !important;
  cursor: pointer;
}
table tr td input#lead_submit:hover {
  text-decoration: none!important;
  border-color: transparent!important;
}
.timeselect a {
  font-family: "Roboto-Light";
  font-weight: 300 !important;
  font-size: 12px;
}
html body div#tripleseat_embed_form label {
  position: absolute;
  bottom: 10px;
  display: none;
}
textarea#lead_additional_information::placeholder {
  color: #111;
}
table tr td input#lead_submit {
  padding: 0 !important;
  display: inline-block !important;
  width: auto !important;
}
tr.row_company {
  clear: both;
}
tr.row_company {
  margin-bottom: 40px;
}
tr.row_event_date {
  width: calc(33.33% - 40px) !important;
  float: left;
  margin-bottom: 40px;
}
tr.row_time {
  width: 66.66% !important;
  float: right;
}
td.cell_start_time {
  width: calc(50% - 20px) !important;
}
td.cell_end_time {
  width: calc(50% - 20px) !important;
  float: right;
}
td.cell_start_time {
  width: calc(50% - 20px) !important;
  float: left;
}
tr.row_email_address {
  width: calc(50% - 20px) !important;
  float: left;
  margin-bottom: 40px;
}
#tripleseat_embed_form::before {
  content: "Booking enquiry";
  text-align: center;
  font-family: var(--font-beauty);
  font-size: var(--text-notbig);
  line-height: var(--line-height-big);
  text-transform: uppercase;
  margin-bottom: 60px;
  position: relative;
  z-index: 3;
  display: block;
}


.booking-title{
  text-align: center;
  font-family: var(--font-beauty);
  font-size: var(--text-notbig);
  line-height: var(--line-height-big);
  text-transform: uppercase;

  margin-bottom: 60px;

  position: relative;
  z-index: 3;
}

.booking-enquiry .inputs{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 40px;
  grid-row-gap: 40px;

  margin-bottom: 40px;

  position: relative;
  z-index: 1;
  width: 100%;
}

.inputs.small{
  grid-template-columns: 1fr 1fr 1fr;
}

.inputs.big{
  grid-template-columns: 100%;
}

.inputs input{
  font-size: inherit !important;
  font-family: inherit !important;
  line-height: inherit !important;
  letter-spacing: inherit !important;
  padding: 10px 0px;
  border-bottom: 1px solid var(--color-text-invert);
  width: 100%;
}

.booking-enquiry .button{
  margin-top: 70px;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  z-index: 3;
}

.booking-enquiry .button button{
  position: relative !important;
  font-size: inherit !important;
  font-family: inherit !important;
  line-height: inherit !important;
  letter-spacing: inherit !important;
}

.booking-enquiry .button button::after{
  content: '';
  position: absolute;
  bottom: 2px;
  left: 1px;
  width: calc(100% - 2px);
  height: 1px;
  background-color: var(--color-text-invert);
}

.close-form{
  position: absolute;
  padding: 20px;
  width: 10px;
  height: 10px;
  top: 0px;
  right: 0px;
  background-size: 10px;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url("../img/CLOSE-black.svg?1");
  cursor: pointer;
  z-index: 3;
}

.booking-thanks{
  display: none;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding-top: 145px;
  text-transform: uppercase;

  z-index: 2;

  background-color: var(--color-bg-white);
  text-align: center;
}


.home-events{
  margin: 90px 80px 190px 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.home-event-title{
  width: 100%;
  font-family: var(--font-beauty);
  font-size: var(--text-big);
  line-height: var(--line-height-big);
  text-transform: uppercase;
  margin-bottom: var(--line-height-normal);
  text-align: center;
}

.home-event{
  width: calc(50% - 40px);
  margin-top: 100px;
}

.big-event {
  transform: translateX(-50%);
  margin-left: 50%;
}

.home-event-image{
  width: 100%;
  overflow: hidden;
}

.home-event-image img{
  height: 100%;
  object-fit: cover;
}

.home-event-text span{
  text-transform: uppercase;
  margin-bottom: var(--line-height-normal);
}

.home-event-text{
  padding: 40px 0px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-event-text h3{
  font-family: var(--font-beauty);
  font-size: var(--text-big);
  line-height: var(--line-height-big);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.home-event-text p{
  padding: 0px 30px;
}

.home-event-text a{
  text-transform: uppercase;
  position: relative;
}

.home-event-text a::after{
  content: '';
  position: absolute;
  bottom: -5px;
  left: 1px;
  width: calc(100% - 2px);
  height: 1px;
  background-color: var(--color-text);
}


/* .book-a-table{
  background-color: rgba(0,0,0,0.6);
  width: 100%;
  height: 100vh;
  position: fixed;
  display: none;

  align-items: center;
  justify-content: center;

  z-index: 102;
  overflow-y: scroll;
  left: 0px;
  top: 0px;
}

.book-a-table-form{
  background-color: var(--color-bg-white);
  color: var(--color-text-invert);
  padding: 45px 60px;
  
  width: calc(100% - 40px);
  max-width: 720px;

  box-sizing: border-box;

  position: relative;
} */



.popup-out {
  display: flex;
  background-color: rgba(17, 17, 17, 0.60);
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 1000;
  top: 0px;
  left: 0px;
  align-items: center;
  justify-content: center;
  color: var(--color-text-invert);
}

.popup-out .item {
  width: calc(100vw - 40px);
  max-width: 600px;
  background: var(--color-bg-white);
  text-align: center;
  margin: 0px 20px;
  margin-bottom: 40px;
  box-sizing: border-box;
  padding: 0px 40px;

  display: flex;
  flex-direction: column;
  position: relative;
}

.popup-out .text-footer {
  margin-top: auto;
  padding-bottom: 55px;
}

.popup-out .item .title {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-beauty);
  font-size: var(--text-big);
  line-height: var(--line-height-big);
  text-transform: uppercase;
}

.popup-out .item .photo {
  margin-bottom: 40px;
}

.popup-out .item .photo img {
  display: block;
  max-height: 40vh;
  object-fit: cover;
}

.popup-out .item .text {
  font-family: var(--font-beauty);
  font-size: var(--text-big);
  line-height: var(--line-height-big);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 50px;
}

.popup-out .text p a {
  font-family: var(--font-light);
  line-height: var(--line-height-normal);
  letter-spacing: var(--letter-spacing-normal);
  font-size: var(--text-normal);
  text-transform: uppercase;
  padding-bottom: 5px;
  margin: 0px 20px;
}

.popup-out .text p strong {
  line-height: var(--line-height-normal);
  letter-spacing: var(--letter-spacing-normal);
  font-size: var(--text-normal);
  text-transform: uppercase;
}

.popup-out .text p a:after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  background-color: currentColor;
  height: 1px;
  bottom: 0px;
  transition: width 0.2s;
  pointer-events: none;
}
.popup-out .text p a:hover::after {
  width: 0px;
}

.popup-out .item .text p {
  max-width: 500px;
}

.popup-out .item .text > h4 {
  font-family: var(--font-normal);
  font-size: var(--text-normal);
  line-height: var(--line-height-normal);
  letter-spacing: var(--letter-spacing-normal);
  text-transform: uppercase;
  margin-bottom: 48px;
}

.popup-out .close-popup {
  width: 10px;
  height: 10px;
  padding: 20px;
  background-image: url(../img/CLOSE-black.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  position: absolute;
  top: -8px;
  right: -8px;
}

.book-mobile#book-a-table {
  display: none;
}

.book-mobile#book-a-table {
  position: fixed;
  margin: 0px;
  bottom: 40px;
  right: 20px;
  background-color: #111;
  border: 1px solid #fff;
  padding: 8px 15px;
  text-transform: uppercase;
}
.book-mobile#book-a-table2 {
  position: fixed;
  margin: 0px;
  bottom: 40px;
  right: 20px;
  background-color: #111;
  border: 1px solid #fff;
  padding: 8px 15px;
  text-transform: uppercase;
  z-index: 111;
}


.book-mobile#book-a-table {
  position: fixed;
  margin: 0px;
  bottom: 40px;
  right: 20px;
  background-color: #111;
  border: 1px solid #fff;
  padding: 8px 15px;
  text-transform: uppercase;
}
#tripleseat_embed_form tr input.error, #tripleseat_embed_form tr textarea.error {
  border-bottom: 1px solid #ed1c24 !important;
}
tr.row_event_description {
  margin-bottom: 40px;
}
@media screen and (max-width:767px){
  .booking-form.booking-enquiry > .tripleseat_embed_form {
    background-color: var(--color-bg-white);
    color: var(--color-text-invert);
    padding: 45px 20px;
    width: calc(100% - 40px);
    max-width: 720px;
    box-sizing: border-box;
    position: relative;
  }
  tr.row_email_address {
    width: calc(50% - 10px) !important;
    float: left;
    margin-bottom: 20px;
  }
  tr.row_company {
    margin-bottom: 20px;
  } 
  tr.row_phone_number {
    width: calc(50% - 10px) !important;
    float: right;
    margin-bottom: 20px;
  }
  div#tripleseat_embed_form > table > tbody > tr.row_first_name {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    width: 100%;
  }
  tr.row_guest_count {
    clear: both;
    margin-bottom: 20px;
  } 
  #tripleseat_embed_form::before {
    margin-bottom: 30px;
  }
  .booking-enquiry .button {
    margin-top: 30px;
  }
  #tripleseat_embed_form tr textarea {
    height: 46px;
  }
  table tr td input#lead_submit {
    padding: 0 !important;
    display: inline-block !important;
    width: auto !important;
    color: #111 !important;
  }

  
  tr.row_event_date {
    width: calc(33.33% - 20px) !important;
    float: left;
    margin-bottom: 20px;
  }
  td.cell_end_time {
    width: calc(50% - 10px) !important;
    float: right;
  }
  tr.row_phone_number {
    width: calc(50% - 10px) !important;
    float: right;
    margin-bottom: 20px;
  }
  td.cell_start_time {
    width: calc(50% - 10px) !important;
    float: left;
  }
  td.cell_end_time {
    width: calc(50% - 10px) !important;
    float: right;
  }
  #tripleseat_embed_form tr textarea {
    height: 48px;
  }
  textarea {
    border-radius: 0;
    -webkit-appearance: none;
  }
  tr.row_event_description {
    margin-bottom: 20px;
  }
  tr.row_event_description {
    margin-bottom: 20px!important;
  }
  html body .booking-enquiry {
    align-items: center;
    justify-content: initial;
    height: 100%;
    padding: 10px 20px;
  }
}