* {
  -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;
}

::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;
  }
}

.weatherwidget-io {
  margin: 100px 0;
}

.map {
  display: flex;
  justify-content: center;
}

.homemap {
  width: 90%;
  height: 100vh;
  border: none;
  filter: grayscale(100%) invert(100%);
  margin: 5vh 0;
  border-radius: 2vw;
}

.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: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

main .main-video {
  width: 100%;
  height: 70vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-video video {
  width: 100%;
}

main .main-text {
  width: 100%;
  height: 30vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}

.main-text h1 {
  font-size: 8vw;
  margin-left: 2vw;
}

.main-text p {
  width: 30vw;
  font-size: 1vw;
  margin-right: 4vw;
}



#slider {
  width: 100%;
}

.slider-style2 {
  width: 100%;
  position: relative;
}

.slider-style2 img {
  width: 47vw;
  height: 68vh;
  cursor: grab;
  border-radius: 2vw;
  filter: brightness(80%);
}

.slider-style2 img:hover {
  filter: brightness(50%);
}

.slider-style2 h1 {
  font-size: 1.5vw;
  font-weight: 600;
  position: absolute;
  bottom: 10vh;
  left: 1vw;
  z-index: 100;
  cursor: pointer;
}

.slider-style2 h1:hover {
  text-decoration-line: underline;
}

.slider-style2 p {
  font-size: 1vw;
  position: absolute;
  bottom: 5vh;
  left: 1vw;
  z-index: 100;
  cursor: grab;
}


#popular {
  width: 100%;
}


.slider-con {
  width: 100%;
  margin: 10vh 0;
}

.slider-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 4vh;
}

.slider-header h1 {
  font-size: 2.5vw;
  margin-left: 3vw;
}

.slider-header button {
  font-size: 1vw;
  width: 15vw;
  height: 8vh;
  font-weight: 900;
  color: white;
  background-color: transparent;
  border: 2px solid white;
  text-align: center;
  margin-right: 3vw;
  transition: 0.3s ease-in-out;
  border-radius: 3vw;
}

.slider-header button:hover {
  color: black;
  background-color: white;
  border: 2px solid white;
}

.slider-header button i {
  color: white;
  font-weight: 900;
  transition: 0.3s ease-in-out;
}

.slider-header button:hover i {
  color: black;
  margin-left: 1vw;
}

#resort-slider {
  width: 100%;
}

.slider-style1 {
  width: 100%;
  position: relative;
}

.slider-style1 img {
  width: 25.5vw;
  height: 75vh;
  cursor: grab;
  border-radius: 2vw;
  filter: brightness(80%);
}

.slider-style1 img:hover {
  filter: brightness(50%);
}

.slider-style1 h1 {
  font-size: 1.5vw;
  font-weight: 600;
  position: absolute;
  bottom: 9vh;
  left: 1vw;
  z-index: 100;
  cursor: pointer;
}

.slider-style1 h1:hover {
  text-decoration-line: underline;
}

.slider-style1 p {
  font-size: 1vw;
  position: absolute;
  bottom: 5vh;
  left: 1vw;
  z-index: 100;
  cursor: grab;
}



#sights {
  width: 100%;
}

.slider-style3 {
  width: 100%;
  position: relative;
}

.slider-style3 img {
  width: 40vw;
  height: 55vh;
  cursor: grab;
  border-radius: 1vw;
  filter: brightness(80%);
}

.slider-style3 img:hover {
  filter: brightness(50%);
}

.slider-style3 h1 {
  font-size: 1.5vw;
  font-weight: 600;
  position: absolute;
  bottom: 10vh;
  left: 1vw;
  z-index: 100;
  cursor: pointer;
}

.slider-style3 h1:hover {
  text-decoration-line: underline;
}

.slider-style3 p {
  font-size: 1vw;
  position: absolute;
  bottom: 5vh;
  left: 1vw;
  z-index: 100;
  cursor: grab;
}



.yt-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 20vh 0;
}

