/*==============================================
    FAQ One
===============================================*/
 :root {
   --gradient1: linear-gradient(to bottom, #00a2ff, #0093fa, #0084f4, #0074ed, #0763e4);
   --gradient2: linear-gradient(to bottom, #454555, #393a49, #2e2f3e, #232433, #191a28);
--color4: radial-gradient(circle,rgba(25, 212, 75, 1) 0%, rgba(28, 166, 65, 1) 100%);
  --color5: radial-gradient(circle,rgba(61, 139, 235, 1) 0%, rgba(0, 88, 195, 1) 100%);
   
 }

.faq-one {
    position: relative;
    display: block;
    counter-reset: count;
    padding: 90px 0 0;
    z-index: 1;
}

.faq-one__inner {
    position: relative;
    display: block;
    background-color: var(--careon-extra);
    border-radius: 60px;
    padding: 120px 60px 120px;
}

.faq-one__left {
    position: relative;
    display: block;
    margin-right: 40px;
}

.faq-one__left .section-title {
    margin-bottom: 39px;
}

.faq-one__left .faq-one-accrodion .accrodion {
    position: relative;
    display: block;
    border: 1px solid rgba(var(--careon-black-rgb), .23);
    border-radius: var(--careon-bdr-radius);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.faq-one__left .faq-one-accrodion .accrodion-title {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 20px 30px 20px;
    padding-left: 80px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    padding-right: 25px;
}

.faq-one__left .faq-one-accrodion .accrodion-title h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    color: var(--careon-black);
    text-transform: capitalize;
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.faq-one__left .faq-one-accrodion .accrodion+.accrodion {
    margin-top: 30px;
}

.faq-one__left .faq-one-accrodion .accrodion-title h4::before {
    content: "\e933";
    font-family: 'icomoon' !important;
    font-weight: 700;
    font-size: 11px;
    color: var(--careon-black);
    position: absolute;
    top: 50%;
    right: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--careon-primary);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    text-align: center;
}

.faq-one__left .faq-one-accrodion .accrodion.active .accrodion-title h4::before {
    content: "\e932";
}

.faq-one__left .faq-one-accrodion .accrodion-content {
    position: relative;
    padding-bottom: 31px;
    padding-left: 80px;
    padding-right: 50px;
    margin-top: 1px;
}

.faq-one__left .faq-one-accrodion .accrodion-content p {
    margin: 0;
}

.faq-one-accrodion__count {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
}

.faq-one-accrodion__count:before {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
    color: var(--careon-black);
    counter-increment: count;
    content: "0"counter(count);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.faq-one__right {
    position: relative;
    display: block;
    margin-left: -10px;
}

.faq-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--careon-bdr-radius);
    z-index: 1;
}

.faq-one__img::before {
    position: absolute;
    top: 0;
    left: -100%;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, .7) 0%, rgba(255, 255, 255, .3) 100%);
    transform: skewX(17deg);
    z-index: 1;
}

.faq-one__img:hover::before {
    -webkit-animation: shine 1.9s;
    animation: shine 1.9s;
}

.faq-one__img img {
    width: 100%;
    border-radius: var(--careon-bdr-radius);
}

/*--------------------------------------------------------------
# FAQ Two
--------------------------------------------------------------*/
.faq-two {
    position: relative;
    display: block;
    counter-reset: count;
    padding: 120px 0 188px;
    z-index: 1;
  
    overflow: hidden;
}

.faq-two::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(215, 190, 120, 0.18) 0%, rgba(215, 190, 120, 0) 70%);
    z-index: -1;
}

.faq-two::after {
    content: "";
    position: absolute;
    left: -100px;
    bottom: 20px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(166, 125, 72, 0.12) 0%, rgba(166, 125, 72, 0) 70%);
    z-index: -1;
}

.faq-two__left {
    position: relative;
    display: block;
}

.faq-two__left .section-title-two {
    margin-bottom: 21px;
}

.faq-two__text {
    color: #5d5548;
    line-height: 30px;
    margin-top: 10px;
}

.faq-two__btn-box {
    position: relative;
    display: block;
    margin-top: 30px;
    text-align: center;
}

.faq-two__btn-box .thm-btn {
    background: linear-gradient(135deg, var(--color1) 0%, var(--color2) 100%);
    color: #fff;
    padding: 5px 20px 5px;
    padding-right: 5px;
    display: inline-flex;
    align-items: center;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(166, 125, 72, 0.20);
    transition: all 0.35s ease;
}

.faq-two__btn-box .thm-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(166, 125, 72, 0.28);
}

.faq-two__btn-box .thm-btn::before,
.faq-two__btn-box .thm-btn::after {
    background-color: var(--careon-black);
}

.faq-two__btn-box .thm-btn i {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(var(--careon-white-rgb), .15);
    border-radius: 50%;
    margin-left: 20px;
}

