      .map-container {
  float: left;
  margin: 0 20px 20px 0; /* space to the right and below */
  width: 100%;           /* or your desired width */
}

.map-container .office-map {
  width: 100%;   /* fill the container */
  height: 300px; /* adjust as needed */
 border: 1px solid #ccc;  /* correctly shows border on all four sides */
  box-sizing: border-box;  /* optional, ensures padding/border included in width/height */
  }

/* Container */
.container {
  max-width: 930px;
  margin: 0 auto;
  padding: 10px;
  background color: #ffffff;
  float: center;
  display: flex;
  flex-direction: column;
 
  }

.comments-container {
  margin: 0 auto;
  padding: 20px;
  background-color: #f2f2f2;
  text-align: left!important;



}

.comments-heading {
  font-size: 20px;
  font-weight: bold;
  margin-right: 10px;
  text-align: left!important;


}


/* User Rating */
.user-rating {
  text-align: left;
  margin-bottom: 0px;
  float: left;


}

.star-rating-container .user-rating {
  font-size: 16px;
  text-align: center;
  float: none;
  font-weight: normal !important;

}


.heading {
  font-size: 16px;
  font-weight: bold;
  float: left;
 }   
 
 
.star-rating-container .heading {
  font-size: 18px!important;
  font-weight: bold;
  text-align: center!important;
  float: none;
}



.fa.fa-star {
  color: #ffcc00;
  font-size: 25px !important;
  cursor: pointer;
  float: none;
}

.star-rating-container .fa.fa-star {
  color: #ffcc00;
  font-size: 25px !important;
  cursor: pointer;
  float: none;
}

.fa.fa-star:hover {
  color: #ff9900;
}

.star-rating-container .fa.fa-star:hover {
  color: #ff9900;
}

.fa.fa-star.filled {
  color: orange;
}

.star-rating-container .fa.fa-star.filled {
  color: orange;
}