.yt-section img {
  width: 90%;
  border-radius: 10vw;
  transition: 0.3s ease-in-out;
}

.yt-section p {
  width: 60%;
  font-size: 2vw;
  margin: 8vh 0;
}

.yt-vids {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: row;
}

#yt-vid {
  width: 20vw;
  height: 40vh;
  margin-left: 2vw;
  border-radius: 10vw;
}

.qanda {
  margin: 0 auto;
  padding: 4rem;
  width: 100%;
}

.accordion .accordion-item {
  border-bottom: 1px solid lightgrey;
}

.accordion .accordion-item button[aria-expanded='true'] {
  border-bottom: 1px solid white;
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: lightgrey;
  font-size: 1.15rem;
  border: none;
  background: none;
  outline: none;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: white;
}

.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: white;
  border: 1px solid white;
}

.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: '';
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}

.accordion button .icon::after {
  display: block;
  position: absolute;
  content: '';
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.accordion button[aria-expanded='true'] {
  color: white;
}

.accordion button[aria-expanded='true'] .icon::after {
  width: 0;
}

.accordion button[aria-expanded='true']+.accordion-content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
  background-color: transparent;
}

.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content p {
  font-size: 1rem;
  margin: 2em 0;
  color: white;
  padding: 0 1vw;
}

.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%);
  }
}

.comment {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20vh 0;
}

