* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  height: 100%;
  position: relative;
  font-family: Arial, Helvetica, sans-serif;
  color: #999999;
}

a {
  text-decoration: none;
  cursor: pointer;
}

nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  min-height: 8vh;
  font-family: Arial, Helvetica, sans-serif;
  color: #999999;
  font-size: 16px;
  margin-top: 5px;
}

.logo {
  font-size: 16px;
  font-weight: normal;
}

.nav-links {
  display: flex;
  justify-content: space-around;
  width: 60%;
}

.nav-links li {
  list-style: none;
}

.nav-links a:hover {
  color: black;
}

.nav-links a {
  color: #999999;
  text-decoration: none;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: #999999;
  margin: 5px;
  transition: all 0.3s ease;
}

.burger {
  display: none;
  cursor: pointer;
}

.descriptionTEXT {
  display: none;
}

@media screen and (max-width: 1024px) {
  html,
  body {
    overflow-x: hidden;
  }

  .nav-links {
    position: absolute;
    right: 0px;
    height: 82vh;
    top: 8vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    background-color: white;
    width: 50%;
    transform: translateX(100%);
    transition: transform 0.5s ease-in;

    padding-bottom: 5vh;
  }

  .nav-links li {
    opacity: 0;
  }

  .burger {
    display: block;
  }

  .nav-links a:hover {
    color: black;
  }
}

.nav-active {
  transform: translateX(0%);
}

@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
  opacity: 0;
}

.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* GALLERY */
.row {
  display: -ms-flexbox;
  /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap;
  /* IE10 */
  flex-wrap: wrap;
  padding: 0 4px;
}

.column {
  -ms-flex: 25%;
  /* IE10 */
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

.column-film {
  -ms-flex: 50%;
  /* IE10 */
  flex: 50%;
  max-width: 50%;
  padding: 0 4px;
}

.column-muses {
  -ms-flex: 33%;
  /* IE10 */
  flex: 33%;
  max-width: 33%;
  padding: 0 4px;
}

.column-film img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

.column-muses img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

/*fade in*/
.container {
  position: relative;
  overflow: hidden;
}

.overlay {
  position: absolute;
  top: 8px;

  left: 0;

  height: 100%;
  width: 100%;
  opacity: 0;
  transition: 0.5s ease;
  background: rgba(0, 0, 0, 0.5);
}

.container:hover .overlay {
  opacity: 1;
}

.text {
  color: #fff;
  font-size: 15px;
  font-family: Arial, sans-serif;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

@media screen and (max-width: 800px) {
  .column,
  .column-film {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%;
  }
}

@media screen and (max-width: 600px) {
  .column,
  .column-film {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
  }
}

#page-container {
  position: relative;
  min-height: 100vh;
  padding-bottom: 3em;
}

#content-wrap {
  padding-bottom: 3em;
}

footer {
  position: absolute;
  height: 3em;
  width: 100%;
  bottom: 0;
}

.footer {
  color: #999999;
  font-size: 0.9em;
  font-family: Arial, sans-serif;
  text-align: center;
}

/*slider*/

.mySlides img {
  height: 90vh;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  display: block;
  margin-bottom: 10px;
}

.mySlides {
  display: none;
}

.slideshow-container {
  position: relative;
  margin: auto;
  clear: both;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 40vh;
  width: auto;
  padding: 10px;

  color: #999999;
  font-weight: bold;
  font-size: 28px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
  color: black;
}

.fade {
  --webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  -moz-animation-name: fade;
  -moz-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .mySlides img {
    width: 100%;
    height: auto;
    margin-top: 8px;
  }

  .prev,
  .next {
    color: white;
    top: 40%;
  }
}

@media only screen and (max-width: 1024px) {
  .mySlides img {
    margin-top: 8px;
  }
}

@media only screen and (min-width: 1024px) {
  .slideshow-container {
    margin-left: 20px;
    margin-right: 20px;
  }
}

/* thumbs*/

.row-tmb:after {
  content: '';
  display: table;
  clear: both;
}

.column-tmb {
  float: left;
  width: 5%;
}

/* NEW */

.row-tmb-center {
  display: flex;
  flex-direction: row;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}

.row-tmb-center img {
  margin-left: 1rem;
}

/* NEW */
.dot {
  opacity: 0.6;
  cursor: pointer;
  width: 10vh;
}

.active,
.dot:hover {
  opacity: 1;
}

@media only screen and (max-width: 1024px) {
  .row-tmb,
  .row-tmb-center {
    display: none;
  }
}

/*contact*/

.contact {
  margin-left: auto;
  margin-right: auto;
  width: 40%;
}

.warning {
  color: red;
}

label {
  font-family: Arial, sans-serif;
  color: #999999;
}

