@import url("https://fonts.googleapis.com/css2?family=Crimson+Text:wght@400;700&display=swap");

@font-face {
    font-family: "Bubble Love Demo";
    src: url('../fonts/Bubble Love Demo.otf');
    font-weight: 500;
}

li.parsley-required, li.parsley-minlength, li.parsley-custom-error-message, li.parsley-type, li.parsley-special, li.parsley-number, li.parsley-uppercase {
    margin: -8px 0 5px 20px;
}

.bg-image {
    background-image: url("../images/background_image.png");
    background-position: center;
    filter: blur(2px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.red-theme {
    --primary-color: #dc3545;
    --secondary-color: #fff;
    --bg-color: #f8d7da;
    --textbox-color: #fff;
    --panel-color: #842029;
    --title-color: #dc3545;
    --form-body: #f5c6cb;
}

.color-switcher {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-color: #fff;
    padding: 10px;
    border-radius: 5px 0 0 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: transform 0.3s ease-in-out;
}

    .color-switcher .color-option {
        display: block;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        margin-bottom: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease-in-out;
    }

.pink-theme {
    --primary-color: #333;
    --secondary-color: ivory;
    --bg-color: #e84393;
    --textbox-color: ivory;
    --panel-color: #130f40;
    --title-color: #e84393;
    --form-body: aliceblue;
}

.blue-theme {
    --primary-color: #007bff;
    --secondary-color: #fff;
    --bg-color: #e7f0f7;
    --textbox-color: #333;
    --panel-color: #0056b3;
    --title-color: #007bff;
    --form-body: #d6e4f0;
}

.green-theme {
    --primary-color: #28a745;
    --secondary-color: #fff;
    --bg-color: #d4edda;
    --textbox-color: #333;
    --panel-color: #155724;
    --title-color: #28a745;
    --form-body: #c3e6cb;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-primary {
    color: var(--primary-color);
}

.btn {
    background-color: rgb(255, 255, 255);
    border: none;
    color: rgb(0, 0, 0);
    padding: 12px 16px;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

    .btn-primary:hover {
        background-color: var(--secondary-color);
        color: var(--primary-color);
    }
/* ===================================== Basic CSS ==================================== */
* {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    outline: none;
    color: #444;
}

    a:hover {
        color: #444;
    }

ul {
    margin-bottom: 0;
    padding-left: 0;
}

a:hover,
a:focus,
input,
textarea {
    text-decoration: none;
    outline: none;
}

.center {
    text-align: center;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}

.cp {
    cursor: pointer;
}

html, body {
    height: 100%;
    font-family: Source Sans Pro, sans-serif !important;
}

p {
    margin-bottom: 0px;
    width: 100%;
}

.no-padding {
    padding: 0px;
}

.no-margin {
    margin: 0px;
}

.hid {
    display: none;
}

.top-mar {
    margin-top: 15px;
}

.h-100 {
    height: 100%;
}

::placeholder {
    color: #747f8a !important;
    font-size: 13px;
    opacity: 0.5 !important;
}

.container-fluid {
    padding: 0px;
}

h1, h2, h3, h4, h5, h6 {
    color: #545454;
}

body {
    background-color: var(--bg-color) !important;
    color: var(--text-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

.section-title {
    padding: 0px;
    margin: 0px;
}

@media screen and (max-width: 767px) {
    .section-title {
        padding: 5px;
    }
}

.section-title h2 {
    width: 100%;
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 20px;
    color: var(--title-color)
}

.section-title p {
    max-width: 850px;
    text-align: center;
    float: none;
    margin: auto;
    font-size: 0.9rem;
    margin-top: 6px;
    color: var(--title-color)
}

.section-title span {
    float: right;
    font-style: italic;
}

.inner-title {
    padding: 20px;
    padding-left: 0px;
    margin: 0px;
    margin-bottom: 10px;
    padding-bottom: 0px;
    border-bottom: 1px solid #ccccccc4;
    display: block;
    padding-right: 0px;
}

    .inner-title h2 {
        width: 100%;
        text-align: center;
        font-size: 1rem;
        font-weight: 600;
        text-align: left;
        border-bottom: 1px solid #863dd9;
        padding-bottom: 10px;
        margin-bottom: 0px;
        width: 300px;
    }

    .inner-title p {
        width: 100%;
        text-align: center;
    }

    .inner-title .btn {
        float: right;
        margin-top: -38px;
        font-weight: 600;
        font-size: 0.8rem;
    }

.page-nav {
    background-size: 100%;
    padding: 68px;
    text-align: center;
    padding-top: 190px;
    background-color: #eaeaea;
}

    .page-nav ul {
        float: none;
        margin: auto;
    }

@media screen and (max-width: 992px) {
    .page-nav {
        background-size: auto;
    }
}

@media screen and (max-width: 767px) {
    .page-nav {
        padding-top: 200px;
        padding-bottom: 40px;
    }
}

@media screen and (max-width: 356px) {
    .page-nav {
        padding-top: 200px;
        padding-bottom: 40px;
    }
}

.page-nav h2 {
    font-size: 28px;
    width: 100%;
    font-weight: 700;
    color: #444;
}

@media screen and (max-width: 600px) {
    .page-nav h2 {
        font-size: 26px;
    }
}

.page-nav ul li {
    float: left;
    margin-right: 10px;
    margin-top: 10px;
    font-size: 16px;
    font-size: 0.93rem;
    font-weight: 600;
    color: #444;
}

    .page-nav ul li i {
        width: 30px;
        text-align: center;
        color: #444;
    }

    .page-nav ul li a {
        color: #444;
        font-size: 0.93rem;
        font-weight: 600;
    }

.btn-success {
    background-color: var(--bg-color) !important;
    border-color: #dc3545 !important;
}

    .btn-success:hover {
        background-color: var(--bg-color) !important;
        border-color: #dc3545 !important;
    }

    .btn-success:active {
        background-color: var(--bg-color) !important;
        border-color: #dc3545 !important;
    }

    .btn-success:focus {
        background-color: var(--bg-color) !important;
        border-color: #dc3545 !important;
        box-shadow: none !important;
    }

.btn-primary {
    background-color: #101acb;
    border-color: #101acb;
}

    .btn-primary:hover {
        background-color: #101acb !important;
        border-color: #101acb !important;
    }

    .btn-primary:active {
        background-color: #101acb !important;
        border-color: #101acb !important;
    }

    .btn-primary:focus {
        background-color: #101acb !important;
        border-color: #101acb !important;
        box-shadow: none !important;
    }

.btn-outline-primary {
    border-color: #101acb;
    color: #101acb;
}

    .btn-outline-primary:hover {
        background-color: #B2237D !important;
        border-color: #B2237D !important;
    }

    .btn-outline-primary:active {
        background-color: #101acb !important;
        border-color: #101acb !important;
    }

    .btn-outline-primary:focus {
        background-color: #101acb !important;
        border-color: #101acb !important;
        box-shadow: none !important;
    }

.form-control:focus {
    box-shadow: none !important;
    border: 1px solid #CCC;
}

.btn-light {
    background-color: #FFF;
    color: #3F3F3F;
}

.collapse.show {
    display: block !important;
}

.form-control:focus {
    box-shadow: none;
    border: 1px solid #CCC;
}

.form-control {
    background-color: #F8F8F8;
    margin-bottom: 20px;
}

    .form-control:focus {
        background-color: #FFF;
        border-color: #CCC;
    }

.container {
    max-width: 1170px;
}

.login-container {
    max-width: 650px !important;
}

@media screen and (max-width: 575px) {
    .container, .container-skill {
        padding: 10px 15px;
    }
}

/* ===================================== Basic CSS ==================================== */
.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.fw-md {
    font-weight: 600;
}

.fw-sm {
    font-weight: 500;
}

.big-padding {
    padding: 100px;
}

.small-padding {
    padding: 65px;
}

@media screen and (max-width: 940px) {
    .big-padding {
        padding: 30px 10px;
    }
}

.bggray {
    background-color: #F7F5F4 !important;
}

.fw-bold {
    font-weight: 600 !important;
}

.fs-11 {
    font-size: 4rem;
}

.shadow-md {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-xs {
    box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.13);
}

.truncate-2 {
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 42px;
    overflow: hidden;
    line-height: 21px;
}

.truncate-4 {
    display: -webkit-box !important;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    height: 82px;
    overflow: hidden;
    line-height: 21px;
}

.truncate-6 {
    display: -webkit-box !important;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    height: 130px;
    overflow: hidden;
    line-height: 21px;
}

.rtable {
    max-width: 500px;
    float: none;
    margin: auto;
}

    .rtable tr td {
        padding: 5px;
    }

.fs-7 {
    font-size: 0.95rem;
}

.fs-8 {
    font-size: 0.9rem;
}

.sticky {
    position: sticky;
}

.bg-gray {
    background: rgba(217, 217, 217, 0.25);
}

.btn-xs {
    padding: 2px 8px;
    font-size: 0.875rem;
    border-radius: 0.2rem;
}

    .btn-xs i {
        font-size: 16px;
    }

@media screen and (max-width: 767px) {
    .bordernosm {
        border: 0px !important;
    }
}

.h400 {
    height: 400px;
    overflow: auto;
}

.sticky-top-90 {
    position: -webkit-sticky;
    position: sticky;
    top: 85px;
    z-index: 1020;
}

.fs-9 {
    font-size: 0.79rem;
}

.fs-55 {
    font-size: 1.1rem;
}

.mt-25 {
    margin-top: 11px;
}

.width-fit {
    width: fit-content;
}

.text-justify {
    text-align: justify;
}

.max-230 {
    max-width: 230px;
}

.navcol {
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
}

footer .inner {
    background-color: var(--bg-color);
    padding: 50px;
    color: #ccc;
    font-size: 0.9rem;
}

@media screen and (max-width: 940px) {
    footer .inner {
        padding: 30px 10px;
    }
}

footer .inner h4 {
    color: #FFF;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 30px;
}

footer .inner .foot-about p {
    margin-bottom: 30px;
}

footer .inner .foot-post .post-row {
    display: flex;
    margin-bottom: 10px;
}

    footer .inner .foot-post .post-row .image img {
        width: 120px;
    }

    footer .inner .foot-post .post-row .detail {
        flex-grow: 1;
        padding-left: 5px;
    }

        footer .inner .foot-post .post-row .detail p {
            font-size: 0.8rem;
            margin-top: -5px;
        }

footer .inner .foot-services ul li {
    padding: 5px;
    font-size: 0.95rem;
}

    footer .inner .foot-services ul li a {
        color: #ccc;
    }

footer .inner .foot-news p {
    margin-bottom: 20px;
}

footer .inner .foot-news .input-group {
    border-radius: 0px;
}

    footer .inner .foot-news .input-group input {
        border-radius: 0px;
    }

    footer .inner .foot-news .input-group .input-group-append {
        border-radius: 0px;
        background-color: #FFF;
    }

footer .inner .foot-news ul li {
    float: left;
    padding: 10px;
}

    footer .inner .foot-news ul li i {
        font-size: 20px;
    }

.footer {
    background: #f9ebff;
    /*position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;*/
}

.fs-14 {
    color: #B2237D !important;
    font-size: 0.875rem !important;
    font-weight: 600;
}

.footer-heading {
    color: #5b03e4;
}

.copy {
    padding: 20px;
    background-color: #000000;
    color: #FFF;
}

    .copy a {
        color: #FFF;
    }

    .copy span {
        float: right;
    }

        .copy span i {
            margin-right: 20px;
        }

@media screen and (max-width: 767px) {
    .mul {
        width: 100%;
    }

    .dfr {
        font-size: 2.5rem;
    }
}

.slide {
    /*padding-top: 56px;*/
}

header {
    z-index: 999;
    position: absolute;
    width: 100%;
}

.testimonial-container {
    background-color: #FFF;
}

.testimonial {
    text-align: center;
    padding: 15px;
}

    .testimonial .pic img {
        max-width: 90px;
        border-radius: 50%;
        background-color: #FFF;
        padding: 2px;
        box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
        margin-bottom: 10px;
    }

    .testimonial .title {
        font-size: 1.5rem;
        margin-top: 3px;
        margin-top: 10px;
    }

#generic_price_table .price-row {
    margin-top: 20px;
}

/*PRICE COLOR CODE START*/
#generic_price_table .generic_content {
    background-color: #fff;
}

    #generic_price_table .generic_content .generic_head_price .generic_head_content .head_bg {
        border-color: #e4e4e4 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #e4e4e4;
    }

    #generic_price_table .generic_content .generic_head_price .generic_head_content .head span {
        color: #525252;
    }

    #generic_price_table .generic_content .generic_head_price .generic_price_tag .price .sign {
        color: #414141;
    }

    #generic_price_table .generic_content .generic_head_price .generic_price_tag .price .currency {
        color: #414141;
    }

    #generic_price_table .generic_content .generic_head_price .generic_price_tag .price .cent {
        color: #414141;
    }

    #generic_price_table .generic_content .generic_head_price .generic_price_tag .month {
        color: #414141;
    }

    #generic_price_table .generic_content .generic_feature_list ul li {
        color: #a7a7a7;
    }

        #generic_price_table .generic_content .generic_feature_list ul li span {
            color: #414141;
        }

        #generic_price_table .generic_content .generic_feature_list ul li:hover {
            background-color: #E4E4E4;
            border-left: 5px solid #ec1f1f;
        }

    #generic_price_table .generic_content .generic_price_btn a {
        border: 1px solid #ec1f1f;
        color: #ec1f1f;
    }

    #generic_price_table .generic_content.active .generic_head_price .generic_head_content .head_bg,
    #generic_price_table .generic_content:hover .generic_head_price .generic_head_content .head_bg {
        border-color: #ec1f1f;
    }

    #generic_price_table .generic_content:hover .generic_head_price .generic_head_content .head span,
    #generic_price_table .generic_content.active .generic_head_price .generic_head_content .head span {
        color: #4a0d8f;
    }

    #generic_price_table .generic_content:hover .generic_price_btn a,
    #generic_price_table .generic_content.active .generic_price_btn a {
        background-color: #ec1f1f;
        color: #fff;
    }

