@charset "UTF-8";

/*Document Setup*/

:root
{
/*colors*/
    
    --c-dc-green: #FB0603;
    --c-warm-black: #3E2B2F;
    --c-white: #FFFFFF;
    --c-black: #000000;
    --c-light-green: #93D0AA;
    --c-coral: #F04C24;
    --c-burgundy: #711B46;
    --c-dark-yellow: #D58F29;
    --c-bright-yellow: #FFB600;

    --elite-gold: #D6B269;
    --elite-ash:  #B3B3B3;
    
/*fonts*/
    
    font-size: 16px;   /* equlls one rem */
    --ff-primary: 'Lato', sans-serif;
    --ff-heading: 'Oswald', sans-serif;
    
}



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

html, body, main, section
{
    overflow: hidden;
}

body
{
    background-color: #FFFFFF;
    font-family: var(--ff-primary);
    
}

main
{
    background-color: var(--c-burgundy);
    width: 120rem;
    height: 67.5rem;
    margin: 0 auto;
    
    display: grid;
    grid-template-columns: 40.0rem 80.0rem;
    grid-template-rows: 17.1875rem
                        9.375rem
                        18.4375rem
                        16.875rem
                        5.625rem;
    grid-template-areas: "logo video"
                         "weather video"
                         "motion video"
                         "motion news"
                         "ticker ticker";
        
}

.pane_logo
{
    grid-area: logo;
    background-color: var(--c-white);
    background-image: url("../images/logo_bg_section.svg");
    background-repeat: no-repeat;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
}

/*
.madbggreen
{
    
 color: var(--c-dc-green);
}
*/

.pane_weather
{
    grid-area: weather;
    background-color: #FF0095;
}
.pane_motion
{
    grid-area: motion;
    background-color: #000000;
}

.pane_video
{
    grid-area: video;
    background-color: #000000;
}
.pane_news
{
    grid-area: news;
    background-color: #FFFFFF;
}

.pane_ticker
{
    grid-area: ticker;
    background-color: #FFFFFF;
}



/*Additional Code Starts Here*/

/*Logo*/

.log
{
    width: 22.875rem;
   /* margin-top: 2rem; */
    padding: 3.5rem 0rem 0rem 0rem;
}

.pane_logo h1
{
    color: var(--c-white);
    font-size: 1.5rem;
    font-weight: 700;
/*    margin: .5rem;*/
   margin-top: 5.5rem;
     /* padding: 5.5rem 0rem 0rem 0rem; */
    text-align: center;
    
}

.pane_logo time
{
    display: block;
    font-family: var(--ff-heading);
    font-weight: 900;
    color: var(--elite-gold);
    text-align: center;
    margin-top: -7rem;
    /* padding-left: 28rem; */
    padding: 0rem 0rem 0rem 27.5rem;
    font-size: 2rem;

}

.timedata
{
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--c-warm-black);    
}

.datedata
{
    font-size: 1.3125rem;
    font-weight: 400;
    color: var(--c-warm-black);    
}


/*Ticker*/



