/*
LC
oranzs - rgb(236,105,20)

TO
green - rgb(1,126,68)
*/
@import url('https://fonts.googleapis.com/css?family=Raleway');

html,
body {
  scroll-behavior: smooth;
  font-family: 'Raleway', sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
}

header {
  position: fixed;
  padding: 0;
  margin: 0;
  width: 100%;
  z-index: 9001;
  border-bottom: 3px solid rgb(236, 105, 20);
}

nav {
  padding: 10px;
  padding-left: 50px;
  padding-right: 50px;
  background: #f4f4f4;
  height: 100px;
  display: grid;
  grid-template-columns: 2fr 1fr;
}

#toggle {
  display: none;
}

#menu {
  align-self: center;
}

#menu a {
  font-size: 28px;
  margin-right: 30px;
  text-decoration: none;
  color: black;
  transition-property: color, font-size, font-weight;
}

#menu a:hover {
  color: rgb(236, 105, 20);
  font-weight: 700;
}

#menu img {
  height: 20px;
  background: black;
  padding: 2px;
}

#menu img:hover {
  background: rgb(236, 105, 20);
}

#logolink {
  justify-self: end;
}

#logoimg {
  height: 60px;
  padding-top: 20px;
}

#logolink_s {
  display: none;
}

#logoimg_s {
  height: none;
}

.anchor {
  display: block;
  position: relative;
  top: -140px;
  visibility: hidden;
}

#splash {
  background: url('splash_bg.jpg') center;
  background-size: cover;
  padding-top: 70px;
  height: 700px;
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 3px solid rgb(236, 105, 20);
}

#backlight {
  background: blacklight;
  opacity: 0.0;
  justify-self: center;
  align-self: center;
  text-align: center;
}

#Stitle {
  font-size: 35px;
  color: #eeeeee;
  margin: 0;
  padding: 20px;
}

h1 {
  font-size: 35px;
  color: rgb(236, 105, 20);
}

h3 {
  font-size: 20px;
  color: black;
}

.article {
  width: 65%;
  margin: auto;
  border-bottom: 3px solid rgb(236, 105, 20);
}

.article p {
  color: black;
}

.article ul li {
  color: black;
  padding-bottom: 4px;
  list-style-image: url(listicon2.png);
}

.gallerygrid {
  text-align: center;
  margin: auto;
}

.gallerimg {
  background: black;
  max-width: 200px;
  margin: 10px;
  padding: 5px;
  transition: 0.25s;
}

.gallerimg:hover {
  transform: scale(1.1);
  background: rgb(236, 105, 20);
}

#Contacts {
  border-bottom: 0;
}

#Contacts a {
  color: black;
}

#Contacts a:visited {
  color: black;
}

#Contacts a:hover {
  font-weight: 700;
}

#szlogo {
  height: 200px;
  position: fixed;
  bottom: 0;
  right: 0;
}

footer {
  background: rgb(1, 126, 68);
  text-align: center;
  margin: 0;
  padding: 10px;
}

footer img {
  height: 150px;
}

@media(max-width:1000px) {
  nav {
    padding-left: 0px;
    padding-right: 25px;
    height: 50px;
  }

  #toggle {
    padding-left: 25px;
    grid-column: 1;
    display: block;
    font-size: 35px;
    align-self: center;
    justify-self: start;
    cursor: pointer;
    color: rgb(236, 105, 20);
    border: none;
    background: none;
  }

  #menu {
    width: 100%;
    background: #ffffff;
    grid-row: 2;
    position: fixed;
    top: -100%;
    transition: top 350ms 100ms;
    text-align: center;
    border-bottom: 3px solid rgb(236, 105, 20);
  }

  #menu a {
    font-size: 20px;
    display: block;
    padding: 15px;
    border-bottom: 3px solid rgb(236, 105, 20);
    margin-right: 0px;
  }

  #menu a:hover {
    font-size: 20px;
  }

  .anchor {
    top: -90px;
  }

  #splash {
    height: 400px;
  }

  #menu img {
    height: 25px;
    background: rgb(236, 105, 20);
    padding: 3px;
  }

  #toggle:focus+#menu {
    top: 73px;
    transition-delay: 0;
  }

  #logolink {
    display: none;
  }

  #logoimg {
    display: none;
  }

  #logolink_s {
    display: block;
    justify-self: end;
  }

  #logoimg_s {
    display: block;
    height: 50px !important;
  }

  .article {
    width: 90%;
  }

  .gallerimg {
    background: rgb(236, 105, 20);
    max-width: 100px;
    margin: 5px;
    padding: 5px;
    transition: 0.25s;
  }

  .gallerimg:hover {
    transform: scale(1.0);
  }

  #szlogo {
    height: 150px;
    position: fixed;
    bottom: 0;
    right: 0;
  }

  footer {
    text-align: left;
    height: 150px;
  }

  footer img {
    height: 50px;
  }

  #footerdiv {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  #footerdiv a {
    align-self: start;
  }

  h1 {
    font-size: 30px;
    text-align: center;
  }

  .article p {
    font-size: 14px;
  }

  .article ul li {
    font-size: 14px;
  }
}