#generic_price_table {
    margin: 50px 0 50px 0;
    font-family: "Raleway", sans-serif;
}

.row .table {
    padding: 28px 0;
}

/*PRICE BODY CODE START*/
#generic_price_table .generic_content {
    overflow: hidden;
    position: relative;
    text-align: center;
}

    #generic_price_table .generic_content .generic_head_price {
        margin: 0 0 20px 0;
    }

        #generic_price_table .generic_content .generic_head_price .generic_head_content {
            margin: 0 0 50px 0;
        }

            #generic_price_table .generic_content .generic_head_price .generic_head_content .head_bg {
                border-style: solid;
                border-width: 7px 1211px 0px 114px;
                position: absolute;
            }

            #generic_price_table .generic_content .generic_head_price .generic_head_content .head {
                padding-top: 40px;
                position: relative;
                z-index: 1;
            }

                #generic_price_table .generic_content .generic_head_price .generic_head_content .head span {
                    font-family: "Raleway", sans-serif;
                    font-size: 28px;
                    font-weight: 400;
                    letter-spacing: 2px;
                    margin: 0;
                    padding: 0;
                    text-transform: uppercase;
                }

        #generic_price_table .generic_content .generic_head_price .generic_price_tag {
            padding: 0 0 20px;
        }

            #generic_price_table .generic_content .generic_head_price .generic_price_tag .price {
                display: block;
            }

                #generic_price_table .generic_content .generic_head_price .generic_price_tag .price .sign {
                    display: inline-block;
                    font-family: "Lato", sans-serif;
                    font-size: 28px;
                    font-weight: 400;
                    vertical-align: middle;
                }

                #generic_price_table .generic_content .generic_head_price .generic_price_tag .price .currency {
                    font-family: "Lato", sans-serif;
                    font-size: 60px;
                    font-weight: 300;
                    letter-spacing: -2px;
                    line-height: 60px;
                    padding: 0;
                    vertical-align: middle;
                }

                #generic_price_table .generic_content .generic_head_price .generic_price_tag .price .cent {
                    display: inline-block;
                    font-family: "Lato", sans-serif;
                    font-size: 24px;
                    font-weight: 400;
                    vertical-align: bottom;
                }

            #generic_price_table .generic_content .generic_head_price .generic_price_tag .month {
                font-family: "Lato", sans-serif;
                font-size: 18px;
                font-weight: 400;
                letter-spacing: 3px;
                vertical-align: bottom;
            }

    #generic_price_table .generic_content .generic_feature_list ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        #generic_price_table .generic_content .generic_feature_list ul li {
            font-family: "Lato", sans-serif;
            font-size: 18px;
            padding: 15px 0;
            transition: all 0.3s ease-in-out 0s;
        }

            #generic_price_table .generic_content .generic_feature_list ul li:hover {
                transition: all 0.3s ease-in-out 0s;
                -moz-transition: all 0.3s ease-in-out 0s;
                -ms-transition: all 0.3s ease-in-out 0s;
                -o-transition: all 0.3s ease-in-out 0s;
                -webkit-transition: all 0.3s ease-in-out 0s;
            }

            #generic_price_table .generic_content .generic_feature_list ul li .fa {
                padding: 0 10px;
            }

    #generic_price_table .generic_content .generic_price_btn {
        margin: 20px 0 32px;
    }

        #generic_price_table .generic_content .generic_price_btn a {
            border-radius: 50px;
            -moz-border-radius: 50px;
            -ms-border-radius: 50px;
            -o-border-radius: 50px;
            -webkit-border-radius: 50px;
            display: inline-block;
            font-family: "Lato", sans-serif;
            font-size: 18px;
            outline: medium none;
            padding: 12px 30px;
            text-decoration: none;
            text-transform: uppercase;
        }

        #generic_price_table .generic_content,
        #generic_price_table .generic_content:hover,
        #generic_price_table .generic_content .generic_head_price .generic_head_content .head_bg,
        #generic_price_table .generic_content:hover .generic_head_price .generic_head_content .head_bg,
        #generic_price_table .generic_content .generic_head_price .generic_head_content .head h2,
        #generic_price_table .generic_content:hover .generic_head_price .generic_head_content .head h2,
        #generic_price_table .generic_content .price,
        #generic_price_table .generic_content:hover .price,
        #generic_price_table .generic_content .generic_price_btn a,
        #generic_price_table .generic_content:hover .generic_price_btn a {
            transition: all 0.3s ease-in-out 0s;
            -moz-transition: all 0.3s ease-in-out 0s;
            -ms-transition: all 0.3s ease-in-out 0s;
            -o-transition: all 0.3s ease-in-out 0s;
            -webkit-transition: all 0.3s ease-in-out 0s;
        }

