* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

@font-face {
    font-family: "Hind-Regular";
    src: url("./fonts/Hind-Regular.ttf");
}


/* Home Start */
.home-section {
    background-image: url("./images/home-bg.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    max-width: 576px;
    margin: 0px auto;
    padding: 50px 30px;
    border-bottom-right-radius: 200px;
}
.home-section .logo {
    text-align: center;
    margin-bottom: 30px;
}
.home-section .logo img {
    width: 150px;
    height: auto;
}
.home-section .home-content h1 {
    font-size: 35px;
    color: #fff;
    font-family: "Hind-Regular";
    line-height: 50px;
    text-align: center;
}
.home-section .home-content h1 span {
    font-size: 40px;
    color: #0ef7ff;
}
.home-section .home-content p {
    color: #fff;
    font-family: "Hind-Regular";
    font-size: 30px;
    text-align: center;
}
.home-section .home-content h2 {
    font-size: 80px;
    color: #fff;
    font-weight: 900;
    font-family: "Hind-Regular";
    line-height: 80px;
    text-align: center;
    text-shadow: 2px 2px #0EF7FF;
}
.home-section .home-content ul {
    list-style-type: none;
    padding: 0px;
    margin: 10px 0px 0px;
}
.home-section .home-content ul li img {
    width: 25px;
    height: 25px;
    margin-right: 15px;
}
.home-section .home-content ul li {
    color: #fff;
    font-family: "Hind-Regular";
    font-size: 20px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.home-section .home-content ul li:last-child {
    margin-bottom: 0px;
}

/* Home End */
/* footer start */
footer {
    margin: 21px 0;
}
.btn-group img {
    width: 33px;
    height: 33px;
    margin-right: 18.5px;
}
.btn-group {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #290878;
    border-radius: 50px;
    padding: 10px 30px 10px 10px;
    margin: 0 auto;
    outline: 6px solid #3355d6;
    width: 215px;
    box-shadow: 0 27px 33px #0006;
}
.btn-group button {
    background-color: transparent;
    border: none;
    /* width: 50%; */
    line-height: 19px;
    text-align: left;
    font-size: 18px;
    color: #fff;
    font-weight: bold;
}
.btn-group a {
	font-family: "Hind-Regular";
    background-color: transparent;
    border: none;
    /* width: 50%; */
	text-decoration:none;
    line-height: 19px;
    text-align: left;
    font-size: 18px;
    color: #fff;
    font-weight: bold;
}
/* ./footer end */
@media(max-width: 576px) {
    .home-section {
        padding: 40px 20px;
    }

    .home-section .home-content h2 {
        font-size: 60px;
        line-height: 60px;
    }

    .home-section .home-content h1 {
        font-size: 30px;
        line-height: 40px;
    }

    .home-section .home-content ul li {
        font-size: 18px;
    }

    .home-section .home-content ul li img {
        margin-right: 5px;
    }
}

@media(max-width: 480px) {
    .home-section {
        border-bottom-right-radius: 100px;
    }
}

@media(max-width: 320px) {
    .home-section {
        padding: 30px 20px;
    }
}