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

body{
    background:#eee;
}
html { 
    scroll-behavior: smooth; 
  }

#nav-background{
  
    opacity: 0;

}

.header-logo{
    position: fixed;
    top:8px;
    left:16px;
}

.nav-item{
    color: var(--color-blue-lt) !important;

}


#hero-button{
    color: white;
    outline: 1px solid white;
    background-color: var(--color-blue);
}

.header-down-arrow {
    position: absolute;
      bottom: 2vh;
      left: 0;
      right: 0;
    text-align: center;
    z-index: 10;
  }

  @keyframes fade-slide-up {
    0% {
      opacity: 0;
      transform: translateY(4rem);
    }
    100% {
      opacity: 1;
      transform: none;
    }
  }

  @keyframes pulse {
    0% {
      opacity: 1;
      transform: none;
    }
    50% {
      opacity: .8;
      transform: scale(.8);
    }
    100% {
      opacity: 1;
      transform: none;
    }
  }

  .header-down-arrow img {
    animation: fade-slide-up 0.5s 0.2s ease-out forwards,
    pulse 2s 1s ease-out infinite;
    opacity: 0;
  }


#plan-button{
    margin: 8px 0 0;
    background-color: var(--color-gold);
    opacity: .90;
    border: 1px solid var(--color-blue-lt);
    color: var(--color-blue-lt) !important;
    height:48px;
    border-radius: 0;
    font-size: 1.2rem;
    font-weight: 300;
    width: auto;
    min-width: auto;
    padding: 0 16px;
}
#plan-button:hover{
    background-color: var(--color-gold-hover);
    color: var(--color-blue-lt) !important;
    
}
.banner-area{
 
    width:100%;
    height:100vh;
    background-image:linear-gradient(rgba(0, 0, 0, 0.4),rgba(0, 0, 0, 0.1)), url(hero.jpg);
    background-size:cover;
    background-position: bottom;
    z-index: -1 ;
}        

.content-area{
    height:100%;
    display:flex;
    justify-content: flex-end;
    align-items: center;
}

.content-area .content{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    padding-right: 64px;
    max-width: 50%;
}

.content h1{
    color: #ffffff;
    font-size: 4rem;
    font-weight: 700;
    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: rgb(31, 31, 31);
    text-align: right;
    max-width: 13ch
}

.container {
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: space-evenly;
    align-items: stretch;
    gap: 32px;
    flex-direction: row;
}

.container .box {
    width: 100%;
    margin-top: 8px;
    border-radius: 2px;
    cursor: pointer;
    position: relative;

}

.box-img{
    height: 100%;
    object-fit:cover;
    border-radius: 6px;
    width: 100%;
    box-shadow: 0 0 10px -3px rgba(0, 0, 0, .7);

}

.flex-spacer{
    flex:1 0 96px;
}

#fleet-holder{
    margin: 96px 10% 96px;
}

.box-txt{
    position: absolute;
    bottom:-4px;
    right: 8px;
    text-align: right;
}

.box-title{
    color: #FFFFFF;
    font-size: 2rem;
    font-weight: 700;
    -webkit-text-stroke-width: 0.7px;
    -webkit-text-stroke-color: rgb(31, 31, 31);
}
.box-subtitle{
    color: var(--color-whitish);
    font-size: 2rem;
    font-weight: 500;
    padding-right: 16px;
    line-height: 1.1rem;
    -webkit-text-stroke-width: 0.1px;
    -webkit-text-stroke-color: rgb(31, 31, 31);
}

#subscribe-holder{
    position: relative;

}


#subscribe-img{
    width: 100%;
    width:100%;
    height:100vh;
    background-image:linear-gradient(270deg, rgba(0, 0, 0, 0.8),rgba(0, 0, 0, 0.2)), url(subscribe.jpg);
    background-size:cover;
    background-position: center;

}

#subscribe-text{
    position: absolute;
    top: 30%;
    right: 5%;
    width: 50%;
}

#subscribe-header{
    color: white;
    font-size: 64px;
    font-weight: 900;
    line-height: 64px;
    width: 100%;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: black;

}

#subscribe-holder{
    position: relative;
    margin-top: 128px;

}