@media (max-width: 767px) {
    #generic_price_table .generic_content {
        margin-bottom: 75px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    #generic_price_table .col-md-3 {
        float: left;
        width: 50%;
    }

    #generic_price_table .col-md-4 {
        float: left;
        width: 50%;
    }

    #generic_price_table .generic_content {
        margin-bottom: 75px;
    }
}

#generic_price_table_home {
    font-family: "Raleway", sans-serif;
}

.text-center h1,
.text-center h1 a {
    color: #7885CB;
    font-size: 30px;
    font-weight: 300;
    text-decoration: none;
}

.demo-pic {
    margin: 0 auto;
}

    .demo-pic:hover {
        opacity: 0.7;
    }

#generic_price_table_home ul {
    margin: 0 auto;
    padding: 0;
    list-style: none;
    display: table;
}

#generic_price_table_home li {
    float: left;
}

    #generic_price_table_home li + li {
        margin-left: 10px;
        padding-bottom: 10px;
    }

    #generic_price_table_home li a {
        display: block;
        width: 50px;
        height: 50px;
        font-size: 0px;
    }

#generic_price_table_home .blue {
    background: #3498DB;
    transition: all 0.3s ease-in-out 0s;
}

#generic_price_table_home .emerald {
    background: #2ECC71;
    transition: all 0.3s ease-in-out 0s;
}

