*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

:root {
    --color-primary: #06c006;
    --color-primary-light: #04c704;
    --color-dark: rgb(0, 0, 0);
    --color-dark-light: rgb(31, 30, 30);
    --color-white: #fff;
    --color-light: #f8fffc;
}

html {
    font-size: 10px;
    line-height: 1.2;
    scroll-behavior: smooth;
}

body {
    font-size: 10px;
    font-family: "Helvetica Neue", Helvetica, Arial;
    box-sizing: border-box;
}

.flash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(126, 248, 197, 0.671); */
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flash-box {
    width: 60%;
    background-color: var(--color-light);
    border-radius: 3rem;
    box-shadow: 0 0 3rem rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
}

.flash .flash-close {
    position: absolute;
    top: 1rem;
    right: 3rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
}

.flash .content {
    padding: 3rem;
    font-size: 1.7rem;
    line-height: 2;
    text-align: justify;
}

.flash-grid {
    display: flex;
}

.flash-grid .imgBx {
    position: relative;
}

.flash-grid .imgBx p {
    position: absolute;
    text-align: center;
    font-size: 4rem;
    font-weight: bold;
    width: 100%;
    color: #fff;
}

.flash-grid .imgBx p:nth-of-type(1) {
    top: 2rem;
    font-size: 5rem;
}

.flash-grid .imgBx p:nth-of-type(2) {
    bottom: 2rem;
}

.flash .imgBx img {
    width: 100%;
    height: 100%;
    -webkit-filter: brightness(60%);
    filter: brightness(60%)
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5rem;
    height: 8rem;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
}

.header .imgBx {
    width: 10rem;
    height: 7rem;
    -webkit-filter: drop-shadow(0 0 0.2px rgb(30, 240, 2));
    filter: drop-shadow(0 0 0.2px rgb(30, 240, 2));
}

.header .imgBx img {
    width: 100%;
    height: 100%;
    /* filter: contrast(50); */
    -webkit-filter: drop-shadow(0 0 0.75rem rgb(20, 20, 20));
    filter: drop-shadow(0 0 0.75rem rgb(20, 20, 20));
}

.header ul.nav {
    display: flex;
    list-style-type: none;
    font-size: 1.6rem;
    z-index: 1;
    /* background: #00f80083; */
    padding: 2rem;
    /* border-radius: 20rem; */
    position: relative;
    z-index: 2;
}


/* .header ul.nav::after {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    filter: blur(30px);
    background-color: #05e705;
    z-index: -1;
} */

.header ul.nav li {
    padding: 0 2.5rem;
    text-transform: capitalize;
}

.header ul.nav li a {
    color: var(--color-light);
    font-weight: 500;
}

.header ul.nav li a:hover {
    color: var(--color-primary);
    text-decoration: none;
}

#menu,
#menulabel {
    display: none;
}

.banner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5rem;
    height: calc(85vh);
    background-color: green;
    background-image: linear-gradient(rgba(31, 32, 31, 0.596), rgba(0, 128, 0, 0.555)), url(../images/topview.jpg);
    background-position: bottom right;
    background-size: cover;
    /* text-align: center; */
    -webkit-animation: animate-banner 15s linear infinite;
    animation: animate-banner 15s linear infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}


/* @keyframes animate-banner {
    0% {
        background-size: 100% 100%;
    }
    100% {
        background-size: 105% 105%;
    }
} */

.banner .imgBx {
    width: 45rem;
    height: 100%;
    /* clip-path: polygon(20% 0%, 100% 0, 100% 100%, 0% 100%); */
}

.banner .imgBx img {
    width: 100%;
    height: 100%;
}

.banner .content {
    text-transform: capitalize;
    max-width: 70%;
    color: #fff;
    margin-top: 5rem;
}

.text-large {
    font-size: 3.5rem;
}

.text-paragraph {
    font-size: 1.8rem;
    color: var(--color-dark-light);
    line-height: 2;
}

.banner .content p.text-paragraph {
    background-color: #2224238c;
    padding: 2rem;
    color: #fff;
    text-transform: initial;
    text-align: justify;
}

.app-download{
    display:flex;
    flex-wrap: wrap;
    /* grid-template-columns: repeat(2,600px); */
    justify-content:center;
    /* gap:20px; */
    padding: 32px 10px;
    /* text-align: center; */
}

