:root {

    --bgcol: #ececec;
    --Light: #8FD974;
    --Light2: #7AC968;
    --Dark2: #5BB462;
    --Dark:  #4CA456;
    --black: #394141;
    --font: #fff;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-color: #3fc20b59;
}

                                                    /* All page header */

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--Dark);
    z-index: 99;
}
.logo{
    font-size: 2em;
    color: var(--font);
    user-select: none;
    font-family: 'Times New Roman', Times, serif;
}
.navigation a{
    position: relative;
    font-size: 1.1em;
    color: var(--font);
    text-decoration: none;
    font-weight: 500;
    margin-left: 40px;
}
.navigation a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 5px;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .5s;
}
.navigation a:hover::after {
    transform-origin: left;
    transform: scaleX(1);
}

                                            /* footer */


footer{
    height: 25vh;
    width: 100%;
    position: absolute;
    margin-top: 5000px;
    border-radius: 30px 30px 0 0;
    background-color: rgb(91, 180, 98);
}

footer .topic{
    font-size: 28px;
    color: #fff;
    margin-top: 20px;
}

footer p{
    color: #000000;
    position: relative;
    width: 500px;
    padding: 5px;
    left: 50px;
}
footer a {
    text-decoration: none;
}
footer .link{
    position: relative;
    left: 560px;
    top: -60px;
    color: rgb(0, 0, 0);
    padding: 20px;
    
}



                                    /* Solution.html */

.inner{
    position: absolute;
    top: 90px;
    padding-left: 30px;
    width: 100%;
}
.inner h1{
    font-size: 30px;
    padding-bottom: 10px;
}
.inner h2{
    color: #fff;
}
.inner p{
    font-size: 25px;
}
.inner hr{
    border: 4px solid rgb(10, 168, 15);
    border-radius: 5px;
}
#para{
    margin: 50px;
    border: 1px solid black;
}
.solution ul {
    padding-left: 30px;
    font-weight: 600;
}
.para1,
.para3,
.para5{
    background-color: #8FD974;
    width: 800px;
    position: relative;
    left: 20px;
    padding: 20px;
    border-radius: 20px;
    box-shadow: -10px -10px 5px #5BB462;
}
.para2,
.para4{
    background-color: #8FD974;
    width: 800px;
    position: relative;
    right: -625px;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 10px 10px 5px #5BB462;
}

.img1,
.img2,
.img3,
.img4,
.img5{
    border-radius: 20px;
    overflow: hidden;
}


.img1,
.img3,
.img5{
    height: 400px;
    width: 550px;
    background-color: #000000;
    position: absolute;
    right: -600px;
    top: -5px;
}
.img2,
.img4{
    height: 350px;
    width: 550px;
    background-color: #000000;
    position: absolute;
    left: -600px;
    top: 10px;
}
.img1 img,
.img2 img,
.img3 img,
.img4 img,
.img5 img{
    width: 100%;
    height: 100%;
}