#generic_price_table_home .grey {
    background: #7F8C8D;
    transition: all 0.3s ease-in-out 0s;
}

#generic_price_table_home .midnight {
    background: #34495E;
    transition: all 0.3s ease-in-out 0s;
}

#generic_price_table_home .orange {
    background: #E67E22;
    transition: all 0.3s ease-in-out 0s;
}

#generic_price_table_home .purple {
    background: #9B59B6;
    transition: all 0.3s ease-in-out 0s;
}

#generic_price_table_home .red {
    background: #E74C3C;
    transition: all 0.3s ease-in-out 0s;
}

#generic_price_table_home .turquoise {
    background: #1ABC9C;
    transition: all 0.3s ease-in-out 0s;
}

    #generic_price_table_home .blue:hover,
    #generic_price_table_home .emerald:hover,
    #generic_price_table_home .grey:hover,
    #generic_price_table_home .midnight:hover,
    #generic_price_table_home .orange:hover,
    #generic_price_table_home .purple:hover,
    #generic_price_table_home .red:hover,
    #generic_price_table_home .turquoise:hover {
        border-bottom-left-radius: 50px;
        border-bottom-right-radius: 50px;
        border-top-left-radius: 50px;
        border-top-right-radius: 50px;
        transition: all 0.3s ease-in-out 0s;
    }

#generic_price_table_home .divider {
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
    padding: 20px;
}

    #generic_price_table_home .divider span {
        width: 100%;
        display: table;
        height: 2px;
        background: #ddd;
        margin: 50px auto;
        line-height: 2px;
    }

#generic_price_table_home .itemname {
    text-align: center;
    font-size: 50px;
    padding: 50px 0 20px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 40px;
    text-decoration: none;
    font-weight: 300;
}

#generic_price_table_home .itemnametext {
    text-align: center;
    font-size: 20px;
    padding-top: 5px;
    text-transform: uppercase;
    display: inline-block;
}

#generic_price_table_home .footer {
    padding: 40px 0;
}

.price-heading {
    text-align: center;
}

    .price-heading h1 {
        color: #666;
        margin: 0;
        padding: 0 0 50px 0;
    }

.demo-button {
    background-color: #333333;
    color: #ffffff;
    display: table;
    font-size: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 50px;
    outline-color: -moz-use-text-color;
    outline-style: none;
    outline-width: medium;
    padding: 10px;
    text-align: center;
    text-transform: uppercase;
}

.bottom_btn {
    background-color: #333333;
    color: #ffffff;
    display: table;
    font-size: 28px;
    margin: 60px auto 20px;
    padding: 10px 25px;
    text-align: center;
    text-transform: uppercase;
}

.demo-button:hover {
    background-color: #666;
    color: #FFF;
    text-decoration: none;
}

.bottom_btn:hover {
    background-color: #666;
    color: #FFF;
    text-decoration: none;
}

.nnj {
    border: 1px solid #CCC;
}

@media (max-width: 767px) {
    .nacul {
        width: 100%;
    }

        .nacul li {
            width: 100%;
        }

    .border-md-0 {
        border: 0px !important;
    }
}

@media (max-width: 767px) {
    .page-nav {
        padding-top: 100px;
    }
}

/* auto popup */

.backgroundOverlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    opacity: .85;
    filter: alpha(opacity=85);
    -moz-opacity: .85;
    z-index: 101;
    display: none;
}
/*   This is the Popup Window   */
.delayedPopupWindow {
    border-radius: 23px;
    display: none;
    position: fixed;
    width: 550px;
    max-width: 580px;
    top: 36%;
    left: 79%;
    margin-left: -260px;
    margin-top: -180px;
    /*border: 2px solid #333;*/
    z-index: 102;
    padding: 10px 20px;
    background-color: #00000094;
    opacity: 0.90;
}
.radiomalefemale {
    color: #FFF;
    font-weight: 600;
}

.login-registerbtn {
    padding-right: 45px;
}
/*   This is the closing button  */
#btnClose {
    width: 100%;
    display: block;
    text-align: right;
    text-decoration: none;
    color: #B2237D;
}
    /*   This is the closing button hover state  */
    #btnClose:hover {
        color: #5b03e4;
    }
/*   This is the description headline and paragraph for the form   */
#delayedPopup > div.formDescription {
    /*float: left;*/
    display: block;
    padding: 1% 3%;
    font-size: 18px;
    color: #666;
    clear: left;
    /*overflow: scroll;*/
    height: 595px;
}
    /*   This is the styling for the form's headline   */
    #delayedPopup > div.formDescription h2 {
        color: #2a2a2a;
        font-size: 30px;
        text-transform: capitalize;
        text-decoration: none;
        margin-bottom: 30px;
        line-height: 44px;
        color: #5b03e4;
        font-style: normal;
        font-family: "Bubble Love Demo", sans-serif !important;
    }

/*
////////// MailChimp Signup Form //////////////////////////////
*/

/*   This is the signup form body  */
#delayedPopup #mc_embed_signup {
    float: left;
    width: 47%;
    padding: 1%;
    display: block;
    font-size: 16px;
    color: #666;
    margin-left: 1%;
}
/*   This is the styling for the signup form inputs  */
#delayedPopup #mc-embedded-subscribe-form input {
    width: 95%;
    height: 30px;
    font-size: 18px;
    padding: 3px;
    margin-bottom: 5px;
}
    /*   This is the styling for the signup form inputs when they are being hovered with the mouse  */
    #delayedPopup #mc-embedded-subscribe-form input:hover {
        border: solid 2px #40c348;
        box-shadow: 0 1px 3px #AAAAAA;
    }
    /*   This is the styling for the signup form inputs when they are focused  */
    #delayedPopup #mc-embedded-subscribe-form input:focus {
        border: solid 2px #40c348;
        box-shadow: none;
    }
