        /* intro section */

        .Wrapper {
            position:relative;
            height: 760px;
            display: grid;
            grid-template-rows: 33% 33% 33%;
            padding: 0;
            }
        
        .MainImage {
                /* layout */
                display: flex;
                min-height: 760px;
                justify-content: center;
                align-items: center;
                z-index: 1;      
            
                /* background */
                opacity: 0.7;
                background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.00) 100%), url('https://images.pexels.com/photos/5896924/pexels-photo-5896924.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2'), lightgray 50% / cover no-repeat;
                background-size:cover;
                background-position: center;
                background-repeat: no-repeat;
                box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
            }
        
        .Education {
                /* layout */
                display: flex;
                flex-direction: column;
                align-items: center;
                z-index: 2;
                grid-area: 2 / 1 / 3 / -1 ;
                margin-left: 25px;
                margin-right: 25px;
        
                /* text */
                font-size: 96px;
                font-weight: 500;
        
                /* style */
                color: white;
                text-shadow: 0px 4px 4px #000;
                font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
                line-height: normal;
                font-style: normal;
                }
            
    /* who are we */

        .MainPageImg {
            /* layout */
            display: flex;
            width: 35%;
            height: 80%;
            background-size:cover;
            justify-content: center;
            /* border:#FF9F0E 1px solid; */

            box-shadow: gray 0px 0px 5px;

            
        }

        .MainPageImg1 {
            background-image: url(https://www.figma.com/file/Tzu5gnLN9elJsdGz0ups1R/image/82dcfa9e8bc7757295c9ec1ca2e36cfe6a51fddc);
        }

        .MainPageImg2 {
            background-image: url(https://images.pexels.com/photos/893924/pexels-photo-893924.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2);
        }

        .MainPageImg3 {
            height: 220px;
            background-image: url(https://images.pexels.com/photos/5905857/pexels-photo-5905857.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2);
            width: 80%;
            margin-top:20px;
            margin-bottom:20px;
        }

        .MainPageImg4 {
            height: 220px;
            background-image: url(https://images.pexels.com/photos/4143791/pexels-photo-4143791.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2);
            width: 80%;
            margin-top:20px;
            margin-bottom:20px;
        }

        /* we teach through */
        .StudyBlocks {
            /* layout */
            display:flex;
            width: 100%;
            flex-wrap:wrap;
            flex-direction: row;
            justify-content: space-evenly;
            align-items: center;
            margin-top: 20px;
            margin-bottom: 20px;
        }

        .StudyBlock {
            display: block;
            width:220px;
            height:220px;
            margin: 15px;
            border: white 1px solid;
            transition: .5s;
        }

        .StudyBlock:hover {
            color: white;
            border: white 2px solid;
        }