html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  margin: 0px;
  max-width: 100%;
}

/* Marquee */
.hero-marquee {
  color: black;
  background-color: white;
  padding: 3px 0px 3px 0px;
  font-family: "Noto Sans";
  font-weight: bold;
  font-size: 12px;
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  z-index: 900;
  display: block;
}

/* Navbar */
.navbar {
  position: sticky;
  width: 100vw;
  height: 80px;
  /*transition: all 0.5s;*/
  z-index: 999;
  background-color: black;
  top: 0px;
  box-shadow: 0 5px 3px 0 rgba(0, 0, 0, 0.3);
}

.navbar-logo {
  height: 50px;
  margin-left: 2%;
}

.nav-link {
  font-family: "Instrument Sans";
  color: white;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  left: 0;
  bottom: 0;
  background: white;
  transition: width 0.2s;
}

.nav-link:hover:after {
  width: 100%;
}

.pub-dropdown {
  height: 6px;
  margin-left: 8px;
}

.nav-pub-menu {
  background-color: black;
  position: fixed;
  height: 120px;
  width: 130px;
  top: -120px;
  left: 30%;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  transition: 0.3s ease;
  display: flex;
  z-index: 800;
}

.pub-item {
  font-family: "Instrument Sans";
  color: white;
  text-decoration: none;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 12px;
}

.pub-item:hover {
  text-decoration: underline;
}

.menu-divider {
  width: 130px;
  height: 0.5px;
  background-color: white;
}

.nav-pub-menu.active {
  position: fixed;
  top: 80px;
}

/* .nav-pub-menu.active::before {
  position: fixed;
  top: 100px;
} */

.nav-pub-menu-scrolled {
  top: 80px;
}

.navbar-burger {
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  z-index: 10;
  position: absolute;
  width: 100vw;
  height: 80px;
  margin-left: 16px;
}

.nav-burger-bar {
  background-color: rgb(5, 5, 5);
  height: 100vh;
  width: 230px;
  position: absolute;
  top: 80px;
  left: -280px;
  padding-left: 20px;
  transition: 0.4s ease;
  color: white;
  font-family: "Instrument Sans";
  z-index: 800;
  padding-top: 12px;
  /* display: none; */
}

.nav-burger-bar.active {
  position: fixed;
  display: block;
  left: 0px;
}

.menu-list {
  list-style: none;
  padding: 0;
  line-height: 25px;
  font-size: 12px;
  margin-top: -20px;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.menu-item {
  color: white;
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 10px;
}

.menu-item::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  left: 0;
  bottom: 0;
  background: white;
  transition: width 0.2s;
}

.menu-item:hover:after {
  width: 200px;
}

.burger-dropdown {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  display: flex;
  align-items: center;
}

.burger-dropdown.active {
  background-color: rgb(36, 36, 36);
}

.burger-dropdown-container {
  display: none;
  /* background-color: #262626; */
  padding-left: 8px;
  /* display: flex; */
  flex-direction: column;
}

.burger-dropdown-container > a {
  margin-top: 8px;
}

.nav-burger-contact {
  position: absolute;
  bottom: 15%;
}

.contact-line {
  display: flex;
  position: relative;
  width: 100%;
  justify-content: left;
  height: 10px;
  margin-bottom: 30px;
  align-items: center;
}

.contact-text {
  margin-top: 10px;
  /* margin-bottom: 15px; */
  font-family: "Open Sans";
  font-size: 12px;
}

.contact-mail-icon {
  height: 15px;
  width: 15px;
  margin-right: 10px;
  /* margin-left: 70px; */
}

.contact-fb-icon {
  height: 18px;
  width: 18px;
  margin-right: 10px;
  /* margin-top: 15px; */
  /* margin-left: 70px; */
}

.contact-x-icon,
.contact-ig-icon,
.contact-tiktok-icon {
  height: 18px;
  width: 18px;
  margin-right: 10px;
  /* margin-top: 15px; */
}

.contact-tel-icon {
  height: 24px;
  margin-right: 10px;
  /* margin-left: 70px; */
}

/* Contact Modal */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 890;
}

.modal-container {
  display: none;
  height: 87vh;
  width: 100%;
  margin-top: 73px;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 900;
  box-sizing: none;
}

.close {
  color: white;
  float: right;
  font-size: 48px;
  font-weight: bold;
  top: 30px;
  right: 40px;
  position: absolute;
  font-family: "Courier New", Courier, monospace;
  transition: transform 0.3s ease;
}

.close:hover,
.close:focus {
  color: #aaaaaa;
  text-decoration: none;
  cursor: pointer;
  transform: rotate(90deg);
}