.fa.fa-star.half {
  background: linear-gradient(to right, #ff9900 50%, #ffcc00 50%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.star-rating-container .fa.fa-star.half {
  background: linear-gradient(to right, #ff9900 50%, #ffcc00 50%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}


.fa.fa-star.quarter {
  background: linear-gradient(to right, #ff9900 25%, #ffcc00 75%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.star-rating-container .fa.fa-star.quarter {
  background: linear-gradient(to right, #ff9900 25%, #ffcc00 75%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.fa.fa-star.three-quarters {
  background: linear-gradient(to right, #ff9900 75%, #ffcc00 25%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}


.star-rating-container .fa.fa-star.three-quarters {
  background: linear-gradient(to right, #ff9900 75%, #ffcc00 25%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.star-count {
  margin-left: 10px;
}


@media (hover: none) and (pointer: coarse) {
.fa.fa-star:active,
.fa.fa-star:focus {
    background-color: blue;
    color: white;
  }
 
 }
 
 .confirmButtonText {
  background-color: #000; /* Set the background color */
  color: #FFF; /* Set the text color */
 border: 2px solid #C0C0C0;
 
 }

/* Bar Chart */


/* Bar chart styling */
.rating-container {
  display: flex;
  flex-direction: column;
}

.rating-row {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.star-label {
  width: 70px;
}

.bar-container {
  flex-grow: 1;
  height: 20px;
  background-color: #f3f3f3;
  border-radius: 4px;
  overflow: hidden;
}

.bar {
  height: 100%;
  transition: width 0.3s ease;
}

.rating-row:nth-child(1) .bar {
  background-color: #04AA6D;
}

.rating-row:nth-child(2) .bar {
  background-color: #2196F3;
}


.rating-row:nth-child(3) .bar {
  background-color: #00bcd4;
}

.rating-row:nth-child(4) .bar {
  background-color: #ff9800;
  }

.rating-row:nth-child(5) .bar {
  background-color: red;
}

/* Review Form */
.review-form {
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 10px;
}

label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="comments"],

textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  resize: vertical;
  font-family: Arial;
  line-height: 1.5;
}

input[type="number"] {
  width: 50px;
}

button[type="submit"] {
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button[type="submit"]:hover {
  background-color: #45a049;
}




/* Reviews */
.reviews {
  margin-bottom: 20px;
}

h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

ul {
  list-style-type: none;
  padding: 0;
}

li {
  padding: 13px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  font-size: 14px;
  line-height: 1.5; /* 1.5 times the font size */
  text-align: justify;

}

.review-name {
  font-weight: bold;
  margin-bottom: 5px;
}

.review-date {
  font-style: italic;
  font-size: 12px;
  margin-bottom: 10px;
}

.review-rating {
  margin-bottom: 5px;
}

.review-comment {
  font-size: 11px;
}

.name {
  font-size: 12px;
}

.date {

font-size: 11px;
  color: #99cc00;
}



/* CSS Reset */

body {
font-family:Arial;
}

a:link {
  text-decoration: none;
}

a:visited {
  color: #A6007C; 
  text-decoration: none;
}

a:hover {
  color: #FF0000; 
  text-decoration: underline;
}

a:active {
  text-decoration: underline;
}

.content {
  max-width: 930px;
  margin: auto;

}


h1 {
background-color: ;
    font-size: 1.5em;
    margin-top: 30px;
    font-weight: bold


            }
        
h2

{
    font-size: 1.3em;
    margin-top: 10px;
   font-weight: bold
    
        }
        
h3

{
    font-size: 1.1em;
    margin-top: 30px;
   font-weight: bold
    
        }
        
h4

{
    font-size: 0.9em;
    margin-top: 10px;
   font-weight: bold
    
        }



p {
    padding-top: 10px;
padding-right: 00px;
padding-bottom: 10px;
padding-left: 00px;
line-height: 1.5;
text-align: justify;
}

p.round1 {
  border: 1px solid black;
  border-radius: 5px;
  margin-left: 10;
  margin-right: 10;
  padding-left: 30px;
  padding-right: 30px;


}






 /*--------------------------table------------------------*/


#table1 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  border-collapse: collapse;
  width: 100%;
}


#table1 td, #table1 th {
  border: 1px solid #ddd;
  background-color: #f8f8f8;
  padding: 6px;
  padding-left: 12px;

}

#table1 tr:nth-child(even){background-color: #f2f2f2;}

/*#table1 tr:hover {background-color: #ddd;} */

#table1 th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #E5E5E5;
  color: black;
}



#table2 {
  border: 1px solid #ccc;
  font-size: 15px;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}

#table2 caption {
  font-size: 1.1em;
  margin: .5em 0 .75em;
  text-align: left;

  font-weight: bold;

}

#table2 tr {
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  padding: .35em;
}

#table2 th, td {
  padding: .625em;
  text-align: left;

}

#table2 th {
  font-size: .85em;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: left;
  background-color: #E5E5E5;
}

@media screen and (max-width: 500px) {
  #table2 {
    border: 0;
    font-size: 16px;

  }

  #table2 caption {
    font-size: 1.0em;
    margin: .5em 0 .75em;
  text-align: left;

  font-weight: bold;

}
  
  #table2 thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  
  #table2 tr {
    border-bottom: 3px solid #ddd;
    display: block;
    margin-bottom: .625em;
  }
  
  #table2 td {
    border-bottom: 1px solid #ddd;
    display: block;
    font-size: .8em;
   text-align: right;
   
  }
  
  #table2 td::before {
    /*
    * aria-label has no advantage, it won't be read inside a table
    content: attr(aria-label);
    */
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  #table2 td:last-child {
    border-bottom: 0;

  }

}

/*--------------------------logo---------------------------------*/




#logo {
    background: transparent url("images/header.jpg") no-repeat scroll 0% 0%;
    width: 930px;
    height: 60px;
        border: 0;
    margin-bottom: 0;
    
     }

@media only screen and (max-width: 600px) {
#logo {
width: 100%;

background: transparent url("images/header-s.jpg") no-repeat scroll 0% 0%;


}
}

/*--------------------------menu---------------------------------*/