/*   This is the styling for the signup form submit button  */
#delayedPopup #mc-embedded-subscribe {
    width: 100% !important;
    height: 40px !important;
    margin: 10px auto 0 auto;
    background: #5D9E62;
    border: none;
    color: #fff;
}
    /*   This is the styling for the signup form submit button hover state  */
    #delayedPopup #mc-embedded-subscribe:hover {
        background: #40c348;
        color: #fff;
        box-shadow: none !important;
        cursor: pointer;
    }

/*other page css*/

.reg-box {
    /*height: auto;*/
    width: 100%;
    /*background-color: rgba(225,225,225,0.9);*/
    border: 1px solid #B2237D;
    /*margin-top: 25px;*/
    border-radius: 23px 23px 23px 23px;
    padding: 5px 20px;
}

.viewall {
    text-transform: capitalize;
}

.reg-box h1 {
    font-size: 22px;
    padding: 0px;
    /*margin: 0px;*/
    font-weight: 600;
    margin-top: -5px;
    color: #c32143;
    text-align: center;
}

@import url('https://fonts.googleapis.com/css?family=Dosis');

.Password-input {
    position: relative;
    margin-bottom: 20px; /* Add bottom margin for spacing between inputs */
}

.Password-toggle {
    position: absolute;
    top: 55%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1;
}

.Register-Password-toggle {
    position: absolute;
    top: 55%;
    right: 30px;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1;
}

.fa.fa-eye, .fa.fa-eye-slash {
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
}

@import "compass/css3";

@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,600,300,800);

span {
    position: relative;
    display: inline-block;
}

.slide-up {
    display: inline-block;
    width: 100%;
    padding: 10px 0 10px 15px;
    font-family: "Open Sans", sans;
    font-weight: 400;
    color: #377D6A;
    background: #efefef;
    border: 0;
    border-radius: 3px;
    outline: 0;
    // Arbitrary. transition: all .3s ease-in-out;
    &::-webkit-input-placeholder

{
    color: #efefef;
    text-indent: 0;
    font-weight: 300;
}

+ label {
    display: inline-block;
    position: absolute;
    transform: translateX(0);
    top: 0;
    padding: 10px 15px;
    text-shadow: 0 1px 0 rgba(19,74,70,.4);
    transition: all .3s ease-in-out;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    overflow: hidden;
    &:before, &:after

{
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    z-index: -1;
    transition: all .3s ease-in-out;
}

&:before {
    // Skinny bit here top: 6px;
    left: 5px;
    right: 5px;
    bottom: 6px;
    background: var(--bg-color);
}

&:after {
    top: 0;
    bottom: 0;
    background-color: var(--title-color);
}

}
}

span:nth-child(1) .slide-up {
    text-indent: 105px;
}

span:nth-child(3) .slide-up {
    text-indent: 125px;
}

    span:nth-child(1) .slide-up:focus,
    span:nth-child(1) .slide-up:active,
    span:nth-child(3) .slide-up:focus,
    span:nth-child(3) .slide-up:active {
        text-indent: 0;
    }

.slide-up:focus,
.slide-up:active {
    color: var(--title-color);
    text-indent: 0;
    background: #fff;
    &::-webkit-input-placeholder

{
    color: #aaa;
}

+ label {
    transform: translateY(-100%);
    &:before

{
    border-radius: 5px;
}

&:after {
    transform: translateY(100%);
}

}
}

.form-body .form-title {
    margin-bottom: 30px;
}

    .form-body .form-title h4 {
        border-bottom: 1px solid #5b03e4;
        width: 100%;
        /*margin: 0px;*/
        font-weight: 600;
        color: #B2237D;
        border-radius: inherit;
        text-align: center;
    }

@media screen and (prefers-reduced-motion:reduce) {
    .form-control {
        transition: none
    }
}

.form-control::-ms-expand {
    background-color: transparent;
    border: 0
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0,123,255,.25)
}

.form-control::-webkit-input-placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control::-moz-placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control:-ms-input-placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control::-ms-input-placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control:disabled, .form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1
}

select.form-control:focus::-ms-value {
    color: #495057;
    background-color: #fff
}

.form-control-file, .form-control-range {
    display: block;
    width: 100%
}

.col-form-label {
    padding-top: calc(.375rem + 1px);
    padding-bottom: calc(.375rem + 1px);
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.5
}

.col-form-label-lg {
    padding-top: calc(.5rem + 1px);
    padding-bottom: calc(.5rem + 1px);
    font-size: 1.25rem;
    line-height: 1.5
}

.col-form-label-sm {
    padding-top: calc(.25rem + 1px);
    padding-bottom: calc(.25rem + 1px);
    font-size: .875rem;
    line-height: 1.5
}

.form-control-plaintext {
    display: block;
    width: 100%;
    padding-top: .375rem;
    padding-bottom: .375rem;
    margin-bottom: 0;
    line-height: 1.5;
    color: #212529;
    background-color: transparent;
    border: solid transparent;
    border-width: 1px 0
}

    .form-control-plaintext.form-control-lg, .form-control-plaintext.form-control-sm, .input-group-lg > .form-control-plaintext.form-control, .input-group-lg > .input-group-append > .form-control-plaintext.btn, .input-group-lg > .input-group-append > .form-control-plaintext.input-group-text, .input-group-lg > .input-group-prepend > .form-control-plaintext.btn, .input-group-lg > .input-group-prepend > .form-control-plaintext.input-group-text, .input-group-sm > .form-control-plaintext.form-control, .input-group-sm > .input-group-append > .form-control-plaintext.btn, .input-group-sm > .input-group-append > .form-control-plaintext.input-group-text, .input-group-sm > .input-group-prepend > .form-control-plaintext.btn, .input-group-sm > .input-group-prepend > .form-control-plaintext.input-group-text {
        padding-right: 0;
        padding-left: 0
    }

.form-control-sm, .input-group-sm > .form-control, .input-group-sm > .input-group-append > .btn, .input-group-sm > .input-group-append > .input-group-text, .input-group-sm > .input-group-prepend > .btn, .input-group-sm > .input-group-prepend > .input-group-text {
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: .2rem
}