.contact-modal {
  height: 300px;
  width: 700px;
  background-color: black;
  position: relative;
  z-index: 999;
  border-radius: 24px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact-modal-content {
  font-family: "Open Sans";
  color: white;
}

.modal-header {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 0;
}

.modal-text {
  font-size: 20px;
  font-weight: 100;
  margin-top: 15px;
}

.modal-text-line {
  display: flex;
  position: relative;
  width: 100%;
  align-items: center;
  height: 20px;
  margin-bottom: 30px;
}

.modal-mail-icon {
  width: 22px;
  height: auto;
  margin-right: 10px;
  margin-left: 70px;
    transition: transform 0.2s ease;
}

.modal-fb-icon {
  width: 22px;
  height: auto;
  margin-right: 10px;
  margin-left: 70px;
    transition: transform 0.2s ease;

}

.modal-x-icon,
.modal-ig-icon,
.modal-tiktok-icon {
  width: 22px;
  height: auto;
  margin-right: 10px;
    transition: transform 0.2s ease;
}

.modal-tel-icon {
  width: 32px;
  height: auto;
  margin-right: 6px;
  margin-left: 60px;
}

.modal-mail-icon:hover,
.modal-fb-icon:hover,
.modal-x-icon:hover,
.modal-ig-icon:hover,
.modal-tiktok-icon:hover{
  transform: scale(1.1);
}

.modal-logo-contact {
  position: relative;
  height: 180px;
right: 30px;
top: 20px;
}

.landing-modal {
  /* height: 300px; */
  width: 700px;
  background-color: #f4f4f4;
  outline: 2px solid black;
  position: relative;
  z-index: 999;
  border-radius: 24px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* top: -5%; */
  overflow: hidden;
}

.landing-modal-content {
  font-family: "Open Sans";
}

.close-landing {
  color: black;
  float: right;
  font-size: 48px;
  font-weight: bold;
  top: 30px;
  right: 40px;
  position: absolute;
  font-family: "Courier New", Courier, monospace;
  transition: transform 0.3s ease;
}

.close-landing:hover,
.close-landing:focus {
  color: #aaaaaa;
  text-decoration: none;
  cursor: pointer;
  transform: rotate(90deg);
}

.landing-modal-logo {
  position: absolute;
  bottom: 0%;
  right: 2%;
  height: 30%;
  opacity: 0.1;
  transition: transform 0.3s ease;
}

.landing-modal-logo:hover {
  transform: scale(1.15);
}

.landing-modal-content > p {
  margin: 4px;
}

.landing-modal-content > p > a {
  color: black;
}

#landing-modal {
  margin-top: 0px;
  height: 70vh;
}

/* HERO */

.hero {
  background-color: #f4f4f4;
}

.hero-carousel {
  height: 87vh;
  /* margin-top: 73px; */
}

.hero-carousel-content {
  height: 87vh;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-image: url("../assets/1-slider1.png");
}