.navbar {
  overflow: hidden;
  background: transparent url("images/navbar-menu.jpg");
  height: 42px;

         
}

.navbar a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 16px;
    

}
.active {
  background-color: none;
  color: white;
  

}
.navbar .icon {
  display: none;
  

}
.navbar a:hover, input:hover {
  background-color: #dddddd;
  color: black;
}
/* CSS for search box */
/* CSS for search box */
.navbar .search-box {
  float: right;
  position: relative;
  margin-top: 3px;
  padding-right: 30px;
  display: flex;
}
.navbar .search-box input {
  padding: 12px;
  border: none;
  width: 100%;
  height: 100%;
  padding: 10px;
}
.navbar .search-box button {
  color: #999;
  border: navajowhite;
  padding: 10px;
}

@media screen and (max-width: 600px) {
  .navbar a, .navbar .search-box, .navbar .search-icon {
    display: none;
    
  }
  .navbar a.icon {
    float: right;
    display: block;
    
  }
}

@media screen and (max-width: 600px) {
  .navbar.responsive {position:relative;
   width: 100%;
    height: auto;
    }
    
  .navbar.responsive .icon {
    position: absolute;
        right: 0;
    top: 0;
    
  }
  .navbar.responsive a {
    float: none;
    display: block;
    text-align: left;
    
  }
  
  .navbar.responsive .search-box { 
    float: none;
    display: flex;
    width: 90%;
    padding: 4%;
    border: 2px solid black;
  }
  .navbar.responsive .search-icon{
    display: flex;
  }
}

 /*--------------------------slideshow------------------------*/
  
  
  * {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {display:none;}
.block {
    display:block;}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}


