:root {
    --blue: #006afe;
    --yellow: #fff000;
    --green: #239b23;
    --red: #fe443e;
    --text-primary: #304057;
}

@font-face {
    font-family: "VAG-rounded-b";
    src: url(../fonts/VAGRoundedBold.ttf);
}

@font-face {
    font-family: "SVN-AgudaBlack";
    src: url(../fonts/SVN-AgudaBlack.otf);
}

@font-face {
    font-family: "SVN-Franko";
    src: url(../fonts/SVN-Franko.ttf);
}

.mt-10 {
    margin-top: 10px;
}

body {
    font-family: "Montserrat", sans-serif;
    color: #000;
}

h1 {
    font-weight: 700;
}

a.btn-download:hover {
    color: #fff;
}

a.btn-download {
    margin-top: 30px;
    margin-bottom: 20px;
    background-color: #0059D4;
    color: #fff;
    border-radius: 30px;
    font-size: 20px;
}

div#price_section {
    margin-top: 50px;
}

.container-fchat {
    max-width: calc(1140px + 2 * var(--bs-gutter-x, 0.75rem));
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.9rem);
    padding-left: var(--bs-gutter-x, 0.9rem);
    margin-right: auto;
    margin-left: auto;
}

.buy_service_plus {
    font-size: 34px;
}

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

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

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

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

/* header */

.header {
    width: 100%;
    position: fixed;
    top: 0;
    transition: all 1s;
}

.header {
    background: var(--blue);
    z-index: 999;
}

.header .mobi-head {
    display: block;
}

.header .menu-icon {
    display: none;
}

.header .logo-emoi,
.header .logo-text {
    margin-top: -10px;
    height: 50px;
    width: auto;
}

.header .logo {
    position: absolute;
    top: 20px;
}

.mobi-head {
    display: none;
    align-items: center;
    width: 100%;
    justify-content: end;
}

.menu {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: end;
    margin-bottom: 0;
}

.menu-link {
    margin-left: 40px;
    text-decoration: none;
    color: white;
    line-height: 1;
}

.menu-link i {
    margin-right: 8px;
}

.menu-link:hover {
    color: #0d6efd;
}


ul.menu li a {
    color: #000;
}

.menu-link.login-btn {
    padding: 12px 25px;
    display: block;
    border: solid 1px white;
    border-radius: 6px;
    margin-top: 16px;
    margin-bottom: 16px;
}

.menu-link.login-btn:hover {
    border-color: var(--red);
}

/* end header */

/* banner */

.banner {
    max-height: 860px;
    height: 44.8vw;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.bnr-content h1 {
    color: white;
    width: 100%;
    max-width: 500px;
    line-height: 52px;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 30px;
}

.bnr-btn {
    border: none;
    width: 360px;
    height: 66px;
    border-radius: 40px;
    background: var(--red);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 26px;
}

.bnr-btn:hover {
    background: red;
}

.bnr-btn a {
    color: #fff;
    text-decoration: none;
}

/* end banner */

/* about */

.w-fchat {
    display: flex;
    align-items: center;
    margin-top: 100px;
    position: relative;
}

.w-fchat .title {
    display: flex;
    flex-direction: column;
    text-align: end;
    position: relative;
    background: white;
    padding: 10px 0 20px;
}

.w-fchat .title::before {
    content: "";
    width: 11px;
    height: 11px;
    border-radius: 100%;
    background: var(--blue);
    position: absolute;
    top: 0;
    left: 145px;
}

.w-fchat .title:after {
    content: "";
    width: 11px;
    height: 11px;
    border-radius: 100%;
    background: var(--blue);
    position: absolute;
    bottom: 0;
    left: 145px;
}

.w-fchat .title span:first-child {
    font-family: "VAG-rounded-b";
    font-size: 80px;
    line-height: 1;
    color: var(--blue);
}

.w-fchat .title span:last-child {
    font-size: 68px;
    line-height: 1;
    font-weight: 600;
    color: #425166;
}

.w-fchat::before {
    content: "";
    position: absolute;
    width: calc(100% - 150px);
    height: 100%;
    border: dashed 1px var(--blue);
    border-radius: 20px;
    right: 0;
}

.w-fchat p {
    margin-bottom: 0;
    padding: 40px 60px;
    font-size: 18px;
    line-height: 30px;
}

.abt-main-title {
    font-family: "SVN-AgudaBlack";
    font-size: 36px;
    line-height: 44px;
    margin-top: 90px;
    margin-bottom: 45px;
}

.abt-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 100px;
}

