
body {
    font-family: "Open Sans", sans-serif;
    color: black;
    position: relative;
    background: transparent;
    margin-left: 25px;
    margin-right: 25px;
}

body::before {
    content: "";
    position: fixed;
    background: white;
    background-size: cover;
    left: 0;
    right: 0;
    top: 0;
    height: 100vh;
    z-index: -1;
}

@media (min-width: 1024px) {
    body::before {
        background-attachment: fixed;
    }
}

a {
    color: #0D92F4;
    text-decoration: none;
}

a:hover {
    color: #77CDFF;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Raleway", sans-serif;
}

.section-title h2 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0 0 20px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaaaaa;
    font-family: "Poppins", sans-serif;
}

.section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: #0D92F4;
    margin: 4px 10px;
}

.section-title p {
    margin: -15px 0 15px 0;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    color: black;
}

.resume .resume-title {
    font-size: 24px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: black;
}

.resume .resume-item {
    padding: 0 0 20px 20px;
    margin-top: -2px;
    border-left: 2px solid rgba(13, 146, 244, 0.2);
    position: relative;
}

.resume .resume-item h4 {
    line-height: 18px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    color: #0D92F4;
    margin-bottom: 10px;
}

.resume .resume-item h5 {
    font-size: 15px;
    background: rgba(169, 169, 169, 0.2);
    padding: 5px 15px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 10px;
    border-radius: 6px;
}

.resume .resume-item ul {
    padding-left: 20px;
}

.resume .resume-item ul li {
    padding-bottom: 10px;
}

.resume .resume-item:last-child {
    padding-bottom: 0;
}

.resume .resume-item::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50px;
    left: -9px;
    top: 0;
    background: #0D92F4;
    border: 2px solid #0D92F4;
}


.content-summary-box {
    padding-left: 36px;
}

.img-fluid-cv {
    max-height: 160px;
    width: auto;
    border-radius: 10px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .top-summary {
        flex-direction: column;
        align-items: center;
    }

    .content-summary-box {
        padding-left: 0;
        text-align: center;
    }
}

.styled-hr {
    border: none;
    height: 2px;
    background-color: #0D92F4;
    width: 100%;
}