@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700;900&family=Roboto:wght@400;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background: #FAFAFA;
}

header {
  position: fixed;
  z-index: 1;
  width: 100%;
}

nav {
  height: 90px;
  width: 100%;
}

#front-nav {
  height: 160px;
  transition: 200ms linear;
}

@media (max-width: 956px) {
  #front-nav {
    height: 90px;
    background: #545c7e;
  }
}

#front-nav.scrolled {
  background-color: #545c7e;
  transition: 200ms linear;
  height: 90px;
}

#nav {
  background: #545c7e;
}

.logo {
  display: inline-block;
  height: 100%;
}

.logo a {
  color: white;
  font-size: 35px;
  line-height: 80px;
  margin: 0 70px;
  font-weight: bold;
  text-decoration: none;
}

.logo img {
  height: 100%;
  width: auto;
}

nav ul {
  float: right;
}

nav ul li {
  display: inline-block;
  line-height: 80px;
  margin: 0 5px;
}

nav ul li a {
  color: white;
  font-size: 17px;
  padding: 7px 13px;
  border-radius: 3px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 900;
}

nav ul li a.active,
nav ul li a:hover {
  /* background: #1b9bff; */
  background: #e49759;
  transition: .5s;
}

.checkbtn {
  font-size: 30px;
  color: white;
  position: absolute;
  right: 0;
  z-index: 10;
  line-height: 80px;
  margin-right: 40px;
  cursor: pointer;
  display: none;
}

#check {
  display: none;
}

@media (max-width: 956px) {
  .logo a {
    margin-left: 50px;
  }

  nav ul li a {
    font-size: 16px;
  }
}

@media (max-width: 952px) {
  nav {
    position: fixed;
  }
}

@media (max-width: 1600px) {
  .checkbtn {
    display: block;
  }

  nav ul {
    position: fixed;
    width: 70%;
    height: 100vh;
    /* background: #2c3e50; */
    background: #1a242e;
    top: 0;
    right: -100%;
    text-align: center;
    transition: all .5s;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
    overflow-y: auto;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  nav ul li {
    display: block;
    margin: 20px 0;
    line-height: 30px;
  }

  nav ul li a {
    font-size: 20px;
  }

  nav ul li a:hover,
  nav ul li a.active {
    background: none;
    /* color: #0082e6; */
    color: #e49759;
  }

  #check:checked~ul {
    right: 0;
  }
}

section {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 110px 110px;
}

@media (max-width: 1000px) {
  section {
    padding: 100px 50px;
  }
}

@media (max-width: 600px) {
  section {
    padding: 125px 10px;
  }
}

section p {
  max-width: 800px;
  text-align: center;
  margin-bottom: 35px;
  padding: 0 20px;
  line-height: 1.5;
}

.banner-area {
  position: relative;
  justify-content: center;
  min-height: 100vh;
  color: #fff;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.1);
}

.banner-area .banner-img {
  background-image: url("images/bg.jpg");
  position: absolute;
  top: 0;
  list-style-position: outside;
  width: 100%;
  height: 100%;
  -webkit-background-size: cover;
  background-size: cover;
  z-index: -1;
}

@media (max-width: 720px) {
  .banner-area .banner-img {
    background-position: 80% 40%;
  }
}

.banner-area .banner-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .4;
}

.banner-area h1 {
  margin-bottom: 15px;
  font-size: 65px;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
}

.banner-area h3 {
  margin-bottom: 40px;
  font-size: 25px;
}

.banner-area a.banner-btn {
  padding: 15px 35px;
  background: #e49759;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
  font-weight: bold;
}

.banner-area a.banner-btn:hover {
  background: #fff;
  color: #000;
}

@media (max-width: 800px) {
  .banner-area {
    /* min-height: 600px; */
    min-height: 100vh;
  }

  .banner-area h1 {
    font-size: 32px;
  }

  .banner-area h3 {
    font-size: 20px;
  }

  .banner-area a.banner-btn {
    padding: 15px 40px;
  }
}

.about-content {
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.about-content .box {
  padding: 20px;
  border-radius: 3px;
  background-clip: content-box;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  background-size: auto 100%;
  background-repeat: no-repeat;
}

.about-left {
  flex-basis: 40%;
  background-image: url("images/jkojonen-min.jpg");
  min-height: 550px;
}

.about-right {
  flex-basis: 60%;
}

.about-right a {
  text-decoration: underline;
  color: #000;
  font-weight: bold;

}

.about-area p {
  max-width: 800px;
  margin-bottom: 35px;
  line-height: 1.5;
  text-align: left;
  padding-left: 0;
}

.section-title {
  text-transform: uppercase;
  font-size: 35px;
  margin-bottom: 5%;
}

@media (max-width: 1000px) {

  .about-left,
  .about-right {
    flex-basis: 100%;
  }

  .about-content li {
    padding: 8px;
  }
}

#services {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("images/bg.jpg");
  background-attachment: fixed;
  color: #fff;
  background-size: cover;
  background-position: center;
  min-height: 600px;
}

