* {
  -webkit-tap-highlight-color: transparent;
}

:root {
  --white: #fff;
  --black: #000;
}

html {
  overflow-y: overlay;
  overflow-x: hidden;
  scroll-behavior: smooth;
  box-sizing: border-box;
}

@font-face {
  font-family: Modern;
  src: url(../fonts/MuseoModerno-VariableFont_wght.ttf);
}

body {
  background-color: black;
  font-family: 'Modern', cursive;
}

h1 {
  color: white;
}

h2 {
  color: white;
}

p {
  color: white;
}

a {
  color: white;
  cursor: pointer;
}

hr {
  border: 1px solid #111;
}

::selection {
  background: #ffffffa2;
  color: black;
}

::-webkit-scrollbar {
  width: 0.5vw;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  -webkit-border-radius: 50px;
  border-radius: 50px;
  background: #555;
  border-color: #555;
}

::-webkit-scrollbar-thumb:hover {
  background: grey;
}

#when-click {
  width: 100%;
  height: 100vh;
  position: fixed;
  bottom: -100%;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  transition: bottom 0.2s ease-in-out;
  z-index: 3000;
}

#when-click p {
  font-size: 1.6vw;
  color: white;
  animation: loader 2s infinite;
}

#preloader {
  width: 100%;
  height: 100%;
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: black;
  z-index: 99999;
  overflow: hidden;
  transform: translateY(0);
  transition: transform 1s ease-in-out;
}

#preloader.slide-up {
  transform: translateY(-100%);
}

#status {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  transform: translateY(0);
  transition: transform 0.5s ease-in-out;
}

#status.slide-up {
  transform: translateY(-100%);
}

#status p {
  color: white;
  font-size: 1.5vw;
  animation: loader 2s infinite;
}

@keyframes loader {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.header-main {
  position: absolute;
  width: 100%;
  height: 10vh;
  display: flex;
  justify-content: space-between;
  z-index: 1000;
}

.header-main-logo {
  width: fit-content;
  height: 100%;
  padding-left: 3vw;
  margin-top: 4vh;
}

.header-main-logo h1 {
  font-size: 1.3vw;
  font-weight: 900;
}

.header-main-logo i {
  color: coral;
}

.header-main-nav {
  width: fit-content;
  height: 100%;
  //background-color: rgb(255, 0, 21);
}

.header-main-nav ul {
  margin-right: 2vw;
  margin-top: 2vh;
}

.header-main-nav ul li {
  display: inline;
  float: left;
  margin-left: 4vw;
  line-height: 10vh;
}

.header-main-nav ul li a {
  padding: 1vw;
  font-size: 1vw;
  text-decoration: solid underline transparent;
  text-underline-offset: 0.5vh;
  transition: 0.2s ease-in-out;
  color: white;
}

.header-main-nav ul li a:hover {
  color: white;
  text-decoration: solid underline white;
  text-underline-offset: 1vh;
}

.header-main-nav .menu {
  padding: 0 1.5vw;
  color: white;
  border-radius: 10vw;
  border: 1px solid white;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.header-main-nav .menu:hover {
  background-color: white;
  color: black;
}

.mob-menu {
  display: none;
  margin: 0;
}

#side-nav {
  width: 100%;
  height: 100%;
  right: -100%;
  top: 0;
  border-radius: 40vw;
  position: fixed;
  background-color: #000;
  transition: all 0.8s ease-in-out;
  overflow: hidden;
  z-index: 2000;

}

.close-nav {
  width: 100%;
  float: right;
}

.fa-xmark {
  float: right;
  font-size: 6vw;
  float: right;
  color: grey;
  transition: all 0.3s ease-in-out;
  margin-top: 4vh;
  margin-right: 4vw;
  cursor: pointer;
}

.fa-xmark:hover {
  transform: scale(85%);
  color: lightgrey;
}

#side-nav-links {
  width: 100%;
  transition: all 1s ease-in-out;
  margin-left: 100vw;
}

