 .resume18 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Calibri;
            color: #404040;
            word-break: break-all;
        }

        body {
            margin: 0;
            padding: 0;
        }

        .resume18 {
            display: flex;
            background-color: white;
            flex-direction: column;
            padding: 0.5cm;
        }

        .resume18 header {
            display: none;
        }

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

        .resume18 a{
            color: #404040;
        }

        .resume18 p {
            line-height: 20px;
        }

        /* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */

        /* header */

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

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

        .resume18 .header {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            border-bottom: 2px solid #404040b3;
            width: 754px;
            height: 260px;
        }

        /* name frame */
        .resume18 .header .name-frame {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background-color: #FF786A;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 5px;
        }

        .resume18 .header .name-frame h1 {
            font-size: 40px;
            font-weight: 400;
            letter-spacing: 3px;
            color: white;
        }

        /* name container */
        .resume18 .header .name-container {
            text-align: center;
            width: 700px;
        }

        .resume18 .header .name-container h1 {
            font-weight: 700;
            font-size: 50px;
            line-height: 55px;
        }

        .resume18 .header .name-container p {
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: #FF786A;
        }

        /* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */

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

        /* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */

        /* main content */
        .resume18 .main-content {
            display: flex;
            padding: 20px;
            min-height: 297mm;
        }

        /* left section */
        .resume18 .left {
            /* width: 50%; */
            width: 377px;
            margin-right: 20px;
            padding-right: 20px;
            border-right: 2px solid #404040b3;
            margin-top: 280px;
        }

        .resume18 .contact-section,
        .resume18 .education-section,
        .resume18 .skill-section,
        .resume18 .experience-section {
            margin-bottom: 15px;
        }

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

        .resume18 table td {
            vertical-align: top;
            word-break: break-all;
            font-size: 14px;
            color: #404040;
        }

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

        .resume18 table td a,
        .resume18 table td span {
            font-size: 14px;
            text-decoration: none;
            color: #404040;
        }

        /* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */

        /* right */
        .resume18 .right {
            /* width: 50%; */
            width: 377px;
            flex-grow: 1;
            margin-top: 280px;
        }

        .resume18 .about,
        .resume18 .experience-section {
            margin-bottom: 20px;
        }

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

        .resume18 .education-section .job .college-name {
            font-weight: 700;
        }

        /* experience */
        .resume18 .right .experience-section .job {
            margin-bottom: 15px;
            break-inside: avoid;
        }

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

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

        .resume18 .right .main-skills-section .skill .progress {
            background-color: #404040;
            width: 100%;
            height: 100%;
        }


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

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

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


        .resume18 a:hover,
        .resume18 span:hover {
            color: blue !important;
            cursor: pointer;
        }

        @media print {

            .resume18 {
                padding: 0cm;
            }

            .resume18 .left {
                height: 770px;
            }

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

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

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

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


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