:root{
    --ftheme: "Manrope", sans-serif;
    --theme: #6e2585;
}
body, h1, h2, h3, h4, h5, h6, form, input, textarea, select{
    font-family: var(--ftheme);
}
.text-theme{
    color: var(--theme);
}
.bg-theme{
    background-color: var(--theme);
}
.btn-theme{
    background-color: var(--theme);
    border-color: var(--theme);
    color: #fff;
}
.btn-theme:hover,
.btn-theme:focus,
.btn-theme:active{
    background-color: transparent;
    border-color: var(--theme);
    color: var(--theme);
}
.btn-light-theme{
    background-color: #fff;
    border-color: #fff;
    color: var(--theme);
}
.btn-light-theme:hover,
.btn-light-theme:focus,
.btn-light-theme:active{
    background-color: transparent !important;
    border-color: #fff !important;
    color: #fff !important;
}
.cusbtn{
    font-weight: 900;
    padding: 8px 25px;
    font-size: 18px;
}
.bigheading{
    font-size: 48px;
}
.hero_sec{
    background-image: url('../img/new-bannner.jpg');
    background-repeat: no-repeat;
    background-position: 100% 70%;
    background-size: cover;
}
.copyright a{
    color: inherit;
    text-decoration: none;
}
header{
    border-bottom: 1px solid #eee;
}
.privacy_policy h5 {
    line-height: 1.5;
    font-size: 22px;
    font-weight: bold;
}
.privacy_policy a{
    color: var(--theme);
}
.privacy_policy ul,
.privacy_policy ol{
    padding-left: 20px;
}
.cusform .form-control{
    min-height: 45px;
    padding: 10px 16px;
    font-size: 16px;
    border-radius: 7px;
}
.cusform form label{
    padding-bottom: 4px;
    display: block;
}
.hero_content .btn.cusbtn {
    font-size: 26px;
    min-width: 380px;
    text-align: center;
}
@media screen and (max-width: 767px) {
    footer{
        font-size: 13px;
    }
    .container{
        padding-left: 20px;
        padding-right: 20px;
    }
    .bigheading {
        font-size: 32px;
    }
    .cusbtn{
        font-size: 14px;
        padding: 8px 20px;
    }
    .hero_sec {
        background-position: calc(100% + 22px) calc(100% + 42px);
    }
    .hero_content .btn.cusbtn {
        font-size: 18px;
        min-width: unset;
    }
}