/* === css stylesheet file for the main page === */
:root {
	--light: #f9f9f9;
   --red: #ff270a;
  /*--blue: #171c8f; */
  --blue: #F00A94;
  --black: #201614;
}
.main__container{
    min-height: 100vh;
    background-color: var(--light);
}
/* === header section switch background and image hover === */
.section__one{
    /* background-color: #ff290c; */
    position: relative;
    height:100vh;
    overflow: hidden;
    /* padding-top:15em; */
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
  }
  .header__content{
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
  }
 
  #main-title {
    position: relative;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--light);
    text-align:center;
    z-index: 3;
    line-height: 1.1em !important;
    font-family: var(--heading-font);
  }
  #main-title span{
    line-height: 1.1em !important;
  }
  
  #title-overlay {
    position: absolute;
    /* top:11em; */
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%) scale(0.3);
    width: 100%;
    height: 0;
  z-index:2;
    max-width: 600px;
    max-height: 600px;
    position: absolute;
    background-color: var(--blue);
    opacity: 0.8;
    transition: background-color 0.5s;
  }
  
  #header-image {
    position: absolute;
    /* top:11em; */
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%) scale(0.3);
    width: 90%;
    height: 0;
    object-fit: cover;
    z-index:0;
    transition: background-color 0.3s;
    max-width: 600px;
    max-height: 600px;
  }
  @media screen and (min-width: 200px) and (max-width: 312px){
    h1 {
      font-size: 35px !important;
    }
  }

  @media screen and (min-width: 312px) and (max-width: 500px){
    h1 {
      font-size: 45px !important;
    }
  }
  @media screen and (min-width: 1024px) {
    #header-image, #title-overlay {
      max-width: 650px;
      max-height: 800px;
    }
  }
  @media screen and (min-width: 1200px) {
    #header-image, #title-overlay  {
      max-width: 750px;
      max-height: 900px;
    }
  }
  
  /* === horizontal section scroll === */
  .section__two{
    height: 50vh;
    background-color: #f9f9f9;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
  } 
  .card-image.splide__slide img {
    display: flex;
    height: 70px;
    object-fit: contain;
    align-content: center;
    align-items: center;
  }
  .swiper-slide {
    flex-shrink: 0;
    width: 100%;
    display: flex;
    height: 100%;
    position: relative;
    transition-property: transform;
    justify-content: center;
}
  .slide-container{
    max-width: 1200px;
    width: 100%;
    padding: 40px 0;
  }
  .slide-content, .slider-content-2{
    margin: 0 40px;
    overflow: hidden;
	 margin-bottom: 2em;
  }
  .card-content{
    /* background-color: #FFF; */
	padding: 70px 20px 20px 20px;
  }
  .image-content,
  .card-content{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .image-content{
    position: relative;
  }
  .card-image{
    position: relative;
    height: auto;
    width: 250px;
  }
  .card-image .card-img{
    height: 100%;
    width: 100%; }


  
  @media screen and (max-width: 768px) {
    .slide-content{
      margin: 0 10px;
    }
    .swiper-navBtn{
      display: none;
    }
  }

/* === section twoone === */
.section__twoone{
  padding-bottom: 180px;
  overflow: hidden;
}
.text__container__section__twone{
  margin-left: 1em ;
  margin-right: 1em;
  position: relative;
  z-index: 2;
  
}
h2.heading__section__twoone{
color: var(--blue);
font-weight: 500 !important;
font-family: var(--heading-font);
}
h3.sub__heading_section_twoone{
  color: var(--blue);
  font-size: 1.3rem;
    line-height: 1.45em;
    margin: 0 0 10px;
    font-family: var(--heading-font);
}

.pretext__section__twoone .first-dot:after, .pretext__section__twoone .second-dot:after{
  background-color: var(--blue);
  border-radius: 50%;
  content: "";
  height: 30px;
  position: absolute;
  left: 15px;
  top: -20px; 
  transition: all .6s ease;
  width: 30px;
}
.pretext__section__twoone .first-dot, .pretext__section__twoone .second-dot {
  display: inline-block;
  position: relative;
  width: 60px;
}

@media screen and (min-width: 900px){
  .text-container .first-dot, .text-container .second-dot {
    width: 80px;
  }
  .text-container .first-dot:after, .text-container .second-dot:after {
    left: 24px;
    top: -26px;
    height: 40px;
    width: 40px;
  }
  .text-container .first-dot img, .text-container .second-dot img {
    left: 25px !important;
    top: -25px !important;
    width: 38px;
    height: 38px;
  }
}
@media  screen and (min-width: 1200px) {
  .text-container .first-dot:after, .text-container .second-dot:after {
    height: 50px;
    left: 18px;
    top: -34px;
    width: 50px;
  }
  .text-container .first-dot img, .text-container .second-dot img {
    height: 45px;
    left: 21px !important;
    top: -32px !important;
    width: 45px;
  }
  
}
.pretext__section__twoone .first-dot:hover img, .pretext__section__twoone .second-dot:hover img {
  transform: scale(6);
}
.pretext__section__twoone .first-dot:hover:after, .pretext__section__twoone .second-dot:hover:after {
  opacity: 0;
  transform: scale(4);
}
.pretext__section__twoone .second-dot:after {
  background-color: #f8de00;
}
.pretext__section__twoone .first-dot img, .pretext__section__twoone .second-dot img {
  border-radius: 50%;
  height: 28px;
  left: 16px;
    opacity: 1;
    position: absolute;
    top: -18px;
    transform: scale(1);
    transform-origin: center center;
    object-fit: cover;
    transition: all .6s ease;
    width: 28px;
  z-index: -1;
}
.pretext__section__twoone{
  color: #484544;
  font-weight: 400;
  line-height: 1.45em;
  font-size: calc(14.6px + .75vw);
  margin-bottom: 3em;
}
.text__section__twoone{
  opacity: 1;
    transform: translateY(0);
    transition-delay: .5s;
  -moz-column-count: 1;
    column-count: 1;
    -moz-column-gap: 40px;
    column-gap: 40px
}
.text__section__twoone span{
  color: var(--black);
}
.presection__space{
  margin-left: 2em;
  margin-right: 2em;
}
@media screen and (min-width:1024px) {
  .presection__space{
    margin-left: 2em;
    margin-right: 2em;
  }
  .text__container__section__twone{
    margin-left: 4em;
    margin-right: 4em;
  }
}
@media screen and (min-width:1200px) {
  .presection__space{
    margin-left: 4em;
    margin-right: 4em;
  }
  .text__section__twoone{
    -moz-column-count: 1;
    column-count: 2;
    -moz-column-gap: 3em;
    column-gap: 3em;
  }
}
@media screen and (min-width:1400px) {
  .presection__space{
    margin-left: 6em;
    margin-right: 6em;
  }
  .text__section__twoone{
    -moz-column-count: 2;
    column-count: 2;
    -moz-column-gap: 40px;
    column-gap: 40px
  }
}

  /* === section three == */

  .section__three {
    position: relative;
    overflow: hidden;
    background: var(--red);
  }

.content__section__scroll {
    position: relative;
    padding-top: 50px;  /* Höhe des Headers */
    z-index: 4;
}
  .section__three__fixed__header h4 {
    text-align: center;
    font-size: calc(22px + 5.1875vw);
    color: var(--light);
    font-family: var(--heading-font);
    font-weight: 200 !important;
    margin-top: 2em;
  }
  .section__three__fixed__header{
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-content: center;
    align-items: center;
    flex-direction: row;
  }
  
  .content__section__scroll {
    padding-top: 5em;
  }
  
  h2.heading {
    font-family: var(--heading-font);
    font-weight: 500;
    text-transform: uppercase;
  }
  .header__content_rows {
    z-index: 1;
    /* position: relative;
    overflow: hidden;
    top: 30%;
    width: 50%;
    margin: 0 auto;
    height: 100%;
    transform: translateY(-50%); */
    transition: transform 0.8s ease;
    width: 100%;
  }
  .fixed {
    position: fixed;
  /* top: 10%;  */
  visibility: hidden;
}
  .content__scroll {
    margin-top: 10%;
    z-index: 4;
  }
  .left__side{
    width: 100%;
    padding-left: 2em;
    padding-right: 2em;
  }
  .middle{
    width: 100%;
    padding-left: 2em;
    padding-right: 2em;
  }
  .right__side{
    width: 100%;
    padding-left: 2em;
    padding-right: 2em;
    padding-bottom: 2em;
  }
  @media screen and (min-width: 650px){
    .left__side{
      width: 50%;
      padding-left: 1em;
      padding-right: 1em;
    }
    .middle{
      width: 50%;
      margin: 0 auto;
      padding-left: 1em;
      padding-right: 1em;
    }
    .right__side{
      width: 50%;
      float: right;
      padding-left: 1em;
      padding-right: 1em;
    }
  }
  @media screen and (min-width: 1024px){
    .left__side{
      width: 50%;
      padding-left: 5em;
      padding-right: 5em;
    }
    .middle{
      width: 50%;
      margin: 0 auto;
      padding-left: 5em;
      padding-right: 5em;
    }
    .right__side{
      width: 50%;
      float: right;
      padding-left: 5em;
      padding-right: 5em;
    }
  }
@media screen and (min-width: 1200px){
  .left__side{
    width: 50%;
    padding-left: 10em;
    padding-right: 7em;
  }
  .middle{
    width: 50%;
    margin: 0 auto;
    padding-left: 7em;
    padding-right: 7em;
  }
  .right__side{
    width: 50%;
    float: right;
    padding-left: 7em;
    padding-right: 10em;
  }
}

  .content__scroll.left__side.second{
      padding-top: 110%;
  }
  .trennlinie__main{
    color: #ecc3b2;
  }

  .section__three.sticky-header .header__content {
    opacity: 1;
    position: fixed;
    top: 0%;
  }
  .section__three.sticky-header .section__three__fixed__header {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    z-index: 2;
  }

.first__image, .second__image, .thrid__image{
    scale: 0.5;
}
  /* scrollcontent right top & left bottom*/
  .properties__content__top {
    display: none;
    position: absolute;
}
.properties__content__bottom {
  display: none;
  opacity: 1;
  position: absolute;
}
  @media screen and (min-width: 1400px){
    .properties__content__top {
        bottom: calc(80% - 120px);
        right: 8%;
        width: 340px;
    }
    .properties__content__bottom {
      left: 8%;
      top: calc(80% - 210px);
      width: 340px;
  }
}
@media screen and  (min-width: 1200px){
  .properties__content__top {
      bottom: calc(80% - 120px);
      display: block;
      width: 300px;
  }
  .properties__content__bottom {
    display: block;
    top: calc(90% - 180px);
    width: 300px;
  }
}
@media screen and (min-width: 900px){
  .properties__content__top {
      bottom: calc(80% - 100px);
      display: block;
      right: 0em;
      width: 300px;
  }
  .properties__content__bottom {
    display: block;
    left: 2em;
    top: calc(80% - 160px);
    width: 300px;
  }
}

/* === section three-one === */
.section__three__one{
  margin: 3em 0;
  height: 100vh;
}
.picture__container{
  height: 100%;
  width: 100%;
  margin: 0 auto;
  display:flex;
  align-items: center;
}
.picture__title {
  position: absolute;
  height: 100%;
  display: flex;
  color: var(--red);
  text-align: center;
  z-index: 3;
  padding-top: 2em;
  justify-content: center;
  align-items: center;
  font-size: calc(18px + 4.1875vw);
  text-transform: uppercase;
  font-family: var(--heading-font);
}

.picture__image {
  width: 100%;
  height: 80%;
  scale: 0.7;
  object-fit: cover;
  z-index:1;
  transition: background-color 1s;
}

/* === Section four circle === */

.section__four{
  height: 100%;
  padding: 0 1em;
  display: flex;
  align-items: center;
  flex-direction: column;
 justify-content: center;
}
.container_video-clips {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 0.5em;
  justify-content: center;
}

.oval {
  position: relative;
  width: 330px; 
  height: 440px;
  overflow: hidden;
  border-radius: 50% / 30%;
  margin: 1em;
}

.oval video {
  height: 100%;
  object-fit: cover;
  position: relative;
  left: -30%;
}

.oval h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--light);
  font-weight: 400;
  font-size: 2rem;
  margin-top: 0em;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}
