.row_attractions {
  max-width: 1500px;
  margin: 50px auto;
  display: flex;
  overflow: hidden;
}
.attractionsextra{
  position: relative;
  color: #FFF;
  width: 100%;
  text-align: center;
  overflow: hidden;
  background: #E09F44;
}
.attractionsextra img{
  max-height: 490px;
}
.attractionsextra h3{
  font-size: 30px;
}
.attractionsextra .text{
  position: absolute;
  top: 50px;
  transition: .2s ease;
  color: #FFF;
  text-align: center;
  text-shadow: 2px 2px 4px #000000;
}
.attractionsextra .backimg{
  position: absolute;
}
.other_attractions_container {
  width: 300%;
  overflow: auto;
  display: flex;
  position: relative;
  height: auto;
  flex-wrap: wrap;
  margin-right: 10px;
}
.other_attractions {
  width: calc(50% - 20px);
  margin: 10px 10px;
  height: 150px;
  overflow: auto;
  position: relative;
  text-decoration: none;
  color: #D31F34;
  background: #0F7EC2;
  transition: .5s ease;
}
.other_attractions:nth-child(1) , .other_attractions:nth-child(2){
  margin-top: 0;
}
.other_attractions:nth-child(5) , .other_attractions:nth-child(6) {
  margin-bottom: 0;
}
.other_attractions .text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: .2s ease;
  color: #FFF;
  padding: 10px 12px;
  background: rgba(0,0,0,0.6);
  text-align: center;
}
.other_attractions .text h4::first-letter {
    font-size: 125%;
}
.other_attractions .colorer{
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,19,52,.2);
  transition: .2s ease;
}
.other_attractions:hover {
  background: #00ACAC;
}
.other_attractions img{
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s ease;
}
.other_attractions  img{
  filter: grayscale(100%) !important;
}
.other_attractions:hover  img{
  filter: grayscale(0%) !important;
}
.other_attractions:hover  img{
  filter: grayscale(0%) !important;
}
.other_attractions:hover .text{
  background: #E09F44;
  box-shadow: 3px 3px 7px 2px rgba(0,0,0,0.8);
}
.other_attractions:hover .colorer{
  transition: .2s ease;
  width: 0;
}

@media screen and (max-width : 850px) {
  .row_attractions {
    flex-wrap: wrap;
  }
  .other_attractions_container {
    margin-right: 0;
    margin-bottom: 10px
  }
  .other_attractions {
    margin: 5px;
    width: calc(50% - 10px);
  }
  .attractionsextra {
    width: 100%;
    height: 200px;
  }
  .attractionsextra img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .attractionsextra .text{
    left: 0;
    right: 0;
  }
}

.top_pic{
  width: 100%;
  height: 500px;
  min-height: 300px;
  position: relative;
}
.top_title{
  position: relative;
  width: 100%;
  padding: 30px;
  color: white;
}
.top_title h1{
  letter-spacing: 1px;
  font-weight: normal;
  border-bottom: 2px solid white;
  margin: 0 50px 10px 0;
  padding: 0 20px;
  line-height: 50px;
}
.top_title h4{
  letter-spacing: 1px;
  font-weight: normal;
  padding: 0 20px;
  margin: 0 50px 10px 0;
}
.top_pic img{
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}
