 .resume25 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Calibri;
            word-wrap: break-word;
            word-break: break-all;
        }

        body {
            margin: 0;
            padding: 0;
        }

        .resume25 {
            width: 100%;
            background-color: white;
            min-height: 1024px;
        }

        .resume25 header {
            display: none;
        }

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

         .resume25 a:hover ,
         .resume25 span:hover{
          color: yellow !important;
          cursor: pointer;
        }

        .resume25 p {
            line-height: 18px;
        }

        /* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */

        /* header */
        .resume25 .header {
            width: 100%;
            display: flex;
            align-items: center;
            padding: 20px 1cm;
            background-color: #1B222C;
        }


        /* image container */
        .resume25 .image-container {
            width: 200px;
            height: 250px;
            margin-right: 60px;
            /* display: none; */
        }

        .resume25 .image-container img {
            width: 100%;
            height: 100%;
        }

        /* name container */
        .resume25 .name-container {
            margin-bottom: 15px;
            width: 100%;
        }

        .resume25 .name-container h1 {
            font-weight: 700;
            color: yellow;
            font-size: 50px;
            line-height: 50px;
            text-transform: uppercase;
        }

        .resume25 .name-container p {
            margin-top: 5px;
            text-transform: uppercase;
            color: white;
            font-weight: 600;
            letter-spacing: 1px;
            text-align: left;
        }

        .resume25 .about-section p {
            color: white;
            text-align: left;
        }

        /* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */

        /* left */
        .resume25 .main {
            display: flex;
            width: 100%;
            padding: 0cm 1cm;
        }

        .resume25 .left {
            width: 35%;
            margin-right: 20px;
        }

        .resume25 h2 {
            font-size: 25px;
            font-weight: 700;
            text-transform: uppercase;
            display: inline-block;
            padding-bottom: 2px;
            margin-bottom: 15px;
            border-bottom: 3px solid yellow;
        }

        /* contact */
        .resume25 .contact-section {
            margin-top: 1cm;
        }

        .resume25 .skill-section,
        .resume25 .language-section {
            margin-top: 20px;
        }

        .resume25 .left .contact-section ul li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .resume25 .left .contact-section ul li a,
        .resume25 .left .contact-section ul li span {
            color: black;
        }

        .resume25 .left .contact-section ul li img {
            width: 15px;
            height: 15px;
            margin-right: 10px;
        }

        .resume25 .skill-section ul li,
        .resume25 .language-section ul li {
            margin-bottom: 10px;
        }


        /* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */

        /* right */
        .resume25 .right {
            width: 65%;
            flex-grow: 1;
        }

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

        /* education */
        .resume25 .education-section {
            margin-top: 1cm;
        }

        .resume25 .education-section .job {
            margin-bottom: 15px;
            break-inside: avoid;
        }

        .resume25 .education-section .job p.college-name {
            font-weight: 600;
            font-size: 16px;
        }

        /* work experience */
        .resume25 .experience-section {
            width: 100%;
        }

        .resume25 .experience {
            break-inside: avoid;
            margin-bottom: 15px;
            break-inside: avoid;
        }

        .resume25 .experience .upper {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .resume25 .experience .upper .upper-left h4 {
            font-weight: 600;
            font-size: 16px;
        }

        .resume25 .experience .upper .upper-left p {
            font-style: italic;
        }

        .resume25 .experience .upper .upper-right h4 {
            font-size: 25px;
            font-weight: 300;
        }

        .resume25 .experience .lower {
            text-align: left;
        }

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

        .resume25 .right .main-skills-section .skill .progress-bar {
            width: 200px;
            height: 15px;
            background-color: rgb(223 223 223);
            border-radius: 10px;
        }

        .resume25 .right .main-skills-section .skill .progress {
            background-color: #313131;
            width: 100%;
            height: 100%;
            border-radius: 10px;
        }

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

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

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

        @media print {
            .resume25 {
                -webkit-print-color-adjust: exact;
                print-color-adjust: exact;
            }

            .resume25 .image-container {
                margin-right: 60px;
                width: 200px;
                height: 250px;
                page-break-inside: avoid;
            }

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

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

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


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

            @page: first {
                margin-top: 0cm;
            }

        }