.abt-item {
    width: 50%;
    display: flex;
    align-items: center;
    background: #d8e8ff;
    padding: 45px;
    font-size: 18px;
    line-height: 28px;
    color: black;
}

.abt-item .icon {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    background: white;
    flex-shrink: 0;
    margin-right: 30px;
    color: var(--blue);
}

.abt-item:nth-child(2),
.abt-item:nth-child(3),
.abt-item:nth-child(6),
.abt-item:nth-child(7),
.abt-item:nth-child(10),
.abt-item:nth-child(11) {
    background: #f2f7ff;
    color: #304057;
}

.abt-item:nth-child(2) .icon,
.abt-item:nth-child(3) .icon,
.abt-item:nth-child(6) .icon,
.abt-item:nth-child(7) .icon,
.abt-item:nth-child(10) .icon,
.abt-item:nth-child(11) .icon {
    background: var(--blue);
    color: white;
}

.abt-item:nth-child(1) {
    border-top-left-radius: 10px;
}

.abt-item:nth-child(2) {
    border-top-right-radius: 10px;
}

.abt-item:last-child {
    border-bottom-right-radius: 10px;
}

.abt-item:nth-last-child(2) {
    border-bottom-left-radius: 10px;
}

/* end about */

/* intro   */

.intro {
    background: url(../images/intro-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    min-height: 720px;
}

.intro-quote {
    display: flex;
    max-width: 630px;
    color: white;
    font-size: 20px;
    line-height: 32px;
    margin-top: 80px;
}

.intro-quote .quote {
    color: var(--blue);
    margin-right: 20px;
    font-size: 110px;
    font-family: "SVN-Franko";
    line-height: 55px;
    position: relative;
    text-shadow: 2px 0 #fff, -2px 0 #fff, 0 2px #fff, 0 -2px #fff, 1px 1px #fff,
        -1px -1px #fff, 1px -1px #fff, -1px 1px #fff;
}

.intro-quote .quote::before {
    content: "";
    width: 4px;
    height: 42px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 50px;
    right: 5px;
}

.intro h2 {
    font-size: 36px;
    text-transform: uppercase;
    color: var(--yellow);
    font-family: "SVN-AgudaBlack";
    margin-top: 40px;
    margin-bottom: 40px;
}

.intro-item {
    background: white;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 44px 20px;
    text-align: center;
    height: 100%;
}

.intro-item h4 {
    font-size: 20px;
    line-height: 30px;
    color: var(--blue);
    font-weight: 700;
    margin-top: 30px;
}

.intro-item p {
    font-size: 17px;
    line-height: 27px;
    margin-bottom: 0;
}

/* end intro */

/* feature */

.ft-wrapper {
    display: flex;
    padding-top: 90px;
    padding-bottom: 100px;
}

.ft-left {
    flex: 1;
}

.ft-left .image {
    position: relative;
}

.ft-left .image img {
    position: absolute;
    right: 40px;
    top: 25px;
}

.ft-title {
    font-family: "SVN-AgudaBlack";
    font-size: 36px;
    text-transform: uppercase;
    line-height: 50px;
    color: var(--blue);
}

.ft-title span {
    display: block;
    position: relative;
}

.ft-title span:first-child {
    font-size: 86px;
    color: var(--red);
    margin-bottom: 30px;
}

.ft-title span:last-child::before {
    content: "";
    position: absolute;
    width: 204px;
    height: 3px;
    background: var(--blue);
    bottom: -5px;
    left: 0;
}

.ft-right {
    width: 635px;
}

.ft-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    border: solid 1px #e1e1e1;
    margin: 0;
    padding: 0;
}

.ft-list li {
    width: 50%;
    border-bottom: solid 1px #e1e1e1;
    height: 66px;
    display: flex;
    align-items: center;
    padding: 0 10px 0 15px;
    font-weight: 500;
}

.ft-list li i {
    margin-right: 10px;
    color: var(--blue);
}

.ft-list li:last-child,
.ft-list li:nth-last-child(2) {
    border-bottom: none;
}

.ft-list li:nth-child(2n-1) {
    border-right: solid 1px #e1e1e1;
    position: relative;
}

.ft-list li:nth-child(2n-1)::before {
    width: 25px;
    height: 35px;
    position: absolute;
    background: white;
    content: "";
    right: -12px;
    top: -17px;
}

.ft-list li:first-child::before {
    content: none;
}

.ft-quote {
    background: var(--blue);
    padding: 30px 35px;
    border-radius: 10px;
    color: white;
    font-size: 18px;
    line-height: 30px;
    position: relative;
    margin-top: 40px;
}

