﻿.one-two-three-container {
    padding-top: 15px;
    background-color: white;
}

.one-two-three-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;

    margin-top: 40px;
}


/* --------- iphone portrait -----------  */
@media only screen and (max-device-width: 540px) {
    .one-two-three-grid {
        grid-template-columns: 1fr;
    }
}
        

    .one-two-three-grid-one {
        position: relative;
        text-align: center;
        color: white;
        border-radius: 25px;
        
        background-color: #005EA2; 
        
    }
        .one-two-three-grid-one > .number {
            background-color:#005EA2;
        }

        .one-two-three-grid-one > .text {            
            font-size: 2rem;
            line-height: 2.5rem;

            padding: 20px;
            padding-top: 70px;
        }

.one-two-three-grid-two {
    position: relative;
    text-align: center;
    color: white;
    border-radius: 25px;
    background-color: #50CCEC;
}

    .one-two-three-grid-two > .number {
        background-color: #50CCEC;
    }

    .one-two-three-grid-two > .text {
        font-size: 2rem;
        line-height: 2.5rem;
        padding: 20px;
        padding-top: 70px;
    }

.one-two-three-grid-three {
    position: relative;
    text-align: center;
    color: white;
    border-radius: 25px;
    background-color: #E97B3E;
}

    .one-two-three-grid-three > .number {
        background-color: #E97B3E;
    }

    .one-two-three-grid-three > .text {
        font-size: 2rem;
        line-height: 2.5rem;
        padding: 20px;
        padding-top: 70px;
    }

.step-text {
    padding-top: 20px;
    padding-bottom: 35px;    
}

.one-two-three-circle {
    position: absolute; /* Positioning to place the number */
    top: -45px; /* Move above the container */
    left: calc(50% - 50px); /* Center horizontally */
    
    width: 80px;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
    border: 10px solid white;
    border-radius: 50%;
    color: white;
    font-size: 3rem;
    line-height: 75px;
}





ul {
    list-style-type: none;
    padding-left: 0;
}

li.requirement-li {
    position: relative;
    padding-left: 30px;
    padding-top: 5px;
    margin-bottom: 10px;

    display: flex;
    align-items: center;
}

    li.requirement-li::before {
        content: '';
        position: absolute;
        left: 5px;
        top:12px;
        width: 10px;
        height: 10px;
        border: 2px solid darkgray;
        background-color: #fff;
    }        

    li.requirement-li::after {
        content: '\2713';
        position: absolute;
        left: 3px;
        top: 0px;
        font-size: 28px;
        font-weight: bold;
        color: #000;
        display: block;
    }
    
    li.age-4-5::after {
        color: #2e9351;
    }

    li.age-5-7::after {
        color: #b20229;
    }

    li.age-6-8::after {
        color: #cd702f;
    }

    li.age-7-9::after {
        color: #b88f2e;
    }

    li.age-8-10::after {
        color: #60a353;
    }

    li.age-9-11::after {
        color: #44a5dc;
    }

    li.age-10-12::after {
        color: #605192;
    }

    li.age-11-13::after {
        color: #9010c4;
    }

    li.age-12-14::after {
        color: #db8e32;
    }

    li.high-school-1::after {
        color: #619155;
    }



.choosing-an-age-level-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 15px;
}


/* --------- iphone portrait -----------  */
@media only screen and (max-device-width: 540px) {
    .choosing-an-age-level-grid {
        grid-template-columns: 1fr;
    }
}

.age-name-title {
    padding-top: 35px;
}


.requirements-grid {
    display: grid;
    grid-gap: 15px;
}