.input-group-sm > .input-group-append > select.btn:not([size]):not([multiple]), .input-group-sm > .input-group-append > select.input-group-text:not([size]):not([multiple]), .input-group-sm > .input-group-prepend > select.btn:not([size]):not([multiple]), .input-group-sm > .input-group-prepend > select.input-group-text:not([size]):not([multiple]), .input-group-sm > select.form-control:not([size]):not([multiple]), select.form-control-sm:not([size]):not([multiple]) {
    height: calc(1.8125rem + 2px)
}

.form-control-lg, .input-group-lg > .form-control, .input-group-lg > .input-group-append > .btn, .input-group-lg > .input-group-append > .input-group-text, .input-group-lg > .input-group-prepend > .btn, .input-group-lg > .input-group-prepend > .input-group-text {
    padding: .5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: .3rem
}

.input-group-lg > .input-group-append > select.btn:not([size]):not([multiple]), .input-group-lg > .input-group-append > select.input-group-text:not([size]):not([multiple]), .input-group-lg > .input-group-prepend > select.btn:not([size]):not([multiple]), .input-group-lg > .input-group-prepend > select.input-group-text:not([size]):not([multiple]), .input-group-lg > select.form-control:not([size]):not([multiple]), select.form-control-lg:not([size]):not([multiple]) {
    height: calc(2.875rem + 2px)
}

.form-group {
    margin-bottom: 1rem
}

.form-text {
    display: block;
    margin-top: .25rem
}

.form-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: auto;
    margin-top: 25px;
}

    .form-row > .col, .form-row > [class*=col-] {
        padding-right: 5px;
        padding-left: 5px
    }

.form-check {
    position: relative;
    display: block;
    padding-left: 1.25rem
}

.form-check-input {
    position: absolute;
    margin-top: .3rem;
    margin-left: -1.25rem
}

    .form-check-input:disabled ~ .form-check-label {
        color: #6c757d
    }

.form-check-label {
    margin-bottom: 0
}

.form-check-inline {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0;
    margin-right: .75rem
}

    .form-check-inline .form-check-input {
        position: static;
        margin-top: 0;
        margin-right: .3125rem;
        margin-left: 0
    }

.col-lg-4.col-md-8.mb-3.ml-lg-3 {
    margin-left: 40px;
}

.form-body {
    margin: 20px 0 20px 0;
    padding: 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.6);
}

.form-row.row {
    justify-content: center; /* Center-align the content horizontally */
    margin-top: 20px; /* Add top margin for spacing */
}

.form-row .form-control {
    background-color: var(--secondary-color) !important;
    border-radius: 0.4rem;
    border: none;
}

    .form-row .form-control:active {
        border: 2px solid var (--secondary-color) !important;
    }

    .form-row .form-control:focus {
        border: 2px solid var (--secondary-color) !important;
        box-shadow: 0.2rem 0.8rem 1.6rem var(--colorPrimary600) !important;
    }

.form-row input {
    margin-bottom: 20px;
    background-color: var(--textbox-color);
    /*text-align: center;*/
}

.form-row .input-group input {
    margin-bottom: 20px;
}

.form-row .indc {
    float: right;
    /*padding-top: 5px;*/
}

@media screen and (max-width: 767px) {
    .form-row .indc {
        float: none;
    }
}

.form-row .req {
    color: #f00;
    font-size: 0.7rem;
}

/*login model css*/
@media (min-width: 576px) {
    .modal-dialog {
        max-width: 400px !important;
    }

        .modal-dialog .modal-content {
            padding: 1rem;
        }
}

.modal-header .close {
    margin-top: -1.5rem;
}

.form-title-login {
    margin: -2rem 0rem 2rem;
}

.btn-round {
    border-radius: 3rem;
}

.delimiter {
    padding: 1rem;
}

.social-buttons .btn {
    margin: 0 0.5rem 1rem;
}

.signup-section {
    padding: 0.3rem 0rem;
}

.typing-slider {
    text-align: center;
    overflow: hidden;
    height: 3.5rem; /* Set a fixed height for the container */
    padding-left: 50px;
}

    .typing-slider h2 {
        display: inline-block;
        vertical-align: middle;
        line-height: 2em; /* Match the container height */
        white-space: nowrap;
        overflow: hidden;
        margin: 0; /* Reset margin to avoid page movement */
        padding: 0 10px; /* Add padding for horizontal spacing */
    }

.hidden {
    visibility: hidden;
}

.slideIn {
    animation: slideIn 1s forwards;
}

.slideOut {
    animation: slideOut 1s forwards;
    animation-delay: 2s; /* Delay between slides */
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(100%);
    }
}

.button-57 {
    position: relative;
    overflow: hidden;
    border: 1px solid #18181a;
    color: #18181a;
    display: inline-block;
    font-size: 15px;
    line-height: 15px;
    text-decoration: none;
    cursor: pointer;
    background: #fff;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    border: none;
    border-radius: 10px;
    width: 150px;
}

    .button-57 span:first-child {
        position: relative;
        transition: color 600ms cubic-bezier(0.48, 0, 0.12, 1);
        z-index: 10;
    }

    .button-57 span:last-child {
        color: white;
        display: block;
        position: absolute;
        bottom: 0;
        transition: all 500ms cubic-bezier(0.48, 0, 0.12, 1);
        z-index: 100;
        opacity: 0;
        /*top: 50%;*/
        left: 50%;
        transform: translateY(225%) translateX(-50%);
        height: 14px;
        line-height: 13px;
    }

.document h2 {
    font-family: "Bubble Love Demo", sans-serif !important;
    font-weight: 500 !important;
}

.button-57:after {
    content: "";
    position: absolute;
    bottom: -50%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #5b03e4; /*var(--title-color);*/
    transform-origin: bottom center;
    transition: transform 600ms cubic-bezier(0.48, 0, 0.12, 1);
    transform: skewY(9.3deg) scaleY(0);
    z-index: 50;
}

.button-57:hover:after {
    transform-origin: bottom center;
    transform: skewY(9.3deg) scaleY(2);
}

.button-57:hover span:last-child {
    transform: translateX(-50%) translateY(-100%);
    opacity: 1;
    transition: all 900ms cubic-bezier(0.48, 0, 0.12, 1);
}

/*
---------------------------------------------
form Style
---------------------------------------------
*/
#TermsConditions, #chkAgree {
    width: 7% !important;
    height: 18px !important;
}

