/*  ==========  INFO  ==========  */
    /* laptop: 1200px */
    /* tablet: 960px */
    /* large-mobile: 640px */
    /* mobile: 480px */
    /* mini-mobile: 320px */
/*  ==========  END INFO  ==========  */






/*  ==========  ITEMS SECTION  ==========  */
#intro{
    background-image: url('/assets/introBanner2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: calc(50% - 5%);
    background-position-y: bottom;
    height: calc(90svh - 80px);
    position: relative;
}
#intro::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, var(--color-dark) 100%);
    z-index: 1;
}
#intro .title-wrap{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0 5%;
    box-sizing: border-box;
}
#intro .title-wrap .title{
    font-size: 28px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    line-height: 110%;
    text-transform: uppercase;
    letter-spacing: 1px;
}
#intro .title-wrap .sub-title{
    font-size: 18px;
    font-weight: 400;
    color: #dedede;
    text-align: center;
    line-height: 150%;
}
@media screen and (max-width: 640px){
    #intro{
        height: calc(100svw - 80px);
    }
    #intro .title-wrap .title{
        font-size: 3.1vw;
    }
    #intro .title-wrap .sub-title{
        font-size: 2.5vw;
    }
}
/*  ==========  END ITEMS SECTION  ==========  */





/*  ==========  ABOUT SECTION  ==========  */
#about{
    background: linear-gradient(to bottom, var(--color-dark), var(--color-background));
}
#about .about-inner{
    display: flex;
    align-items: center;
    gap: 32px;
}
#about .about-inner .image-wrap{
    width: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 22px;
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
}
#about .about-inner .image-wrap img{
    height: 420px;
    object-fit: contain;
}
#about .about-inner .content-wrap{
    flex: 1;
}
#about .about-inner .params{
    margin: 16px 0;
}
#about .about-inner .params .item{
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 8px;
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
}
#about .about-inner .params .item .icon{
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    background-color: var(--color-background);
    color: var(--color-secondary);
}
#about .about-inner .params .title-wrap{
    display: flex;
    flex-direction: column;
}
#about .about-inner .params .title-wrap .title{
    font-size: 16px;
    font-weight: 700;
}
#about .about-inner .params .title-wrap .sub-title{
    font-size: 14px;
    color: var(--color-text-secondary);
}

@media screen and (max-width: 960px) {
    #about .about-inner .image-wrap{
        display: none;
    }
}
@media screen and (max-width: 480px) {
    /* #about .about-inner .image-wrap{
        width: 90vw;
        height: 90vw;
        aspect-ratio: 1 / 1;
    } */
    #about .about-inner .image-wrap img{
        height: 100%;
    }
}
/*  ==========  END ABOUT SECTION  ==========  */





/*  ==========  PLACES SECTION  ==========  */
#places .places-inner .item{
    display: flex;
    flex-direction: column;
    gap: 24px;
}
#places .places-inner .item .image-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background-color: #090e1b;
    border: 1px solid var(--color-border);
    transition: all .3s ease;
    overflow: hidden;
}
#places .places-inner .item .image-wrap:hover{
    opacity: 0.85;
    /* box-shadow: var(--box-shadow); */
}
#places .places-inner .item .image-wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#places .places-inner .item .title-wrap{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 5px;
}
#places .places-inner .item .title-wrap .hint{
    width: 100%;
    font-style: italic;
    font-size: 18px;
    font-weight: 400;
    color: var(--color-text-secondary);
}
#places .places-inner .item .title-wrap .title{
    width: 100%;
    font-size: 18px;
    font-weight: 600;
}
#places .places-inner .item .title-wrap .learn-more{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 32px;
    box-sizing: border-box;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    background-color: var(--color-accent);
    margin-top: 24px;
    border-radius: 100px;
}
@media screen and (max-width: 960px){
    #places .places-inner{
        grid-template-columns: 1fr 1fr;
        gap: 40px
    }
}
@media screen and (max-width: 640px){
    #places .places-inner .item .title-wrap{
        align-items: center;
        text-align: center;
    }
    #places .places-inner .item .title-wrap .hint{
        text-align: center;
    }
    #places .places-inner .item .title-wrap .title{
        font-size: 16px;
        text-align: center;
    }
}
@media screen and (max-width: 480px){
    #places .places-inner{
        grid-template-columns: 1fr;
    }
}
/*  ==========  END PLACES SECTION  ==========  */





