body{
    font-family: "Google Sans", sans-serif;
    font-size: 18px;
    margin: 0;
    padding: 0;
}
*,
::after,
::before {
    box-sizing: border-box;
}
.all-area{
    padding: 40px 0;
}
@media screen and (max-width: 1024px) {
    .all-area{
        padding: 20px 0;
    }
}
.all-area:before{
    content: "";
    position: fixed;
    box-shadow: 0 0 700px 600px rgba(227, 251, 157, 0.2);
    z-index: -1;
    top: 0;
    left: 0;
}
.all-area:after{
    bottom: 0;
    right: 0;
    content: "";
    position: fixed;
    box-shadow: 0 0 500px 400px rgba(203, 203, 255, 0.5);
    z-index: -1;
}
.container{
    max-width: 1320px;
    padding-left: 30px;
    padding-right: 30px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;

}
.content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
@media screen and (max-width: 1024px) {
    .content{
align-items: flex-start;
}
}
.features-section .content{
    padding: 60px 50px;
    background: linear-gradient(to bottom right, #06004B, #14004b);
    border-radius: 40px;
}
@media screen and (max-width: 1024px) {
    .features-section .content{
    padding: 20px;
    border-radius: 16px;
}
}
.features-section .content:after{
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #7a21ff;
    box-shadow: 0 0 150px 100px #7a21ff;
    z-index: 1;
    right: -50px;
    bottom: -50px;
    opacity: .7;
}
section{
    margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
    section{
        margin-bottom: 20px;
    }
}
.heading{
    margin: 0;
    margin-bottom: 25px;
    text-align: center;
    font-size: 40px;
    line-height: 50px;
    font-weight: 600;
    color: #06004B;
}
@media screen and (max-width: 1024px) {
    .heading{
    font-size: 18px;
    line-height: 28px;
    margin-left: auto;
    margin-right: auto;
}
    .heading span{
    font-size: 28px;
    line-height: 38px;
}
}
.heading span{
   display: block;
}
.sub-heading{
    margin: 0;
    margin-bottom: 20px;
    text-align: center;
    font-size: 30px;
    line-height: 30px;
    font-weight: 600;
    color: #06004B;
}
@media screen and (max-width: 1024px) {
   .sub-heading{
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 10px;
}
}
.description{
    margin: 0;
    font-size: 20px;
    max-width: 1000px;
    line-height: 30px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: #06004B;
}
@media screen and (max-width: 1024px) {
    .description{
    font-size: 15px;
    line-height: 22px;
}
}
ul{
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.hero-section .section-list{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
    .hero-section .section-list{
    gap: 5px;
    margin-bottom: 20px;
}
}
.hero-section .section-list li{
    background: linear-gradient(to right, #3e4bc6, #523ec6);
    padding: 13px 30px;
    font-weight: 500;
    color: #fff;
    border-radius: 30px;
    white-space: nowrap;
}
@media screen and (max-width: 1024px) {
    .hero-section .section-list li{
    padding: 5px 10px;
    font-size: 13px;
    font-weight: 600;
}
}
.features-section .section-list{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
}
.features-section .section-list li{
    padding: 13px 30px;
    font-weight: 500;
    color: #fff;
    border-radius: 30px;
    white-space: nowrap;
    min-width: 33%;
    max-width: 33%;
    display: flex;
    align-items: center;
}
@media screen and (max-width: 1024px) {
.features-section .section-list li{
    padding: 4px 0 4px 10px;
    min-width: 100%;
    max-width: 100%;
    font-size: 16px;
}
}
.features-section .section-list li svg{
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.footer-section ul{
    display: flex;
    align-items: center;
}
@media screen and (max-width: 1024px) {
    .footer-section ul{
        flex-direction: column;
        align-items: flex-start;
}
}
.footer-section ul li{
    padding-left: 20px;
    padding-right: 20px;
    font-weight: 500;
}
@media screen and (max-width: 1024px) {
.footer-section ul li{
    font-size: 14px;
     padding-left: 0;
        padding-right: 0;
        padding-bottom: 10px;
}
}
.footer-section ul li span{
    color: #06004B;
}
.footer-section ul li a{
   color: #3368FC;
   text-decoration: none;
}
.footer-section ul li a:hover,
.footer-section ul li a:focus{
   color: #605dff;
}

.float-whatsapp{
    position: fixed;
    right: 10px;
    bottom: 10px;
    background-color: #07b332;
    border-radius: 20px 20px 0 20px;
    min-width: 60px;
    max-width: 60px;
    min-height: 60px;
    max-height: 60px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease 0s;
}
.float-whatsapp svg{
    width: 24px;
    height: 24px;
}
.float-whatsapp:hover,
.float-whatsapp:focus{
    background-color: #069229;
}