.__grid {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 0em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}


.cc-section-wrap {
	
}

.cc-section-wrap-inner {
	
}


.__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.__grid h2 {
  line-height: 135%;
  text-align: left;
  margin-bottom: 10px;
  font-size: 28px;
}

.__grid h2:after {
  content: "";
  display: block;
  width: 40px;
  height: 5px;
  background: #000000;
  margin: 20px 0px;
}

.__grid a {
  font-weight: 700;
  color: #000000 !important;
}

.__grid a:hover {
  color: #000000 !important;
}

.__grid a:focus {
  border: 2px dotted #000000;
  padding: 5px;
}

.__grid p {
  font-size: 18px;
  line-height: 135%;
  text-align: left;
  color: black !important;
  margin: 0;
}
.__grid ul {
  font-size: 18px;
  line-height: 135%;
  text-align: left;
  padding-left: 40px;
}
.__sbs {
  grid-template-columns: repeat(2, calc(50%));
  grid-template-rows: auto;
  grid-template-areas: "side1 side2";
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.__invert {
  grid-template-areas: "side2 side1";
}
.__side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.__side1 {
  grid-area: side1;
  height: 100%;
}
.__side2 {
  grid-area: side2;
  padding: 20px;
}
/*	google maps */
.__side iframe {
  width: 100%;
  min-height: 450px;
  display: inline-block;
  margin: 0px auto;
  vertical-align: middle;
}




@media only screen and (max-width:768px) {
  .__sbs {
    grid-template-columns: calc(100% - 1em);
    grid-template-areas: "side1""side2";
    padding: 2em 1em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
  }
}