body {

    background-color: rgb(247 247 247);
    font-family:  "Inter", sans-serif;
    font-weight: 400;
    font-style: normal;
}

blockquote, dd, dl, figure, h1, h2, h3, h4, h5, h6, hr, p, pre {
    margin: 0;
}
* {
    box-sizing: border-box;
}
.main-menu .nav .dropdown-full .mega.menu-full .language a {
    display: flex;
    align-items: center;
    gap: 6px;
}
.h-full{
    height: 100%;
}
.max-h-full{
    max-height: 100%;
}
a {
    color: inherit;
    text-decoration: inherit;
}
a:hover{
    color: inherit;
    text-decoration: none;
}

img{
    max-width: 100%!important;
}
.flex{
    display: flex;
}
.inline-flex{
    display: inline-flex;
}
.flex-wrap{
    flex-wrap: wrap;
}
.align-center{
    align-items: center;
}
.flex-column{
    flex-direction: column;
}

.flex-row{
    flex-direction: row;
}
.justify-center{
    justify-content: center;
}
.justify-between{
    justify-content: space-between;
}
.flex-3 {
    flex: 3;
}
.flex-1 {
    flex: 1;
}
.flex-grow, .grow {
    flex-grow: 1;
}
.w-half{
    width: 50%;
}
.gap-1 {
    gap: .25rem;
}
.gap-2 {
    gap: .5rem;
}
.gap-3 {
    gap: .75rem;
}
.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}
.gap-8 {
    gap: 2rem;
}
.gap-10 {
    gap: 2.5rem;
}
.p-3 {
    padding: .75rem;
}
.mb-2 {
    margin-bottom: .5rem;
}
.mt-3 {
    margin-top: 0.5rem;
}
.mt-4 {
    margin-top: 1rem!important;
}
.mt-6 {
    margin-top: 1.5rem;
}
.mt-12 {
    margin-top: 3rem;
}
.mt-16{
    margin-top: 4rem;
}
.mt-24 {
    margin-top: 6rem;
}
.mt-8 {
    margin-top: 2rem;
}
.fz-20{
    font-size: 20px;
}
.fz-14{
    font-size: 14px;
}
.border-bottom-dash{
    border-bottom: 1px rgb(0 81 238) dashed;
}
.fz-12{
    font-size: 12px;
}
.fz-10{
    font-size: 10px;
}
.align-middle {
    vertical-align: middle;
}
.radius-1rem{
    border-radius: 1rem;
}
.radius-50px {
    border-radius: 50px;
}
.border-dash{
    border: 2px rgb(216 216 219) dashed;
}
.border-dash-1px{
    border: 1px rgb(216 216 219) dashed;
}
.bg-252638{
    background-color:#252638;
}
.hover-bg-EAEAED:hover{
    background-color:#EAEAED;
}
.shadow-not-top{
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.shadow{
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}
.object-cover {
    -o-object-fit: cover;
    object-fit: cover;
}
menu, ol, ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.w-full {
    width: 100%;
}
audio, canvas, embed, iframe, img, object, svg, video {
    display: block;
    vertical-align: middle;
}
/*svg,*/
/*svg path{*/
/*    stroke: currentColor;*/
/*}*/
.disable {
    pointer-events: none;
    opacity: 0.5;
}
.bg-white {
    background-color: #ffffff!important;
}
.radius-10px {
    border-radius: 10px;
}
.radius-5px {
    border-radius: 5px;
}
.relative{
    position: relative;
}
.cursor-pointer {
    cursor: pointer;
}
.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.over-hidden{
    overflow: hidden;
}
.text-blue{
    color: #0051ee;
}
.text-252638{
    color: #252638;
}
.text-73747b{
    color: #73747b;
}
.text-1F2937{
    color: #1F2937;
}
.text-5C5D6B{
    color: #5C5D6B;
}
.text-4B5563{
    color: #4B5563;
}
.text-0051EE{
    color: #0051EE;
}
.text-center{
    text-align: center;
}
.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}
.text-sm {
    font-size: .875rem;
    line-height: 1.25rem;
}
.text-white{
    color: #ffffff;
}
.text-white-064{
    color: #FFFFFFA3;
}
.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}
.leading-10 {
    line-height: 2.5rem;
}

.font-semibold {
    font-weight: 600;
}
.lh-28{
    line-height: 28px;
}
.shrink {
    flex-shrink: 1;
}
.hidden{
    display: none;
}
.rotate-45{
    rotate: 45deg;
}
.max-w-sm {
    max-width: 24rem;
}
.max-w-1200{
    max-width: 1200px;
}
.min-w-full {
    min-width: 100%;
}

#header{
    height: 72px;
    position: fixed;
    top: 0;
    z-index: 99999;
    backdrop-filter: blur(16px);
}

#main-menu{
    display: none;
    padding: 14px 16px 14px 32px;
}
.nav-link {
    font-weight: 600;
}
.nav-link:hover{
    color: #5D5C6B;
}

.dropdown:hover .dropdown-menu:not(.menu-full),
.dropdown-menu:not(.menu-full).show{
    display: flex;

}
.dropdown-menu#mobile-language-menu a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-menu{
    padding: .5rem;
    border-radius: 10px;
    box-shadow: 1px -1px 9px -1px rgba(168,164,164,0.75);
    -webkit-box-shadow: 1px -1px 9px -1px rgba(168,164,164,0.75);
    border: unset;
    top: 90%;
    background-color: #ffffff;

}

.container-fluid {
    padding-right: 0px;
    padding-left: 0px;
}
.bg-home-bg-gradient {
    background: url(/images/ai_image/bg-gradient-color.webp) no-repeat;
    background-size: cover;
    padding-top: 72px;
}
.line-height-80 {
    line-height: 80px;
}
.font-size-64 {
    font-size: 64px;
}
.font-size-56 {
    font-size: 56px;
}
.zinc-128{
    -webkit-mask-image: linear-gradient(
            90deg,
            transparent 0px,
            black 128px,
            black calc(100% - 128px),
            transparent 100%
    );
    mask-image: linear-gradient(
            90deg,
            transparent 0,
            #000 128px,
            #000 calc(100% - 128px),
            transparent
    );
}
.zinc-128 li {
    margin-left: 2rem;
    margin-right: 2rem;
}

.bg-f4f4f5{
    background-color: #f4f4f5;
}
.img-comparison-slider {
    --divider-width: 2px;
    --divider-color: #fff;
    --default-handle-color: #fff;
    outline: none;
}


.magnifying-glass {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 4px;
    border: 2px solid #fff;
    z-index: 1;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(32,52,89,.12);
    background-repeat: no-repeat;
    display: none;
}
button{
    border: unset;
}
button:focus {
    outline: unset;
}
.faq_content{
    border-top: 1px solid rgba(0,0,0,.125);

}
.faq_content .minus{
    display: none;
    width: 22px;
}
.faq_content .plus{
    width: 22px;
    display: block;
}
.faq_content.opened .minus{
    display: block;
}
.faq_content.opened .plus{
    display: none;
}
.faq_question{
    padding: 1rem 1.25rem;
}
.faq_question p{
    font-weight: 600;
    font-size: 18px;
    padding-right: 1rem;
}
.faq_answer{
    font-weight: 400;
    padding: 0;
    height: 0;
    opacity: 0;
    transition: all .3s;
    visibility: hidden;
}
.faq_content.opened .faq_answer {
    height: auto;
    padding-right: 4rem;
    padding-left: 1.25rem;
    padding-bottom: 1rem;
    opacity: 1;
    visibility: visible;
}
.bg-1E293B{
    background-color: #1E293B;
}
.bg-EAEAED{
    background-color: #EAEAED;
}
.contact{
    padding: 64px 120px;
    gap: 120px;
    border-bottom: 1px solid #FFFFFF33;
}
.footer{
    padding: 16px 120px;
}
.footer svg{
    width: 24px;
    height: 24px;
}
.footer svg.bRL{
    width: 20px;
    height: 20px;
}
.footer a:hover svg{
    color: #ffffff;
}
.footer-logo{
    max-width: 200px;
    align-self: center;
}