.ft-quote span {
    color: var(--blue);
    margin-right: 20px;
    font-size: 86px;
    font-family: "SVN-Franko";
    line-height: 55px;
    text-shadow: 4px 0 #fff, -4px 0 #fff, 0 4px #fff, 0 -4px #fff, 2px 2px #fff,
        -2px -2px #fff, 2px -2px #fff, -2px 2px #fff;
    position: absolute;
    top: -21px;
}

/* end feature */

/* ability */

.ability {
    background: #f7faff;
    background-image: url(../images/ability.png);
    background-size: auto;
    background-repeat: no-repeat;
    background-position: bottom 60px center;
}

.ay-title {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: 80px;
}

.ay-title p {
    font-family: "SVN-AgudaBlack";
    font-size: 35px;
    text-transform: uppercase;
    line-height: 50px;
    color: var(--blue);
    margin-bottom: 0;
    width: 377px;
    text-align: right;
}

.ay-title p:first-child {
    font-size: 50px;
    color: var(--red);
}

.ay-title p:last-child {
    position: relative;
}

.ay-title p:last-child::before {
    width: 100%;
    height: 3px;
    background: var(--blue);
    position: absolute;
    content: "";
    left: 0;
    top: 26px;
}

.ay-title p:last-child span {
    position: relative;
    background: #f7faff;
    padding-left: 20px;
    padding-right: 10px;
}

.ay-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding-bottom: 95px;
}

.ay-item {
    box-shadow: 0px 0px 10px 0px rgba(225, 225, 225, 1);
    border-radius: 10px;
    background: white;
    max-width: 100%;
    padding: 20px 30px;
    line-height: 24px;
    margin-top: 33px;
    font-weight: 500;
}

.ay-item:hover {
    background: var(--blue) !important;
    color: white !important;
}

.ay-list .left {
    width: 50%;
    padding-top: 60px;
    text-align: right;
}

.ay-list .ay-item {
    position: relative;
}

.ay-list .ay-item:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
}

.ay-list .left .ay-item:nth-child(1) {
    width: 365px;
    margin-left: 120px;
    background: var(--blue);
    color: white;
}

.ay-list .left .ay-item:nth-child(1):after {
    border-top: 0px solid transparent;
    border-bottom: 25px solid transparent;
    border-right: 30px solid var(--blue);
    bottom: -20px;
    right: 30px;
}

.ay-list .left .ay-item:nth-child(2),
.ay-list .left .ay-item:nth-child(3) {
    width: 340px;
}

.ay-list .left .ay-item:nth-child(2):after,
.ay-list .left .ay-item:nth-child(3):after {
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 30px solid white;
    right: -25px;
    top: calc(50% - 15px);
}

.ay-list .left .ay-item:nth-child(2):hover:after,
.ay-list .left .ay-item:nth-child(3):hover:after {
    border-left: 30px solid var(--blue);
}

.ay-list .left .ay-item:nth-child(4) {
    width: 360px;
}

.ay-list .left .ay-item:nth-child(4):after {
    border-top: 0 solid transparent;
    border-bottom: 15px solid transparent;
    transform: rotate(-20deg);
    border-left: 30px solid white;
    right: -25px;
    top: calc(50% - 15px);
}

.ay-list .left .ay-item:nth-child(4):hover::after {
    border-left: 30px solid var(--blue);
}

.ay-list .right {
    display: flex;
    width: 50%;
    flex-direction: column;
    align-items: end;
}

.ay-list .right .ay-item:nth-child(1) {
    width: 370px;
}

.ay-list .right .ay-item:nth-child(1):after {
    border-top: 0 solid transparent;
    border-bottom: 15px solid transparent;
    transform: rotate(-200deg);
    border-left: 30px solid white;
    left: -25px;
    top: calc(50% - 15px);
}

.ay-list .right .ay-item:nth-child(1):hover:after {
    border-left: 30px solid var(--blue);
}

.ay-list .right .ay-item:nth-child(2) {
    width: 390px;
}

.ay-list .right .ay-item:nth-child(3),
.ay-list .right .ay-item:nth-child(4) {
    width: 335px;
}

.ay-list .right .ay-item:nth-child(4) {
    background: var(--blue);
    color: white;
}

.ay-list .right .ay-item:nth-child(2):after,
.ay-list .right .ay-item:nth-child(3):after {
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 30px solid white;
    left: -25px;
    top: calc(50% - 15px);
    transform: rotate(180deg);
}