.fade {
  -webkit-animation: 1.5s fade;
  animation: 1.5s fade;
}
@-webkit-keyframes fade {
  from {
    opacity: 0.8;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

.hero-carousel-nav {
  width: 100%;
  padding: 20px 0;
  position: relative;
  /* bottom: 0; */
  /* bottom: 20px; */
  top: 85%;
  left: 0;
  text-align: center;
}

.hero-carousel-button {
  width: 15px;
  height: 15px;
  display: inline-block;
  background: rgba(71, 71, 71, 0);
  border-radius: 50%;
  outline: 1.5px solid white;
  margin: 0 10px;
  cursor: pointer;
  box-shadow: 0px 3px 5px black;
}

.hero-carousel-button-selected {
  background: rgba(255, 255, 255, 0.735);
}

/* MOBILE */
@media (max-width: 320px) {
  .nav-link {
    display: none;
  }

  .navbar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 80px;
  }

  .landing-modal {
    width: 60%;
    padding: 30px;
  }

  .landing-modal-content > h2 {
    font-size: 20px;
  }

  .landing-modal-content > p {
    font-size: 12px;
    margin: 2px;
  }

  .close-landing {
    font-size: 34px;
    top: 20px;
    right: 30px;
  }
}

@media (min-width: 320px) and (max-width: 693px) {
  .hero-carousel-content {
    height: 75vh;
    width: 80%;
    border: black solid 3px;
  }

  .hero-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (min-width: 321px) and (max-width: 768px) {
  .nav-link {
    display: none;
  }

  .navbar-burger-logo {
    display: block;
  }

  .navbar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 80px;
  }

  .landing-modal {
    width: 60%;
    padding: 20px 50px
  }

  .landing-modal-content > h2 {
    font-size: 20px;
  }

  .landing-modal-content > p {
    font-size: 12px;
  }
  
  .close-landing{
      top: 15px;
      right: 30px;
  }
}

@media (min-width: 769px) and (max-width: 900px) {
  .nav-link {
    margin-left: 7%;
    font-size: 12px;
  }

  .nav-link::after {
    height: 1px;
    width: 0;
    left: 0;
    bottom: 0;
  }

  .navbar-burger {
    display: none;
  }

  .navbar-content {
    display: flex;
    align-items: center;
    width: 100vw;
    height: 80px;
  }

  .landing-modal {
    width: 60%;
  }
}

@media (min-width: 900px) and (max-width: 1024px) {
  .nav-link {
    font-size: 12px;
    margin-left: 8%;
  }

  .nav-link::after {
    height: 1px;
    width: 0;
    left: 0;
    bottom: 0;
  }

  .navbar-burger {
    display: none;
  }

  .navbar-content {
    display: flex;
    align-items: center;
    width: 100vw;
    height: 80px;
  }
}

@media (min-width: 1025px) {
  .nav-link {
    margin-left: 10%;
    font-size: 14px;
  }

  .nav-link::after {
    height: 1px;
    width: 0;
    left: 0;
    bottom: 0;
  }

  .navbar-burger {
    display: none;
  }

  .navbar-content {
    display: flex;
    align-items: center;
    width: 100vw;
    height: 80px;
  }
}

@media (min-width: 1441px) {
  .hero-marquee {
    font-size: 12px;
  }

  .nav-link {
    margin-left: 10%;
    font-size: 14px;
  }

  .nav-link::after {
    height: 1px;
    width: 0;
    left: 0;
    bottom: 0;
  }

  .navbar-burger {
    display: none;
  }

  .navbar-content {
    display: flex;
    align-items: center;
    width: 100vw;
    height: 80px;
  }

  .navbar-logo {
    height: 42px;
  }
}

/* @media (min-width: 1505px) {
  .hero-marquee {
    font-size: 24px;
  }

  .navbar {
    top: 36px;
    height: 180px;
  }

  .nav-link {
    font-family: "Instrument Sans";
    color: white;
    text-decoration: none;
    margin-left: 8%;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    font-size: 24px;
  }

  .nav-link::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 0;
    left: 0;
    bottom: 0;
    background: white;
    transition: width 0.2s;
  }

  .nav-link:hover:after {
    width: 100%;
  }

  .navbar-burger {
    display: none;
  }

  .navbar-content {
    display: flex;
    align-items: center;
    width: 100vw;
    height: 200px;
  }

  .navbar-logo {
    height: 80px;
  }

  .pub-dropdown {
    height: 10px;
    margin-left: 10px;
  }
}

@media (min-width: 1694px) {
  .hero-marquee {
    font-size: 24px;
  }

  .navbar {
    top: 36px;
    height: 200px;
  }

  .nav-link {
    font-family: "Instrument Sans";
    color: white;
    text-decoration: none;
    margin-left: 8%;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    font-size: 26px;
  }

  .nav-link::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 0;
    left: 0;
    bottom: 0;
    background: white;
    transition: width 0.2s;
  }

  .nav-link:hover:after {
    width: 100%;
  }

  .navbar-burger {
    display: none;
  }

  .navbar-content {
    display: flex;
    align-items: center;
    width: 100vw;
    height: 200px;
  }

  .navbar-logo {
    height: 120px;
  }

  .pub-dropdown {
    height: 10px;
    margin-left: 10px;
  }
} */

@media (min-width: 1700px) {
  .hero-marquee {
    font-size: 24px;
  }

  .navbar {
    /* top: 0px; */
    height: 120px;
    position: sticky;
  }

  .nav-link {
    margin-left: 9%;
    font-size: 20px;
  }
  .nav-link::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 0;
    left: 0;
    bottom: 0;
    background: white;
    transition: width 0.2s;
  }

  .nav-link:hover:after {
    width: 100%;
  }

  .navbar-burger {
    display: none;
  }

  .navbar-content {
    display: flex;
    align-items: center;
    width: 100vw;
    height: 120px;
  }

  .navbar-logo {
    height: 68px;
  }

  .pub-dropdown {
    height: 10px;
    margin-left: 10px;
  }

  .hero-carousel-button {
    width: 30px;
    height: 30px;
    margin: 0 20px;
  }

  .nav-pub-menu.active {
    top: 120px;
    height: 130px;
  }
}

@media (min-height: 600px) {
  #landing-modal {
    margin-top: 50px;
  }
}

@media (min-height: 667px) {
  #landing-modal {
    margin-top: 50px;
  }
}

@media (min-height: 844px) {
  .nav-burger-contact {
    bottom: 30%;
  }

  #landing-modal {
    margin-top: 10px;
  }
}

@media (min-height: 915px) {
  .nav-burger-contact {
    bottom: 35%;
  }

  #landing-modal {
    margin-top: 0px;
  }
}

@media (min-height: 1024px) {
  .nav-burger-contact {
    bottom: 40%;
  }

  #landing-modal {
    margin-top: -50px;
  }
}

@media (min-height: 1180px) {
  .nav-burger-contact {
    bottom: 50%;
  }

  #landing-modal {
    margin-top: -90px;
  }
}

@media (min-height: 1280px) {
  #landing-modal {
    margin-top: -150px;
  }
}

@media (min-height: 1366px) {
  .nav-burger-contact {
    bottom: 50%;
  }

  #landing-modal {
    margin-top: -190px;
  }
}
