* {
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body,
html {
    width: 100%;
    height: 100%;
}

.container {
    width: 100%;
    height: 100%;
    background-color: #36454f;
}

.resume-container {
    position: relative;
    width: 40%;
    height: 100%;
    margin: 0 auto;
    background-color: aliceblue;
}

.row-container {
    position: absolute;
    top: 10%;
    left: 0%;
    right: 0%;
    z-index: 10;
    height: 15%;
    width: 100%;
    background-color: #800020;
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.2);
    display: flex;
}

.front-col-container {
    position: absolute;
    width: 30%;
    height: 100%;
    left: 5%;
    top: 0%;
    bottom: 0%;
    background-color: #ecd58a;
    padding: 10px;
}

.pic-container {
    width: 35%;
    position: relative;
}

.pic-container img {
    position: absolute;
    top: -15%;
    left: 18%;
    height: 180px;
    border-radius: 50%;
    border: 4px solid #800020;
}

.name-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 65%;
    color: #f5f5f5;
}

.name-container h1 {
    font-size: 48px;
}

.name-container h3 {
    margin-left: 20%;
    font-weight: 400;
}

.personal-info-container {
    padding-top: 120%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 10px;
}

/* .about {
 
} */

.about h4 {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    border-radius: 20px;
    padding: 5px;
    border: 2px solid #800020;
    text-align: center;
}

.about p {
    margin-top: 20px;
    font-size: 12px;
}

/* .contact {
  
} */
.contact h4 {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    border-radius: 20px;
    padding: 5px;
    border: 2px solid #800020;
    text-align: center;
}

.contact div {
    font-size: 12px;
    margin-top: 20px;
    line-height: 30px;
}

.contact i {
    font-size: larger;
}

/* .language {
  
} */
.language h4 {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    border-radius: 20px;
    padding: 5px;
    border: 2px solid #800020;
}

.language ul {
    font-size: 12px;
    margin-top: 20px;
    list-style: none;
    line-height: 30px;
}

.back-col-container {
    width: 100%;
    height: 100%;
    background-color: bisque;
}

.professional-info-container {
    position: absolute;
    height: calc(100% - 25%);
    width: calc(100% - 35%);
    top: 25%;
    left: 35%;
    padding: 2%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 10px;
}

/* .experience {
} */
.experience h4 {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    border-radius: 20px;
    padding: 5px;
    background-color: #800020;
    color: #f5f5f5;
}

/* .education {
} */
.education h4 {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    border-radius: 20px;
    padding: 5px;
    background-color: #800020;
    color: #f5f5f5;
}

/* .skills {
} */
.skills h4 {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    border-radius: 20px;
    padding: 5px;
    background-color: #800020;
    color: #f5f5f5;
}

.experience h2 {
    margin-top: 10px;
    font-size: 14px;
}

.experience p {
    font-size: 10px;
}

.education h2 {
    margin-top: 10px;
    font-size: 14px;
}

.education p {
    font-size: 10px;
}

.skills ul h2 {
    margin-top: 10px;
    font-size: 14px;
}

.skills ul li {
    line-height: 15px;
    list-style: none;
    font-size: 10px;
}

