.img_logo {
        width:80%; 
} 

.title_text{
    font-size: 35px;
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .img_logo {
        width:100%; 
    }
    .title_text{
        font-size: 16px;
    }
}

/* Small devices (tablets and large phones, 600px and up) */
@media only screen and (max-width: 992px) {
    .img_logo {
        width:100%; 
    }
    .title_text{
        font-size: 16px;
    }
}

/* For Top Logo, Text, Map Buttons */
.row {
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Create two unequal columns that floats next to each other */
.column {
  float: left;
  padding: 2px;
}

.left {
  width: 40%;
}

.right {
  width: 60%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}
/* For Top Logo, Text, Map Buttons */

.container {
    display:flex;
    /* items are centered along the line */
    justify-content: center;
    /* center: items are centered in the cross-axis */
    align-items: center;
}

.btn_register {
    background-color : #ea1903;
    color: white;
    padding: 10px 90px;
    border-radius: 15px;
    border-color: #d21602;
    font-size: 22px;
    font-family:arial;
}

.btn_map {
    background-color : #017ddd;
    color: white;
    padding: 7px 10px;
    border-radius: 10px;
    border-color: #017ddd;
    border-width:0px;
    font-size: 12px;
    font-family:Verdana, serif;
    cursor: pointer;
}

.btn_call {
    background-color : rgb(115, 173, 33, .4);
    color: white;
    padding: 10px 12px;
    border-radius: 10px;
    border-color: #017ddd;
    border-width:0px;
    font-size: 18px;
    font-weight: bold;
    font-family:Verdana, serif;
    cursor: pointer;
    box-shadow: 0 0 0 0 #FEC504;
    -webkit-animation: glow 1.4s linear infinite;
          animation: glow 1.4s linear infinite;
}

#mybutton {
    width:100%; 
    margin: auto;
    text-align: center;
    bottom: 25px;
    position: absolute;
}

.btn_nxt_prv_arrow {
    border-radius: 5px;
    background: #9a1570;
    padding: 8px;
    border: 2px solid rgba(255, 255, 255, .3);
    font-family:Verdana, sans-serif;
}
/* This :active syntax will help for mobile device click action*/
.btn_nxt_prv_arrow:active {
    border-radius: 5px;
    background: #d6ce15;
    padding: 8px;
    border: 2px solid rgba(255, 255, 255, .3);
    font-family:Verdana, sans-serif;
}
/* This check will help to disable the hover for touch screen devices. Web site only will have hover effect. Mobile won't */
@media (hover: hover) and (pointer: fine) {
    .btn_nxt_prv_arrow:hover {
        border-radius: 5px;
        background: #d6ce15;
        padding: 8px;
        border: 2px solid rgba(255, 255, 255, .3);
        font-family:Verdana, sans-serif;
    }
}


/* Grid View Style */
.grid-container {
  display: grid;
  grid-template-columns: auto auto auto auto auto auto auto auto auto auto auto auto;
  gap: 10px;
  background-color: #00000000;
  padding: 10px;
}

.grid-container > div {
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
  color: #FFFFFF;
  font-weight: bold;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .grid-container {
      display: grid;
      grid-template-columns: auto auto auto auto auto auto;
      gap: 10px;
      background-color: #00000000;
      padding: 5px;
    }
    
    .grid-container > div {
      text-align: center;
      padding: 20px 0;
      font-size: 13px;
      color: #FFFFFF;
      font-weight: bold;
    }
}

.item0 {
  grid-column-start: 1;
  grid-column-end: 3;
  background-color: #FFFFFF;
}

.grid_normal {
  border-radius: 12px;
  background: #979797;
  padding: 15px; 
  font-family:Arial, sans-serif;
}

.grid_booked {
  border-radius: 12px;
  background: #ff0000;
  padding: 15px; 
  font-family:Arial, sans-serif;
}
.grid_available {
  border-radius: 12px;
  background: #73AD21;
  padding: 15px;
  font-family:Verdana, sans-serif;
}
/* Grid View Style - END */
.about_us_box {
  background-color: rgb(255, 255, 255, .7);
  border: 2px solid green;
  border-radius: 15px;
  padding: 10px;
  margin: 25px 35px;
  font-size: 14px;
  color: #001d43;
  font-family:Arial, sans-serif;
}
/*Button Glow Animation*/
@-webkit-keyframes glow {
  0% {
    box-shadow: 0 0 0 0 #FEC504;
  }
  50% {
    box-shadow: 0 0 100px 0 #FEC504;
  }
  100% {
    box-shadow: 0 0 120px 0 #dc143c;
  }
}

@keyframes glow {
  0% {
    box-shadow: 0 0 0 0 #FEC504;
  }
  50% {
    box-shadow: 0 0 100px 0 #FEC504;
  }
  100% {
    box-shadow: 0 0 120px 0 #dc143c;
  }
}
/*Button Glow Animation - END*/
/*Shake Animation*/
@keyframes shake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
}

.shake {
    display: inline-block;
    animation: shake 4.5s;
    animation-iteration-count: infinite;
}

@keyframes shake-bell {
    0% { transform: rotate(0deg); }
    15% { transform: rotate(5deg); }
    30% { transform: rotate(-5deg); }
    45% { transform: rotate(4deg); }
    60% { transform: rotate(-4deg); }
    75% { transform: rotate(2deg); }
    90% { transform: rotate(-2deg); }
    100% { transform: rotate(0deg); }
}

.shake1 {
    display: inline-block;
    animation: shake-bell 1.5s;
    animation-iteration-count: infinite;
}
/*Shake Animation - END*/