@keyframes x_slide_in_right {
  from {
    transform: translateX(100px);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes y_slide_in {
  from {
    transform: translateY(40px);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes x_slide_in_left {
  from {
    transform: translateX(-50px);
  }
  to {
    transform: translateX(0);
  }
}
/*Overall Desing*/
h2 {
  font-size: 1.5rem;
  color: rgb(0, 121, 174);
}

h1 {
  font-size: 2rem;
  color: rgb(0, 121, 174);
}

html {
  font-size: 16px;
  line-height: 1.1;
}

* {
  box-sizing: border-box;
  font-family: Arial !important;
  padding: 0;
}

a, p, span, h1 {
  text-decoration: none;
  color: rgb(0, 121, 174);
}

body {
  margin: 0;
  padding: 0;
  background-color: rgb(242, 226, 201);
  width: 100vw;
  overflow-x: hidden;
  overflow-y: auto;
}

body .hide_overflow {
  overflow: hidden;
}

#background {
  background-color: rgb(242, 226, 201);
  z-index: -5;
}

.link:hover {
  transition: 200ms color linear;
  color: rgb(199, 63, 49);
}

/*For the Navigationbar*/
#navbar {
  height: 200px;
  width: 100vw;
  z-index: 100000;
  box-shadow: 0 1px 20px rgba(110, 110, 110, 0.4);
  gap: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background-color: rgb(255, 238, 212);
  transition: height 500ms linear;
  position: fixed;
  top: 0;
}

#navbar::after {
  content: "";
  background-image: url(../Fotos/navbar_test.png);
  background-position: left;
  top: 0;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 70%;
  width: 100%;
  position: absolute;
  z-index: -100;
}

#navbar_link_container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.title_logo_syllable {
  transition: color 1000ms;
}

.title_logo_syllable.active.purple {
  color: rgb(180, 0, 255);
}

.title_logo_syllable.active.blue {
  color: blue;
}

.title_logo_syllable.active.green {
  color: rgb(0, 100, 0);
}

.title_logo_syllable.active.yellow {
  color: rgb(190, 190, 0);
}

.title_logo_syllable.active.orange {
  color: rgb(255, 187, 0);
}

.title_logo_syllable.active.red {
  color: rgb(255, 0, 0);
}

.title_logo_syllable.active.pink {
  color: rgb(255, 0, 234);
}

#brand_title h6 {
  font-size: 1.5rem;
  margin: 0;
  padding: 0;
  color: rgb(0, 121, 174);
}

#brand_title {
  font-size: 1.5rem;
  margin: 0;
  padding: 0;
  color: rgb(0, 121, 174);
}

.navbar_link {
  color: rgb(0, 121, 174);
  border-style: none;
  background: none;
  cursor: pointer;
  font-size: 1rem;
}

#navbar ul {
  list-style: none;
  position: relative;
  top: 64px;
}

#navbar ul li {
  display: inline-block;
  padding: 2vw;
}

.navbar_link:hover {
  transition: color 200ms linear;
  color: rgb(199, 63, 49);
}

/*Content Design*/
.page_item {
  padding: 5vh 10vw 5vh 10vw;
  text-align: center;
}

.page_item * {
  z-index: 2;
  position: relative;
}

.content {
  z-index: -5;
  padding: 0;
  background-color: rgb(242, 226, 201);
  display: flex;
  flex-direction: column;
  width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  margin-top: 200px;
}

/*For the drop down menu*/
.drop_down_link {
  position: relative;
}

.drop_down_menu {
  border-radius: 1rem;
  position: absolute;
  top: calc(100% + 0.7rem);
  background-color: rgb(255, 238, 212);
  padding: 1rem;
  box-shadow: 2px 4px 2px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 150ms ease-in-out, transform 150ms ease-in-out;
}

.drop_down_link.active > .navbar_link + .drop_down_menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.drop_down_menu_grid {
  display: flex;
  flex-grow: unset;
  flex-wrap: wrap;
  flex-direction: row;
  white-space: nowrap;
  z-index: 10000;
}

.info_grid_element {
  padding-top: 0.3rem;
}

/*For the Toggle Button*/
#mobile_toggle_button {
  position: absolute;
  display: none;
  width: 5.5rem;
  height: 90px;
}

#mobile_toggle_button .bar {
  width: 5.5rem;
  height: 0.4rem;
  background-color: rgb(0, 121, 174);
  display: block;
  margin: 8px auto;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 100vh) {
  .content {
    margin-top: 300px;
  }
  #navbar {
    gap: 0;
    height: 300px;
  }
  #navbar::after {
    min-height: 15vh;
  }
  .navbar_link {
    display: none;
    flex-direction: column;
  }
  #mobile_toggle_button {
    display: flex;
    align-self: flex-end;
    flex-direction: column;
    justify-content: space-between;
    z-index: 20000;
  }
  #brand_title {
    width: 100vw;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 5vh 5vw 5vh 5vw;
    position: relative;
    top: 1vh;
  }
  #brand_title h6 {
    font-size: 1.6rem;
  }
  #navbar.active .navbar_link {
    display: flex;
    flex-direction: column;
  }
  #navbar_link_container {
    transform: translateY(-500px);
    transition: transform 500ms linear;
  }
  #navbar_link_container.active.up .navbar_link {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
  }
  #navbar_link_list.active {
    display: inline-flex;
    flex-direction: column;
  }
  .navbar_link_container {
    z-index: 100000000;
    display: none;
    width: 100%;
  }
  #navbar.active .navbar_link {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
  }
  .drop_down_link {
    justify-content: center;
    display: flex;
    width: 100%;
  }
  .navbar_link {
    padding: 0.5vh 0 0.5vh 0;
    font-size: 1.5rem;
  }
  .stay_up {
    position: relative;
    transition: transform 500ms linear;
    transform: translateY(-28vh);
  }
  .footer_box {
    font-size: 2rem !important;
  }
  #mobile_toggle_button .bar {
    display: block;
    margin: 8px auto;
    transition: all 0.3s ease-in-out;
  }
  #mobile_toggle_button.active {
    transition: all 0.3s ease-in-out;
    transition-delay: 0.6s;
    transform: rotate(45deg);
  }
  #mobile_toggle_button.active .bar:nth-child(2) {
    width: 0px;
  }
  #mobile_toggle_button.active .bar:nth-child(1),
  #mobile_toggle_button.active .bar:nth-child(3) {
    transition-delay: 0.3s;
  }
  #mobile_toggle_button.active .bar:nth-child(1) {
    transform: translateY(32px);
  }
  #mobile_toggle_button.active .bar:nth-child(3) {
    transform: translateY(-35px) rotate(90deg);
  }
}
/* Styling for the footer*/
.footer_box {
  padding: 1vh;
  font-size: 1rem;
  flex-wrap: wrap;
  min-height: 10vh;
  background-color: rgb(255, 238, 212);
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
}

.footer_info {
  font-size: 1.2rem;
  text-decoration: none;
  color: rgb(0, 121, 174);
  padding: 2px;
  margin: 0;
}

#footer_top_section {
  width: 100%;
  height: 2.5vh;
}

#contact_wrapper {
  margin: 0;
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}

#legal_wrapper {
  padding: 1rem;
}

#legal_wrapper a:hover {
  transition: color 200ms linear;
  color: rgb(199, 63, 49);
  cursor: pointer;
}

.star {
  width: 100px;
  height: 100px;
  border-radius: 50px;
  z-index: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}/*# sourceMappingURL=master.css.map */