/******** LANDSCAPE **********/
/******** PORTRAIT **********/
/************ MOBILE *****************/
body .blocker {
  display: none;
}
body.open {
  height: 100vh;
  overflow: hidden;
}
body.open .blocker {
  position: fixed;
  height: 100vh;
  width: 100vw;
  z-index: 5;
  background-color: rgba(255, 255, 255, 0.5);
  display: block;
}

@media screen and (min-width: 1200px) {
  #hamburger {
    display: none;
  }
}
#hamburger .nav-icon {
  z-index: 11;
  margin: 3rem 2rem;
  width: 35px;
  height: 40px;
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 1200px) {
  #hamburger .nav-icon {
    margin: 2rem;
  }
}
#hamburger .nav-icon span {
  background-color: black;
  position: absolute;
  border-radius: 3px;
  transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  width: 100%;
  height: 4px;
  transition-duration: 500ms;
}
#hamburger .nav-icon span:nth-child(1) {
  top: 0;
  left: 0;
}
#hamburger .nav-icon span:nth-child(2) {
  top: 10px;
  left: 0px;
  opacity: 1;
}
#hamburger .nav-icon span:nth-child(3) {
  top: 20px;
  left: 0px;
}
#hamburger .nav-icon:not(.open):hover span:nth-child(1) {
  transform: translateY(-2px);
}
#hamburger .nav-icon:not(.open):hover span:nth-child(3) {
  transform: translateY(2px);
}
#hamburger .nav-icon.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}
#hamburger .nav-icon.open span:nth-child(2) {
  opacity: 0;
}
#hamburger .nav-icon.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 10px;
}
#hamburger #toggle-menu {
  position: absolute;
  top: 80px;
  left: -100vw;
  width: 100vw;
  transition: left 0.3s ease-in-out;
  opacity: 0;
}
#hamburger #toggle-menu.open {
  transform: translate(0);
  left: 1rem;
  transition: left 0.3s ease;
  opacity: 1;
  z-index: 10;
}
#hamburger #toggle-menu .menu-entry {
  display: block;
}
#hamburger #toggle-menu .menu-link {
  background-color: rgba(255, 255, 255, 0.8);
}
#hamburger #toggle-menu ul {
  margin: 0;
  padding: 0;
}
#hamburger #toggle-menu .submenu {
  padding-left: 2rem;
}
#hamburger #toggle-menu .submenu .menu-link {
  padding: 0;
  background-color: unset;
  font-size: 2.5rem;
}
#hamburger #toggle-menu .submenu .menu-link p {
  text-indent: -36px;
  padding: 0 36px;
  line-height: 1.3;
  margin: 1rem;
}
#hamburger #toggle-menu .submenu .menu-link p span {
  background-color: rgba(255, 255, 255, 0.8);
}

/************ TABLET/DESKTOP *****************/
.menu {
  position: fixed;
  bottom: 2rem;
  left: 0;
  display: none;
  z-index: 10;
}
.menu > ul {
  background-color: rgba(255, 255, 255, 0.8);
  padding-left: 4rem;
}
@media screen and (min-width: 1200px) {
  .menu {
    display: block;
  }
}

.menu-entry {
  display: inline-block;
  padding: 0;
  margin: 0;
  position: relative;
}
.menu-entry .hover-link {
  cursor: pointer;
}

.menu-link {
  padding: 0 2rem 0 0;
  font-size: 3rem;
  text-decoration: none;
  color: var(--color-grey);
  text-transform: lowercase;
}
.menu-link:hover {
  color: red;
}
.menu-link.active {
  color: red;
  font-weight: bold;
}

.submenu {
  bottom: 6rem;
  margin: 0px;
  display: none;
  left: 4rem;
}
.submenu.active {
  display: inline-block;
}
.submenu p {
  padding: 0 1rem;
  margin: 0;
}
@media screen and (min-width: 1200px) {
  .submenu {
    background: rgba(255, 255, 255, 0.8);
    position: absolute;
    left: -15rem;
    white-space: nowrap;
  }
  .submenu .menu-link {
    display: inline-block;
  }
}

.submenu .menu-link {
  font-size: 2.75rem;
  padding: 0;
}

