body {
    background-color: #EDF0F2;
}
.text-description {
    font-size: 60px;
    font-family: Poppins-Bold, sans-serif;
    color: #000000;
    max-width: 592px;
}
.text-details {
    color: #1C1B1B;
    font-family: Poppins-Regular, sans-serif;
    font-size: 18px;
    line-height: 35px;
}
.description {
     position: absolute;
     width: 100%;
     bottom: 10%;
 }
 .projects {
     margin-top: 72px;
 }
 .projects .description > .row {
     border-top: 1px solid #FFFFFF;
     border-bottom: 1px solid #FFFFFF;
 }
 .heading {
     font-size: 1.875rem;
     color: #FFFFFF;
     font-family: Poppins-Bold, sans-serif;    
     padding-top: 18px;
     padding-bottom: 18px;
 }
 .projects .project-container .description > .row {
     margin: 0;
 }
 .projects .description {
     width: 100%;
     margin: 0 auto;
     position: absolute;
     bottom: 10%;
 }
 
 .projects .col-lg-4 .project {
     font-family: Poppins-Medium, sans-serif;
     font-size: 18px;
     line-height: 27px;
     text-align: center;
     text-decoration: none;
     color: #1C1B1B;
     position: relative;
 }
 .projects .mobile {
    width: 100%;
}
.project-container .col-lg-4:hover {
   background-color: #1C1B1B;
}
.project-container .col-lg-4:hover span {
   color: #FFFFFF;
}
.projects .col-lg-4 .project:after {
   width: 24px;
   content: "";
   display: inline-block;
   height: 100%;
   position: absolute;
   background-repeat: no-repeat;
   background-position: center;
   background-size: contain;
   top: 0;
   right: -32px;
}
 .projects .mobile {
     width: 100%;
 } 
 .projects .project-container {
    margin-bottom: 26px;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}
 @media only screen and (max-width: 1280px) {
     .desktop:not(header) {
         display: none;
     }
     .projects {
        padding-top: 86px;
     }
     .text-heading {
        font-size: 40px;
     }
 }
 @media only screen and (min-width: 1281px) {
     .mobile:not(header) {
         display: none;
     }
     .projects {
        padding-top: 167px;
     }
     .projects .col-lg-4 {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        background-color: #FFFFFF;
        padding-top: 16px;
        padding-bottom: 16px;
    }
 }
 @media only screen and (min-width: 1281px) {
    .projects .project-container .col-lg-4 {
        opacity: 0;
        transition: opacity 0.1s ease-in-out;
    }
    .projects .project-container:hover .col-lg-4 {
        opacity: 1;
    }
}