@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* variables====================================== */
body {
    font-size: 16px;
    font-weight: 400;
    font-family: "Poppins", sans-serif !important;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0;

}

:root {
    --darkgrey: #727272;
    --blackcolor: rgba(0, 0, 0, 1);
    --purplecolor: #9574ed;
    --whitecolor: #ffffff;
    --secondpurple: rgba(231, 222, 255, 1);
}

p:empty {
    padding-bottom: 0px;
}

a {
    text-decoration: none;
    color: var(--blackcolor);
}

ul {
    padding-left: 0;
    margin-bottom: 0;
}

ul li {
    list-style-type: none;
}

p {
    color: var(--darkgrey);
}
p:empty{
    margin-bottom: 0;
}

.navbar-toggler {
    border: 1px solid var(--purplecolor);
    padding: 2px 6px;
}

.input-Div {
    margin-bottom: 30px;
}

.form-label {
    font-weight: 500;
    color: var(--blackcolor);
}

.form-control {
    border: 1px solid rgba(231, 231, 231, 1);
    border-radius: 10px;
    padding: 12px 20px;

    font-size: 16px;
    font-weight: 400;
}

.form-control::placeholder {
    color: rgba(158, 158, 158, 1);
}

.form-control:focus {
    box-shadow: none;
    border-color: rgba(231, 231, 231, 1);
}

.main-button {
    border: 1px solid var(--purplecolor);
    color: var(--purplecolor);
    padding: 11px 31px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    background-color: var(--whitecolor);
    transition: all 0.5s;
}

.main-button:hover {
    border: 1px solid var(--purplecolor);
    color: var(--whitecolor);
    background-color: var(--purplecolor);

}

.secondery-button {
    border: 1px solid var(--purplecolor);
    color: var(--whitecolor);
    padding: 15px 25px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    background-color: var(--purplecolor);
    transition: all 0.5s;
}

.secondery-button:hover {
    border: 1px solid var(--purplecolor);
    color: var(--purplecolor);
    background-color: var(--whitecolor);

}

.main-title {
    font-weight: 500;
    font-size: 30px;
}

.main-title span {
    color: var(--purplecolor);
}

.sub-title {
    color: var(--secondpurple);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    letter-spacing: 5px;
}

.medium-title {
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 30px;
}

.small-title {
    font-size: 18px;
    font-weight: 500;
}

.py-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.py-120 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.py-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.pt-50 {
    padding-top: 50px;
}

.section-head {
    text-align: center;
    padding-bottom: 50px;
}

.section-head .sub-title {
    padding-bottom: 20px;
}

.section-head p {
    padding-top: 20px;
}

/* pagination design */
.pagination-wrapper {
    margin-top: 50px;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 25px;
}

.page-link:focus {
    box-shadow: none;
}

.pagination li .page-link {
    color: var(--blackcolor);
    font-size: 20px;
    font-weight: 500;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--purplecolor);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    background-color: var(--whitecolor);
}

.pagination li .page-link:hover,
.pagination li .page-link.current_page {
    background-color: var(--secondpurple);
    border: 1px solid var(--secondpurple);
}

/* Navbar ======================================== */
.header-logo {
    width: 68px;
    height: auto;
}

.navbar {
    padding: 3px 0;
}

.navbar-nav .nav-link {
    color: var(--blackcolor);
    font-size: 18px;
    margin: 0 23px;
}

.navbar-nav .nav-link.active {
    color: var(--purplecolor);
    font-weight: 700;
    border-bottom: 3px solid var(--purplecolor);
}

.navbar-nav .nav-link:hover {
    color: var(--purplecolor);
}

.offcanvas-header .btn-close {
    opacity: 1;
    border: 1px solid var(--bs-purple);
    margin-right: 2px;
}

.navbar-linkbtnDiv {
    width: 100%;
    display: flex;
    align-items: center;
}

/* footer ========================================== */
footer {
    padding: 21px 0;
}

.footer-paraDiv {
    max-width: 906px;
    text-align: center;
}

.footer-paraDiv p {
    color: var(--blackcolor);
}