.ay-list .right .ay-item:nth-child(2):hover:after,
.ay-list .right .ay-item:nth-child(3):hover:after {
    border-left: 30px solid var(--blue);
}

.ay-list .right .ay-item:nth-child(4):after {
    border-top: 15px solid transparent;
    border-bottom: 0 solid transparent;
    transform: rotate(-520deg);
    border-left: 30px solid var(--blue);
    left: -25px;
    top: calc(50% - 15px);
}

/* end ability */

/* price */

.ay-title.no-l p {
    text-align: center;
    width: 100%;
    margin-bottom: 4px;
}

.ay-title.no-l p::before {
    content: none;
}

.price-list {
    justify-content: center;
    display: flex;
    margin: 0 -20px;
}

.price-item {
    width: 33.333333%;
    padding: 20px;
}

.price-box {
    border-radius: 16px;
    border-top-right-radius: 225px;
    position: relative;
    z-index: 1;
    padding: 25px;
    height: 100%;
}

.price-box .content {
    background: white;
    border-radius: 16px;
    border-top-right-radius: 200px;
    box-shadow: 0px 0px 12px 10px rgba(225, 225, 225, 0.64);
    padding: 45px;
    font-style: 20px;
    font-weight: 700;
    line-height: 44px;
    text-align: center;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.price-box .content .lable {
    position: absolute;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    background: var(--yellow);
    line-height: 1;
    padding: 8px 16px;
    left: -10px;
    top: 25px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    border: none;
    color: var(--blue);
}

.free .price-box {
    background: #f0f7f8;
}

.price-box .content .line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #ffffff 0%, #e1e1e1 50%, #ffffff 100%);
    margin-bottom: 13px;
    margin-top: 7px;
}

.price-box .content .cost {
    height: 100px;
    display: flex;
    flex-direction: column;
    font-size: 20px;
    justify-content: center;
}

.free .price-box .content .cost {
    color: var(--green);
}

.price-box .content p {
    margin-bottom: 0;
    position: relative;
}

.info {
    flex-grow: 1;
}

.price-box .content .info p {
    font-size: 18px;
}

.pro .price-box {
    background: #deeef2;
}

.pro .price-box .content {
    background: var(--blue);
    color: white;
}

.pro .price-box .content .line {
    background: linear-gradient(90deg,
            var(--blue) 0%,
            white 50%,
            var(--blue) 100%);
}

.pro .price-box .content .cost span {
    font-size: 28px;
    margin-bottom: 0px;
}

.pro .price-box .content .cost p {
    font-weight: 800;
    margin-bottom: 5px;
}

.price-btn {
    height: 50px;
    width: 100%;
    line-height: 1;
    border: solid 1px transparent;
    border-radius: 10px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 20px;
}

.free .price-btn {
    border-color: var(--green);
    color: var(--green);
    background: white;
}

.free .price-btn:hover {
    background: var(--green);
    color: white;
}

.pro .price-btn {
    border-color: white;
    color: var(--blue);
    background: white;
}

.pro .price-btn:hover {
    background: var(--yellow);
    color: var(--text-primary);
    border-color: var(--yellow);
}

.price-box .content p span {
    line-height: 1;
    font-weight: 400;
    position: absolute;
    width: 100%;
    left: 0;
    text-align: center;
    bottom: -14px;
}

.price-box .content img {
    height: 81px;
}

.bussiness .price-box .content .cost span {
    font-size: 28px;
    margin-bottom: 0px;
    color: var(--blue);
}

.bussiness .price-box .content .cost p {
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--blue);
}

.bussiness .price-box {
    background: #f3fafb;
}

.bussiness .price-btn {
    border-color: var(--blue);
    color: var(--blue);
    background: white;
}

.bussiness .price-btn:hover {
    background: var(--blue);
    color: white;
    border-color: var(--blue);
}

.price {
    background: linear-gradient(45deg,
            rgba(255, 255, 255, 1) 50%,
            rgba(223, 249, 255, 1) 100%);
}

.text-66 {
    color: #666666;
}

/* end price */

/* own */

.own-item {
    border: solid 1px #e1e1e1;
    color: #304057;
    line-height: 24px;
    padding: 20px 40px;
    text-align: center;
    font-weight: 500;
    margin-bottom: 18px;
}

.own-item:hover {
    background: var(--blue);
    color: white;
}

.own-list {
    margin-top: 40px;
    margin-right: -9px;
    margin-left: -9px;
    margin-bottom: 60px;
}

.own-list .col-6 {
    padding: 0 9px;
}

.price .ay-title {
    margin-bottom: 40px;
}

/* end own */

/* buy-own */

