header{
    height: 100vh;
    min-height: 50rem;
}
#outdoor
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 50rem;
}

#outdoor .outdoor-list
{
    width: 100%;
    height: 100%;
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

/* Hide scrollbar for Chrome, Safari and Opera */
#outdoor .outdoor-list::-webkit-scrollbar 
{
    display: none;
}
  
/* Hide scrollbar for IE, Edge and Firefox */
#outdoor .outdoor-list 
{
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

#outdoor .outdoor-list .outdoor-item 
{
    width: 100vw;
    height: 100%;
    flex-shrink: 0;
    scroll-snap-align: start;
    display: inline-block;
}

#outdoor .outdoor-list .outdoor-item .outdoor-link
{
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    display: inline-block;
}

#outdoor .outdoor-list .outdoor-item .outdoor-link .outdoor-image
{
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

#outdoor .outdoor-bullets 
{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 2.0rem;
    left: 0;
    width: 100%;
}

#outdoor .outdoor-bullets .outdoor-circle 
{
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    background-color: #ffffff;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

#outdoor .outdoor-bullets .outdoor-circle.active
{
    background-color: #20A637;
} 

#outdoor .outdoor-arrow 
{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

#outdoor:hover .outdoor-arrow 
{
    opacity: 1;
}

#outdoor .outdoor-arrow img 
{
    height: 5.0rem;
}

#outdoor .outdoor-arrow.next 
{
    right: 1.0rem;
}

#outdoor .outdoor-arrow.prev 
{
    left: 1.0rem;
}

/* TEXT  CUSTOM */

#outdoor .title1
{
    text-align: left;
    font-weight: 900;
    font-size: 5.8rem !important;
    line-height: 7.1rem !important;
    letter-spacing: 0px;
    color: #fff !important;
    width: auto !important;
    max-width: 50rem;
    margin-bottom: 1.5rem;
    padding-left: 0 !important;
}

#outdoor .title1 b 
{
    color: #FFFFFF !important;
    background-color: #000 !important;
    padding: 1.0rem 2.0rem;
}

#outdoor .title2
{
    display: none;
    margin-top: 1.2rem !important;
    text-align: left !important;
    font-size: 2.4rem !important;
    line-height: 4.0rem !important;
    letter-spacing: 0px !important;
    color: #FFFFFF !important;
    width: auto !important;
    padding-left: 0 !important;
}

#outdoor .text-banner
{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

#outdoor .text-banner .description {
    max-width: 100rem;
    margin-top: auto;
    margin-bottom: 6rem;
    background-color: rgba(32, 166, 55, 0.9);
    color: white;
    padding: 3rem 6rem;
}

#outdoor .text-banner .description > p {
    font-size: 2.0rem;
    margin-bottom: 2.0rem;
    line-height: 2.2rem;
}

#outdoor .text-banner .description em {
    font-style: italic;    
}

#outdoor .text-banner.align_right 
{
    align-items: flex-end;
}

#outdoor .text-banner.align_right .title1,
#outdoor .text-banner.align_right .title2
{
    text-align: right !important;
}

#outdoor .text-banner.align_left 
{
    align-items: flex-start;
}

#outdoor .text-banner.align_left .title1,
#outdoor .text-banner.align_left .title1
{
    text-align: left !important;
}

#outdoor .text-banner.align_center 
{
    text-align: center;
    align-items: center;
}

#outdoor .text-banner.align_center .title1,
#outdoor .text-banner.align_center .title1
{
    text-align: center !important;
}
