


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url('style.css');
body {
    color: #444444;
}

a {
    color: #70be44;
}

    a:hover {
        color: #34e5a6;
        text-decoration: none;
    }

.displayblock {
    display: block;
    clear: both;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
/*#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #70be44;
        border-top-color: #d2f9eb;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        -webkit-animation: animate-preloader 1s linear infinite;
        animation: animate-preloader 1s linear infinite;
    }

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.loader-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
}

#loader-center, #loader-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
}

#loader-center {
    transform: scale(0.8);
    transform-origin: center center;
}

#loader-ring {
    animation: rotate-loader 4s linear infinite;
    transform-origin: center center;
}

@media (max-width: 480px) {
    .loader-wrapper {
        width: 100px;
        height: 100px;
    }

    #loader-center, #loader-ring {
        width: 100px;
        height: 100px;
    }

    #loader-center {
        transform: scale(0.8);
    }
}

@keyframes rotate-loader {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

#loading-text {
    font-size: 24px;
    font-family: "Arial", sans-serif;
    font-weight: bold;
    color: #a5d0f0;
    margin-top: 20px;
    animation: fade-in 1s ease-in-out infinite alternate;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
}

    .back-to-top i {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        width: 40px;
        height: 40px;
        border-radius: 50px;
        background: #FFF;
        color: #000;
        transition: all 0.4s;
    }

        .back-to-top i:hover {
            background: #2be4a2;
            color: #fff;
        }

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Banner Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    position: relative;
    padding: 50px 0 0 0;
}
/* #hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
} */

@media (max-width: 991px) {
    #hero {
        padding-top: 40px;
    }
        /* #hero .animated {
    -webkit-animation: none;
    animation: none;
  } */
        #hero .hero-img {
            text-align: center;
        }
}

@-webkit-keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

.hero-waves {
    display: block;
    width: 100%;
    height: 60px;
    z-index: 5;
    position: relative;
    transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    display: block;
    width: 100%;
    height: 60px;
    z-index: 5;
    position: relative;
    transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
}

.wave1 use {
    -webkit-animation: move-forever1 10s linear infinite;
    animation: move-forever1 10s linear infinite;
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
}

.wave2 use {
    -webkit-animation: move-forever2 8s linear infinite;
    animation: move-forever2 8s linear infinite;
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
}

.wave3 use {
    -webkit-animation: move-forever3 6s linear infinite;
    animation: move-forever3 6s linear infinite;
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
    0% {
        transform: translate(85px, 0%);
    }

    100% {
        transform: translate(-90px, 0%);
    }
}

@keyframes move-forever1 {
    0% {
        transform: translate(85px, 0%);
    }

    100% {
        transform: translate(-90px, 0%);
    }
}

@-webkit-keyframes move-forever2 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

@keyframes move-forever2 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

@-webkit-keyframes move-forever3 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

@keyframes move-forever3 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

/*--------------------------------------------------------------
# Stepper 
--------------------------------------------------------------*/
.progress-stepper {
    margin: 20px auto 0;
    max-width: 800px;
}

.stepwizard-step p {
    margin: 0px;
    position: relative;
    padding-top: 0;
    height: 70px;
}

.stepwizard-row {
    display: table-row;
}

.stepwizard {
    display: table;
    width: 100%;
    position: relative;
}

    .stepwizard .btn.disabled, .stepwizard .btn[disabled], .stepwizard fieldset[disabled] .btn {
        opacity: 1 !important;
        color: #bbb;
    }

.stepwizard-step {
    display: table-cell;
    text-align: right;
    position: relative;
}

    .stepwizard-step.step1 {
        text-align: left;
        width: 40px;
    }

        .stepwizard-step.step1 p {
            left: 0;
        }

    .stepwizard-step p span {
        position: absolute;
        right: -110px;
        width: 250px;
        text-align: center;
        color: #70be44;
        font-weight: 700;
        font-size: 15px;
        text-transform: capitalize;
    }

    .stepwizard-step.step1 p span {
        left: -110px;
    }

    .stepwizard-step:before {
        top: 17px;
        bottom: 0;
        position: absolute;
        content: "";
        height: 7px;
        background-color: #ccc;
        z-index: 0;
        width: 100%;
        right: 0;
    }

