@font-face {
    font-family: 'Helvetica-Neue';
    src: url('../font/HelveticaNeueMedium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Helvetica-Neue", Helvetica, Arial, FreeSans, sans-serif;
    font-optical-sizing: auto;
}
.container{
    max-width: 1000px;
    margin: 50px auto;
}
.container .heading{
    padding-bottom: 30px;
}
.container h1{
    font-size: 28px;
    padding: 10px 0px;
}
.container .body h2{
    font-size: 24px;
    padding-top: 20px;
    padding-bottom: 5px;
}
.container .body p, .container .body ul{
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
}
.container .body p{
    padding-bottom: 10px;
}
.container .body ul{
    padding-left: 30px;
}
.container .body ul li{
    padding: 5px 0px;
}
@media screen and (max-width: 1020px){
    .container{
        width: 100%;
        padding: 0px 20px;
    }
}
@media screen and (max-width: 545px){
    .container h1{
        font-size: 24px;
    }
    .container .body h2{
        font-size: 20px;
    }
    .container .body p, .container .body ul{
        font-size: 16px;
    }
}

.main-body{
    background-image: url('../Images/bg-image.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100dvh;
    overflow: hidden;
}
.main-body .header{
    margin: 30px 50px 0px 50px;
}
.main-body .header .logo{
    width: 150px;
    /* filter: drop-shadow(0px 0px 10px rgba(124, 28, 168, 0.87)); */
}
.main-body .body{
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translate(0px, -50%);
}
.main-body .body .title{
    font-size: 56px;
    color: #FFFFFF;
    font-family: inherit;
}
.main-body .body .paragraph{
    font-size: 24px;
    color: #FFFFFF;
    width: 750px;
    line-height: 30px;
    margin-top: 28px;
}
.main-body .body .poweredBy{
    font-size: 24px;
    color: #FFFFFF;
    line-height: 30px;
    font-weight: bold;
    margin-top: 20px;
}


.main-body h1{
    font-weight: bold;
    font-size: 38x;
    line-height: 80px;
}
.footer{
    width: 100%;
    text-align: center;
    /* background-color: black; */
    color: #F1F1F1F1;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: absolute;
    bottom: 0px;
}
.footer .wrapper {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 30px;
}
.main-body .footer a{
    color: #F1F1F1F1;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}
.main-body .flotingIcon{
    position: absolute;
    right: 20px;
    bottom: 20px;
}
.main-body .flotingIcon img{
    width: 50px;
    border-radius: 50%;
}
@media screen and (max-width: 768px) {
    .main-body .body .paragraph{
        width: 100%;
        padding-right: 20px;
    }
}
@media screen and (max-width: 545px){
    .main-body{
        background-size: auto;
    }
    .main-body .header{
        margin: 30px 20px 0px 20px;
    }
    .main-body .body .title {
        font-size: 30px;
    }
    .main-body .body .paragraph, .main-body .body .poweredBy{
        font-size: 16px;
    }
    .main-body .body{
        left: 20px;
    }
    .main-body .header .logo{
        width: 80px;
    }
    .main-body .logo img{
        width: 100%;
    }
    .footer .wrapper{
        flex-direction: column;
    }
}