:root{
    --white: #FFF;
    --black: #000;
    --default: #202020;
    --blue: #28A0DD;
    --royal-blue: #5762DD;
    --alice-blue: #F1F6F8;
    --red: #F70000;
    --red2: #EF4444;
    --gray1: #868F93;
    --gray2: #383838;
    --transition: .3s all ease;
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
a{
    color: inherit;
    text-decoration: none;
}
ul, ol{
    list-style: none;
}
input, select, textarea{
    font-family: inherit;
}
html{
    scroll-behavior: smooth;
}
body{
    font-family: "DM Sans";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
    color: var(--default);
    background-color: var(--white);
}
body.hidden{
    overflow: hidden;
}
.wrapper{
    overflow: clip;
}
.container {
    max-width: 100%;
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
    margin: 0 auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}
@media (min-width: 1600px) {
    .container {
        max-width: 1500px;
    }
}
@media (min-width: 1800px) {
    .container {
        max-width: 1728px;
    }
}
.header-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
}
.brand-logo{
    display: flex;
}
.brand-logo img{
    max-width: 100%;
}
.header-links{
    display: flex;
    align-items: center;
    gap: 76px;
}
.header-links a{
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--default);
}
.header-right{
    display: flex;
    align-items: center;
    gap: 24px;
}
.buy-btn{
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.32px;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--red2);
    border-radius: 4px;
    padding: 9.5px 45px;
}
.language{
    display: flex;
    align-items: center;
    gap: 6px;

    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--default);
}
.hero{
    padding: 0 0 100px 0;
}
.hero-row{
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero-left{
    width: calc(53.5% - 4px);
    z-index: 2;
    position: relative;
}
.hero-right{
    width: calc(46.5% - 4px);
    position: relative;
    z-index: 1;
    display: flex;
}
.hero-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    user-select: none;
    -moz-user-select: none;
}
.hero-bg{
    position: absolute;
    left: calc(-100% - 8px);
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
}
.hero-intro{
    max-width: 702px;
}
.hero-title{
    font-size: 55px;
    font-weight: 600;
    line-height: 120%;
    color: var(--default);
    margin: 0 0 20px 0;
}
.secdesc{
    font-size: 24px;
    font-weight: 300;
    line-height: 24px;
    color: var(--default);
}
.hero-actions{
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 44px 0 0 0;
}
.actions-bottom svg,
.actions-bottom a:last-child{
    display: none;
}
.main-btn{
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.32px;
    color: var(--default);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    border-radius: 8px;
    background-color: transparent;
    border: 1px solid var(--red2);
    padding: 14px 12px;
    transition: var(--transition);
    cursor: pointer;
}
.hero .main-btn{
    width: 240px;
}
.main-btn.active{
    color: var(--white);
    background-color: var(--red2);
}
.join-link{
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.32px;
    color: var(--default);
    text-decoration: underline;
}