#disqus_thread {
  width: 95%;
}

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: 600px) {
  ul {
    display: none;
  }

  .mob-menu {
    display: block;
    margin-top: 30px;
    margin-right: 30px;
    position: fixed;
    top: 0;
    right: 0;
  }

  #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: 80%;
    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: 900;
    text-align: center;
  }

  #side-nav-links li {
    width: fit-content;
    color: white;
    margin-left: -40px;
    font-size: 10px;
    margin-left: -50px;
    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;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 130px;
  }

  main .main-video {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .main-video video {
    width: 100%;
  }

  main .main-text {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .main-text h1 {
    width: 90%;
    font-size: 60px;
    text-align: center;
    margin: 0;
    margin-top: 50px;
  }

  .main-text p {
    width: 70%;
    font-size: 14px;
    margin: 0;
    text-align: center;
  }



  #slider {
    width: 100%;
  }

  .slider-style2 {
    width: 100%;
    position: relative;
  }

  .slider-style2 img {
    width: 230px;
    height: 170px;
    border-radius: 20px;
    filter: brightness(80%);
  }

  .slider-style2 img:hover {
    filter: brightness(50%);
  }

  .slider-style2 h1 {
    width: 60%;
    font-size: 18px;
    font-weight: 600;
    position: absolute;
    bottom: 30px;
    left: 15px;
    z-index: 100;
  }

  .slider-style2 h1:hover {
    text-decoration-line: underline;
  }

  .slider-style2 p {
    font-size: 14px;
    position: absolute;
    bottom: 30px;
    left: 15px;
    z-index: 100;
  }


  #popular {
    width: 100%;
  }


  .slider-con {
    width: 100%;
    margin: 200px 0;
  }

  .slider-header {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 40px;
  }

  .slider-header h1 {
    font-size: 20px;
    margin-left: 0px;
  }

  .slider-header button {
    font-size: 11px;
    width: 100px;
    height: 40px;
    color: white;
    background-color: transparent;
    border: 2px solid white;
    text-align: center;
    margin-right: 0px;
    transition: 0.3s ease-in-out;
    border-radius: 50px;
  }

  .slider-header button:hover {
    color: black;
    background-color: white;
    border: 2px solid white;
  }

  #resort-slider {
    width: 100%;
  }

  .slider-style1 {
    width: 100%;
    position: relative;
  }

  .slider-style1 img {
    width: 230px;
    height: 350px;
    border-radius: 30px;
    filter: brightness(80%);
  }

  .slider-style1 img:hover {
    filter: brightness(50%);
  }

  .slider-style1 h1 {
    width: 60%;
    font-size: 18px;
    position: absolute;
    bottom: 60px;
    left: 15px;
    z-index: 100;
  }

  .slider-style1 h1:hover {
    text-decoration-line: underline;
  }

  .slider-style1 p {
    font-size: 12px;
    position: absolute;
    bottom: 40px;
    left: 15px;
    z-index: 100;
  }

  #sights {
    width: 100%;
  }

  .slider-style3 {
    width: 100%;
    position: relative;
  }

  .slider-style3 img {
    width: 230px;
    height: 200px;
    border-radius: 15px;
    filter: brightness(80%);
  }

  .slider-style3 img:hover {
    filter: brightness(40%);
  }

  .slider-style3 h1 {
    width: 60%;
    font-size: 18px;
    font-weight: 600;
    position: absolute;
    bottom: 50px;
    left: 15px;
    z-index: 100;
  }

  .slider-style3 h1:hover {
    text-decoration-line: underline;
  }

  .slider-style3 p {
    font-size: 12px;
    position: absolute;
    bottom: 30px;
    left: 15px;
    z-index: 100;
  }

  .yt-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 100px 0;
  }

  .yt-section img {
    width: 100%;
    border-radius: 0px;
    transition: 0.3s ease-in-out;
  }

  .yt-section p {
    width: 90%;
    font-size: 20px;
    margin: 100px 0;
  }

  .yt-vids {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  #yt-vid {
    width: 90%;
    margin-left: 0px;
    margin-bottom: 100px;
    border-radius: 50px;
    padding: 10px 0;
  }

  .qanda {
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
  }

  .accordion .accordion-item {
    border-bottom: 1px solid lightgrey;
  }

  .accordion .accordion-item button[aria-expanded='true'] {
    border-bottom: 1px solid white;
  }

  .accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 0;
    color: lightgrey;
    font-size: 1.15rem;
    border: none;
    background: none;
    outline: none;
  }

  .accordion button:hover,
  .accordion button:focus {
    cursor: pointer;
    color: white;
  }

  .accordion button:hover::after,
  .accordion button:focus::after {
    cursor: pointer;
    color: white;
    border: 1px solid white;
  }

  .accordion button .accordion-title {
    padding: 1em 1.5em 1em 0;
  }

  .accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 0;
    width: 22px;
    height: 22px;
    border: 1px solid;
    border-radius: 22px;
  }

  .accordion button .icon::before {
    display: block;
    position: absolute;
    content: '';
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
  }

  .accordion button .icon::after {
    display: block;
    position: absolute;
    content: '';
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
  }

  .accordion button[aria-expanded='true'] {
    color: white;
  }

  .accordion button[aria-expanded='true'] .icon::after {
    width: 0;
  }

  .accordion button[aria-expanded='true']+.accordion-content {
    opacity: 1;
    max-height: 9em;
    transition: all 200ms linear;
    will-change: opacity, max-height;
    background-color: transparent;
    overflow: auto;
  }

  .accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
  }

  .accordion .accordion-content p {
    font-size: 1rem;
    margin: 1em 0;
    color: white;
    padding: 0 1vw;
  }

  .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: 900;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 2px #444;
  }

  .item-d {
    display: inline;
  }

  .item-dot {
    max-width: 20px;
    max-height: 20px;
    margin: -25px 40px;
    padding: 10px;
    border-radius: 50%;
    display: inline-block;
    transform: translateY(-30px);
  }

  .dot-r {
    background-color: rgb(153, 153, 153);
  }

  .dot-b {
    background-color: rgb(153, 153, 153);
  }

  .dot-g {
    background-color: rgb(153, 153, 153);
  }

  .dot-y {
    background-color: rgb(153, 153, 153);
  }

  .dot-t {
    background-color: rgb(153, 153, 153);
  }

  @keyframes loop {
    100% {
      -webkit-transform: translateX(-100%);
      transform: translateX(-100%);
    }
  }


  .weatherwidget-io {
    margin: 200px 0;
  }

  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;
  }

}