@media (max-width: 1000px) {
  #services {
    background-attachment: scroll;
  }

}

.services-content {
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: auto;
}

.services-content .box {
  padding: 0 30px;
  flex-basis: 33%;
  text-align: center;
}

.services-content .box i {
  font-size: 50px;
  color: #fff;
  margin-bottom: 25px;
}

.services-content .box h4 {
  font-size: 20px;
  margin-bottom: 25px;
}

.services-content .box p {
  margin: 0;
}

@media (max-width: 1000px) {
  .services-content .box {
    flex-basis: 100%;
    margin-bottom: 35px;
  }

  .services-content .box:last-child {
    margin-bottom: 0;
  }

  .services-content .box p {
    padding: 0;
  }
}

@media (max-width: 720px) {
  #services {
    background-position: 80% 40%;
  }
}

.all-services-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.all-services-content p {
  padding: 0;
  text-align: left;
  margin-top: 30px;
}

footer {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
  background: #111111;
  padding: 60px 0;
}

.footer-area {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  width: 100%;
  justify-content: space-between;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

@media (max-width:900px) {
  .footer-area {
    flex-direction: column;
    align-items: center;
  }
}

.footer-area p {
  margin: 15px;
}

.credit {
  text-decoration: none;
  color: #fff;
}

.row-container {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
  justify-content: center;
}

.column {
  flex: 16%;
  max-width: 16%;
  padding: 0 4px;
  display: flex;
  justify-content: center;
  margin-top: 8px;
  margin-bottom: 8px;
  align-self: center;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 50%;
}

@media screen and (max-width: 1000px) {
  .column {
    flex: 50%;
    max-width: 50%;
  }
}

@media screen and (max-width: 600px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
}

/* pages */

.pages-area {
  min-height: 100vh;
}

.pages-content {
  display: flex;
  flex-direction: row;
  text-align: center;
  /* justify-content: space-evenly; */
  justify-content: center;
  gap: 70px;
  width: 100%;
  padding: 20px;
}

.pages-content p {
  text-align: left;
  padding: 0;
}

.text-area {
  max-width: 600px;
  padding: 20px;
  min-width: 300px;
  text-align: left;
}

.info-list {
  list-style: none;
  margin-top: 6px;
  margin-bottom: 30px;
}

#page-head {
  margin-top: 50px;
  margin-bottom: 50px;
  font-size: 50px;
  text-transform: uppercase;
}

@media (max-width:620px) {
  #page-head {
    font-size: 30px;
  }
}

.text-area h2 {
  margin-bottom: 20px;
  text-align: left;
}

.text-area h3 {
  margin-bottom: 20px;
  text-align: left;
}

.opening {
  margin-bottom: 25px;
}

.address {
  margin-bottom: 40px;
}

.address p {
  margin-top: 8px;
}

.address p a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

.opening h2 {
  margin-bottom: 0px;
}

.image-area {
  /* max-height: 500px; */
  max-width: 500px;
  padding: 20px;
}

.image-area img {
  width: 100%;
  height: auto;
}

.price-link {
  text-align: left;
  margin-bottom: 35px;
}

.price-link a {
  text-decoration: none;
  text-align: left;
  font-weight: bold;
  border: 1px solid #90caf9;
  color: #90caf9;
  padding: 9px 10px;
  background-color: #0a1929;
  border-radius: 5px;
}

.price-link a:hover {
  border: 1px solid #d1e3f2;
  background-color: #162b42;
  transition: 500ms;
}

@media (max-width:1200px) {
  .pages-content {
    flex-direction: column;
    align-items: center;
  }

  .image-area {
    padding: 0;
  }

  .text-area {
    padding: 0;
  }
}

.open.hide {
  display: none;
}

.close.show {
  display: block;
}

.close {
  display: none;
}

.pop-out {
  font-size: 30px;
}

table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
  border: 1px solid #dddddd;
  font-weight: bold;
}

td,
th {
  text-align: left;
  padding: 8px;
}

tr:nth-child(even) {
  background-color: #dddddd;
}

.price-details {
  margin-top: 30px;
}