input[type='text'],
[type='email'],
select,
textarea {
  width: 100%;
  padding: 0.75em;
  border: 0.0625em solid #ccc;
  border-radius: 0.25em;
  box-sizing: border-box;
  margin-top: 0.3125em;
  margin-bottom: 1em;
  resize: vertical;
  font-size: 14px;
  font-family: Arial, sans-serif;
  color: #999999;
}

button {
  background-color: #999999;
  color: white;
  padding: 0.75em 1.25em;
  border: none;
  border-radius: 0.25em;
  cursor: pointer;
  text-decoration: none;
  outline: none;
}

button:hover {
  background-color: black;
}

#ContactUs {
  font-family: Arial, sans-serif;
  font-size: 1em;
  font-weight: normal;
  color: #999999;
  padding: 0;
  margin: 0;
}

@media only screen and (max-width: 800px) {
  .contact {
    width: 90%;
  }
  button {
    padding: 0.75em 0;
    width: 100%;
  }
}

/* video*/

.video {
  position: relative;
  width: 100%;
  padding-bottom: 56%;
}

.video iframe {
  position: absolute;
  top: 10px;
  left: 5%;
  width: 90%;
  height: 90%;
}

.vid {
  width: 100%;
  opacity: 0.6;
  cursor: pointer;
}

.vid:hover {
  opacity: 1;
}

@media only screen and (max-width: 1024px) {
  .film {
    display: table;
  }
}

/*about*/

.about {
  display: flex;

  margin-top: 3em;
  min-height: 100vh;
  padding: 0 5rem;
}

.about-img {
  padding: 2rem;
  max-width: 300px;
  margin: 0 auto;
}

.about-img img {
  width: 100%;
}

.about-text {
  font-family: Arial, sans-serif;
  font-size: 1em;
  color: #999999;
  padding: 2rem;
}

.about p {
  line-height: 1.5;
  margin: 0;
}

/*BLOG*/

.main img {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-bottom: 2rem;
}

.blog {
  margin-left: 10rem;
  margin-right: 8rem;
  color: #2d2d2d;
}

.last-post h1 {
  font-size: 3rem;
  color: #2d2d2d;
  font-weight: 780;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.last-post h1:hover {
  color: #999999;
}

.blog p,
ol {
  font-size: 1.1rem;
  line-height: 1.8rem;
  text-align: justify;
  font-family: Georgia, 'Times New Roman', Times, serif;
  color: #2d2d2d;
}

#date {
  color: #999999;
  text-align: end;
  font-family: Arial, Helvetica, sans-serif;
}

.last-post {
  margin-bottom: 2rem;
  border-bottom: rgba(153, 153, 153, 0.6) 1px solid;
  padding-bottom: 2rem;
}

.left-column h3 {
  font-weight: 780;
  font-size: 1.1rem;
}

.left-column a {
  color: #4c4c4c;
  font-size: 1rem;
  line-height: 1.8rem;
}

.left-column a:hover {
  color: #999999;
}

.posts {
  display: grid;
  grid-template-columns: 20% 20% 60%;
  margin-bottom: 2rem;
  position: relative;
}

.center-column img {
  width: 100%;
}

.right-column h1 {
  color: #2d2d2d;
  font-weight: 780;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  margin-left: 2rem;
  margin-bottom: 2rem;
}

.right-column h1:hover {
  color: #999999;
}

.right-column p {
  margin-left: 2rem;
}

.right-column {
  position: relative;
}

.right-column #date {
  position: absolute;
  right: 0;
  bottom: 0;
}

.line {
  height: 0;
  border-bottom: 1px #999999 solid;
  margin-left: 20%;
  margin-bottom: 2rem;
  opacity: 60%;
}

.article {
  margin-left: 7rem;
  margin-right: 8rem;
}

.article img {
  margin-bottom: 2rem;
  margin-top: 2rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.article h1 {
  color: #2d2d2d;
  font-weight: 780;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  margin-bottom: 2rem;
}

@media only screen and (max-width: 1024px) {
  .blog {
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .left-column {
    margin-bottom: 2rem;
  }

  .posts {
    display: grid;
    grid-template-columns: 100%;
    margin-bottom: 3rem;
  }

  .center-column img {
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
  }

  .right-column h1,
  .right-column p {
    margin-left: 0;
  }

  .line {
    margin-left: 0;
  }

  .article {
    margin-left: 0;
    margin-right: 0;
  }
  .about {
    flex-direction: column;
    padding: 0 2rem;
  }
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 20vh;
  right: 0;
  z-index: 99;
  border: none;
  outline: none;
  background: #999999;
  cursor: pointer;
  padding: 15px;
  font-size: 24px;
  color: white;
}
