@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #2c2c2c;
    --red: #fc6c78;
    --purple: #473479;
    --darkpurple: #541e5c;
    --blue-purple: #473479;
    --green: #27b98b;
    --yellow: #fec907;
    --darkgray: #707070;
    --lightgray: #dbdcdd;
    --lightpink: #fff8ff;
    --liver-black: #4d4d4d;
    --blue: #02b0ef;
}

.text-red {
    color: var(--red);
}

.text-purple {
    color: var(--blue-purple);
}

.text-liver-black {
    color: var(--liver-black);
}

/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/
/*@font-face {
font-family: 'Quicksand', sans-serif;
	src:url('fonts/futuralight.ttf');
    font-weight:300;
}
@font-face {
font-family: 'Quicksand', sans-serif;
	src:url('fonts/futuramedium.ttf');
    font-weight:500;
}
@font-face {
font-family: 'Quicksand', sans-serif;
	src:url('fonts/futura-bold.ttf');
    font-weight:700;
}
@font-face {
font-family: 'Quicksand', sans-serif;
	src:url('fonts/FuturaExtraBlack.ttf');
    font-weight:800;
}
@font-face {
	font-family: 'Quicksand', sans-serif;
	src:url('fonts/AvQest.ttf');
}*/

.text-quicksand {
    font-family: 'Quicksand', sans-serif;
}

. futura {
    font-family: 'Quicksand', sans-serif;
}

/*------------------------------------*\
    MAIN
\*------------------------------------*/
/* global box-sizing */
*,
*:after,
*:before {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* html element 62.5% font-size for REM use */
html {
    font-size: 100%;
}

body {
    font-family: 'Futura', Arial, Helvetica, sans-serif;
    font-size: 18px;
    color: var(--primary);
    line-height: 22px;
    font-weight: 500;
    overflow-x: hidden;
}

/* clear */
.clear:before,
.clear:after {
    content: ' ';
    display: table;
}

.clear:after {
    clear: both;
}

.clear {
    *zoom: 1;
    clear: both;
}

img {
    max-width: 100%;
}

a {
    color: #444;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: var(--primary);
}

a:focus {
    outline: 0;
    text-decoration: none;
}

a:hover, a:active {
    outline: 0;
}

ul, li, h1, h2, h3, h4, h5, h6 {
    list-style-type: none;
    margin: 0;
    padding: 0
}


.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6, a, p, span, div {
    font-family: 'Quicksand', sans-serif;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}

.light {
    font-weight: 300;
}

.medium {
    font-weight: 500;
}

.bold {
    font-weight: 700;
}

.extrabold {
    font-weight: 800;
}


h1, .fs-34 {
    font-size: 34px;
    line-height: 42px;
}

.h1 {
    font-size: 32px;
    line-height: 42px;
}

h2 {
    font-size: 30px;
    line-height: 38px;
}

.h2 {
    font-size: 28px;
    line-height: 36px;
}

h3 {
    font-size: 26px;
    line-height: 34px;
}

.h3 {
    font-size: 24px;
    line-height: 32px;
}

h4, .fs-22 {
    font-size: 22px;
    line-height: 28px;
}

.h4 {
    font-size: 20px;
    line-height: 28px;
}

h5, .fs-18 {
    font-size: 18px;
    line-height: 22px;
}

.h5, .fs-16 {
    font-size: 16px;
    line-height: 24px;
}

h6, .fs-14 {
    font-size: 14px;
    line-height: 18px;
}

.h6, .fs-12 {
    font-size: 12px;
    line-height: 16px;
    color: #000;
    font-weight: 600;
}

/*.fs-15{	font-size: 15px; line-height: 22px;   }
.fs-19{ font-size: 9px; line-height: 12px;   }*/

p:not(:last-child), p:not(:last-of-type) {
    margin-bottom: 25px;
}

.text-justify {
    text-align: justify;
}


input:focus, textarea:focus, select:focus {
    outline: none;
}


.butn, .border-butn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    min-width: 212px;
    border-radius: 6px;

}

.butn i {
    margin-left: 20px;
    font-size: 20px;
    margin-top: 1px;
}

.butn {
    background: var(--red);
    border: 1px solid var(--red);
    color: #fff !important;
}

.border-butn {
    background: transparent;
    border: 2px solid var(--purple);
    color: var(--purple);
}

.btn-red {
    background-color: var(--red);
    padding: 10px 20px;
    border: 1px solid var(--red);
    color: #fff !important;
    border-radius: 6px;
}

.fw-medium {
    font-weight: 500;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/
/* wrapper */

.container {
    max-width: 1350px;
    width: 100%;
    margin: 0 auto;
}

/* header */


a.logo img {
    margin: 0 auto !important;
}

a.logo img {
    width: 200px;
}

@media only screen and (max-width: 991px) {
    a.logo {
        max-width: 50%;
    }

    .sign-in-buttons {
        display: block !important;
    }
}

/*.site-logo {*/
/*    margin: auto;*/
/*}*/

.header {
    background-color: #edfaff;
    box-shadow: 0 0 20px #ccc;
}

.search-box-inner {
    position: absolute;
    background: #fff;
    padding: 20px;
    border: 2px solid #c89d9e;
    border-radius: 10px;
    padding-top: 20px;
    margin-top: -11px;
    z-index: 2;
    width: 100%;
    visibility: hidden;
}

.search-b ::placeholder {
    font-size: 16px;
}

.search-b {
    position: relative;
    width: 90%;
}

.search-b .site-search {
    z-index: 3;
    position: relative;
}

.search-box-inner h5 {
    font-weight: 600;
    color: #fc6c78;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.search-box-inner ul {
    display: flex;
    border-bottom: 2px solid #d5b7b8;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.search-box-inner ul li:first-child {
    margin-right: 20px;
}

.search-box-inner ul li i {
    height: 30px;
    width: 30px;
    background: #029ad1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
}

.search-box-inner ul li p {
    margin: 0;
    font-size: 13px;
    color: #2c2c2c;
    font-weight: 700;
    line-height: 15px;
}

img.size {
    height: 21px;
}

.search-box-inner ul li a {
    font-size: 13px;
    color: #9bc7d6;
}

.search-b:hover .search-box-inner {
    visibility: visible;
}

.search-box-inner ul:last-child {
    margin: 0;
    padding: 0;
    border: 0;
}

.site-search {
    border: 1px solid #d5b7b8;
    border-radius: 6px;
}

.site-search button {
    color: #cbb5ce;
    font-size: 20px;
}

.head-top-link a img {
    margin-right: 3px;
    height: 20px;
}

.head-menu {
    border-top: 1px solid #dbdcdd;
}

.nav_area ul li {
    display: inline-block;
    position: relative;
}

.nav_area ul li a {
    padding: 12px 20px;
    color: var(--primary);
    font-size: 14px;
    line-height: 20px;
    text-transform: capitalize;
    display: block;
    font-weight: 700;
}

.nav_area ul li a:hover,
.nav_area ul li.current-menu-item a {
    color: var(--darkpurple);
}

ul.sub-menu {
    position: absolute;
    display: none;
    background: #fff;
    z-index: 555;
    padding: 8px 15px;
    border: 1px solid #cbb5ce5f;
}

.nav_area > ul > li ul.sub-menu img {
    padding-right: 5px;
}

ul.sub-menu li {
    display: block;
    padding: 10px 0px;
    border-bottom: 1px solid #cbb5ce5f;
}

ul.sub-menu li:last-child {
    border: 0;
}

ul.sub-menu li a {
    display: block;
    padding: 0;
}

li.first a {
    padding-left: 0 !important;
}

.nav_area ul li span.arrow {
    display: inline-block;
    text-align: center;
    cursor: pointer;
    padding-left: 5px;
}

.head-btn {
    background: var(--red);
    padding: 12px 15px;
}

.bg-white.head-menu .head-btn {
    float: right;
}

ul.menu {
    display: flex !important;
    justify-content: space-between;
}

ul.menu li:first-child a {
    padding-left: 0;
}

ul.menu li:last-child a {
    padding-right: 0;
}

.profile-dropdown {
    top: 23px !important;
    border-radius: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.profile-dropdown a.login {
    border: 1px solid #9c9c9c;
    border-radius: 4px;
    padding: 13px;
    display: inline-block;
    color: var(--darkpurple);
    font-size: 12px !important;
}

.profile-dropdown h6, .profile-dropdown span, .profile-dropdown .forgot-pwd {
    font-size: 10px !important;
}

.profile-dropdown span, .profile-dropdown .forgot-pwd {
    color: #9c9c9c;
}

.profile-dropdown .submit-btn {
    background-color: var(--red);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 13px;
    color: #fff;
    font-weight: 300;
    font-size: 18px !important;
}

.profile-dropdown input {
    border: 1px solid #cbb5ce5f;
    border-radius: 4px;
    padding: 13px;
    font-size: 12px;
    color: var(--darkpurple);
    width: 100%;
}

.profile-dropdown input::placeholder {
    color: var(--darkpurple);
}

/*Menu Icon style */

.toggle {
    cursor: pointer;
    margin: 0;
}


/****** MENU ******/

/* footer */
.footer {
    background: var(--purple);
}

.logo-footer {
    width: 50%;
}

.top-footer form input {
    width: 100%;
    position: relative;
}

.top-footer form input::placeholder {
    color: #fff;

}

.top-footer form input::after {
    content: '\f105';
    font-family: 'Font Awesome 6 Pro';
    font-size: 15px;
    position: absolute;
    right: 50px;
    top: 10px;
    color: #fff;
}

.top-footer {
    border-bottom: 1px solid rgb(238 147 250 / 10%);
    padding: 65px 0;
}

.top-footer h2 {
    font-size: 37px;
    line-height: 49px;
}

.footer p, .footer h6.address {
    opacity: 0.5;
    font-weight: 300;
}

.top-footer h6.address {
    line-height: 28px;
}

.top-footer ul li a {
    font-size: 14px;
    line-height: 29px;
    color: #fff;
    opacity: 0.5;
    font-weight: 300;
}

.top-footer h6 {
    letter-spacing: 2.4px;
    color: #fff;
}

.top-footer h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 16px;
    letter-spacing: 2.4px;
    font-weight: 500;
    text-transform: uppercase;
}

.bottom-footer p, .bottom-footer h5, .bottom-footer span {
    font-size: 9px;
}

.bottom-footer i {
    opacity: 0.4;
}

.footer-login-btns a {
    border-radius: 6px;
    border: 1px solid #ffff;
}

.copyright {
    background: #7b7b7b;
}

.btn2 {
    background: #473479db;
    border-color: #473479db;
}

/*------------------------------------*\
			HOME
\*------------------------------------*/


.review {
    background-color: #24a88f;
}

.home-banner {
    background: url(/assets/img/pages/mother_baby_00.jpg) no-repeat center;
    background-size: cover;
}

.home-banner a.butn.mx-2.mb-md-0.mb-2 {
    margin: 0 !important;
}

.home-banner h1, .fs-54 {
    font-size: 50px;
    line-height: 60px;
}

.banner-form {
    border: 1px solid #ffffff80;
    border-radius: 9px;
    padding: 10px
}

.form-btn {
    display: inline-block;
    background: var(--darkpurple);
    color: #fff;
    border-radius: 6px;
    padding: 10px 20px;
    border: 0;
    font-size: 16px;
}


/* d-none-classs */
.logo-section {
    background: rgb(156 156 156 / 10%);
    display: none;
}

.number-section {
    display: none;
}

/* d-none-classs */

.owl-theme .ct-like img {
    width: auto;
}

.owl-theme .ct-contact p {
    margin: auto 0px;
}

.ct-contact a img {
    max-width: 45px;
}

.ct-rating {
    background: #fff8ff;
    border-left: 1px solid #cbb5ce;
    border-bottom-right-radius: 20px;
}

.ct-info {
    border: 1px solid #c5bfd4;
    /* border-radius: 10px 10px 20px 20px; */
    margin-top: -20px;
    z-index: 99;
    background: #fff;
    position: relative;
    min-height: 90px;
    max-height: 100%;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.ct-info p {
    margin: 0;
}

.ct-rating i {
    font-size: 12px;
}

.ct-like {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid #fff;
    background: rgb(250 250 250 / 9%);
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 10px;
    color: #fff;
}

.ct-like:hover {
    color: var(--darkpurple);
}

img.ct-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.ct-meta {
    margin-top: -15px;
}

.ct-available {
    display: inline-block;
    background: #27b98b;
    color: #fff;
    padding: 3px 7px;
    border-radius: 6px;
}

.ct-charge {
    display: inline-block;
    background: var(--darkpurple);
    color: #fff;
    padding: 3px 7px;
    border-radius: 6px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent;
}

.consultant-slider.owl-theme .owl-nav {
    margin-top: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% + 140px);
    display: flex;
    justify-content: space-between;
    left: -70px;
    z-index: -1;
}

img.blog-main-img {
    height: 480px;
    width: 836px;
    border-radius: 15px;
    box-shadow: 0 0 10px 0 #00000022;
    margin-bottom: 20px;
}

.logo-slider .owl-stage {
    display: flex;
    align-items: center;
}

.logo-slider img {
    max-width: 120px;

    filter: invert(73%) sepia(0%) saturate(7497%) hue-rotate(180deg) brightness(78%) contrast(94%);
}

/*------------------------------------*\
			WHY-SECTION
\*------------------------------------*/
.text-pink {
    color: #ee93fa;
}

.why-section {
    background: var(--purple);
}

.why-section h4 {
    letter-spacing: 2.2px;
}

.why-section p {
    color: #fff;
    opacity: 0.6;
}

.why-section .left-side {
    background: #5bcdb7;
    border-radius: 15px;
}

.why-section .left-side a img {
    max-width: 45px;
}

.why-section .bottom-section h5 {
    background-color: #5bcdb7;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    min-width: 50px;
}

.why-section .bottom-section {
    background-color: #2d1e52;
    border-radius: 15px;
}

/*------------------------------------*\
			GUIDANCE-SECTION
\*------------------------------------*/

.guidance-section {
    position: relative;
    background: #edfaff;
    z-index: 0;
    padding-bottom: 0;
    padding-top: 20px;
}

.guidance-section::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50%;
    background: url("../img/guidance-section-bg.png");
    background-size: cover;
    background-position: bottom right;
}

