@font-face {
    font-family: inter-m;
    src: url(../font/inter/Inter-Medium.ttf);
}

@font-face {
    font-family: inter;
    src: url(../font/inter/Inter-Regular.ttf);
}

@font-face {
    font-family: changa;
    src: url(../font/changa/Changa-Regular.ttf);
}

@font-face {
    font-family: changa-m;
    src: url(../font/changa/Changa-Medium.ttf);
}

html {
    height: 100vh;
}

body {
    font-family: 'inter';
    margin: 0;
    padding: 0;
    height: 100vh;
}

a {
    text-decoration: none;
}

:root {
    --bg1: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), linear-gradient(180deg, #3670D5 0%, #04E5D2 100%);
    --bg1hover: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), linear-gradient(180deg, #5780c8 0%, #00ffeaa1 100%);
    --bg2: linear-gradient(79.55deg, #F07E31 12.41%, #F45C75 39.02%);
    --black: #0B0B0B;
    --dark: rgba(40, 40, 40, 1);
    --white: #FFFFFF;
    --red: #EB5757;
}

.style-text {
    background: var(--bg2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.primary-button {
    background: var(--bg1);
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    padding: 12px 20px;
    border-radius: 8px;
    transition: 0.3s ease all;
}

header .primary-button {
    padding: 8px 20px 9px;
}

.primary-button:hover {
    background: var(--bg1hover);
    color: var(--white)
}

a.primary-button.bgnone {
    background: none;
    color: var(--white);
    border: 1px solid;
    padding: 7px 20px 8px;
    margin-right: 10px;
}

/* Credit 
    Challenge/Design - https://www.frontendmentor.io/
    Developed - Devance
 */

/* Font Family/Style */
@import url("https://fonts.googleapis.com/css2?family=Epilogue:wght@400;500;700&display=swap");

/* Reset CSS */
* {
    margin: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}



img {
    display: block;
    max-width: 100%;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

button {
    font: inherit;
}

ul {
    list-style: none;
    padding: 0;
}

/* CSS Variables */



/* Utility Classes */

.p-text {
    font-size: var(--fs-500);
    font-weight: var(--semi-bold);
    color: var(--gray);
}

.s-text {
    font-size: var(--fs-400);
    font-weight: var(--semi-bold);
    color: var(--gray);
}

.heading {
    font-size: var(--fs-600);
    font-weight: var(--bold);
    color: var(--dark);
    line-height: 1;
}

.dark-text {
    color: var(--dark);
}

.white-text {
    color: var(--neutral);
}

.bg-white {
    background-color: var(--neutral);
}

a {
    text-decoration: none;
    color: var(--gray);
}

a:hover,
a:active {
    color: var(--white);
}



.nav-bar {
    padding: 2em 1.5em;
    display: flex;
    justify-content: space-between;
}

.f-row {
    display: flex;
    align-items: center;
    gap: 2em;
}

.logo {
    width: 15rem;
}

#mainlogo {
    width: 10rem;
}


.nav-list {
    display: flex;
    gap: 1.5em;
    align-items: center;
}

.nav-list>li {
    cursor: pointer;
    position: relative;
}

.arrow {
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.4em;
}

.dark-arrow {
    filter: brightness(0);
}

.sub-menu-1 {
    display: none;
    position: absolute;
    width: 10em;
    top: 2.5em;
    left: -5em;
    border-radius: 0.5em;
    background-color: var(--neutral);
    padding: 0.6em 1.5em;
    box-shadow: 5px 3px 20px -2px rgba(105, 105, 105, 0.5);
}

.sub-menu-2 {
    display: none;
    position: absolute;
    width: 13em;
    top: 2.5em;
    left: -1em;
    border-radius: 0.5em;
    background-color: var(--neutral);
    padding: 0.6em 1.4em;
    box-shadow: 5px 3px 20px -2px rgba(105, 105, 105, 0.5);
}

.sub-menu-list>li {
    margin: 0.4em 0;
}

.sub-menu-list img {
    display: inline-block;
    margin-right: 0.6em;
    vertical-align: middle;
}

.mobile-nav {
    display: none;
}

.register-btn {
    border: 0.15em solid var(--gray);
    border-radius: 0.4em;
    background-color: transparent;
    padding: 0.2em 1em;
    cursor: pointer;
}

.register-btn:active,
.register-btn:hover {
    color: var(--dark);
    border-color: var(--dark);
}

.main {
    display: flex;
    justify-content: space-around;
    padding: 2em 0;
}

.main-img-mobile {
    display: none;
}

.main-text {
    display: flex;
    flex-direction: column;
    align-self: flex-end;
    gap: 6em;
}

.inner-text-main {
    display: flex;
    flex-direction: column;
    gap: 4em;
}

.m-text {
    display: none;
}

.learn-btn {
    width: 10em;
    padding: 0.6em 0;
    background-color: var(--dark);
    border-radius: 0.8em;
    color: var(--neutral);
    text-align: center;
    border: 0.15em solid var(--dark);
}

.learn-btn:hover {
    background-color: var(--neutral);
    color: var(--dark);
    font-weight: var(--bold);
    cursor: pointer;
    border: 0.15em solid var(--dark);
}

.main-row-company {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-img {
    width: 35%;
    align-self: flex-start;
}

/* Media Queries */

@media (max-width: 1400px) {
    :root {
        --fs-600: 5rem;
    }

    .main-img,
    .main-text {
        align-self: center;
    }
}

@media (max-width: 1200px) {
    :root {
        --fs-600: 4rem;
    }
}

@media (max-width: 1000px) {
    .main {
        flex-direction: column;
        align-items: center;
        gap: 3em;
    }

    .m-head {
        width: 100%;
    }

    .main-img {
        display: none;
    }

    .main-img-mobile {
        display: block;
        width: 60%;
    }

    .main-text {
        text-align: center;
    }

    .learn-btn {
        margin: 0 auto;
    }
}

@media (max-width: 900px) {
    :root {
        --fs-600: 3rem;
    }

    .d-nav {
        display: none;
    }

    .main-text {
        margin: 0 1em;
        gap: 4em;
    }

    .inner-text-main {
        gap: 2em;
    }

    .menu-icon {
        cursor: pointer;
    }

    .mobile-nav {
        display: block;
    }

    .main-img-mobile {
        display: block;
        width: 100%;
    }

    .nav-list-mobile {
        display: none;
        position: absolute;
        right: 0;
        top: 3.8em;
        width: 60vw;
        height: 100vh;
        padding: 2em 1em;
        background-color: var(--primary);
        box-shadow: -45vw 0px 0px 0px rgb(0 0 0 / 75%);
    }

    .nav-list-mobile>li {
        margin-bottom: 1em;
    }

    .sub-menu-1 {
        position: relative;
        width: 100%;
        top: 0;
        left: 0;
        background-color: var(--primary);
        box-shadow: none;
        border-radius: 0;
    }

    .sub-menu-2 {
        position: relative;
        width: 100%;
        top: 0;
        left: 0;
        background-color: var(--primary);
        box-shadow: none;
        border-radius: 0;
    }

    .login {
        text-align: center;
    }

    .register-btn {
        margin-top: 1em;
    }

    .d-text {
        display: none;
    }

    .m-text {
        display: block;
    }

    .main-row-company {
        justify-content: center;
        flex-wrap: wrap;
        gap: 2em;
    }
}

header ul {
    margin-bottom: 0;
}

.logo {
    width: 7rem;
}

header ul>li>a {
    color: var(--white)
}

header ul>li.s-text {
    color: var(--white)
}

.arrow {
    filter: brightness(10);
}

.dark-arrow {
    filter: brightness(10);
}

header .active {
    background: var(--bg2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

header ul li a:hover {
    background: var(--bg2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.herocontent {
    color: var(--white);
}

.herocontent h1 {
    font-family: 'changa';
}

.herocontent p {
    font-size: 15px;
    margin-bottom: 34px;
}

.herocontent {
    padding: 10px;
    margin-right: 20px;
}

.herocontent h1 {
    font-family: 'changa';
    line-height: 1.6;
    margin-right: 43px;
}

.herosec {
    height: 40em;
    display: flex;
    align-items: center;
}

.padding {
    padding: 50px 0;
}

.bgdark {
    background-color: var(--black);
}

.section-title {
    font-family: 'Changa';
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 55px;
    color: var(--white);
}

.section-title span {
    color: var(--red);
}

.section-des {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: #FFFFFF;
}

.section-detail {
    margin-bottom: 2.5rem;
}

.rc-img {
    border-radius: 10px;
    margin-bottom: 12px;
}

.hiw_content h2 {
    font-family: 'changa';
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
}

.hiw_content h4 {
    color: var(--white);
    font-size: 20px;
}

.hiw_content p {
    color: var(--white);
    font-size: 15px;
}

.hiw_content {
    margin-bottom: 40px;
}

.hiw_content img {
    margin-top: 24px;
}

.readmore {
    position: relative;
    margin-left: 45px;
}

.readmore span {
    font-size: 28px;
    color: var(--red);
    display: inline-block;
    position: absolute;
    top: -24px;
    left: -45px;
}

.blog-content {
    position: relative;
}

.overly {
    background: linear-gradient(180deg, rgba(54, 112, 213, 0) 0%, #04E5D2 100%);
    height: 100%;
    width: 100%;
    position: absolute;
}

.blogdetail {
    position: absolute;
    bottom: 0;
    padding: 20px;
    color: var(--white);
}

a.readmore {
    color: var(--white);
}

h2.loop-title {
    font-size: 25px;
    font-family: 'changa';
}

/* .middleiconwrp {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	top: 0;
} */
.vpop {
    position: relative;
}

/* .middleiconwrp {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	top: 0;
} */

#video-popup-container {
    display: none;
    position: fixed;
    z-index: 996;
    width: 60%;
    left: 50%;
    margin-left: -30%;
    top: 20%;
    background-color: var(--whitecolor);
}

#video-popup-close {
    cursor: pointer;
    position: absolute;
    right: -10px;
    top: -10px;
    z-index: 998;
    width: 25px;
    height: 25px;
    border-radius: 25px;
    text-align: center;
    font-size: 12px;
    background-color: var(--blackcolor);
    line-height: 25px;
    color: var(--whitecolor);
}

#video-popup-iframe-container {
    position: absolute;
    z-index: 997;
    width: 100%;
    padding-bottom: 56.25%;
    border: 2px solid var(--blackcolor);
    border-radius: 2px;
    background-color: var(--blackcolor);
}

#video-popup-iframe {
    z-index: 999;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: var(--blackcolor);
}

#video-popup-overlay {
    display: none;
    position: fixed;
    z-index: 995;
    top: 0;
    background-color: var(--blackcolor);
    opacity: 0.8;
    width: 100%;
    height: 100%;
}

#video-popup-close:hover {
    color: #DE0023;
}

.icon {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.middleiconwrp {
    padding: 0 70px;
}

span.position {
    display: block;
    color: var(--white);
    font-size: 14px;
    margin-bottom: 50px;
}

p.comment {
    font-size: 17px;
    color: var(--white);
    margin-top: 40px;
}

button.carousel-control-prev1 {
    background: rgba(255, 255, 255, 0.15);
}

button.carousel-control-next1 {
    background: linear-gradient(79.55deg, #F07E31 12.41%, #F45C75 39.02%)
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    display: inline-block;
    width: 1.3rem;
    height: 1rem;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
    margin-top: 6px;
    border: none;
}

.carouselicon {
    position: relative;
}

.iconwrp {
    position: absolute;
    top: -98px;
}

.comment_wrp {
    padding-right: 50px;
}

.carouselicon {
    position: relative;
    margin-bottom: 30px;
}

.accordion-item:first-of-type .accordion-button {
    border-radius: 0;
}

.accordion-item {
    border-radius: 0 !important;
    padding: 10px;
    margin-bottom: 20px;
}

.accordion-button:not(.collapsed) {
    color: var(--black);
    background: none;
    box-shadow: unset;
}

.accordion-body {
    color: rgba(109, 120, 130, 1);
    font-size: 15px;
}

button.accordion-button {
    font-weight: bold;

}

.accordion-button:focus {
    z-index: 3;
    border-color: var(--white);
    outline: 0;
    box-shadow: none;
}

img.iconc {
    width: 25px;
    margin-right: 15px;
}

.accordion-button::after {
    flex-shrink: 0;
    width: var(--bs-accordion-btn-icon-width);
    height: var(--bs-accordion-btn-icon-width);
    margin-left: auto;
    content: "";
    background-image: var(--bs-accordion-btn-icon);
    background-repeat: no-repeat;
    background-size: var(--bs-accordion-btn-icon-width);
    transition: var(--bs-accordion-btn-icon-transition);
    background-color: var(--red) !important;
    border-radius: 100%;
    width: 25px;
    height: 25px;
    background-size: 14px;
    background-position: 5px 7px;
}

button.accordion-button.collapsed::after {
    flex-shrink: 0;
    width: var(--bs-accordion-btn-icon-width);
    height: var(--bs-accordion-btn-icon-width);
    margin-left: auto;
    content: "";
    background-image: var(--bs-accordion-btn-icon);
    background-repeat: no-repeat;
    background-size: var(--bs-accordion-btn-icon-width);
    transition: var(--bs-accordion-btn-icon-transition);
    background-color: var(--white) !important;
    border-radius: 100%;
    width: 25px;
    height: 25px;
    background-size: 14px;
    background-position: 5px 7px;
}

.hdark {
    background-color: var(--dark);
}

.copyright {
    color: var(--white)
}

.footerlogo {
    margin-bottom: 40px;
}

h3.footer-title {
    color: var(--white);
    font-size: 17px;
    margin-bottom: 15px;
}

.aboutdetail p {
    font-size: 14px;
    color: rgba(169, 169, 169, 1);
}

.links ul li a {
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
    color: var(--white)
}

h2.bigfootertitle {
    font-family: 'changa';
    color: var(--white);
    margin-bottom: 20px;
}

.footer-widget.trd p {
    color: #CCCCCC;
    margin-right: 63px;
    line-height: 1.9;
}

.footer-widget.trd input.from-control {
    background: var(--dark);
    border: none;
    padding: 10px 30px 10px 15px;
}

button.submit {
    border: none;
    padding: 12px 14px;
    background: linear-gradient(79.55deg, #F07E31 12.41%, #F45C75 39.02%);
}

.social-icons.d-flex a {
    display: inline-block;
    background: linear-gradient(79.55deg, #F07E31 12.41%, #F45C75 39.02%);
    margin: 12px 18px 0 0;
    color: var(--white);
    padding: 3px 8px;
    border-radius: 100%;
}

.nav-list-mobile {
    display: none;
    position: absolute;
    right: 0;
    top: 3.8em;
    width: 60vw;
    height: 100vh;
    padding: 2em 1em;
    background-color: var(--dark);
    box-shadow: -45vw 0px 0px 0px rgb(0 0 0 / 75%);
}

img#menu-btn {
    filter: brightness(10);
}

.icon img {
    width: 80px;
}

.loop_comment img {
    width: 110px;
}

@media (min-width:992px) {
    .sutook {
        display: none;
    }

    .borook {
        display: block;
    }
}

@media (max-width:991px) {
    .sutook {
        display: block;
    }

    .borook {
        display: none;
    }

    .herosec {
        height: auto;
        display: flex;
        align-items: center;
        padding: 10px 10px 40px 10px;
    }

    .hiw_content img {
        width: 100%;
    }

    .hiw_content {
        padding: 10px;
    }

    .content-wrp img {
        width: 100%;
    }

    .postloop {
        margin: 0 10px 40px 10px;
    }

    .our-blog p.text-center.mt-5 {
        margin-top: 1rem !important;
    }

    .middleiconwrp {
        padding: 0 15px;
    }

    .loop_comment img {
        width: 70px;
        margin-top: 25px;
    }

    .iconwrp {
        position: unset;
        top: -98px;
        padding-left: 20px;
    }

    span.position {
        display: block;
        color: var(--white);
        font-size: 14px;
        margin-bottom: 23px;
    }

    p.comment {
        font-size: 17px;
        color: var(--white);
        margin-top: 20px;
    }

    .comment_wrp {
        padding: 20px;
    }

    .icon img {
        width: 80px;
    }

    .footer-widget.frist {
        margin-bottom: 40px;
    }

    .footerlogo {
        padding: 0 10px;
    }

    .footer-widget {
        padding: 0 10px;
    }

    .copyright {
        padding: 0 10px;
    }

    .padding {
        padding: 35px 0;
    }

    .footer-widget.trd p {
        color: #CCCCCC;
        margin-right: 40px;
        line-height: 1.9;
    }
}

img {
    width: 100%;
    /* height: auto */
}

.nav-bar {
    padding: 2em 1em;
    display: flex;
    justify-content: space-between;
}

.arrow {
    width: 10px;
}

h2.page_title.blog {
    color: var(--white);
    padding: 40px 0 120px;
}

h3.page_title {
    color: var(--white);
    padding: 40px 0 120px;
}

h2.page_title.blogpage {
    margin: 0;
    padding: 40px 0 20px;
    color: var(--white);
}

h2.title_blog {
    font-family: 'changa';
    color: var(--white);
    font-size: 35px;
    margin: 20px 0 12px;
}

span.date {
    color: var(--white);
    font-size: 14px;
    display: block;
}

.blog_content_wapper p,
.blog_content_wapper img {
    margin: 30px 0;
    color: var(--white);
    font-size: 14px;
}

.readmore.blogpage span {
    font-size: 28px;
    color: var(--red);
    display: inline-block;
    position: absolute;
    top: -20px;
    left: -45px;
}

p.readmore.name.blogpage {
    color: var(--white);
}

h2.bit {
    color: var(--white);
    font-size: 17px;
    margin-top: 20px;
}

p.readmore.name.blogpage font {
    position: absolute;
    left: -52px;
}

.readmore.blogpage span {
    left: -30px;
}

p.readmore.name.blogpage {
    margin-left: 50px;
}

.viewpdf {
    background: linear-gradient(79.55deg, #F07E31 12.41%, #F45C75 39.02%);
    padding: 12px 18px;
    color: var(--white);
}

.promt_submit_btn {
    background: linear-gradient(79.55deg, #F07E31 12.41%, #F45C75 39.02%);
    color: var(--white);
}

section.hero.nothome {
    padding-bottom: 3em;
}

h2.reserchtitle {
    font-size: 28px;
    color: var(--white);
}

span.date.txbig {
    font-size: 20px;
}

input#form1 {
    border-radius: unset;
    background: linear-gradient(180deg, #A75A08 0%, #EC8F06 100%);
    border: none;
    padding: 14px 25px;
    width: 100%;
    display: block;
    border-radius: 25px;
    color: var(--white);
}

div#search-autocomplete {
    width: 100%;
}

button.btn-btn-primary {
    position: absolute;
    right: 18px;
    top: 10px;
    border: none;
    background: transparent;
    color: var(--white);
    font-size: 18px;
}

h2.page_titleblogpage {
    color: var(--white);
    margin: 30px 0px;
}

.social-icons.d-flex a {
    display: block;
    background: linear-gradient(79.55deg, #F07E31 12.41%, #F45C75 39.02%);
    margin: 12px 18px 0 0;
    color: var(--white);
    padding: 3px 9px;
    border-radius: 100%;
    width: 34px;
    height: 34px;
}

.thumwrp img {
    margin: 0;
}

.thumwrp {
    position: relative;
}

.ovarlyimg {
    background: rgba(147, 147, 147, 0.7);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    display: none;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease all;
}

.ovarlyimg a {
    color: var(--white);
    border: 1px solid;
    padding: 3px 10px;
}

.thumwrp:hover .ovarlyimg {
    display: flex;
}

h2.looptitles {
    color: var(--white);
    margin: 12px 0 24px;
    font-size: 25px;
}

.blogloop {
    padding: 32px;
    border: 1px solid #fff;
    margin-bottom: 30px;
}

a.back {
    color: var(--white);
    margin: 50px 0 0px;
    display: block;
}

h2.page_title.blogpage.gru {
    padding: 16px 0;
}

.roobot.row.justify-content-between.align-items-center span {
    color: var(--white);
}

a.back div {
    display: inline;
    margin-left: 16px;
    border-bottom: 1px solid var(--red);
}

.grdetail.p-3 p {
    margin: 0;
    font-size: 17px;
    margin-bottom: 5px;
    color: #000;
}

.grdetail.p-3 span {
    color: #4F4F4F;
    font-size: 14px;
}

.grdetail.p-3 {
    background-color: var(--white);
}

a.viewpdff {
    color: var(--white);
    padding: 8px 15px;
    border: 1px solid;
    border-radius: 10px;
}

a.downloadnow {
    background: var(--white);
    padding: 9px 20px;
    display: inline-block;
    margin: 16px 0;
    border-radius: 4px;
}

a.downloadnow:hover {
    color: var(--black);

}

.f-row.headicons a {
    font-size: 22px;
    color: var(--white);
}

.f-row.headicons img {
    border-radius: 100%;
}

.form-groupsrow {
    display: flex;
}

.form-groupsrow input {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
}

.form-groupsrow select {
    width: 150px;
    color: rgba(109, 120, 130, 1)
}

a.dashboardlink {
    color: var(--white);
    font-size: 18px;
}

.leftbar {
    background: rgba(71, 71, 71, 0.19);
    height: 100%;
    padding: 20px 0;
}

.leftbar i.bi {
    color: rgba(240, 126, 49, 1);
    font-size: 17px;
    margin-right: 5px;
}

.leftbar li a {
    width: 100%;
    display: block;
    padding: 10px;
    color: var(--white);
    transition: 0.3s ease all;
    border-radius: 5px
}

.leftbar a:hover {
    background-color: rgba(166, 206, 242, 0.2);
}

p.donthave {
    color: var(--white);
    font-size: 13px;
    margin: 0;
}

.style-text2 {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), linear-gradient(180deg, #3670D5 0%, #04E5D2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.sidebar-signin {
    padding: 40px;
    background: rgba(159, 159, 159, 0.27);
    height: 100%;
}

.pl0 {
    padding-left: 0;
}

h2.createyouracc {
    font-size: 24px;
    color: var(--white);
    margin: 70px 0 15px;
}

.form-group label {
    color: var(--white);
    margin: 7px 0;
}

.form-group .f-row input {
    width: 100%;
    padding: 12px;
    border-radius: 25px;
    border: none;
    font-size: 11px;
    padding-left: 35px;
}

.form-group .f-row label {
    color: var(--black)
}

.form-group .f-row label {
    color: #BBBEC7;
    margin-right: -61px;
    z-index: 99;
    margin-left: 13px;
    margin-top: -9px;
}

.form-group .f-row input {
    width: 100%;
    padding: 12px;
    border-radius: 25px;
    border: none;
    font-size: 11px;
    padding-left: 35px;
    margin: 7px 0 18px;
}

.checkbox label {
    margin-left: 7px;
    color: rgba(148, 150, 154, 1);
}

.checkbox input {
    width: 20px;
}

.frogetpas a {
    background: linear-gradient(79.55deg, #F07E31 12.41%, #F45C75 39.02%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.from-button.button1 button {
    border: none;
    padding: 10px;
    border-radius: 25px;
    width: 100%;
    margin: 15px 0;
    background: linear-gradient(79.55deg, #F07E31 12.41%, #F45C75 39.02%);
    color: #fff;
}

.from-button.button2 button {
    border: none;
    padding: 10px;
    border-radius: 25px;
    width: 100%;
    color: #fff;
    margin: 15px 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), linear-gradient(180deg, #3670D5 0%, #04E5D2 100%);
}

.normal-button {
    border: none;
    padding: 10px;
    border-radius: 25px;
    color: #fff;
    margin: 15px 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), linear-gradient(180deg, #3670D5 0%, #04E5D2 100%);
}

p.or {
    color: #fff;
    margin: 10px;
    text-align: center;
}

.logoimg img {
    width: 250px;
}

.heroimg img {
    width: 450px;
    margin: 0 auto;
}

.sign-in .col-lg-9.d-flex.align-items-center.justify-content-center {
    height: 100vh;
}

p.myclg span {
    margin-right: 20px;
    border-bottom: 1px solid rgba(244, 92, 117, 1);
}

p.myclg {
    color: #fff;
}

ul#myTab {
    border: none;
}

.navitems button {
    border-radius: 0;
    border: none;
    color: #fff
}

.navitems {
    display: flex;
    padding: 9px 20px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), linear-gradient(180deg, #3670D5 0%, #04E5D2 100%);
    border-radius: 35px;
}

.navitems button.nav-link.active {
    color: #000;
    border-radius: 25px;
}

ul#myTab li button {
    border-radius: 27px;
    border: none;
}

ul#myTab li button:hover {
    color: #000;
}

h3.page-subtitle {
    font-size: 22px;
    margin: 30px 0 40px;
    color: var(--white);
}

.priceing_item {
    padding: 20px;
}

.priceing_wrp {
    background: rgba(169, 169, 169, 0.04);
    border-radius: 0px 0px 40px 0px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
    margin: 20px 0;
    color: var(--white);
    height: 100%;
    position: relative;
}

.priceing_item {
    padding: 10px 20px 0;
    margin-top: -139px;
}

.priceing_wrp h4 span {
    font-size: 15px;
}

a.pricebutton {
    display: block;
    background: linear-gradient(79.55deg, #F07E31 12.41%, #F45C75 39.02%);
    padding: 11px;
    border-radius: 9px;
    text-align: center;
    font-size: 14px;
    margin: 16px 0 25px;
    border: 1px solid rgb(0 120 169);
}

.pricebutton {
    display: block;
    background: linear-gradient(79.55deg, #F07E31 12.41%, #F45C75 39.02%);
    padding: 11px;
    border-radius: 9px;
    text-align: center;
    font-size: 14px;
    margin: 16px 0 25px;
    border: 1px solid rgb(0 120 169);
}

.detailprice ul li {
    list-style: disc;
    font-size: 13px;
    margin: 5px 0 5px 16px;
}

.detailprice {
    background: rgba(11, 11, 11, 0.31);
    padding: 10px 17px;
}

span.buttontype {
    float: right;
    background: linear-gradient(79.55deg, #F07E31 12.41%, #F45C75 39.02%);
    padding: 5px 9px;
    border-radius: 15px;
}

del.delprice {
    font-size: 14px;
    color: var(--red);
    display: block;
    margin: 0 0 8px;
}

a.pricebutton.\31 st {
    margin-top: 50px;
}

span.mpopular {
    background: linear-gradient(79.55deg, #F07E31 12.41%, #F45C75 39.02%);
    padding: 5px 10px;
    border-radius: 15px;
    position: absolute;
    right: 7px;
    font-size: 12px;
    top: -12px;
}

.aboutdetail p i {
    background: var(--bg2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

p.paydetail {
    color: var(--white);
    border-bottom: 1px solid rgba(55, 55, 55, 1);
    padding: 14px 0;
    margin-bottom: 0px;
}

p.paydetail span {
    float: right;
}

a.paybutton {
    display: block;
    text-align: center;
    margin: 20px 0;
    background: #BBBABA;
    color: #000;
    padding: 11px;
    border-radius: 7px;
    font-size: 13px;
}

a.paybutton.sec em {
    color: rgba(47, 45, 128, 1);
}

a.paybutton.sec em i {
    color: rgba(96, 150, 218, 1)
}

a.paybutton.sec {
    background: linear-gradient(79.55deg, #F07E31 12.41%, #F45C75 39.02%);
}

.imagewapperlist img {
    margin: 15px 0;
}

.m7rem {
    margin-top: 3.4rem;
}

.row.align-items-center.m7rem span {
    color: #fff;
    margin: 10px 0;
    display: block;
    font-size: 13px;
}

.row.align-items-center.m7rem span font {
    font-size: 20px;
    color: var(--red)
}

h2.page_titleblogpage.asfdsa {
    margin: 8px 0;
}

.titlewrp {
    margin-bottom: 2rem;
}

.imgbottom p {
    color: #fff;
    margin: 11px 0;
    font-size: 14px;
}

@media (max-width:990px) {

    .row.imagewapperlist.mt-5 .col-4,
    .row.imagewapperlist.mt-5 .col-6 {
        padding: 0 7px;
    }

    .m7rem {
        margin-top: 0;
    }

    .herocontent h1 {
        font-family: 'changa';
        line-height: 1.6;
        margin-right: 0;
        font-size: 40px;
    }
}

ul#mobile-menu {
    z-index: 99;
}

.herocontent h1 {
    font-family: 'changa';
    line-height: 1.6;
    margin-right: 43px;
    font-size: 54px;
}

.heroimg img {
    width: auto;
    margin: 0 auto;
}

.section-title span {
    background: linear-gradient(166.55deg, #F07E31 12.41%, #F45C75 39.02%),
        linear-gradient(0deg, #FFFFFF, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

h2.bigfootertitle {
    font-weight: bold;
}

nav.container.nav-bar {
    font-family: "inter-m";
}

.hiw_content h2 {
    font-family: 'changa-m';
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
    background: linear-gradient(173deg, #F07E31 12.41%, #F45C75 39.02%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.hiw_content {
    margin-bottom: 60px;
}

button.accordion-button.collapsed::after {
    transform: rotate(-90deg) !important;
}

button.accordion-button::after {
    background-position: 6px 6px;
    transform: rotate(0deg) !important;
}

.django-quill-widget-container {
    background: #fff !important;
    border-radius: 10px;
    min-height: 400px;
}

.ql-toolbar.ql-snow,
.ql-container.ql-snow {
    border: none !important;
}

.ai-doc-col {
    margin-bottom: 15px;
}

.ai-doc-list-wrapper {
    display: table;
    width: 100%;
    min-height: 250px;
    position: relative;
}

.ai-doc-list-block {
    width: 100%;
    background: #1a1a1a;
    border-radius: 10px;
    min-height: 250px;
    max-height: 250px;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
    position: relative;
}

.div_box_cover_img {
    width: 100%;

}

.ai-doc-list-block img {

    margin: auto;
    margin-top: 20px;
    display: block;

    margin-bottom: 25px;
    text-align: center;
}

.ai-doc-list-block .doc-title-block {
    width: 100%;
    position: absolute;
    text-align: left;
    right: 0;
    bottom: -48px;
}

.ai-doc-list-block {
    color: #ccc !important;

}

.create-ai-doc,
.create-ai-doc:hover {
    color: #ccc !important;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid #595959;
    transition: all 0.3s ease-in-out;
    background: #595959;
}

.doc-title-block {
    background: #262626;
    color: #ccc;
}

.doc-title-block:hover {
    background: #262626;
    color: #ccc;
}

.doc-title,
.doc-title:hover {
    font-size: 14px;
    color: #ccc !important;
}

.doc-sub-title {
    font-size: 12px;
    color: #8c8c8c;
    font-weight: 500;
}

.loader {
    border: 8px solid #f3f3f3;
    border-radius: 50%;
    border-color: #ccc;
    border-top: 8px solid #3498db;
    width: 80px;
    height: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 9999999;
    -webkit-animation: spin 2s linear infinite;
    /* Safari */
    animation: spin .8s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.pricingRow {
    color: #e2e2e2;
}

.priceBox {
    padding: 20px 15px;
}

.focusPrice {
    /* border: 3px solid #04E5D2; */
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.subscribeBtn {
    width: 100%;
    margin-top: 50px;
}

.subscribeBtn a {
    border: none;
    padding: 10px;
    border-radius: 15px;
    color: #fff;
    margin: 15px 0;
    background: rgba(255, 255, 255, 0.06);
    display: inline-block;
    width: 100%;
    text-align: center;
}

.fear-Sel-Btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
}

.packageShortDescription {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0;
}

.packagePrice {
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0;
}

.yearlyPrice {
    display: none;
}

.billing_cycle {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0;
}

.featureList {
    margin-top: 20px;
    list-style: circle;
}

.featureList li {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 15px;
    margin-left: 15px;
}



.priceDeactiveSubscriptionBtn,
.priceActiveSubscriptionTypeBtn {
    border: none;
    padding: 10px;
    border-radius: 15px;
    color: #fff;
    margin: 15px 0;
    background: #ececec;
    color: #000;
}

#priceHint {
    color: #e2e2e2;
}

#aiDocRow {
    display: none;
}

.currentSubscription {
    width: 100%;
    padding: 10px 15px;
    background: #262626;
    color: #f2f2f2;
    overflow: hidden;
}

.billPrice {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0;
}

#billHistory {
    color: #f2f2f2;
}

.upgradeLink span {
    background: linear-gradient(166.55deg, #F07E31 12.41%, #F45C75 39.02%),
        linear-gradient(0deg, #FFFFFF, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-right: 10px;
}

.cancel-subscription {
    color: #ff0000 !important;
}

.success-img {
    width: 100%;
    overflow: hidden;
}

.success-img img {
    display: block;
    width: 70%;
    margin: auto;
}

.fet-box {
    background-color: #262626;
    color: #f2f2f2;
    min-height: 230px;
    /* padding: 10px 15px;
    border-radius: 10px;
     */
}

.fet-box-card {
    background-color: #262626 !important;
}

.fet-box p {
    font-size: 14px;
}

.fet-box a {
    overflow: hidden;
    margin-bottom: 40px;
}

.isCurrentPlanTxt {
    text-align: center;
    font-size: 13px;
    padding: 0px !important;
    margin: 0px !important;
    font-weight: bold;
}

.profileSection {
    width: 70%;
    margin: auto;
    padding: 10px 15px;
    border-radius: 10px;
    background: #262626;
    color: #f2f2f2;
    overflow: hidden;
    padding-top: 20px;
    padding-bottom: 20px;
}


.avatar {
    width: 100%;
}

.avatar img {
    display: block;
    width: 50%;
    margin: auto;
}


#modalSubscriptionWarning {
    display: none;
}

#updateProfileForm,
#updatePasswordForm {
    display: none;
}

#clickToUpdateProfile,
#clickToUpdatePassword {
    cursor: pointer;
}

.myclg-creation span {
    margin-left: 20px;
    border-bottom: 1px solid rgba(244, 92, 117, 1);
}

.myclg-creation {
    color: #fff;
}

.instruction-title {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.ai-doc-instruction {
    list-style: circle;
    color: #ccc;
    font-size: 14px;
}

.sub-instructions {
    list-style: disc;
}

.card-img-top {
    width: 220px;
    height: 220px;
    margin: auto;
    margin-top: 10px;
    object-fit: contain;
}

.search {
    background: linear-gradient(79.55deg, #F07E31 12.41%, #F45C75 39.02%);
    padding: 12px 18px;
    color: var(--white);
}

.dashboardImg {
    width: 100%;
    text-align: right;
}

.dashboardImg>img {
    display: block;
    width: 100%;
}

.dashboardTxt {
    color: #fff;
}

.blog-content ol li,
.blog-content ul li {
    color: #fff;
}

.limitExceedBox {
    display: none;
}

.copy-text {
    color: #ff0000;
    font-size: 15px;
    display: none;
}

.day-mode {
    background-color: white !important;
    color: black !important;
}

.dark-mode {
    background-color: black !important;
    color: white !important;
}

.theme-icon-list {
    list-style: none;
    color: #fff;
    float: right;
}

.theme-icon-list li {
    float: left;
    color: #fff;
    margin-right: 10px;
    padding: 8px 10px;
    cursor: pointer;
}

.backTxt {
    color: #f2f2f2;
    margin-left: 10px;
}

.day-icon {
    border: 1px solid #ff5c33;
}

.night-icon {
    border: 1px solid #fff;
}

.artboards {
    color: #fff;
}

.artboard {
    width: 110px;
    height: 110px;
    background-color: #f2f2f2;
    color: #222222;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    float: left;
    margin-right: 15px;
    cursor: pointer;
}

.createArtboard {
    width: 110px;
    height: 110px;
    background-color: #f2f2f2;
    color: #242424;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    float: left;
    margin-right: 15px;
    cursor: pointer;
    font-size: 30px;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
}

.selectedArtboard {
    border: 3px solid #ff471a;
}

.projectBox {
    background: #262626;
    border: 1px solid #595959;
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 10px;
    text-align: center;
    color: #ccc;
    max-height: 300px;
    /* cursor: pointer; */
}

.projectBox:hover {
    border: 1px solid #EB5757;
}

.selectedProjectBox {
    border: 2px solid #EB5757;
}

.projectBox h6 {
    margin: 0px !important
}

.projectBox p {
    margin-left: 10px !important;
    margin-right: 10px !important;
    font-size: 12px;
    margin-top: 10px !important;
}

.projectBox img {
    width: 100%;
    margin: auto;
    object-fit: cover;
}

.projectTitle {
    margin: 0px !important;
    font-size: 15px !important;
}

.projectNameInput {
    width: 20%;
    padding: 0.25rem 0.5rem;
    font-size: .875rem;
    border-radius: 0.25rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;

}

.projectTitleForm {
    display: none;
}

#submitBtn {
    background: #ff5c33 !important;
    border: 1px solid #ff5c33;
}

.create-project-btn {
    display: none;
    color: #ccc !important;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid #595959;
    transition: all 0.3s ease-in-out;
    background: #595959;
}

.create-project {
    display: none;
}

.input-sm {
    min-height: 2px;
    padding: 0.15rem 0.25rem;
    font-size: .875rem;
    border-radius: 0.25rem;
    width: 90%;
    margin: auto;
    color: #f2f2f2 !important;
    background-color: #262626 !important;
    border-color: #ff5c33 !important;
}

.input-sm:focus {
    color: #f2f2f2;
    background-color: #262626;
    border-color: #ff5c33 !important;
    outline: 0;
    box-shadow: none !important;
}


/* Image Editor CSS */
/* fullscreen mode */
html[data-fullscreen] .my-editor {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2147483647;
    margin: 0;
}

/* export menu */
.export-form {
    padding: 0.75em;
    width: 14em;
}

.export-form label,
.export-form legend {
    display: block;
    font-size: 0.75em;
    margin-bottom: 0.5em;
}

.export-form>*+* {
    margin-top: 0.75em;
}

.export-form input[type='number'] {
    -moz-appearance: textfield;
    width: 2em;
    line-height: 1.75;
    font-size: 0.75em;
    padding: 0;
    border-radius: 0.3125em;
}

.export-form input::-webkit-outer-spin-button,
.export-form input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.export-form input[type='radio'] {
    display: none;
}

.export-form input+label {
    display: inline-block;
    border: 1px solid #000;
    padding: 0.25em 0.5em;
    margin-right: 0.75em;
    font-size: 0.75em;
    border-radius: 0.3125em;
    cursor: pointer;
}

.export-form input:checked+label {
    background: #000;
    color: #fff;
}

.export-form .number-slider {
    position: relative;
    display: flex;
    align-items: center;
}

.export-form .number-slider input[type='range'] {
    flex: 1;
}

.export-form .number-slider input[type='number'] {
    margin-left: 1em;
    text-align: right;
    padding-right: 1.5em;
    padding-left: 0.25em;
}

.export-form .number-slider span {
    position: absolute;
    font-size: 0.75em;
    right: 0;
    margin-right: 0.3125em;
}

.export-form fieldset[disabled] {
    filter: grayscale(100%);
    opacity: 0.25;
}

.export-form button {
    cursor: pointer;
    font-size: 0.75em;
    padding: 0 1em;
    line-height: 2.25;
    border-radius: 0.3125em;
    color: #000;
    background: #fdba07;
}

.export-form button[disabled] {
    filter: grayscale(100%);
    opacity: 0.5;
}

.export-form button svg {
    margin-left: -0.125em;
    margin-right: 0.5em;
    width: 1em;
    height: 1em;
}

.export-form button svg:only-child {
    margin: 0;
}

.export-form button>span {
    display: flex;
    align-items: center;
}

.export-form .outputActions {
    display: flex;
    justify-content: space-between;
}

/* range styles */
.export-form input[type='range'] {
    -webkit-appearance: none;
}

.export-form input[type='range']::-moz-range-thumb {
    border: none;
    border-radius: 0.75em;
    margin-top: -0.375em;
    width: 0.75em;
    height: 0.75em;
    background: #000;
    cursor: pointer;
}

.export-form input[type='range']::-webkit-slider-thumb {
    -webkit-appearance: none;
    border-radius: 0.75em;
    margin-top: -0.375em;
    width: 0.75em;
    height: 0.75em;
    background: #000;
    cursor: pointer;
}

.export-form input[type='range']::-webkit-slider-runnable-track {
    background: #000;
    height: 1px;
}

.export-form input[type='range']::-moz-range-track {
    background: #000;
    height: 1px;
}


ul.dots li .bi-three-dots-vertical {
    background: #2c2c2c;
    padding: 4px 11px 8px;
    display: inline-block;
    border-radius: 10px;
    color: #fff;
}

ul.subitems,
.ai-doc-sub-items {
    background: #2c2c2c;
    /* padding: 20px 15px; */
    min-width: 200px;
    border-radius: 10px;
    text-align: left;
    display: none;
    transition: 0.3s ease all;
}

.ai-doc-sub-items {
    padding: 8px 10px;
}

ul.dots {
    text-align: right;
}

ul.subitems li,
.ai-doc-sub-items li {
    margin: 10px 0;
}

ul.subitems i,
.ai-doc-sub-items i {
    margin-right: 8px;
    font-size: 14px;
}

ul.subitems a,
.ai-doc-sub-items a {
    font-size: 14px;
    color: #fff;
}

.ai-doc-sub-items li a {
    display: block;
    padding: 7px 10px;
}

.ai-doc-sub-items li a:hover {
    background: #eeeeee;
    color: #000;

    border-radius: 7px;

}

.dots_main {
    position: relative;
}

ul.dots {
    position: absolute;
    right: 15px;
    top: 15px;
}

a.dopadding {
    padding-bottom: 10px;
    display: block;
}

ul.dots li:hover ul.subitems,
ul.dots li:hover .ai-doc-sub-items {
    display: block;
    transition: 0.3s ease all;
}

.dots_main {
    display: none;
}

.section-detail .col-lg-3.col-md-5.col-10.mb-5:hover .dots_main {
    display: block;
}

section.hero.nothome .row.art-container .row .col-md-4 {
    width: 33% !important;
}

@media (max-width:768px) {
    section.hero.nothome .row.art-container .row .col-md-4 a {
        font-size: 13px;
    }
}

.dots_main {
    z-index: 99999;
}

.row.art-container .col-lg-5.col-md-6.col-sm-12.mb-3:hover .dots_main {
    display: block;
}

.row.art-container .col-md-4.col-6.mb-5:hover .dots_main {
    display: block;
}

.groupTemplate:hover .dots_main {
    display: block;
}

#progressBarContainer {
    width: 100%;
    background-color: #e6e6e6;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 10px
        /* Ensures the inner bar stays within the container */
}

#progressBar {
    height: 10px;
    background-color: #666666;
    border-radius: 5px;
    /* Optional for rounded corners */
    transition: width 0.4s ease;
    color: black;
    /* Smooth transition for width changes */
}

a.buttongenerate.disabled {
    background: #cccccc;
    color: #666666;
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
}

.template-category {
    margin-bottom: 30px;
}

.category-header {
    padding: 0px;
    margin: 0px;
    color: #ccc;
}

.design-category-list {
    list-style-type: none;
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.design-category {
    margin-right: 20px;
    color: #fff;
    padding: 10px 12px;
    border: 1px solid #000;
    cursor: pointer;
}

.design-category:hover {
    border: 1px solid #ff5c33;
    border-radius: 7px;
}

.category-active {
    border: 1px solid #ff5c33;
    border-radius: 7px;
}


.category-carousel-container {
    position: relative;
    overflow: hidden;
}

.category-carousel,
.category-format-carousel {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease;
    margin-top: 20px;
}

/* .category-format-carousel {
    overflow-x: auto;
    padding-bottom: 7px;
    scrollbar-width: thin;
    scrollbar-color: #888 #202020;
} */

.carousel-container {
    width: 100%;
    overflow: hidden;
}

.slick-prev,
.slick-next {
    background: #888;
    color: white;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
}

.slick-prev:hover,
.slick-next:hover {
    background: #555;
}

/* .carousel div {
    padding: 20px;
    border-radius: 10px;
    text-align: center;
} */

.category-format-carousel::-webkit-scrollbar {
    height: 10px;
    /* Set the height of the scrollbar */
}

.category-format-carousel::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* Background of the scrollbar track */
    border-radius: 10px;
    /* Rounded corners for the track */
}

.category-format-carousel::-webkit-scrollbar-thumb {
    background: #888;
    /* Color of the scrollbar thumb */
    border-radius: 10px;
    /* Rounded corners for the thumb */
}

.category-format-carousel::-webkit-scrollbar-thumb:hover {
    background: #555;
    /* Change color when hovering over the scrollbar thumb */
}

.category-carousel .block {
    min-height: 100px;
    flex: 0 0 auto;
    margin: 5px;
    background-color: #333333;
    padding: 7px 10px;
    border-radius: 7px;
    cursor: pointer;
}


.category-format-carousel .block {
    min-height: 200px;
    min-width: 260px !important;
    max-width: 260px !important;

    margin: 5px;
    background-color: #333333;
    padding: 12px 20px;
    border-radius: 7px;
    cursor: pointer;
}

.category-carousel .block p,
.category-format-carousel .block p {
    color: #fff;
    text-align: center;
    padding: 0px !important;
    margin: 0px;
}

.category-format-carousel .block .card-body {
    padding: 0px !important;

}

.format-title {
    margin-top: 15px !important;
    font-size: 14px !important;
}

.format-size {
    margin-top: 5px !important;
    font-size: 13px !important;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    background: transparent;
    color: #ff5c33;
    font-size: 40px;
    /* Style your arrows */
}

.left-arrow {
    left: 10px;
}

.right-arrow {
    right: 10px;
}

.arrow-left,
.arrow-right {
    background-color: transparent;
    /* Other styling properties */
}

.templateThumbnailModal img {
    height: auto;
}

.templateContentModal h5 {
    font-weight: bold;
}

#template-tag,
.single-tag {
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
}

.templateTag {
    background: #ccc;
    padding: 4px 6px;
    margin-right: 5px;
    border-radius: 7px;
    font-size: 11px;
    margin-bottom: 5px;
}

.templateModalBtn {
    background: linear-gradient(79.55deg, #F07E31 12.41%, #F45C75 39.02%);
    padding: 8px 12px;
    color: #fff;
    border-radius: 7px;
    border: none;
    margin-top: 15px;
}

#long-loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    /* Adjust the height as needed */
    z-index: 99999;
    /* Ensure it's above other elements */
    background-color: transparent;
}

#long-loader {
    height: 100%;
    width: 0%;
    background: linear-gradient(79.55deg, #F07E31 12.41%, #F45C75 39.02%);
    ;
    /* Bootstrap primary color */
    transition: width 0.3s;
}

.workspace-dropdown-menu a,
.mb-workspace-dropdown-menu a {
    display: block;
}

.workspace-dropdown-menu a img,
.mb-workspace-dropdown-menu a img {
    display: inline;
    width: 22px;
    margin-right: 10px;
}

.workspace-dropdown {
    width: 100%;
    padding: 0px !important;
}

#workspaceDropdown,
#mobileWorkspaceDropdown {
    background: linear-gradient(79.55deg, #F07E31 12.41%, #F45C75 39.02%);
    width: 95% !important;
    margin: auto;
    display: block;
}

.workspace-dropdown-menu,
.mb-workspace-dropdown-menu {
    margin-left: 7px !important;
}

.workspace-dropdown-menu a,
.mb-workspace-dropdown-menu a {
    cursor: pointer;
}

/* .wrk-modal-body button {
    margin-right: 10px;
} */

.create-wrksp,
.common-modal-btn {
    background: linear-gradient(79.55deg, #F07E31 12.41%, #F45C75 39.02%);
    border: 1px solid #ff5c33;
}

.wrk-modal-body-btns {
    margin-top: 20px;
    display: flex;
}

#cls-wrks-modal {
    margin-left: 10px;
}

#workspaceModalTitle {
    font-size: 20px;
    font-weight: bold;
}

.wrk-modal-logo {
    width: 100%;
}

.wrks-modal-subtitle {
    font-weight: bold;
    margin-bottom: 0px !important;
}

.wrks-modal-text {
    font-size: 14px;
    color: #404040;
    margin-top: 5px !important;
}

.wrk-modal-logo img {
    display: block;
    width: 30%;
    margin: auto;
    height: 40px;
}

.wrk-modal-body {
    width: 90%;
    margin: auto;
    margin-top: 30px;
    margin-bottom: 15px;
}

.single-wrksp {
    cursor: pointer;
}

.invitation-container {
    width: 60%;
    margin: auto;
    padding: 20px 30px;
    /* background-color: #0f0f0f; */
    border-radius: 7px;
    margin-top: 50px;
    vertical-align: middle;
}

.invitation-content {
    margin-top: 15px;
    color: #fff;
}


.invitation-content p {
    text-align: center;
}

/* .invitation-content button {
    background: linear-gradient(79.55deg, #F07E31 12.41%, #F45C75 39.02%);
    border: 1px solid #ff5c33;
    color: #fff;
    padding: 10px 20px;
    border-radius: 7px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
} */

.invite-user-logo p {
    color: #fff;
    text-align: center;
    font-size: 42px;
    padding: 0px !important;
    margin: 0px !important;
    color: #e6e6e6;
    font-weight: bold;
}

.invite-user-logo img {
    display: block;
    width: 25%;
    margin: auto;
    height: 70px;
}

.pass-form {
    width: 400px;
    margin: auto;
}

.small-form-btn {
    background: linear-gradient(79.55deg, #F07E31 12.41%, #F45C75 39.02%);
    border: 1px solid #ff5c33;
    color: #fff;
    padding: 7px 15px;
    border-radius: 7px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
    width: 100%;
}

.common-form-btn {
    background: linear-gradient(79.55deg, #F07E31 12.41%, #F45C75 39.02%);
    border: 1px solid #ff5c33;
    color: #fff;
    padding: 7px 15px;
    border-radius: 7px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
}

.common-delete-btn {
    background: #ff0000;
    border: 1px solid #ff5c33;
    color: #fff;
    padding: 7px 15px;
    border-radius: 7px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
}

.cotion-text {
    font-size: 12px;
    padding: 0px !important;
    margin: 0px !important;
    color: #e6e6e6;
}

#workspaceDropdown {
    white-space: nowrap;
    /* Prevent text from wrapping */
    overflow: hidden;
    /* Hide overflow text */
    text-overflow: ellipsis;
    /* Add ellipsis to overflow text */
}


.social-box {
    width: 100%;
    color: #fff;
    padding-left: 10px;
    padding-right: 10px;
}

.social-header-txt {
    color: #fff;
}

.social-card,
.social-card-connected {
    width: 100%;
    background-color: #fff;
    color: #000;
    padding: 12px 10px;
    border-radius: 7px;
    margin-top: 20px;
    cursor: pointer;
}

#socialPostBtn {
    background: linear-gradient(79.55deg, #F07E31 12.41%, #F45C75 39.02%);
    border: 1px solid #ff5c33;
    color: #fff;
    padding: 7px 15px;
    border-radius: 7px;
    text-align: center;
    float: right;
}

.modal-head-txt {
    padding: 0px !important;
    margin: 0px !important;
    font-size: 20px;
    font-weight: bold;
    color: #000 !important;
}


.social-content {
    width: 100%;
    padding: 12px 15px;
    background-color: #f2f2f2;
    color: #000;
    border-radius: 7px;
}

.content-metadata {
    width: 100%;
    display: block;
    overflow: hidden;
    margin-top: 30px;
}

.content-metadata img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.content-createdat {
    float: right;
}

.ai-tool-container {
    width: 80%;
    margin: auto;
    padding: 20px 12px;
    background-color: #1a1a1a;
    height: 100vh;
    overflow-y: auto;
    color: #fff;
    border-radius: 7px;
}

.ai-tool-list-container {
    width: 20%;
    background-color: #2b2b2b;
    height: 100vh;
    float: right;
}

.ai-tool-list-container img {
    display: block;
    width: 60%;
    margin: auto;
    margin-top: 5px;
    cursor: pointer;
}

.ai-tool-box {
    width: 100%;
}

.ai-tool-box p {
    font-size: 12px;
    margin-top: 4px;
}

.ai-tool-box img {
    display: block;
    width: 100%;
    border-radius: 7px;
    cursor: pointer;
}

.service-form {
    color: #000;
}

.service-form .form-group label {
    color: #000 !important;
}

.subitems {
    border: 1px solid #ccc;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    z-index: 100;
}

.subitems li a {
    display: block;
    padding: 5px 7px;
    text-decoration: none;
    /* color: #fff; */
    white-space: nowrap;
}

.subitems li a:hover {
    background-color: #f0f0f0;
    color: #000;
}

.swipper-style {
    width: 290px !important;
}

.arrow-style {
    background: #3670D5;
    padding: 40px 25px;
    opacity: .5;
    border-radius: 7px;
}

.arrow-style-sm {
    background: #F45C75;
    padding: 10px 15px;
    border-radius: 7px;
    color: #fff;
    overflow: hidden !important;
    width: 40px;
}

.arrow-style-sm:after {
    font-size: 20px !important;
    color: #fff;
    font-weight: bold;
}

.swiper-button-prev,
.swiper-button-next {
    color: #fff !important;
}

.swiper-scrollbar-drag {
    background: #fff !important;
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}


/* Product Page CSS */
.page-bg-header {
    background: linear-gradient(90deg, #1b6ca8, #1de9b6);
    background-size: cover;
    background-position: center;
}

.item-search-form .form-control {
    /* width: 400px; */
    max-width: 80%;
    margin: auto;
}

.product-categories .navbar-nav .nav-link {
    color: rgba(255, 255, 255, .55);
}

.product-categories .navbar-nav .nav-link.active,
.product-categories .navbar-nav .nav-link:hover {
    color: #fff;
}

.product-categories .navbar-nav .nav-item {
    margin: 0 15px;
}

.product-categories .navbar-nav .active {
    border: 2px solid #f0ad4e;
    border-radius: 20px;
    padding: 5px 15px;
}

.single-template-box {
    width: 300px;
    color: #000;
}

.single-template-box a {
    color: #000;
}

.single-template-box:hover {
    width: 300px;
    color: #000;
}

.tmp-card-img-top {
    width: 100%;
    height: 10vw;
    object-fit: contain;
}

.temp-card-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.card:hover .temp-card-img-overlay {
    opacity: 1;
}

.overlay-text {
    color: white;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
}

.template-card {
    width: 18rem !important;
    position: relative;
    border: none !important;
}


.prod-pg-frmt-hd .text-center h1 {
    font-size: 2.5rem;
    margin-top: 20px;
}

.prod-pg-frmt-hd .text-center p {
    font-size: 1.2rem;
}

.prod-pg-frmt-hd .search-bar {
    margin-top: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.prod-pg-frmt-hd .search-bar .form-control {
    background-color: #333;
    border: none;
    color: #fff;
}

.prod-pg-style-img img {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.prod-pg-style-img img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.product-categories a {
    color: #fff !important;
    font-size: 14px !important;
}

.single-tmpl-img {
    width: 100%;
    height: 280px;
    object-fit: contain;
}

.new-template-blck {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    background: #242424;
    cursor: pointer;
    min-height: 280px;
}

.new-template-blck:hover {
    transform: scale(1.05);
}

.create-cover-card .plus-icon {
    font-size: 2rem;
    background-color: #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.create-cover-card:hover {
    transform: scale(1.05);
}


.mega-menu {
    width: 1000px;
    padding: 1rem;
    position: absolute;
    top: 25px;
    /* Ensure the menu appears below the product link */
    left: -100%;
    transform: translateX(-70%);
    background: #fff;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    display: none;
    transition: opacity 1s ease, visibility 1s ease;
}

.mega-menu .container {
    max-width: 100%;
}

.mega-menu .row {
    display: flex;
    /* Ensure the columns are displayed in a row */
    border-bottom: 1px solid #ddd;
    padding: 0.5rem 0;
}

.mega-menu .row:last-child {
    border-bottom: none;
}

.mega-menu-box a,
.mega-menu-single-header {
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 5px;
    color: #000;
    display: block;
}

.mega-menu a:hover .mega-menu-single-header span {
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 5px;
    color: #000 !important;
}

.mega-menu p,
.mega-menu:hover p {
    font-size: 14px;
    margin: 0;
    color: #000;
}

/* Show the mega menu when hovering over the dropdown */
#drop-down-menu:hover .mega-menu {
    display: block;
}

.mega-menu-sng-title {
    font-size: 17px;
    color: #000;
}

/* .nav-list .dropdown-menu {
    display: none;
}

.nav-list .dropdown:hover .dropdown-menu {
    display: block;
} */

#templateFormat,
#templateWidth,
#templateHeight {
    color: #4d4d4d;
}

.pub-template-feature-list li {
    margin-bottom: 12px;
}

.landing-ai-img-drop-dwn {
    width: 65%;
    margin: auto;
}

.landing-page {
    color: #fff;
}

#landing-promptInput {
    width: 65%;
    margin: auto;
}

.btn-outline-secondary {
    border-radius: 0.5rem;
    font-size: 1rem;
    padding: 0.75rem;
}

.ai-service-landing {
    background: #fff !important;
    color: #000 !important
}

.ai-service-landing:hover {
    background: #fff !important;
    color: #000 !important
}

.txt-overlay-btn {
    padding: 10px 14px;
    background: #fff;
    border-radius: 7px;
    color: #000;
    font-size: 10px;
}

.landing-img-preview {
    width: 100%;
    object-fit: cover;
    border-radius: 7px;
}

.landing-img-preview img {
    width: 100%;
    object-fit: contain;
    border-radius: 7px;
    max-height: 400px;

}

.face-swap-images {
    width: 100%;
    border-radius: 7px;
}

.face-swap-images img {
    width: 100%;
    object-fit: contain;
    border-radius: 7px;
    max-height: 250px;
    cursor: pointer;
}

.face-swap-images img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;

}



@media (max-width:768px) {
    a.resetimages {
        width: 35px;
        height: 35px;
        font-size: 13px;
        top: 10px;
        right: 10px;
    }
}

@media (max-width:991px) {
    header .col-lg-10.f-row.justify-content-between {
        width: 75%;
    }
}

.leftbar.for_others {
    display: flex;
    flex-direction: column;
    align-items: center;      /* Center horizontally */
    justify-content: flex-start; /* Start from the top, or use center for vertical centering */
    height: 100vh;            /* Full viewport height */
    padding-top: 30px;        /* Optional: add some top padding */
}

.logowrp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;              /* Take full width of sidebar */
    margin-bottom: 0px;      /* Space below logo */
}

/* Modern CTA Section Styles */
.modern-cta-section {
  position: relative;
  background: linear-gradient(135deg, #181f2a 0%, #232946 100%);
  overflow: hidden;
}

.cta-bg-blur {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 300px;
  background: radial-gradient(circle, #7f7fd5 0%, #86a8e7 60%, #91eac9 100%);
  filter: blur(80px);
  opacity: 0.5;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.modern-cta-card {
  position: relative;
  z-index: 2;
  background: rgba(30, 34, 54, 0.85);
  border-radius: 32px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.25);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow 0.3s;
}

.modern-cta-card:hover {
  box-shadow: 0 12px 48px 0 rgba(31, 38, 135, 0.35);
}

.modern-badge {
  background: linear-gradient(90deg, #7f7fd5 0%, #86a8e7 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px rgba(134,168,231,0.15);
}

.modern-cta-title {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.modern-cta-subtitle {
  color: #e0e0e0;
}

.modern-gradient-btn {
  background: linear-gradient(90deg, #7f7fd5 0%, #86a8e7 50%, #91eac9 100%);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(134,168,231,0.25);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.modern-gradient-btn:hover, .modern-gradient-btn:focus {
  transform: scale(1.05);
  background: linear-gradient(90deg, #91eac9 0%, #86a8e7 100%);
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.22);
  box-shadow: 0 8px 32px rgba(134,168,231,0.35);
}