.edu-wrapper {
            display: grid;
            grid-template-columns: 27% 1fr;
            margin: 20px;
            height: auto;
            gap: 0px 50px;
        }

        .edu-stuff-wrapper {
            display: grid;
            grid-template-columns: 1fr;
            height: auto;
            gap: 30px 50px;
        }

        .edu-box {
            width: 100%;
            height: 150px;
        }

        .edu-item {
            display: grid;
            width: 100%;
            grid-template-columns: 1fr 150px;
        }

        .edu-titledesc {
            float: left;
        }

        img {
            width: 150px;
            height: 150px;
            border-radius: 100%;
            object-fit: cover;
        }

        .edu-img-box {
            width: 150px;
            height: 150px;
            border-radius: 100%;
            background: #e79eb2;
            border: 1.5px solid #5e8f22;
        }

        .edu-about {
            display: block;
            width: 100%;
        }

        .edu-about button {
            margin-top: 10px;
            font-size: 12pt;
        }

        .edu-titledesc {
            width: 95%;
            max-height: 150px;
            border-bottom: 1.5px solid #5e8f22;
            overflow: hidden;
            position: relative;
        }

        .edu-titledesc h2 {
            font-size: 18pt;
            font-weight: bold;
            padding-bottom: 14px;
        }

        .edu-titledesc p {
            font-size: 12pt;
            height: 70%;
            /*overflow: auto;*/
        }

        .edu-download {
            position: absolute;
            top: 4px;
            right: 0px;
            padding: 5px;
            color: rgb(255, 251, 238);
            background: #e79eb2;
        }

        .edu-download:hover {
            color: rgb(255, 251, 238);
            background: #5e8f22;
        }

        @media only screen and (max-width: 900px) {

            .edu-wrapper {
                grid-template-columns: 1fr;
                gap: 50px 0px;
            }

            .edu-titledesc p {
                margin-top: 14px;
            }

            .edu-download {
                position: relative;
            }

            .edu-titledesc p {
                height: 50%;
            }

        }