/* Grid */

.column {
  flex-basis: 100%;
}

@media screen and (min-width: 800px) {
  .row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .column {
    flex: 1;
  }
  ._25 {
    flex: 2.5;
  }
  ._5 {
    flex: 5;
  }
}
/* Style */

body {
  font-family: 'Lato', sans-serif;
  font-size: 1.3em;
  color: #ccc;
  background: #ffffff;
  margin-bottom: 70px;
}
.grid-container {
 .grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Three equal columns */
  gap: 10px; /* Space between items */
}
}

.grid-item {
  border: 1px solid #ccc;
  padding: 15px;
  text-align: center;
}

.flex-container {
  display: flex;
  flex-wrap: wrap; /* Allows items to wrap to the next line */
  gap: 10px; /* Space between items */
}

.flex-item {
  flex: 1; /* Makes columns share space equally */
  min-width: 150px; /* Ensures a minimum width for columns */
  border: 1px solid #ccc;
  padding: 15px;
  text-align: center;
}

.column {
  padding: 15px;
  border: 0px solid #666;
  margin: 5px 0;
  background: #fff;
}
.my-row {
  background-image: url('./img/bg4.jpg'); /* Example of relative path */
  background-size: 100% 100%;*/
    }
.my-column {
  background-image: url('./img/bg4.jpg'); /* Example of relative path */
  background-size: 100% 100%;
}
.row-background {
      background-color: #f0f0f0; /* Light gray background */
      /* Or for an image: */
      /* background-image: url('path/to/your/image.jpg'); */
      /* background-size: cover; */
      /* background-repeat: no-repeat; */
    }
.map-responsive {
  overflow: hidden;
  padding-bottom: 99.25%; /* 16:9 aspect ratio (height is 56.25% of width) */
  position: relative;
  height: 0;
}

.map-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}
img {
  width: 100%;
  height: auto;
}
.head {
 background: url('img/bg4.jpg') 
  background-repeat: no-repeat;
  position: relative;
  width: 85%;
  height: 610px;
  margin-left: auto;
  margin-right: auto;
}


.ico {
  width: 40px;
  height: 40px;
}
.logo {
  width: 150px;
  height: 150px;
}
.bg-img {
  position: relative;
  width: 100%;
  height: 100%;
  background: url('img/bg4.jpg') center center no-repeat;
  background-size: cover;
}
.overlay {
  background-color: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

.bg-fixed {
  background-attachment: fixed;
}
main {
  max-width: 1200px;
  margin: 0 auto;
}

h1,
h2 {
  text-align: center;
}