* {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  box-sizing: border-box;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

html {
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  background-color: antiquewhite;
  user-select: none;
  color: #333;
}

a {
  text-decoration: none;
  color: #333;
}

h2 {
  text-transform: uppercase;
}

.main-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  min-height: 100%;
  margin: 0 auto;
  background-color: beige;
}

header {
  flex: 0 0 auto;
}

main {
  flex: 1 0 auto;
}

.logoLine {
  margin: 0 5px;
  display: flex;
  justify-content: space-between;
}

.logo {
  width: 80%;
}

.locale {
  display: flex;
}
.locale > a {
  text-transform: uppercase;
  display: inline-block;
}
.locale > .locale_eng {
  margin-right: 10px;
}

.topNav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
  margin: 0 auto;
  padding: 5px 0;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}
.topNav > a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2px;
  width: 140px;
  background-color: #eaeab4;
  border-radius: 5px;
}
.topNav > a:hover {
  background-color: #dede8d;
}
.topNav > a:active {
  background-color: #dede8d;
}

.sliderPic {
  height: 400px;
  width: 100%;
  font-weight: 100;
}

.videoRow {
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

video {
  height: 160px;
}
video:hover {
  cursor: pointer;
  opacity: 0.8;
}

p {
  text-indent: 25px;
  text-align: justify;
  padding: 0 20px;
  margin: 8px auto;
}

footer {
  flex: 0 0 auto;
  border-top: 1px solid #333;
  padding: 20px;
}

.breadcrumps {
  display: flex;
  justify-content: space-between;
}

.footer_menu > a {
  margin-right: 20px;
  font-style: italic;
}

.wrapper_slider {
  width: 1200px;
}

.videoRow > .video_sample > video {
  height: 180px;
}
.videoRow > .video_sample > video:hover {
  cursor: pointer;
  opacity: 0.8;
}

.video_sample {
  position: relative;
  margin: 5px;
}
.video_sample > .square_play {
  position: absolute;
  left: 40%;
  top: 30%;
  font-size: 4rem;
  opacity: 0.6;
}

.hidden {
  display: none;
}

.center {
  text-align: center;
}

.upperCase {
  text-transform: uppercase;
}

.line_through {
  text-decoration: line-through;
}

@media screen and (max-width: 1030px) {
  .topNav > a {
    font-size: 12px;
    padding: 0 5px;
    width: 100px;
  }
}
@media screen and (max-width: 780px) {
  .topNav > a {
    font-size: 11px;
    width: 90px;
  }
  footer > .breadcrumps {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer_menu {
    margin-bottom: 10px;
  }
  .footer_menu > a {
    text-transform: uppercase;
    text-decoration: underline;
  }
}
@media screen and (max-width: 670px) {
  .topNav {
    flex-direction: column;
  }
  .topNav > a {
    margin-bottom: 5px;
    width: fit-content;
    text-align: left;
  }
  .topNav > a:first-child {
    line-height: normal;
  }
  .sliderPic {
    height: auto;
  }
}
@media screen and (max-width: 420px) {
  .logoLine {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .topNav {
    display: flex;
    flex-direction: column;
    align-items: start;
  }
  .topNav > a {
    width: fit-content;
  }
  .topNav > a:first-child {
    line-height: normal;
  }
  .sliderPic {
    height: auto;
  }
  .videoRow {
    align-items: center;
  }
  .video_sample {
    height: auto;
    width: 100%;
  }
  .video_sample > video {
    width: 100%;
    margin-bottom: 10px;
  }
  .logo {
    text-align: center;
  }
}/*# sourceMappingURL=main.css.map */