.bodySection .row .column2 .row2 {
    display: flex;
}

.bodySection .row .column2 .row2 .column3 {
    position: relative;
    float: left;
    width: 50%;
    padding: 2px;
}

.bodySection .row .column2 .row2 .column3 img {
    width: 100%;
    height: 100%;
}

.bodySection .row .column2 .row2 .column3:after {
    content: "";
    display: table;
    clear: both;
}

.bodySection .row .column2 .row2 .column3 .image-area {
    position: relative;
}

.bodySection .row .column2 .row2 .column3 .img-wrapper {
    position: relative;
    overflow: hidden;
}

.bodySection .row .column2 .row2 .column3 .img-wrapper img {
    width: 100%;
    filter: grayscale(100%);
    transition: 2s;
    transform: scale(1.1);
}

.bodySection .row .column2 .row2 .column3 .img-wrapper:hover img {
    filter: grayscale(0%);
    transform: scale(1.3);
}

.bodySection .button {
    position: relative;
    display: inline-block;
    border-radius: 2px;
    border: 2px solid black;
    background-color: white;
    color: black;
    text-align: center;
    font-size: 18px;
    padding: 5px 10px;
    width: 100%;
    transition: all 0.3s;
    cursor: pointer;
}

.bodySection .button:hover {
    background: black;
    color: white;
    transition: 0.3s;
}

.bodySection .button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.3s;
}

.bodySection .button span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -40px;
    transition: 0.3s;
}

.button:hover span {
    padding-right: 25px;
}

.button:hover span:after {
    opacity: 1;
    right: 0;
}

.codeP p a {
    text-decoration: brown; /* Remove underline */
    color: inherit; /* Inherit the color from the parent */
    margin: 0; /* Remove any default margin */
    padding: 0; /* Remove any default padding */

}









.cb-slideshow,
.cb-slideshow:after { 
    position: relative;
    width: 100%;
    height: 100vh;
    top: 0px;
    left: 0px;
    overflow: hidden;
    background: black;
}

.cb-slideshow li span { 
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    color: transparent;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: none;
    opacity: 0;
    z-index: 0;
    -webkit-animation: imageAnimation 30s linear infinite 0s;
    -moz-animation: imageAnimation 30s linear infinite 0s;
    -o-animation: imageAnimation 30s linear infinite 0s;
    -ms-animation: imageAnimation 30s linear infinite 0s;
    animation: imageAnimation 30s linear infinite 0s; 
}

.cb-slideshow li:nth-child(1) span { 
    background-image: url(/images/projects/FDTAFacility.jpg);
}
.cb-slideshow li:nth-child(2) span { 
    background-image: url(/images/projects/LusailBoulevard.jpg);
    -webkit-animation-delay: 10s;
    -moz-animation-delay: 10s;
    -o-animation-delay: 10s;
    -ms-animation-delay: 10s;
    animation-delay: 10s; 
}
.cb-slideshow li:nth-child(3) span { 
    background-image: url(/images/projects/SaafaCorniche.jpg);
    -webkit-animation-delay: 20s;
    -moz-animation-delay: 20s;
    -o-animation-delay: 20s;
    -ms-animation-delay: 20s;
    animation-delay: 20s; 
}


.cb-slideshow li:nth-child(2) div { 
    -webkit-animation-delay: 18s;
    -moz-animation-delay: 18s;
    -o-animation-delay: 18s;
    -ms-animation-delay: 18s;
    animation-delay: 18s; 
}
.cb-slideshow li:nth-child(3) div { 
    -webkit-animation-delay: 28s;
    -moz-animation-delay: 28s;
    -o-animation-delay: 28s;
    -ms-animation-delay: 28s;
    animation-delay: 28s; 
}





 