/* products */
.products{
    padding: 30px 0 100px 0;
}
.sectitle{
    font-size: 55px;
    font-weight: 600;
    line-height: 120%;
    color: var(--default);
}
.products .sectitle{
    text-align: center;
    margin: 0 0 50px 0;
}
.product-grid{
    display: grid;
    grid-template-columns: repeat(3,3fr);
    gap: 24px;
}
.product{
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.product-top{
    position: relative;
    z-index: 1;
    display: flex;
}
.tags{
    position: absolute;
    top: 40px;
    left: 45px;
    z-index: 2;
}
.tag{
    display: inline-flex;
    padding: 10px 30px;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    border-radius: 36px;
    background: rgba(195, 211, 162, 0.22);
    backdrop-filter: blur(10.3px);
}
.product:nth-child(1) .tag{
    color: var(--default);
}
.product:nth-child(2) .tag,
.product:nth-child(3) .tag{
    color: var(--white);
}
.product-bg{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.product-img{
    max-width: 83%;
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
}
.product-logo{
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 2;
}
.product-body{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    padding: 45px;
    background-color: var(--alice-blue);
    height: -webkit-fill-available;
}
.product-texts{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}
.product-title{
    font-family: Roboto;
    font-size: 24px;
    font-weight: 500;
    line-height: 24px;
    color: var(--default);
}
.product-desc{
    font-size: 16px;
    font-weight: 300;
    line-height: normal;
    color: var(--default);
}
.product-actions{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.download-platforms{
    display: flex;
    align-items: center;
    gap: 12px;
}
.download-link{
    display: flex;
}
.learn-more{
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.32px;
    color: var(--default);
    text-decoration: underline;
}
.community{
    padding: 40px 0 130px 0;
}
.community .sectitle{
    text-align: center;
    margin: 0 0 20px 0;
}
.community .secdesc{
    text-align: center;
}
.community-grid{
    display: grid;
    grid-template-columns: repeat(5, 5fr);
    gap: 31px;
    margin: 50px 0 0 0;
}
.community-item{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;

    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.4px;
    color: var(--white);
    border-radius: 20px;
    background-color: var(--default);
    padding: 27.5px 10px;
}
.community-item.tg{
    background-color: var(--blue);
}
.community-item.yt{
    background-color: var(--red);
}
.community-item.discord{
    background-color: var(--royal-blue);
}
.community-item.reddit{
    background-color: #F74304;
}

/* advantage */
.advantage{
    padding: 104px 0;
    background-color: var(--alice-blue);
}
.advantage-row{
    display: flex;
    align-items: center;
    gap: 100px;
}
.advantage-left{
    max-width: 671px;
}
.advantage .sectitle{
    margin: 0 0 20px 0;
}
.advantage-desc{
    font-size: 24px;
    font-weight: 300;
    line-height: 33px;
    color: var(--default);
    max-width: 480px;
}
.advantage-datas{
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 16px;
    font-weight: 300;
    color: var(--gray1);
    margin: 37px 0;
}
.advantage-datas span,
.advantage-datas p{
    color: var(--default);
}
.advantage-datas p{
    font-weight: 500;
}
.advantage-actions{
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 20px 0;
}
.advantage-actions .main-btn{
    width: 210px;
}
.remember{
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    border-radius: 12px;
    background: #E6EEF1;
    padding: 17px 10px;
}
.advantage-right{
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}
.advantage-right .secdesc{
    color: #868F93;
}
.advantage-cards{
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.advantage-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    position: relative;
    border-radius: 20px;
    background-color: var(--white);
    padding: 45px 63px 45px 40px;
}
.advantage-item:nth-child(2){
    padding: 45px 63px 45px 55px;
}
.advantage-item .arr-right{
    position: absolute;
    left: 36%;
    top: 50%;
    transform: translate(0, -50%);
}
.advantage-title{
    display: flex;
    align-items: center;
    gap: 45px;
    font-size: 32px;
    font-weight: 700;
    line-height: 120%;
    color: var(--default);
}
.advantage-item p{
    width: 49%;
}
.advantage-item:nth-child(2) p{
    width: 50%;
}


/* news-section */
.breadcrumbs + .news-section{
    padding-top: 35px;
}
.news-section{
    padding: 130px 0;
}
.news-section:has(+ .newsletter){
    padding-bottom: 60px;
}
.news-section .sectitle{
    text-align: center;
    margin: 0 0 50px 0;
}
.news-grid{
    display: grid;
    grid-template-columns: repeat(3, 3fr);
    gap: 24px;
}
.news-swiper{
    margin: 0 0 50px 0;
}
.news-swiper .swiper-slide{
    height: auto;
}
.news{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 25px;
}
.news-bottom{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 25px;
}
.news-texts{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}
.news-title{
    font-family: Roboto;
    font-size: 24px;
    font-weight: 500;
    line-height: 24px;
    color: var(--default);
}
.news-desc{
    font-size: 16px;
    font-weight: 300;
    line-height: normal;
    color: var(--default);
}
.news-img{
    width: 100%;
    display: flex;
    border-radius: 20px;
    cursor: pointer;
}
.news-img img{
    width: 100%;
    height: auto;
    object-fit: scale-down;
    object-position: center;
    border-radius: 20px;
    aspect-ratio: 136 / 71;
}
.news-actions{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.d-flex{
    display: flex;
    justify-content: center;
}
.news-section .main-btn{
    width: 240px;
}

/* newsletter */
.newsletter{
    padding: 0 0 50px 0;
}
.newsletter-form{
    background-color: var(--default);
    position: relative;
    padding: 96px 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 44px;
    color: var(--white);
    z-index: 1;
}
.newsletter-form .sectitle{
    margin: 0 0 24px 0;
}
.newsletter-form .sectitle,
.newsletter-form .secdesc{
    color: var(--white);
}
.email-input{
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.32px;
    color: var(--white);
    width: 694px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: #383838;
    padding: 14.5px 24px;
}
.email-input::placeholder{
    color: var(--white);
    opacity: .21;
}
.newsletter-form button{
    width: 282px;
}
.star1{
    width: 10%;
    position: absolute;
    top: 20%;
    left: 5.5%;
    z-index: -1;
}
.star2{
    width: 10%;
    position: absolute;
    bottom: 18%;
    right: 6%;
    z-index: -1;
    transform: rotate(180deg);
}

/* footer */
.footer-top{
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 0 30px 0;
    border-bottom: 1px solid rgba(217, 217, 217, 0.50);
}
.footer-links{
    display: flex;
    align-items: center;
    gap: 76px;
    margin: 0 auto;
    transform: translate(-19%, 0%);
}
.footer-links a{
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--default);
}
.footer-links li:nth-child(even){
    display: none;
}
.footer-bottom{
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-bottom p{
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--default);
}
.menu{
    display: none;
}
.overlay{
    position: fixed;
    z-index: 3;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.overlay.active{
    opacity: 1;
    visibility: visible;
}
.hamburger{
    display: none;
    cursor: pointer;
    padding: 5px;
}
.breadcrumbs ul{
    display: flex;
    align-items: center;
    gap: 5px;
}
.breadcrumbs li{
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
    color: var(--default);
}
.breadcrumbs li a{
    color: var(--gray1);
}
.swiper-pagination{
    display: flex;
    justify-content: center;
    gap: 15px;
    width: 100%;
    bottom: 0 !important;
}
.swiper-pagination-bullet{
    margin: 0 !important;
    background-color: #B8CAD1 !important;
    transition: var(--transition);
    opacity: 1 !important;
}
.swiper-pagination-bullet-active{
    background-color: var(--red2) !important;
}




.news-single{
    padding: 27px 0 0 0;
}
.single-row{
    display: flex;
    align-items: flex-start;
    gap: 70px;
}
.single-img{
    border-radius: 12px;
    width: calc(48.5% - 35px);
    height: auto;
    position: sticky;
    top: 20px;
}
.single-right{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    width: calc(51.5% - 35px);
}
.single-top{
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.date{
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    color: var(--gray1);
}
.single-right .download-platforms img{
    width: 196px;
}
.news-body{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}
.news-body p{
    font-size: 16px;
    line-height: 145%;
    color: var(--default);
}
.news-body ul,
.news-body ol{
    margin: 0 0 0 18px;
    padding: 0 0 0 18px;
}
.news-body ul{
    list-style: disc;
}
.news-body ol{
    list-style: decimal;
}
.news-body ul li:not(:last-child),
.news-body ol li:not(:last-child){
    margin: 0 0 10px 0;
}
.news-body a{
    color: var(--blue);
    text-decoration: underline;
}
@media (max-width: 1800px){
    .product-img {
        max-width: 80%;
    }
    .advantage-item{
        padding: 45px 24px 45px 24px;
    }
    .advantage-item:nth-child(2) {
        padding: 45px 32px 45px 32px;
    }
    .product-body{
        padding: 30px 25px;
    }
}
@media (max-width: 1600px){
    .hero {
        padding: 0 0 70px 0;
    }
    .hero-title {
        font-size: 50px;
    }
    .products {
        padding: 30px 0 70px 0;
    }    
    .download-link img{
        width: 100px;
    }
    .sectitle {
        font-size: 50px;
    }
    .community {
        padding: 40px 0 100px 0;
    }
    .community-item{
        padding: 19.5px 10px;
    }
    .advantage {
        padding: 70px 0;
    }
    .advantage-left {
        max-width: 480px;
    }
    .advantage-actions{
        flex-wrap: wrap;
    }
    .advantage-actions .main-btn {
        width: calc(50% - 6px);
    }
    .advantage-actions .main-btn.active{
        width: 100%;
    }
    .advantage-row{
        gap: 80px;
    }
    .news-section {
        padding: 100px 0;
    }
    .advantage-desc {
        font-size: 20px;
        line-height: normal;
    }
    .advantage-datas{
        margin: 20px 0 30px 0;
    }
}
@media (max-width: 1400px){
    .hero-title {
        font-size: 45px;
    }
    .tags{
        top: 35px;
        left: 35px;
    }
    .download-link img {
        width: 90px;
    }
    .community {
        padding: 20px 0 70px 0;
    }
    .community-item {
        padding: 14.5px 10px;
        border-radius: 16px;
    }
    .sectitle {
        font-size: 45px;
    }
    .advantage-datas{
        font-size: 14px;
    }
    .advantage-left {
        max-width: 425px;
    }
    .advantage-item {
        padding: 30px 24px 30px 24px;
    }
    .advantage-title{
        gap: 25px;
        font-size: 24px;
    }
    .news-section {
        padding: 70px 0;
    }
    .newsletter-form{
        gap: 32px;
        padding: 70px 20px;
    }
    .advantage-desc {
        font-size: 18px;
    }
    .footer-links{
        gap: 32px;
    }

    .single-row{
        gap: 30px;
    }
    .single-img{
        width: calc(48.5% - 15px);
    }
    .single-right{
        width: calc(51.5% - 15px);
    }
}
@media (max-width: 1200px){
    .header-links{
        gap: 32px;
    }
    .hero-title {
        font-size: 35px;
    }
    .sectitle {
        font-size: 35px;
    }
    .products {
        padding: 20px 0 70px 0;
    }
    .products .sectitle {
        margin: 0 0 30px 0;
    }
    .product-grid {
        grid-template-columns: repeat(2, 3fr);
    }
    .product-body{
        gap: 20px;
    }
    .community-grid {
        grid-template-columns: repeat(3, 5fr);
        gap: 24px;
    }
    .community-item {
        padding: 9.5px 10px;
    }
    .advantage-row{
        flex-direction: column;
        gap: 50px;
    }
    .advantage-left {
        max-width: 100%;
    }
    .advantage-actions{
        flex-wrap: nowrap;
    }
    .advantage-actions .main-btn.active,
    .advantage-actions .main-btn{
        width: calc(33.3% - 4px);
    }
    .advantage-right,
    .advantage-cards{
        width: 100%;
    }
    .advantage {
        padding: 60px 0;
    }
    .advantage-right .secdesc{
        width: 100%;
        text-align: center;
        font-size: 16px;
        line-height: normal;
    }
    .news-swiper{
        padding: 0 0 26px 0;
    }
    .news-grid{
        grid-template-columns: repeat(2, 2fr);
    }
}

@media (max-width: 992px){
    .menu{
        display: flex;
        flex-direction: column;
        gap: 160px;
        width: 346px;
        height: 100svh;
        position: fixed;
        top: 0;
        right: -100%;
        background-color: var(--white);
        padding: 27px 54px 36px 54px;
        opacity: 0;
        visibility: hidden;
        z-index: 4;
        transition: var(--transition);
    }
    .menu.active{
        opacity: 1;
        visibility: visible;
        right: 0%;
    }
    .menu-head{
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }
    .menu-head h3{
        font-size: 24px;
        font-weight: 600;
        line-height: 24px;
        color: var(--default);
    }
    .menu-close{
        display: flex;
        padding: 5px;
        cursor: pointer;
    }
    .menu-body{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        gap: 20px;
        height: -webkit-fill-available;
        overflow-y: auto;
    }
    .menu-links{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 50px;
    }
    .menu-links a{
        font-size: 20px;
        font-weight: 500;
        line-height: 24px;
        color: var(--default);
    }
    .menu-bottom{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 35px;
        width: 100%;
    }
    .menu-bottom .buy-btn{
        width: 100%;
    }

    .header-links,
    .header-right{
        display: none;
    }
    .hamburger{
        display: flex;
    }


    .hero {
        padding: 0 0 50px 0;
    }
    .hero-row{
        flex-direction: column-reverse;
        gap: 32px;
    }
    .hero-bg{
        display: none;
    }
    .hero-left,
    .hero-right{
        width: 100%;
    }
    .secdesc {
        font-size: 20px;
    }


    .products {
        padding: 20px 0 50px 0;
    }
    .product-grid {
        grid-template-columns: repeat(1, 3fr);
    }
    .tags {
        top: 25px;
        left: 30px;
    }
    .product-body {
        padding: 30px;
        height: auto;
    }
    .download-link img {
        width: 94px;
    }

    .community-grid {
        gap: 12px 24px;
        margin: 30px 0 0 0;
    }
    .community-item{
        font-size: 16px;
    }
    .community {
        padding: 20px 0 60px 0;
    }
    .advantage {
        padding: 50px 0;
    }
    .advantage-desc {
        font-size: 16px;
    }
    .newsletter-form {
        gap: 32px;
        padding: 60px 20px;
    }
    .email-input{
        width: 100%;
    }
    .footer-top{
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
    }
    .footer-links{
        margin: 0;
        transform: none;
    }
    .footer-bottom p{
        display: none;
    }
    .footer-bottom p:first-child{
        display: block;
    }
    .news-title{
        font-size: 20px;
    }


    .single-row{
        flex-direction: column;
        gap: 20px;
    }
    .single-img{
        width: 100%;
    }
    .single-right{
        width: 100%;
        gap: 10px;
    }
    .single-right .download-platforms{
        margin: 10px 0 0 0;
    }
    .single-img{
        position: unset;
    }
}
@media (max-width: 768px){
    .hero {
        padding: 0 0 40px 0;
    }
    .hero-actions{
        flex-wrap: wrap;
        gap: 24px;
    }
    .actions-bottom {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }
    .actions-bottom svg,
    .actions-bottom a:last-child{
        display: flex;
    }
    .hero .main-btn {
        width: 100%;
    }
    .products {
        padding: 20px 0 40px 0;
    }
    .product-title {
        font-size: 20px;
    }
    .community-grid {
        grid-template-columns: repeat(2, 5fr);
        margin: 20px 0 0 0;
    }
    .community .sectitle {
        margin: 0 0 12px 0;
    }
    .advantage {
        padding: 35px 0 40px;
    }
    .advantage .sectitle img{
        width: 26px;
        height: 26px;
    }
    .sectitle {
        font-size: 30px;
    }
    .advantage .sectitle {
        margin: 0 0 17px 0;
    }
    .advantage-desc {
        font-size: 14px;
    }
    .advantage-datas{
        margin: 16px 0 30px 0;
    }
    .advantage-actions {
        flex-wrap: wrap;
        gap: 17px 24px;
    }
    .advantage-actions .main-btn.active {
        width: 100%;
    }
    .advantage-actions .main-btn {
        width: calc(50% - 12px);
    }
    .remember {
        font-size: 14px;
    }
    .advantage-right{
        gap: 20px;
    }
    .advantage-cards{
        gap: 15px;
    }
    .advantage-item,
    .advantage-item:nth-child(2){
        gap: 11px;
        flex-direction: column;
        align-items: center;
        padding: 15px 30px 20px;
    }
    .advantage-item p{
        font-size: 14px;
    }
    .advantage-item p,
    .advantage-item:nth-child(2) p{
        width: 100%;
        text-align: center;
    }
    .advantage-item .arr-right{
        display: none;
    }
    .advantage-title{
        gap: 12px;
        font-size: 18px;
    }
    .advantage-item:nth-child(1) .advantage-title img{
        width: 30px;
        height: 30px;
    }
    .advantage-item:nth-child(2) .advantage-title img {
        width: 23px;
        height: 28px;
    }
    .advantage-item:nth-child(3) .advantage-title img {
        width: 30px;
        height: 30px;
    }
    .news-section {
        padding: 65px 0 45px 0;
    }
    .news-swiper {
        margin: 0 0 24px 0;
    }
    .breadcrumbs + .news-section {
        padding-top: 20px;
    }
    .breadcrumbs ul{
        justify-content: center;
    }
    .news-section .main-btn{
        width: 100%;
    }
    .news{
        gap: 12px;
    }
    .news-bottom{
        gap: 12px;
    }
    .news-section .sectitle{
        margin: 0 0 30px 0;
    }
    .news-grid{
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }
    .news-title{
        font-size: 16px;
    }
    .news-texts{
        gap: 5px;
    }
    .newsletter-form button{
        width: 100%;
        margin: 8px 0 0 0;
    }
    .star1,
    .star2{
        display: none;
    }
    .newsletter-form{
        padding: 52px 40px;
        gap: 18px;
        border-radius: 12px;
    }
    .newsletter-form .sectitle {
        margin: 0 0 12px 0;
    }
    .newsletter {
        padding: 0 0 40px 0;
    }
    .footer-top{
        padding: 0 0 18px 0;
    }
    .footer-links{
        flex-wrap: wrap;
        gap: 18px;
        width: 100%;
    }
    .footer-links li{
        width: calc(50% - 9px);
    }
    .footer-links li:nth-child(even){
        display: block;
    }
    .footer-bottom {
        padding: 14px 0 17px 0;
    }
    .footer-bottom p{
        font-size: 12px;
    }


    .news-section:has(+ .newsletter){
        padding-bottom: 40px;
    }
    .single-right .download-platforms img{
        width: 178px;
    }
    .single-right{
        gap: 5px;
    }
    .single-right .download-platforms {
        margin: 25px 0 0 0;
    }
    .singledesc {
        font-size: 14px;
    }
}
@media (max-width: 576px){
    .header-row{
        padding: 27px 0 22px 0;
    }
    .brand-logo{
        width: 121px;
    }
    .hero-title {
        font-size: 28px;
        margin: 0 0 12px 0;
    }
    .hero-actions{
        margin: 33px 0 0 0;
    }
    .sectitle {
        font-size: 28px;
    }
    .products .sectitle {
        margin: 0 0 24px 0;
    }
    .product{
        border-radius: 14px;
    }
    .tag{
        font-size: 10px;
        padding: 6.691px 20.074px;
    }
    .product-logo{
        width: 64px;
        height: 64px;
        right: 16px;
        bottom: 16px;
    }
    .product-texts{
        gap: 8px;
    }
    .product-title {
        font-size: 16px;
        line-height: 16px;
    }
    .product-desc {
        font-size: 12px;
    }
    .product-body {
        gap: 18px;
    }
    .learn-more{
        font-size: 12px;
        line-height: 16px;
    }
    .download-platforms{
        gap: 8px;
    }
    .community-item{
        gap: 12px;
        border-radius: 12px;
        padding: 14px 10px;
    }
    .community-item img{
        max-width: 16px;
        height: auto;
    }
    .advantage-desc {
        font-size: 12px;
    }
    .advantage-datas {
        font-size: 12px;
    }
    .advantage-actions .main-btn img{
        display: none;
    }
    .remember {
        font-size: 12px;
    }
    .advantage-right .secdesc{
        font-size: 12px;
    }
    .advantage-item p {
        font-size: 12px;
    }
    .news-section .sectitle{
        margin: 0 0 20px 0;
    }
    .singledesc {
        font-size: 12px;
    }
}