.guidance-section .right-side {
    z-index: 1;
}

.guidance-sli img {
    margin: 0% auto;
    display: block;
}

.guidance-sli-box .guidance-sli img {
    object-fit: contain;
    width: auto;
}

.guidance-sli-box .guidance-sli .owl-nav {
    position: absolute;
    right: 0;
    bottom: 30px;
    display: flex;
    justify-content: space-between;
    width: 85px;
}

.guidance-sli-box .guidance-sli .owl-nav span {
    all: unset;
    font-size: 35px;
    margin-top: -5px;
}

.guidance-sli-box .guidance-sli .owl-nav button {
    all: unset;
    height: 40px;
    width: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease-in-out;
}

.guidance-sli-box .guidance-sli .owl-nav button:hover {
    background: #fc6c78;
}

/*.guidance-section .right-side::after{*/
/*	content: '';*/
/*    position: absolute;*/
/*    background: url(../img/testimonial-bg.png) no-repeat;*/
/*    height: 100%;*/
/*    width: 100%;*/
/*    left: 0;*/
/*    z-index: -1;*/
/*}*/
.guidance-section span {
    letter-spacing: 2.2px;
    background: var(--blue);
    padding: 6px;
    border-radius: 6px;
}

.guidance-section h2 {
    color: var(--purple);
    font-size: 52px;
    line-height: 52px;
}

.guidance-section a {
    min-width: 250px;
    height: 60px;
    margin: 0 !important;
}

.guidance-section .experience-img {
    top: 55%;
    left: 65%;
    transform: translate(-50%, -50%);
}

/*------------------------------------*\
			NUMBER-SECTION
\*------------------------------------*/
.text-gray {
    color: #9c9c9c;
}

.number-section h2, .our-efforts h2 {
    font-size: 54px;
    line-height: 58px;
    color: #02b0ef;
    font-weight: bolder;
}

.number-section .inner-item {
    border-left: 1px solid #cbb5ce;
    padding-top: 100px;
    padding-bottom: 100px;
    display: grid;
    align-content: center;
}

.inner-item h5.text-gray {
    margin-bottom: 10px;
    display: grid;
    align-items: center;
    height: 55px;
}

h5.text-gray i {
    font-size: 60px;
}

.number-section .inner-item:last-child {
    border-right: 1px solid #cbb5ce;
}

/*------------------------------------*\
			service-section
\*------------------------------------*/
.service-section .inner-box {
    border: 1px solid #9c9c9c58;
    padding: 40px;
    border-radius: 20px;
    transition: 0.3s ease-in-out;
}

.service-section .middle-box {
    box-shadow: 0px 10px 80px #00000008;
    background: #ffe0e266;
}

.service-section .inner-box .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    width: 140px;
    font-size: 50px;
    margin: 0% auto;
    background: #ffeff0;
    border-radius: 50%;
    color: #fc6c78;
    transition: 0.3s ease-in-out;
}

.service-section .inner-box h2 {
    color: #473479;
    font-weight: bolder;
}

.service-section .inner-box h2 a {
    color: #473479;
    font-weight: bolder;
    font-size: 28px;
    line-height: 36px;
}

.service-section a {
    font-size: 18px;
}

.service-section .inner-box:hover {
    box-shadow: 0px 10px 80px #00000008;
    background: #ffe0e266;
}

.service-section .inner-box:hover .icon {
    background: #fff;
}

/*------------------------------------*\
			FAQ-SECTION
\*------------------------------------*/
.faq-section .right-side .img-content {
    top: 40px;
    left: 30px;
}

.faq-section .right-side .img-content h4 {
    letter-spacing: 1.1px;
}

.faq-section .right-side .img-content a {
    display: inline-block;
    border: 2px solid #473479;
    padding: 17px;
    border-radius: 6px;
}

.faq .accordion-button {
    gap: 20px;
}

.accordion-button::after {
    content: '\f067';
    font-family: 'Font Awesome 6 Pro';
    background-image: none;
    color: #e4d9ff;
}

.accordion-button {
    font-size: 18px;
    padding: 10px 0;
    color: var(--primary) !important;
    font-weight: 600;
}

.accordion-button:not(.collapsed)::after {
    content: '\f068';
    background-image: none;
    color: #e4d9ff !important;
}

.accordion-body {
    font-size: 22px;
    line-height: 36px;
    font-weight: 600;
}

/*------------------------------------*\
			MEMBER-SIGN-UP
\*------------------------------------*/
.site-form input, .site-form select {
    width: 100%;
    border: 2px solid #cbb5ce5f;
    border-radius: 6px;
    padding: 17px;
    font-size: 18px;
    color: var(--darkpurple);
    margin-bottom: 20px;
}

.site-form input[type="checkbox"] {
    accent-color: var(--darkpurple);
    width: 30px;
    height: 30px;
}


.site-form .form-field input::placeholder {
    color: var(--darkpurple);
}

.member-sign-up .form-side h4 {
    letter-spacing: 2.2px;
}

.member-sign-up p {
    max-width: 450px;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
}

