#laptop-section{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: var(--section-margin)
}

.section{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    min-height: calc(70vh - var(--header-height) - var(--header-margin));
    font-family: var(--font-sans);
    margin-top:50px;
}

.section-text{
    display: flex;
    font-size: 20px;
    flex-basis: 50%;
    color: #fff;
    font-family: var(--font-sans);
    color: var(--p-font-color);
    flex-direction: column;
}

.section-title{
    font-size: 30px;
    font-weight: 300;
    margin-bottom: 30px;
    display: flex;
}

.section-title .title{
    font-size: 30px;
    color:#C1CAEA;
    font-weight: 600;
    margin-left: 10px;
}

.section-title .number{
    color: var(--main-color);
    font-weight: 300;
}

.section-title .separator{
    width: 300px;
    height:1px;
    background-color: #233554;
    display: inline-block;
    margin-left: 20px;
    margin-top: 20px;
}


.section-text span{
    margin-bottom:10px;
}

.section-text a{
    text-decoration: none;
    color: var(--main-color);
    font-weight: bold;
    cursor: pointer;
}

.section-img{
    flex-basis: 35%;
    display: flex;
    align-items: center;
    justify-content:center;
}

.section-img img{
    width: 300px;
    border-radius: 5px;
    transition-duration: 1s;
    -webkit-filter:  brightness(100%) contrast(100%) grayscale(100%) hue-rotate(0deg) invert(0%) opacity(100%) saturate(100%) sepia(0%);
    filter:  brightness(100%) contrast(100%) grayscale(100%) hue-rotate(0deg) invert(0%) opacity(100%) saturate(100%) sepia(0%);
    position: relative;
    top: -20px;
    left: -20px;
}

.section-img img:hover{
    filter:  none;
    -webkit-filter:none;
}

.image-border{
    border: 3px var(--main-color) solid;
    border-radius: 5px;
    transition-duration: 1s;
    padding-right: 10px;
    padding-bottom: 10px;
}

.section-img .image-border:hover{
    padding-right: 0;
    padding-bottom: 0;
}


.show-more-section{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: flex-start;
    height: 70px;
}

.show-more-section div{
    display: flex;
    height: 50px;
    width: 140px;
    justify-content: center;
    align-items:center;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    transition-duration: 500ms;
}

.show-more-section div span{
    display: flex;
    font-size: 20px;
    font-family: var(--font-sans);
    font-weight: bold;
}

.show-more-section .show-less-button{
    display: none;
}

.show-more-section div:hover{
    background-color: var(--main-color);
    color: var(--main-bg-color);
    cursor: pointer; 
}


.imp-text{
    color: var(--main-color);
    display: inline;
}

.flex-start{
    display:flex;
    flex-basis:100%;
    justify-content:flex-start;
    padding-left: 50px;
}

.project-reversed{
    flex-direction: row-reverse;
}

.project-reversed .project-description{
    align-items:flex-start
}


.project-card{
    display: flex;
    justify-content:center;
    align-items: center;
    width: 100%;
    position: relative;
    margin-bottom: 50px;
}

.project-card .project-image{
    display: flex;
    flex-basis: 43%;
    height: 400px;
}

.project-image img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transition-duration: 500ms;
    -webkit-filter:  brightness(100%) contrast(100%) grayscale(100%) hue-rotate(0deg) invert(0%) opacity(100%) saturate(100%) sepia(0%);
    filter:  brightness(100%) contrast(100%) grayscale(100%) hue-rotate(0deg) invert(0%) opacity(100%) saturate(100%) sepia(0%);
}

.project-image img:hover{
    -webkit-filter:  none;
    filter:  none;
}

.project-description-placeholder{
    display: flex;
    flex-basis: 50%;
    flex-direction: column;
    align-items:flex-end;
    justify-content: space-between;
}

.project-description{
    display: flex;
    width:80%;
    position: absolute;
    flex-direction: column;
    align-items:flex-end;
    justify-content: space-between;
    height: 100%;
    pointer-events: none;
}



.project-category{
    color: var(--main-color);
    pointer-events: auto;
}

.project-title{
    font-size: 30px;
    color:#C1CAEA;
    font-weight: 600;
    pointer-events: auto;
}

.project-description-text{
    background-color: #112240;
    color: var(--p-font-color);
    font-size: 20px;
    padding: 20px;
    border-radius: 10px;
    max-width: 700px;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 7px 29px 0px;
    pointer-events: auto;
}

.project-techs{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.project-techs span{
    color: #C1CAEA;
    font-size: 13px;
    margin-left:10px;
    display: flex;
    pointer-events: auto;
}

.project-links a{
    color: #C1CAEA;
    font-size: 30px;
    margin-left: 20px;
    transition-duration: 500ms;
    pointer-events: auto;
    cursor: pointer;
}

.project-links a:hover{
    color: var(--main-color);
}


.footer{
    display: flex;
    width: 100%;
    height:100px;
    flex-direction: column;
}

.footer-section{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    width:100%;
}

.footer-section a{
    margin: 0 10px;
}

.footer-section i{
    font-size: 30px;
    color:#C1CAEA;
    transition-duration: 500ms;
    cursor: pointer;
}

.footer-section i:hover{
    color: var(--main-color);
}


.contact-info{
    display: flex;
    flex-direction: column;
    justify-content:space-between;
    height: 100px;
}

.contact-info span{
    color: #C1CAEA;
    margin-left: 10px;
    font-weight: 300;
}

.contact-info a{
    text-decoration: none;
}

/* button */

.contact-button{
    margin-top:30px;
}

.contact-button  a{
    width: 200px;
    height: 50px;
    line-height: 40px;
    font-size: 22px;
    font-family: sans-serif;
    text-decoration: none;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    letter-spacing: 2px;
    text-align: center;
    position: relative;
    transition: all .35s;
    display: flex;
    justify-content: center;
    align-items: center;
}


.contact-button  a span{
    display: flex;
    position: relative;
    z-index: 2;
    justify-content:center;
    align-items: center;
    top:5px
}
  
.contact-button  a:after{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--main-color);
    transition: all .35s;
}
  
.contact-button  a:hover{
    color: #fff;
}
  
.contact-button  a:hover:after{
    width: 100%;
}

/* end button */

@media (max-width: 900px){
    .section-text, .section-img{
        flex-basis: 90%;
        margin-bottom: 70px;
    }

    .section-img img{
        width: 200px;
    }

    .section-title .separator{
        display: none;
    }
}


@media (max-width: 550px){
    .project-description-placeholder{
        display: none;
    }

    .project-card .project-image{
        flex-basis: 90%;
    }

    .flex-start{
        padding-left: 20px;
    }

    .project-description{
        background-color: rgba(0, 0, 0, 0.7);
        width:90%;
        padding: 10px;
        border-radius: 10px
    }

    .project-description-text{
        background-color: transparent;
        color: #C1CAEA;
    }
}