.buy-own-item {
    border: solid 1px #e1e1e1;
    color: #304057;
    line-height: 24px;
    /* padding: 10px 0px; */
    text-align: center;
    font-weight: 500;
    margin-bottom: 18px;
    padding-bottom: 20px;
}

/* .buy-own-item:hover {
    background: var(--blue);
    color: white;
} */

.buy-own-list {
    margin-top: 40px;
    margin-right: -9px;
    margin-left: -9px;
    margin-bottom: 60px;
}

.buy-own-list .col-6 {
    padding: 0 9px;
}

.price .ay-title {
    margin-bottom: 40px;
}

.btn-registration {
    border: 1px solid #5cb85c;
    border-radius: 30px;
    padding: 5px 15px;
    background: none;
}

.btn-registration:hover {
    border: 1px solid #5cb85c;
    border-radius: 30px;
    padding: 5px 15px;
    background: #5cb85c;
    color: #fff;
}

.fs-14 {
    font-size: 14px;
}

.ml-10px {
    margin-left: 10px;
}

/* end buy-own */

/* register-form */

.register-form {
    background: url(../images/res-form.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    height: 480px;
    display: flex;
    align-items: center;
}

.rf-box {
    width: 360px;
}

.rf-box p:first-child {
    font-size: 24px;
    line-height: 38px;
    font-weight: 600;
    text-align: center;
    color: white;
    margin-bottom: 0;
}

.rf-box p:nth-child(2) {
    font-size: 24px;
    line-height: 38px;
    font-weight: 600;
    text-align: center;
    color: var(--yellow);
    margin-bottom: 25px;
}

.f-ctrl {
    width: 100%;
    position: relative;
    margin-bottom: 20px;
}

.f-ctrl i {
    position: absolute;
    font-size: 18px;
    left: 10px;
    top: 12px;
    color: var(--blue);
}

.f-ctrl input {
    width: 100%;
    height: 43px;
    border-radius: 4px;
    border: none;
    padding: 0 10px 0 35px;
    outline: none;
}

.res-btn {
    height: 45px;
    width: 100%;
    border: none;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 5px;
    background: var(--blue);
    color: white;
    font-size: 20px;
}

.res-btn:hover {
    background: var(--yellow);
    color: var(--text-primary);
}

/* end register-form */

/* footer */

.footer {
    font-size: 14px;
    padding: 45px 0;
}

.company-name {
    font-weight: 700;
    font-size: 19px;
    text-transform: uppercase;
    margin-top: 15px;
}

.info-r {
    display: flex;
}

.info-r i {
    margin-top: 3px;
    margin-right: 5px;
}

.footer a {
    line-height: 30px;
    display: block;
    color: var(--text-primary);
    text-decoration: none;
    margin-bottom: 6px;
}

.footer a:hover {
    color: var(--blue);
}

.bnr-logo img {
    max-height: 200px !important;
    max-width: 400px !important;
}

.f-logo img {
    max-width: 250px !important;
    max-height: 100px !important;
}

.ft-l {
    margin-top: 90px;
}

.social {
    display: flex;
}

.social a {
    width: 38px;
    height: 38px;
    border: solid 1px #e1e1e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #666666;
    border-radius: 100%;
    margin-right: 5px;
}

.copyright a {
    text-decoration: none;
    display: contents;
}

.copyright {
    height: 40px;
    display: flex;
    align-items: center;
    padding: 0 25px;
    background: #e3e3ee;
    color: #666666;
    font-size: 14px;
    justify-content: center;
}

.abt-item:hover,
.ay-item:hover,
.price-box .content:hover,
.own-item:hover {
    box-shadow: 0px 2px 92px 0px rgb(0 0 0 / 25%);
    transition: all ease 0.3s;
    transform: translate(0, -3px);
}

.intro-item:hover {
    box-shadow: 0px 2px 92px 0px rgb(0 0 0 /45%);
    transition: all ease 0.3s;
    transform: translate(0, -3px);
}

.shop-upgrade-time {
    text-align: center;
    margin-bottom: 20px;
}

.shop-upgrade-time .btn-group button {
    background: #fff;
    border-radius: 20px 0 0 20px;
    padding: 5px;
    width: 145px;
    border-color: #5cb85c;
}

.shop-upgrade-time button.btn {
    border-radius: 20px;
    padding: 13px 10px;
    font-size: 20px;
    font-weight: bold;
}

.shop-upgrade-time button.btn.active {
    background-color: #5cb85c;
    color: #fff;
    outline: none;
    border-color: #5cb85c;
}

.language_btn_web .language_btn .dropdown-toggle {
    height: 42px;
    line-height: 18px;
    padding: 0 10px;
    border-radius: 5px;
    font-size: 14px;
}

.language_btn_web .language_btn .dropdown-menu>li>a {
    color: #333 !important;
    display: block;
    position: relative;
    padding: 3px 15px 3px 15px;
    transition: 0.3s;
    font-size: 16px;
    text-decoration: none;
    font-size: 14px;
}

.language_btn .btn:focus {
    box-shadow: none;
}

ul.menu-new .ex-language-menu li a {
    font-size: 13px;
    margin-left: 5px;
}

::-webkit-scrollbar {
    background: rgba(0, 0, 0, 0.1);
    width: 6px;
    border-radius: 3px;
    transition: opacity 1000ms;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    transform: translateY(0px);
    transition: opacity 1000ms;
}

::-webkit-scrollbar-track {
    background: #fff;
}

section#home-banner ul {
    margin: 30px 0;
    padding: 0;
}