@font-face {
  font-family: "AvantGardeGothic";
  src: url("/assets/fonts/2D4B70_0_0.eot");
  src: url("/assets/fonts/2D4B70_0_0.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/2D4B70_0_0.woff2") format("woff2"), url("/assets/fonts/2D4B70_0_0.woff") format("woff"), url("/assets/fonts/2D4B70_0_0.ttf") format("truetype");
  font-weight: normal;
}
@font-face {
  font-family: "AvantGardeGothic";
  src: url("/assets/fonts/2D4B70_1_0.eot");
  src: url("/assets/fonts/2D4B70_1_0.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/2D4B70_1_0.woff2") format("woff2"), url("/assets/fonts/2D4B70_1_0.woff") format("woff"), url("/assets/fonts/2D4B70_1_0.ttf") format("truetype");
  font-weight: bold;
}
:root {
  --color-red: red;
  --color-grey: #222;
  --color-white-transparent: rgba(255, 255, 255, 0.7);
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 400;
  font-family: "AvantGardeGothic", "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #222;
  letter-spacing: 0.05rem;
  width: 100vw;
  line-height: 1.8;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 300;
}

h1 {
  font-size: 3.6rem;
  line-height: 1.25;
  letter-spacing: -0.1rem;
}

h2 {
  font-size: 2.8rem;
  line-height: 1.2;
  letter-spacing: -0.1rem;
}

.uppercase {
  text-transform: uppercase;
}

.background {
  background-color: var(--color-white-transparent);
  padding: 0 1rem;
}

.red {
  color: var(--color-red);
}

ul {
  list-style-type: "- ";
  padding-left: 2rem;
}

img {
  max-width: 100%;
}

figure {
  padding: 0;
  margin: 0;
}