/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

    
.active, .dot:hover {
 background-color: #717171;}
 
 
/* Fading animation */
.fade {
  animation-name: none;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/*--------------------------grid-container------------------------*/



ul.a {
display: block;
  list-style-type: square;
      margin-top: ;
  margin-bottom: 0 em;
  margin-left: 0;
  margin-right: 0;
  padding-left: 10px;
   line-height: 1.3;

 }
 
 ul.b {
display: block;
  list-style-type: square;
      margin-top: 1em;
  margin-bottom: 1 em;
  margin-left: 0;
  margin-right: 0;
  padding-left: 20px;
   line-height: 1.6;
 }

 
    
  .grid-container {
  display: grid;
  grid-template-columns: auto auto auto;
  grid-gap: px;
  background-color: #fff;
  padding: 10px;
}

@media only screen and (max-width: 500px) {
  .item1 { grid-area: 1; }
  .item2 { grid-area: 2; }
  .item3 { grid-area: 3; }

  
  
}



/*--------------------------body------------------------*/


/* Column container */
.row {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}  
  
/* Create two unequal columns that sits next to each other */
/* Sidebar/left column */
.side {
  -ms-flex: 30%; /* IE10 */
  flex: 0.3;
  background-color: #f1f1f1;
  padding-right: 10px;
  padding-left: 10px;
  padding-top: 10px;


}

/* Main column */
.main {   
  -ms-flex: 70%; /* IE10 */
  flex: 0.7;
  background-color: white;
  padding-right: 10px;
  padding-left: 2px;
  }


/* Footer */
.footer {
  padding: 13px;
  text-align: left;
  background: #f2f2f2;
  }

/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
  .row {   
    flex-direction: column-reverse;
  }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other  */

@media screen and (max-width: 400px) {
  .navbar a {
    float: none;
    width: 100%;
  }
}

/*-----------------------------responsive image with text (1)-----------------------------*/

@media screen and (min-width: 550px) {

.responsive {
  width: 100%;
  max-width: 280px;
  height: auto;
 }

}

@media screen and (max-width: 550px) {

.responsive {
  width: 100%;
  max-width: 400px;
  height: auto;
}

}


* {
  box-sizing: border-box;
}
.item {
  display: inline-block;
}
/* on PC */
@media screen and (min-width: 550px) {
  .featured-image {
    float: left;
    width: 25%;
    padding-right: 15px;
    
  }
  .featured-image img {
    width: 100%;
    border-radius:5px;
  }
  .description {
    float: left;
    width: 60%;
    text-align: top;
  text-justify: top;
  }
}
/* on Mobile */
@media screen and (max-width: 550px) {
  .featured-image {
    width: 100%;
  }
  .featured-image img {
    width: 100%;
     border-radius:5px;

  }
  .description {
    width: 100%;
    text-align: justify;
  text-justify:auto;
    }
}


/*--------------------------images------------------------*/


div.gallery-main {
  border: px solid #fff;
  
}

div.gallery-main img {
  width: 100%;
  height: auto;
  padding: 1px solid #fff;
    border: px solid #fff;
}

div.desc-main {
  text-align: center;
  padding-top: 5px;
  padding-bottom: 20px;
  background-color: white;
  font-style: italic;
  font-size: 13px;
  text-indent: ;
}

.responsive-main {
  padding: 0 6px;
  float: left;
  width: 100%;
}

@media only screen and (max-width: 700px) {
  .responsive-main {
    width: 100%;
    margin: 6px 0;
  }
}

@media only screen and (max-width: 500px) {
  .responsive-main {
    width: 100%;
      }
}


.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

div.gallery2 {
 
  border: 1px solid #fff;
  
}

div.gallery2:hover {
  border: 1px solid #777;
}

div.gallery2 img {
 

  padding: 1px solid #fff;
  border: 1px solid #fff;
   }

 div.desc2 {
  padding-top:5px;
  padding-bottom:1px;
 padding-right:1px;
  text-align: center;
     font-size: 13px;
  display: inline-block; 
  vertical-align: top;
}


.responsive2 {
 padding-top:12px;
  padding-bottom:4px;
 padding-right:12px;

  width:19%;
  display: inline-block;
  text-align: center;
  font-size: 12px;
  vertical-align: top;

}

@media only screen and (max-width: 700px) {
  .responsive2 {
    width: 49.99999%;
    margin: 6px 0;
  }
}

@media only screen and (max-width: 500px) {
  .responsive2 {
    width: 30%;
    
      }
       
      div.desc2 {
  padding-top:5px;
  padding-bottom:1px;
 padding-right:1px;
  text-align: center;
  font-size: 12px;
  display: inline-block; 
  vertical-align: top;
  

}
 } 
 

div.gallery3 {
  border: 1px solid #fff;
  
}

div.gallery3 img {
  width: 100%;
  height: auto;
  padding: 1px solid #fff;
  border: 1px solid #fff;
}

div.desc3 {
  padding-top:3px;
  padding-bottom:7px;
    text-align: center;
  font-size: 13px;
}

.responsive3 {
  padding: 0 6px;
  float: left;
  width: 30%;
}

@media only screen and (max-width: 700px) {
   .responsive3 {
    width: 100%;
    margin: 6px 0;
  }
}

@media only screen and (max-width: 500px) {
  .responsive3 {
    width: 46%;
      }
}



div.gallery4 img {
  width: 100%;
  height: auto;
  float: right;
  padding-top:14px;
  padding-left:10px;

  padding-bottom:5px;
}

div.desc4 {
  padding-top:5px;
  padding-bottom:5px;
  background-color: white;
  font-style: italic;
    text-align: center;
  font-size: 12px;
}

.responsive4 {
  padding-top:0px;
  padding-bottom:0px;
    float:right;
  width: 38%;
}

@media only screen and (max-width: 700px) {
   .responsive4 {
    width: 100%;
    margin: 6px 0;
  }
}

@media only screen and (max-width: 500px) {
  .responsive4 {
    width: 100%;
    padding-top:0px;
  padding-bottom:0px;
    float:center;


      }
}

  
/* Basic Responsive Image */
img {
  width: 100%;
   height: auto;
 
 }
 

  
/* Responsive Images in Columns */
.two-columns {
  width: 48%;
  display: inline-block;
  margin: 3px;
  
}
.three-columns {
  width: 24%;
  display: inline-block;
  margin: 3px;
  
   }