.btn-circle {
    width: 40px;
    height: 40px;
    text-align: center;
    padding: 3px 0;
    font-size: 22px;
    line-height: 1.428571429;
    border-radius: 50px;
    border: 1px solid #9d9fa2;
    color: #FFF;
    background: #9d9fa2;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.active_step.stepwizard-step:before {
    background-color: #70be44;
}

.btn-success {
    color: #fff;
    background-color: #70be44;
    border-color: #70be44;
}

@media (max-width: 1024px) {
    .stepwizard-step p span {
        right: -50px;
        width: 140px;
        font-weight: 500;
        font-size: 12px;
        margin-top: 10px;
    }

    .stepwizard-step.step1 p span {
        left: -20px;
        width: 90px;
    }
}

@media (max-width: 640px) {
    .stepwizard-step p span {
        width: 110px;
    }

    .stepwizard-step.step1 p span {
        left: 0px;
        text-align: left;
        width: 60px;
    }

    .stepwizard-step.step4 p span {
        right: 0px;
        text-align: right;
        width: 60px;
    }
}

@media (max-width: 480px) {
    .stepwizard-step p {
        display: none;
    }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 40px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f5f5ff;
}

.section-title {
    margin-bottom: 1rem;
    padding: 0;
}

    .section-title h2 {
        margin: 0;
        font-size: 27px;
        font-weight: 600;
        /*text-transform: capitalize;*/
        color: #5578ff;
    }

        .section-title h2::after {
            content: "";
            width: 120px;
            height: 1px;
            display: block;
            background: #70be44;
            margin: 5px 0;
        }

    .section-title.text-center h2::after {
        margin-left: auto;
        margin-right: auto;
    }

    .section-title p {
        font-size: 14px;
        font-weight: 500;
        margin: 0 0 5px 0;
        letter-spacing: 2px;
        color: #aaaaaa;
    }

    .section-title h4 {
        margin: 0;
        font-size: 17px;
        font-weight: 600;
        /*text-transform: capitalize;*/
        color: #9d9fa2;
    }

@media (max-width: 1024px) {
    .section-title h1 {
        font-size: 25px;
    }

    .section-title h2 {
        font-size: 20px;
    }
}

@media (max-width: 566px) {
    .section-title h1 {
        font-size: 20px;
    }

    .section-title h2 {
        font-size: 16px;
    }
}

/*--------------------------------------------------------------
# Selection Category
--------------------------------------------------------------*/
.category-select .icon-box {
    display: flex;
    align-items: center;
    padding: 10px 0px;
    margin-top: 10px;
    transition: ease-in-out 0.3s;
}

.category-select .form-check-input {
    width: 100%;
    height: 100%;
    position: absolute;
    border: 0;
    left: 0;
    top: 0;
    margin: 0;
    opacity: .01;
    z-index: 1;
}

.category-select .form-group {
    padding: 0;
    position: relative;
    border: 10px solid #f5f5ff;
    background-color: #f5f5ff;
    z-index: 0;
    box-shadow: 3px 3px 5px #cacaca;
    border-radius: 10px;
}

.img-circle {
    border-radius: 10px;
}

.category-select .form-check-input:checked + .form-group {
    background-color: #70be44;
    border-color: #70be44;
}

.sub-category-card .cateroriy.active {
    background-color: #70be44;
    color:#fff;
}
.category-select .changecategory .active .form-group.icon-box.active {
    background-color: #70be44;
    color: #fff;
}
.category-select .icon-box.active {
    background-color: #70be44;
    color: #fff;
}

.category-select .icon-box i {
    font-size: 32px;
    padding-right: 10px;
    line-height: 1;
}

.category-select .icon-box h3 {
    font-weight: 700;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-size: 16px;
    text-transform: uppercase;
}

    .category-select .icon-box h3 a {
        color: #010483;
        transition: ease-in-out 0.3s;
    }

        .category-select .icon-box h3 a:hover {
            color: #01036f;
        }