.ticker_left
{
    
    width: 25rem;
    background: linear-gradient(to bottom right, #ffffff 0%, #ffffff 50%, rgba(11,130,97,1) 50%, rgba(11,130,97,1) 100%);
    font-family: var(--ff-primary);
    padding:0.5rem 1rem;
    height:5.625rem;
    position: absolute;
    overflow: visible;
    z-index: 2;
    
/*    display: flex;*/
    
    
   
    
}

.ticker_left h3
{
    text-align: c;
    color: var(--c-dc-green);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.ticker_left h4
{
    text-align:right;
    color: white;
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0;
    padding: 1.10rem;
/*   align-self:flex-end*/
}

.ticker_container
{
  width: 100%;
  height: 100%;
   
}

@keyframes aTicker
{
  0%
    {
     transform: translateX(140%);
    }
    
    100%
    {
        
     transform: translateX(-100%);   
    }
    
}

.ticker_container span
{
 font-family: var(--ff-primary);
    font-weight: 900;
 color: var(--c-dc-green);
    margin-right: 0.5rem;
    
}

.ticker_move
{
    
    height: 100%;
    animation-name: aTicker;
    animation-duration: 18s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    display: inline-block;
}

.ticker_item
{
    
    display: inline-flex;
    height: 100%;
    align-items: center;
    padding: 0 2rem;
    font-size: 1.1rem;
    color: var(--c-warm-black);
    position: relative;
}

.ticker_item::after
{
     content: '';
     position: absolute;
    height: 50%;
    width: 2px;
    right: 0;
    background-color: var(--c-dc-green);
    
    
}

.ticker_item:last-child::after
{
    display: none;
}

/*News*/

.news_container
{
    background: linear-gradient(to bottom right, #ffffff 0%, #ffffff 72%, rgba(179,179,179,1) 50%, rgba(179,179,179,1) 100%);
/*    background-image: url("../images/newsbg.svg");*/
    width: 100%;
    height: 100%;
}


.news_container .slick-slide 
{
    display:inline-grid !important;
    grid-template-columns: repeat(8, 16rem);
    
}

.news_left
{
    font-family: var(--ff-primary);
    font-size: 1.5rem;
    padding: 2rem 38rem;
    position:absolute;
    overflow:visible !important;
    z-index:+2;
    
    
}

.news_left h3
{
    
  font-family: var(--ff-primary);
  font-weight: 900;
  color: var(--c-warm-black);
  padding-bottom: 0.3rem
}

.news_left h4
{
    font-size:1.2rem;
    color: var(--c-warm-black); 
}


.news_container .slick-slide  h2

{
    grid-row: 1;
    grid-column-start: 2;
    grid-column-end: 4;
    font-size: 1.5rem;
    padding-top: 5rem;
    line-height: 1.25em;
    font-weight: 400;
    position: relative;
    font-family: var(--ff-primary);
    z-index:+2;
    left: 22rem;
}

.news_container .slick-slide h2::before
{
    content: '';
    position: absolute;
    width: 6em;
    height: 0.2em;
    top: 4.0rem;
    background-color: var(--c-dc-green);
    font-family: var(--ff-primary);
}

.news_container .slick-slide img

{
    height: 45%;
    grid-row: 1;
    grid-column: 1/3;
    object-fit: cover;
    
    
}

/*Weather_Section*/

.pane_weather
{
    grid-area: weather;
    background-color: var(--elite-ash);
    display: grid;
    background-repeat: no-repeat;
    background-position: center;
    grid-template-columns: repeat(5, 1fr);
    
}

.weather_day
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.weather_day::after
{
  position: absolute;
    content: "";
    background-color: var(--c-white);
    height: 50%;
    width: 0.0625rem;
    min-width: 1px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);

}

.weather_day:last-child::after
{
   display: none;
}


.weather_day:first-child .weather_top
{
    
     background: rgba(251, 6, 3, 1);
     color: var(--c-white);
/*    background: linear-gradient(to bottom left, #ffffff 0%, #ffffff 50%, rgba(11,130,97,1) 50%, rgba(11,130,97,1) 100%);*/
}

.weather_day:first-child .weather_bottom
{
    
    background: rgba(251, 6, 3, 1);
    color: var(--c-white);
}

.weather_top
{

    background-color: var(--c-white);
    width: 100%;
    padding: 0.5rem 0;
    text-align: center;
    color: var(--c-black);
    font-size: 1.125rem;
    font-weight: 900;
    
}

.weather_bottom
{

    background-color: var(--c-white);
    width: 100%;
    padding: 0.15rem 1rem;
    color: var(--c-black);
    font-size: 1.5rem; 
    font-weight: 900;
    position: relative;
    display: flex;
    justify-content:space-around;
    align-items: baseline;
}

.weather_bottom .temp-min
{
    font-size: 1rem;
}

.weather_day > p
{
   flex-shrink: 0;
   margin-bottom: 0.25rem;
    color: var(--c-white);
    
}

.weather_bottom p {
    position: relative;
}

.weather_bottom p::after
{
    position: absolute;
    content: "\00B0 C";
    font-size: 0.6em;
    top: 0.1em;
    
}

.weatherimg1
{
    width: 4rem;
    height: 4rem;
}

#videoPlayer
{
    width: 100%;
    height: 100%;
}

iframe{
    width:100%;
    height:100%;
}
/*Additional Code Ends Here*/