.form-field .custom-date {
    background-image: url(../img/icon/calendar.svg);
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.member-sign-up .account-side .experience-img {
    top: 70%;
    left: 70%;
    transform: translate(-50%, -50%);
}

.member-sign-up .account-side .member-userpic {
    margin-left: 50px;
}


/*------------------------------------*\
			LISTING
\*------------------------------------*/
.gray-btn {
    padding: 10px 16px;
    border: 1px solid #cbb5ce5f;
    border-radius: 6px;
}

.gray-bg {
    background-color: #cbb5ce5f;
}

.listing select {
    -webkit-appearance: none;
    background: url(../img/icon/downarrow.svg) no-repeat;
    background-position: 92%;
    padding: 10px 45px 10px 10px !important;
}

.filter-section span {
    min-width: 70px;
}

.filter-section label {
    font-size: 14px;
    line-height: 25px;
}

.checkbox-round {
    width: 14px;
    height: 14px;
    background-color: white;
    border-radius: 50%;
    vertical-align: middle;
    border: 1px solid #cbb5ce;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    transition: 0.2s;
}

.checkbox-round:checked {
    background-color: #cbb5ce;
    box-shadow: inset 0px 0px 0px 2px #fff;
    transition: 0.2s;
}

.filter-check {
    height: 125px;
    overflow-y: scroll;
}

.filter-check::-webkit-scrollbar, .payment-box .list::-webkit-scrollbar {
    width: 15px;
}

.filter-check::-webkit-scrollbar-thumb, .payment-box .list::-webkit-scrollbar-thumb {
    border: 5px solid transparent;
    border-radius: 100px;
    background-color: #cbb5ce5f;
    background-clip: content-box;
}

.filter-check::-webkit-scrollbar-track, .payment-box .list::-webkit-scrollbar-track {
    background-color: #fff;
    border-radius: 100px;
    border: 1px solid #cbb5ce5f;
}

input.number {
    width: 30px;
}

.text-orange {
    color: #ff6500;
}

.text-green {
    color: #5bcdb7;
}

.ct-detail p {
    max-width: 530px;
}

.rounded-20 {
    border-radius: 20px;
}

.about-hope p span, .more-about h5 {
    color: #cbb5ce;
}

.inner-content img {
    max-width: 45px;
}

.image-content .img-inner {
    top: 40px;
    left: 30px;
}

.image-content .img-inner h4 {
    letter-spacing: 2.2px;
}

.image-content .img-inner a {
    display: inline-block;
    border: 2px solid #fff;
    padding: 17px;
    border-radius: 6px;
}

.custom-checkbox label {
    border: 1px solid #cbb5ce5f;
    cursor: pointer;
    height: 20px;
    right: 0;
    top: 0;
    width: 20px;
}

.custom-checkbox label:after {
    border: 2px solid #fff;
    border-top: none;
    border-right: none;
    content: "";
    height: 5px;
    left: 4px;
    opacity: 0;
    position: absolute;
    top: 5px;
    transform: rotate(-45deg);
    width: 10px;
}

.custom-checkbox input[type="checkbox"] {
    visibility: hidden;
}

.custom-checkbox input[type="checkbox"]:checked + label {
    background-color: #27b98b;
    border-color: #27b98b;
}

.custom-checkbox input[type="checkbox"]:checked + label:after {
    opacity: 1;
}


/*----------------------------*\
			FAQ
\*----------------------------*/
.faq .accordion-button {
    font-size: 22px;
}

.faq .accordion-body {
    font-size: 18px;
    line-height: 26px;
}

.mail-link {
    color: #2e4475;
    text-decoration: underline;
}


/*----------------------------------*\
			MENBER-SIGN-UP-STEP-2
\*---------------------------------*/
.text-darkpink {
    color: #ff008f;
}

.otp-field {
    height: 140px;
}

.text-light-blue {
    color: #02b0ef;
}


/*---------------------------------------*\
	CONSULTANT-ACCOUNT-CREATION-STEP-2
\*---------------------------------------*/
.site-form textarea::placeholder {
    color: var(--darkpurple);
}

.site-form textarea {
    width: 100%;
    border: 2px solid #cbb5ce5f;
    border-radius: 6px;
    font-size: 18px;
    line-height: 30px;
    padding: 20px 15px 10px;
    color: var(--darkpurple);
    margin-bottom: 20px;
}

/* #count {
    left: 125px;
    top: 28px;
} */
.custom-pic {
    border: 2px dashed #cbb5ce5f;
    width: 210px;
    height: 95px;
    cursor: pointer;
}

.choose-file {
    background: var(--purple);
    border: 1px solid var(--purple);
    color: #fff !important;
    padding: 8px !important;
    border-radius: 6px;
    transform: translate(50%, -50%);
    top: 50%;
}

.consultant-account .account-side .experience-img {
    top: 81%;
    left: 65%;
}

/*------------------------------------*\
			DONATION
\*------------------------------------*/
.donation {
    background: #fffbef;
}

.donation h1 {
    font-size: 54px;
}

.donation-form input {
    width: 212px !important;
}

.gray-border {
    border: 2px solid #cbb5ce5f;
}

.donation .right-side {
    z-index: 1;
}

.donation .right-side::after {
    content: '';
    display: block;
    width: 100%;
    height: 335px;
    background: linear-gradient(to right, #f3f2e2, #c8ebeb);
    position: absolute;
    right: 0;
    z-index: -1;
    top: 0;
    border-radius: 20px;
}

.right-content {
    position: absolute;
    background: #fff 0% 0% no-repeat padding-box;
    border: 1px solid #cbb5ce;
    border-radius: 10px;
    padding: 20px;
    width: 240px;
    top: 35%;
    transform: translate(-50%, 50%);
    left: 75%;
    z-index: 1;
}

.right-content:after {
    content: '';
    background: #fff 0% 0% no-repeat padding-box;
    border: 1px solid #cbb5ce;
    position: absolute;
    border-radius: 10px;
    height: 72px;
    width: 240px;
    top: 65%;
    transform: translate(-50%, -50%);
    left: 55%;
    z-index: -1;


}

/*------------------------------------*\
			REVIEW
\*------------------------------------*/
.customer-review {
    position: relative;
    z-index: -1;
}

.fs-54 {
    letter-spacing: -4px;
}

/*------------------------------------*\
			CONTACT
\*------------------------------------*/
.contact .right-side {
    border: 1px solid #cbb5ce5f;
    border-radius: 20px;
    padding: 60px;
}

.contact .right-side input[type=checkbox] {
    width: 20px;
    height: 20px;
    border: 1px solid #cbb5ce;

}

.left-gradient:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #f3f2e2, #c8ebeb);
    position: absolute;
    right: 0;
    z-index: -1;
    top: 0;
    border-radius: 20px;
}

.left-gradient .experience-img {
    top: 50%;
    left: 57%;
    transform: translate(-50%, -50%);
}

/*------------------------------------*\
			INSIGHTS
\*------------------------------------*/
.insights-meta {
    border: 1px solid #cbb5ce5f;
    border-radius: 20px;
    background: #fcfcfc;
    padding: 22px 30px 40px;
    z-index: 9;
    position: relative;
}

.insights-img {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
    height: 320px;
}

.insights-cat {
    display: inline-block;
    border: 1px solid #90c6d95f;
    border-radius: 6px;
    background: #e4f8ff;
    padding: 5px 10px;
}

.recently-upload img {
    height: 393px;
}

.insights-meta h2 {
    color: #473479;
    font-weight: bold;
    font-size: 27px;
}

/*------------------------------------*\
			INSIGHTS-DETAILS
\*------------------------------------*/
.insights-detail h1 {
    max-width: 670px;
    color: #473479;
    font-weight: 500;
}

.insights-detail .insights-img {
    height: 250px;
}

.post-by p {
    max-width: 330px;
}

/*------------------------------------*\
			WHAT'S-AN-IC
\*------------------------------------*/

.fs-38 {
    font-size: 38px;
    line-height: 42px;
}

.how-do {
    background: url(assets/img/whats-bg.png) no-repeat center;
    background-size: cover;
}

video.banner-video {
    max-width: 100%;
    height: 320px;
    border-radius: 20px;
    object-fit: cover;
}

/*------------------------------------*\
			BECOME-A-MEMBER
\*------------------------------------*/
.how-do {
    background: url('../img/whats-bg.png') no-repeat center;
    background-size: cover;
}

.purple-border {
    background-color: transparent;
    border: 2px solid var(--darkpurple);
    color: var(--darkpurple) !important;
}

.sound-like .left-side::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #f3f2e2, #c8ebeb);
    position: absolute;
    right: 0;
    z-index: -1;
    top: 0;
    border-radius: 20px;
}

.sound-like ul li {
    position: relative;
    padding-left: 40px;
    font-size: 22px;
    line-height: 32px;
    padding-bottom: 30px;
}

.sound-like ul li::before {
    content: '';
    position: absolute;
    background: url('../img/icon/green-right.svg') no-repeat;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
}

.sound-like p {
    max-width: 130px;
}

.icon-section {
    background: #fff8ff;
}

.icon-section h3 {
    max-width: 475px;
}

.rounded-10 {
    border-radius: 10px;
}

.fs-36 {
    font-size: 36px;
    line-height: 42px;
}

.founder h3 {
    max-width: 950px;
}

.founder h3::after {
    bottom: 25px;
    right: -110px;
}

.founder h3::before {
    top: -20%;
    left: -15%;
    rotate: 180deg;
}

.founder h4 {
    letter-spacing: 2.2px;
    color: #473479;
    font-weight: 600;
}

.founder h5 {
    color: #02b0ef;
    font-weight: 600;
}

.payment-box ul li {
    color: #9c9c9c;
    font-size: 18px;
    padding-bottom: 10px;
    list-style: disc;
    margin-left: 25px;
    padding-left: 5px;
}

.payment-box h4 {
    position: relative;
    padding-left: 30px;
}

.payment-box h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    background: url('../img/icon/green-right.svg') no-repeat;
    height: 20px;
    width: 20px;
}

.payment-box .list {
    height: 230px;
    overflow-y: scroll;
}

.payment-slider.owl-theme .owl-nav {
    margin-top: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% + 120px);
    display: flex;
    justify-content: space-between;
    left: -60px;
}

.sound-like .unhappy-img {
    top: 63%;
    left: 65%;
    transform: translate(-50%, -50%);
}

.sound-like .feeling-img {
    top: 75%;
    left: 19%;
    transform: translate(-50%, -50%);
}

/*------------------------------------*\
			CREATE-ACCOUNT
\*------------------------------------*/
.create-account form button {
    min-width: 355px;
}

.create-account .icon-box .icon {
    width: 63px;
    height: 63px;
    background: #fff8ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 50%;
}

.create-account .icon-box.middle-box {
    background: #fff8ff;
}

/*------------------------------------*\
			MEET-THE-TEAM
\*------------------------------------*/
.our-efforts p {
    max-width: 860px;
    margin: 0 auto;
}

.member-img img {
    z-index: 1;
    position: relative;
}

.member-img::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #f3f2e2, #c8ebeb);
    position: absolute;
    right: 0;
    /* z-index: -1; */
    top: 0;
    border-radius: 20px;
}

.text-lightpink {
    color: #cbb5ce;
}

.bg-pink {
    background: #fff8ff;
}

.purpose-section {
    background: url('../img/purpose-bg.png') no-repeat center;
    background-size: cover;
}

.chat {
    position: fixed;
    right: 25px;
    bottom: 35px;
    z-index: 1;
}

.review {
    position: fixed;
    padding: 7px;
    writing-mode: tb-rl;
    line-height: 30px;
    rotate: -180deg;
    transform: translate(50%, 50%);
    top: 50%;
    left: 20px;
    z-index: 2;
    display: none;
}


/*------------------------------------*\
				SUPPORT
\*------------------------------------*/
.support-icon-section .middle-column {
    background: #edfaff;
}

.support-form .right-side {
    border: 1px solid #cbb5ce5f;
    border-radius: 20px;
    padding: 60px;
}

.support-form .left-gradient .experience-img {
    top: 59%;
    left: 67%;
}

.support-form a.login {
    border: 2px solid #9c9c9c;
    border-radius: 6px;
    padding: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--darkpurple);
    font-size: 18px !important;
}


/*new-styleing*/
/*themes-css*/
.padd-top-b {
    padding: 80px 0;
}

.themes-h4 {
    color: #fc6c78;
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
}

.themes-h2 {
    position: relative;
    color: #473479;
    font-size: 54px;
    font-weight: 700;
    line-height: 55px;
    margin-bottom: 20px;
    letter-spacing: -3px;
}

.themes-h2 span {
    display: block;
}

.themes-h3 {
    color: #473479;
    font-size: 38px;
    font-weight: 600;
    letter-spacing: -3px;
    line-height: 40px;
}

.campaigns-sec {
    position: relative;
}

.al-center {
    align-items: center;
}

.fot-wei {
    font-weight: 500;
}

.themes-h4.no-mg {
    margin-bottom: 0;
}

/*themes-css*/

/*input number style*/
.input-box {
    position: relative;
    border: 2px solid #90c6d95f;
    height: 100%;
    border-radius: 5px;
}

.input-number {
    width: 50px;
    padding: 0 12px;
    vertical-align: top;
    text-align: center;
    outline: none;
    border: 0;
    color: #2c2c2c;
    font-weight: 600;
}

.input-number,
.input-number-decrement,
.input-number-increment {
    height: 50px;
    user-select: none;
}

.input-number-decrement,
.input-number-increment {
    display: inline-block;
    width: 40px;
    background: #beeeff;
    color: #444;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    height: 50px;
    line-height: 55px;
}

.input-number-decrement:active,
.input-number-increment:active {
    background: #beeeff;
}

.input-number-decrement {
    border-right: none;
}

