 .resume16 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            word-break: break-all;
            color: #404B4B;
        }

        body {
            margin: 0;
            padding: 0;
        }

        .resume16 {
            display: flex;
            background-color: white;
            flex-direction: column;
            padding: 0.8cm;
            min-height: 297mm;
        }

        .resume16 header {
            display: none;
        }

        .resume16 p,
        .resume16 li,
        .resume16 a {
            font-size: 14px;
            list-style: none;
            text-decoration: none;
        }

        .resume16 a{
            color: #404B4B;
        }

        /* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */

        /* header */

        .resume16 .header-frame {
            position: relative;
        }

        .resume16 .inner-header {
            position: absolute;
            top: 0;
            left: 0;
        }

        .resume16 .header {
            display: flex;
            align-items: center;
            background-color: #C7DADE;
            padding: 10px 1cm;
            text-transform: uppercase;
            width: 733px;
            min-height: 170px;
        }

        /* image container */
        .resume16 .image-container {
            background-color: white;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            /* Ensure the image is clipped to the border radius */
            border: 6px solid white;
            margin-right: 30px;
        }

        .resume16 .image-container img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
        }

        .resume16 .header .name-container {
            width: 510px;
        }

        .resume16 .header .name-container h1 {
            font-size: 30px;
            font-weight: 600;
            letter-spacing: 2px;
        }

        .resume16 .header .name-container p {
            font-size: 20px;
            letter-spacing: 2px;
            font-weight: 400;
        }

        /* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */

        /* main content */
        .resume16 .main-content {
            display: flex;
        }

        /* left section */
        .resume16 .left {
            /* width: 35%; */
            width: 247px;
            margin-right: 30px;
            margin-top: 190px;
        }

        .resume16 .left .contact-section,
        .resume16 .left .skill-section {
            margin-bottom: 20px;
        }

        .resume16 h2 {
            font-size: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 700;
            margin-bottom: 20px;
            border-bottom: 3px solid #C7DADE;
            padding-bottom: 3px;
            display: inline-block;
        }

        /* contact */
        .resume16 table {
            border-spacing: 0px 10px;
        }

        .resume16 table td {
            vertical-align: top;
            word-break: break-all;
            font-size: 14px;
        }

        .resume16 table td img {
            width: 15px;
            height: 15px;
            margin-right: 15px;
        }

        .resume16 table td a,
        .resume16 table td span {
            font-size: 14px;
            text-decoration: none;
        }

        /* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */

        /* right */
        .resume16 .right {
            /* width: 65%; */
            width: 454px;
            flex-grow: 1;
            margin-top: 190px;
        }

        .resume16 .right .about-section,
        .resume16 .right .education-section {
            margin-bottom: 20px;
        }

        /* education  */
        .resume16 .education {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            break-inside: avoid;
        }

        .resume16 .education .education-left {
            width: 30%;
        }

        .resume16 .education .education-left .university {
            font-weight: 700;
            margin-top: 5px;
        }

        .resume16 .education .education-right {
            width: 70%;
        }

        .resume16 .education .education-right h4 {
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 15px;
        }

        /* main skills section */
        .resume16 .right .main-skills-section .skill {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            break-inside: auto;
        }

        .resume16 .right .main-skills-section .skill .progress-bar {
            width: 200px;
            height: 20px;
            background-color: rgb(223 223 223);
        }

        .resume16 .right .main-skills-section .skill .progress {
            background-color: #404B4B;
            width: 100%;
            height: 100%;
        }


        /* stars rating */
        .resume16 .star-skill {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .resume16 .star-container {
            display: flex;
            width: 150px;
        }

        .resume16 .star-container img {
            width: 15px;
            height: 15px;
            margin-right: 10px;
        }


        .resume16 a:hover,
        .resume16 span:hover {
            color: #007474 !important;
            cursor: pointer;
        }

        @media print {

            .resume16{
                padding: 0;
            }

            .resume16 header {
                position: running(header);
                height: 30px;
                display: block;
            }

            .resume16 header a {
                text-decoration: none;
            }

            .resume16 header img {
                height: 30px;
                width: 150px;
            }

            @page {
                size: A4;
                margin: 0.8cm;


                @bottom-center {
                    content: element(header);
                }
            }
        }