.category-select .icon-box:hover {
    background: #ebebff;
}

.category-select .btn-wrap {
    margin-top: 20px;
    padding: 20px 0 0;
    text-align: center;
}

.category-select .btn-submit {
    background: #70be44;
    display: inline-block;
    padding: 8px 35px 10px 35px;
    border-radius: 50px;
    color: #fff;
    transition: none;
    font-size: 14px;
    font-weight: 400;
    font-weight: 600;
    transition: 0.3s;
}

    .category-select .btn-submit:hover {
        background: #149f6e;
    }

@media (max-width: 991px) {
    .category-select .form-group {
        border: 0;
    }

        .category-select .form-group img {
            max-width: 150px;
            display: inline-block;
            vertical-align: middle;
            border-top-left-radius: 10px;
            border-bottom-left-radius: 10px;
            border-top-right-radius: 0;
            border-bottom-right-radius: 0;
        }

    .category-select .icon-box {
        display: flex;
        margin-top: 20px;
        float: right;
        width: calc(100% - 160px);
        background-color: transparent;
    }

        .category-select .icon-box i {
            padding: 5px;
            text-align: center;
        }

        .category-select .icon-box h3 {
            order: 1;
            margin-top: 15px;
            padding: 7px 10px;
            display: flex;
            word-wrap: break-word;
            width: calc(100% - 160px)
        }

        .category-select .icon-box img {
            order: 2;
            margin-left: calc(100% - 320px);
            margin-top: 12px;
        }
}

@media (max-width: 768px) {
    .img-fluid {
        width: 100%;
        display: block;
    }

    .category-select .form-group img {
        max-width: 100px;
    }

    .category-select .icon-box {
        margin-top: 10px;
        width: calc(100% - 110px);
    }

        .category-select .icon-box h3 {
            order: 1;
            margin-top: 15px;
            padding: 7px 10px;
            display: flex;
            word-wrap: break-word;
            width: calc(100% - 110px)
        }

        .category-select .icon-box img {
            order: 2;
            margin-left: calc(100% - 240px);
        }
}

@media (max-width: 450px) {
    .img-fluid {
        width: 100%;
        display: block;
    }

    .category-select .form-group img {
        max-width: 100px;
    }

    .category-select .icon-box {
        margin-top: 10px;
        width: calc(100% - 110px);
    }

        .category-select .icon-box h3 {
            order: 1;
            margin-top: 15px;
            padding: 7px 10px;
            display: flex;
            word-wrap: break-word;
            width: calc(100% - 90px)
        }

        .category-select .icon-box img {
            order: 2;
            margin-left: calc(100% - 200px);
        }
}

@media (max-width: 375px) {
    .img-fluid {
        width: 100%;
        display: block;
    }

    .category-select .form-group img {
        max-width: 100px;
    }

    .category-select .icon-box {
        margin-top: 10px;
        width: calc(100% - 100px);
    }

        .category-select .icon-box h3 {
            order: 1;
            margin-top: 15px;
            padding: 7px 10px;
            display: flex;
            padding: 0;
            margin: 10px;
            word-wrap: break-word;
            width: calc(100% - 80px)
        }

        .category-select .icon-box img {
            order: 2;
            margin-left: calc(100% - 180px);
        }
}

@media (max-width: 320px) {
    .img-fluid {
        width: 100%;
        display: block;
    }

    .category-select .form-group img {
        max-width: 70px;
    }

    .category-select .icon-box {
        margin-top: 0px;
        width: calc(100% - 70px);
    }

        .category-select .icon-box h3 {
            order: 1;
            display: flex;
            word-wrap: break-word;
            width: 100%;
            font-size: 12px;
            padding: 0;
            margin: 10px;
            width: calc(100% - 70px)
        }

        .category-select .icon-box img {
            display: flex;
            order: 2;
            margin-left: calc(100% - 140px);
        }
}

