* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    position: relative;
    font-family: "Poppins", sans-serif;
    background: #050807;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: auto;
}

header .logo,
header .logo p {
    height: 40px;
    width: auto;
}

header aside:first-child {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 23px;
    width: 20%;
    border-width: 0px 1px 1px 0px;
    border-style: solid;
    border-color: #d7d7d7;
    border-radius: 0px 0px 33px 0px;
}

header .logo img {
    height: 40px;
    width: 150px;
}

header aside:last-child {
    padding: 31px 55px 21px 44px;
    width: 79.999%;
    border-width: 0px 0px 1px 1px;
    border-style: solid;
    border-color: #d7d7d7;
    border-radius: 0px 0px 0px 33px;
}

header nav {
    display: flex;
}

header nav .burger {
    display: none;
}

header nav ul {
    display: flex;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    list-style: none;
}

header nav ul li {
    margin: 0 20px 10px 0;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    text-transform: capitalize;
    color: #ffffff;
    transition: 0.5s all linear;
}

header nav ul li:hover {
    color: #0cc75e;
}

header nav ul li:last-child {
    margin: 0 0 10px 0;
}

header nav ul li a {
    color: inherit;
    text-decoration: none;
}

p img {
    width: 100%;
    height: 100%;
}

.intro {
    padding: 172px 0 100px 0;
    width: 100%;
    height: auto;
    background: url("bg.webp") center / cover no-repeat;
    border-radius: 0px 0px 71px 71px;
}

.intro-two {
    padding: 172px 0 100px 0;
    width: 100%;
    height: auto;
    background: linear-gradient(110deg, #9CFAC3 3.69%, #108843 13.07%, #9CFAC3 44.89%) center / cover no-repeat;
    border-radius: 71px 71px 71px 71px;
}

.container {
    margin: 0 auto;
    width: 90%;
}

.container .row {
    margin: 0 auto;
    width: 60%;
}

.intro .row {
    display: flex;
    flex-direction: column;
}

.intro h1 {
    margin: 0 0 40px 0;
    font-style: normal;
    font-weight: 600;
    font-size: 64px;
    line-height: 87.02%;
    text-align: center;
    color: #ffffff;
}

.intro h1 span {
    font-weight: 700;
    font-size: 96px;
    line-height: 87.02%;
}

.intro p {
    margin: 0 0 40px 0;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
    text-align: center;
    color: #ffffff;
}

.intro .button {
    padding: 21px 75px;
    background: linear-gradient(110deg, #108843 -2.69%, #8ccda8 13.07%, #013720 44.89%);

    box-shadow: inset 0px 9px 6px rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    text-decoration: none;
    width: auto;
    align-self: center;
    transition: 0.5s all linear;
}

.intro .button:hover {
    background: linear-gradient(110.22deg, #ebedf1 -2.69%, #ffffff 13.07%, rgb(225, 225, 240) 44.89%);
}

.intro .button:hover span {
    color: #203043;
}

.intro .button span {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
    color: #fff;
    transition: 0.5s all linear;
}

.content {
    padding: 60px 0 173px 0;
    background: url("bg-2.webp") top center / cover repeat-y;
}

.img-text {
    margin: 0 0 50px 0;
    width: 100%;
    height: auto;
    border-radius: 64px;
}

.img-text img {
    width: 100%;
    height: auto;
}

.content h1, h2 {
    margin: 20px 0;
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 87.02%;
    padding: 10px 10px 10px 40px;
    background: linear-gradient(110deg, #108843 -2.69%, #8ccda8 13.07%, #013720 44.89%);
    border-radius: 14px;
    color: #ffffff;
    text-align: center;
}

.content h3 {
    margin: 30px 0 30px 0;
    font-style: normal;
    font-weight: 700;
    font-size: 38px;
    line-height: 87.02%;
    color: #ffffff;
    text-align: center;
}

.content p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 170.02%;
    color: #ffffff;
    text-align: justify;
}


.content table {
    margin: 30px 0;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

table,
td,
th {
    border: 1px solid #0cc75e;
}

td,
th {
    padding: 5px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 170.02%;
    color: #ffffff;
    text-align: center;
    align-self: center;
}

th {

}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.responsive-table {
    width: 100%;
    border-collapse: collapse;
}

.responsive-table th,
.responsive-table td {
    padding: 5px 5px;
    border: 1px solid #0cc75e;
    text-align: left;
    line-height: 170.02%;
    color: #ffffff;
}

.responsive-table th {
    background-color: #266542;
    font-weight: bold;
}

footer {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 21px 0 31px 0;
    width: 100%;
    height: auto;
    border-top: 1px solid #d7d7d7;
    border-radius: 0px 0px 33px 0px;
}

footer .logo {
    display: none;
    height: 15px;
    width: auto;
}

footer .logo p {
    height: 15px;
    width: auto;
}

footer .logo img {
    height: 40px;
    width: 150px;
}

footer ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-self: center;
    list-style: none;
}

footer ul li {
    margin: 10px 10px 0 10px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #ffffff;
    transition: 0.5s all linear;
}

footer ul li:hover {
    color: #0cc75e;
}

footer ul li a {
    color: inherit;
    text-decoration: none;
}

.content .img-text {
    font-size: 0;
    line-height: 0;
}

.table {
    overflow-x: auto;
}

ul.custom-list {
    list-style: none;
    padding: 0;
    margin: 0;

}

ul.custom-list li {
    margin: 10px 0;
    padding: 10px 10px 10px 40px;
    background: #266542;
    color: white;
    border-radius: 10px;
    position: relative;
}

ul.custom-list li::before {
    content: '\2660';
    position: absolute;
    left: 10px;
    color: white;
    font-size: 20px;
    top: 50%;
    transform: translateY(-50%);
}

ol.custom-list {
    counter-reset: custom-counter;
    list-style: none;
    padding: 0;
    margin: 0;
}

ol.custom-list li {
    counter-increment: custom-counter;
    margin: 15px 0;
    padding: 10px 10px 10px 40px;
    background: #266542;
    border: 1px solid #0cc75e;
    color: white;
    border-radius: 10px;
    position: relative;
}

ol.custom-list li::before {
    content: counter(custom-counter) ". ";
    position: absolute;
    left: 10px;
    color: white;
    font-size: 20px;
    top: 50%;
    transform: translateY(-50%);
}


.foot-txt {
    margin-top: 15px;
    font-size: 12px;
    color: #ffffff;
    text-align: center;
}

.img-fig {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.fig-img img {
    border-radius: 14px;
    margin: 30px auto;
}