.download-container{
    padding:10px;
    flex-basis: 600px;
}
.download-card{
    border:1px solid rgb(210, 255, 210);
    border-radius: 10px;
}
.download-card .body{
    padding:16px;
}
.download-container h2{
    font-size: 18px;
    font-weight:600;
    padding:  16px;
    /* border-bottom:1px solid rgb(218, 218, 218); */
    background-color:rgb(210, 255, 210);
}
.download-container p{
    font-size: 14px;
    text-align:justify;
}
.download-container a{
    border:0px solid;
    text-decoration: none;
    border-radius: 5px;
    padding:16px;
    font-size: 18px;
    cursor:pointer;
    display:inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    width:100%;
}


.download-container:nth-of-type(1) a{
    background-color: #222;
    color:rgb(107, 247, 149);
}
.download-container:nth-of-type(1) a:hover{
    background-color: rgb(0, 185, 62);
    color:#eee;
}

.download-container:nth-of-type(2) a{
    background-color: rgb(0, 185, 62);
    color:#eee;
}
.download-container:nth-of-type(2) a:hover{
    background-color: #222;
    color:#eee;
}

.download-container a:hover i{
    color:#eee;
}
.download-container a i{
    color:#eee;
}
.download-container a img{
    width:30px;
}
.download-container a span{
    display:inline-block;
    margin-left: 10px;
    line-height: 0;
}

.text-header {
    font-size: 3.5rem;
    color: var(--color-dark);
    font-weight: 450;
    text-transform: capitalize;
    text-align: center;
    font-weight: bold;
    /* margin-bottom: 8rem; */
}

.text-center {
    text-align: center;
}

.pill {
    text-decoration: none;
    padding: 1rem 2rem;
    display: inline-block;
    cursor: pointer;
}

.pill-rounded {
    border-radius: 2.7rem;
}

.pill-dark {
    background-color: var(--color-primary-light);
    color: #fff!important;
}

.pill-dark2 {
    background-color: var(--color-dark);
    color: #fff!important;
}

.pill-dark:hover {
    background-color: green;
    color: var(--color-white);
    text-decoration: none;
}

.pill-dark2:hover {
    background-color: #222;
    color: var(--color-white);
    text-decoration: none;
}

.mt-medium {
    margin-top: 2rem;
}

.mt-large {
    margin-top: 5rem;
}

.mb-large {
    margin-bottom: 8rem;
}

section.apps {
    background-color: var(--color-light);
    padding: 5rem;
}

main.main {
    overflow: hidden;
}

.grid-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
}

.grid-wrapper .item {
    /* overflow: hidden; */
    position: relative;
    background-color: var(--color-white);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.26);
    text-decoration: none;
    color: var(--color-dark)
}

.grid-wrapper .item .item-card {
    padding: 3rem;
    padding-bottom: 8rem;
    text-align: center;
    position: relative;
}

.grid-wrapper .item .item-card:hover .item-tooltip {
    opacity: 1;
}

.item-tooltip {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background-color: rgb(210, 255, 210);
    padding: 2rem;
    color: #111;
    font-size: 1.7rem;
    text-align: justify;
    /* border-radius: 10rem; */
    opacity: 0;
    transition: all 0.2s;
}

.item-tooltip::after {
    content: " ";
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2rem;
    height: 1.5rem;
    background-color: var(--color-primary);
    -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.grid-wrapper .item .item-card img {
    width: 10rem;
    height: 10rem;
}

.grid-wrapper .item .item-card h4 {
    font-size: 2rem;
    text-transform: capitalize;
    margin: 2rem 0;
}

.grid-wrapper .item .item-card a {
    background-color: var(--color-primary);
    font-size: 1.8rem;
    letter-spacing: 2px;
    display: inline-block;
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    border: 0px;
    border-radius: 3rem;
    padding: 1.5rem 2.5rem;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
}

.grid-wrapper .item .item-card a:hover {
    background-color: green;
}

.readMore {
    font-size: 1.5rem;
    font-weight: bold;
    display: none;
    margin-bottom: 2rem;
}

.grid-wrapper .item .item-card p {
    font-size: 1.5rem;
    text-transform: capitalize;
    color: var(--color-dark-light);
    line-height: 2;
}

section.why {
    padding: 5rem;
    max-width: 70%;
    margin: 0 auto;
    text-align: justify;
}

.details {
    font-size: 1.7rem;
    width: 100%;
    height: 100%;
}

.details details summary {
    background-color: var(--color-light);
    margin-bottom: 1rem;
    padding: 2rem;
    color: var(--color-dark);
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
}

.details details summary:hover {
    background-color: #eff1f0;
}

.details details p {
    background-color: rgb(210, 255, 210);
    color: var(--color-dark);
    padding: 2rem;
    line-height: 2;
}

.details details ol {
    background-color: rgb(210, 255, 210);
    padding: 4rem;
    line-height: 2;
    margin-top: -2rem;
}

.details details ol li {
    text-align: justify;
}

section.understanding {
    padding: 5rem;
    background-color: var(--color-light);
}

section.understanding .details details summary {
    background-color: var(--color-primary-light);
    color: var(--color-light)
}

section.understanding .details details summary:hover {
    background-color: var(--color-primary);
}

section.contact {
    padding: 5rem;
}

.grid-2 {
    display: flex;
    align-items: center;
    margin-top: 8rem;
}

.grid-2 .details {
    padding: 3rem;
}

.grid-2 .details details ol {
    padding: 3rem;
}

.grid-2 .details details ol li {
    margin-bottom: 2rem;
    line-height: 2;
}

.grid-2 .imgBx {
    padding: 2rem;
    flex: 0 0 40%;
}

.grid-2 .imgBx img {
    width: 100%;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.5);
    /* border: 1px solid var(--color-dark); */
    background-color: var(--color-white);
    border-radius: 3rem;
    padding: 1rem;
}