#registration-form .form-body {
    margin: 0px !important;
    padding: 0px !important;
    background: rgba(255, 255, 255, 0%) !important;
}

#registration-popup-form input {
    width: 100%;
    height: 35px;
    border-radius: 23px;
    background-color: #f9ebff;
    border: none;
    outline: none;
    padding: 0px 15px;
    font-size: 14px;
    color: blue;
    font-weight: 600;
    margin-bottom: 15px;
}

#registration-form input, #login-form input, #personal-information-form input, #family-information-form input, #expectation-information-form input, #personal input, #contactForm input {
    width: 100%;
    height: 45px;
    border-radius: 23px;
    background-color: #f9ebff;
    border: none;
    outline: none;
    padding: 0px 15px;
    font-size: 14px;
    color: blue;
    font-weight: 600;
    margin-bottom: 15px;
}

.lable-s {
    font-family: Source Sans Pro,sans-serif !important;
    font-size: 0.875rem !important;
    margin-left: 1.1rem !important;
}

#registration-form input::placeholder, #login-form input::placeholder, #personal-information-form input::placeholder, #family-information-form input::placeholder, #expectation-information-form input::placeholder, #personal input::placeholder {
    color: #2a2a2a;
}

#registration-popup-form select {
    width: 100%;
    height: 35px;
    border-radius: 23px;
    background-color: #f9ebff !important;
    border: none;
    outline: none;
    padding: 0px 15px;
    font-size: 14px;
    color: blue;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: justify !important;
}

#registration-form select, #login-form select, #personal-information-form select, #family-information-form select, #expectation-information-form select, #personal select {
    width: 100%;
    height: 45px;
    border-radius: 23px;
    background-color: #f9ebff !important;
    border: none;
    outline: none;
    padding: 0px 15px;
    font-size: 14px;
    color: blue;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: justify !important;
}

#registration-form textarea, #login-form textarea, #personal-information-form textarea, #family-information-form textarea, #expectation-information-form textarea, #personal textarea, #contactForm textarea {
    width: 100%;
    /*height: 120px;*/
    border-radius: 23px;
    background-color: #f9ebff;
    border: none;
    outline: none;
    padding: 15px;
    font-size: 14px;
    color: blue;
    font-weight: 600;
    margin-bottom: 15px;
}

    #registration-form textarea::placeholder, #login-form textarea::placeholder, #personal-information-form textarea::placeholder, #family-information-form textarea::placeholder, #expectation-information-form textarea::placeholder, #personal textarea::placeholder {
        color: #2a2a2a;
    }

.markField {
    color: #B94A48;
}
#registration-form button, #login-form button, #personal-information-form button, #family-information-form button, #expectation-information-form button, #personal button, #editProfile button, #Profile button, #document button, #forgotpass button, #ForgotpassConfirm button {
    border: none;
    height: 46px;
    background-color: #B2237D !important;
    /*width: 100%;*/
    border-radius: 23px;
    color: #fff;
    transition: all .4s;
}

#editProfile a {
    font-size: 15px;
    text-transform: inherit;
    border: none;
    height: 45px;
    background-color: #5b03e4 !important;
    /*width: 100%;*/
    border-radius: 23px;
    color: #fff;
    transition: all .4s;
    line-height: 32px;
    width: 150px;
}

#Profile a, #document a {
    font-size: 15px;
    text-transform: inherit;
    border: none;
    height: 45px;
    background-color: #5b03e4 !important;
    /*width: 100%;*/
    border-radius: 23px;
    color: #fff;
    transition: all .4s;
    line-height: 20px;
    width: 150px;
}

#registration-popup-form button {
    border: none;
    height: 40px;
    background-color: #B2237D !important;
    width: 80%;
    border-radius: 23px;
    color: #fff;
    transition: all .4s;
    text-transform: capitalize;
}

#registration-form button:hover, #login-form button:hover, #personal-information-form button:hover, #family-information-form button:hover, #expectation-information-form button:hover, #personal button::hover {
    opacity: 0.8;
}

#registration-popup-form button:hover {
    opacity: 0.8;
}
/*
---------------------------------------------
login form Style
---------------------------------------------
*/
.login {
    position: relative;
}

.section {
    padding-top: 30px;
}

.login-content {
    border-radius: 23px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.10);
}

    .login-content #login-form {
        padding: 60px;
        border-radius: 23px 23px 0px 0px;
        border: 1px solid #B2237D;
        background-color: #ffffff00;
    }

.container {
    margin-top: 80px;
    margin-bottom: 40px;
}

.container-skill {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

.login-content .more-info {
    text-align: center;
    background: rgb(85,0,227);
    background: linear-gradient(90deg, rgba(85,0,227,1) 0%, rgba(198,61,255,1) 100%);
    border-radius: 0px 0px 23px 23px;
    padding: 45px 30px 15px 30px;
}

#login-form .section-heading {
    text-align: center;
}

#login-form .section-heading {
    margin-bottom: 30px;
}

.section-heading h2 {
    text-transform: capitalize;
    text-decoration: none;
    margin-bottom: 30px;
    line-height: 44px;
    color: #5b03e4;
    font-style: normal;
    margin-right: 0px;
    font-family: "Bubble Love Demo", sans-serif !important;
    font-weight: 500;
}

.sub-heading {
    font-size: 14px !important;
}

.profile-heading {
    font-family: cursive !important;
}

.btnlogin {
    border: 1px solid #B2237D;
    color: #5b03e4 !important;
    background-color: #FFF !important;
    opacity: 0.70;
    border-radius: 23px;
}

.btnregister {
    color: #B2237D !important;
    border: 1px solid #5b03e4;
    background-color: #FFF !important;
    opacity: 0.70;
    border-radius: 23px;
    text-transform: uppercase;
}

.login-content .left-image {
    background-image: url(../images/login-left-side.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    border-radius: 23px 23px 23px 0px;
}

    .login-content .left-image img {
        display: none;
    }

/*
---------------------------------------------
registration form Style
---------------------------------------------
*/

.register {
    position: relative;
}

.register-content {
    border-radius: 23px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.10);
}

    .register-content #registration-form {
        padding: 30px;
        border-radius: 23px;
        border: 1px solid #B2237D;
        background: rgb(255 255 255 / 0%);
    }

    .register-content .more-info {
        text-align: center;
        background: rgb(85,0,227);
        background: linear-gradient(90deg, rgba(85,0,227,1) 0%, rgba(198,61,255,1) 100%);
        border-radius: 0px 0px 23px 23px;
        padding: 45px 30px 15px 30px;
    }