@media (max-width: 280px) {
    .img-fluid {
        width: 100%;
        display: block;
    }

    .category-select .form-group img {
        max-width: 70px;
    }

    .category-select .icon-box {
        margin-top: 0px;
        width: calc(100% - 70px);
    }

        .category-select .icon-box h3 {
            order: 1;
            display: flex;
            word-wrap: break-word;
            width: 100%;
            font-size: 12px;
            padding: 0;
            margin: 10px;
        }

        .category-select .icon-box img {
            display: none;
            order: 2;
        }
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
    width: 100%;
    background: #fff;
}

    .contact .info i {
        font-size: 20px;
        color: #3f43fd;
        float: left;
        width: 44px;
        height: 44px;
        background: #f0f0ff;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50px;
        transition: all 0.3s ease-in-out;
    }

    .contact .info h4 {
        padding: 0 0 0 60px;
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 5px;
        color: #010483;
    }

    .contact .info p {
        padding: 0 0 0 60px;
        margin-bottom: 0;
        font-size: 14px;
        color: #0205a1;
    }

.map-wrap {
    padding: 10px;
    border-radius: 5px;
    background-color: #f5f5f5;
    margin-bottom: 15px;
}

    .map-wrap iframe {
        border-radius: 5px;
        border: 0;
    }

.contact .info .email, .contact .info .phone {
    margin-top: 40px;
}

    .contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
        background: #70be44;
        color: #fff;
    }

.contact .php-email-form {
    width: 100%;
    background: #fff;
}

    /*.contact .php-email-form .form-group {
        padding-bottom: 8px;
    }*/

    .contact .php-email-form .validate {
        display: none;
        color: red;
        margin: 0 0 15px 0;
        font-weight: 400;
        font-size: 13px;
    }

    .contact .php-email-form .error-message {
        display: none;
        color: #fff;
        background: #ed3c0d;
        text-align: left;
        padding: 15px;
        font-weight: 600;
    }

        .contact .php-email-form .error-message br + br {
            margin-top: 25px;
        }

    .contact .php-email-form .sent-message {
        display: none;
        color: #fff;
        background: #18d26e;
        text-align: center;
        padding: 15px;
        font-weight: 600;
    }

    .contact .php-email-form .loading {
        display: none;
        background: #fff;
        text-align: center;
        padding: 15px;
    }

        .contact .php-email-form .loading:before {
            content: "";
            display: inline-block;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            margin: 0 10px -6px 0;
            border: 3px solid #18d26e;
            border-top-color: #eee;
            -webkit-animation: animate-loading 1s linear infinite;
            animation: animate-loading 1s linear infinite;
        }

    .contact .php-email-form input, .contact .php-email-form textarea {
        border-radius: 0;
        box-shadow: none;
        font-size: 14px;
    }

    .contact .php-email-form input {
        height: 44px;
    }

    .contact .php-email-form textarea {
        padding: 10px 12px;
        resize: none;
    }

.image_icon {
    position: relative;
    border: 1px solid #ccc;
    background-color: #fbfbfb;
    display: table;
    width: 100%;
}

    .image_icon .input-group {
        margin-top: -1px;
    }

.input-group-btn {
    border-bottom: 1px solid #ccc;
}

.btn-file {
    position: relative;
    overflow: hidden;
}

    .btn-file input[type=file] {
        position: absolute;
        top: 0;
        right: 0;
        min-width: 100%;
        min-height: 100%;
        font-size: 100px;
        text-align: right;
        /*filter: alpha(opacity=0);*/
        opacity: 0;
        outline: none;
        background: white;
        cursor: inherit;
        display: block;
        border-right: 0;
        border-top: 0;
    }

.image_view {
    height: 300px;
    display: table;
    width: 100%;
    text-align: center;
    vertical-align: middle;
}

    .image_view i {
        line-height: 300px;
        display: table-cell;
        font-size: 150px;
        vertical-align: middle;
    }

    .image_view img {
        height: 300px;
        /*display: table-cell;*/ /*un comment css if re use old code*/
        vertical-align: middle;
        padding: 5px; /*remove this css if re use old code*/
    }

    .image_view .img-upload.imgadd + i {
        display: none;
    }

.img-upload {
    max-width: 100%;
}

.contact .php-email-form input[type="checkbox"] {
    height: inherit;
}