.grid-contact {
    display: grid;
    grid-template-columns: repeat(2, 300px);
    grid-gap: 3rem;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
}

.grid-contact .item {
    text-align: center;
}

.grid-contact a {
    display: block;
    margin-top: 1rem;
}

.attorney {
    padding: 5rem;
    overflow-x: hidden;
    font-size: 1.7rem;
    line-height: 2;
}

.attorney .row {
    margin: 8rem 0;
}

.attorney .row .imgBx img {
    /* width: 100px; */
    height: 400px;
}

footer.footer {
    background-color: rgb(51, 53, 51);
    color: var(--color-light);
    font-size: 1.5rem;
    /* display: flex; */
    /* justify-content: center;
    align-items: center; */
}

footer.footer .row {
    padding: 5rem;
}

footer.footer a {
    color: inherit;
    display: inline-block;
    margin-left: 1rem;
}

footer.footer a:hover {
    color: grey;
    text-decoration: none;
}

footer.footer .content {
    background-color: rgb(210, 255, 210);
    padding: 2rem;
    color: #111;
    text-align: center;
    /* display: flex;
    justify-content: center; */
}

@media(max-width:1400px) {
    .header ul.nav {
        padding: 0px;
        align-items: center;
    }
    .header ul.nav::after {
        background-color: unset;
    }
    /* .header ul.nav li a {
        color: var(--color-dark);
    } */
    .banner {
        justify-content: center;
    }
    .banner .content {
        z-index: 1;
        max-width: 70%;
        /* padding-left: 10em; */
    }
    .banner p:nth-child(2) {
        color: #555;
    }
    /* .banner .pill {
        background-color: var(--color-light);
        color: #111;
    } */
    .banner .imgBx {
        position: absolute;
        top: 10rem;
        left: 0;
        width: 100%;
    }
    .grid-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
    .flash-box {
        width: 50%;
        height: 80%;
        background-color: var(--color-light);
        border-radius: 3rem;
        box-shadow: 0 0 3rem rgba(0, 0, 0, 0.2);
        /* overflow: hidden; */
        position: relative;
    }
    .flash .flash-close {
        font-size: 3rem;
        color: #fff!important;
    }
    .flash-grid {
        display: flex;
        flex-direction: column;
    }
    .flash .content {
        padding: 3rem;
        height: 30rem;
        font-size: 1.7rem;
        line-height: 2;
        overflow-y: auto;
    }
    .flash .imgBx {
        width: 100%;
        height: 30rem;
    }
    .flash .imgBx img {
        width: 100%;
        height: 100%;
    }
    .readMore {
        display: block;
    }
}

@media(max-width:900px) {
    html {
        font-size: 8px;
    }
    #menulabel {
        display: block;
        font-size: 3em;
        color: #fff;
    }
    .header ul.nav {
        position: absolute;
        left: 0;
        top: 5em;
        /* display: block; */
        justify-content: center;
        width: 100%;
        height: 0px;
        background-color: var(--color-primary-light);
        overflow: hidden;
    }
    .header ul.nav li {
        padding: 1.5em;
        font-size: 2.3rem;
    }
    .header ul.nav li a {
        color: var(--color-light);
    }
    .header ul.nav li a:hover {
        color: var(--color-dark);
    }
    #menu:checked+ul.nav {
        height: auto;
    }
    .banner {
        height: 80vh;
    }
    .banner .content {
        max-width: 100%;
    }
    .flash-box {
        width: 80%;
    }
    .flash .imgBx {
        width: 100%;
        height: 40rem;
    }
    .grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    section.why,
    section.apps {
        padding: 5rem 3rem;
    }
    .attorney {
        padding: 5rem 1rem;
    }
    .attorney .row .imgBx img {
        /* width: 100px; */
        height: 100%;
    }
    section.attorney .row {
        flex-direction: column-reverse;
    }
    section.attorney .row .imgBx {
        margin-bottom: 3rem;
    }
    .flash .content {
        height: 30rem;
    }
}

