.visuallyhidden {
	border:0;
	clip:rect(0 0 0 0);
	height:1px;
	margin:-1px;
	overflow:hidden;
	padding:0;
	position:absolute;
	width:1px;
}

html{
    overflow-x: hidden;
}

body, html{
    width: 100vw;
    height: 100%;
    padding: 0;
    margin: 0;
    background: #fdfaed;
    scroll-behavior: smooth;
    /* overflow-x: hidden; */
}


.wrapper {
    width: 100vw;
    /* overflow: hidden; */
}
  
  .marquee {
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    animation: marquee 60s linear infinite;
  }

  .marquee-flex:hover{
    animation-play-state: paused;
  }

  .marquee-flex{
      display: inline-flex;
  }

  .marquee p {
    display: inline-block;
    font-family: 'Gilroy Heavy';
    font-size: 46px;
    text-transform: uppercase;
    margin-bottom: 0;
  }

  .marquee .itemMarquee {
    margin: 0 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    padding-bottom: 7rem;
    justify-content: center;
    align-items: center;
  }

  .marquee .itemMarquee > a{
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -25%);
    background-color: white;
    border-radius: 50px;
    color: black;
    font-family: 'Gilroy Heavy';
    font-size: 17px;
    text-align: center;
    padding: 20px 30px;
    text-transform: uppercase;
  }

  .marquee .itemMarquee:hover > a{
    display: block;
  }

  .marquee .itemMarquee > span{
    font-size: 22px;
    line-height: 24px;
    font-family: 'Gilroy Heavy';
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 10px;
    height: auto;
    white-space: break-spaces;
    text-transform: uppercase;
  }

  .marquee .itemMarquee-green > span{
    color: #26ad61;
  }

  .marquee .itemMarquee-orange > span{
    color: #ed705c;
  }

  .marquee .itemMarquee-blue > span{
    color: #26bfe8;
  }
  
	.marquee .itemMarquee-blue_2 > span{
    color: #26bfe8;
  }

  .itemMarquee-1::before{
    content: url('img/illu-1.png'); 
  }

  .itemMarquee-1:hover::before{
    content: url('img/illu-1-hover.png'); 
  }

  .itemMarquee-2::before{
    content: url('img/illu-2.png'); 
  }

  .itemMarquee-2:hover::before{
    content: url('img/illu-2-hover.png'); 
  }

  .itemMarquee-3::before{
    content: url('img/illu-3.png'); 
  }

  .itemMarquee-3:hover::before{
    content: url('img/illu-3-hover.png'); 
  }

  .itemMarquee-4::before{
    content: url('img/illu-4.png'); 
  }

  .itemMarquee-4:hover::before{
    content: url('img/illu-4-hover.png'); 
  }

  .itemMarquee-5::before{
    content: url('img/illu-5.png'); 
  }

  .itemMarquee-5:hover::before{
    content: url('img/illu-5-hover.png'); 
  }

  .itemMarquee-6::before{
    content: url('img/illu-6.png'); 
  }

  .itemMarquee-6:hover::before{
    content: url('img/illu-6-hover.png'); 
  }

  .itemMarquee-7::before{
    content: url('img/illu-7.png'); 
  }

  .itemMarquee-7:hover::before{
    content: url('img/illu-7-hover.png'); 
  }

  .itemMarquee-8::before{
    content: url('img/illu-8.png'); 
  }

  .itemMarquee-8:hover::before{
    content: url('img/illu-8-hover.png'); 
  }

  .itemMarquee-9::before{
    content: url('img/illu-9.png'); 
  }

  .itemMarquee-9:hover::before{
    content: url('img/illu-9-hover.png'); 
  }

  .rowItem{
      align-items: stretch;
  }

  .itemDetail-Inner{
      width: 50%;
  }

  
  @keyframes marquee {
    0% {
      transform: translate3d(0, 0, 0);
    }
    100% {
      transform: translate3d(-50%, 0, 0);
    }
  }