        .head {}
        
        .pageIntro {
            display: grid;
            grid-template-columns: 1fr 2fr 1fr;
            grid-auto-rows: minmax(100px, auto);           
        }

        .imageTop{
            max-height:450px;
            display: block;
            margin: auto;
        }
        .imageSwap{
            content: url("/img/woman-pointing.jpg");
            max-height:450px;
            display: block;
            margin: auto;
        }

        @media only screen and (max-width: 1100px) {
            .imageSwap{
                content: url("/img/Woman-pointing-down.jpg");
                max-height:450px;
                display: block;
                margin: auto;
            }
        }
        .tiny {
            font-size: small;
        }
        .highlight{
            font-weight: 600;
            font-style: italic;
        }
        .quote {
            font-style: italic;
            color: #b1b1b1;
            border-left: 5px solid #ffc005;
            margin-left: 25px;
            padding-left: 20px;
        }
        
        
        .midBar {
            background-color: #e8e8e8;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-auto-rows: minmax(100px, auto);
            grid-template-areas: "points annuityForm";
        }
        /*Form style*/
        
        .shape {
            width: 350px;
            margin: auto;
            display: block;
            border-radius: 3px;
            border-style: none;
            height: 2.25rem;
        }
        
        #helptext {
            font-size: small;
        }
        
        .errorText {
            color: red;
            text-align: center;
        }
        /*Form button style*/
        
        .confirm {
            display: block;
            margin: auto;
            width: 20%;
            border-radius: 3px;
            padding: 6px 12px;
            background-color: #0066ff;
            margin-bottom: 10px;
        }
        
        a.confirm {
            color: white;
            text-align: center;
        }
        
        a.confirm:hover {
            background-color: #4a9bea;
        }
        
        .bookImg {
            max-width: 400px;
            display: block;
            margin: auto;
        }
        
        .titlePoints {
            text-align: center;
            margin-top: 10%;
        }
        
        .pntStyle {
            display: block;
            list-style-image: url('/img/check3.svg');
            margin-block-start: 5rem;
            margin-block-end: 10rem;
            margin-inline-start: 0px;
            margin-inline-end: 0px;
            padding-inline-start: 100px;
        }
        
        @media only screen and (max-width: 1100px) {
            .pntStyle {
                padding-inline-start: 50px;
            }
            .pageIntro {
                display: grid;
                grid-template-columns: 1fr;
                     
            }
        }
        
        @media only screen and (max-width: 900px) {
            .midBar {
                display: grid;
                grid-template-columns: 1fr;
                grid-template-areas: "bookImg" "points" "annuityForm";
                margin: 0;
                padding: 20px;
            }
            .pntStyle {
                padding-inline-start: 10px;
                
            }
            .titlePoints {
                font-size: 1.5rem;
                margin-top: unset;
            }
            .titlePoints-p{
                                    font-size: 1.5rem;
                    margin-top: unset;
                }
            
            h1 {
                font-size: 2.5rem;
            }
        }
        
        .pntStyle {
            margin: 20px;
            font-size: 2rem;
        }
        
        .vid {
            display: block;
            margin: auto;
            margin-top: 55px;
        }
        
        @media only screen and (max-width: 730px) {
            .vid {
                display: block;
                margin: auto;
                width: 100%;
                margin-top: 55px;
            }
        }
        .right{
            float:right;
        }