/* Mobile screens less than 380px (xs) */
@media only screen and (max-width: 380px) {
    .resume-container {
        width: 100%;
    }

    .row-container {
        top: 6%;
        height: 10%;
    }

    .pic-container img {
        top: -5%;
        height: 90px;
    }

    .name-container h1 {
        font-size: 24px;
    }

    .name-container h3 {
        font-size: 16px;
    }

    .personal-info-container {
        padding-top: 140px;
        grid-template-columns: 100%;
        max-height: calc(100% - 140px);
        gap: 20px;
    }

    .about h4 ,.contact h4 ,.language h4 {
        border: none;
        font-size: 12px;
        font-weight: 600;
        text-align: start;
        padding: 0px;
    }

    .about p {
        margin-top: 10px;
        font-size: 10px;
    }
    .contact div {
        font-size: 8px;
        margin-top: 0px;
        line-height: 20px;
    }

    .contact i {
        font-size: 10px;
    }
    .language ul {
        font-size: 8px;
        margin-top: 10px;
        list-style: none;
        line-height: 20px;
    }
    .professional-info-container {
        top: 16%;
        padding: 1%;
    }
    .experience h4,.education h4,.skills h4 {
        font-size: 10px;
        font-weight: 700;
    }
    .experience h2, .education h2, .skills ul h2  {
        margin-top: 5px;
        font-size: 10px;
    }

    .experience p ,.education p {
        font-size: 8px;
    }
    .skills ul li {
        list-style: none;
        font-size: 8px;
    }
}
@media (min-width:380px) and (max-width: 430px) {
    .resume-container {
        width: 100%;
    }

    .row-container {
        top: 6%;
        height: 10%;
    }

    .pic-container img {
        top: -5%;
        height: 90px;
    }

    .name-container h1 {
        font-size: 24px;
    }

    .name-container h3 {
        font-size: 16px;
    }

    .personal-info-container {
        padding-top: 140px;
        grid-template-columns: 100%;
        max-height: calc(100% - 140px);
        gap: 20px;
    }

    .about h4 ,.contact h4 ,.language h4 {
        border: none;
        font-size: 12px;
        font-weight: 600;
        text-align: start;
        padding: 0px;
    }

    .about p {
        margin-top: 10px;
        font-size: 10px;
    }
    .contact div {
        font-size: 8px;
        margin-top: 0px;
        line-height: 20px;
    }

    .contact i {
        font-size: 10px;
    }
    .language ul {
        font-size: 8px;
        margin-top: 10px;
        list-style: none;
        line-height: 20px;
    }
    .professional-info-container {
        top: 16%;
        padding: 1%;
    }
    .experience h4,.education h4,.skills h4 {
        font-size: 10px;
        font-weight: 700;
    }
    .experience h2, .education h2, .skills ul h2  {
        margin-top: 5px;
        font-size: 10px;
    }

    .experience p ,.education p {
        font-size: 8px;
    }
    .skills ul li {
        list-style: none;
        font-size: 8px;
    }
}
@media (min-width:430px) and (max-width: 532px) {
    .resume-container {
        width: 90%;
    }

    .row-container {
        top: 6%;
        height: 10%;
    }

    .pic-container img {
        top: -5%;
        height: 90px;
    }

    .name-container h1 {
        font-size: 24px;
    }

    .name-container h3 {
        font-size: 16px;
    }

    .personal-info-container {
        padding-top: 140px;
        grid-template-columns: 100%;
        max-height: calc(100% - 140px);
        gap: 20px;
    }

    .about h4 ,.contact h4 ,.language h4 {
        border: none;
        font-size: 12px;
        font-weight: 600;
        text-align: start;
        padding: 0px;
    }

    .about p {
        margin-top: 10px;
        font-size: 10px;
    }
    .contact div {
        font-size: 8px;
        margin-top: 0px;
        line-height: 20px;
    }

    .contact i {
        font-size: 10px;
    }
    .language ul {
        font-size: 8px;
        margin-top: 10px;
        list-style: none;
        line-height: 20px;
    }
    .professional-info-container {
        top: 16%;
        padding: 1%;
    }
    .experience h4,.education h4,.skills h4 {
        font-size: 10px;
        font-weight: 700;
    }
    .experience h2, .education h2, .skills ul h2  {
        margin-top: 5px;
        font-size: 10px;
    }

    .experience p ,.education p {
        font-size: 8px;
    }
    .skills ul li {
        list-style: none;
        font-size: 8px;
    }
}
@media (min-width:532px) and (max-width: 640px) {
    .resume-container {
        width: 80%;
    }

    .row-container {
        top: 6%;
        height: 10%;
    }

    .pic-container img {
        top: -5%;
        height: 90px;
    }

    .name-container h1 {
        font-size: 24px;
    }

    .name-container h3 {
        font-size: 16px;
    }

    .personal-info-container {
        padding-top: 140px;
        grid-template-columns: 100%;
        max-height: calc(100% - 140px);
        gap: 20px;
    }

    .about h4 ,.contact h4 ,.language h4 {
        border: none;
        font-size: 12px;
        font-weight: 600;
        text-align: start;
        padding: 0px;
    }

    .about p {
        margin-top: 10px;
        font-size: 10px;
    }
    .contact div {
        font-size: 8px;
        margin-top: 0px;
        line-height: 20px;
    }

    .contact i {
        font-size: 10px;
    }
    .language ul {
        font-size: 8px;
        margin-top: 10px;
        list-style: none;
        line-height: 20px;
    }
    .professional-info-container {
        top: 16%;
        padding: 1%;
    }
    .experience h4,.education h4,.skills h4 {
        font-size: 10px;
        font-weight: 700;
    }
    .experience h2, .education h2, .skills ul h2  {
        margin-top: 5px;
        font-size: 10px;
    }

    .experience p ,.education p {
        font-size: 8px;
    }
    .skills ul li {
        list-style: none;
        font-size: 8px;
    }
}
@media (min-width:640px) and (max-width: 760px) {
    .resume-container {
        width: 60%;
    }

    .row-container {
        top: 6%;
        height: 10%;
    }

    .pic-container img {
        top: -5%;
        height: 90px;
    }

    .name-container h1 {
        font-size: 24px;
    }

    .name-container h3 {
        font-size: 16px;
    }

    .personal-info-container {
        padding-top: 140px;
        grid-template-columns: 100%;
        max-height: calc(100% - 140px);
        gap: 20px;
    }

    .about h4 ,.contact h4 ,.language h4 {
        border: none;
        font-size: 12px;
        font-weight: 600;
        text-align: start;
        padding: 0px;
    }

    .about p {
        margin-top: 10px;
        font-size: 10px;
    }
    .contact div {
        font-size: 8px;
        margin-top: 0px;
        line-height: 20px;
    }

    .contact i {
        font-size: 10px;
    }
    .language ul {
        font-size: 8px;
        margin-top: 10px;
        list-style: none;
        line-height: 20px;
    }
    .professional-info-container {
        top: 16%;
        padding: 1%;
    }
    .experience h4,.education h4,.skills h4 {
        font-size: 10px;
        font-weight: 700;
    }
    .experience h2, .education h2, .skills ul h2  {
        margin-top: 5px;
        font-size: 10px;
    }

    .experience p ,.education p {
        font-size: 8px;
    }
    .skills ul li {
        list-style: none;
        font-size: 8px;
    }
}
@media (min-width:760px) and (max-width: 1024px) {
    .resume-container {
        width: 50%;
    }

    .row-container {
        top: 6%;
        height: 10%;
    }

    .pic-container img {
        top: -5%;
        height: 90px;
    }

    .name-container h1 {
        font-size: 24px;
    }

    .name-container h3 {
        font-size: 16px;
    }

    .personal-info-container {
        padding-top: 140px;
        grid-template-columns: 100%;
        max-height: calc(100% - 140px);
        gap: 20px;
    }

    .about h4 ,.contact h4 ,.language h4 {
        border: none;
        font-size: 12px;
        font-weight: 600;
        text-align: start;
        padding: 0px;
    }

    .about p {
        margin-top: 10px;
        font-size: 10px;
    }
    .contact div {
        font-size: 8px;
        margin-top: 0px;
        line-height: 20px;
    }

    .contact i {
        font-size: 10px;
    }
    .language ul {
        font-size: 8px;
        margin-top: 10px;
        list-style: none;
        line-height: 20px;
    }
    .professional-info-container {
        top: 16%;
        padding: 1%;
    }
    .experience h4,.education h4,.skills h4 {
        font-size: 10px;
        font-weight: 700;
    }
    .experience h2, .education h2, .skills ul h2  {
        margin-top: 5px;
        font-size: 10px;
    }

    .experience p ,.education p {
        font-size: 8px;
    }
    .skills ul li {
        list-style: none;
        font-size: 8px;
    }
}