#side-nav-links a {
  color: white;
  text-decoration-line: none;
  font-size: 8vw;
  line-height: 16vh;
  font-weight: 900;
  text-align: center;
}

#side-nav-links li {
  width: fit-content;
  color: white;
  font-size: 1vw;
  text-transform: uppercase;
}

#side-nav-links li:hover a {
  color: transparent;
  -webkit-text-stroke: 1px white;
}

main {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

picture {
  margin-top: 25vh;
  width: 95%;
  height: 60vh;
  background-image: url("../img/dessert.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 5vw;
}

picture h1 {
  font-size: 9vw;
  font-weight: 900;
}


.loop-text {
  display: flex;
  white-space: nowrap;
  margin: 10vh 0;
}

.list {
  display: flex;
  align-items: top;
  -webkit-animation: loop 20s infinite linear;
  animation: loop 20s infinite linear;
}

.item-txt {
  font-size: 5vw;
  font-weight: 900;
  text-transform: uppercase;
  color: transparent;
  font-family: Modern, cursive;
  -webkit-text-stroke: 5px #555;
}

.item-d {
  display: inline;
}

.item-dot {
  max-width: 20px;
  max-height: 20px;
  margin: -14px 50px;
  padding: 10px;
  border-radius: 50%;
  display: inline-block;
  transform: translateY(-30px);
}

.dot-r {
  background-color: lightgrey;
}

.dot-b {
  background-color: lightgrey;
}

.dot-g {
  background-color: lightgrey;
}

.dot-y {
  background-color: lightgrey;
}

.dot-t {
  background-color: lightgrey;
}

@keyframes loop {
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}


.section1 {
  width: 100%;
  margin: 20vh 0;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: row;
}

.section-1 {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: row;
  margin: 10vh 0;
}

.section-1-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0 2vw;
}

.section-1-1 img {
  border-radius: 3vw;
}

.section-1-2 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: top;
  flex-direction: row;
  margin-top: 1vh;
}

.section-1-3 {
  width: fit-content;
  display: flex;
  justify-content: left;
  align-items: left;
  flex-direction: column;
}

.section-1-3 h1 {
  font-size: 1.7vw;
}

.section-1-3 p {
  font-size: 1vw;
  color: lightgrey;
}

.section-1-3 button {
  width: fit-content;
  font-size: 1vw;
  background-color: white;
  color: black;
  border: 2px solid white;
  border-radius: 3vw;
  padding: 0.5vw 2vw;
  margin-top: 2vh;
  transition: 0.3s;
}

.section-1-3 button:hover {
  background-color: transparent;
  color: white;
}

.section-1-4 {
  width: fit-content;
  display: flex;
  justify-content: right;
  align-items: center;
  flex-direction: column;
}

.section-1-4 h1 {
  font-size: 1.5vw;
  color: lightgrey;
}

.section-1-4 p {
  font-size: 1vw;
  text-decoration: line-through;
  color: grey;
}

.section-2 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin: 30vh 0;
}

.section-2-1 {
  width: 50vw;
  height: 100vh;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  background-image: url("../img/art&culture.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 3vw;
  margin: 0 1.5vw;
  padding-bottom: 5vh;
}

.section-2-1 h1 {
  color: white;
  font-size: 4vw;
}

.section-2-1 p {
  color: white;
  font-size: 1.5vw;
  margin-bottom: -2vh;
}

.section-2-1 button {
  width: 40%;
  text-align: center;
  font-size: 1.2vw;
  color: white;
  border: 1px solid white;
  padding: 1.2vw;
  border-radius: 3vw;
  transition: 0.3s;
}

.section-2-1 button:hover {
  background-color: white;
  color: black;
}

.comment {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10vh 0;
}

#disqus_thread {
  width: 90%;
}