@-webkit-keyframes ripple {
    100% {
        opacity: 0;
        -webkit-transform: scale(2.5);
        transform: scale(2.5);
    }
}

@keyframes ripple {
    100% {
        opacity: 0;
        -webkit-transform: scale(2.5);
        transform: scale(2.5);
    }
}

.contact .php-email-form .btn-submit {
    background: #70be44;
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
}

.contact .php-email-form .btn-dark {
    background: #343a40;
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
}

.contact .php-email-form .btn-submit:hover {
    background: #218838;
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}




/*--------------------------------------------------------------
# Thank you
--------------------------------------------------------------*/
.thank-you {
    padding: 30px 30px 10px;
    background-color: #f9f9f9;
}

    .thank-you h1 {
        padding-bottom: 30px;
    }

    .thank-you .icofont-simple-smile {
        font-size: 7rem;
        color: #4233ff;
    }

    .thank-you .sub-title {
        font-size: 17px;
        padding-top: 15px;
        margin-bottom: 30px;
    }

    .thank-you .alert {
        font-size: 17px;
        margin-top: 30px;
    }

.thankyou_page .action_btn {
    clear: both;
    padding-top: 30px;
}

@media (max-width: 1024px) {
    .thank-you {
        padding: 20px 15px 0;
    }
}

@media (max-width: 767px) {
    .thank-you {
        padding: 20px 15px 0;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #98b9dc;
    padding: 0 0 30px 0;
    color: #fff;
    font-size: 14px;
}

    #footer .copyright {
        text-align: center;
        padding-top: 10px;
    }

    #footer .credits {
        padding-top: 10px;
        text-align: center;
        font-size: 13px;
        color: #fff;
    }

@media (max-width: 575px) {
    #footer .footer-top .footer-info {
        margin: -20px 0 30px 0;
    }
}



/*--------------------------------------------------------------
# Social Color Version CSS
--------------------------------------------------------------
WhatsApp - #159346*/

.whatsapp .btn-success, .whatsapp .category-select .form-check-input:checked + .form-group {
    border-color: #159346;
}

.whatsapp .active_step.stepwizard-step:before, .whatsapp .btn-success, .whatsapp .section-title h2::after, .whatsapp .category-select .btn-submit, .whatsapp .category-select .form-check-input:checked + .form-group, .whatsapp #footer, .whatsapp .contact .php-email-form .btn-submit {
    background-color: #159346;
}
.whatsapp .active_step.stepwizard-step:before, .whatsapp .btn-success, .whatsapp .section-title h2::after, .whatsapp .category-select .btn-submit, .whatsapp .category-select .icon-box.active {
    background-color: #159346;
    color: #fff;
}
.whatsapp .sub-category-card .cateroriy.active {
    background-color: #159346;
    color: #fff;
}

.whatsapp .stepwizard-step p span, .whatsapp .section-title h2, .whatsapp .thank-you .icofont-simple-smile {
    color: #159346;
}
.whatsapp .category-select .form-check-input:checked + .form-group .icon-box h3 {
    background-color: #159346;
    border-color: #159346;
}

.whatsapp .category-select .form-check-input:checked + .form-group .icon-box h3 {
    background-color: #159346;
    border-color: #159346;
}

/*--------------------------------------------------------------
Facebook - #195aa9*/

.facebook .btn-success, .facebook .category-select .form-check-input:checked + .form-group {
    border-color: #195aa9;
}

.facebook .active_step.stepwizard-step:before, .facebook .btn-success, .facebook .section-title h2::after, .facebook .category-select .btn-submit, .facebook .category-select .form-check-input:checked + .form-group, .facebook #footer, .facebook .contact .php-email-form .btn-submit {
    background-color: #195aa9;
}
.facebook .active_step.stepwizard-step:before, .facebook .btn-success, .facebook .section-title h2::after, .facebook .category-select .btn-submit, .facebook .category-select .icon-box.active {
    background-color: #195aa9;
    color: #fff;
}
.facebook .sub-category-card .cateroriy.active {
    background-color: #195aa9;
    color: #fff;
}


    .facebook .category-select .form-check-input:checked + .form-group .icon-box h3 {
        background-color: #195aa9;
        border-color: #195aa9;
    }