#subscribe-input{
    position: relative;
    margin-top: 32px;
    background: transparent;
    height: 64px;
    /* box-shadow: 0 0 10px -3px rgba(0, 0, 0, .8); */
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 16px;
    
}


#subscribe-button:hover, #subscribe-button-mobile:hover{
   cursor: pointer;
   background: var(--color-blue-hover);
}

#subscribe-button-mobile{
   margin-top: 16px;
    height: 48px;
    background: var(--color-supplimental);
    border: none;
    border: 0.2px solid var(--color-background-text);
    border-radius: 5px;
    padding: 0 12px;
    font-size: 1rem;
    color: var(--color-background-text);
    font-weight: 500;
    box-shadow: 0 0 10px -3px rgba(0, 0, 0, .1);
    width: 50%

}


#subscribe-email{
    margin-top: 8px;
    padding: 8px;
    width: 100%;
    height: 50px;
    font-size: 1.2rem;
    border: 1px solid #000000;
    color: black;
    z-index: 54px;
    max-width:600px;
}

#subscribe-email:focus{
    outline: none;
}

#subscribe-icon{
    position: relative;
    left: 90px;
   height: 100%;
   margin-top: 22px;
   color: #00000085;
}


#refer-container,#unlimited-container{

    border-radius: 8px;
    padding: 24px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 32px;
    margin: 128px 64px;
    background-color: var(--color-supplimental-dark);
    box-shadow: 0 0 10px -3px rgba(0, 0, 0, .7);

 

}

.crt-logo{
    opacity: 0;
}

#refer-img,#unlimited-img{
    outline: 16px solid white ;
    outline-offset: -10px;
    object-fit: fill;
    max-width: 100%;
}

#refer-img,#unlimited-img{
    outline: 16px solid white ;
    outline-offset: -10px;
    object-fit: fill;
    max-width: 100%;
}

#unlimited-text{
    text-align: center;
}


#refer-header,#unlimited-header{
    font-size: 64px;
    line-height: 64px;
    font-weight: 500;
    color:var(--color-whitish);
}

#refer-subtext{
    margin: 8px 10% 0 0;
    font-weight: 300;

}

#unlimited-subtext{
    margin: 8px 0 0 0;
    font-weight: 300;

}

#refer-button,#unlimited-button{
    margin: 32px 0 0;
    padding: 0 32px;
    height: 64px;

}

#review-holder{

   
    margin: 128px 64px 64px;
    text-align: left;
    flex-direction: column;
    display: flex;
    justify-content: space-evenly;
    align-items:center;
    gap: 32px;
}



#review-container{
    margin-bottom: 64px;
    flex-direction: row;
    display: flex;
    justify-content: space-evenly;
    align-items:baseline;
    gap: 32px;
 
}


.review-box{
    position: relative;
    display: flex;
    justify-content: space-evenly;
    align-items: top;
    gap: 8px;
    flex-direction: column;
    flex-basis: 100%;
 
}

.review-header{
    color: var(--color-background-text);
    display: flex;
    justify-content: left;
    align-items: left;
    gap: 16px;
   
}

.review-avatar{
    object-fit: fill;
    max-height: 128px;
    align-items: left;

}

.review-name{
    align-items: left;

    font-size: 36px;
    font-weight: 700;
}

.review-date{
    font-size: 24px;
    font-weight: 300;
    line-height: 24px;
}

.review-info{
    
    align-items: baseline;

}

.review-stars{
    line-height: 24px;
    font-size: 16px; 
    color: goldenrod;

}


#review-button{
    margin: 64px 0;
    padding: 0 32px;
    height: 64px;

}


#covid-content{
    display: flex;
    flex-direction: row;
}

#covid-img{
    width: 50%;
    max-height: 100%;
    object-fit:cover;
    margin: 0px !important;
    padding: 0;
}

.modal-close {
    padding:8px 16px;
}

  /***********************RESPONSIVE BELOW************************************************************/