.footer-ullist {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-link {
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(198, 198, 198, 1);
    padding-top: 21px;
    margin-top: 48px;
}

.social-ullist {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-end;
}

.social-ullist a {
    padding: 2px;
    border-radius: 50%;
    transition: all 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 37px;
    height: 37px;
}

.social-ullist li a svg path{
    transition: all 0.5s;
}

.social-ullist a:hover {
    background-color: var(--purplecolor);
}

.social-ullist li:nth-child(4) a:hover svg path{
    stroke: var(--whitecolor);
    fill: none;
}

.social-ullist a:hover svg path{
    fill: var(--whitecolor);
    
}

/* home page ==================================================== */
.main-banner {
    height: 824px;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-position: center;
}

.banner-title {
    font-size: 50px;
    font-weight: 400;
}

.banner-title span {
    color: var(--purplecolor);
    font-weight: 700;
}

.banner-content {
    max-width: 704px;
}

.banner-content .banner-paraDiv {
    padding-top: 40px;
    padding-bottom: 43px;
}

.bannerkey-img {
    width: 844px;
    height: 517px;
    object-fit: contain;
    margin-left: -145px;
}

.howit-keyicon {
    width: 88px;
    height: auto;
    margin-bottom: 25px;
    transform: scale(1, 1);
    transition: transform 0.2s linear;
}

.howit-card:hover .howit-keyicon {
    transform: scale(1.1, 1.1);
}

.howit-card {
    position: relative;
}

.howit-card .small-title {
    padding-bottom: 25px;
}

.howit-lineimg {
    position: absolute;
    top: 45px;
    left: 50%;
    z-index: -1;
    height: auto;
}

.planpricing-section {
    background: linear-gradient(180deg, #F4F0FF 0%, rgba(255, 255, 255, 0) 100%);
}

.planpricing-card {
    border: 1px solid rgba(211, 211, 211, 1);
    border-radius: 19px;
    overflow: hidden;
}

.pricing-cardhead {
    background-color: rgba(233, 224, 255, 1);
    padding: 29px;
    border-radius: 19px 19px 0px 0px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    transition: all 0.5s;
}

.plan-headtitle {
    font-size: 18px;
    font-weight: 600;
    transition: all 0.5s;
}

.save-persenview {
    display: block;
    background-color: var(--whitecolor);
    border-radius: 40px;
    padding: 6px 11px;
    line-height: normal;
    color: rgba(91, 139, 208, 1);
    font-size: 12px;
    font-weight: 700;
}

.pricing-body {
    padding: 30px;
    background-color: #fff;
    transition: all 0.5s;
}

.pricing-title {
    font-size: 16px;
    font-weight: 400;
    transition: all 0.5s;
}

.pricing-title span {
    font-size: 40px;
    font-weight: 700;
    color: var(--purplecolor);
    transition: all 0.5s;
}

.pricing-value {
    color: rgba(56, 86, 132, 1);
    padding-top: 20px;
    transition: all 0.5s;
}

.pricing-pointlist {
    border-top: 1px solid rgba(211, 211, 211, 1);
    padding-top: 27px;
    margin-top: 30px;
    padding-bottom: 30px;
}

.pricing-pointlist li {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
    transition: all 0.5s;
}

.pricing-pointlist li:last-child {
    padding-bottom: 0px;
}

.planpricing-card.active,
.planpricing-card:hover {
    box-shadow: 5px 5px 30px 0px rgba(149, 116, 237, 0.38);
}

.planpricing-card.active .pricing-cardhead,
.planpricing-card:hover .pricing-cardhead {
    background-color: rgba(69, 51, 117, 1);
}

.planpricing-card.active .pricing-body,
.planpricing-card:hover .pricing-body {
    background-color: rgba(51, 36, 92, 1);
}

.planpricing-card.active .plan-headtitle,
.planpricing-card:hover .plan-headtitle,
.planpricing-card.active .pricing-title,
.planpricing-card:hover .pricing-title,
.planpricing-card.active .pricing-title span,
.planpricing-card:hover .pricing-title span,
.planpricing-card.active .pricing-value,
.planpricing-card:hover .pricing-value,
.planpricing-card.active .pricing-pointlist li,
.planpricing-card:hover .pricing-pointlist li,
.planpricing-card.active .pricing-value {
    color: var(--whitecolor);
}

.planpricing-card.active .secondery-button {
    border: 1px solid var(--whitecolor);
    color: var(--purplecolor);
    background-color: var(--whitecolor);
}

.planpricing-card.active .secondery-button:hover {
    border: 1px solid var(--purplecolor);
    color: var(--whitecolor);
    background-color: var(--purplecolor);
}

.nav-plantab .nav-item .nav-link.active {
    background-color: var(--purplecolor);
    color: var(--whitecolor);
}

.nav-plantab .nav-item .nav-link {
    color: var(--blackcolor);
    font-size: 18px;
    font-weight: 500;
    padding: 9px 52px;
    border-radius: 30px;
}

.nav-plantab {
    border-bottom: 0px;
    background-color: var(--whitecolor);
    width: fit-content;
    border-radius: 30px;
    padding: 9px 13px;
    box-shadow: 0px 4px 4px 0px rgba(149, 116, 237, 0.13);
    margin-left: auto;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    border: 1px solid transparent;
}

/* contact us =========== */
.contact-section {
    background-color: rgba(244, 240, 255, 1);
}

.contactus-card {
    background-color: var(--whitecolor);
    border-radius: 20px;
    padding: 30px;
}

.contact-iframe {
    border: 1px solid rgba(217, 217, 217, 1);
    border-radius: 20px;
}

.accordion {
    border: 1px solid rgba(211, 211, 211, 1);
    border-radius: 20px;
    overflow: hidden;
    padding: 25px 25px 0px 25px;
}

.accordion-button:not(.collapsed) {
    color: rgba(0, 0, 0, 1);
    background-color: #fff;
    box-shadow: none;
}

.accordion-button:focus,
.navbar-toggler:focus {
    box-shadow: none;
}

.accordion-button {
    padding: 25px 0;
    border-radius: 0px !important;
    color: var(--blackcolor);
    font-weight: 500;
    font-size: 18px;
}

.accordion-body {
    padding: 0px 0px 25px 0;
    color: var(--darkgrey);
}

.accordion-item {
    border: 1px solid rgba(211, 211, 211, 1);
    border-left: 0px;
    border-right: 0;
    border-radius: 0px;
}

.accordion-item:first-of-type {
    border-radius: 0px;
    border-top: 0px;
}

.accordion-item:last-of-type {
    border-bottom: 0px;
}

.accordion-item:first-of-type .accordion-button {
    padding-top: 0px;
}

/*  */
.accordion-button[aria-expanded="true"]:after {
    content: "\f107";
    font-family: 'FontAwesome';
    font-size: 25px;
    color: var(--purplecolor);
    text-align: center;
    font-weight: 400;
    background-image: none;
}

.accordion-button[aria-expanded="false"]:after {
    content: "\f107";
    font-family: 'FontAwesome';
    font-size: 25px;
    color: var(--purplecolor);
    text-align: center;
    font-weight: 400;
    background-image: none;
}

/* newsletter ========================== */
.ournewsletter-section {
    position: relative;
    background-color: rgba(255, 242, 219, 1);
    overflow: hidden;
}

.isolationMode-img {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: 335px;
}

.isolationMode-secondimg {
    position: absolute;
    bottom: 0;
    right: 0;
    width: auto;
    height: 380px;
}

.paymentapp-Div {
    padding-top: 25px;
    display: flex;
    gap: 40px;
    padding-bottom: 80px;
}

.googlepayimg,
.appstoreimg {
    width: 196px;
    height: auto;
}

.subscribe-inputDiv {
    position: relative;
    max-width: 577px;
    margin-top: 30px;
}

.subscribe-inputDiv .form-control {
    border-radius: 30px;
    border: 1px solid #fff;
}

.subscribe-inputDiv .form-control::placeholder {
    color: rgba(114, 114, 114, 1);
}

.subscribe-inputDiv .secondery-button {
    position: absolute;
    top: 0px;
    right: 0;
    padding: 9px 17px;
    font-size: 20px;
}

.newsletter-content {
    position: relative;
    z-index: 1;
}

.newsletter-img {
    width: 836px;
    height: 635px;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

/* slider */
.post-slide {
    background: #fff;
    margin: 20px 15px 20px;
    border-radius: 15px;
    padding-top: 1px;
    box-shadow: 0px 14px 22px -9px #bbcbd8;
}

.post-slide .post-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin: -12px 15px 8px 15px;
    margin-left: -10px;
}

.post-slide .post-img img {
    width: 100%;
    height: auto;
    transform: scale(1, 1);
    transition: transform 0.2s linear;
}

.post-slide:hover .post-img img {
    transform: scale(1.1, 1.1);
}

.post-slide .over-layer {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    background: linear-gradient(-45deg,
            rgba(6, 190, 244, 0.75) 0%,
            rgba(45, 112, 253, 0.6) 100%);
    transition: all 0.5s linear;
}

.post-slide:hover .over-layer {
    opacity: 1;
    text-decoration: none;
}

.post-slide .over-layer i {
    position: relative;
    top: 45%;
    text-align: center;
    display: block;
    color: #fff;
    font-size: 25px;
}

.post-slide .post-content {
    background: #fff;
    padding: 2px 20px 40px;
    border-radius: 15px;
}

.post-slide .post-title a {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    display: inline-block;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
}

.post-slide .post-title a:hover {
    text-decoration: none;
    color: #3498db;
}

.post-slide .post-description {
    line-height: 24px;
    color: #808080;
    margin-bottom: 25px;
}

.post-slide .post-date {
    color: #a9a9a9;
    font-size: 14px;
}

.post-slide .post-date i {
    font-size: 20px;
    margin-right: 8px;
    color: #cfdace;
}

.post-slide .read-more {
    padding: 7px 20px;
    float: right;
    font-size: 12px;
    background: #2196f3;
    color: #ffffff;
    box-shadow: 0px 10px 20px -10px #1376c5;
    border-radius: 25px;
    text-transform: uppercase;
}

.post-slide .read-more:hover {
    background: #3498db;
    text-decoration: none;
    color: #fff;
}

/*  */
.blog-slider .owl-nav {
    text-align: center;
    margin-top: 20px;
    position: absolute;
    top: -125px;
    right: 0;
    display: flex;
    gap: 16px;
}

.blog-slider.owl-carousel .owl-nav button.owl-prev,
.blog-slider.owl-carousel .owl-nav button.owl-next {
    background: rgba(244, 240, 255, 1) !important;
    padding: 10px 20px !important;
    border-radius: 50px;
    line-height: normal !important;
}

.blog-slider.owl-carousel .owl-nav span {
    display: none;
}

.blog-slider .owl-nav .owl-prev:after,
.blog-slider .owl-nav .owl-next:after {
    content: "\f104";
    font-family: FontAwesome;
    color: var(--purplecolor);
    font-size: 28px;
}

.blog-slider .owl-nav .owl-next:after {
    content: "\f105";
}

.ourblog-card {
    border: 1px solid #DDDDDD;
    padding: 18px;
    border-radius: 20px;
    margin-bottom: 1px;
    background-color: #FBFBFB;
}

.ourblog-card .small-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ourblog-card p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blogcard-imgDiv {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 32px;
}

.blogcard-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    transition: 0.5s;
}

.ourblog-card:hover .blogcard-img {
    /* transform: scale(1.1); */
}
.ourblog-card .blogcard-img{
margin-bottom: 15px;
}
.blog-dateDiv {
    color: var(--darkgrey);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
}

.blogcard-para {
    padding-top: 20px;
    padding-bottom: 20px;
}

.ourblog-card .secondery-button {
    display: inline-block;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    padding: 9px 18px;
}

.ourblog-card .secondery-button svg {
    margin-left: 10px;
}

.ourblog-card .secondery-button svg path {
    transition: all 0.5s;
}

.ourblog-card .secondery-button:hover svg path {
    stroke: var(--purplecolor);
}

/* About us page =================================================================== */
.about-banner {
    background-color: rgba(247, 244, 255, 1);
}

.about-detailcard {
    background-color: rgba(255, 242, 219, 1);
    border-radius: 20px;
    padding: 50px 50px;
    margin-right: 100px;
}

.blogdetail-imgDiv {
    position: relative;
    width: 519px;
    right: -73px;
}

.blogdetail-keyimg {
    width: 100%;
    height: 622px;
    position: relative;
    z-index: 1;
    margin-top: 24px;
    border-radius: 20px;
    object-fit: cover;
}

.blogdetail-keyshape {
    width: 100%;
    height: 605px;
    position: absolute;
    left: -24px;
    top: 0;
}

.about-detailcard p {
    padding-top: 50px;
    text-align: justify;
}

.whatwedo-section {
    background-color: rgba(244, 240, 255, 1);
}

.whatwedo-card {
    border: 1px solid rgba(223, 223, 223, 1);
    padding: 20px;
    border-radius: 20px;
    background-color: var(--whitecolor);
    height: 100%;
}

.whatwedo-iconsDiv {
    border: 1px solid var(--purplecolor);
    border-radius: 50%;
    padding: 13px;
    display: inline-block;
    transform: scale(1, 1);
    transition: all 0.4s;
}

.whatwedo-icons {
    width: 46px;
    height: 46px;
    object-fit: scale-down; 
}

.whatwedo-card:hover{
    border: 1px solid rgba(149, 116, 237, 1);
}

.whatwedo-card:hover .whatwedo-iconsDiv{
    transform: scale(1.1, 1.1);
}

.whatwedo-title {
    font-size: 20px;
    font-weight: 500;
    padding: 20px 0;
}

.mission-content p {
    padding-bottom: 30px;
}

.mission-content p:last-child {
    padding-bottom: 0;
}

.ourmission-imgDiv{
    overflow: hidden;
    border-radius: 20px;
}

.ourmission-img, .ourmission-imgDiv {
    width: 100%;
    height: 304px;
    object-fit: cover;
    transform: scale(1, 1);
    transition: all 0.4s;
}

.ourmission-imgDiv:hover .ourmission-img{
    transform: scale(1.1, 1.1);
}

.whychoose-ussection {
    background-color: rgba(249, 249, 249, 1);
}

.chooseus-card {
    border: 1px solid var(--secondpurple);
    background-color: var(--whitecolor);
    border-radius: 20px;
    padding: 20px;
    height: 100%;
    display: flex;
}

.whychoose-usDiv{
    width: 100%;
    height: 155px;
    overflow: hidden;
    border-radius: 20px;
}

.whychoose-us {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1, 1);
    transition: all 0.5s;
}

