﻿.getting-started-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 20px;

    margin-top: 20px;
    margin-bottom: 50px;
}


/* --------- iphone portrait -----------  */
@media only screen and (max-device-width: 540px) {
    .getting-started-grid {
        grid-template-columns: 1fr;
    }
}

.getting-started-video-container {
    width: 100%;
}

.year-at-a-glance {
    cursor: pointer;
    position: relative;    
}

.year-at-a-glance-grid {
    position: absolute;
    top: 0;
    left: 0;
    

    display: grid;
    grid-gap: 15px;
    grid-template-rows: auto auto 1fr;

    padding:20px;

    color: white;    
}


/* --------- ipad portrait -------------  */
@media screen and (min-width: 481px) and (max-width: 1366px) {
    .year-at-a-glance-grid {
        grid-gap: 5px;
        padding: 10px;
    }
}

/* --------- iphone portrait -----------  */
@media only screen and (max-device-width: 540px) {
    .year-at-a-glance-grid {
        grid-gap: 5px;
        padding: 5px;
    }
}
        
        

.year-at-a-glance-grid-name {
    font-size: 2rem;
    line-height: 2.5rem;
    font-weight: bold;
}


/* --------- ipad portrait -------------  */
@media screen and (min-width: 481px) and (max-width: 1366px) {
    .year-at-a-glance-grid-name {
        font-size: 1.2rem;
        line-height: 1.7rem;
    }
}


/* --------- iphone portrait -----------  */
@media only screen and (max-device-width: 540px) {
    .year-at-a-glance-grid-name {
        font-size: 1.2rem;
        line-height: 1.3rem;
    }
}
        

.year-at-a-glance-grid-title {
    font-size: 3rem;
    line-height: 3.5rem;
    font-weight: bold;
}


/* --------- ipad portrait -------------  */
@media screen and (min-width: 481px) and (max-width: 1366px) {
    .year-at-a-glance-grid-title {
        font-size: 2rem;
        line-height: 2.2rem;
    }
}


/* --------- iphone portrait -----------  */
@media only screen and (max-device-width: 540px) {
    .year-at-a-glance-grid-title {
        font-size: 1.5rem;
        line-height: 2rem;
    }
}
        

.year-at-a-glance-grid-message {
    font-size: 1.5rem;
    line-height: 2rem;    

    display: flex;
    align-items: end;
}


/* --------- ipad portrait -------------  */
@media screen and (min-width: 481px) and (max-width: 1366px) {
    .year-at-a-glance-grid-message {
        font-size: 1rem;
        line-height: 1.5rem;
    }
}


/* --------- iphone portrait -----------  */
@media only screen and (max-device-width: 540px) {
    .year-at-a-glance-grid-message {
        font-size: .9rem;
        line-height: 1rem;
    }
}
        

.helpful-links {
    text-align: center;
}

.helpful-links-title {
    border-bottom: 1px solid #474747;
}

.helpful-links-link > a {
    font-weight: bold;
    font-size: 1.2rem;
}

.helpful-links-age-name {
    margin-top: 10px;
}

.video-box{ 
    padding:5px;
    border: 2px solid darkgray;
}