/*********** HEADER *****************/
header {
  display: grid;
  grid-template-columns: 30% 70%;
  position: fixed;
  width: 100vw;
  z-index: 20;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  header {
    display: block;
  }
}
header .logo-container {
  position: absolute;
  top: 2rem;
  right: 1rem;
  text-align: right;
}
@media screen and (min-width: 576px) {
  header .logo-container {
    right: 2rem;
  }
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  header .logo-container {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 0 2rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  header .logo-container {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 0 2rem;
  }
}
@media screen and (min-width: 1400px) {
  header .logo-container {
    right: 3rem;
  }
}
header .logo-container .logo {
  color: var(--color-grey);
  font-size: 2rem;
  line-height: 1.3;
  text-decoration: none;
  text-align: right;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 576px) {
  header .logo-container .logo {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  header .logo-container .logo {
    font-size: 3.5rem;
  }
}
header .logo-container .logo > span {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 0 2rem;
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  header .logo-container .logo > span {
    background-color: unset;
    padding: 0;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  header .logo-container .logo > span {
    background-color: unset;
    padding: 0;
  }
}
header .logo-container .logo .logo-title {
  font-weight: bold;
}
@media screen and (min-width: 576px) {
  header .logo-container .logo .logo-title {
    display: inline-block;
  }
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  header .logo-container .logo br {
    display: none;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  header .logo-container .logo br {
    display: none;
  }
}

.swiper {
  height: 100vh;
}
.swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-button-prev,
.swiper-button-next {
  --swiper-navigation-size: 54px;
  --swiper-navigation-top-offset: 70%;
  margin-left: 1rem;
  margin-right: 1rem;
  background-repeat: no-repeat;
  transition: all 0.5s ease-in-out;
  background-color: var(--color-white-transparent);
  background-size: 70%;
  background-position: center;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  transform: scale(1.1);
  transition: all 0.5s ease-in-out;
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  .swiper-button-prev,
  .swiper-button-next {
    margin-left: 3rem;
    margin-right: 3rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .swiper-button-prev,
  .swiper-button-next {
    margin-left: 3rem;
    margin-right: 3rem;
  }
}

.swiper-button-prev {
  background-image: url("/assets/images/prev.png");
}

.swiper-button-next {
  background-image: url("/assets/images/next.png");
}

.overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: opacity 0.5s ease-in-out;
}
.overlay.hide {
  opacity: 0;
}

/*********** START **************/
.template-home .imprint,
.template-news .imprint,
.template-default .imprint {
  position: fixed;
  z-index: 10;
}

.template-home {
  height: 100vh;
}
.template-home .swiper-slide {
  cursor: pointer;
}
.template-home .swiper-slide .overlay {
  background-color: var(--color-white-transparent);
}
.template-home .swiper-slide .project-title {
  position: absolute;
  bottom: 10rem;
  left: 0;
  background-color: var(--color-white-transparent);
  color: var(--color-grey);
  padding: 0.2rem 4rem;
  z-index: 1;
  opacity: 0;
}
@media screen and (min-width: 480px) and (orientation: landscape) {
  .template-home .swiper-slide .project-title {
    bottom: 1rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .template-home .swiper-slide .project-title {
    bottom: 3rem;
  }
}
@media screen and (min-width: 1200px) {
  .template-home .swiper-slide .project-title {
    position: fixed;
    bottom: 10rem;
  }
}
.template-home .swiper-slide .project-title h1 {
  margin-bottom: 0;
  text-transform: lowercase;
}
.template-home .swiper-slide .project-title.show {
  opacity: 1;
}
.template-home .swiper-slide .project-title a {
  text-decoration: none;
  color: var(--color-grey);
}
.template-home .swiper-slide .project-title a:hover {
  color: red;
}

.template-default .text-container,
.template-news-item .text-container,
.template-news .text-container {
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: 10rem;
  width: auto;
  z-index: 2;
}
@media screen and (min-width: 1200px) {
  .template-default .text-container,
  .template-news-item .text-container,
  .template-news .text-container {
    left: 26rem;
    top: 15rem;
  }
}
.template-default .swiper-button-prev,
.template-default .swiper-button-next,
.template-news-item .swiper-button-prev,
.template-news-item .swiper-button-next,
.template-news .swiper-button-prev,
.template-news .swiper-button-next {
  display: none;
}

/*********** PROJECTS **************/
.template-projects .projects {
  display: grid;
  gap: 2rem;
}
@media screen and (min-width: 576px) {
  .template-projects .projects {
    grid-template-columns: repeat(2, 1fr);
    padding: 1rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .template-projects .projects {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 2rem 10rem;
  }
}
@media screen and (min-width: 1200px) {
  .template-projects .projects {
    padding: 10rem 2rem 10rem;
  }
}
@media screen and (min-width: 1400px) {
  .template-projects .projects {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    padding: 10rem 3rem 10rem;
  }
}
.template-projects .projects .project {
  aspect-ratio: 4/3;
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.template-projects .projects .project > * {
  transition: all 1s ease-in-out;
}
.template-projects .projects .project .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
@media screen and (min-width: 1200px) {
  .template-projects .projects .project .overlay {
    background-color: rgba(0, 0, 0, 0.5);
  }
}
.template-projects .projects .project img {
  object-fit: cover;
  width: 101%;
  height: 101%;
}
.template-projects .projects .project:hover > * {
  transition: all 0.5s ease-in-out;
}
.template-projects .projects .project:hover .overlay {
  opacity: 0;
}
.template-projects .projects .project:hover img {
  transform: scale(1.05);
  position: relative;
}
.template-projects .projects .project:hover .description {
  opacity: 1;
}
.template-projects .projects .project .description {
  position: absolute;
  bottom: 1rem;
  right: 0;
  z-index: 3;
  color: var(--color-grey);
  font-size: 2rem;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 0.2rem 2rem;
  text-align: right;
  text-transform: lowercase;
  width: calc(100% - 4rem);
}
@media screen and (min-width: 1200px) {
  .template-projects .projects .project .description {
    opacity: 0;
    bottom: 3rem;
  }
}
.template-projects .projects .project .description p {
  padding: 0;
  margin: 0;
}

/*********** PROJECT **************/
.template-project .project-title {
  position: absolute;
  bottom: 10rem;
  left: 0;
  background-color: var(--color-white-transparent);
  color: var(--color-grey);
  padding: 0.2rem 4rem;
  z-index: 1;
}
@media screen and (min-width: 480px) and (orientation: landscape) {
  .template-project .project-title {
    bottom: 1rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .template-project .project-title {
    bottom: 3rem;
  }
}
@media screen and (min-width: 1200px) {
  .template-project .project-title {
    position: fixed;
    bottom: 10rem;
  }
}
.template-project .project-title h1 {
  margin-bottom: 0;
  text-transform: lowercase;
}
.template-project .project img {
  max-width: 100%;
  max-height: 100vh;
}
@media screen and (min-width: 1200px) {
  .template-project .project img {
    max-height: unset;
  }
}
.template-project .project .image-full-screen {
  height: 100vh;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .template-project .project .image-full-screen {
    height: auto;
  }
}
.template-project .project .image-full-screen img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.template-project .project .image-full-screen .arrow-down {
  position: fixed;
  width: 62px;
  height: 54px;
  right: 3rem;
  top: calc(100vh - 54px - 5rem);
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  background-color: var(--color-white-transparent);
}
.template-project .project .image-full-screen .arrow-down img {
  width: 54px;
  padding: 4px;
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  .template-project .project .image-full-screen .arrow-down {
    top: calc(100vh - 54px - 1rem);
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .template-project .project .image-full-screen .arrow-down {
    top: calc(100vh - 54px - 1rem);
  }
}
@media screen and (min-width: 1200px) {
  .template-project .project .image-full-screen .arrow-down {
    top: calc(100vh - 54px - 8rem);
  }
}
.template-project .project .image-full-screen .arrow-down:hover {
  transform: scale(1.1);
  transition: all 0.5s ease-in-out;
}
.template-project .project .image-full-screen .arrow-down img {
  position: absolute;
  transition: all 0.5s ease-in-out;
}
.template-project .project .image-full-screen .arrow-down #scrollButtonUp {
  opacity: 0;
  z-index: -1;
}
.template-project .project .image-with-description {
  padding: 3rem;
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  .template-project .project .image-with-description {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    gap: 3rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .template-project .project .image-with-description {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    gap: 3rem;
  }
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  .template-project .project .image-with-description .project-description {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .template-project .project .image-with-description .project-description {
    font-size: 2rem;
  }
}
.template-project .project .image {
  display: grid;
  gap: 3rem;
  max-width: 100vw;
}
.template-project .project .image img {
  margin: 3rem auto;
}

/******** PINBOARD **********/
.gallery {
  display: flex;
  justify-content: center;
}
.gallery .grid {
  width: 80vw;
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  .gallery .grid {
    column-count: 2;
    column-gap: 4rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .gallery .grid {
    column-count: 2;
    column-gap: 4rem;
  }
}
@media screen and (min-width: 1200px) {
  .gallery .grid {
    margin-top: 10rem;
  }
}
@media screen and (min-width: 1400px) {
  .gallery .grid {
    width: 60vw;
  }
}
.gallery .grid-item {
  width: 100%;
  padding-bottom: 2rem;
}
.gallery .grid-item a {
  position: relative;
}
.gallery .grid-item.right {
  text-align: right;
}
.gallery .grid-item img {
  width: 100%;
  transition: all 0.5s ease-in-out;
}
@media screen and (min-width: 576px) {
  .gallery .grid-item img.portrait {
    width: 70%;
  }
}
.gallery .grid-item:hover img {
  transform: scale(1.05);
  transition: all 0.5s ease-in-out;
}
.gallery .grid-item:hover .description {
  opacity: 1;
}
.gallery .description {
  position: absolute;
  bottom: 1rem;
  right: 0;
  z-index: 3;
  color: var(--color-grey);
  font-size: 2rem;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 0.2rem 2rem;
  text-align: right;
  text-transform: lowercase;
  width: calc(100% - 4rem);
}
@media screen and (min-width: 1200px) {
  .gallery .description {
    opacity: 0;
    bottom: 3rem;
  }
}
.gallery .description p {
  padding: 0;
  margin: 0;
}

.nanogallery2 {
  padding-top: 80px;
  min-height: 80vh;
}
@media screen and (min-width: 1200px) {
  .nanogallery2 {
    padding-top: 10rem;
  }
}

.nanogallery_gallerytheme_dark_nanogallery2 .nGY2GThumbnailImageTitle {
  color: var(--color-grey) !important;
  font-size: 2.1rem;
  background-color: rgba(255, 255, 255, 0.8) !important;
  padding: 0.2rem 2rem;
  text-align: right;
  text-transform: lowercase;
  text-shadow: none !important;
  margin: 0 !important;
  width: 100%;
  line-height: 1.2;
  white-space: normal;
  filter: none !important;
}

.nGY2 .nGY2GThumbnailLabel {
  padding: 0 0 2rem;
}

.nGY2GThumbnailLabel {
  filter: none !important;
}

.nGY2Icon-ngy2_close2::before {
  content: "";
  width: 54px;
  height: 54px;
  background-image: url("/assets/images/close.png");
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}

.nGY2Icon-ngy2_chevron_left3::before {
  content: "";
  width: 54px;
  height: 54px;
  background-image: url("/assets/images/prev.png");
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}

.nGY2Icon-ngy2_chevron_right3::before {
  content: "";
  width: 54px;
  height: 54px;
  background-image: url("/assets/images/next.png");
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  background-position: center right;
}

.nGY2 .nGY2ViewerAreaNext > i,
.nGY2 .nGY2ViewerAreaPrevious > i {
  background: none;
}

.nGY2 .nGY2ViewerAreaNext {
  padding: 10px 15px 10px 0;
}

.nGY2 .nGY2ViewerAreaPrevious {
  padding: 10px 0 10px 15px;
}

.nGY2 .toolbar {
  margin: 0;
  padding: 0;
}
.nGY2 .toolbar.toolbarBackground {
  padding: 10px 0;
  margin: 2rem;
}
.nGY2 .toolbar .label .description {
  font-size: 2rem;
  color: var(--color-grey) !important;
}
.nGY2 .toolbar .label .title {
  font-size: 2.8rem;
  color: var(--color-grey) !important;
}

.nanogallery_viewertheme_light_nanogallery2 .nGY2Viewer .toolbarBackground {
  background-color: rgba(255, 255, 255, 0.8) !important;
}

.toolbarContainer {
  opacity: 1 !important;
}

.nGY2 .toolbarContainer {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
}

.imprint {
  position: relative;
  text-align: right;
  padding-top: 2rem;
  right: 3rem;
  bottom: 1rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .imprint {
    z-index: 2;
  }
}
.imprint a {
  text-decoration: none;
  text-transform: uppercase;
  color: var(--color-grey);
}
.imprint a:hover {
  color: red;
}
.imprint a.active {
  color: red;
  font-weight: bold;
}

.slider {
  margin-top: 20px;
  margin-left: 10px;
}

.next {
  right: 15px;
}

.prev {
  left: 15px;
}

.content {
  max-width: 960px;
  width: 60%;
  height: 60vh;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 3rem;
  overflow: auto;
}
.content a {
  text-decoration: none;
  border-bottom: 1px solid;
  color: var(--color-grey);
  transition: color 0.5s ease-in-out;
}
.content a:hover {
  color: red;
  transition: none;
}

@media screen and (max-width: 960px) {
  .hide-for-small {
    display: none !important;
  }
  .show-for-small-only {
    display: block !important;
  }
  .container {
    width: 100% !important;
  }
  .project-container .submenu {
    display: block;
  }
  .project-container {
    position: static;
    margin: 0;
    width: 100%;
  }
  .title-image img {
    width: 100%;
  }
  .slick-slide img {
    width: 100%;
  }
  .slider,
  .slick-slider {
    margin: 0;
  }
  .fullscreen-slider__container {
    width: 100%;
    height: 600px;
    position: relative;
  }
  .content {
    max-width: 960px;
    width: auto;
    background-color: rgba(255, 255, 255, 0.8);
    overflow: auto;
  }
}
/*********** NEWS **************/
@media screen and (min-width: 768px) and (orientation: portrait) {
  .template-news .content {
    padding: 3rem calc(35px + 2rem);
    overflow: inherit;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .template-news .content {
    padding: 3rem calc(35px + 2rem);
    overflow: inherit;
  }
}
.template-news .news-item {
  display: grid;
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  .template-news .news-item {
    grid-template-columns: 40% 55%;
    gap: 5%;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .template-news .news-item {
    grid-template-columns: 40% 55%;
    gap: 5%;
  }
}

/*********** ANIMATIONS **************/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*# sourceMappingURL=main.css.map */