@media(max-width:750px) {
    section.why {
        max-width: 100%;
        text-align: justify;
    }
    section.understanding {
        padding: 3rem;
    }
    section.contact {
        padding: 3rem;
    }
    .grid-2 {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .grid-2 .imgBx {
        padding: 0;
        margin: 0;
        flex: 0 0 100%;
    }
    .grid-2 .imgBx img {
        padding: 0;
        /* margin: 0;
        flex: 0 0 100%; */
    }
    .grid-contact {
        display: block;
        text-align: center;
    }
    .grid-contact .item {
        margin-top: 5rem;
    }
    footer.footer {
        display: block;
        text-align: center;
    }
    /* .flash .imgBx {
        width: 100%;
        height: 25rem;
    } */
    footer.footer a {
        font-size: 1.7rem;
    }
}

@media(max-width:600px) {
    body {
        background-color: var(--color-light);
    }
    .header ul.nav {
        position: absolute;
        left: 0;
        top: 5em;
        display: block;
        justify-content: center;
        flex-direction: column;
        width: 100%;
        height: 0px;
        background-color: var(--color-primary-light);
    }
    .header ul.nav li {
        text-align: left;
    }
    /* .banner {
        background-image: linear-gradient(rgba(255, 255, 255, 0.856), rgba(255, 255, 255, 0.836)), url(../images/bg.jpg);
        background-size: cover;
    } */
    .banner .content {
        padding-left: 0em;
    }
    .banner .content .pill {
        background-color: var(--color-primary);
        color: var(--color-light);
    }
    .banner .imgBx {
        display: none;
    }
    .grid-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media(max-width:400px) {
    .banner {
        height: 85vh;
    }
    .banner,
    .header {
        padding-left: 2em;
        padding-right: 2em;
    }
    .text-large {
        font-size: 2.5em;
        line-height: 1.5;
    }
    .flash-box {
        width: 90%;
        height: auto;
    }
    .flash .imgBx {
        width: 100%;
        height: 30rem;
    }
}

@media(max-width:330px) {
    .banner {
        height: 120vh;
    }
}

@media(max-height:700px) {
    .flash-box {
        width: 90%;
        background-color: var(--color-light);
        border-radius: 3rem;
        box-shadow: 0 0 3rem rgba(0, 0, 0, 0.2);
        overflow: hidden;
        position: relative;
    }
    .flash .flash-close {
        color: #111!important;
    }
    .flash .content {
        padding: 2rem;
        font-size: 1.7rem;
        line-height: 2;
        text-align: justify;
        height: 40rem;
    }
    .flash-grid {
        display: flex;
    }
    .flash-grid .imgBx {
        position: relative;
        height: 20rem;
    }
    .flash-grid .imgBx p:nth-of-type(1) {
        top: 2rem;
        font-size: 5rem;
    }
    .flash-grid .imgBx p:nth-of-type(2) {
        bottom: 2rem;
    }
    .flash .imgBx img {
        width: 100%;
        height: 100%;
        -webkit-filter: brightness(60%);
        filter: brightness(60%);
    }
}

@media(max-height:550px) {
    .flash-box {
        width: 90%;
        background-color: var(--color-light);
        border-radius: 3rem;
        box-shadow: 0 0 3rem rgba(0, 0, 0, 0.2);
        overflow: hidden;
        position: relative;
    }
    .flash .flash-close {
        color: #111!important;
    }
    .flash .content {
        padding: 2rem;
        font-size: 1.7rem;
        line-height: 2;
        text-align: justify;
        height: 40rem;
    }
    .flash-grid {
        display: flex;
    }
    .flash-grid .imgBx {
        position: relative;
        height: 10px;
    }
    .flash-grid .imgBx p {
        display: none;
    }
    .flash-grid .imgBx p:nth-of-type(1) {
        display: none;
    }
    .flash-grid .imgBx p:nth-of-type(2) {
        display: none;
    }
    .flash .imgBx img {
        width: 100%;
        height: 100%;
        -webkit-filter: brightness(60%);
        filter: brightness(60%);
        display: none;
    }
}