:root {
    --colorOne: #141414;
    --colorTwo: #5c5c5c;
    --colorWhite: #e5e5e5;

    --tileBorderRadius: 4px;

    --fontOne: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

*, *::after, *::before {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.header {
    padding: 2% 5%;
    display: flex;
    position: fixed;
    
    top:0;
    margin-top: 0%;
    z-index: 5;
}

.nav{
    color: white;
    gap:2px;
    margin-left: 1.5em;
    margin-top: 0.5em;
    opacity: 90%;
   
}

.nav a {
    margin: 1em;
    margin-top: 0.5em;
    font-family: Bebas Neue;
    font-size: 1em;
    opacity: 90%;
   

}

a:hover{
    cursor: pointer;
    opacity: 60%;
}

video {
    z-index: -1;
    
}

video {
    position:absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:72%;
   
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    
  }

  .overlay {
      color: green;
      /* font-family: Georgia, 'Times New Roman', Times, serif; */
      font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif ;
      font-size: 3rem;
      margin-top: 10rem;
      margin-left: 3rem;
      font-weight: bold;
      text-transform: uppercase;
  }
  
.plot{
    color: white;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 1px 1px black;
    margin-top:1rem;
    text-transform: none;
    font-weight: none;
}

.play {
    margin-left: 3rem;
    width: 7.5em;
    height: 2.5em;
    background-color: rgba(0, 0, 0, .25);
    cursor: pointer;
    border-radius: 5px;
    margin-top: 1rem;
   
  }
  
  .moreinfo {
    margin-left: 1rem;
    width: 9em;
    height: 2.5em;
    background-color: rgba(0, 0, 0, .25);
    cursor: pointer;
    border-radius: 5px;
    margin-top: 1rem;
  
  }
  
  .play:hover , .moreinfo:hover {
    transform: scale(1.05);
  }

body {
    font-family: var(--fontOne);
    background-color: var(--colorOne);
    overflow-x: hidden;
}

.headerLogo {
    width: 120px;
}

.thumbSection {
    padding-top: 3%;
    color: var(--colorWhite);
    /* margin-top: 14rem; */
    margin-top: 4.1rem;
}

.thumbTitle {
    font-size: 1.2rem;
    line-height: 14px;
    font-weight: 500;
    margin: 0 4% 12px;
}

.thumbTiles.swiper-container {
    padding: 0 4%;
}

.thumbTile {
    width: 20%;
}

.thumbTile__image {
    width: 100%;
    border-radius: var(--tileBorderRadius);
}

.thumbTiles .swiper-button-prev,
.thumbTiles .swiper-button-next {
    height: 120vh;
    width: 4%;
    width: calc(4% - 5px);
    top: 0;
    bottom: 0;
    margin: 0;
    background-color: rgba(20, 20, 20, 0.5);
}

.thumbTiles .swiper-button-prev {
    left: 0;
    border-top-right-radius: var(--tileBorderRadius);
    border-bottom-right-radius: var(--tileBorderRadius);
}

.thumbTiles .swiper-button-next {
    right: 0;
    border-top-left-radius: var(--tileBorderRadius);
    border-bottom-left-radius: var(--tileBorderRadius);
}

.thumbTiles .swiper-button-prev::after,
.thumbTiles .swiper-button-next::after {
    color: #fff;
    font-size: 4vw;
    font-weight: bold;
    transition: transform 0.1s ease-out;
}

@media screen and (min-width: 640px) {
    .thumbTiles .swiper-button-prev::after,
    .thumbTiles .swiper-button-next::after {
        display: none;
        font-size: 2.4vw;
     
    }

    .thumbTiles .swiper-button-prev:hover::after,
    .thumbTiles .swiper-button-next:hover::after {
        transform: scale(1.25);
    }

    .thumbTiles:hover .swiper-button-prev::after,
    .thumbTiles:hover .swiper-button-next::after {
        display: block;
    }
    .thumbTiles .swiper-button-prev,
.thumbTiles .swiper-button-next {
    height:160vh;
}

}


:root {
    --handle-size: 3rem;
    --img-gap: .25rem;
}

.container{
justify-content: center;
display:flex;
overflow: hidden;
}

.slider {
    --items-per-screen: 4;
--slider-index: 0;
display: flex;
/* width: calc(100% - 2 * var(--slider-padding)); */
transform: translateX(calc(var(--slider-index) * -100%));
flex-grow: 1;
margin: 0 var(--img-gap);
transition: transform 250ms ease-in-out;

}

.slider > img {
 flex: 0 0 calc(100% / var(--items-per-screen));
max-width: 20%;
aspect-ratio: 16 / 9;
padding: var(--img-gap);
border-radius: 1rem;
overflow: hidden;
}

img:hover{
    opacity: 80%;
    cursor: pointer;
}

.handle {
    
    border:none;
    border-radius: 0.6rem;
    flex-grow: 0;
    flex-shrink: 0;
    padding: 0 .5rem;
    background-color: rgba( 0, 0, 0, .25);
    z-index: 10;
    margin: var(--img-gap) 0; 
    width: var (--handle-size);
    cursor: pointer;
    font-size: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    line-height: 0;
    transition: background-color 150ms ease-in-out;
}

.left-handle {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.right-handle {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.handle:hover,
.handle:focus {
    background-color: rgba( 0, 0, 0, 5);
}


.text {
    transition: transform 150ms ease-in-out;
    font-size: 4rem;
}



.handle:hover .text,
.handle:focus .text{
  
    transform: scale(1.2);
}

.row{

}

.head{
display: flex;
justify-content: space-between;
padding: .5rem calc(var(--img-gap) * 2 + 
var(--handle-size));
}

.title{

color: white;
font-size: 1.2rem;
    line-height: 14px;
    font-weight: 500;
    
}

.progress-bar{
display: flex;
gap: .25rem;
margin-right: 0;
}

.progress-item {
    flex: 0 0 1.5rem;
    min-width: 1.5rem;
    height: .15rem;
    background-color: rgba(255, 255, 255, .5);
}

.progress-item.active{
 
    background-color: rgba(255, 255, 255, .9);
}

footer{
   
    margin-top:4rem;
    display: flex;
    margin-bottom: 3rem;
    margin-left: 4em;
   
}



.service-btn{
    background-color: Transparent;
background-repeat:no-repeat;
color: grey;
border: thin solid grey;
text-align: center;
}

.service-btn:hover{
    text-decoration: none;
    cursor: pointer;
    color:white;
}

footer li{
    display: block;
    padding:0.75em;
    font-size:0.8em;
    text-align: left;
    margin-left: 6em;
    color: grey;
}
footer li:hover{
    text-decoration: underline;
    cursor: pointer;
}