#registration-form .section-heading {
    text-align: center;
}

.register-content .left-image {
    background-image: url(../images/left-infos.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    border-radius: 23px 23px 23px 0px;
}

    .register-content .left-image img {
        display: none;
    }

#registration-form input[type=radio] {
    width: 10%;
    height: 20px;
}

#registration-popup-form input[type=radio] {
    width: 10%;
    height: 20px;
}

.checkbox-wrapper-26 * {
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.checkbox-wrapper-26 {
    display: flex;
    align-items: center;
}

    .checkbox-wrapper-26 input[type="checkbox"] {
        display: none;
    }

    .checkbox-wrapper-26 label {
        --size: 30px; /* Adjusted size for better alignment */
        /*--shadow: calc(var(--size) * .07) calc(var(--size) * .1);*/
        position: relative;
        display: inline-block;
        width: var(--size);
        height: var(--size);
        background-color: blue;
        border-radius: 50%;
        box-shadow: 0 var(--shadow) #ffbeb8;
        cursor: pointer;
        transition: 0.2s ease transform, 0.2s ease background-color, 0.2s ease box-shadow;
        overflow: hidden;
        margin-right: 10px; /* Added margin for spacing */
    }

        .checkbox-wrapper-26 label:before {
            content: "";
            position: absolute;
            top: 50%;
            right: 0;
            left: 0;
            width: calc(var(--size) * .7);
            height: calc(var(--size) * .7);
            margin: 0 auto;
            background-color: #fff;
            transform: translateY(-50%);
            border-radius: 50%;
            box-shadow: inset 0 var(--shadow) #ffbeb8;
            transition: 0.2s ease width, 0.2s ease height;
        }

        .checkbox-wrapper-26 label:hover:before {
            width: calc(var(--size) * .55);
            height: calc(var(--size) * .55);
            box-shadow: inset 0 var(--shadow) #ff9d96;
        }

        .checkbox-wrapper-26 label:active {
            transform: scale(0.9);
        }

    .checkbox-wrapper-26 .tick_mark {
        position: absolute;
        top: -1px;
        right: 0;
        left: calc(var(--size) * -.05);
        width: calc(var(--size) * .6);
        height: calc(var(--size) * .6);
        margin: 0 auto;
        margin-left: calc(var(--size) * .14);
        transform: rotateZ(-40deg);
    }

        .checkbox-wrapper-26 .tick_mark:before,
        .checkbox-wrapper-26 .tick_mark:after {
            content: "";
            position: absolute;
            background-color: #fff;
            border-radius: 2px;
            opacity: 0;
            transition: 0.2s ease transform, 0.2s ease opacity;
        }

        .checkbox-wrapper-26 .tick_mark:before {
            left: 0;
            bottom: 0;
            width: calc(var(--size) * .1);
            height: calc(var(--size) * .3);
            box-shadow: -2px 0 5px rgba(0, 0, 0, 0.23);
            transform: translateY(calc(var(--size) * -.68));
        }

        .checkbox-wrapper-26 .tick_mark:after {
            left: 0;
            bottom: 0;
            width: 100%;
            height: calc(var(--size) * .1);
            box-shadow: 0 3px 5px rgba(0, 0, 0, 0.23);
            transform: translateX(calc(var(--size) * .78));
        }

    .checkbox-wrapper-26 input[type="checkbox"]:checked + label {
        background-color: #07d410;
        box-shadow: 0 var(--shadow) #92ff97;
    }

        .checkbox-wrapper-26 input[type="checkbox"]:checked + label:before {
            width: 0;
            height: 0;
        }

        .checkbox-wrapper-26 input[type="checkbox"]:checked + label .tick_mark:before,
        .checkbox-wrapper-26 input[type="checkbox"]:checked + label .tick_mark:after {
            transform: translate(0);
            opacity: 1;
        }

    .checkbox-wrapper-26 .checkbox-text {
        font-family: Source Sans Pro, sans-serif;
        font-weight: 300;
        font-size: 1rem;
        color: blue;
    }

.password-note {
    border-right: 1px solid #ddd;
}

/* On screens that are 600px wide or less, the background color is olive */
@media screen and (max-width: 600px) {
    /*register popup fix*/
    .login-registerbtn {
        padding-right: 25px;
    }

    .delayedPopupWindow {
        border-radius: 23px;
        display: none;
        position: fixed;
        width: 350px;
        max-width: 350px;
        top: 35%;
        left: 70%;
        margin-left: -260px;
        margin-top: -180px;
        background-color: #efefef;
        border: 2px solid #333;
        z-index: 1000;
        padding: 10px 20px;
        background-color: #00000094;
        overflow-y: auto;
        height: 500px;
    }

    #delayedPopup > div.formDescription {
        height: auto !important;
    }

    /*Login fix*/
    .container {
        margin-top: 20px !important;
    }

    .login-content .left-image {
        display: none;
    }

    .typing-slider {
        padding-left: 0px !important;
    }

    .d-sm-block {
        display: block !important;
    }

    .fs-8 {
        font-size: 0.6rem !important;
    }

    .file-upload-box {
        width: auto !important;
    }

    #document button {
        margin-bottom: 5px !important;
        margin-top: 5px;
    }

    .carousel-item img {
        height: 30% !important;
    }

    .profile .btn, #editProfile button {
        margin-bottom: 5px !important;
    }

    .fixed-top {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 1030;
    }

    .bg-dark {
        background-color: #121F38 !important;
    }

    .rounded-md {
        width: 100% !important;
        /*height: 100% !important;*/
    }

    .navbar {
        display: flex !important;
    }

    .edit-image {
        top: 90% !important;
    }

    .small-padding {
        padding: 50px;
    }

    .container-document {
        padding-right: 0px !important;
        padding-left: 0px !important;
    }

    .contactUs-iframe {
        width: 100%;
    }

    .address .col-md-4 {
        padding-right: 0px !important;
    }

    .password-note {
        border-right: none;
    }
    .pricing .box{
        margin-bottom: 20px;
    }
    .btn-back-br{ width: 30%}
}

@media (min-width: 992px) {
    .pb-lg-0,
    .py-lg-0 {
        padding-bottom: 0 !important;
    }

    .pl-lg-5,
    .px-lg-5 {
        padding-left: 3rem !important;
    }
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

.bg-dark-1 {
    background-color: #121F38 !important;
}