.input-number-increment {
    border-left: none;
    border-radius: 0 4px 4px 0;
}

/*input number style*/

.campaigns-top-bar {
    position: relative;
    border-top: 2px solid #dbdcdd;
    padding-top: 25px;
    margin-top: 20px;
    border-bottom: 2px solid #dbdcdd;
    padding-bottom: 25px;
}

.campaigns-top-bar form {
    display: flex;
    width: 100%;
    position: relative;
}

.campaigns-top-bar form input {
    width: 100%;
    border: 2px solid #dbdcdd;
    padding: 12px 25px;
    border-radius: 5px;
    padding-right: 50px;
    height: 50px;
}

.campaigns-top-bar form button {
    position: absolute;
    border: 0;
    background: transparent;
    right: 10px;
    color: #dbdcdd;
    font-size: 25px;
    top: 11px;
}

.campaigns-nav-right {
    display: flex;
    justify-content: space-between;
}

.campaigns-nav-right select {
    background: #beeeff;
    border: 2px solid #90c6d95f;
    font-size: 14px;
    font-family: 'Quicksand';
    color: #2c2c2c;
    font-weight: 600;
    padding: 0 10px;
    height: 50px;
    border-radius: 5px;
}

.campaigns-nav-right .midel {
    display: flex;
    align-items: center;
}

.campaigns-nav-right .midel p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    margin-right: 10px;
}

.campaigns-nav-right {
    display: flex;
    justify-content: space-between;
}

.campaigns-nav-right select {
    background: #beeeff;
    border: 2px solid #90c6d95f;
    font-size: 14px;
    font-family: 'Quicksand';
    color: #2c2c2c;
    font-weight: 600;
    padding: 0 10px;
    height: 50px;
    border-radius: 5px;
}

.campaigns-nav-right .midel {
    display: flex;
    align-items: center;
}

.campaigns-nav-right .midel p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    margin-right: 10px;
}

.dontainer-box-inner .ct-item {
    margin-bottom: 20px;
}

.dontainer-box-inner .ct-item img.image.campaign-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.dontainer-box-inner {
    padding: 30px 0;
}

.pagnation {
    position: relative;
}

.pagnation ul {
    display: flex;
}

.pagnation ul li a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #90c6d95f;
    color: #cbcbcb;
    transition: 0.3s ease-in-out;
    border-right: 0;
}

.pagnation ul li:first-child a {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.pagnation ul li:last-child a {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-left: 0;
}

.pagnation ul li a i {
    background: #beeeff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    border-radius: 10px;
    color: #2c2c2c;
}

.pagnation ul li:first-child a i {
    color: #90c6d9;
}

.pagnation ul li a.active {
    color: #2c2c2c;
}

.pagnation ul li a:hover {
    color: #2c2c2c;
}

.pagnation ul li:nth-child(5) a {
    border-right: 0 !important;
}

.pagnation ul li:nth-child(2) a {
    border-left: 0;
}

.work-sec {
    position: relative;
    z-index: -1;
    background: #fff;
}

.work-sec .row {
    align-items: center;
}

.video-box {
    position: relative;
    overflow: hidden;
    height: 350px;
    border-radius: 10px;
}

.contaent-sec {
    position: relative;
}

.contaent-sec h6 {
    color: #2c2c2c;
    font-size: 35px;
    line-height: 40px;
    letter-spacing: -2px;
    font-weight: 500;
}

.themes-h3 {
    color: #473479;
    font-size: 38px;
    font-weight: 600;
    letter-spacing: -3px;
    line-height: 35px;
}

.contaent-sec hr {
    margin: 40px 0;
}


.video-box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s ease-in-out;
}

.video-box a {
    position: absolute;
    bottom: 30px;
    display: flex;
    align-items: center;
    color: #fff;
    left: 30px;
}

.video-box a img {
    all: unset;
    margin-right: 10px;
}

.video-box:hover img {
    transform: scale(1.2);
}

.video-box:hover a img {
    transform: unset;
}

.contaent-sec {
    position: relative;
}

.contaent-sec h6 {
    color: #2c2c2c;
    font-size: 35px;
    line-height: 40px;
    letter-spacing: -2px;
    font-weight: 500;
}

.contaent-sec hr {
    margin: 40px 0;
}

.used-sec {
    position: relative;
    z-index: 0;
}

.used-sec .useud-banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top right;
    z-index: -1;
}

.used-sec h2 {
    color: #2c2c2c;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.used-sec ul {
    display: flex;
    align-items: center;
}

.used-sec ul li:first-child {
    margin-right: 20px;
}

.used-sec ul li:last-child a {
    border: 2px solid #473479;
    padding: 15px 20px;
    border-radius: 5px;
}

form.site-form a {
    color: #9c9c9c;
}

.support-column h4 {
    font-weight: 600;
    display: grid;
    align-items: center;
    height: 70px;
}

ul.mt-4.list-number li a {
    color: #02b0ef;
    font-size: 18px;
    font-weight: 600;
    line-height: 25px;
    text-decoration: underline;
}

form.site-form.style select {
    background-position: 95%;
    height: 58px;
}

form.site-form.style textarea {
    resize: none;
    height: 220px;
}

.pur-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    min-width: 212px;
    border-radius: 6px;
    background: transparent;
    color: #473479;
    border: 2px solid #473479;
    font-weight: 600;
}

form.site-form.style ul {
    display: flex;
}

form.site-form.style ul li:first-child {
    margin-right: 20px;
}

.ct-info ul {
    display: flex;
    align-items: center;
}

.ct-info ul li h6 {
    color: #2c2c2c;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 0;
}

.ct-info ul li h4 {
    color: #473479;
    font-size: 24px;
    font-weight: 600;
    margin-top: 5px;
}

.capmpaign-box .style div:last-child {
    display: flex;
    align-items: center;
}

.capmpaign-box .style div:last-child img {
    height: auto;
    width: auto;
    object-fit: contain;
    margin: 0 3px;
}

.capmpaign-box .style div h5 {
    background: #f4f4f4;
    padding: 5px 20px;
    display: inline-block;
    color: #473479;
    font-weight: 600;
    border-radius: 5px;
    margin-right: 15px;
}

.capmpaign-box .style div p {
    color: #646464;
    font-size: 14px;
    margin-right: 15px;
}

.capmpaine-content {
    padding: 20px 0;
}

.capmpaine-content h4 {
    color: #2c2c2c;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
}

.capmpaine-content label {
    color: #2c2c2c;
    font-size: 14px;
    font-weight: 700;
    opacity: 0.4;
}

.capmpaine-chatbox {
    position: relative;
}

.chat-box-top {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 25px 0;
    border-top: 2px solid #cbb5ce5f;
    border-bottom: 2px solid #cbb5ce5f;
}

.chat-box-top div {
    display: flex;
    align-items: center;
}

.chat-box-top div h6 {
    color: #9c9c9c;
    font-size: 14px;
    margin-right: 18px;
    font-weight: 600;
}

.chat-box-top div select {
    height: 50px;
    padding: 0 15px;
    background: #beeeff;
    border: 1px solid #cbb5ce5f;
    border-radius: 10px;
    color: #2c2c2c;
    font-weight: 500;
}

.chat-box-top div h5 {
    color: #2c2c2c;
    font-weight: 600;
    margin-right: 10px;
}

.chat-box-top div span {
    color: #9c9c9c;
    font-weight: 600;
}

.chat-area {
    position: relative;
}

.chat-ineer-box {
    position: relative;
    margin: 20px 0;
    border-bottom: 2px solid #cbb5ce5f;
    padding: 10px 0;
}

.chat-ineer-box ul {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.chat-ineer-box ul li:first-child {
    width: 8%;
}

.chat-ineer-box ul li:last-child {
    width: 15%;
}

.chat-ineer-box ul li {
    width: 78%;
    display: flex;
}

.chat-ineer-box ul li h6 {
    text-align: right;
    color: #9c97a8;
    font-size: 16px;
    font-weight: 600;
}

.chat-ineer-box ul li h5 {
    color: #000;
    font-weight: 700;
    margin: 0 3px;
}

.chat-ineer-box ul li h5 span {
    color: #fc6c78;
}

.chat-ineer-box ul li img {
    border-radius: 50px;
    height: 50px;
    width: 50px;
    object-fit: cover;
    margin-right: 20px;
}

.chat-ineer-box p {
    color: #697071;
    line-height: 25px;
}

.right-side-bar {
    position: relative;
}

.right-boy-box {
    position: relative;
    border: 2px solid #ddd8ed;
    border-radius: 10px;
    background: #fcfcfc;
    padding: 5px 25px;
    overflow: hidden;
}

.right-boy-box .boy-top {
    display: block;
    justify-content: space-between;
    margin: 20px 0;
    margin-bottom: 3px;
}

.right-boy-box .boy-top li {
    display: flex;
    align-items: center;
}

.right-boy-box .boy-top li h3.raised {
    margin: 0;
}

.right-boy-box .boy-top .firsct {
    display: flex;
    align-items: center;
}

.right-boy-box .boy-top .firsct h4 {
    color: #473479;
    font-size: 28px;
    font-weight: bolder;
    font-family: 'Quicksand';
    margin-right: 15px;
}

.right-boy-box .boy-top .firsct .active-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 105px;
    background: #27b98b;
    border-radius: 5px;
    color: #fff;
    font-size: 13px;
    position: relative;
    padding-right: 10px;
    height: 40px;
    padding-top: 14px;
}

.right-boy-box .boy-top .firsct .active-btn input {
    margin: 0 5px;
    padding: 0;
    height: 15px;
    width: 15px;
    position: absolute;
    left: 0;
    top: 12px;
    accent-color: #71dd7e;
}

.right-boy-box .boy-top li:last-child h6 {
    margin: 10px 0;
    color: #2c2c2c;
    font-weight: 700;
    font-size: 16px;
}

.right-boy-box .boy-top li:last-child h5 {
    color: #2c2c2c;
    font-weight: 700;
    font-size: 16px;
    margin-left: 5px;
}

.right-side-bar h3 {
    color: #473479;
    font-size: 24px;
    font-weight: 600;
    font-family: 'Quicksand';
    margin-bottom: 15px;
}

.right-side-bar h3 span {
    color: #2c2c2c;
    font-size: 20px;
    font-weight: 600;
    font-family: 'Quicksand';
}

/*.right-side-bar form h3 {*/
/*    all: unset;*/
/*    color: #fc6c78;*/
/*    font-size: 22px;*/
/*    margin-bottom: 20px !important;*/
/*    font-weight: 600;*/
/*    display: block;*/
/*}*/
.names-box {
    position: relative;
}

.names-box h5 {
    color: #2c2c2c;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Quicksand';
    margin-bottom: 10px;
}

.names-box table {
    width: 100%;
}

.names-box table tbody tr {
    border-bottom: 2px solid #ddd8ed;
}

.names-box table tbody tr td {
    padding: 15px 10px;
    color: #2c2c2c;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Quicksand';
}

.table-scroll {
    overflow-y: scroll;
    margin-bottom: 10px;
    padding-bottom: 0;
    border: 2px solid #ddd8ed;
    border-radius: 10px;
}

