@import "holePage.css";
@import "header.css";
@import "footer.css";
@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css);
/********************************
 General Styles
 *********************************/
body {
  font-family: "Roboto:100", sans-serif;
  height: 100%;
  background: #000;
  margin: 0;
  padding: 0;
  background-image: radial-gradient(rgb(25, 47, 59) 20%, rgba(34, 41, 75, 0.95) 50%, rgba(17, 18, 19, 0.95) 100%);
}

hr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 85%;
  height: 2px;
  background-color: #264863;
  border: 0;
  margin: 25px auto;
}

.hero {
  position: relative;
  justify-content: center;
  text-align: center;
  background-image: url("../images/HeaderBg.png");
  filter: drop-shadow(0 10px 0.5rem rgba(0, 0, 0, 0.5));
}
.hero .background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
}

.downloadButtons {
  text-align: center;
  margin: 25px 0;
}

/********************************
 Gallery Styles
 *********************************/
section.golfHoles {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
}

.groupHeader {
  color: #fff;
  display: flex;
  flex-direction: row;
  max-width: 1300px;
  justify-content: center;
}

.holeContainer {
  position: relative;
  padding: 5px;
  margin: 20px;
  height: 100%;
  transform: scale(1);
  overflow: hidden;
}
.holeContainer:hover .thumb img {
  transform: scale(1.2);
  transition: all 0.35s ease-in;
  filter: blur(2px);
  -webkit-filter: blur(5px);
}
.holeContainer:hover .holeDetails {
  opacity: 1;
  height: 96%;
  animation: moveInAnimation 0.35s ease-in-out;
  margin: 0px;
}
.holeContainer img {
  width: 250px;
  scale: 1;
  transition: all 0.35s ease-in-out;
}

.logo img {
  width: 75px;
  margin-bottom: 15px;
  opacity: 0.85;
}

.holeDetails {
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: linear-gradient(rgba(100, 182, 230, 0.6) 10%, rgba(54, 19, 83, 0.6), rgba(33, 35, 63, 0.8));
  width: 240px;
  height: 100%;
  position: absolute;
  top: 5px;
  right: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.holeDetails .material-icons {
  color: #c1e1ff;
}
.holeDetails h2 {
  color: #d7f78c;
  font-size: 20px;
  border-bottom: solid 1px #c9d89c;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.holeDetails h1 {
  color: #f7ec8c;
  border-top: solid 1px #c9d89c;
  padding-top: 10px;
  font-size: 28px;
}
.holeDetails h1, .holeDetails h2 {
  margin: 5px 0px;
}

/* **************** */
/* Game Screenshots	 */
.headerSection h1 {
  margin: 5px auto;
  width: 75%;
  color: rgb(255, 255, 255);
}

.OAS_screenshots {
  padding: 0 20px;
  background: #edede9;
}

.imgLogo,
.imgLogo h2 {
  color: #ffffff;
  text-align: center;
}

.imgLogo img {
  height: 200px;
  margin: 55px 0 0 0;
}

.homeScreenshots {
  display: flex;
  flex-direction: row;
}
.homeScreenshots .screenshotsContainer {
  width: 100%;
}
.homeScreenshots .screenshotsContainer .islandMistScreenshots {
  text-align: center;
  margin: 50px 0;
}
.homeScreenshots .screenshotsContainer .islandMistScreenshots img {
  margin: 15px;
  border: solid 1px #4c4c4c;
  padding: 10px;
  background: #08192d;
  margin: 40px;
  box-shadow: 2px 5px 10px rgba(3, 38, 65, 0.6);
}

/*-------------------------
Animations
--------------------------*/
@keyframes fadeIn {
  100% {
    opacity: 1;
  }
}
@keyframes moveInAnimationSubMenu {
  0% {
    margin-top: 20px;
    opacity: 0;
  }
  100% {
    margin-top: 0px;
    opacity: 1;
  }
}
@keyframes moveInAnimation {
  0% {
    top: 85px;
    opacity: 0;
  }
  100% {
    top: 10px;
    opacity: 1;
  }
}
@keyframes moveOutAnimation {
  0% {
    top: 10px;
    opacity: 1;
  }
  100% {
    bottom: 85px;
    opacity: 0;
  }
}
/********************************
 Desktop 1440px or more
 *********************************/
/********************************
 Laptop 1280px 
 *********************************/
/********************************
 Smartphone Portrait  475
 *********************************/
@media screen and (max-width: 475px) {
  .content {
    margin: 0 auto;
    width: 100%;
  }
  .hiresimage {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */