* {
    margin: 0;
    padding: 0;
    font-family: var(--font-regular), serif;
}

.nx-message {
    color: #ffffff !important;
}

/* RTL Fonts */
@font-face {
    font-family: YB-DemiBold ;
    src: url(../fonts/YekanBakh-SemiBold.otf);
}

@font-face {
    font-family: YB-Medium ;
    src: url(../fonts/YekanBakh-Light.otf);
}

@font-face {
    font-family: YB-ExtraBold ;
    src: url(../fonts/YekanBakh-ExtraBold.otf);
}

@font-face {
    font-family: YB-Regualr;
    src: url(../fonts/YekanBakh-Regular.otf);
}

@font-face {
    font-family: YB-Bold ;
    src: url(../fonts/YekanBakh-Bold.otf);
}


/* LTR Fonts */
@font-face {
    font-family: APP-L-Regular;
    src: url(../fonts/Geist-Regular.ttf);
    font-display: swap;
}

@font-face {
    font-family: APP-L-Bold;
    src: url(../fonts/Geist-Bold.ttf);
    font-display: swap;
}

@font-face {
    font-family: APP-L-Medium;
    src: url(../fonts/Geist-Medium.ttf);
    font-display: swap;
}

@font-face {
    font-family: APP-L-SemiBold ;
    src: url(../fonts/Geist-SemiBold.ttf);
    font-display: swap;
}

@font-face {
    font-family: APP-L-ExtraBold ;
    src: url(../fonts/Geist-ExtraBold.ttf);
    font-display: swap;
}

:root {
    --font-regular: "APP-L-Regular";
    --font-medium: "APP-L-Medium";
    --font-bold: "APP-L-Bold";
    --font-semibold: "APP-L-SemiBold";
    --font-extrabold: "APP-L-ExtraBold";
}

[dir="rtl"] {
    --font-regular: "YB-Regualr";
    --font-medium: "YB-Medium";
    --font-bold: "YB-Bold";
    --font-semibold: "YB-DemiBold";
    --font-extrabold: "YB-ExtraBold";
}

.font-medium {
    font-family: var(--font-medium), serif !important;
}

.font-bold {
    font-family: var(--font-bold), serif !important;
}

.font-semibold {
    font-family: var(--font-semibold), serif !important;
}

.YB-DemiBold {
    font-family: var(--font-semibold), serif !important;
}


.comment-text::-webkit-scrollbar {
    width: 7px;
}


.comment-text::-webkit-scrollbar-track {
    background: #fbfbfb;
    border-radius: 5px;
}


.comment-text::-webkit-scrollbar-thumb {
    background: #ede8e8;
    border-radius: 5px;
}


.comment-text::-webkit-scrollbar-thumb:hover {
    background: #004aab;
    cursor: pointer;
}

html {
    scroll-behavior: smooth;

}

::selection {
    background: #e0e0fed6;
    color: #0A2542;
}

body {
    width: 100vw;
    display: flex;
    align-items: center;
    flex-direction: column;
    overflow-x: hidden;
    min-height: 100vh;
    max-width: 100%;
}


body * {
    max-width: 1920px;
}


.YB-Bold {
    font-family: var(--font-bold), serif !important;
}


.YB-ExtraBold {
    font-family: var(--font-extrabold), serif !important;
}


main {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh;
    gap: 30px;
    padding-bottom: 150px;
    overflow: hidden;
}


.weblog-main {
    overflow: visible;
}


@media (max-width: 1024px) {

    .footer-bg {
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    .link-col {
        display: flex;
        gap: 6px;
        flex-direction: column;
    }

}


@media (min-width: 1024px) {

    .footer-bg {
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    .link-col {
        display: flex;
        gap: 12px;
        flex-direction: column;
    }
}

@media (max-width: 320px) {
    .footer-section-top {
        width: 90% !important;

    }

}


@media (max-width: 1024px) {
    .center-flex {
        display: flex;
        align-items: center;
        justify-content: center;
    }

}

@media (min-width: 1024px) {
    .center-flex {
        display: flex;
        align-items: center;
        justify-content: center;
    }

}


.home-top-bg {
    background: url(../images/Home-top-bg.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


.special-word-animation {
    position: relative;

}

.special-word-animation::before {
    z-index: -1;
    content: "";
    height: 100%;
    position: absolute;
    border-radius: 10px;
    width: 0%;
    background-image: linear-gradient(to right, #F5F6FF, #CAD8FF);
    animation: word-highlight 0.75s ease forwards;
    animation-delay: 0.5s;
    transition: width;
}


@keyframes word-highlight {
    to {
        width: 100%;
    }

}

@media (min-width: 1024px) {
    .footer-icon {
        width: 20px !important;
    }
}

@media (max-width: 1024) {
    .footer-icon {
        width: 15px !important;
    }
}


.wrapper-dropdown {
    position: relative;
    display: inline-block;
    border-radius: 0 18px 18px 0;
    text-align: right;
    color: #1F2937;
    cursor: pointer;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.scrollable-menu {
    height: auto;
    max-height: 200px;
    overflow-x: hidden;
}

.arrow {

    float: right;
    rotate: 90deg;
}

svg {
    transition: all 0.3s;
}

.wrapper-dropdown::before {
    position: absolute;
    top: 50%;
    right: 16px;
    margin-top: -2px;
    border-width: 6px 6px 0 6px;
    border-style: solid;
    border-color: #fff transparent;
}

.rotated {
    transform: rotate(90deg);
}

.wrapper-dropdown .dropdown {
    transition: 0.3s;
    position: absolute;
    top: 120%;
    right: 0;
    left: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    z-index: 30;
    border-radius: 15px;
    box-shadow: inherit;
    background: inherit;
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    opacity: 0;
    visibility: hidden;
}

.wrapper-dropdown .dropdown li {
    padding: 0 10px;
    line-height: 45px;
    overflow: hidden;
}

.wrapper-dropdown .dropdown li:last-child {
    border-bottom: none;
}

.wrapper-dropdown .dropdown li:hover {
    background-color: #CAD8FF;
    color: white;
    border-radius: 5px;
}

.wrapper-dropdown.active .dropdown {
    opacity: 1;
    visibility: visible;
    border-radius: 5px;
}


@media (max-width: 310px) {
    .home-cards {
        width: 90% !important;
        max-width: none !important;
        min-width: 0 !important;
    }
}


.special-home-card {
    background: url(../images/home-special-card-img.webp);

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


@media (max-width: 500px) {
    .home-images-responsive {
        width: 90% !important;
        max-width: none !important;
        min-width: 0 !important;
        min-height: 0 !important;
        max-height: none !important;
        height: auto !important;

    }

}

@media (max-width: 1024px) {

    .counting-cards-home {
        min-width: 48px;
        max-width: 48px;
        min-height: 48px;
        max-height: 48px;
    }

    .counting-cards-home img {
        max-width: 24px;
        min-width: 24px;
        min-height: 24px;
        max-height: 24px;
    }


}

@media (min-width: 1024px) and (max-width: 1536px) {
    .counting-cards-home {
        min-width: 40px;
        max-width: 40px;
        min-height: 40px;
        max-height: 40px;
    }

    .counting-cards-home img {
        max-width: 18px;
        min-width: 18px;
        min-height: 18px;
        max-height: 18px;
    }

}


@media (min-width: 1536px) {
    .counting-cards-home {
        min-width: 48px;
        max-width: 48px;
        min-height: 48px;
        max-height: 48px;
    }

    .counting-cards-home img {
        max-width: 24px;
        min-width: 24px;
        min-height: 24px;
        max-height: 24px;
    }

}


@media (max-width: 1024px) {
    .home-containerss {
        width: 90%;
        min-width: 0;
        max-width: none;
    }
}


@media (min-width: 1024px) and (max-width: 1280px) {
    .home-containerss {
        width: auto;
        min-width: 950px;
        max-width: 950px;
    }

}

@media (min-width: 1280px) and (max-width: 1536px) {
    .home-containerss {
        width: auto;
        min-width: 1200px;
        max-width: 1200px;
    }

}


@media (min-width: 1536px) {
    .home-containerss {
        width: auto;
        min-width: 1400px;
        max-width: 1400px;
    }
}


/* cards animation  */
@media (min-width: 1024px) {
    .Home-cards-animate1 {
        opacity: 0;
        transform: scale(1.3);
        animation: card-appear 1.5s ease-in-out 1 forwards;
        animation-delay: 0.2s;
        transition: all;
    }

    .Home-cards-animate2 {
        opacity: 0;
        transform: scale(1.3);
        animation: card-appear 1.5s ease-in-out 1 forwards;
        animation-delay: 0.8s;
        transition: all;
    }

    .Home-cards-animate3 {
        opacity: 0;
        transform: scale(1.3);
        animation: card-appear 1.5s ease-in-out 1 forwards;
        animation-delay: 1.4s;
        transition: all;
    }

    .Home-cards-animate4 {
        opacity: 0;
        transform: scale(1.3);
        animation: card-appear 1.5s ease-in-out 1 forwards;
        animation-delay: 2s;
        transition: all;
    }

    @keyframes card-appear {
        to {
            opacity: 1;
            transform: scale(1)
        }

    }
}


@media (min-width: 1024px) and (max-width: 1536px) {
    .header-nav-lists {
        font-size: 14px;
        color: #0A2542;
        transition: all cubic-bezier(0.4, 0, 0.2, 1) 150ms;
    }
}

@media (min-width: 1536px) {
    .header-nav-lists {
        font-size: 16px;
        color: #0A2542;
        transition: all cubic-bezier(0.4, 0, 0.2, 1) 150ms;
    }
}

.stock-ticker {
    font-size: 14px;
    padding-block: 8px;
    overflow: hidden;
    --gap: 20px;
    display: flex;
    gap: var(--gap);
    -webkit-mask-image: linear-gradient(90deg, transparent, #EFF4FF 35%, #EFF4FF 75%, transparent);
}

.stock-ticker ul {
    list-style: none;
    flex-shrink: 0;
    display: flex;
    justify-content: space-between;
    gap: var(--gap);
    align-items: center;
    animation: scroll 20s linear infinite;
}

.stock-ticker:hover ul {
    animation-play-state: paused;
}

@keyframes scroll {
    to {
        transform: translate(calc(100% + var(--gap)));
    }
}


:dir(ltr) .stock-ticker ul {
    list-style: none;
    flex-shrink: 0;
    display: flex;
    justify-content: space-between;
    gap: var(--gap);
    align-items: center;
    animation: scroll2 20s linear infinite;
}

:dir(ltr) .stock-ticker:hover ul {
    animation-play-state: paused;
}

@keyframes scroll2 {
    to {
        transform: translate(calc(-100% - var(--gap)));
    }
}


@media (min-width: 1024px) {
    .site-header.hide {
        transform: translateY(-100%);
    }

}


/* FAQ  */
@media screen and (max-width: 640px) {
    .accordion button .icon {
        top: 18px !important;
    }
}

.open-faq {
    border: none !important;
    box-shadow: 0px 20px 30px 4px #56698814;
}

@media screen and (max-width: 1280px) {
    .accordion .accordion-content p {
        font-size: 12px;
        font-weight: normal;
    }

    .accordion button {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 14px 0;
        font-size: 16px;
        font-weight: bold;
        border: none;
        background: none;
        outline: none;
    }
}

@media screen and (min-width: 1280px) {
    .accordion .accordion-content p {
        font-size: 14px;
        font-weight: normal;
    }

    .accordion button {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;

        padding: 14px 0;
        font-size: 18px;
        font-weight: bold;
        border: none;
        background: none;
        outline: none;
    }
}


.accordion button[aria-expanded=true] .icon-faq span svg {
    transform: rotate(-90deg) !important;
}

:dir(ltr) .accordion button[aria-expanded=true] .icon-faq span svg {
    transform: rotate(90deg) !important;
}


.accordion button[aria-expanded=true] .icon-faq {
    color: white !important;
    background-color: #569FEF;
}


.accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 500ms ease-out, max-height 500ms ease-out;
    padding: 0 14px;
}

.accordion-button[aria-expanded="true"] + .accordion-content {
    opacity: 1;
    max-height: 1000px;
    padding: 14px;
}


@keyframes slideInFromRight {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.faq-image {
    animation-duration: 0.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

.show-image {
    animation-name: slideInFromRight;
}


.home-card-des {
    opacity: 0 !important;
    transform: scale(0.3) !important;
}

.little-card-1 {
    transition: all 1s ease 0.5s !important;
}

.little-card-2 {
    transition: all 1s ease 0.75s !important;
}

.little-card-3 {
    transition: all 1s ease 1s !important;
}

.little-card-4 {
    transition: all 1s ease 1.25s !important;
}


.home-card-des-animate {
    opacity: 1 !important;
    transform: scale(1) !important;
}


.description-image {
    opacity: 0;
    transform: scale(0);
    transition: all 1.5s ease 0.25s !important;
}

.show-description-image {
    opacity: 1 !important;
    transform: scale(1) !important;
    transition: all 1.5s ease 0.25s !important;
}


/* weblog */

.navbar-list-active {
    color: #3384EF !important;
    border-bottom: 1px solid #3384EF;
}


.video-cards-play-icon {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(13px);
}


@media (max-width: 450px) {
    .video-width {
        width: 90% !important;
        height: 250px !important;
        min-width: auto !important;
        max-width: none !important;
    }
}


/* weblog */
.weblog-table-active {
    position: relative;
}

.weblog-table-active::before {
    content: '';
    position: absolute;
    top: 0;
    inset-inline-start: -25px;
    border-radius: 30px;
    width: 2px;
    height: 100%;
    background: #4657AC;
}

.weblog-table-active {
    background-color: #F3F5FF !important;
    color: #4657AC !important;
    font-size: medium !important;
}


.little-boxs-sp::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    transform: translateX(-50%) rotate(45deg);
    width: 14px;
    height: 14px;
    background-color: #FFFF;
    border-bottom: 1px solid #FFFF;
    border-right: 1px solid #FFFF;
}

@media (min-width: 1536px) {
    .little-boxs-sp-Share::before {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -7px;
        transform: translateX(-50%) rotate(45deg);
        width: 14px;
        height: 14px;
        background-color: #FFFF;
        border-bottom: 1px solid #FFFF;
        border-right: 1px solid #FFFF;
    }
}

@media (max-width: 1536px) {
    .little-boxs-sp-Share::before {
        content: "";
        position: absolute;
        left: 15px;
        bottom: -7px;
        transform: rotate(45deg);
        width: 14px;
        height: 14px;
        background-color: #FFFF;
        border-bottom: 1px solid #FFFF;
        border-right: 1px solid #FFFF;
    }
}


@media (min-width: 1536px) {
    .stickyyy {
        position: sticky !important;
        top: 185px !important;
    }
}

@media (max-width: 1536px) {
    .stickyyy {
        position: sticky !important;
        top: 160px !important;
    }
}


.phone-scroll-color::-webkit-scrollbar {
    width: 3px;
}

.phone-scroll-color::-webkit-scrollbar-thumb {
    background: #f3f4f6;
    border-radius: 5px;
}


.more-comment-effect {
    -webkit-mask-image: linear-gradient(180deg, transparent, #ffff 0%, #ffff 40%, transparent);
}


/* home tag */
.home-tag-active-navbar {
    color: #3384EF !important;
    border-bottom: 1px solid #3384EF !important;
}


.single-tag-main {
    padding-bottom: 0px !important;
}


/* vps  */
.text-default {
    color: #374151;
}

.text-changed {
    color: #FFFF;
}


.virtual-card {
    opacity: 0 !important;
    transform: rotateY(150deg) !important;
    transition: all 2s ease 0.25s !important;
}

.virtual-card-animate {
    opacity: 1 !important;
    transform: rotateY(0deg) !important;
}


@media (max-width: 1024px) {
    .hero-containerss {
        width: 90%;
        min-width: 0;
        max-width: none;
    }
}


@media (min-width: 1024px) and (max-width: 1280px) {
    .hero-containerss {
        width: auto;
        min-width: 950px;
        max-width: 950px;
    }

}

@media (min-width: 1280px) and (max-width: 1536px) {
    .hero-containerss {
        width: auto;
        min-width: 1200px;
        max-width: 1200px;
    }

}


@media (min-width: 1536px) {
    .hero-containerss {
        width: auto;
        min-width: 1430px;
        max-width: 1430px;
    }


}


.btn-linux-active {
    background: #2A3991 !important;
    color: white !important;

}

.active-notif-button {
    border: 1px solid #40D6A4 !important;
    background-color: #40D6A4 !important;
}


/* location */
@media screen and (min-width: 1024px) {
    @keyframes pulseGlow {

        0% {
            box-shadow: 0 0 0 0 #CCDBF2;
        }
        100% {
            box-shadow: 0 0 0 25px rgba(125, 173, 224, 0);
        }
    }

    @-webkit-keyframes pulseGlow {

        0% {
            box-shadow: 0 0 0 0 #CCDBF2;
        }
        100% {
            box-shadow: 0 0 0 25px rgba(125, 173, 224, 0);
        }
    }

    #mapglowbtn {

        animation: pulseGlow 3s ease-in 1s infinite;
        -webkit-animation: pulseGlow 3s ease-in 1s infinite;
    }

    #mapglowbtn2 {

        animation: pulseGlow 3s ease-in 3s infinite;
        -webkit-animation: pulseGlow 3s ease-in 3s infinite;
    }


}

@media screen and (max-width: 1024px) {
    @keyframes pulseGlow {

        0% {
            box-shadow: 0 0 0 0 #CCDBF2;
        }
        100% {
            box-shadow: 0 0 0 10px rgba(125, 173, 224, 0);
        }
    }

    @-webkit-keyframes pulseGlow {

        0% {
            box-shadow: 0 0 0 0 #CCDBF2;
        }
        100% {
            box-shadow: 0 0 0 10px rgba(125, 173, 224, 0);
        }
    }

    #mapglowbtn {

        animation: pulseGlow 3s ease-in 1s infinite;
        -webkit-animation: pulseGlow 3s ease-in 1s infinite;
    }

    #mapglowbtn2 {

        animation: pulseGlow 3s ease-in 3s infinite;
        -webkit-animation: pulseGlow 3s ease-in 3s infinite;
    }
}


@media screen and (min-width: 1024px) {
    .maphover {
        transform: rotateX(45deg) scale(0.8)
    }

    .maphover:hover {
        transform: rotateX(1deg) scale(1)
    }

}


@media screen and (min-width: 1024px) {
    .map-little-box::before {

        content: "";
        position: absolute;
        left: 50%;
        top: 90%;
        transform: translateX(-50%) rotate(45deg);
        width: 14px;
        height: 14px;
        background-color: #FFFF;
        border-bottom: 1px solid #FFFF;
        border-right: 1px solid #FFFF;

    }

}

@media screen and (max-width: 1024px) {
    .map-little-box::before {

        content: "";
        position: absolute;

        left: 50%;
        top: 89%;
        transform: translateX(-50%) rotate(45deg);
        width: 14px;
        height: 14px;
        background-color: #FFFF;
        border-bottom: 1px solid #FFFF;
        border-right: 1px solid #FFFF;

    }

}

.locations::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    border-radius: 4px;
    background-image: linear-gradient(to left, #398AF3, white 50%);
    bottom: 0;
    right: 0;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
}

.locations:hover::before {
    transform-origin: right;
    transform: scaleX(1);
}

:dir(ltr) .locations::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    border-radius: 4px;
    background-image: linear-gradient(to right, #398AF3, white 50%);
    bottom: 0;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
}

:dir(ltr) .locations:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}

.button-icon-animation {
    animation: down 2.5s infinite 1s;
    -webkit-animation: down 2.5s infinite 1s;
}

@keyframes down {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translateY(10px);
    }
    40% {
        transform: translate(0);
    }
}

@-webkit-keyframes down {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translateY(10px);
    }
    40% {
        transform: translate(0);
    }
}


.privacy-terms-text h2 {
    margin-top: 34px !important;
    margin-bottom: 10px !important;
}


.solution-top-bg {
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}


/* knowledge */
@keyframes fade {
    from {
        opacity: 0.4;
    }
    to {
        opacity: 1;
    }
}


#slider {
    margin: 0 auto;
    width: 100%;

    border-radius: 10px;
}

.slides {
    overflow: hidden;
    animation-name: fade;
    animation-duration: 1s;
    display: none;
}


#dot {
    margin: 0 auto;
    text-align: center;
}

.dot {
    display: inline-block;
    border-radius: 100%;
    background: #d3d3d3;

    margin: 10px 3px;
    width: 10px;
    height: 10px;
}

.active {
    background: white;
    border-radius: 5px;
    width: 20px;
    height: 10px;
}

@media (max-width: 567px) {
    #slider {
        width: 100%;

    }
}


@media (min-width: 1024px) {

    .recomended-section {
        transform: perspective(300px) rotatey(7deg) rotate(0deg);
        transition: all 1000ms ease 150ms;
        animation: recomended-section-transform 3000ms ease-in-out 1;
    }


    .recomended-section:hover {
        transform: perspective(300px) rotatey(0deg) rotate(0deg);
    }


    @keyframes recomended-section-transform {
        0% {
            transform: perspective(300px) rotatey(7deg) rotate(0deg);
        }

        50% {
            transform: perspective(300px) rotatey(0deg) rotate(0deg);
        }

        100% {
            transform: perspective(300px) rotatey(7deg) rotate(0deg);
        }

    }
}


.littleCards-animation {
    animation: movecards 4000ms ease-in-out infinite;
}

@keyframes movecards {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(-15px);
    }
    100% {
        transform: translatey(0px);

    }
}

.littleCards-animation2 {
    animation: movecards2 4000ms ease-in-out infinite;
}

@keyframes movecards2 {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(15px);
    }
    100% {
        transform: translatey(0px);

    }
}


@media (min-width: 768px) {

    .video-card-t {
        transform: translateX(-100px);

        animation: video-card-translate 2000ms ease-in-out 300ms;
        animation-fill-mode: forwards;
    }

    @keyframes video-card-translate {
        0% {
            transform: translateX(-100px);
        }
        100% {
            transform: translateX(0px);
        }
    }

    .info-card-t {
        transform: translateX(-200px);

        animation: info-card-translate 2000ms ease-in-out 300ms;
        animation-fill-mode: forwards;
    }

    @keyframes info-card-translate {
        0% {
            transform: translateX(-200px);
        }
        100% {
            transform: translateX(0px);
        }
    }


}


.navbar-active-blue {
    color: #2E72ED !important;
}


/* star rate css codes */
.jq-stars {
    display: inline-block;
}

.jq-rating-label {
    font-size: 22px;
    display: inline-block;
    position: relative;
    vertical-align: top;
    font-family: helvetica, arial, verdana;
}

.jq-star {
    width: 100px;
    height: 100px;
    display: inline-block;
    cursor: pointer;
}

.jq-star-svg {
    padding-left: 3px;
    width: 100%;
    height: 100%;
}

.jq-star:hover .fs-star-svg path {
}

.jq-star-svg path {
    /* stroke: #000; */
    stroke-linejoin: round;
}

/* un-used */
.jq-shadow {
    -webkit-filter: drop-shadow(-2px -2px 2px #D1D5DB);
    filter: drop-shadow(-2px -2px 2px #D1D5DB);
}

/* star rate css codes */

.glassy-btn {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8.6px);
    -webkit-backdrop-filter: blur(8.6px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.audio {
    display: none;
}

.progress-container {
    position: relative;
    width: 100%;
    background-color: #D1D5D7;
    border-radius: 9999px;
}

.progress-bar {
    position: absolute;
    left: 0;
    height: 100%;
    background-color: #0063F7;
    border-radius: 9999px;
}

.progress-circle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    background-color: #0145ab;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    left: -1%;
}

.image-infinite {
    border-radius: 10px;
    height: 175px;
    width: 100% !important;
    filter: grayscale(100%) saturate(1);
    transition: all 400ms;
}

.image-infinite:hover {
    filter: grayscale(0%) saturate(1.5);

}

.imageSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.ReverseImageSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.image-swipe-inifinite {
    -webkit-mask-image: linear-gradient(0deg, transparent, #fff 45%, #fff 50%, transparent);
}

.image-swipe-inifinitee {
    -webkit-mask-image: linear-gradient(0deg, transparent, #fff 2%, #fff 94%, transparent);
}

/* technolohy */

.Active-dot-swiper {
    background: white !important;
    opacity: 1 !important;
    width: 20px !important;
}

.active-swiper-list {
    background-color: #EEF5FF !important;
    color: #194998 !important;
}


.content-weblog-item {
    display: none;
}

.content-weblog-item.active {
    display: block;
}

.weblog-card-scroll-color::-webkit-scrollbar {
    width: 5px;
}

.weblog-card-scroll-color::-webkit-scrollbar-thumb {
    background: #DFE2E6;
    border-radius: 20px;
}


.swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background-color: white;
    opacity: 0.5;
    border-radius: 9999px;
    transition: all 0.6s ease-in-out;

}

.swiper-pagination-bullet-active {
    width: 20px;;
    background: white;
    opacity: 1;
    border-radius: 9999px;
}


.open-faq {
    border: none !important;
    box-shadow: 0px 20px 30px 4px #56698814;
}

.active-search-btn {
    background-color: #2A3991 !important;
    color: #eef6ff !important;
}

.phone-icon-transform {
    transform: rotateY(180deg);
}

:dir(ltr) .phone-icon-transform {
    transform: rotateY(0deg);
}

.menu-disappear {
    transform: translateX(-100%) !important;
}

:dir(ltr) .menu-disappear {
    transform: translateX(100%) !important;
}

.bg-plans {
    background-image: linear-gradient(45deg, hsl(192deg 99% 45%) 0%, hsl(197deg 80% 50%) 2%, hsl(202deg 79% 52%) 5%, hsl(208deg 80% 54%) 12%, hsl(214deg 81% 56%) 20%, hsl(222deg 82% 57%) 30%, hsl(230deg 83% 59%) 41%, hsl(235deg 79% 60%) 53%, hsl(241deg 75% 61%) 66%, hsl(246deg 73% 60%) 78%, hsl(251deg 71% 58%) 89%, hsl(256deg 70% 56%) 97%, hsl(261deg 68% 54%) 100%);
}


.scrollbar-color::-webkit-scrollbar {
    width: 7px;
}


.scrollbar-color::-webkit-scrollbar-track {
    background: #fbfbfb;
    border-radius: 5px;
}


.scrollbar-color::-webkit-scrollbar-thumb {
    background: #ede8e8;
    border-radius: 5px;
}


.scrollbar-color::-webkit-scrollbar-thumb:hover {
    background: #0063F7;
}


/* new */

.FAQ-Section2.active2 .FAQ-answer {
    max-height: 500px;
}


.FAQ-Section2.active2 .icon-vert {
    transform: rotate(180deg);
}

.FAQ-Section2.active2 {
    background: #F3F8FF;
}

.FAQ-Section2.active2 .Icon-div span {
    background-color: white !important;
}

.FAQ-Section2.active2 .FAQ-title {
    color: #0188D0 !important;
}


.active_Question_like_button {
    svg {
        transition: all 200ms ease;
        transform: scale(1.1);
    }

    svg path {
        fill: #EF2C2C !important;
        transition: all 200ms ease;
    }
}

.copy_box_weblog::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 60%;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    inset-inline-start: -4px;
    background-color: #2880F2;
}


.box-sp-Share::before {
    content: "";
    position: absolute;
    right: 15px;
    top: -7px;
    transform: rotate(45deg);
    width: 14px;
    height: 14px;
    background-color: #FFFF;
    border-top: 1px solid #FFFF;
    border-left: 1px solid #FFFF;
}

.share-drop-shadow {
    box-shadow: 0px -5px 20px rgba(0, 46, 100, 0.1);
}

.active_tools_menu {
    color: #0176E5 !important;
    border-color: #0176E5 !important;
}

.more-weblog-effect {
    -webkit-mask-image: linear-gradient(180deg, transparent, #FAFCFF 0%, #FAFCFF 40%, transparent);
}

.active-dedicated-plan {
    background-color: #1E1E21 !important;
    color: white !important;
}

.VerticalScrollbarColors::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.VerticalScrollbarColors::-webkit-scrollbar-track {
    background: #e9e7ee;
    border-radius: 10px;
}

.VerticalScrollbarColors::-webkit-scrollbar-thumb {
    background-color: #0176E5;
    border-radius: 10px;
}

.VerticalScrollbarColors::-webkit-scrollbar-thumb:hover {
    background-color: #0176E5;
}

.body-bg {
    background-color: #FAFCFF;
}

.descriptions-bg {
    background: url(../test-images/bg-description.webp);
    background-position: center;
    background-repeat: no-repeat;
}

.cards-drop-shadow {
    box-shadow: 0px 5px 20px rgba(0, 46, 100, 0.05);
}

@media (max-width: 1024px) {
    .all-titles-size {
        font-size: 18px;
    }

    .all-descriptions-size {
        font-size: 14px;
    }
}


@media (min-width: 1024px) and (max-width: 1280px) {
    .all-titles-size {
        font-size: 20px;
    }

    .all-descriptions-size {
        font-size: 16px;
    }
}

@media (min-width: 1280px) {
    .all-titles-size {
        font-size: 20px;
    }

    .all-descriptions-size {
        font-size: 18px;
    }
}


.phone-icon-transform {
    transform: rotateY(180deg);
}

:dir(ltr) .phone-icon-transform {
    transform: rotateY(0deg);
}

.comment-shadow-effect {
    -webkit-mask-image: linear-gradient(90deg, transparent, #ffff 30%, #ffff 70%, transparent);
}


:root {
    --slot: 3s;
    --count: 4;
    --period: calc(var(--slot) * var(--count));
}

.logo-stack {
    position: relative;
    height: 2rem;
}

.logo-stack > img {
    position: absolute;
    inset: 0;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0;
    filter: blur(4px);
    will-change: transform, opacity, filter;
    animation: logoWindow var(--period) ease-in-out infinite both;
    animation-delay: calc(var(--i) * var(--slot) * -1);
    pointer-events: none;
}

@keyframes logoWindow {
    0% {
        transform: translate(-4px, 4px);
        opacity: 0;
        filter: blur(4px);
    }
    4% {
        transform: translate(0, 0);
        opacity: 1;
        filter: none;
    }

    21% {
        transform: translate(0, 0);
        opacity: 1;
        filter: none;
    }

    25% {
        transform: translate(4px, -4px);
        opacity: 0;
        filter: blur(4px);
    }
    100% {
        opacity: 0;
        filter: blur(4px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .logo-stack > img {
        animation: none;
        opacity: 0;
    }

    .logo-stack > img[style*="--i:0"] {
        opacity: 1;
        filter: none;
    }
}


@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.animated-gradient {
    background: linear-gradient(
            to top right,
            #0176E5,
            #2D01E5,
            #16BDED,
            #2D01E5,
            #0176E5
    );
    background-size: 300% 300%;
    animation: gradientMove 6s linear infinite;
}

.menu-disappear {
    transform: translateX(-100%) !important;
}

:dir(ltr) .menu-disappear {
    transform: translateX(100%) !important;
}

.menu-icon-rotate {
    transform: rotate(-90deg);
}

:dir(ltr) .menu-icon-rotate {
    transform: rotate(270deg);
}

@keyframes blink-glow {
    0% {
        filter: drop-shadow(0px 0px 8px #0395fd1f);
    }
    50% {
        filter: drop-shadow(0px 0px 17px #0395fd1f);

    }
    100% {
        filter: drop-shadow(0px 0px 8px #0395fd1f);
    }
}

@keyframes blink-glow2 {
    0% {
        filter: drop-shadow(0px 0px 8px #ededed);
    }
    50% {
        filter: drop-shadow(0px 0px 17px #ededed);

    }
    100% {
        filter: drop-shadow(0px 0px 8px #ededed);
    }
}

.animate-drop-shadow {
    animation: blink-glow 3s infinite ease-in-out;
}

.animate-drop-shadow:hover {
    animation-play-state: paused;
}

.animate-drop-shadow2 {
    animation: blink-glow2 3s infinite ease-in-out;
}

.animate-drop-shadow2:hover {
    animation-play-state: paused;
}


/* ShortCodes */
.Recommended_part {
    margin-top: 48px;
    margin-bottom: 48px;
    background-color: #C54B70;
    border-radius: 10px;
    padding: 16px 24px;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
}


/* Table of content */
.table-of-content-active {
    position: relative;
    background-color: #EFF7FF !important;
    color: #4657AC !important;
    font-weight: bold !important;
}

.table-of-content-active::before {
    content: '';
    position: absolute;
    top: 0;
    border-radius: 30px;
    width: 2px;
    height: 100%;
    background: #4657AC;
}

:dir(rtl) .table-of-content-active::before {
    right: 0;
    left: auto;
}

:dir(ltr) .table-of-content-active::before {
    left: 0;
    right: auto;
}

.max-h-\[300px\]::-webkit-scrollbar {
    width: 4px;
}

.max-h-\[300px\]::-webkit-scrollbar-track {
    background: transparent;
}

.max-h-\[300px\]::-webkit-scrollbar-thumb {
    background: #4657AC;
    border-radius: 10px;
}

.max-h-\[300px\]::-webkit-scrollbar-thumb:hover {
    background: #4657AC;
}

.max-h-\[300px\] {
    scrollbar-width: thin;
    scrollbar-color: #4657AC transparent;
}


@media (max-width: 1502px) {
    .toc-box {
        display: none !important;
    }
}

.sticky-card {
    position: sticky !important;
    top: 220px !important;
}

.term-sticky-card {
    position: sticky !important;
    top: 150px !important;
}

.meta-items span:not(:first-child)::before {
    content: "|";
    margin-inline-end: 10px;
    color: #9391A1;
}

/* Table of content */
.weblog-table-active {
    position: relative;
    background-color: #EFF7FF !important;
    color: #4657AC !important;
    font-weight: bold !important;
}

.weblog-table-active::before {
    content: '';
    position: absolute;
    top: 0;
    border-radius: 30px;
    width: 2px;
    height: 100%;
    background: #616CD2;
    inset-inline-start: -12px;
}

.table_of_content_labels::-webkit-scrollbar {
    width: 4px;
}

.table_of_content_labels::-webkit-scrollbar-track {
    background: transparent;
}

.table_of_content_labels::-webkit-scrollbar-thumb {
    background: #616CD2;
    border-radius: 10px;
}

.table_of_content_labels::-webkit-scrollbar-thumb:hover {
    background: #616CD2;
}

.table_of_content_labels {
    scrollbar-width: thin;
    scrollbar-color: #616CD2 transparent;
}


.pre-block-code {
    white-space: pre-wrap;
}

@media (min-width: 1280px) {
    /* xl breakpoint */
    .has-divider {
        position: relative;
    }

    .has-divider::before {
        content: "";
        position: absolute;
        left: -1px;
        top: 50%;
        transform: translateY(-50%);
        width: 2px;
        height: 20px;
        background: #5D33E2;
    }
}

.scroll-x::-webkit-scrollbar {
    height: 6px;
}

.scroll-x::-webkit-scrollbar-track {
    background: #E9E5FF;
    border-radius: 10px;
}

.scroll-x::-webkit-scrollbar-thumb {
    background: #5D33E2;
    border-radius: 10px;
}


.share-box {
    inset-inline-start: 0;
    inset-block-end: 100%;
}

.share-box::before {
    inset-inline-start: 14%;
    transform: translateX(-50%) rotate(45deg);

    content: "";
    position: absolute;

    bottom: -3px;
    width: 14px;
    height: 14px;
    background-color: #FFFF;
    border-bottom: 1px solid #FFFF;
    border-right: 1px solid #FFFF;
}

.app-code-box::before {
    content: '';
    position: absolute;
    height: 60%;
    top: 50%;
    width: 4px;
    left: 0;
    transform: translateY(-50%) translateX(-50%);
    background-color: #1EAA4C;
    border-radius: 5px;
}

[dir="rtl"] .app-code-box::before {
    right: 0 !important;
    left: auto !important;
    transform: translateY(-50%) translateX(50%) !important;
}

.in-content-plan-row-bg {
    background: #110B26;
    position: relative;
    background: linear-gradient(90deg,rgba(17, 11, 38, 1) 1%, rgba(73, 40, 176, 1) 67%);
    border-radius: 5px;
}




.app-scroll::-webkit-scrollbar {
    width: 4px;
    height: 6px;
}

.app-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.app-scroll::-webkit-scrollbar-thumb {
    background: #616CD2;
    border-radius: 10px;
}

.app-scroll::-webkit-scrollbar-thumb:hover {
    background: #616CD2;
}


.navigation.pagination ul {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    align-items: center;
}

.navigation.pagination ul li span {
    width: 30px;
    height: 30px;
}

.navigation.pagination ul li a,
.navigation.pagination ul li span {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 14px;
    padding: 6px 11px;
    border-radius: 0.375rem; /* rounded-md */
    color: #617492;
    text-decoration: none;
    transition: all 0.2s;
}

.navigation.pagination ul li span.current {
    background-color: #680AFE;
    color: white;
    border-color: #680AFE;
}

.box2-code-bg {
    background: #110B26;
    background: linear-gradient(90deg, rgba(17, 11, 38, 1) 0%, rgba(73, 40, 176, 1) 100%);
}


.online-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    animation: pulseOnline 1.2s ease-in-out infinite;
}

@keyframes pulseOnline {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.85); }
}




.box-home-black {
    position: absolute;
    bottom: -0.375rem;
    right: -0.375rem;
    width: 130px;
    height: 70px;
    border-top-left-radius: 34px;
}



.box-home-black::before {
    position: absolute;
    content: "";
    bottom: 0.375rem;
    left: -1.25rem;
    background: transparent;
    width: 1.25rem;
    height: 1.25rem;
    border-bottom-right-radius: 1.25rem;
    box-shadow: 0.313rem 0.313rem 0 0.313rem #fff;
}

.box-home-black::after {
    position: absolute;
    content: "";
    top: -1.25rem;
    right: 0.375rem;
    background: transparent;
    width: 1.25rem;
    height: 1.25rem;
    border-bottom-right-radius: 1.25rem;
    box-shadow: 0.313rem 0.313rem 0 0.313rem #fff;
}

.box-home-black .iconBox-home {
    position: absolute;
    inset: 0.600rem;
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all ease 0.3s;
    font-size: 16px;
}


.box-home-white {
    position: absolute;
    bottom: -0.375rem;
    right: -0.375rem;
    width: 130px;
    height: 70px;
    border-top-left-radius: 34px;
}



.box-home-white::before {
    position: absolute;
    content: "";
    bottom: 0.375rem;
    left: -1.25rem;
    background: transparent;
    width: 1.25rem;
    height: 1.25rem;
    border-bottom-right-radius: 1.25rem;
    box-shadow: 0.313rem 0.313rem 0 0.313rem #F5F5F6;
}

.box-home-white::after {
    position: absolute;
    content: "";
    top: -1.25rem;
    right: 0.375rem;
    background: transparent;
    width: 1.25rem;
    height: 1.25rem;
    border-bottom-right-radius: 1.25rem;
    box-shadow: 0.313rem 0.313rem 0 0.313rem #F5F5F6;
}

.box-home-white .iconBox-home {
    position: absolute;
    inset: 0.600rem;
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all ease 0.3s;
    font-size: 16px;
}

.jq-star svg {
    width: 20px !important;
    height: 20px !important;
    max-width: 20px;
    max-height: 20px;
}