.table-scroll::-webkit-scrollbar {
    width: 20px;
    padding: 5px;
}

/* Track */
.table-scroll::-webkit-scrollbar-track {
    border: 1px solid #ddd8ed;
    border-radius: 50px;
}

/* Handle */
.table-scroll::-webkit-scrollbar-thumb {
    background: #b6aecc;
    border-radius: 50px;
    width: 10px;
}

.names-box table tbody tr td:last-child {
    text-align: right;
    padding-right: 35px;
}

.names-box table tbody tr.active {
    background-color: #fc6c78;
}

.names-box table tbody tr.active td {
    color: #fff;
}

.names-box table tbody tr.active .container1 .checkmark:after {
    background: #fff;
}

.name-adds {
    position: relative;
    margin: 10px 0;
    padding-bottom: 20px;
    z-index: 0;
}

.name-adds::after {
    content: '';
    position: absolute;
    left: -10%;
    bottom: 3px;
    height: 1px;
    width: 120%;
    background: #ddd8ed5f;
}

.name-adds ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.name-adds ul li {
    display: flex;
    position: relative;
}

.name-adds ul li.d-flex {
    align-items: center;
}

.name-adds ul li:first-child input {
    width: 75%;
    border: 2px solid #ddd8ed;
    height: 40px;
    font-size: 14px;
    padding: 10px;
    font-family: 'Quicksand';
    padding-right: 50px;
    border-radius: 5px;
}

.name-adds ul li:first-child button {
    position: absolute;
    right: 15px;
    top: 7px;
    background: transparent;
    border: 2px solid #ddd8ed;
    color: #ddd8ed;
    display: grid;
    justify-content: center;
    height: 25px;
    width: 25px;
    font-size: 16px;
    border-radius: 50px;
    align-content: center;
}

.name-adds ul li:first-child button i {
    /*margin-top: 5px;*/
}

.name-adds ul li {
    position: relative;
    width: 50%;
}

.name-adds ul li:first-child {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.name-adds ul li label {
    color: #000;
    font-size: 17px;
    margin: 0;
    margin-right: 7px;
}

.name-adds ul li .name-add-price {
    display: flex;
    border: 2px solid #ddd8ed;
    align-items: center;
    padding: 8px;
    border-radius: 5px;
}

.name-adds ul li .name-add-price input::-webkit-outer-spin-button,
.name-adds ul li .name-add-price input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.name-adds ul li .name-add-price input {
    width: 100%;
    border: 0;
    border-left: 1px solid #ddd8ed;
    margin-left: 10px;
    padding-left: 10px;
}

.name-adds ul li .name-add-price h5 {
    margin: 0;
    color: #2c2c2c;
    width: 100px;
}

.name-adds ul li select {
    padding: 8px 3px;
    background: #beeeff;
    border: 1px solid #cbb5ce5f;
    border-radius: 10px;
    color: #2c2c2c;
    font-weight: 500;
}

.paymnet-box {
    position: relative;
}

.paymnet-box h5 {
    color: #2c2c2c;
    font-size: 18px;
    font-weight: 600;
    margin: 15px 0;
    font-family: 'Quicksand';
}

.payment-chosse {
    position: relative;
    display: flex;
    margin: 10px 0;
}

.payment-chosse input {
    height: 30px;
    width: 30px;
    margin-right: 10px;
    accent-color: var(--darkpurple);
}

.payment-chosse img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.paymnet-box p {
    color: #2c2c2c;
    font-family: 'Quicksand';
    margin: 20px 0;

}

.paymnet-box p a {
    color: #02b0ef;
    text-decoration: underline;
    font-weight: 700;
}

.donations-btn {
    display: flex;
    background: #fc6c78;
    justify-content: space-between;
    padding: 20px 20px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Quicksand';
    border-radius: 10px;
    transition: 0.3s ease-in-out;
}

.share-box {
    position: relative;
    border: 2px solid #ddd8ed;
    border-radius: 10px;
    background: #fcfcfc;
    padding: 15px;
    overflow: hidden;
    margin: 20px 0;
}

.share-box form {
    position: relative;
    display: flex;
    border: 2px solid #ddd8ed;
    border-radius: 20px;
    background: #f4f4f4;
}

.share-box form input {
    width: 70%;
    color: #2c2c2c;
    font-size: 18px;
    padding: 15px 10px;
    border-radius: 15px;
    border: 0;
}

.share-box form button {
    width: 30%;
    background: #02b0ef;
    color: #fff;
    border: 0;
    border-radius: 20px;
}

.share-box .d-flex {
    justify-content: space-between;
    margin-top: 20px;
}

.share-box .d-flex ul {
    display: flex;
    align-items: center;
}

.share-box .d-flex ul li {
    margin-right: 5px;
}

.share-box .d-flex ul li h6 {
    margin: 0;
    color: #2c2c2c;
    font-size: 18px;
    font-family: 'Quicksand';
    font-weight: 600;
}

.share-box .d-flex ul li img {
    height: 35px;
}

.share-box .d-flex .embed-btn {
    color: #000;
    background: #e8e8e8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 135px;
    padding: 10px;
    font-weight: 600;
    font-family: 'Quicksand';
}

.sponser-box {
    position: relative;
    border: 2px solid #ddd8ed;
    border-radius: 10px;
    background: #fcfcfc;
    padding: 25px;
    overflow: hidden;
}

.sponser-box ul {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    z-index: 0;
}

.sponser-box ul::before {
    content: '';
    position: absolute;
    left: -10%;
    bottom: 0;
    height: 1px;
    background: #ddd8ed;
    width: 120%;
    z-index: -1;
}

.sponser-box ul li:first-child {
    width: 15%;
}

.sponser-box ul li:last-child {
    width: 35%;
}

.sponser-box ul li {
    width: 45%;
}

.sponser-box ul li h6 {
    text-align: right;
    color: #9c97a8;
    font-size: 16px;
    font-weight: 600;
}

.sponser-box ul li h5 {
    color: #000;
    font-weight: 700;
}

.sponser-box ul li h5 span {
    color: #fc6c78;
}

.load-btn {
    /* border: 2px solid #473479; */
    display: flex;
    padding: 15px;
    border-radius: 10px;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    color: #473479;
    transition: 0.3s ease-in-out;
}

.container1 {
    position: relative;
    cursor: pointer;
    font-size: 22px;
    overflow: hidden;
}

/* Hide the browser's default radio button */
.container1 input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    right: 5px;
    z-index: 1;
    height: 25px;
    width: 25px;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    /*top: 0;*/
    right: 5px;
    height: 22px;
    width: 22px;
    border-radius: 50%;
    border: 2px solid #ddd8ed;
}

/* On mouse-over, add a grey background color */
/*.container1:hover input ~ .checkmark {
  background-color: #B6AECC;
}
*/
/* When the radio button is checked, add a blue background */
.container1 input:checked ~ .checkmark {
    /*background-color: #2196F3;*/
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.container1 input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.container1 .checkmark:after {
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #b6aecc;
    transform: translate(-50%, -50%);
}

.modal-dialog.dontainetion-popup {
    max-width: 700px;
    /*    top: 50%;
        margin: 0;
        left: 50%;
        transform: translate(-50%, -50%) !important;
        overflow: hidden;*/
}

.dontainetion-popup .btn-close {
    all: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #000;
    opacity: 1;
    height: 30px;
    width: 30px;
    position: absolute;
    right: -10px;
    top: -10px;
}

.dontainetion-popup .modal-content {
    padding: 20px 20px;
    border-radius: 20px;
    overflow: hidden;
}

.dontainetion-popup h3 {
    font-size: 34px;
    color: #473479;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Quicksand';
}

.dontainetion-popup h4 {
    font-size: 24px;
    color: #473479;
    font-weight: 600;
    margin-bottom: 20px;
}

.dontainetion-popup ul {
    display: flex;
    margin-bottom: 20px;
    /*padding-bottom: 20px;*/
    /*border-bottom: 2px solid #707070;*/
}

.dontainetion-popup ul li {
    width: 50%;
}

.dontainetion-popup ul li h5 {
    font-size: 20px;
    color: #2c2c2c;
    font-weight: 600;
    margin-bottom: 5px;
}

.dontainetion-popup ul li h6 {
    color: #6f57af;
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 600;
}

.dontainetion-popup ul li:last-child {
    text-align: right;
}

.dontainetion-popup ul:last-child {
    border: 0;
    padding-bottom: 0;
}

.dontainetion-popup .total h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.dontainetion-popup .total h6 {
    color: #fc6c78;
    font-weight: 700;
    font-size: 24px;
}

.dontainetion-popup .img-size {
    height: 100%;
    width: 95%;
}

.dontainetion-popup .al-center {
    align-items: center;
}

.dontainetion-popup ul.border1 {
    border-bottom: 4px solid #24a88f;
    padding-bottom: 10px;
}

.dontainetion-popup hr {
    width: 110%;
    margin: 20px 0;
    margin-left: -5%;
    opacity: 1;
    background: #707070;
}

.dontainetion-popup h4.form-head {
    color: #02b0ef;
    letter-spacing: 2px;
}

h4.form-head {
    color: #02b0ef;
    letter-spacing: 2px;
}

.dontainetion-popup input {
    width: 100%;
    margin-bottom: 20px;
    height: 60px;
    padding: 10px 20px;
    border: 1px solid #4734797a;
    border-radius: 5px;
}

.dontainetion-popup textarea {
    resize: none;
    width: 100%;
    margin-bottom: 20px;
    padding: 15px 20px;
    border: 1px solid #4734797a;
    border-radius: 5px;
    height: 90px;
}

.dontainetion-popup ::placeholder {
    color: #473479;
    font-size: 20px;
    font-weight: 500;
}

.dontainetion-popup .d-flex input {
    accent-color: var(--darkpurple);
    width: 30px;
    height: 30px;
    margin: 0;
    margin-right: 20px;
}

.dontainetion-popup p {
    margin-bottom: 0;
}

/*.dontainetion-popup .d-flex input:checked {
    background-color: #02b0ef;
}

.dontainetion-popup .d-flex input {
   width: 20px;
    height: 35px;
    margin-bottom: 0;
    margin-right: 20px;
    border: 2px solid #CBB5CE;
    background-color: white;
    border-radius: 5%;
    vertical-align: middle;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
}
*/

.dontainetion-popup .d-flex {
    margin-bottom: 20px;
    align-items: center;
}

.dontainetion-popup p a {
    color: #02b0ef;
}

.dontainetion-popup .d-flex label {
    font-weight: 500;
    color: #2c2c2c;
}

.dontainetion-popup .d-flex label a {
    color: #02b0ef;
    text-decoration: underline;
    font-weight: 700;
}

.dontainetion-popup button {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 170px;
    padding: 0 12px;
    border: 0;
    background: #fc6c78;
    color: #fff;
    border-radius: 5px;
    font-size: 20px;
    font-weight: 600;
    transition: 0.3s ease-in-out;
    margin-bottom: 20px;
}

form.site-form.login p {
    color: #2c2c2c;
    font-size: 17px;
}

form.site-form.login p a {
    all: unset;
    color: #02b0ef;
    text-decoration: underline;
}

form.site-form.login a {
    display: block;
    text-align: right;
    text-decoration: underline;
    color: #2c2c2c;
    font-weight: 600;
}

form.site-form.login img {
    margin-bottom: 20px;
}

.footer-new .bottom-footer.py-4 h6 {
    opacity: 0.8;
}

ul.menu img.side-bar-logo {
    display: none;
}

ul.menu #menu-remove {
    display: none;
}

