:root{
    --overlapColor: #28243c;
    --buttonColor: white;
}

body {
    font-family: "Lato";
    background: #28243c;
    height: 100vh;
    margin: 0;
    padding: 0;
    color: white;
}

main {
    margin-left: 5rem;
}

.container{
    max-width: 1300px;
    width: 100%;
    margin:auto;
}
.row {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.pads{
    padding-left: 15px;
    padding-right: 15px;
}
.shadow-dark{
    box-shadow: 0 0 20px#751870, 0 0 20px #c00078;
}

/* Page title */ /* Page title */ /* Page title */ /* Page title */ /* Page title */ /* Page title */ /* Page title */ /* Page title */
.section-title h1{
    text-align: center;
    margin-bottom: 2rem;
    padding-top: 8px;

}
.section-title h1::before{
    content:'My intro';
    display:block;
    font-size: 16px;
    color: #ff304f;
}


/* Page title */ /* Page title */ /* Page title */ /* Page title */ /* Page title */ /* Page title */ /* Page title */ /* Page title */

/* Introduction secttion */ /* Introduction secttion */ /* Introduction secttion */ /* Introduction secttion */ /* Introduction secttion */

.about-content{
    flex: 0 0 100%;
    max-width: 100%;
}
.about-text{
    flex: 0 0 100%;
    max-width: 100%;
}
.about-text h3{
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}
.about-text h3 span{
    color:#ff304f;
}
.about-text p{
    font-size: 18px;
    line-height: 25px;
}
/* Introduction secttion */ /* Introduction secttion */ /* Introduction secttion */ /* Introduction secttion */ /* Introduction secttion */

/* Personal infromation and Programming Skills */ /* Personal infromation and Programming Skills */ /* Personal infromation and Programming Skills */

.personal-info {/* Personal infromation */
    flex: 0 0 53.7%;
    max-width: 53.7%;
}
.info-item{
    flex: 0 0 50%; 
    max-width: 50%; 
    margin-left: -1rem;
}

.info-item p {
    display: flex; 
    font-weight: 600;
    padding-top: 5px ;
    font-size: 16px;
    border-bottom: 2px solid #ff304f;
    width: 80%; 
}
.info-item p span {
    font-weight: 300;
}

.skills {/* Programming Skills */
    flex: 0 0 45%;
    max-width: 45%; 
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}
.skill-item{
    flex: 0 0 45%; 
    max-width: 45%; 
    margin-top: -2rem;
}
.skill-item h5{
    line-height: 40px; 
    font-weight: 600;
    font-size: 16px;
}
.progress{
    background-color: #141418;
    height: 7px; 
    border-radius: 4px;
    width: 100% ;
    position: relative;
    margin-top: -15px;
}
.progress-in{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%; 
    border-radius: 4px;
    background-color: #FF4500;
}
.skill-percent{
    position:absolute;
     right: 0;
     top: -40px;
     font-weight: 400;
     line-height:  40px;
}
/* Personal infromation and Programming Skills */ /* Personal infromation and Programming Skills */ /* Personal infromation and Programming Skills */

/*Education History*/ /*Education History*/ /*Education History*/ /*Education History*/ /*Education History*/ /*Education History*/ /*Education History*/
.education-title h1{
    text-align: center;
    margin-bottom: 2rem;
    padding-top: 8px;
}
.education-title h1::before{
    content:'Education';
    display:block;
    font-size: 16px;
    color: #ff304f;
}
.calendar{
    display: inline-block;
}
.calendar img{
    margin-top: -3px;
    vertical-align: middle;
    margin-right: 8px; 
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7499%) hue-rotate(332deg) brightness(105%) contrast(101%);
}
.education {
    flex: 0 0 50%;
    max-width: 50%;
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.timeline-box{
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: -1rem;
    color:white;
}
.timeline{
    justify-content: center;
    padding: 30px 15px;
    background-color:#23232e;
    border: 3px solid #141418;
    border-radius: 10px;
    width: 100%;
    position: relative;
    margin-bottom: 120px;
}
.timeline-item{
    position: relative;
    padding-left: 47px;
    padding-right: 37px;
    padding-bottom: 40px;
    margin-bottom: -19px;
}
.timeline-item:last-child{
    padding-bottom: 0;
    margin-bottom: 20px;
}
.timeline-item::before{
    content: '';
    width: 3px;
    position: absolute;
    height: 100%;
    left: 10px;
    top: 0;
    background-color: #FF4500;

}
.circle-dot{
    position: absolute;
    left: 4px;
    height: 15px;
    width: 15px;
    border-radius: 100%;
    background-color: #FF4500;
}

/*Education History*/ /*Education History*/ /*Education History*/ /*Education History*/ /*Education History*/ /*Education History*/ /*Education History*/

/*button effects download resume and hire me button*/ /*button effects download resume and hire me button*/ /*button effects download resume and hire me button*/
.bttn-container {
    display: flex;
    gap: 30px; 
    margin-top: 60px; 
}
button {
    position: relative;
    padding: 10px 30px;
    border-radius: 7px;
    border: 1px solid #ff304f;
    font-size: 16px;
    font-weight: 550;
    letter-spacing: 2px;
    background: transparent;
    color: var(--buttonColor);
    overflow: hidden;
    box-shadow: 0 0 0 0 transparent;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    white-space: nowrap;
}
  
button:hover {
    cursor: pointer;            
    background: #ff304f;
    box-shadow: 0 0 30px 5px #751870, 0 0 30px #c00078;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
  
button:hover::before {
    -webkit-animation: sh02 0.5s 0s linear;
    -moz-animation: sh02 0.5s 0s linear;
    animation: sh02 0.5s 0s linear;
}
  
button::before {
    content: '';
    display: block;
    width: 0px;
    height: 86%;
    position: absolute;
    top: 7%;
    left: 0%;
    opacity: 0;
    background: #fff;
    box-shadow: 0 0 50px 30px #fff;
    -webkit-transform: skewX(-20deg);
    -moz-transform: skewX(-20deg);
    -ms-transform: skewX(-20deg);
    -o-transform: skewX(-20deg);
    transform: skewX(-20deg);
}
  
@keyframes sh02 {
    from {
        opacity: 0;
        left: 0%;
    }
    50% {
        opacity: 1;
    }
    to {
        opacity: 0;
        left: 100%;
    }
}
  
button:active {
    box-shadow: 0 0 0 0 transparent;
    -webkit-transition: box-shadow 0.2s ease-in;
    -moz-transition: box-shadow 0.2s ease-in;
    transition: box-shadow 0.2s ease-in;
}
/*button effects download resume and hire me button*/ /*button effects download resume and hire me button*/ /*button effects download resume and hire me button*/


/* Mobile devices compability */ /* Mobile devices compability */ /* Mobile devices compability */ /* Mobile devices compability */
@media (max-width: 960px){
    .about-section{
        align-items: center;
        overflow: hidden;
    }
    .section-title{
        margin-top: 6rem;
    }
    .row {
        flex-direction: column;
        align-items: center;
    }
    .personal-info{
        max-width: 100%; 
        align-items: center;
    }
    .info-item {
        flex: 0 0 100%; 
        max-width: 100%; 
        display: flex; 
        flex-direction: column; 
        align-items: center; 
        margin-bottom: 10px; 
    }

    .info-item p {
        display: block; 
        border-bottom: 0px;
        width: 90%; 
        text-align: center; 
    }
    
    .info-item p span {
        display: inline-block;
        margin-top: 5px;
        border-bottom: 2px solid #ff304f; 
    } 
    .skills {
        max-width: 100%; 
        margin-left:2rem;
    }
    .bttn-container {
        display: flex;
        flex-direction: column; 
        align-items: center; 
        justify-content: center;
        gap: 30px; 
        margin-top: 60px; 
    }
    
    button {
        font-size: 12px;
        
    }
    .skill-item{
        margin-bottom: 0rem;
        margin-top: 0rem;
    }
    .progress{
        margin-top: 0px;
        width: 80% ;
    }
    .education {
        flex: 0 0 70%;
        max-width: 70%;
        margin-top: 125px;
        margin-bottom: 125px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 960px){
    .info-item p{
        justify-content: space-between;
    }
    .personal-info {/* Personal infromation */
        margin-left: 1rem;
    }
    .education {
        margin-right: auto;
        margin-left: 19.5rem;
    }
    .container{
        margin-left: 9.5rem;
    }
}
/* Mobile devices compability */ /* Mobile devices compability */ /* Mobile devices compability */ /* Mobile devices compability */