.facebook .stepwizard-step p span, .facebook .section-title h2, .facebook .thank-you .icofont-simple-smile {
    color: #195aa9;
}

/*--------------------------------------------------------------
Twitter - #349fd8*/

.twitter .btn-success, .twitter .category-select .form-check-input:checked + .form-group {
    border-color: #349fd8;
}

.twitter .active_step.stepwizard-step:before, .twitter .btn-success, .twitter .section-title h2::after, .twitter .category-select .btn-submit, .twitter .category-select .form-check-input:checked + .form-group, .twitter #footer, .twitter .contact .php-email-form .btn-submit {
    background-color: #349fd8;
    color:#fff;
}
.twitter .active_step.stepwizard-step:before, .twitter .btn-success, .twitter .section-title h2::after, .twitter .category-select .btn-submit, .twitter .category-select .icon-box.active {
    background-color: #349fd8;
    color: #fff;
}
.twitter .sub-category-card .cateroriy.active {
    background-color: #349fd8;
    color: #fff;
}

.twitter .stepwizard-step p span, .twitter .section-title h2, .twitter .thank-you .icofont-simple-smile {
    color: #349fd8;
}

.twitter .category-select .form-check-input:checked + .form-group .icon-box h3 {
    background-color: #349fd8;
    border-color: #349fd8;
}



/*--------------------------------------------------------------
Instagram - #904b9d*/

.instagram .btn-success, .instagram .category-select .form-check-input:checked + .form-group {
    border-color: #904b9d;
}

.instagram .active_step.stepwizard-step:before, .instagram .btn-success, .instagram .section-title h2::after, .instagram .category-select .btn-submit, .instagram .category-select .form-check-input:checked + .form-group, .instagram #footer, .instagram .contact .php-email-form .btn-submit {
    background-color: #904b9d;
}
.instagram .active_step.stepwizard-step:before, .instagram .btn-success, .instagram .section-title h2::after, .instagram .category-select .icon-box.active {
    background-color: #904b9d;
    color: #fff;
}
.instagram .sub-category-card .cateroriy.active {
    background-color: #904b9d;
    color: #fff;
}
.instagram .stepwizard-step p span, .instagram .section-title h2, .instagram .thank-you .icofont-simple-smile {
    color: #904b9d;
}

.instagram .category-select .form-check-input:checked + .form-group .icon-box h3 {
    background-color: #904b9d;
    border-color: #904b9d;
}

/*--------------------------------------------------------------
TickTok - #505052*/

.ticktok .btn-success, .ticktok .category-select .form-check-input:checked + .form-group {
    border-color: #505052;
}

.ticktok .active_step.stepwizard-step:before, .ticktok .btn-success, .ticktok .section-title h2::after, .ticktok .category-select .btn-submit, .ticktok .category-select .form-check-input:checked + .form-group, .ticktok #footer, .ticktok .contact .php-email-form .btn-submit {
    background-color: #505052;
}
.ticktok .active_step.stepwizard-step:before, .ticktok .btn-success, .ticktok .section-title h2::after, .ticktok .category-select .icon-box.active {
    background-color: #505052;
    color: #fff;
}
.ticktok .sub-category-card .cateroriy.active {
    background-color: #505052;
    color: #fff;
}

.ticktok .stepwizard-step p span, .ticktok .section-title h2, .ticktok .thank-you .icofont-simple-smile {
    color: #505052;
}

.ticktok .category-select .form-check-input:checked + .form-group .icon-box h3 {
    background-color: #505052;
    border-color: #505052;
}

.whatsapp .contact .php-email-form .btn-submit.btn-dark, .facebook .contact .php-email-form .btn-submit.btn-dark, .twitter .contact .php-email-form .btn-submit.btn-dark, .instagram .contact .php-email-form .btn-submit.btn-dark, .ticktok .contact .php-email-form .btn-submit.btn-dark {
    background: #343a40;
}




body.appversion .mobileview {
    display: block;
}

@media(max-width : 375px) {
    body.appversion .category-select .icon-box h3 {
        margin-top: 14px !important;
    }
}