/* MOBILE: */
@media only screen and (max-width: 992px) {

    .container{
        flex-direction: column;

    }

  
   
    #fleet-holder{
        margin: 64px 3% 96px;
    }

    .header{
        width: 100%;
        text-align: center;
        font-size: 2rem;
        font-weight: 700;
    }

    .content h1{
        color: #ffffff;
        font-size: 2.5rem;
        font-weight: 700;
        -webkit-text-stroke-width: 0.5px;
        -webkit-text-stroke-color: rgb(31, 31, 31);
        text-align: right;
        max-width: 13ch;
    }


    .content-area{
        height:100%; 
        max-width: 100vw;
        display:flex;
        justify-content: flex-end;
        align-items: flex-end;
    }
    
    .content-area .content{
        max-width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items:flex-end;
        padding: 45% 16px ;
      
    }

    #plan-button{
    font-size: 1.2rem;

}
    .box-txt{
        position: absolute;
        bottom:4px;
        right: 0;
        text-align: right;
    }

    .box-title{
        font-size: 2rem;
        font-weight: 700;
        padding-right: 4px;
        -webkit-text-stroke-width: 0.5px;
        -webkit-text-stroke-color: rgb(31, 31, 31);
    }

 

    #subscribe-holder{
        margin-top: 64px;
    }

    #subscribe-input{
        position: relative;
        background: transparent;
        height: 128px;
        border-radius: 16px;
        /* box-shadow: 0 0 10px -3px rgba(0, 0, 0, .8); */
        margin: 0;
        width: 100%;
        flex-direction: column;
    }

        
    #subscribe-img{
        width: 100%;
        width:100%;
        height:100vh;
        background-image:linear-gradient( rgba(0, 0, 0, 0.5),rgba(0, 0, 0, 0.2)), url(subscribe_m.jpg);
        background-size:cover;
        background-position: center;

    }

    #subscribe-button{
        width: 100%
    }


    #subscribe-text{
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        padding:16px;
        top: 32px;
        left: 0;
        bottom: 32px;

    }

    #subscribe-img{
        margin-bottom: -5px;
        min-height: 70vh;
        object-fit: cover;

    }

    #subscribe-header{
        color: white;
        font-size: 3rem;
        font-weight: 900;
        line-height: 3rem;
        padding-right: 16px;
        width: 100%;
    
    }


    
    #refer-container{
        height: 100vh;
    margin: 0;
    border-radius: 0;
    padding: 10px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 32px;
    background-color: var(--color-background-text);
    flex-direction: column;
 

}
    
    #unlimited-container{
    /* height: 100vh; */
    margin: 0;
    border-radius: 0;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 32px;
    background-color: var(--color-background-text);
    flex-direction: column;
 

}

    #unlimited-text{
        margin-top: 64px;
    }

    #unlimited-img{
        width: 100%;
        margin: 0 0 32px;
        outline: none;
    }



    #refer-img{
        width: 80%;
        margin: 25% 10% 32px;
    }


    #refer-header, #unlimited-header{
        font-size: 32px;
        line-height: 32px;
        text-align: center;

    }

    #refer-subtext, #unlimited-subtext{
        font-size: 24px;
      
        text-align: center;
        margin: 8px 0 0;
    }

    #refer-button, #unlimited-button{
        margin: 56px 10%;
        width: 80%;
    }

    
    
    #review-container{
    margin: 0;
    border-radius: 0;
    padding: 10px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;

    flex-direction: column;
    height: 100%;

    }


    
    .modal-content{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
        width: 100%;
        max-height: 100%;
    }

    .modal-header{
        margin: 0;
    }



    #review2, .flex-spacer{
       display: none;
    }

    
    #covidModal{
        padding: 0 !important;
        height: auto;
    }
    #covid-content{
        flex-direction: column;
        justify-content: space-between;
        align-items:baseline;
        gap: 16px;
    }

    #covid-img{
        
       width: 150%;
        
        object-fit:cover;
        margin: 0px !important;
        padding: 0;
        order: 1;
       
      
    }

    #covid-text{
        position: relative;
        top: 32px;
        order: 0;
    }

    #covid-detail{
        padding: 16px 32px 0;
    }

    .modal-close {
        position: fixed;
        top: 0;
        right: 0;
    }
    

    
    
}



/* DESKTOP: */
@media only screen and (min-width: 992px) {
    


   

    #refer-text{
        margin-left: 32px;
        flex-grow: 4;
    }

    #refer-img-holder, #unlimited-img-holder{
        max-width: 50%;
        padding: 24px 0 24px 32px;
    }

    #subscribe-button-mobile{
        visibility: hidden;
        height: 0;
        margin: 0;
    }




}