.btn-primary{
    border-radius: 35px;
    padding: 16px 54px;
    font-size: 20px;
    line-height: 28px;
    background-color: rgb(29 78 216);
    box-shadow: 0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1);
    border: unset;
    font-weight: 600;
}
.text-gradient{
    background: linear-gradient(138.69deg,#0dffff -2.74%,#0051ef 39.11%,#a400bf 98.64%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.inline-solid{
    border-top: 1px solid rgb(161 161 170);
}
.logo-page {
    width: 96px;
}
.object-contain{
    object-fit: contain;
}
.hide-scrollbars {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.h-\[116\.25px\] {
    height: 116.25px;
}
.h-\[70px\] {
    height: 70px;
}

@media (min-width: 1024px) {
    .magnifying-glass {
        width: 100px;
        height: 100px;
    }
    .lg-w-50 {
        width: 50%;
    }
    .lg-w-60{
        width: 60%;
    }
    .lg-w-40{
        width: 40%;
    }

    .lg-w-50--60 {
        width: calc(50% - 60px);
    }

    .lg-hidden {
        display: none;
    }

    .lg-content-9600 {
        max-width: 9600px;
    }

    .lg-content-1200 {
        max-width: 1200px;
    }

    .lg-content-720 {
        max-width: 720px;
    }

    .lg-pt-120 {
        padding-top: 120px;
    }

    .lg-pb-192 {
        padding-bottom: 192px;
    }

    .lg-pl-300 {
        padding-left: 300px;
    }

    .lg-mt-14 {
        margin-top: 3.5rem !important;
    }

    .lg-mt--120 {
        margin-top: -120px;
    }

    .lg-gap-192 {
        gap: 192px;
    }

    .lg-gap-6 {
        gap: 1.5rem;
    }

    .lg-mt-12 {
        margin-top: 3rem;
    }

    .lg-lh-72 {
        line-height: 72px !important;
    }

    .lg-fz-56 {
        font-size: 56px !important;
    }

    .lg-mb-192 {
        margin-bottom: 196px;
    }

    .lg-flex {
        display: flex;
    }
    .lg-w-56{
        width: 14rem;
    }
    #main-menu {
        display: flex;
    }

    .lg-logo-page {
        width: 96px;
    }
    .footer-logo{
        align-self: flex-start;
    }
    .lg-flex-3{
        flex: 3;
    }
    .lg-flex-1{
        flex: 1;
    }
}
@media (max-width: 1024px){
    .sm-fix-choose-file{
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 9;
        display: none;
    }
    .flex-sm-column{
        flex-direction: column;
    }
    .md-align-center{
        align-items: center;
    }
    .md-text-center{
        text-align: center;
    }
    .container-fluid {
        margin-top: 0;
    }
    .sm-hidden {
        display: none;
    }
    .sm-column-reverse{
        flex-direction: column-reverse;
    }
    .sm-column{
        flex-direction: column;
    }
    .card-item {
        flex: 0 0 calc((100% - 2 * 1.5rem) / 2);
    }

    .md-w-50{
        width: 50%;
    }
}
@media (min-width: 851px){
    .md-lg-block {
        display: block!important;
    }
}
@media (max-width: 851px){
    .sm-block {
        display: block!important;
    }
    .s-w-full{
        width: 100%;
    }
    .s-w-50{
        width: 50%;
    }
    .background_remover.btn-download span.text,
    .background_remover.btn-download span.text{
        display: none;
    }

}
.color-pickers .bt-color,
.c-pointer,
.remove-object-mode {
    cursor: pointer;
}



