body {
  width: 100vw;
  height: 100vh;
  margin: 0;
  background-color: darkgrey;
}

#preloader {
  background: #6a6a6a url(../img/spinner-2.gif) no-repeat center;
  color: #fff;
  top: 0;
  height: 100vh;
  width: 100vw;
  position: fixed;
  z-index: 999;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.logoheader {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.logoheader .logosholder {
  display: flex;
  width: 70%;
  flex-direction: row;
  justify-content: space-evenly;
}

.txtlogo {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: bold;
  font-style: italic;
}

@media (max-width: 768px) {
  nav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 50px;
    z-index: 998;
    -webkit-backdrop-filter: blur(25px) brightness(80%);
            backdrop-filter: blur(25px) brightness(80%);
    color: white;
    position: fixed;
    top: 0;
  }
  nav .navitem {
    display: none;
  }
  .container {
    width: 100%;
    height: 100%;
    background-color: #cda882;
    color: #f4e8db;
    scroll-snap-type: y proximity;
    overflow: hidden;
    overflow-y: scroll;
  }
  .container #scrolldown {
    display: none;
  }
  .container h2 {
    color: #fff;
  }
  .container .txtlogo {
    color: #fff;
  }
  .container section {
    margin: 5px;
    padding: 5px;
    font-family: Arial, Helvetica, sans-serif;
  }
  .container section:nth-of-type(1) {
    padding-top: 75px;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    color: #f4e8db;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  }
  .container section:nth-of-type(2) {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #f4e8db;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    -webkit-backdrop-filter: sepia(50%);
            backdrop-filter: sepia(50%);
  }
  .container section:nth-of-type(2) .aboutpanel {
    margin: 5%;
    padding: 15px;
    text-align: justify;
    text-justify: inter-word;
    background-color: rgba(0, 0, 0, 0.3);
  }
  .container section:nth-of-type(3) {
    background-color: #f4e8db;
    color: #cda882;
  }
  .container section:nth-of-type(4) {
    background-color: rgba(34, 34, 34, 0.2);
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    color: white;
  }
  .container section:nth-of-type(4) #partner-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
  }
  .container section:nth-of-type(4) #partner-container .partner {
    border-style: double;
    border-color: rgba(0, 0, 0, 0.3);
    width: 30%;
    height: 105px;
    min-height: 25px;
    max-height: 105px;
    -webkit-backdrop-filter: blur(5px) brightness(90%);
            backdrop-filter: blur(5px) brightness(90%);
    margin: 1px;
  }
  .container section:nth-of-type(4) #partner-container .partner .partner-logo {
    height: calc(100% - 25px);
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .container section:nth-of-type(4) #partner-container .partner .partner-logo img {
    width: 100%;
    max-width: 160px;
    max-height: 80px;
  }
  .container section:nth-of-type(4) #partner-container .partner .partner-name {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
  }
  .container section:nth-of-type(4) #partner-container .partner .partner-name a {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 0.5em;
    flex-grow: 5;
    margin: 5px;
  }
  .container section:nth-of-type(4) #partner-container .partner .partner-name img {
    height: 25px;
  }
  .container section:nth-of-type(5) iframe {
    display: none;
  }
  .container section:nth-of-type(5) footer {
    height: 100%;
    bottom: 0;
    z-index: 998;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 25px;
  }
  .container section:nth-of-type(5) footer small {
    bottom: 0;
    color: rgba(255, 255, 255, 0.8);
    margin: 10px;
  }
  .container section:nth-of-type(5) footer .footercol {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .container section:nth-of-type(5) footer .emails {
    flex-direction: row;
  }
  .container section:nth-of-type(5) footer div {
    height: 100%;
  }
  .container section:nth-of-type(5) footer div p {
    font-family: Arial, Helvetica, sans-serif;
    margin: 1px;
    color: rgba(255, 255, 255, 0.8);
  }
  .container section:nth-of-type(5) footer .addphone p {
    margin-bottom: 30px;
  }
}
@media (min-width: 769px) {
  nav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 50px;
    z-index: 998;
    -webkit-backdrop-filter: blur(25px) brightness(80%);
            backdrop-filter: blur(25px) brightness(80%);
    color: white;
    position: fixed;
    top: 0;
  }
  nav .navitem {
    width: 50%;
    height: 100%;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1em;
    color: white;
    text-decoration: none;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  nav .navitem {
    font-size: 0.7em;
  }
}
@media (min-width: 769px) {
  nav .navitem div {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  nav .navitem div:hover {
    background-color: rgba(0, 0, 0, 0.2);
  }
  .container {
    width: 100%;
    height: 100%;
    background-image: url(../img/bg2.gif);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    scroll-snap-type: y mandatory;
    overflow: hidden;
    overflow-y: scroll;
  }
  .container section {
    display: flex;
    scroll-snap-align: center;
    width: 100vw;
    height: 100vh;
  }
  .container section h1 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 2em;
    margin: 10px;
  }
  .container section:nth-of-type(1) {
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 75px;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    color: white;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  }
  .container section:nth-of-type(2) {
    font-family: Arial, Helvetica, sans-serif;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    -webkit-backdrop-filter: brightness(80%) grayscale(100%) sepia(50%) blur(1px);
            backdrop-filter: brightness(80%) grayscale(100%) sepia(50%) blur(1px);
  }
  .container section:nth-of-type(2) .aboutpanel {
    margin: 25%;
    padding: 15px;
    text-align: justify;
    text-justify: inter-word;
    background-color: rgba(0, 0, 0, 0.3);
  }
  .container section:nth-of-type(3) {
    font-family: Arial, Helvetica, sans-serif;
    flex-direction: row;
    justify-content: space-evenly;
    padding-top: 25px;
    align-items: center;
    color: white;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    -webkit-backdrop-filter: blur(10px) grayscale(100%);
            backdrop-filter: blur(10px) grayscale(100%);
  }
  .container section:nth-of-type(3) .pscontainer {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
  }
  .container section:nth-of-type(3) .pspanel {
    min-height: 100%;
    width: 40%;
    padding: 15px;
    text-align: justify;
    text-justify: inter-word;
    background-color: rgba(0, 0, 0, 0.3);
  }
  .container section:nth-of-type(4) {
    -webkit-backdrop-filter: blur(20px) grayscale(100%);
            backdrop-filter: blur(20px) grayscale(100%);
    background-color: rgba(102, 152, 233, 0.2);
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    color: white;
  }
  .container section:nth-of-type(4) #partner-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
  }
  .container section:nth-of-type(4) #partner-container .partner {
    border-style: double;
    border-color: rgba(0, 0, 0, 0.3);
    width: 9%;
    min-width: 80px;
    height: 25%;
    min-height: 25px;
    max-height: 105px;
    -webkit-backdrop-filter: blur(5px) brightness(90%);
            backdrop-filter: blur(5px) brightness(90%);
    margin: 10px;
  }
  .container section:nth-of-type(4) #partner-container .partner:hover {
    scale: 1.1;
  }
  .container section:nth-of-type(4) #partner-container .partner .partner-logo {
    height: calc(100% - 25px);
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .container section:nth-of-type(4) #partner-container .partner .partner-logo img {
    width: 100%;
    max-width: 160px;
    max-height: 80px;
  }
  .container section:nth-of-type(4) #partner-container .partner .partner-name {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
  }
  .container section:nth-of-type(4) #partner-container .partner .partner-name a {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 0.5em;
    flex-grow: 5;
    margin: 5px;
  }
  .container section:nth-of-type(4) #partner-container .partner .partner-name img {
    height: 25px;
  }
  .container section:nth-of-type(5) {
    -webkit-backdrop-filter: blur(10px) grayscale(100%);
            backdrop-filter: blur(10px) grayscale(100%);
  }
  .container section:nth-of-type(5) footer {
    width: 100%;
    height: 80px;
    padding: 25px;
    -webkit-backdrop-filter: blur(10px) brightness(80%);
            backdrop-filter: blur(10px) brightness(80%);
    position: fixed;
    bottom: 0;
    z-index: 998;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
  .container section:nth-of-type(5) footer small {
    flex: none;
    bottom: 0;
    color: rgb(135, 135, 135);
    margin: 10px;
  }
  .container section:nth-of-type(5) footer .footercol {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .container section:nth-of-type(5) footer div {
    height: 100%;
  }
  .container section:nth-of-type(5) footer div p {
    font-family: Arial, Helvetica, sans-serif;
    margin: 1px;
    margin-right: 50px;
    color: rgb(135, 135, 135);
  }
}
@media (min-width: 769px) and (min-width: 769px) and (max-width: 992px) {
  .container {
    scroll-snap-type: y proximity;
  }
  .container section {
    scroll-snap-align: start;
  }
  .container section h1 {
    font-size: 1em;
    margin: 5px;
  }
  .container section:nth-of-type(2) .aboutpanel {
    margin: 10%;
    padding: 10px;
  }
  .container section:nth-of-type(3) .pspanel {
    width: 48%;
    padding: 5px;
    font-size: 0.8em;
  }
  .container section:nth-of-type(4) {
    height: 100vw;
  }
  .container section:nth-of-type(4) #partner-container {
    margin-bottom: 50px;
  }
  .container section:nth-of-type(4) #partner-container .partner {
    width: 15%;
    margin: 1px;
  }
  .container section:nth-of-type(5) footer {
    height: 70px;
    padding: 5px;
  }
  .container section:nth-of-type(5) footer small {
    font-size: 0.3em;
  }
  .container section:nth-of-type(5) footer div p {
    font-size: 0.5em;
  }
}
@media (min-width: 769px) and (min-width: 993px) and (max-width: 1200px) {
  .container {
    scroll-snap-type: y proximity;
  }
  .container section {
    scroll-snap-align: start;
  }
  .container section h1 {
    font-size: 1em;
    margin: 5px;
  }
  .container section:nth-of-type(2) .aboutpanel {
    margin: 20%;
    padding: 10px;
  }
  .container section:nth-of-type(3) .pspanel {
    width: 40%;
    padding: 5px;
    font-size: 0.8em;
  }
  .container section:nth-of-type(4) {
    height: 100vw;
  }
  .container section:nth-of-type(4) #partner-container {
    margin-bottom: 55px;
  }
  .container section:nth-of-type(4) #partner-container .partner {
    width: 9%;
    margin: 1px;
  }
  .container section:nth-of-type(5) footer {
    height: 70px;
    padding: 5px;
  }
  .container section:nth-of-type(5) footer small {
    font-size: 0.3em;
  }
  .container section:nth-of-type(5) footer div p {
    font-size: 0.65em;
  }
}
@media (min-width: 769px) and (min-width: 1201px) and (max-width: 1399px) {
  .container section:nth-of-type(4) #partner-container {
    margin-bottom: 50px;
  }
  .container section:nth-of-type(4) #partner-container .partner {
    width: 8%;
    margin: 1px;
  }
  .container section:nth-of-type(5) footer {
    height: 70px;
    padding: 5px;
  }
  .container section:nth-of-type(5) footer small {
    font-size: 0.5em;
  }
  .container section:nth-of-type(5) footer div p {
    font-size: 0.7em;
  }
}/*# sourceMappingURL=main.css.map */