
html,body{
    overflow-x: hidden;
}
body {
    font-family: 'Work Sans', sans-serif;
    color: #18181B;
    font-style: normal;
    font-display: swap;
}

a {
    color: #18181b;
}

a:hover {
    color: #18181b;
    text-decoration: none;
}
ol, ul {
    margin: 0;
    padding: 0;
}
ol li, ul li {
    list-style: none;
}
/*Page Loader*/ 
/*.preloader-main {
    position: fixed;
    background-image: linear-gradient(to right, #000 , #31313d);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 99999;
    overflow: hidden;
}
.loader_center{
    position: absolute;
    top: 50%;left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.loader_center img{
    width: auto;
    height: 80px;
    animation: zoom-in-zoom-out 2s ease-out infinite;
}
.loader_center .letter {
    animation-name: loadingF;
    animation-duration: 1.6s;
    animation-iteration-count: infinite;
    animation-direction: linear;

}
.letter-holder{
    padding: 16px;
}
.letter {
    float: left;
    font-size: 18px;
    background: #F64240;
    background: -webkit-linear-gradient(to right, #F64240 0%, #ffb02c 100%);
    background: -moz-linear-gradient(to right, #F64240 0%, #ffb02c 100%);
    background: linear-gradient(to right, #F64240 0%, #ffb02c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.l-1 {
    animation-delay: 0.48s;
}
.l-2 {
    animation-delay: 0.6s;
}
.l-3 {
    animation-delay: 0.72s;
}
.l-4 {
    animation-delay: 0.84s;
}
.l-5 {
    animation-delay: 0.96s;
}
.l-6 {
    animation-delay: 1.08s;
}
.l-7 {
    animation-delay: 1.2s;
}
.l-8 {
    animation-delay: 1.32s;
}
.l-9 {
    animation-delay: 1.44s;
}
.l-10 {
    animation-delay: 1.56s;
}

@keyframes loadingF {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(1, 1);
    }
    50% {
        transform: scale(1.3, 1.3);
    }
    100% {
        transform: scale(1, 1);
    }
}*/

/*Header CSS*/
#header {
    background: transparent;
    transition: all 0.5s;
    z-index: 997;
    padding: 30px 0;
    top: 0;
    /*box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);*/
}

#header.header-scrolled {
    top: 0;
    padding: 15px 0;
    background-image: linear-gradient(to right, #000 , #31313d);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo img {
    width: auto;
    height: 62px;
}
.header-call{
    margin-left: 42px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 20px;
    min-width: 248px;
    padding: 0.625rem .75rem;
}
.header-call i{
    margin-right: 5px;
}
@media (max-width: 1600px){
    #header{
        padding: 20px 0;
    }
    #header .logo img {
        height: 45px;
    }
    .header-call{
        min-width: 180px;
        font-size: 14px;
        padding: 0.532rem .75rem;
    }
}
@media (max-width: 992px) {
    #header {
        padding: 15px 0;
        top: 0;
        background-image: linear-gradient(to right, #000 , #31313d);
        box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
    }
    #header .logo{
        margin-left: auto;
        position: relative;
        right: 0;
        left: 15px;
    }
    .header-call{
        margin-left: 0;
        min-width: auto;
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 12px;
        padding: 0;
    }
    .header-call span{
        display: none
    }
    .header-call i{
        margin-right: 0;
    }
}

@media (max-width: 575.98px){

    #header .logo img {
        height: 30px;
    }

    .header-call i{
        margin-right: 0;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------
        /* Desktop Navigation */
.nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu > ul {
    display: flex;
}

.nav-menu > ul > li {
    position: relative;
    white-space: nowrap;
    padding: 10px 0 10px 58px;
}

.nav-menu a {
    display: block;
    position: relative;
    color: #ffffff;
    transition: 0.3s;
    font-size: 20px;
    font-weight: 500;
    padding: 0 3px;
}

.nav-menu > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    border-radius: 10px;
    bottom: -20px;
    left: 0;
    background-color: #ffffff;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .active > a:before {
    visibility: visible;
    width: 100%;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
    color: #ffffff;
    text-decoration: none;
}