section#home-banner ul li i {
    color: var(--blue);
    margin-right: 10px;
}

section#home-banner ul li {
    width: 33%;
    display: inline-block;
    list-style: none;
    font-size: 16px;
    line-height: 30px;
}

section#home-banner {
    margin-top: 90px;
    margin-bottom: 10px;
}

section#price {
    padding-top: 75px;
    padding-bottom: 50px;
}

#price .price-title {
    font-size: 36px;
    line-height: 50px;
    margin-bottom: 15px;
    text-align: center;
}

.money {
    font-size: 28px;
    color: #d6262d;
    font-weight: 700;
}

span.price-month {
    font-size: 20px;
}

section.section-video h3 {
    margin-bottom: 20px;
}

section.section-video .video-youtube {
    background-color: #e9ecef;
    border-radius: 30px;
    max-width: 100%;
    margin: 0 auto
}

section.section-video {
    padding: 30px 0 30px 0px;
}

section.reasons {
    padding: 65px 0px 0 0;
    background-color: #ecfdff;
}

#prompt-ai-extension-section {
    background-color: #d5e7ff;
    padding: 30px;
}

#reasons_extension p {
    font-size: 15px;
}

.header-new .mobi-head {
    margin-right: 30px;
    width: auto;
    display: inline-block;
}

.header-new ul li.menu-close,
.menu-close {
    display: none;
}

ul.menu-new .menu-has-children ul ul li {
    padding: 0;
    min-width: 110px;
}

ul.menu-new .menu-has-children {
    margin-top: -15px;
    margin-left: auto;
    margin-right: 0;
    float: right;
}

ul.menu-new {
    display: contents;
    margin: 0;
}

.header-new {
    height: 70px;
    background-color: #B0D6FF66;
    border-radius: 30px;
    padding: 10px 30px;
}

.header-box {
    height: 130px;
    padding: 30px 0;
}

.header-box .logo {
    display: inline-block;
    position: inherit;
}

ul.menu-new li a {
    text-decoration: none;
    color: #45426E;
    font-weight: 500;
    font-size: 18px;
}

.header-new ul li {
    padding: 10px;
    display: inline-block;
}

.header-language .language_btn .dropdown>a {
    font-size: 20px;
    font-weight: bold;
}

.header-language {
    display: inline-block;
    float: right;
}

.dropdown-toggle-new::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

.header.header-box.bg-white {
    position: relative;
}

h1.header_title {
    font-size: 70px;
}

.head-sub-title {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 60px;
}

#support_multi_platform p {
    font-size: 16px;
    margin-bottom: 70px;
}

#support_multi_platform img {
    width: 172px;
}

section#support_multi_platform {
    padding-bottom: 60px;
}

h2.home-image-title {
    color: rgba(69, 66, 110, 1);
    font-size: 28px;
    font-weight: bold;
}

p.home-image-description {
    font-size: 18px;
    padding: 15px 0;
}

ul.home-image-list {
    padding: 0;
}

.home-image-list li i {
    color: rgba(32, 125, 254, 1);
}

.home-image-list li svg {
    margin-right: 15px;
}

.home-image-list li {
    list-style: none;
    line-height: 1.5;
    display: inline-flex;
    margin-bottom: 15px;
}

.home-image a.btn-download {
    margin: 80px 0 50px 0;
}

.exf-title {
    font-size: 18px;
    font-weight: 600;
    padding: 20px 0;
}

.exf-icon i {
    font-size: 30px;
    color: #5fa0ff;
}

section.extension-feature {
    margin-top: 80px;
    margin-bottom: 80px;
}