/*  ==========  PROBLEM SOLUTION SECTION  ==========  */
#problem-solution .problem-solution-inner{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
#problem-solution .heading-group .page-header .sub-title{
    font-size: 18px;
    font-weight: 400;
}
#problem-solution .block{
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 22px;
    box-sizing: border-box;
    border: 1px solid var(--color-border);
    border-radius: 22px;
    background-color: #1d1d1d;
}
#problem-solution .params-wrap{
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-left: 12px;
    box-sizing: border-box;
}
#problem-solution .params-wrap .item{
    padding-left: 24px;
    padding-bottom: 24px;
    box-sizing: border-box;
    border-left: 3px solid var(--sistem-red);
    position: relative;
}
#problem-solution .params-wrap .item .icon{
    width: 25px;
    height: 25px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: -2px;
    transform: translate(-50%, -50%);
    color: #fff;
    background-color: var(--sistem-red);
}
#problem-solution .params-wrap .item .icon svg{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
}
#problem-solution .params-wrap .item span{
    line-height: 1.4;
    font-size: 18px;
    font-weight: 600;
}

#problem-solution .block:first-child{
    background: linear-gradient(to top right, rgba(var(--color-primary-rgb), .15) 20%, transparent 70%);
}
#problem-solution .block:first-child .heading-group .title{
    color: var(--sistem-red);
}
#problem-solution .block:last-child{
    background: linear-gradient(to top right, rgba(101, 196, 102, .15) 20%, transparent 70%);
}
#problem-solution .block:last-child .heading-group .title{
    color: var(--sistem-green);
}
#problem-solution .block:last-child .params-wrap .item{
    border-color: var(--sistem-green);
}
#problem-solution .block:last-child .params-wrap .item .icon{
    background-color: var(--sistem-green);
}
@media screen and (max-width: 960px){
    #problem-solution .problem-solution-inner{
        display: flex;
        flex-direction: column;
    }
}
@media screen and (max-width: 480px){
    #problem-solution .params-wrap .item span{
        font-size: 16px;
    }
} 
/*  ==========  END PROBLEM SOLUTION SECTION  ==========  */





/*  ==========  SPECIFICATIONS SECTION  ==========  */
#specifications .specifications-inner{
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}
#specifications .table{
    width: 100%;
    border-left: 1px solid var(--color-border);
    border-top: 1px solid var(--color-border);
    box-shadow: var(--box-shadow);
}
#specifications .table td{
    padding: 14px 18px;
    box-sizing: border-box;
    text-transform: uppercase;
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background-color: #090e1b;
}
#specifications .table td.name{
    width: 35%;
    font-weight: 400;
}
#specifications .table td.value{
    width: 65%;
    font-weight: 700;
}
#specifications .addititonal{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
#specifications .addititonal .item{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    padding: 12px;
    box-sizing: border-box;
    border-radius: 12px;
    background-color: #090e1b;
    border: 1px solid var(--color-border);
}
#specifications .addititonal .item .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    object-fit: contain;
}
#specifications .addititonal .item .text{
    width: 100%;
    font-weight: 600;
}
#specifications .addititonal .title{
    width: 100%;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--color-text-secondary);
}
#specifications .addititonal .items-wrap{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
#specifications .addititonal .items-wrap .item{
    padding: 8px;
}
@media screen and (max-width: 960px){
    #specifications .specifications-inner{
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width: 480px){
    #specifications .table td{
        font-size: 14px;
        padding: 8px 12px;
    }
    #specifications .addititonal .item .icon{
        width: 50px;
        height: 50px;
    }
    #specifications .addititonal .title{
        text-align: center;
    }
    #specifications .addititonal .items-wrap{
        justify-content: center;
    }
}
/*  ==========  END SPECIFICATIONS SECTION  ==========  */