.faq-section.pb-5 .row {
    align-items: center;
}

.inner-contact-section.padding-top-120.padding-bottom-120 {
    padding: 80px 0;
}

.single-contact-item {
    position: relative;
}

.single-contact-item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    color: #fff;
    background: #fc6c78;
    border-radius: 50%;
    margin-bottom: 20px;
}

.single-contact-item {
    position: relative;
    background: #fff;
    box-shadow: 0 0 10px 0 #0000001c;
    padding: 20px 30px;
    border-radius: 5px;
    display: grid;
    align-content: center;
    height: 100%;
}

.single-contact-item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    color: #fff;
    background: #fc6c78;
    border-radius: 50%;
    margin-bottom: 20px;
}

.single-contact-item .content .title {
    color: #fc6c78;
    font-size: 18px;
    font-family: 'Quicksand';
    margin-bottom: 20px;
    display: block;
    font-weight: 700;
}

.single-contact-item .content p {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.contact_map iframe {
    width: 100%;
    height: 500px;
    margin-bottom: 90px;
    border-radius: 5px;
}

ul.list-ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

ul.list-ul li i {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: 35px;
    min-width: 35px;
    background: #fc6c78;
    border-radius: 50%;
    color: #fff;
    margin-right: 10px;
}

ul.list-ul li span {
    width: 85%;
}

.tetsiomal-sec {
    margin-top: 80px;
}

.insights-item a img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}


/* Cookie Dialog */
#gdpr-cookie-message {
    position: fixed;
    right: 30px;
    bottom: 100px;
    max-width: 375px;
    background-color: #fc6c78;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.25);
    margin-left: 30px;
    z-index: 9;
}

#gdpr-cookie-message h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

#gdpr-cookie-message h5 {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    text-decoration: underline;
}

#gdpr-cookie-message p, #gdpr-cookie-message ul {
    color: white;
    font-size: 14px;
    line-height: 1.5em;
}

#gdpr-cookie-message p:last-child {
    margin-bottom: 0;
}

#gdpr-cookie-message li {
    width: 49%;
    display: inline-block;
}

#gdpr-cookie-message a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    padding-bottom: 2px;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.75);
    transition: all 0.3s ease-in;
}

#gdpr-cookie-message a:hover {
    color: white;
    border-bottom-color: var(--main-color-one);
    transition: all 0.3s ease-in;
}

#gdpr-cookie-message button,
button#ihavecookiesBtn {
    border: none;
    background: var(--main-color-one);
    color: white;
    font-family: 'Quicksand', sans-serif;
    font-size: 15px;
    padding: 7px;
    border-radius: 3px;
    margin-left: 15px;
    cursor: pointer;
    transition: all 0.3s ease-in;
}

button#gdpr-cookie-advanced {
    background: white;
    color: var(--main-color-one);
}

#gdpr-cookie-message button:last-child {
    background-color: #02b0ef;
    color: #fff;
}

#gdpr-cookie-message button:disabled {
    opacity: 0.3;
}

#gdpr-cookie-message input[type="checkbox"] {
    float: none;
    margin-top: 0;
    margin-right: 5px;
}

#gdpr-cookie-message button {
    background-color: #fff;
    color: #000;
    padding: 8px 20px;
    margin-left: 0;
    font-weight: 500;
    margin-top: 15px;
}

div#gdpr-cookie-message #gdpr-cookie-close {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 12px;
    color: #fff;
    cursor: pointer;
}

#gdpr-cookie-message button + button {
    margin-left: 10px;
}

.back-to-top {
    position: fixed;
    right: 60px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background-color: #fc6c78;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 50px;
    border-radius: 50%;
    z-index: 99;
    font-size: 25px;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.back-to-top a span i {
    color: #fff;
}

ul.social-share {
    display: flex;
}

ul.social-share li.title {
    margin-right: 20px;
    margin-left: 15px;
}

ul.social-share li {
    margin-right: 15px;
}

form.search-form {
    border: 1px solid #d5b7ba;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 20px;
}

form.search-form input {
    width: 100%;
    border: 0;
    padding: 10px 20px;
    padding-right: 50px;
}

form.search-form button {
    color: #cbb5ce;
    background: transparent;
    border: 0;
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 20px;
}

form.search-form input::placeholder {
    color: #cbb5ce;
    font-size: 20px;
}

form.search-form .form-group {
    width: 100%;
}

ul.social-share li a {
    color: #000 !important;
}

.blog-widget.widget h4 {
    color: #fc6c78;
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
}

.blog-widget.widget h4 {
    color: #fc6c78;
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
}

li.single-recent-post-item {
    display: block;
    width: 100%;
}

ul.recent_post_item {
    display: block;
    position: relative;
    margin-bottom: 20px;
}

li.single-recent-post-item .thumb {
    margin-right: 10px;
    overflow: hidden;
    border-radius: 10px;
    width: 100%;
}

li.single-recent-post-item .content h4 {
    margin-bottom: 10px;
}

.widget_archive.blog-widget.widget ul {
    margin-bottom: 20px;
}

h4.fs-22.text-avqest.text-purple.text-uppercase.border-bottom.pb-3.mb-4 {
    color: #473479;
    font-family: 'Quicksand';
    font-weight: 800;
}

.row .col-md-9 .nav_area ul.menu li:nth-child(3) a {
    padding-left: 0 !important;
}

.dynamic-page-content-wrap p b {
    color: #f56975;
}

section.dynamic-page-content-area.padding-100 {
    padding: 80px 0;
}

/* Cookie Dialog */

.footer.pt-5 .row.pb-lg-5 .col-lg-3.col-md-6:first-child {
    width: 100%;
}

.footer.pt-5 .row.pb-lg-5 .col-lg-3.col-md-6:first-child .footer-widget.widget.newsletter-widget {
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: center;
    margin-bottom: 60px;
}

.footer.pt-5 .row.pb-lg-5 .col-lg-3.col-md-6:first-child .footer-widget.widget.newsletter-widget h4 {
    color: #beeeff;
    font-size: 28px;
}

.footer.pt-5 .row.pb-lg-5 .col-lg-3.col-md-6:first-child .footer-widget.widget.newsletter-widget .newsletter-form-wrap form {
    width: 100%;
    display: flex;
    border-bottom: 2px solid #fff;
    padding: 10px 0;
}

.footer.pt-5 .row.pb-lg-5 .col-lg-3.col-md-6:first-child .footer-widget.widget.newsletter-widget .newsletter-form-wrap form input {
    width: 100%;
    background: transparent;
    border: 0;
}

.footer.pt-5 .row.pb-lg-5 .col-lg-3.col-md-6:first-child .footer-widget.widget.newsletter-widget .newsletter-form-wrap form button.submit-btn {
    background: transparent;
    border: 0;
    color: #fff;
}

.footer.pt-5 .row.pb-lg-5 .col-lg-3.col-md-6:first-child .footer-widget.widget.newsletter-widget .form-message-show .alert.alert-success {
    background: #fc6c78;
    border: 0;
    color: #fff;
    position: absolute;
    right: 0;
    bottom: 50px;
}

.footer.pt-5 .row.pb-lg-5 .col-lg-3.col-md-6:first-child .footer-widget.widget.newsletter-widget .newsletter-form-wrap {
    width: 50%;
}

.footer.pt-5 .row.pb-lg-5 .col-lg-3.col-md-6:first-child .footer-widget.widget.newsletter-widget .newsletter-form-wrap form .form-group {
    width: 100%;
}

.about_us_widget p {
    color: #fff;
    margin-top: 20px;
    font-family: 'Quicksand';
    opacity: 0.5;
    line-height: 30px;
    width: 90%;
}

form#login_form_order_page input {
    width: 100%;
    border: 2px solid #cbb5ce5f;
    border-radius: 6px;
    padding: 17px;
    font-size: 18px;
    color: var(--darkpurple);
}

form#login_form_order_page input#remember {
    height: 30px;
    width: 30px;
    margin-right: 20px;
}

form#login_form_order_page .col-md-12 {
    display: flex;
    align-items: center;
}

form#login_form_order_page .col-md-12 .form-field.mb-3 {
    width: 100%;
}

form#login_form_order_page .col-lg-8 {
    color: #000;
    margin-bottom: 20px;
}

form#login_form_order_page .col-lg-8 a {
    color: #02b0ef !important;
    text-decoration: underline;
}

form#login_form_order_page button#login_btn {
    margin-top: 20px;
}

.member-sign-up .account-side .member-userpic {
    height: 450px;
}

label.form-check-label.style {
    display: unset;
}

label.form-check-label.style a {
    display: unset;
    color: #fc6c78;
}

li.single-recent-post-item .thumb img {
    width: 100%;
    height: 300px;
}

ul.recent_post_item .content {
    z-index: 1;
    position: relative;
    border: 1px solid #cbb5ce5f;
    border-radius: 20px;
    background: #fcfcfc;
    padding: 22px 30px 40px;
    margin-top: -30px;
}

ul.recent_post_item .content h4 a {
    color: #473479;
    font-size: 24px;
    font-weight: 600;
}

ul.recent_post_item .content h4 {
    margin-bottom: 30px;
}

ul.recent_post_item .content span {
    color: #444;
    font-size: 18px;
    font-weight: 500;
    text-decoration: underline;
}

.text-right-login {
    display: block;
    text-align: right;
    text-decoration: underline;
}

section.support-form.pb-5 .style {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.support-form.ineer .login-form .form-group {
    margin-bottom: 20px;
}

.support-form.ineer .login-form button#login_btn {
    background: #fc6c78;
    border: 0;
    color: #fff;
    padding: 12px 40px;
    border-radius: 5px;
}

.support-form.ineer .login-form input#remember {
    width: 0;
    margin: 0 !important;
    height: 0 !important;
}

.support-form.ineer .login-form label {
    width: 100%;
    border: 0;
}

.head-social ul li a {
    color: #00b0f0;
    font-size: 17px;
}

li.volunteer {
    padding: 0 10px;
}

li.volunteer a {
    font-size: 14px !important;
}

li.volunteer a:first-child::before {
    content: '';
    background: url("../img/account.svg");
    position: absolute;
    left: -25px;
    height: 20px;
    width: 20px;
    background-repeat: no-repeat;
}

li.volunteer a:first-child {
    margin-left: 30px;
    position: relative;
}

li.volunteer a:last-child {
    margin-left: 30px;
    position: relative;
}

li.volunteer a:last-child::before {
    content: '';
    background: url("../img/icon/login.svg");
    position: absolute;
    left: -25px;
    height: 20px;
    width: 20px;
    background-repeat: no-repeat;
}