.extension-price p {
    font-size: 16px;
    margin-bottom: 0;
}

.extension-price .price-title {
    font-size: 52px;
    font-weight: bold;
}

.extension-price .content-ex.ex-life {
    box-shadow: 6px 6px 12px 0 rgb(168 205 255);
}

.extension-price .content-ex {
    background: white;
    border: solid 1px #e1e1e1;
    border-radius: 16px;
    border-top-right-radius: 200px;
    padding: 30px;
    font-style: 20px;
    font-weight: 700;
    line-height: 44px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

p.ex-price-desc {
    font-size: 13px;
    font-weight: normal;
    line-height: 20px;
}

.money-black {
    font-size: 28px;
    font-weight: 700;
}

.blue {
    color: rgba(32, 125, 254, 1);
}

.ex-price-monney span {
    float: right;
    font-size: 12px;
}

.ex-price-monney div {
    display: inline-block;
}

.extension-price i.fa.fa-check {
    color: rgba(32, 125, 254, 1);
}

.extension-price .upgradeExtension {
    color: #fff;
    background-color: rgba(0, 89, 212, 1);
    border-radius: 30px;
    border: none;
}

#faq-section-ex .faq-question svg {
    color: #000;
}

#faq-section-ex .faq-question {
    color: rgba(69, 66, 110, 1);
    padding: 20px;
}

.faq-ex-h3 {
    text-transform: capitalize;
    font-size: 48px
}

ul.menu-new li a.active {
    color: rgba(32, 125, 254, 1);
}

.banner-text-box,
.banner-text-icon {
    display: inline;
}

.subtitle {
    font-size: 16px;
    color: #1d1e25;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 24px;
}

/* .box-prompts-library {
 
}

.box-prompts-library:hover {
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1);
} */
.prompt-library {
    width: 100%;
    /* min-height: 100vh; */
    background-color: #fff;
    display: flex;
    justify-content: center;
    /* padding: 48px 24px; */
    color: #1d1e25;
    border-radius: 20px;
}

.prompt-library-container {
    max-width: 1200px;
    width: 100%;
}

.prompt-library-header {
    text-align: center;
    margin-bottom: 48px;
}

.category-filter-container {
    margin-bottom: 60px !important;
}

.collection-item-card {
    /* background: linear-gradient(90deg, #f7f4ff 0%, #e1cfff 100%); */
    /* background: linear-gradient(90deg, #e0f7ff 0%, #b3e5fc 100%); */
    background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%);
    border-radius: 24px;
    padding: 12px 24px;
    padding-bottom: 32px;
    color: #1d1e25;
    width: 100%;
    max-width: 28.125rem;
    height: 13.875rem;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.collection-item-card:hover {
    transform: translateY(-4px);
}

.category-item {
    text-decoration: none;
    color: #1d1e25;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

/* Header section */
.user-category-card-title {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: space-between;
}

.user-category-card-content-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 44px;
    margin: 0;
}

.red-new-tag {
    background: #ed2828;
    padding: 4px 12px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 300px;
    line-height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Main content section */
.user-category-card-main-content {
    margin-top: auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
}

.user-category-card-content {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

/* Category Image */
.category-image-container {
    position: absolute;
    right: 10%;
    bottom: -60px;
    width: 180px;
    height: 180px;
    z-index: 1;
}



.category-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* Responsive styles */
@media screen and (max-width: 768px) {
    .collection-item-card {
        height: 160px;
        padding: 20px 24px;
    }

    .user-category-card-content-title {
        font-size: 14px;
        line-height: 22px;
    }

    .user-category-card-content {
        font-size: 12px;
        line-height: 20px;
    }

    .category-image-container {
        width: 100px;
        height: 140px;
        right: 24px;
        bottom: -45px;
    }

    .red-new-tag {
        padding: 2px 8px;
        font-size: 12px;
    }
}

@media screen and (max-width: 480px) {
    .collection-item-card {
        height: 102px;
        padding: 12px 10px;
        border-radius: 8px;
    }

    .user-category-card-content-title {
        font-size: 14px;
        line-height: 22px;
        text-align: start;
    }

    .user-category-card-title {
        align-items: start;
    }


    .category-image-container {
        width: 70px;
        height: 140px;
        right: 10px;
        bottom: -55px;
    }

    .user-category-card-content {
        font-size: 8px;
        line-height: 20px;
    }

    .red-new-tag {
        padding: 2px 6px;
        font-size: 10px;
        line-height: 16px;
    }

    .category-arrow-icon img {
        font-size: 5px;
        width: 16px;
        height: 16px;
    }
}


/* grid grid-cols-2 lg:grid-cols-3 gap-2 lg:gap-6 mt-6 */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    /* gap-2 */
    margin-top: 1.5rem;
    /* mt-6 */
}

@media (min-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
        /* gap-6 */
    }
}

