@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Nunito+Sans:opsz,wght@6..12,200;6..12,300;6..12,400;6..12,500;6..12,600;6..12,700&display=swap');

:root {

    --font-base-color: #ffffff;
    --font-secondary-color: #AEACAE;

    --base-background-color: #0F0F0F;
    --base-background-shade-color: #1E1B1E;
    --base-purple-color: #8325FD;
    --base-green-color: #00C39A;
    --base-red-color: #FE6D79;
    --base-yellow-color: #FFBF3C;
    /* base background shade color is used for cards  */

    --base-black: #000000;
    --base-white: #ffffff;
}



body {
    margin: auto;
    font-family: 'Lato', sans-serif;
    /* font-size: 3.733vw;
    font-weight: 400;
    line-height: 1.2; */
    background-color: black;
}

.container {
    background-color: black;
}

.main-banner {
    height: 60vh;
    background-color: black;
    display: flex;
    flex-direction: row-reverse;
}

/* .main-banner-wrap {
    height: 60vh;
    background-color: #0F0F0F;
    display: flex;
    flex-direction: row-reverse;
} */

.main-banner-1 {
    /* height: 100%; */
    height: 60vh;
    width: 50%;
    /* background-color: red; */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header {
    /* height: 10%; */
    height: 6vh;
    width: 96%;
    background-color: var(--base-background-shade-color);
    margin: 2% 0px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


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

.header h1 {
    margin: 0 12px;
    font-size: 3vh;
    color: var(--font-base-color);
}

.header span {
    color: var(--font-secondary-color);
}

.main-banner-1-sub-wrap {
    /* height: 86%; */
    height: 51.6vh;
    width: 96%;
    background-color: black;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.image-box {
    /* height: 100%; */
    height: 51.6vh;
    width: 40%;
    background-color: #8325FD;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;

}

.image-box img {
    /* height: 100%; */
    width: 100%;
}

.info-wrap {
    /* height: 100%; */
    height: 51.6vh;
    width: 58%;
    /* background-color: antiquewhite; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-name {
    /* height: 18%; */
    height: 10vh;
    width: 100%;
    background-color: var(--base-background-shade-color);
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-name h4,
.info-local-text-wrap h4,
.social-links h4 {
    color: var(--font-secondary-color);
    margin: 24px;
    font-size: 1.5vw;
    font-weight: 400;
}

.info-name h5,
.info-local-text-wrap h5 {
    color: var(--font-base-color);
    margin: 24px;
    font-size: 1.5vw;
}

.info-local {
    /* height: 56%; */
    height: 28vh;
    width: 100%;
    background-color: var(--base-background-shade-color);
    border-radius: 12px;
}

.info-local-text-wrap {
    height: 8vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* .info-local-img-div{
    height: 20vh;
    width: 100%;
} */
.info-local img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    max-height: 20vh;
}

.social-links {
    /* height: 18%; */
    height: 10vh;
    width: 100%;
    background-color: var(--base-background-shade-color);
    border-radius: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.social-links-wrap {
    display: flex;
    margin: 24px;
    flex-direction: row;
}

.btn {
    border: none;
    background-color: var(--base-background-color);
    color: var(--font-base-color);
    padding: 12px 16px;
    font-size: 20px;
    border-radius: 50px;
    cursor: pointer;
    margin: 4px;
}

.btn:hover {
    background-color: var(--font-base-color);
    color: var(--base-background-color);
}

.main-banner-2 {
    /* height: 100%; */
    height: 60vh;
    width: 50%;
    /* background-color: blue; */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-message-box {
    width: 96%;
    /* height: 50%; */
    height: 30vh;
    background-color: var(--base-background-shade-color);
    margin: 2% 0px;
    border-radius: 12px;
}

.cta-message-box h1 {
    margin: 24px;
    color: var(--font-base-color);
    font-size: 2.6vw;
    text-transform: capitalize;
}

.highlight-car-wrap {
    /* height: 46%; */
    height: 27.6vh;
    width: 96%;
    /* background-color: beige; */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
}

.highlight-box-1,
.highlight-box-2,
.highlight-box-3 {
    /* height: 96%; */
    height: 27vh;
    width: 32%;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.highlight-box-1 h1,
.highlight-box-2 h1,
.highlight-box-3 h1 {
    font-size: 4vw;
    margin: 0px;
    color: var(--font-base-color);
}

.highlight-box-1 h4,
.highlight-box-2 h4,
.highlight-box-3 h4 {
    margin-top: 1em;
    margin-bottom: 1em;
    text-transform: capitalize;
    color: var(--font-base-color);
}

.highlight-box-2 h4,
.highlight-box-2 h1 {
    color: var(--base-background-color);
}

.highlight-box-1 {
    background-color: var(--base-green-color);
}

.highlight-box-2 {
    background-color: var(--base-yellow-color);
}

.highlight-box-3 {
    background-color: var(--base-red-color);
}

.personal-information-div {
    height: 40vh;
    background-color: var(--base-black);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.portfolio-box {
    height: 34vh;
    width: 68%;
    background-color: var(--base-background-shade-color);
    border-radius: 12px;
}

.resume-box {
    height: 34vh;
    width: 30%;
    background-color: var(--base-background-shade-color);
    border-radius: 12px;
}

.portfolio-box-title-wrap,
.resume-box-title-wrap {
    height: 8vh;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.portfolio-box h2,
.resume-box h2 {
    color: #ffffff;
    margin: 24px;

}

.portfolio-box a,
.resume-box a {
    text-decoration: none;
    outline: none;
}

.portfolio-box h3,
.resume-box h3,
.resume-box h5 {
    color: var(--font-secondary-color);
    margin: 24px;
}

.portfolio-box-repeater {
    height: auto;
    /* Changed from fixed height to auto for flexibility */
    width: 96%;
    margin: 0 auto;
    /* Center the container horizontally */
}

.portfolio-box-repeater ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}

.portfolio-box-repeater li {
    flex: 1;
    padding: 10px;
    text-align: center;
    position: relative;
    /* Added position relative to the list item for positioning the overlay */
}

.portfolio-box-repeater img {
    max-width: 100%;
    border-radius: 12px;
    display: block;
}

.portfolio-box-repeater-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: var(--base-green-color);
    border-radius: 12px;
}

.portfolio-box-repeater-overlay a {
    display: block;
    width: 100%;
    height: 100%;
}

.portfolio-box-repeater li:hover .portfolio-box-repeater-overlay {
    opacity: 1;
}

.portfolio-box-repeater-text {
    color: white;
    font-size: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}




/* product-item-page-css starts here */

.pip-main-banner {
    height: 100vh;
    display: flex;
    flex-direction: row;
}

.pip-main-banner-I,
.pip-main-banner-T {
    height: 100vh;
    width: 50%;
}

.pip-main-banner-I {
    background-color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.pip-client-logos {
    display: flex;

    justify-content: space-around;
    width: 80%;
    margin-bottom: 2vh;
}

.pip-client-logos img {
    height: 80px;
}

.pip-client-logos-1 img {
    height: 8vh;
}

.pip-client-logos h2 {
    color: var(--font-base-color);
}


.pip-main-banner-T {
    background-color: var(--base-black);
    overflow: scroll;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pip-product-title {
    height: 6vh;
    width: 96%;
    background-color: var(--base-background-shade-color);
    border-radius: 12px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    /* margin: 2% 0; */
    margin-top: 2%;
}

.pip-product-title h5 {
    color: #ffffff;
    margin: 24px;
    font-size: 1.5vw;
}

.pip-product-title h4 {
    color: var(--font-secondary-color);
    margin: 24px;
    font-size: 1.5vw;
}

.pip-emp-role-div {
    width: 96%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 2%;

}

.pip-agency-div,
.pip-role-div {
    width: 48%;
    background-color: var(--base-background-shade-color);
    border-radius: 12px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.pip-agency-div h4,
.pip-role-div h4 {
    color: var(--font-secondary-color);
    margin: 24px;
    font-size: 1vw;
}

.pip-agency-div h5,
.pip-role-div h5 {
    color: var(--font-base-color);
    margin: 24px;
    font-size: 1vw;
}

.pip-problem-div,
.pip-problem-div-1 {
    width: 96%;
    background-color: var(--base-background-shade-color);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    margin-top: 2%;

}

.pip-problem-div h2,
.pip-challanges-div h2,
.pip-problem-div-1 h2,
.pip-challanges-div-1 h2 {
    color: var(--font-secondary-color);
    margin: 24px;
    font-size: 1.2vw;
}

.pip-problem-div h4,
.pip-problem-div-1 h4 {
    color: var(--font-base-color);
    /* margin: 24px; */
    margin: 0px 24px 24px 24px;
    font-size: 1vw;
    font-weight: 500;
}

.pip-problem-div-1 {
    margin-bottom: 2%;
}

.pip-challanges-div {
    width: 96%;
    background-color: var(--base-background-shade-color);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    margin-top: 2%;


}

.pip-challanges-div li {
    color: white;
}

.pip-challanges-div ul {
    margin-top: 0;
}

.ppp-title h1 {
    color: var(--font-base-color);
}

/* carousel styling */

.carousel-container {
    /* width: 100%; */
    width: 68%;
    overflow: hidden;
    position: relative;
}

.carousel-slide {
    width: 100%;
    display: none;
}

.carousel-slide img {
    width: 100%;
    height: auto;
}

.carousel-slide h3,
.carousel-slide h5 {
    text-align: center;
    color: white;
}

.main-product-information-page-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* modal styling here */
/* Styles for the modal background */
.modal {
    display: none;
    /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    /* Semi-transparent black background */
    z-index: 1;
    overflow: auto;
}

/* Styles for the modal content */
.modal-content {
    background-color: var(--base-background-color);
    margin: 10% auto;
    /* Center the modal vertically */
    padding: 20px;
    border: 1px solid var(--font-secondary-colorr);
    width: 50%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    border-radius: 12px;
}

.modal-content h1 {
    color: var(--font-base-color);
}

.modal-content h2 {
    color: var(--font-base-color);
}
.modal-content h2 span{
    color: var(--base-yellow-color);
}

.modal-content a {
    outline: var(--base-green-color);
    text-decoration: var(--base-green-color);
    color: var(--base-green-color);
}

/* Style for the close button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

/* modal styling ends here */

/* cta button styling */
/* CSS styles for the button */
.cta-button-div {
    display: flex;
    justify-content: flex-end;
}

.cta-button {
    background-color: var(--base-purple-color);
    /* Background color */
    color: white;
    /* Text color */
    padding: 10px 20px;
    /* Padding around the text */
    border: none;
    /* Remove border */
    border-radius: 50px;
    /* Rounded corners */
    cursor: pointer;
    /* Cursor style on hover */
    font-size: 16px;
    /* Font size */
    margin: 0px 24px 0px 0px;
}

/* CSS styles for button hover effect */
.cta-button:hover {
    background-color: var(--base-red-color);
    /* Background color on hover */
}

/* cta button styling here */


/* resume page desktop stylying here */

.re-main-banner {
    height: 100vh;
    display: flex;
}

.re-main-banner-b,
.re-main-banner-a {
    width: 50%;
    height: 100vh;
}

.re-main-banner-b {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.re-basic-info {
    display: flex;
    justify-content: space-between;
    width: 96%;

}
.re-social-links {
    width: 96%;
    background-color: var(--base-background-shade-color);
    border-radius: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.re-social-links h4{
    margin: 24px;
    color: var(--font-secondary-color);
}
.re-main-banner-a{
    overflow: scroll;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.re-name,
.re-role {
    background-color: var(--base-background-shade-color);
    width: 48%;
    border-radius: 12px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.re-name h4,
.re-role h4 {
    color: var(--font-secondary-color);
    font-size: 1vw;
    margin: 24px;
}

.re-name h5,
.re-role h5 {
    color: var(--font-base-color);
    font-size: 1vw;
    margin: 24px;
}

.re-about {
    width: 96%;
    background-color: var(--base-background-shade-color);
    border-radius: 12px;
}

/* .re-about h4, .re-about h5{
   padding: 0 24px;
} */

.re-about h4 {
    color: var(--font-secondary-color);
    padding: 24px 24px 0 24px;
}

.re-about h5 {
    color: var(--font-base-color);
    padding: 0px 24px 24px 24px;
}

.re-main-banner-b img {
    width: 40%;
}

.re-title {
    background-color: var(--base-background-shade-color);
    height: 6vh;
    display: flex;
    align-items: center;
    margin: 2% 0;
    /* width: 96%; */
    border-radius: 12px;
}

.re-title h2 {
    color: var(--font-base-color);
    margin: 0 12px;
}

.re-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;

}

.re-chip {
    background-color: var(--base-background-shade-color);
    margin: 6px;
    border-radius: 12px;
}

.re-chip h3,
.re-chip h4 {
    padding: 0 12px;
    font-weight: 500;
    font-size: 0.8vw;
}

.re-chip h3 {
    color: var(--font-base-color);
}

.re-chip h4 {
    color: var(--font-secondary-color);
}

.re-expriance-sub {
    background-color: var(--base-background-shade-color);
    width: 100%;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    margin-top: 2%
}

.re-expriance-sub h2,
.re-expriance-sub h3,
.re-expriance-sub h4 {
    color: var(--font-secondary-color);
    margin: 24px;
    font-size: 1.2vw;
}

.re-expriance-sub h4{
    font-size: 1vw;
    font-weight: 500;
    font-style: italic;
}
.re-expriance-sub-head-wrap{
 display: flex;
 align-items: center;
 justify-content: space-between;
}

.re-expriance-sub ul{
    color: white;
}

.re-expriance-sub li{
    margin-right: 12px;
    margin-top: 4px;
}

.re-edu, .re-skills, .re-platforms-services, .re-achievements, .re-expriance{
    width: 96%;
}
.res{
    width: 100%;
}

.r-download{
    
        background-color: transparent;
        

}
.r-download:hover {
    background-color: transparent;
    color: var(--base-green-color);
}

@media (max-width: 600px) {
    .main-banner {
        /* height: 170vh; */
        height: auto;
        flex-direction: column;
    }

    /* .main-banner-wrap{
        height: 200vh;
        flex-direction: column;
    } */
    .main-banner-1 {
        width: 100%;
        /* height: 110vh; */
        height: auto;
    }

    .main-banner-1-sub-wrap {
        /* height: 100vh; */
        height: auto;
        flex-direction: column;
    }

    .image-box {
        /* height: 42vh; */
        height: auto;
        width: 100%;
    }

    .info-wrap {
        /* height: 56vh; */
        height: auto;
        width: 100%;
        margin: 2vh 0;
    }

    .info-name {
        height: 12vh;
        margin-bottom: 2vh;
    }

    .info-local {
        margin-bottom: 2vh;
    }

    .social-links {
        height: 12vh;
    }


    .info-name h4,
    .info-local-text-wrap h4,
    .social-links h4 {
        font-size: 5vw;

    }

    .info-name h5,
    .info-local-text-wrap h5 {
        font-size: 5vw;
    }

    .main-banner-2 {
        width: 100%;
        height: auto;
        margin-bottom: 2vh;
    }

    .cta-message-box {
        height: auto;
        margin-bottom: 2vh;
    }

    .cta-button {
        margin: 0 12px 12px 0;
    }

    .highlight-car-wrap {
        height: auto;
    }

    .highlight-box-1,
    .highlight-box-2,
    .highlight-box-3 {
        height: auto;
        min-height: 22vh;
    }

    .cta-message-box h1 {
        font-size: 6vw;
    }

    .highlight-box-1 h1,
    .highlight-box-2 h1,
    .highlight-box-3 h1 {
        font-size: 8vw;
    }

    .highlight-box-1 h4,
    .highlight-box-2 h4,
    .highlight-box-3 h4 {
        text-align: center;
    }

    /* product-item-page-css starts here */

    .pip-main-banner {
        height: auto;
        flex-direction: column;
        overflow: scroll;
    }

    .pip-main-banner-I,
    .pip-main-banner-T {
        height: auto;
        width: 100%;
    }

    .carousel-container {
        width: 96%;
    }

    .carousel-slide h3 {
        margin: 12px 12px 12px 12px;
        font-size: 2.5vh;
    }

    .carousel-slide h5 {
        margin: 0 0 12px 0;
        font-size: 1.8vh;
        font-weight: 500;
    }

    .pip-client-logos img {
        height: 40px;
        margin: 24px;
    }

    .pip-client-logos-1 img {
        height: 4vh;
        margin: 12px;
    }

    .pip-client-logos {
        margin-bottom: 0;
    }

    .pip-product-title {
        height: auto;
    }

    .pip-product-title h4,
    .pip-product-title h5 {
        margin: 12px;
        font-size: 16px;
    }

    .pip-emp-role-div h4,
    .pip-emp-role-div h5 {
        margin: 12px;
        font-size: 14px;
    }

    .pip-problem-div h2,
    .pip-challanges-div h2,
    .pip-problem-div-1 h2,
    .pip-challanges-div-1 h2 {
        margin: 12px;
        font-size: 16px;
    }

    .pip-problem-div h4,
    .pip-problem-div-1 h4 {
        margin: 0px 12px 12px 12px;
        font-size: 16px;
    }

    .pip-challanges-div ul {
        margin: 0px 12px 12px 12px;
        padding: 0px 16px;
    }

    .pip-challanges-div li {
        margin: 6px 0;
    }

    .personal-information-div {
        height: auto;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
    }

    .portfolio-box {
        height: auto;
        width: 96%;
        margin-top: 2vh;
    }

    .resume-box {
        height: auto;
        width: 96%;
        margin: 2vh 0;
    }

    .portfolio-box-title-wrap,
    .resume-box-title-wrap {
        height: 8vh;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .portfolio-box h2,
    .resume-box h2 {
        color: #ffffff;
        margin: 24px;

    }


    .portfolio-box h3,
    .resume-box h3,
    .resume-box h5 {
        color: var(--font-secondary-color);
        margin: 24px;
    }

    .portfolio-box-repeater ul {
        flex-direction: column;
    }

    .modal-content {
        width: 80%;
    }

    .re-main-banner{
        flex-direction: column;
        overflow: scroll;
    }
    .re-main-banner-b, .re-main-banner-a {
        width: 100%;
    }
    .re-main-banner-a{
        overflow: unset;
    }
    .re-basic-info{
        flex-direction: column;
    }
    .re-name, .re-role{
        width: 100%;
        margin-bottom: 2%;
    }
    .re-social-links, .re-about{
        margin-bottom: 2%;
    }
    .re-basic-info h4, .re-basic-info h5{
        font-size: 14px;
    }
    .re-chip h3, .re-chip h4{
        font-size: 14px;
    }
    .re-expriance-sub{
        /* width: 100%; */
        margin: 1vh 0;
    }
    .re-expriance-sub h2, .re-expriance-sub h3, .re-expriance-sub h4 {

        font-size: 16px;
    }
    

}



@media (min-width: 601px) and (max-width: 1023px) {
    .main-banner {
        height: 120vh;
        flex-direction: column;
    }

    .main-banner-1 {
        width: 100%;
    }

    .info-name h4,
    .info-local-text-wrap h4,
    .social-links h4 {
        font-size: 2.5vw;

    }

    .info-name h5,
    .info-local-text-wrap h5 {
        font-size: 2.5vw;
    }

    .main-banner-2 {
        width: 100%;
    }

    .cta-message-box h1 {
        font-size: 5.5vw;
    }

    .highlight-box-1 h1,
    .highlight-box-2 h1,
    .highlight-box-3 h1 {
        font-size: 8vw;
    }

    .personal-information-div {
        height: auto;
        flex-direction: column;
    }

    .portfolio-box {
        height: auto;
        width: 96%;
        margin: 2vh 0;
    }

    .resume-box {
        height: auto;
        width: 96%;
        margin-bottom: 2vh;
    }

    /* product-item-page-css starts here */

    .pip-main-banner {
        height: auto;
        flex-direction: column;
        overflow: scroll;
    }

    .pip-main-banner-I,
    .pip-main-banner-T {
        height: auto;
        width: 100%;
    }

    .carousel-container {
        width: 80%;
    }

    .carousel-slide h3 {
        margin: 12px 12px 12px 12px;
        font-size: 2.5vh;
    }

    .carousel-slide h5 {
        margin: 0 0 12px 0;
        font-size: 1.8vh;
        font-weight: 500;
    }

    .pip-client-logos img {
        height: 60px;
        margin: 24px;
    }

    .pip-client-logos-1 img {
        height: 4vh;
        margin: 24px;
    }


    .pip-client-logos {
        margin-bottom: 0;
    }

    .pip-product-title {
        height: auto;
    }

    .pip-product-title h4,
    .pip-product-title h5 {
        margin: 24px;
        font-size: 24px;
    }

    .pip-emp-role-div h4,
    .pip-emp-role-div h5 {
        margin: 24px;
        font-size: 24px;
    }

    .pip-problem-div h2,
    .pip-challanges-div h2,
    .pip-problem-div-1 h2,
    .pip-challanges-div-1 h2 {
        margin: 24px;
        font-size: 24px;
    }

    .pip-problem-div h4,
    .pip-problem-div-1 h4 {
        margin: 0px 24px 24px 24px;
        font-size: 20px;
    }

    .pip-challanges-div ul {
        margin: 0px 24px 24px 24px;
        padding: 0px 16px;
    }

    .pip-challanges-div li {
        margin: 8px 0;
        font-size: 20px;
    }

    .modal-content {
        width: 80%;
    }

    .re-main-banner{
        flex-direction: column;
        overflow: scroll;
    }
    .re-main-banner-b, .re-main-banner-a {
        width: 100%;
    }
    .re-main-banner-a{
        overflow: unset;
    }
    .re-basic-info{
        flex-direction: column;
    }
    .re-name, .re-role{
        width: 100%;
        margin-bottom: 2%;
    }
    .re-social-links, .re-about{
        margin-bottom: 2%;
    }
    .re-basic-info h4, .re-basic-info h5{
        font-size: 14px;
    }
    .re-chip h3, .re-chip h4{
        font-size: 14px;
    }
    .re-expriance-sub{
        /* width: 100%; */
        margin: 1vh 0;
    }
    .re-expriance-sub h2, .re-expriance-sub h3, .re-expriance-sub h4 {

        font-size: 16px;
    }
    

}