.section__header{
  margin-bottom: 4em;
  text-align: center;

}
.section__header h2{
  font-size: calc(20px + 2.234vw);
  color: var(--blue);
  text-transform: uppercase;
  font-family: var(--heading-font);
}

@media screen and (min-width:1100px){
  .section__four{
    height: 90vh !important;
  }
.container_video-clips {
  justify-content: space-around !important;
  padding: 0 1em;
  }
}
  /* === section five === */
  .offers{
    margin: 4em 0em;
    font-family: var(--heading-font);
  }

  /* .offer__overview{
    height: 60vh;
  } */
  

  body {
    transition: 0.3s ease-out;
    overflow-x: hidden !important;
    max-width: 100%;
    width: 100%;
    overscroll-behavior: none !important;
  }
    
  #sectionPin {
    height: 100vh;
    overflow: hidden !important;
  }
  .section__five{
    height: fit-content !important;
    width: 100%;
    margin-bottom: 4em;
  }
  
  .section__five__container{
    height: 100%;
  }  
  .section__five__container .offers{
    margin-top: 0 !important;
  }
  .pin-wrap{
    width: 95%;
    box-sizing: border-box;
  }
  
  #image-track{
    padding-right: 100px;
    margin-left:0;
  }
  
  .pin-wrap {
    height: 50vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow-x: hidden;
    padding: 50px 50px;
  }
  .pin-wrap > * {
    /* min-width: 20vw; */
    margin: 0 100px;
  }
  @media screen and (min-width: 1024px) {
    #image-track {
      width: fit-content;}
      .pin-wrap{
        width: fit-content;}
        .pin-wrap > * {
          min-width: 20vw;}
          #image-track {
            left: 10%; 
          }
  }
  
  .images a{
    background-position: center;
    background-size: cover;
  }
  
  #image-track {
  width: 95%;
  z-index: 10;
    display: flex;
    gap: 4vmin;
    position: relative;
    left: 0%; 
    user-select: none; /* -- Prevent image highlighting -- */
  }
  
  #image-track > .images, img.images, img.image_back, a.images, .image-offer-slide{
    min-width: 300px !important;
    width:  300px !important;
    height: 400px !important;
    object-fit: cover;
    object-position: 100% center;
  
  }
    a.images, .image-offer-slide{
      z-index: 11 !important;
    position: relative;
    overflow: hidden; 
    background-position: center;
    background-size: cover;
    }
    .description__image__overlay {
      z-index: 0;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 118px;
      position: absolute;
      height: 118px;
      pointer-events: none;
      border-radius: 50%;
      background: transparent;
      color: transparent;
      transition: transform 0.7s ease-out;
    }
    .text__overlay_image {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 20px;
      font-weight: bold;
      font-family: var(--heading-font);
      text-transform: uppercase;
      color: transparent;
  }
    a.images:hover .description__image__overlay {
      transform: scale(7) translateZ(0);
      background: rgba(236, 236, 236, 0.191);
      color: var(--light);
    }
    a.images .text__overlay_image {
      animation-delay: 0.5s;
      z-index: 22;
      opacity: 1;
    }
    a.images .text__overlay_image{
      color: var(--light);
      border: 2px solid var(--red);
      background-color: var(--red);
      padding:5px 5px;
    }
    .image-card{
      height: 100%;
    }  
    .swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
      display: flex;
      width: 100% !important;
      left: 0 !important;
      bottom: 4%;
      white-space: nowrap;
      justify-content: center;
      height: 20px;
      align-items: center;
    }
    .swiper-pagination-bullet-active, .swiper-pagination-bullet{
      background-color: var(--red) !important;
    }
    .slide-offers{
      height: 450px;
    }
  