li.volunteer span {
    color: #edfaff;
}

.ct-item.position-relative .image.campaign-img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

/* .d-flex.border-top.align-items-center.justify-content-between.px-3.py-4 {
    display: none !important;
} */
/* .d-flex.border-top.align-items-center.justify-content-between {
    display: none !important;
} */
.ct-item.position-relative {
    position: relative;
    z-index: 0;
}

.container.py-5.contact img.pt-4 {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.head-social.d-flex.gap-2 ul {
    display: flex;
}

.head-social.d-flex.gap-2 ul li {
    margin-right: 15px;
}

.form-message-show .alert.alert-danger {
    background: #fc6c78;
    border: 0;
    color: #fff;
    position: absolute;
    right: 0;
    bottom: 50px;
}

.padding-120 {
    padding: 80px 0;
}

.alert-ver {
    display: flex;
    align-items: center;
    border-radius: 5px;
    background: #95def96b;
    border: 0;
    color: #000;
}

.alert-ver .close {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    border: 0;
    border-radius: 50%;
    font-size: 45px;
    background: #fc6c78;
    color: #fff;
    padding-bottom: 6px;
}

.alert-ver strong {
    margin-top: 10px;
    width: 80%;
    text-align: left;
    margin-left: 5%;
}

a.member-ver {
    color: #000 !important;
    text-align: right !important;
    display: block;
}

.single-gallery-image.single-featured {
    position: relative;
}

.donation-image-gallery {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    margin-bottom: 0;
}

.single-gallery-image.single-featured a.flag-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    height: 50px;
    width: 50px;
    background: #fc6c789e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
}

.campain-sli .owl-nav.disabled + .owl-dots {
    margin-top: 10px;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.why-section .d-md-flex.align-items-center.gap-3 h2 {
    line-height: 27px;
}

.container.faq.py-5 .accordion-item:last-of-type {
    border: 0;
}

.support-column.border.px-3.py-5.rounded-20 {
    height: 100%;
}

.right-side-bar {
    display: block !important;
}

p.no-width {
    max-width: 100%;
}

.grecaptcha-logo {
    display: none;
    box-shadow: inherit;
}

.grecaptcha-badge {
    box-shadow: inherit !important;
}

.home-banner p span {
    all: unset !important;
}

.campaigns-sec .ct-item.position-relative .px-3.d-flex.gap-2.ct-contact.justify-content-between.w-100 p {
    font-size: 12px;
    color: #9a9a9a;
}

.ct-item.position-relative .ct-info h3 {
    color: #005f81;
    font-weight: 500;
}

.top-footer.pt-lg-5 .col-lg-3:last-child h4 + h4 {
    color: #fc6c78;
    font-size: 26px;
    letter-spacing: 0;
    margin-bottom: 10px !important;
    text-transform: capitalize;
}

div#exampleModal input {
    width: 100%;
    border: 2px solid #cbb5ce5f;
    border-radius: 6px;
    padding: 17px;
    font-size: 18px;
    color: var(--darkpurple);
    margin-bottom: 20px;
}

section.customer-review div span {
    all: unset !important;
}

.what-make p font {
    all: unset !important;
}

.support-column.border.px-3.py-5.rounded-20 p {
    display: grid;
    align-content: center;
    height: 80px;
}

div#exampleModal .modal-header {
    align-items: center;
}

div#exampleModal .modal-header .themes-h4 {
    margin: 0;
}

.capmpaign-box .ct-info ul li img {
    height: 100px;
    width: 100px;
    object-fit: cover;
    border-radius: 50%;
}

div#post_data li img {
    height: 50px;
    width: 50px;
    object-fit: cover;
    border-radius: 50%;
}

contact.justify-content-between.w-100 {
    padding: 0 !important;
    align-items: center;
}

.ct-info ul li:last-child {
    margin-left: 20px;
    margin-top: -15px;
}

.share-list-icon ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: 35px;
    border-radius: 5px;
}

.share-list-icon ul li:nth-child(1) {
    background: #156cf0;
}

.share-list-icon ul li:nth-child(2) {
    background: #24cd5b;
}

.share-list-icon ul li:nth-child(3) {
    background: #156cf0;
    display: none;
}

.share-list-icon ul li:nth-child(4) {
    background: #a38be2;
}

.share-list-icon ul li a i {
    background: transparent;
    font-size: 18px;
    color: #fff;
}

.social-share-wrap {
    display: flex;
    width: 100%;
}

.social-share-wrap .share-list-icon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.social-share-wrap .share-list-icon .share-title {
    width: 15%;
    display: flex;
    font-size: 13px;
}

.social-share-wrap .share-list-icon ul.d-flex.justify-content-start.w-100.my-2 {
    gap: 5px !important;
}

.share-list-icon ul li a {
    background: transparent !important;
}

.campaigns-sec .ct-info .px-3.d-flex.gap-2.ct-contact.justify-content-between.w-100 {
    padding: 0 !important;
    align-items: center;
}

/*new-styleing*/


/*user-dasdboard-css*/
section.login-page-wrapper.bg-style {
    background: #edfaff;
}

.user-dashboard-wrapper {
    /*display: flex;*/
    background: #edfaff;
}

.container-fluid.no-padd {
    padding: 0;
}

.user-dashboard-wrapper ul#pills-tab {
    /*width: 30%;*/
    /*height: 100%;*/
    background-color: #edfaff !important;
    padding: 0 25px;
}

.user-dashboard-wrapper ul#pills-tab ul {
    display: block !important;
}

.user-dashboard-wrapper ul#pills-tab li {
    width: 100%;
}

.user-dashboard-wrapper li.mobile_nav.bg-purple {
    background: #04b1f0;
    margin: 20px 0;
    padding: 20px 20px;
}

.user-dashboard-wrapper .nav-pills .nav-link {
    color: #000;
    font-size: 18px;
    padding: 20px 20px;
}

.user-dashboard-wrapper .nav-pills p {
    color: #2c2c2c;
    font-size: 18px;
    padding: 20px 20px;
}

.user-dashboard-wrapper .nav-pills .nav-link i {
    margin-right: 10px;
    color: #fc6c78;
    font-size: 20px;
}

.user-dashboard-wrapper .nav-link.active {
    background: #fc6c78;
    color: #fff;
}

.user-dashboard-wrapper .nav-link.active i {
    color: #fff;
}

.user-dashboard-wrapper .tab-content {
    display: grid;
    align-content: center;
    height: 100%;
    justify-content: center;
    background: #fc6c780f;
    padding: 50px 30px;
}

.user-dashboard-card.style-01 {
    position: relative;
    background: #fb727e;
    padding: 50px 30px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.user-dashboard-card.style-01 .icon {
    color: #fff;
    font-size: 80px;
    margin-bottom: 20px;
}

.user-dashboard-card.style-01 .content h4 {
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}

.user-dashboard-card.style-01 .content span {
    color: #fff;
    font-size: 25px;
    font-weight: 700;
}

.campain-table-user table thead {
    background-color: #fc6c78 !important;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.campain-table-user table thead tr th {
    padding: 20px;
    color: #fff;
    font-size: 20px;
    font-family: 'Quicksand';
}

.campain-table-user table thead tr th:first-child {
    border-top-left-radius: 15px;
}

.campain-table-user table thead tr th:last-child {
    border-top-right-radius: 15px;
}

.campain-table-user table {
    height: 500px;
}

.campain-table-user {
    all: unset;
    height: 100%;
    overflow: scroll;
}


.campain-table-user table tbody tr td:first-child {
    width: 100%;
}

.campain-table-user table tbody tr td:last-child {
    width: 100%;
}

.campain-table-user table tbody tr {
    display: flex;
    flex-wrap: wrap;
    width: 114%;
    border: 1px solid #9c9c9c58;
    margin: 20px 0;
    border-radius: 20px;
    align-items: center;
}

td.midel {
    display: flex;
}

td.midel .campaign-image-wrap.margin-bottom-25 {
    width: 50%;
    margin-right: 20px;
}

td.midel .campaign-image-wrap.margin-bottom-25 img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}

td.midel ul li strong {
    color: #000;
    font-size: 20px;
}

td.midel ul li {
    margin: 10px 0;
}

td.midel ul li .status-wrap.margin-top-10 {
    margin-top: 30px;
}

.campain-table-user table tbody tr td:last-child {
    border-bottom: 0;
    display: flex;
    justify-content: center;
    padding-top: 16px;
}

.campain-table-user table tbody tr td:last-child a {
    margin-right: 10px;
}

.campain-table-user table tbody tr td:last-child a.btn.btn-primary.mb-2.text-white.bg-pink {
    background: #fc6c79;
}

.follow-table {
    position: relative;
    padding: 50px 30px;
    padding-top: 120px;
}

.follow-table div#all_blog_table_length {
    color: #000;
    font-size: 18px;
    margin-bottom: 25px;
}

.login-page-wrapper .tab-content .themes-h3 {
    margin-bottom: 28px !important;
}

.login-page-wrapper .tab-content div#all_blog_table_length select {
    background: #fc6c78;
    border: 0;
    color: #fff;
    font-size: 16px;
    margin: 0 10px;
    text-align: left;
    width: 60px;
    -webkit-appearance: auto;
}

.login-page-wrapper .tab-content div#all_blog_table_filter {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
}

.login-page-wrapper .tab-content div#all_blog_table_filter input {
    border: 0;
    margin-left: 10px;
    border-radius: 6px;
    padding: 10px;
    font-size: 18px;
    color: var(--darkpurple);
}

.login-page-wrapper .tab-content table {
    width: 100%;
}

.login-page-wrapper .tab-content table thead {
    background: #fc6c78 !important;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.login-page-wrapper .tab-content table thead tr th {
    padding: 20px;
}

.login-page-wrapper .tab-content table thead tr th:first-child {
    border-top-left-radius: 15px;
}

.login-page-wrapper .tab-content table thead tr th:last-child {
    border-top-right-radius: 15px;
}

.login-page-wrapper .tab-content table tbody tr td {
    padding: 20px;
    color: #000;
}

.follow-table table tbody tr td:last-child {
    justify-content: flex-end;
}