/* flex category-arrow-icon shrink-0 */
.category-arrow-icon {
    display: flex;
    flex-shrink: 0;
}

.prompt-list-container {
    text-align: center;
    margin-top: 50px;
    max-width: 1600px;
    margin: 50px auto;
    padding: 0 20px;
}



.component-prompt-card-container {
    background: white;
    border-radius: 16px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 240px;
    border: 1px solid #B0D6FF66;
    cursor: pointer;
}

@media (min-width: 640px) {
    .sm\:max-w-max {
        max-width: max-content;
    }
}

.opacity-60 {
    opacity: 0.6;
}

.max-w-\[320px\] {
    max-width: 320px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.z-20 {
    z-index: 20;
}

.relative {
    position: relative;
}

.pointer-events-none {
    pointer-events: none;
}

.component-prompt-card {
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    flex: 1 1;
}

.component-prompt-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    text-align: left;
}

.component-prompt-card-image-block>img {
    border-radius: 50%;
}

.component-premium-tag-div {
    display: flex;
    gap: 8px;
    align-items: center;
}

.component-premium-tag-div button {
    width: 36px;
    height: 36px;
    border-radius: 100px;
    background: #FFFFFF;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.component-premium-tag-div button .anticon {
    font-size: 20px;
    color: #5700C6;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .component-prompt-card-body {
    flex: 1 1;
    text-align: left;
    background-color: #FFFFFF;
    padding: 12px;
    border-radius: 8px;
    place-content: space-between;
    min-height: 244px;
    display: grid;
} */

.component-prompt-card-body-title {
    font-weight: 600;
    font-size: 15px;
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.component-prompt-card-body-description {
    font-size: 14px;
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    text-align: left;
}

.component-prompt-card-body-category-title {
    line-height: 26px;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    padding: 0.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-left: 1rem;
    margin-right: 1rem;
    background-color: white;

}

.component-prompt-card-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 16px;
}

.component-view-prompt-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    background: #CDE9FF;
    /* Changed to a lighter blue */
    border-radius: 100px;
    color: #0059D4;
    /* Changed to a darker blue */
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    letter-spacing: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    -webkit-appearance: button;
}

.prompt-list-home {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* overflow-x: auto;
    scroll-behavior: smooth; */
    /* display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)); */
}

/* sm: (min-width: 640px) */
@media (min-width: 640px) {
    .prompt-list-home {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* lg: (min-width: 1024px) */
@media (min-width: 1024px) {
    .prompt-list-home {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* xl: (min-width: 1280px) */
@media (min-width: 1280px) {
    .prompt-list-home {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.icon-button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    outline: none;
    box-shadow: none;
    cursor: pointer;
}

.back-button {
    width: 50px;
    font-size: 30px;
    font-weight: bold;
}

.anticon-left {
    color: black !important;
}

.page-title {
    font-size: 38px !important;
    font-weight: 700 !important;
    margin: 0;
}

.copy-btn.is-copied {
    opacity: .8;
    pointer-events: none;
}

@media screen and (max-width: 768px) {
    .page-title {
        font-size: 28px !important;
    }
}

@media screen and (max-width: 480px) {
    .page-title {
        font-size: 22px !important;
    }
}

.button-prompts {
    text-align: center;
    background: #CDE9FF;
    color: #0059D4;
    border: none;
    width: 240px;
    height: 56px;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 50px;
    text-decoration: none;
}

.search-bar{
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-bar i {
    position: absolute;
    left: 12px;
    color: #999;
}

.search-bar input {
    padding: 8px 12px 8px 36px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 100%;
}
.category-list {
    display: flex;
    flex-wrap: nowrap;
    gap: 5px;
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 8px;
    margin-top: 10px;
    scrollbar-width: none;
    padding-right: 40px;
}

.category-list::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

.category-item {
    padding: 8px 12px;
    border-radius: 4px;
    text-align: center;
    flex-shrink: 0;
    min-width: 80px;
}
.category-item.active {
    position: relative;
    font-weight: 600;
    color: #0059D4;
}

.category-item.active::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 0;
    height: 3px;
    background: #0059D4;
    border-radius: 2px;
}
.category-item a {
    text-decoration: none;
    color: inherit;
    font-size: 14px;

}