/* === section six === */
.section__six{
  height: 100vh;
  margin-top: 5em;
  display: grid;
  align-content: center;
}
.book__container {
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto;
  max-width: 1080px;
  flex-direction: column;
}

.book__image__container {
  margin:0 auto;
  width: 85%;
  transition: transform 2s, opacity 2s;
}

.image__left__container img {
  margin-left: 8%;
  position: relative;
  z-index: 2;
  padding: 2em;
}


.image__right__container img {
  transform: rotate(10deg);
  margin-top: 4em;
  /* margin-left: 2em; */
  padding: 2em;
}
.main-content__buy-button.section__six__button {
    position: absolute;
    margin-top: 7em;
    left: 0em;
    z-index: 3;
}
.main-content__buy-button.section__six__button.right-botton-pos{
  right: -1em;
  left: auto;
  margin-top: 17em;
}
a.btn-bk.btn--buy-me.right-button{
  background-color: var(--blue);
}
@media screen and (min-width: 475px) and (max-width:1024px) {
  .section__six{
    min-height: 1200px;
  }
  
}
@media screen and (min-width: 650px) {
  .main-content__buy-button.section__six__button.right-botton-pos{
    right: 0em;
  }
}
@media screen and (min-width: 740px) {
  .main-content__buy-button.section__six__button.right-botton-pos{
    right: 3em;
  }
}
@media screen and (min-width: 811px) {
  .main-content__buy-button.section__six__button.right-botton-pos{
    right: 5em ;
  }

  .book__image__container{
    padding-left: 2em;    
  }
}
@media screen and (min-width: 880px) {
  .book__image__container{
    padding-left: 4em;    
  }
  .main-content__buy-button.section__six__button{
    left: 4em;
  }
}
@media screen and (min-width: 880px) {
  .main-content__buy-button.section__six__button.right-botton-pos{
    right: 7em ;
  }
}
@media screen and (min-width: 970px) {
  .main-content__buy-button.section__six__button.right-botton-pos{
    right: 9em;
  }
}
@media screen and (min-width: 1024px) {
  .book__container {
    flex-direction: row;
    }
    .section__six{
      height: 100vh !important;
    }
    .image__right__container img {
      margin-top: 13em;
      margin-left:-6em;

    }
    .image__left__container img {
      margin-left: 23%;

    }
    .book__image__container {
      width: 45%;
      padding-left: 0em; 
    }
    .main-content__buy-button.section__six__button {
      margin-top: 11em;
      margin-left: 2em;
      left: 0em;
    }
    .main-content__buy-button.section__six__button.right-botton-pos{
      right: 6em;
      left: auto;
      margin-top: 31em;
    }
}
@media screen and (min-width:1100px) {
  .image__right__container img{
    margin-left: -7em;
  }
}
@media screen and (min-width:1150px) {
  .image__left__container img{
    margin-left: 27%;
  }
  .main-content__buy-button.section__six__button{
    margin-left:5em;
  }
}
/* === section seven === */