.follow-table table tbody tr td:last-child a.btn.text-white.btn-sm.my-2.mr-2 {
    background: #04b1f0 !important;
    border: 0;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.follow-table table tbody tr td:last-child a.follow-btn.btn.btn-danger.btn-sm {
    background: #fc6c78;
    border: 0;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.heading-size {
    height: 50px;
    display: flex;
    align-items: center;
    font-size: 25px;
    font-weight: 600;
}

.follow-table div.dataTables_wrapper div.dataTables_info {
    font-size: 20px;
    font-weight: 600;
}

.login-page-wrapper .tab-content .page-item.active .page-link {
    background: #fc6c78;
    border: 0;
    padding: 10px 15px;
    color: #fff;
    margin: 0 2px;
}

.login-page-wrapper .tab-content .page-item .page-link {
    padding: 10px 15px;
    border: 0;
    color: #000;
    border-radius: 5px;
    box-shadow: 0 0 10px 0 #00000011;
}

.login-page-wrapper .tab-content li.paginate_button.page-item.active:hover {
    background: none;
    border-color: transparent;
}

.donation-de table tbody tr td span.alert.alert-warning.text-capitalize.alert-sm.alert-small {
    margin-bottom: 20px;
    position: relative;
}

.donation-de table tbody tr td form button.small-btn.btn-success.margin-top-20 {
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    border: 0;
    margin-bottom: 10px;
    background: #fc6c78;
    padding: 0 15px;
    border-radius: 5px;
}

.donation-de table tbody tr td form button.small-btn.btn-danger.margin-top-10 {
    border: 0;
    height: 50px;
    padding: 0 24px;
    border-radius: 5px;
    background: #01b0f0;
}

.dashboard-form-wrapper.edit-profile {
    padding: 20px 0;
}

.dashboard-form-wrapper.change-pass {
    padding: 50px 0;
    padding-top: 100px;
}

.user-dashboard-wrapper .tab-content form label {
    margin-bottom: 10px;
    color: #000;
    font-size: 20px;
}

.user-ticket {
    padding: 50px 0;
}

.butn.btn-width {
    min-width: inherit !important;
    display: inline-block;
}

.butn.btn-width i {
    margin: 0;
    margin-top: 2px;
}

.user-ticket.support-user .status-open {
    padding: 16px 20px;
    background: #00b0f0;
}

.user-ticket.support-user .status-close.text-light {
    background: #fc6c78;
    padding: 16px 20px;
}

.user-ticket.support-user table tbody tr td h6 {
    margin: 0;
    height: 50px;
    display: grid;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
}

.error-page-content.padding-120 .themes-h3 {
    margin-bottom: 25px;
}

ul.embedLink {
    all: unset !important;
    color: #000;
    background: #e8e8e8;
}

ul.embedLink li {
    all: unset;
    background: #e8e8e8 !important;
    color: #000;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 135px;
    padding: 10px;
    font-weight: 600;
    font-family: 'Quicksand';
}

ul.embedLink li a {
    color: #000 !important;
}

ul.embedLink li a i {
    all: unset;
    color: #000;
    font-family: 'Font Awesome 6 Pro';
    margin-right: 9px;
}

.donation-success-page-content.padding-120 .themes-h3 {
    margin-bottom: 20px;
}

.donation-success-page-content.padding-120 ul li {
    margin: 15px 0;
    display: flex;
}

.donation-success-page-content.padding-120 ul {
    margin: 30px 0;
}

.donation-success-page-content.padding-120 ul li strong {
    width: 50%;
}

.donation-success-page-content.padding-120 .donation-wrap.donation-success-page {
    position: relative;
    display: none;
}

.donation-success-page-content.padding-120 .donation-wrap.donation-success-page .contribute-single-item .thumb {
    display: none;
}

.donation-success-page-content.padding-120 .donation-wrap.donation-success-page .contribute-single-item .thumb img {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.donation-success-page-content.padding-120 .donation-wrap.donation-success-page .content {
    all: unset !important;
    background-color: #fff !important;
    margin-top: -9px;
    z-index: 1;
}

.note-editor.note-frame {
    margin-bottom: 20px;
}

.media-upload-btn-wrapper {
    margin-bottom: 20px;
}

ul.cutom-capm-ul {
    display: flex;
    justify-content: space-between;
}

ul.cutom-capm-ul li .butn {
    min-width: 195px;
    padding: 16px 25px;
    display: inline-block;
    text-align: center;
}

.butn1 {
    background: #473479;
    border: 1px solid #473479;
}

.overflow-auto.bg-white.name-box-dasd {
    position: relative;
    padding: 10px 0;
    border-radius: 10px;
    height: 100px;
    border: 2px solid #ddd8ed;
}

select#first_name {
    width: 100%;
    border: 2px solid #cbb5ce5f;
    border-radius: 6px;
    padding: 17px;
    font-size: 18px;
    color: var(--darkpurple);
    margin-bottom: 20px;
}

a.butn.custom-width {
    display: flex;
    align-items: center;
    width: 120px;
    min-width: inherit;
    margin-top: 20px;
}

a.butn.custom-width span {
    margin-top: -3px;
    font-size: 24px;
}

/*user-dasdboard-css*/

.note-toolbar .note-style, .note-toolbar .note-para, .note-toolbar .note-color, .note-toolbar .note-table {
    display: none;
}

.map-area.mt-5 {
    display: none;
}

.donation-image-gallery img.ct-img {
    aspect-ratio: auto;
    overflow: hidden;
    height: 30rem;
    width: 100% !important;
    margin: 0 auto;
    object-position: center;
}

.campaign-detail-sec img.ct-img {
    height: 480px;
    width: 876px;
    object-position: center;
}

#desktopSponsorMessage {
    display: block;
}

#mobileSponsorMessage {
    display: none;
}

.campaign-detail-sec .ct-info {
    min-height: auto;
}

.follow_btn {
    margin-bottom: 5px;
}

.cause-update-section-body {
    position: relative;
    height: 100%;
    display: flex;
    margin: 20px 0;
    align-items: center;
    background: #0000000a;
    padding: 20px;
    border-radius: 20px;
}

.cause-update-section-body .thumb {
    overflow: hidden;
    margin-right: 20px;
    position: relative;
    transform: unset;
    border-radius: 10px;
}

.cause-update-section-body .thumb img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.cause-update-section-body .thumb .img-pop-wrap {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.cause-update-section-body .thumb .img-pop-wrap a i {
    font-size: 25px;
    color: white;
}

.cause-update-section-body .content h3 {
    color: #000;
    font-size: 25px;
    font-weight: 500;
}

.cause-update-section-body .content div#time-creator {
    font-size: 18px;
}

.cause-update-section-body .content p {
    margin: 0;
    font-size: 18px;
}

.cus-err-msg-custom {
    display: none;
}

.cus-err-msg-custom h3 {
    color: #fff;
}

ul.d-flex.mob-price-value li {
    all: unset;
}

ul.d-flex.mob-price-value li span {
    background: #beeeff;
    display: block;
    border: 0;
    width: 65px;
    margin: 5px 0;
    border-radius: 10px;
    padding: 10px 0;
    margin-right: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

ul.d-flex.mob-price-value {
    display: flex;
    flex-wrap: nowrap;
}

.selectFirstNameAmoundDesktop {
    visibility: visible;
    position: absolute;
}

.selectMiddleNameAmoundDesktop {
    visibility: visible;
    position: absolute;
}

select#middle_name {
    width: 100%;
    border: 2px solid #cbb5ce5f;
    /* border-radius: 6px; */
    padding: 17px;
    font-size: 18px;
    color: var(--darkpurple);
    margin-bottom: 20px;
}

.bg-in-box span {
    color: #000;
    font-weight: 500;
}

.bg-in-box {
    border: 2px solid #cbb5ce5f !important;
    border-radius: 10px !important;
    padding: 10px 10px;
}

.result-box {
    /* background: #fc6c783b; */
    padding: 10px 20px;
    border: 2px solid #cbb5ce5f;
    border-radius: 10px !important;
}

.raning-form .h6.text-teal {
    height: 55px;
    margin: 0 !important;
    display: flex;
    align-items: center;
    margin-left: 20px !important;
    font-size: 15px;
}

.card-body .themes-h4.d-flex {
    align-items: center;
    justify-content: space-between;
}

.btn-1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-radius: 6px;
    background: #473479;
    border: 1px solid #473479;
    color: #fff !important;
}

label.required.themes-h3.sty {
    color: #473479 !important;
    letter-spacing: 0;
    font-size: 25px;
    margin-bottom: 10px !important;
}

.custom-style label {
    display: flex;
    align-items: center;
    padding: 15px 15px;
    background: #fc6c7894;
    border: 2px solid #fc6c78;
}

.custom-style input {
    width: 25px;
    height: 25px;
    margin: 0 10px;
}

.custom-style {
    display: flex;
    flex-wrap: wrap;
}

.custom-style label:hover {
    background: #9f85c3;
    border: 2px solid #9f85c3;
}

.custom-style label.active {
    background: #9f85c3;
    border: 2px solid #9f85c3;
}

.input-style input {
    padding: 12px 20px !important;
}

select.custom-select.custom-select-sm.form-control.form-control-sm {
    background: #fc6c78;
    border: 0;
    color: #fff;
    font-size: 16px;
    margin: 0 10px;
    text-align: left;
    width: 60px;
    -webkit-appearance: auto;
}

div#DataTables_Table_0_filter label input {
    border: 0;
    margin-left: 10px;
    border-radius: 6px;
    padding: 10px;
    font-size: 18px;
    color: var(--darkpurple);
    background: #eef1f7;
    margin-bottom: 20px;
}

li#DataTables_Table_0_previous a {
    background: #fff;
    color: #000;
    box-shadow: 0 0 10px 0 #00000022;
}

li#DataTables_Table_0_next {
    background: #fff;
    color: #000;
    box-shadow: 0 0 10px 0 #00000022;
}

div#DataTables_Table_0_paginate ul.pagination {
    padding-right: 10px;
}

div#media_upload_modal .all-uploaded-images {
    position: relative;
    height: 400px;
    overflow-y: scroll;
    padding: 0;
}

div#media_upload_modal .media-uploader-image-info {
    display: none;
}

div#media_upload_modal .media-uploader-image-list {
    width: 100%;
}

div#media_upload_modal button.close {
    background: #fc6c78;
    color: #fff;
    border: 0;
    font-size: 25px;
    padding: 5px 10px;
    border-radius: 50px;
}

.custom-input {
    width: 100% !important;
    background: #fff !important;
    border: 0 !important;
    padding: 10px 20px !important;
    margin-bottom: 10px;
}

.custom-row .d-flex.flex-column.mr-5 {
    margin-right: 20px;
    width: 100%;
}

.custom-row .bg-in-box {
    background: #f8f9fa;
}

.form-style input {
    width: 100%;
    border: 2px solid #cbb5ce5f;
    border-radius: 6px;
    padding: 17px;
    font-size: 18px;
    color: var(--darkpurple);
    margin-bottom: 20px;
}

.form-style textarea {
    width: 100%;
    border: 2px solid #cbb5ce5f;
    border-radius: 6px;
    font-size: 18px;
    line-height: 30px;
    padding: 20px 15px 10px;
    color: var(--darkpurple);
    margin-bottom: 20px;
    resize: none;
    height: 220px;
}

.name-adds ul li.mob-value {
    display: none;
}

.campain-update-dektop {
    display: block;
}

.campain-update-mobile {
    display: none;
}

h3.fs-36.mx-auto.pb-5.position-relative.fs-sm-22.pt-md-0.pt-5.size {
    font-size: 23px;
    line-height: 30px;
}

h3.fs-36.mx-auto.pb-5.position-relative.fs-sm-22.pt-md-0.pt-5.size::after {
    bottom: -32px;
}

.text-quote {
    color: #02b0ef;
    font-size: 3rem;
    vertical-align: bottom;
    font-weight: 500;
}