.chooseus-card:hover .whychoose-us{
    transform: scale(1.1, 1.1);
}

.chooseus-card .medium-title {
    padding-bottom: 20px;
}

/* static page contant */
.static-page-contant h1,
.static-page-contant h2,
.static-page-contant h3,
.static-page-contant h4,
.static-page-contant h5,
.static-page-contant h6 {
    font-size: 18px;
    font-weight: 500;
    color: var(--blackcolor);
    margin-bottom: 20px;
}

.static-page-contant p,
.static-page-contant ul li {
    font-size: 14px;
    font-weight: 400;
    color: #727272;
    margin-bottom: 20px;
}

.static-page-contant p:last-child {
    margin-bottom: 0;
}

.static-page-contant ul {
    padding-left: 1rem;
}

.static-page-contant ul li {
    list-style: disc;
}

/* Blog details page */
.blog-detials-page .blog-contant .blogpage-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 30px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
}

.blog-detials-page .blog-contant .blog-contant-page h1,
.blog-detials-page .blog-contant .blog-contant-page h2,
.blog-detials-page .blog-contant .blog-contant-page h3,
.blog-detials-page .blog-contant .blog-contant-page h4,
.blog-detials-page .blog-contant .blog-contant-page h5,
.blog-detials-page .blog-contant .blog-contant-page h6 {
    font-size: 20px;
    font-weight: 500;
    color: var(--blackcolor);
    margin-bottom: 20px;
}
.blog-detials-page .blog-contant .blog-contant-page,
.blog-detials-page .blog-contant .blog-contant-page p,
.blog-detials-page .blog-contant .blog-contant-page ul li {
    font-size: 14px;
    font-weight: 400;
    color: #727272;
    margin-bottom: 20px;
}