.header-fluid {
    max-width: 100%;
    height: auto;
    display: block;
}

.stepwizard-step p {
    display: none !important;
}

.location-header-space {
    margin-bottom: 1rem;
}

.stepwizard-step p {
    height: 62px;
}

.help-block {
    color: red;
}

.tooltip-label {
    background-color: #6C758B !important;
    color: #fff !important;
    padding: 4px !important;
    border-radius: 5px !important;
    font-size: 12px !important;
    margin-top: -75px !important;
    white-space: pre-wrap;
}

.location-header-space {
    margin-bottom: 1rem;
}

@media (max-width : 426px) {

    body.appversion .mobileview {
        display: block; /*change if dont want to show header image.*/
    }

    body.appversion .header-fluid {
        max-width: 100%;
        height: auto;
        display: block;
    }

    body.appversion .location-btn {
        margin-top: 5px;
    }

    body.appversion #hero {
        padding-top: 0px;
    }

    body.appversion #main section {
        padding: 5px 0;
    }

    body.appversion .stepwizard-step p span {
        display: block;
        position: absolute;
        right: -10px !important;
        width: 40px;
        text-align: center;
        color: red;
        font-weight: 700;
        font-size: 10px;
        text-transform: uppercase !important;
        line-height: 10px;
    }


    body.appversion .stepwizard-step p {
        display: none;
        height: 40px;
    }

    /*body.appversion .img-fluid {
        display: none;
    }*/

    body.appversion .category-select .form-group span {
        height: 40px;
        max-width: 150px;
        display: inline-block;
        vertical-align: middle;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        border-style: none;
    }

    body.appversion .category-select .icon-box img {
        /*order: 1;
        margin-left: 0px;
        margin-top: 5px;*/
        order: 2;
        margin-left: calc(100% - 200px);
    }

    body.appversion .category-select .icon-box {
       /* padding: 0px 0px 0px 10px;
        margin-top: 0px;
        width: 100%;*/
        margin-top: 10px;
        width: calc(100% - 110px);
    }

        /*body.appversion .category-select .icon-box h3 {
            margin-top: 0px;
            padding: 0px;
        }*/

    /*body.appversion .category-select .icon-box h3 {
            background-color: #70be44;
            border-color: #70be44;
        }*/

    body.appversion .category-select .form-check-input:checked + .form-group .icon-box h3 {
        background-color: #70be44;
        border-color: #70be44;
    }
    body.appversion .category-select .icon-box.active {
        background-color: #70be44;
        color: #fff;
    }

    #footer {
        display: none;
    }

    body.appversion .btn-circle {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }

    body.appversion {
        font-size: 0.85rem;
    }

        body.appversion .progress-stepper {
            margin: 5px auto 0;
        }

        body.appversion .section-title {
            margin-bottom: 1rem;
            padding: 0;
        }

        body.appversion .location-header-space {
            margin-bottom: 1rem;
        }

        body.appversion .map-wrap {
            padding: 0;
            border-radius: 0;
            margin-bottom: 1rem;
        }

        body.appversion [data-aos=fade-up] {
            transform: translate3d(0,1px,0);
        }

        body.appversion [data-aos^=fade][data-aos^=fade] {
            opacity: 1;
            transition-property: opacity,transform;
        }

        body.appversion .stepwizard-step.step1 {
            width: 24px;
        }

        body.appversion .ByMap img[src*="iconmap"] {
            width: 50px;
            height: 50px;
        }

        body.appversion .mediaform .form-group {
            padding-bottom: 0px;
            margin-bottom: 0.5rem;
        }

        body.appversion #ConfirmText2 {
            font-size: 0.90rem;
        }

        body.appversion #subscribe_l {
            font-size: 0.90rem;
        }

        body.appversion #downloadDoc {
            font-size: 0.90rem;
        }

        body.appversion .contact .form-group {
            margin-bottom: 1rem !important;
        }

        body.appversion .help-block {
            font-size: 0.90rem;
        }

        body.appversion .stepwizard-step {
            font-size: 1.50rem !important;
        }
}