.faq-two__btn-box .thm-btn-1 {
    background: var(--color5);
    padding: 5px 20px 5px;
    padding-right: 5px;
    display: inline-flex;
    align-items: center;
}

.faq-two__btn-box .thm-btn-1::before,
.faq-two__btn-box .thm-btn-1::after {
    background-color: var(--careon-black);
}

.faq-two__btn-box .thm-btn-1 i {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(var(--careon-white-rgb), .10);
    border-radius: 50%;
    margin-left: 20px;
}

.faq-two__right {
    position: relative;
    display: block;
    margin-left: 30px;
    padding: 30px;
    background: rgba(255, 249, 234, 0.72);
    border: 1px solid rgba(166, 125, 72, 0.12);
    border-radius: 28px;
    box-shadow: 0 15px 40px rgba(166, 125, 72, 0.12);
    backdrop-filter: blur(6px);
}

.faq-two__right .faq-one-accrodion .accrodion {
    position: relative;
    display: block;
    border: 1px solid rgba(166, 125, 72, 0.18);
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #fffdf8 100%);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: all 500ms ease;
}

.faq-two__right .faq-one-accrodion .accrodion:hover {
    transform: translateY(-4px);
    border-color: rgba(215, 190, 120, 0.60);
    box-shadow: 0 16px 32px rgba(166, 125, 72, 0.15);
}

.faq-two__right .faq-one-accrodion .accrodion.active {
    border: 1px solid rgba(166, 125, 72, 0.45);
    box-shadow: 0 18px 34px rgba(166, 125, 72, 0.18);
}

.faq-two__right .faq-one-accrodion .accrodion-title {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 22px 70px 22px 78px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(255,249,234,0.88) 100%);
}

.faq-two__right .faq-one-accrodion .accrodion-title::before {
    content: "";
    position: absolute;
    top: 16px;
    bottom: 16px;
    left: 0;
    width: 5px;
    border-radius: 0 8px 8px 0;
    background: linear-gradient(180deg, var(--color1) 0%, var(--color2) 100%);
    opacity: 0.9;
}

.faq-two__right .faq-one-accrodion .accrodion.active .accrodion-title {
    background: linear-gradient(135deg, rgba(215, 190, 120, 0.16) 0%, rgba(255,249,234,1) 100%);
}

.faq-two__right .faq-one-accrodion .accrodion-title h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    color: var(--careon-black);
    text-transform: capitalize;
    position: relative;
    padding-right: 24px;
    transition: all 500ms ease;
}

.faq-two__right .faq-one-accrodion .accrodion:hover .accrodion-title h4,
.faq-two__right .faq-one-accrodion .accrodion.active .accrodion-title h4 {
    color: var(--color1);
}

.faq-two__right .faq-one-accrodion .accrodion + .accrodion {
    margin-top: 22px;
}

.faq-two__right .faq-one-accrodion .accrodion-title h4::before {
    content: "\e933";
    font-family: 'icomoon' !important;
    font-weight: 700;
    font-size: 12px;
    color: #fff;
    position: absolute;
    top: 50%;
    right: -6px;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color1) 0%, var(--color2) 100%);
    transform: translateY(-50%);
    box-shadow: 0 8px 18px rgba(166, 125, 72, 0.22);
    transition: all 500ms ease;
}

.faq-two__right .faq-one-accrodion .accrodion.active .accrodion-title h4::before {
    content: "\e932";
    color: #fff;
    background: var(--color1);
}

.faq-two__right .faq-one-accrodion .accrodion-content {
    position: relative;
    padding: 0 24px 26px 78px;
    margin-top: 0;
    background: #fffdf7;
}

.faq-two__right .faq-one-accrodion .accrodion-content .inner {
    position: relative;
    padding-top: 18px;
}

.faq-two__right .faq-one-accrodion .accrodion-content .inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(166, 125, 72, 0.30), rgba(215, 190, 120, 0.08));
}

.faq-two__right .faq-one-accrodion .accrodion-content p {
    margin: 0;
    color: #625b50;
    line-height: 30px;
}