/*  ==========  AI CHAT SECTION  ==========  */
#ai-chat .ai-chat-inner{
    display: grid;
    grid-template-columns: .8fr 1fr;
    gap: 32px;
}
#ai-chat .image-wrap{
    width: 100%;
    height: 100%;
    border-radius: 22px;
    background: url('/assets/ai-hand.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    position: relative;
}
#ai-chat .image-wrap::before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 75%;
    border-radius: 22px;
    border: 1px solid var(--color-border);
    background: linear-gradient(to bottom, transparent, #090e1b);
    z-index: -1;
}
#ai-chat .button-wrap{
    display: flex;
    justify-content: center;
}
#ai-chat .learn-more{
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 32px;
    box-sizing: border-box;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    background-color: var(--color-accent);
    margin-top: 24px;
    border-radius: 100px;
}
@media screen and (max-width: 960px) {
    #ai-chat .ai-chat-inner{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    #ai-chat .image-wrap{
        width: 80%;
        height: 50vw;
    }
}
/*  ==========  END AI CHAT SECTION  ==========  */





/*  ==========  NEWS SECTION  ==========  */
#news{
    background-color: var(--color-dark);
    margin: 64px 0;
    padding-bottom: 128px;
}
#news .news-inner{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}
#news .news-inner .block{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
#news .news-inner .block .image-wrap{
    width: 100%;
    height: 260px;
}
#news .news-inner .block .image-wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
}
#news .news-inner .block .title-wrap{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
#news .news-inner .block .title{
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 140%;
}
#news .news-inner .block:hover .title{
    color: var(--color-accent);
}
#news .news-inner .block .stats-wrap{
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
    color: var(--color-text-secondary);
}
#news .news-inner .block .stats-wrap .item{
    display: flex;
    align-items: center;
    gap: 6px;
}
@media screen and (max-width: 960px){
    #news .news-inner{
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (max-width: 480px){
    #news .news-inner{
        grid-template-columns: 1fr;
        gap: 60px
    }
}
/*  ==========  END NEWS SECTION  ==========  */






/*  ==========  FAQ STYLES  ==========  */
#faq .faq-inner{
    display: flex;
    gap: 40px;
    user-select: none;
}
#faq .faq-body{
    display: flex;
    flex-direction: column;
    width: 100%;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
}
#faq .faq-body .item{
    display: flex;
    flex-direction: column;
    padding: 24px;
    box-sizing: border-box;
    border-bottom: 1px solid var(--color-border);
    cursor: pointer;
    transition: .4s all;
    background-color: #090e1b;
}
#faq .faq-body .item .top{
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 20px;
    font-weight: 600;
}
#faq .faq-body .item .top .icon{
    display: flex;
    align-items: center;
    transition: .4s all;
}
#faq .faq-body .item .content{
    letter-spacing: .2px;
    line-height: 1.8;
    color: var(--color-text-secondary);
    overflow: hidden;
    height: 0;
    transition: .4s all;
}
#faq .faq-body .item.opened .content{
    padding-top: 24px;
    height: auto;
}
#faq .faq-body .item.opened .top .icon{
    transform: rotate(180deg);
}
@media screen and (max-width: 960px){
    #faq .faq-inner{
        flex-direction: column;
        gap: 0;
    }
}
/*  ==========  END FAQ STYLES  ==========  */






/*  ==========  HAVE QUESTION STYLES  ==========  */
#have-question .have-question-inner{
    padding: 80px;
    box-sizing: border-box;
    background-color: #090e1b;
    border-radius: 22px;
}
#have-question .heading-group .title,
#have-question .heading-group .description{
    text-align: center;
}
#have-question .heading-group .button-wrap{
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
#have-question .heading-group .button-wrap .button{
    padding: 18px 64px;
    font-size: 16px;
    border-radius: 100px;
}
@media screen and (max-width: 480px){
    #have-question .have-question-inner{
        padding: 60px 40px;
    }
    #have-question .heading-group .button-wrap{
        margin-top: 20px;
    }
    #have-question .heading-group .button-wrap .button{
        padding: 18px 32px;
    }
}
/*  ==========  END HAVE QUESTION STYLES  ==========  */





/*  ==========  ITEMS SECTION  ==========  */

/*  ==========  END ITEMS SECTION  ==========  */





/*  ==========  ITEMS SECTION  ==========  */

/*  ==========  END ITEMS SECTION  ==========  */