footer {
  position: sticky;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1001;
  padding: 6vw 5vw;
  border-top: 2px solid #111;
  border-radius: 50px 50px 0 0;
  background-color: rgb(0, 0, 0);
}

footer .site-map {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: flex-start;
}

.site-map .site-map-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-map .site-map-links {
  display: flex;
  flex-direction: row;
}

.site-map-links ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 10vw;
}

.site-map-links ul li a {
  color: rgb(236, 236, 236);
}

.site-map-links ul li a:hover {
  color: grey;
  text-decoration-line: underline;
}

.site-map-links ul p {
  color: grey;
  margin-bottom: 1vh;
}

.site-map-links p:nth-last-child(2) {
  color: grey;
  margin-top: 2vh;
}

.copy-right {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  margin-top: 20vh;
}

.copy-right p {
  font-size: 1vw;
  color: grey;
}

.copy-right a {
  font-size: 1vw;
  color: grey;
  text-decoration-line: underline;
}

.copy-right a:hover {
  color: white;
}

@media only screen and (max-width: 992px) {
  ul {
    display: none;
  }

  .mob-menu {
    display: block;
    border: 1px solid white;
    border-radius: 30px;
    padding: 10px;
    margin-top: 30px;
    margin-right: 30px;
    position: fixed;
    top: 0;
    right: 0;
    transition: 0.3s;
  }

  .mob-menu:hover {
    color: black;
    border: 1px solid white;
    background-color: white;
  }

  #side-nav {
    width: 100%;
    height: 100%;
    right: -100%;
    top: 0;
    border-radius: 50%;
    position: fixed;
    background-color: #000;
    transition: all 0.8s ease-in-out;
    overflow: hidden;
    z-index: 2000;

  }

  .close-nav {
    width: 100%;
    float: right;
  }

  .fa-xmark {
    float: right;
    font-size: 60px;
    float: right;
    color: grey;
    transition: all 0.3s ease-in-out;
    margin-top: 30px;
    margin-right: 30px;
  }

  .fa-xmark:hover {
    transform: scale(85%);
    color: lightgrey;
  }

  #side-nav-links {
    width: 100%;
    height: 90%;
    transition: all 1s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  #side-nav-links a {
    color: white;
    text-decoration-line: none;
    font-size: 60px;
    line-height: 80px;
    font-weight: 600;
    text-align: center;
  }

  #side-nav-links li {
    width: fit-content;
    color: white;
    margin-left: -40px;
    font-size: 10px;
    text-transform: uppercase;
  }

  #side-nav-links li:hover a {
    color: transparent;
    -webkit-text-stroke: 1px white;
  }

  .header-main-nav .menu {
    padding: 14px;
  }

  .header-main-logo {
    width: fit-content;
    height: 100%;
    padding-left: 30px;
    margin-top: 50px;
  }

  .header-main-logo h1 {
    font-size: 16px;
    font-weight: 900;
  }

  .header-main-logo i {
    color: coral;
    font-size: 16px;
    font-weight: 900;
  }

  #when-click p {
    font-size: 20px;
    color: white;
  }

  #preloader {
    width: 100%;
    height: 100%;
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: black;
    z-index: 99999;
    overflow: hidden;
    transform: translateY(0);
    transition: transform 1s ease-in-out;
  }

  #preloader.slide-up {
    transform: translateY(-100%);
  }

  #status {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
  }

  #status p {
    color: white;
    font-size: 20px;
  }

  main {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  picture {
    margin-top: 0;
    width: 100%;
    height: 500px;
    background-image: url("../img/dessert.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 0px;
  }

  picture h1 {
    font-size: 60px;
    font-weight: 900;
  }

  .loop-text {
    display: flex;
    white-space: nowrap;
    margin: 100px 0;
  }

  .list {
    display: flex;
    align-items: top;
    -webkit-animation: loop 10s infinite linear;
    animation: loop 10s infinite linear;
  }

  .item-txt {
    font-size: 35px;
    font-weight: 600;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 2px #444;
  }

  .item-d {
    display: inline;
  }

  .item-dot {
    max-width: 5px;
    max-height: 5px;
    margin: 0 30px;
    padding: 5px;
    border-radius: 50%;
    display: inline-block;
    transform: translateY(0px);
  }

  .dot-r {
    background-color: #999;
  }

  .dot-b {
    background-color: #999;
  }

  .dot-g {
    background-color: #999;
  }

  .dot-y {
    background-color: #999;
  }

  .dot-t {
    background-color: #999;
  }

  @keyframes loop {
    100% {
      -webkit-transform: translateX(-100%);
      transform: translateX(-100%);
    }
  }

  .section1 {
    width: 100%;
    margin: 200px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
  }

  .section-1 {
    width: 94%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    margin: 20px 0;
  }

  .section-1-1 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0 2%;
    padding: 10px;
    border-radius: 10px;
    background-color: #111;
  }

  .section-1-1 img {
    width: 150px;
    border-radius: 10px;
  }

  .section-1-2 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 0px;
  }

  .section-1-3 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .section-1-3 h1 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 20px;
  }

  .section-1-3 p {
    font-size: 10px;
    color: lightgrey;
  }

  .section-1-3 button {
    width: fit-content;
    font-size: 12px;
    background-color: white;
    color: black;
    border: 2px solid white;
    border-radius: 50px;
    padding: 10px 20px;
    margin-top: 20px;
    transition: 0.3s;
    font-weight: 600;
  }

  .section-1-3 button:hover {
    background-color: transparent;
    color: white;
  }

  .section-1-4 {
    width: fit-content;
    display: flex;
    justify-content: right;
    align-items: center;
    flex-direction: column;
    margin-top: 20px;
  }

  .section-1-4 h1 {
    font-size: 20px;
    color: lightgrey;
    font-weight: 600;
  }

  .section-1-4 p {
    font-size: 20px;
    text-decoration: line-through;
    color: grey;
  }

  .section-2 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 200px 0;
  }

  .section-2-1 {
    width: 90%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-image: url("../img/art&culture.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    margin-bottom: 100px;
  }

  .section-2-1 h1 {
    color: white;
    font-size: 30px;
    font-weight: 900;
  }

  .section-2-1 p {
    color: white;
    font-size: 20px;
    margin-bottom: 0px;
  }

  .section-2-1 button {
    width: 70%;
    text-align: center;
    font-size: 18px;
    color: white;
    border: 1px solid white;
    padding: 10px;
    margin-top: 100px;
    border-radius: 30px;
    transition: 0.3s;
  }

  .section-2-1 button:hover {
    background-color: white;
    color: black;
  }

  footer {
    position: sticky;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 1001;
    border-top: 2px solid #111;
    border-radius: 60px 60px 0 0;
    background-color: rgb(0, 0, 0);
  }

  footer .site-map {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .site-map .site-map-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
  }

  .site-map-logo h1 {
    margin-top: 30px;
  }

  .site-map .site-map-links {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-direction: row;
    margin: 0;
    padding: 0;
  }

  .site-map-links ul {
    display: flex;
    justify-content: center;
    align-items: left;
    flex-direction: column;
    margin: 150px 0;
    padding: 0;
  }

  .site-map-links ul li a {
    color: rgb(236, 236, 236);
    font-size: 14px;
  }

  .site-map-links .email-text {
    font-size: 10px;
  }

  .site-map-links ul li a:hover {
    color: grey;
    text-decoration-line: underline;
  }

  .site-map-links ul p {
    color: gray;
    margin: 0px 0;
    font-size: 10px;
  }

  .copy-right {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: row;
    margin: 0;
    padding: 0;
  }

  .copy-right p {
    font-size: 10px;
    color: grey;
  }

  .copy-right a {
    font-size: 14px;
    color: grey;
    text-decoration-line: underline;
  }

  .copy-right a:hover {
    color: white;
  }
}