.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 26px;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}

.nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #062b5b;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
    color: #106eea;
}

.nav-menu .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.nav-menu .drop-down .drop-down > a {
    padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
    content: "\eaa0";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
}


@media (max-width: 1600px){
    .nav-menu a{
        font-size: 14px;
    }
    .nav-menu > ul > li > a:before{
        height: 3px;
        bottom: -15px;
    }
    .nav-menu > ul > li {
        padding: 10px 0 10px 38px;
    }
}
@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }
    .nav-menu .drop-down .drop-down:hover > ul {
        left: -100%;
    }
    .nav-menu .drop-down .drop-down > a:after {
        content: "\ea9d";
    }
}

/* Mobile Navigation */
.mobile-nav-toggle {
    position: fixed;
    left: 15px;
    top: 27px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
    padding: 0;
}

.mobile-nav-toggle i {
    background: #F64240;
    background: -webkit-linear-gradient(to right, #F64240 0%, #ffb02c 100%);
    background: -moz-linear-gradient(to right, #F64240 0%, #ffb02c 100%);
    background: linear-gradient(to right, #F64240 0%, #ffb02c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
@media (max-width: 575.98px){
    .mobile-nav-toggle {
        top: 18px;
    }
}
.mobile-nav {
    position: fixed;
    top: 60px;
    right: 15px;
    bottom: auto;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: #222222;
    padding: 10px 20px;
    font-weight: 500;
    outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
    background: #F64240;
    background: -webkit-linear-gradient(to right, #F64240 0%, #ffb02c 100%);
    background: -moz-linear-gradient(to right, #F64240 0%, #ffb02c 100%);
    background: linear-gradient(to right, #F64240 0%, #ffb02c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

.mobile-nav .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mobile-nav .active.drop-down > a:after {
    content: "\eaa1";
}

.mobile-nav .drop-down > a {
    padding-right: 35px;
}

.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav .drop-down li {
    padding-left: 20px;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(9, 9, 9, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}



/***************************
    Home page CSS Start
****************************/ 
/*Comon CSS */
@media (min-width: 1200px){
    .container{
        max-width: 100%;
    }

}
@media (min-width: 1600px){
    .container{
        max-width: 1520px;
    }
}
@media (min-width: 1900px){
    .container{
        max-width: 1520px;
    }
}
@media (max-width: 1600px){
    .container {
        max-width: 1140px;
    }
}
.btn.btn-primary{
    background-image: linear-gradient(to right, #f64240 , #ffb02c);
    border: 0;
}
.btn.btn-dark{
    background-color: #18181B;
    border-color: #18181B;
}
.sub-section{
    padding: 50px 0;
}
.sec-title{
    margin-bottom: 50px;
}
.sec-title h3{
    margin-bottom: 0;
    font-size: 60px;
    font-weight: 600;
}

@media (max-width: 1600px){
    .sec-title{
        margin-bottom: 35px;
    }
    .sec-title h3{
        font-size: 30px;
    }
    .sub-section{
        padding: 30px 0;
    }
}
@media (max-width:575.98px) {
    .sub-section{
        padding: 15px 0;
    }
    .sec-title{
        margin-bottom: 25px;
    }
}

/*Main Section Start*/
.main-section{
    background-image: linear-gradient(to right, #000 , #31313d);
    height: 966px;
    position: relative;
    color: #ffffff;
}
.main-section.submain-section{
    height: 400px;
}
.svg-corner{
    position: absolute;
    left: -90px;
    top: -52px;
}
.bottom-shap img,.bottom-shap svg{
    width: 100%;
}
.bottom-shap{
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}
.main-section .container{
    width: 100%;
    margin: 0 auto;
}
.welcome-intro h1{
    font-size: 80px;
    line-height: 115px;
    font-weight: bold;
}
.welcome-intro h1{
    margin-top: 40px;
    margin-bottom: 0
}
.ms-appicon{
    margin-top: 70px;
}
.ms-appicon a{
    display: inline-block;
    margin-right: 30px;
}
.ms-appicon a img{
    width: auto;
    height: 66px;
}
.ms-img-column{
    position: relative;
    top: 150px;
    text-align: left;
    left: -80px;
    z-index: 1;
}
.ms-image{
    width: auto;
    height: 750px;
}
@media (max-width: 1600px){
    .main-section{
        height: 720px;
    }
    .svg-corner{
        left: -68px;
        top: -26px;
    }
    .svg-corner svg{
        width: auto;
        height: 210px;
    }
    .welcome-intro h1{
        font-size: 50px;
        line-height: 75px;
    }
    .ms-img-column{
        top: 120px;
        left: -160px;
    }
    .ms-image{
        height: 650px;
    }
    .ms-appicon{
        margin-top: 50px;
    }
    .ms-appicon a img{
        height: 46px;
    }
    .main-section.submain-section{
        height: 300px;
    }
}
@media (max-width: 1200px){
    .main-section {
        height: 560px;
    }
    .ms-img-column {
        top: 75px;
        left: -70px;
    }
    .ms-image{
        height: 500px;
    }
}
@media (max-width:991.98px) {
    .main-section {
        height: 430px;
    }
    .main-section.submain-section{
        text-align: center;
    }
    .ms-img-column {
        top: 68px;
        left: -50px;
    }
    .ms-image {
        height: 355px;
    }
    .welcome-intro h1{
        font-size: 36px;
        line-height: 50px;
    }
    .ms-appicon{
        margin-top: 30px;
    }
    .ms-appicon a{
        margin-right: 15px;
    }
    .ms-appicon a img{
        height: 36px;
    }
}
@media (max-width:575.98px) {
    .main-section {
        height: auto;
        padding: 90px 0 0;
        min-height: 73vh;
    }
    .main-section.submain-section{
        min-height: auto;
        padding: 0;
    }
    .welcome-intro h1{
        font-size: 30px;
        line-height: 40px;
        text-align: center;
    }
    .ms-appicon{
        text-align: center;
    }
    .ms-appicon a:last-child{
        margin-right: 0;
    }
    .ms-img-column {
        top: 45px;
        left: auto;
    }
    .ms-image{
        height: auto;
        width: 100%;
    }

}
/*Main Section End*/

/*Features Section Start*/
.feature-section{
    background-color: #ffffff;
    position: relative;
    top: -1px;
}
.feature-section a{
    color: #ffffff;
    text-decoration: underline;
    font-weight: 500;
}
.feature-section a:hover{
    color: #ffffff;
}
.feature-column{
    margin: 0 auto;
    max-width: 1350px;
}
.card.feature-card{
    background-color: #18181B;
    color: #ffffff;
    border-radius: 10px;
    border: 0;
    overflow: hidden;
    min-height: 230px;
    margin-bottom: 30px;
    transition: transform .3s;
}
.card.cms-card{
    background-color: #18181B;
    color: #ffffff;
    border-radius: 10px;
    border: 0;
    margin-bottom: 30px;
}

.card.feature-card:hover{
    transform: scale(1.04);
}
.leftBox{
    position: absolute;
    left: -80px;
    top: -4px;
    bottom: 0;
}
.featur_roundbox{
    width: 236px;
    height: 236px;
    background: #31313d;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}
.feature-subbox{
    width: 236px;
    height: 236px;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    left: 46%;top: 50%;
    transform: translate(-50%,-50%);
}
.feature-subbox.clipbox{
    background: linear-gradient(#ffb02c 0%, #f64240 100%);
}
.feature-subbox.groupbox{
    background: linear-gradient(#08b6ff 0%, #5c52f3 100%);
}
.feature-subbox.praybox{
    background: linear-gradient(#9618ff 0%, #418eea 100%);
}
.feature-subbox.sharebox{
    background: linear-gradient(#00ebd5 0%, #0191f2 100%);
}
.feature-subbox img{
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(0, -50%);
}
.feature-body{
    height: 100%;
    padding: 19px 30px;
    padding-left: 185px;
    margin-top: 10px;
}
.feature-title{
    font-weight: 500;
    font-size: 30px;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.feature-text{
    font-size: 18px;
    margin-bottom: 0;
    word-break: break-word;
}
article.dev_readMore{
    transition: height 200ms;
    max-height: 81px;
    overflow: hidden;
}
@media (max-width: 1600px){
    .feature-column{
        max-width: 950px;
    }

    .card.feature-card{
        min-height: 192px;
    }
    .leftBox{
        left: -100px;
    }
    .featur_roundbox,.feature-subbox{
        width: 198px;
        height: 198px;
    }
    .feature-body{
        padding: 13px 15px;
        padding-left: 110px;
        margin-top: 10px;
    }
    .feature-title{
        font-size: 24px;
        margin-bottom: 10px;
    }
    .feature-text{
        font-size: 15px;
    }
    article.dev_readMore{
        max-height: 66px;
    }
    .feature-subbox img{
        width: auto;
        height: 30px;
        left: 65%;
    }
}
@media (max-width:575.98px) {
    .feature-section .sec-title{
        margin-top: 25px;
    }
    .feature-title{
        font-size: 16px;
    }
    .feature-text,.feature-section a{
        font-size: 13px;
    }
    article.dev_readMore{
        max-height: 57px;
    }
    .card.feature-card{
        min-height: 155px;
    }
    .featur_roundbox, .feature-subbox{
        width: 161px;
        height: 161px;
    }
    .feature-body{
        padding: 10px 10px;
        padding-left: 70px;
    }
    .feature-subbox img {
        width: auto;
        height: 24px;
        left: 75%;
    }
    .feature-column .row .col-sm-12:nth-child(2) .feature-subbox img{
        left: 70%;
    }
}
/*Features Section End*/


/*About App Section Start*/
.about_count{
    width: 110px;
    height: 99px;
    display: inline-block;
    font-weight: 600;
    font-size: 50px;
    color: #ffffff;
    text-align: center;
    line-height: 99px; 
}
.about_count.first{
    border-radius: 0px 49.5px 49.5px 49.5px;
    background: linear-gradient(#ffb02c 0%, #f64240 100%);
}
.about_count.second{
    border-radius: 49.5px 0 49.5px 49.5px;
    background: linear-gradient(#08b6ff 0%, #5c52f3 100%);
}
.about_count.third{
    border-radius: 49.5px 49.5px 49.5px 0;
    background: linear-gradient(#00ebd5 0%, #0191f2 100%);
}
.about-title{
    font-weight: 600;
    font-size: 50px;
    color: #18181b;
    margin-bottom: 20px;
    word-break: break-word;
}
.about-text{
    font-weight: normal;
    font-size: 18px;
    color: #7e7e7e;
    margin-bottom: 0;
    word-break: break-word;
}
.about-content{
    width: calc(100% - 160px);
}
.about-ul li{
    margin-bottom: 70px;
}
.about-ul li:last-child{
    margin-bottom: 0;
}
.aboutImg{
    max-width: 100%;
}
@media (max-width: 1600px){
    .about_count{
        width: 80px;
        height: 71px;
        line-height: 71px;
        font-size: 36px;
    }
    .about-content{
        width: calc(100% - 120px);
    }
    .about-title{
        font-size: 30px;
        margin-bottom: 10px;
    }
    .about-text{
        font-size: 13px;
    }
    .about-ul li {
        margin-bottom: 50px;
    }
}
@media (max-width:991.98px) {
    .aboutimg_col{
        text-align: center;
    }
    .aboutImg{
        width: 50%;
        margin: 0 auto;
        margin-top: 30px;
    }
    .about-ul li {
        margin-bottom: 30px;
    }
}
@media (max-width:575.98px) {
    .about_count {
        width: 40px;
        height: 31px;
        line-height: 31px;
        font-size: 16px;
    }
    .about-content {
        width: calc(100% - 50px);
    }
    .about-title {
        font-size: 18px;
        margin-bottom: 5px;
    }
    .aboutImg{
        width: 100%;
        margin-top: 15px;
    }
    .about-ul li {
        margin-bottom: 20px;
    }
}
/*About App Section End*/

/*Screenshots Section Start*/
.screenshot .swiper-slide{
    width: 365px;
}
.screenshot .swiper-slide img{
    width: auto;
    height: 790px;
}
@media (max-width: 1600px){
    .screenshot .swiper-slide{
        width: 265px;
    }
    .screenshot .swiper-slide img{
        height: 490px;
    }
}
@media (max-width:575.98px) {
    .screenshot .swiper-slide {
        width: 220px;
    }
}

/*Screenshots Section End*/

/*Contact Section Start*/
.contact-section{
    margin-top: -80px;
}
.contact-container{
    background-image: url('../images/contact.png');
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    max-width: 1364px;
    margin: 0 auto;
}
.contact-row{
    margin: 0 auto;
    max-width: 800px;
}
.contact-form input.form-control{
    height: calc(2em + 1rem + 4px);
    font-size: 20px;
    padding: 0.375rem 30px;
}
.contact-form .form-group{
    margin-bottom: 20px;
}
.contact-form textarea.form-control{
    padding: 0.375rem 30px;
}
.contact-form .form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #18181B;
}
.contact-form .form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #18181B;
}
.contact-form .form-control::-ms-input-placeholder { /* Microsoft Edge */
    color: #18181B;
}
.contact-form .btn-dark{
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.875rem 0.75rem;
    border-radius: 5px;
    margin-top: 60px;
}
@media (max-width: 1600px){
    .contact-section {
        margin-top: -40px;
    }
    .contact-row{
        max-width: 570px;
    }
    .contact-form input.form-control {
        height: calc(2em + .75rem + 2px);
        font-size: 14px;
        padding: 0.375rem .75rem;
    }
    .contact-form textarea.form-control{
        padding: 0.375rem .75rem;
    }
    .contact-form .btn-dark{
        font-size: 14px;
        padding: .594rem 0.75rem;
        margin-top: 40px;
    }
}
/*Contact Section End*/

/*Get App Section Start*/
.getapp-section{
    background-image: url(../images/getapp/getappbg.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 101%;
    color: #ffffff;
    position: relative;
    margin-top: 180px;
    min-height: 840px;
    margin-left: -2px
}
.getappImage{
    position: absolute;
    bottom: 0;
    left: 0;
}
.getapp_content{
    margin-top: 160px;
}
.getapp_content h4{
    font-size: 80px;
    font-weight: 600;
    margin-bottom: 24px;
}
.getapp_content p{
    font-size: 22px;
    margin-bottom: 0;
}
.getapp_content .ms-appicon{
    margin-top: 45px;
}
.getapp_content .ms-appicon a img{
    height: 73px;
}
@media (max-width: 1600px){
    .getapp-section{
        min-height: 627px;
    }
    .getappImage {
        width: 36%;
    }
    .getapp_content h4{
        font-size: 60px;
    }
    .getapp_content p {
        font-size: 16px;
    }
    .getapp_content .ms-appicon a img {
        height: 46px;
    }
}
@media (max-width: 1400px){
    .getappImage {
        width: 43%;
    }
}
@media (max-width: 1200px){
    .getapp-section{
        min-height: 500px;
    }
    .getapp_content h4 {
        font-size: 50px;
    }
    .getapp_content p {
        font-size: 14px;
    }
}
@media (max-width:991.98px) {
    .getapp-section {
        min-height: 364px;
        margin-top: 90px;
    }
    .getapp_content h4 {
        font-size: 36px;
        margin-bottom: 14px;
    }
    .getapp_content p {
        font-size: 13px;
    }
    .getapp_content .ms-appicon {
        margin-top: 20px;
    }
    .getapp_content {
        margin-top: 90px;
    }
}
@media (max-width:575.98px) {
    .getapp-section{
        margin-top: 0;
        display: -ms-flexbox;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding-bottom: 0;
        padding-top: 180px;
    }
    .getappImage {
        position: unset;
        width: 50%;
        bottom: 0;
        padding: 15px;
        padding-left: 0;
        padding-bottom: 0;
        -ms-flex-order: 2;
        order: 2;
    }
    .getapp-section .container{
        -ms-flex-order: 1;
        order: 1;
    }
    .getapp_content{
        margin-top: 0;
    }
    .getapp_content h4{
        font-size: 30px;
        margin-bottom: 10px;

    }
    .getapp_content p {
        font-size: 12px;
    }
    .getapp_content .ms-appicon{
        display: grid;
        position: absolute;
        right: 30px;
        top: 100%;
    }

    .getapp_content .ms-appicon a{
        margin-right: 0;
        margin-bottom: 15px;
    }
    .getapp_content .ms-appicon a img {
        height: 40px;
    }
}
/*Get App Section End*/


/*Footer Section Start*/
.footer-section{
    padding: 40px 0;
}
.contact-column .footer-logo{
    margin-bottom: 20px;
}
.contact-column h5{
    font-weight: 600;
    font-size: 26px;
    margin-bottom: 15px;
}
.btn.btn-social{
    width: 35px;
    height: 35px;
    line-height: 35px;
    padding: 0;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    color: #ffffff;
    border: 0;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.btn.btn-social:hover{
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    color: #ffffff;
}
.btn-social.fb-btn{
    background: #3b5998;
}
.btn-social.insta-btn{
    background: linear-gradient(#ffd600 0%, #ff0100 50%, #d800b9 100%);
}
.btn-social.link-btn{
    background: #007ab9;
}
.footer-link{
    display: inline-block;
}
.footer-link .fl-title{
    font-weight: 600;
    font-size: 26px;
    color: #18181b;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(24, 24, 27, 0.25);
    margin-bottom: 25px;
}
.footer_ul li{
    margin-bottom: 6px;
}
.footer_ul li a{
    font-weight: 500;
    font-size: 20px;
    text-align: left;
    color: #7e7e7e;
}
.ft-lable{
    font-weight: 500;
    font-size: 20px;
    color: #7e7e7e;
    margin-bottom: 6px;
    line-height: 1;
}
.ft-anchure{
    font-weight: normal;
    font-size: 20px;
    color: #7e7e7e;
}
.footer_ul li a:hover,
.ft-anchure:hover{
    color: #18181b;
}
.mb-16px{
    margin-bottom: 16px;
}
.footer-bottom{
    background-color: #31313D;
    padding: 22px 0;
}
.footer-bottom p{
    font-weight: normal;
    font-size: 14px;
    color: #fff;
}
@media (max-width: 1600px){
    .footer-section{
        padding: 30px 0;
    }
    .contact-column .footer-logo img{
        height: 115px;
        width: auto;
        margin-bottom: 15px;
    }
    .contact-column h5{
        font-size: 15px;
        margin-bottom: 10px;
    }
    .btn-social{
        width: 25px;
        height: 25px;
        line-height: 25px;
        font-size: 12px;
        margin-right: 6px;
    }
    .footer-link .fl-title{
        font-size: 15px;
        padding-bottom: 20px;
        margin-bottom: 15px
    }
    .footer_ul li {
        margin-bottom: 0;
    }
    .footer_ul li a{
        font-size: 13px;
    }
    .ft-lable,.ft-anchure{
        font-size: 14px;
    }
    .mb-16px{
        margin-bottom: 10px;
    }
    .footer-bottom{
        padding: 12px 0;
    }
    .footer-bottom p{
        font-size: 12px;
    }
}
@media (max-width:575.98px) {
    .footer-section{
        padding: 20px 0;
    }
    .footer-section{
        text-align: center;
    }
    .footer-section .text-left,
    .footer-section .text-right{
        text-align: center !important;
    }
    .footer-section .col-sm-4{
        margin-bottom: 20px;
    }
    .footer-section .col-sm-4:last-child{
        margin-bottom: 0;
    }
    .footer-link .fl-title{
        padding-bottom: 10px;
        margin-bottom: 05px;
    }
}
/*Footer Section End*/


.cms-section{
    padding: 70px 0;
    background-color: #222228;
}
/***************************
    Home page CSS End
****************************/ 

img.lazy{
    display: block;
}
.error {
    color:red;
}