.blog-detials-page .blog-contant .blog-contant-page p:last-child {
    margin-bottom: 0;
}

.blog-detials-page .blog-contant .blog-contant-page ul {
    padding-left: 1rem;
}

.blog-detials-page .blog-contant .blog-contant-page ul li {
    list-style: disc;
}

.blog-recents {
    padding: 25px;
    border: 1px solid #DADADA;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    position: sticky;
    top: 30px;
}

.blog-recents .recent-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--blackcolor);
    margin-bottom: 20px;
    display: inline-block;
}

.blog-recents ul li {
    border-bottom: 1px solid #DADADA;
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.blog-recents ul li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.list-recent-blog {
    display: flex;
    align-items: center;
    gap: 20px;
}

.list-recent-blog img {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    min-width: 100px;
    height: 100px;
    object-fit: contain;
}

.list-recent-blog .recent-title {
    margin-bottom: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

}

.list-recent-blog .blog-dateDiv {
    padding-bottom: 10px;
}

.blog-listrecentDiv {
    overflow: hidden;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    min-width: 100px;
    height: 100px;
}

.blog-listrecentDiv img{
    transform: scale(1, 1);
    transition: all 0.5s;
}

.blog-listrecentDiv:hover img{
    transform: scale(1.1, 1.1);
}

/* Not Found Page =========================================== */
.notfound-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.notfountimg {
    width: auto;
    height: 480px;
}

.big-title {
    color: var(--blackcolor);
    font-size: 36px;
    font-weight: 600;
}

/* Delete account page */

.deletemedium-title span {
    color: rgba(106, 62, 219, 1);
}

.deletemedium-title {
    font-size: 40px;
    font-weight: 600;
}

.deleteaccount-banner {
    background-color: rgba(244, 240, 255, 1);
    display: flex;
    align-items: center;
    overflow: hidden;
    background-position: center;
    position: relative;
    z-index: 1;
    padding: 31px 0px 59px 0px;
}

.deleteaccount-title {
    font-size: 45px;
    font-weight: 600;
}

.deleteaccount-title span {
    color: rgba(106, 62, 219, 1);
}

.deleteaccount-content .banner-paraDiv {
    padding-top: 30px; 
}

.deleteaccount-content .banner-paraDiv p{
 color: rgba(0, 0, 0, 1);
    line-height: 30px;
}

.bannermobile-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.accountbannerkey-img {
    width: 250px;
    height: auto;
    object-fit: contain;
    position: absolute;
    left: 0;
    bottom: 57px;
}

.accountbanner-shapebg {
    width: auto;
    height: fit-content;
    object-fit: contain;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

/* Go to setting section */
.settingicon-section {
    position: relative;
    overflow: hidden;
}

.settingmobile-imgDiv {
    width: 100%;
    padding-left: 65px;
    position: relative;
    overflow: hidden;
}

.settingmobile-img {
    max-width: 335px;
}

.settingbanner-shapebg {
    width: auto;
    height: fit-content;
    max-height: 680px;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.setting-purpleline {
    position: absolute;
    right: -25px;
    top: 71px;
    width: auto;
    height: 282px;
}

.settingbanner-key {
    position: absolute;
    top: 150px;
    right: 0;
    width: auto;
    height: 326px;
}

/*  */
.deleteaccount-section {
    background-color: rgba(244, 240, 255, 1);
    position: relative;
    overflow: hidden;
}

.deleteaccount-imgDiv {
    width: 100%;
    text-align: center;
    position: relative;
}

.deleteaccount-purpleline {
    position: absolute;
    left: -29px;
    bottom: 73px;
    width: auto;
    height: 315px;
}

.deletebanner-shapebg {
    position: absolute;
    top: -10px;
    right: 30px;
    width: auto;
    height: fit-content;
}

.deletebanner-key {
    position: absolute;
    bottom: 11px;
    left: 60px;
    width: auto;
    height: 360px;
}

/*  */
.confirmdelete-mobimgDiv .setting-purpleline {
    top: 52%;
    transform: translate(-20%, -50%);
    height: 189px;
}

.confirmdelete-section .medium-title {
    margin-bottom: 65px;
}

.confirmdelete-section .settingbanner-key {
    top: unset;
    bottom: 100px;
    right: 66px;
    height: 417px;
}