.section__seven {
  margin: 0;
  height: 8000px;
}
#triggerWrap{
  position:absolute;
  top:0;
  right:0;
  width:50px;
}
#triggerWrap .trigger{
  width:100%;
  height:70vh;
}

.site-footer{
  position: absolute;
  width: 100%;
  padding-bottom: 3em;
  z-index: 9999999;
}
.menu-open .site-footer {
  z-index: 0;
}
.verticalslider {
  position: sticky;
  top: 0;
  visibility: hidden;
}
section.image{
  position:relative;
  width:100vw;
  height:100vh;
  margin-top: 6em;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.image__scroll .image.one {
  background-image: url(/wp-content/uploads/2023/10/easyeating_claudiastoeckl-new-scaled.webp);
}
.image__scroll .image.two {
  background-image: url(/wp-content/uploads/2023/09/easyeating_ursula_haya_molcho-scaled.webp);
}
.image__scroll .image.three {
  background-image: url(/wp-content/uploads/2023/09/easyeating_ursula_meryn-scaled.webp);
  }
.image__scroll .image.four {
  background-image: url(/wp-content/uploads/2023/07/easyeating_twowoman-scaled.webp);
}
.image__scroll .image.five {
  background-image: url(/wp-content/uploads/2023/07/easyeating_ursula_dancing-scaled.webp);
}
.image__scroll .image.six {
  background-image: url(/wp-content/uploads/2023/08/easyeating_nicole_mayr_-scaled.webp);
}
.image__scroll .image.seven {
  background-image: url(/wp-content/uploads/2023/09/easyeating_nicole_mayr_mac-scaled.webp);
}
.image__scroll .image.eight {
  background-image: url(/wp-content/uploads/2023/09/easyeating_ursula_nicole_hunde-scaled.webp);
}

@media screen and (max-width: 1024px){
  .image__scroll .image.three {
    background-position: 70% 0%;
    }
}
.image p{
  position: absolute;
  color: var(--black);
  width: 80vw;
  margin-top: 50vh;
  margin-left: 5%;
  padding: 10px 16px;
  background-color: #f9f9f9b3;
}
@media screen and (min-width: 1024px) {
  .image p{
    width: 40vw;
  }
}



/* show objects being animated */
.animated {
  visibility: visible;
  
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;

  -webkit-animation-play-state: running;
  -moz-animation-play-state: running;
  -ms-animation-play-state: running;
  -o-animation-play-state: running;
  animation-play-state: running;
} 





/* mouse links */
.btn--discover .btn__icon_crusor svg text {
  fill:#fff;
  font-size:14px;
  font-weight:400;
  letter-spacing:.1em;
  line-height:1em;
}
.btn--discover .btn__icon_crusor svg .btn-svg__text {
  -webkit-animation:rotating 8s linear infinite;
  animation:rotating 8s linear infinite;
  transform-origin:center;
}
.btn--discover .btn__icon_crusor svg path.btn-svg__circle {
  fill:var(--blue);
}
.btn--discover .btn__icon_crusor svg path.btn-svg__arrow {
  stroke: var(--red);
}
body:not(.touch-device) .properties__item__link{
  height: 120%;
  position: absolute;
  width: 100%;
}
body:not(.touch-device) .properties__item__link>a{
  height: 150%;
  position: absolute;
  width: 60%;
}
.btn__icon_crusor svg{
  /* position: absolute; */
  height:100px;
  width: 100px;
  /* transform: translate(-50%, -50%); */
}
body:not(.touch-device) .btn__icon_crusor {
  opacity: 0;
}
@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.properties__item__link {
  position: absolute;
  overflow: hidden;
  z-index: 1;
}


.section__twoone {
  overflow: hidden;
  height: 100%;
  position: relative; /* Verbirgt den Teil des Kreises, der außerhalb des Abschnitts liegt */
}

.circle {
  position: absolute; /* Positioniert den Kreis relativ zum nächsten Elternelement mit einer Position, die nicht statisch ist (in diesem Fall der Abschnitt) */
  top: 0; /* Startposition des Kreises */
  left: 0; /* Startposition des Kreises */
  z-index: 1;
  width: 5px;
  height: 5px;
  /*yellow*/
  /* background-color: rgba(251, 233, 78, 0.55);
  -webkit-box-shadow: 0px 0px 100px 80px rgba(251, 233, 78, 0.55);
  -moz-box-shadow: 0px 0px 100px 80px rgba(251, 233, 78, 0.55);
  box-shadow: 0px 0px 100px 80px rgba(251, 233, 78, 0.55); */
  /*orange*/
  background-color: rgba(236,116,46, 0.30);
  -webkit-box-shadow: 0px 0px 180px 180px rgb(236 116 46 / 33%);
  -moz-box-shadow: 0px 0px 180px 180px rgb(236 116 46 / 33%);
  box-shadow: 0px 0px 180px 180px rgb(236 116 46 / 33%);
  border-radius: 50%;
  transition: top 4s ease-in-out, left 4s ease-in-out;
}


@keyframes fade {
  0% {opacity: 1;}
  100% {opacity: 0;}
}

@keyframes moveY {
  0% {top: 0;}
  100% {top: 100%;}
}