.faq-two-accrodion__count {
    position: absolute;
    top: 50%;
    left: 22px;
    width: 42px;
    height: 42px;
    transform: translateY(-50%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(166, 125, 72, 0.10) 0%, rgba(215, 190, 120, 0.26) 100%);
    border: 1px solid rgba(166, 125, 72, 0.14);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.faq-two-accrodion__count:before {
    position: relative;
    display: block;
    font-size: 15px;
    line-height: 15px;
    font-weight: 700;
    color: var(--color1);
    letter-spacing: 1px;
    counter-increment: count;
    content: "0" counter(count);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.faq-two-accrodion__count::after {
    display: none;
}

/* Responsive */
@media (max-width: 991px) {
    .faq-two {
        padding: 100px 0 100px;
    }

    .faq-two__right {
        margin-left: 0;
        margin-top: 40px;
        padding: 20px;
    }

    .faq-two__right .faq-one-accrodion .accrodion-title {
        padding: 20px 60px 20px 70px;
    }

    .faq-two__right .faq-one-accrodion .accrodion-content {
        padding: 0 20px 22px 20px;
    }

    .faq-two__right .faq-one-accrodion .accrodion-title h4 {
        font-size: 17px;
        line-height: 28px;
        padding-right: 34px;
    }

    .faq-two-accrodion__count {
        left: 16px;
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 575px) {
    .faq-two__right {
        padding: 15px;
        border-radius: 20px;
    }

    .faq-two__right .faq-one-accrodion .accrodion-title {
        padding: 18px 52px 18px 62px;
    }

    .faq-two__right .faq-one-accrodion .accrodion-title h4 {
        font-size: 16px;
        line-height: 26px;
    }

    .faq-two__right .faq-one-accrodion .accrodion-content {
        padding: 0 16px 20px 16px;
    }

    .faq-two__right .faq-one-accrodion .accrodion-title h4::before {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 11px;
    }
}
/*--------------------------------------------------------------
# FAQ Three
--------------------------------------------------------------*/
.faq-three {
    position: relative;
    display: block;
    counter-reset: count;
    padding: 120px 0 120px;
    z-index: 1;
}

.faq-three__left {
    position: relative;
    display: block;
}

.faq-three__left .faq-one-accrodion .accrodion {
    position: relative;
    display: block;
    border: 1px solid rgba(var(--careon-extra-rgb), 1);
    border-radius: 10px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.faq-three__left .faq-one-accrodion .accrodion.active {
    border: 1px solid rgba(var(--careon-black-rgb), 1);
}

.faq-three__left .faq-one-accrodion .accrodion-title {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 21px 30px 21px;
    padding-left: 65px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.faq-three__left .faq-one-accrodion .accrodion-title h4 {
    margin: 0;
    padding-right: 40px;
    padding-left: 10px;
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    color: var(--careon-black);
    text-transform: capitalize;
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.faq-three__left .faq-one-accrodion .accrodion+.accrodion {
    margin-top: 20px;
}

.faq-three__left .faq-one-accrodion .accrodion-title h4::before {
    content: "\e933";
    font-family: 'icomoon' !important;
    font-weight: 700;
    font-size: 12px;
    color: var(--careon-base);
    position: absolute;
    top: 50%;
    right: 0;
    height: 40px;
    width: 40px;
    background-color: var(--careon-extra);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    text-align: center;
}

.faq-three__left .faq-one-accrodion .accrodion.active .accrodion-title h4::before {
    content: "\e932";
    color: var(--careon-white);
    background-color: var(--careon-base);
}

.faq-three__left .faq-one-accrodion .accrodion-content {
    position: relative;
    padding-bottom: 31px;
    padding-left: 80px;
    padding-right: 20px;
    margin-top: 1px;
}

.faq-three__left .faq-one-accrodion .accrodion-content p {
    margin: 0;
}

.faq-three-accrodion__count {
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
}

.faq-three-accrodion__count:before {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 18px;
    margin-left: 3px;
    font-weight: 700;
    color: var(--careon-black);
    counter-increment: count;
    content: "0"counter(count);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.faq-three-accrodion__count::after {
    content: "";
    position: absolute;
    bottom: 3px;
    right: -5px;
    width: 3px;
    height: 3px;
    background-color: var(--careon-black);
}

.faq-three__right {
    position: relative;
    display: block;
}

.faq-three__img {
    position: relative;
    display: block;
}

.faq-three__img img {
    width: 100%;
    border-radius: 10px;
}

.faq-three__contact-info {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(var(--careon-white-rgb), .90);
    border-radius: 10px;
    padding: 17px 20px 21px;
    max-width: 292px;
    width: 100%;
}

.faq-three__contact-info-list {
    position: relative;
    display: block;
}

.faq-three__contact-info-list li {
    position: relative;
    display: block;
}

.faq-three__contact-info-list li+li {
    margin-top: 27px;
}

.faq-three__contact-info-icon-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.faq-three__contact-info-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.faq-three__contact-info-icon span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--careon-black);
}

.faq-three__contact-info-number {
    position: relative;
    display: block;
}

.faq-three__contact-info-number p {
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    color: var(--careon-black);
}

.faq-three__contact-info-number p a {
    color: var(--careon-black);
}

.faq-three__contact-info-number p a:hover {
    color: var(--careon-base);
}


/*--------------------------------------------------------------
# FAQ Four
--------------------------------------------------------------*/
.faq-four {
    padding: 90px 0 120px;
}

/*--------------------------------------------------------------
# FAQ Page
--------------------------------------------------------------*/
.faq-page {
    position: relative;
    display: block;
    counter-reset: count;
    padding: 120px 0 90px;
    z-index: 1;
}

.faq-page .faq-one__left {
    margin-bottom: 30px;
    margin-right: 0;
}





/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/