.w-view-1200 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    min-width: 320px;
}

.w-width-all {
    width: 100%;
    background-color: #F2F8FF;
    display: flex;
    padding-bottom: 30px;
}

a {
    text-decoration: none;
    color: black;
}

h1 {
    font-size: 36px;
    margin-bottom: 10px;
    line-height: 1.2;
}

h2 {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 20px;
    margin-top: 70px;
}

h3 {
    font-size: 26px;
    font-weight: 600;
    text-align: left;
    line-height: 1.5;
    margin-bottom: 10px;
}

h4 {
    font-size: 20px;
    font-weight: 500;
    text-align: left;
    line-height: 1.5;
    margin-bottom: 20px;
}

.common-img {
    margin: 0 auto;
    display: block;
}

@media (max-width: 767px) {
    .w-view-1200 {
        padding: 0 20px;
    }

    h1 {
        font-size: 26px;
        margin-bottom: 10px;
        text-align: left;
    }

    h2 {
        font-size: 22px;
        margin-top: 30px;
        margin-bottom: 20px;
        line-height: 1.2;
        text-align: left;
    }

    h3 {
        font-size: 16px;
        margin-bottom: 10px;
        line-height: 1.2;
    }

    h4 {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .common-img {
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .w-view-1200 {
        padding: 0 40px;
    }

    h1 {
        font-size: 30px;
        margin-bottom: 10px;
    }

    h2 {
        font-size: 28px;
        margin-top: 50px;
        margin-bottom: 30px;
    }

    h3 {
        font-size: 22px;
        margin-bottom: 10px;
        text-align: center;
    }

    h4 {
        font-size: 18px;
        text-align: center;
        margin-bottom: 20px;
    }

    .common-img {
        width: 100%;
    }
}

.header-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
    padding-top: 30px;
    font-size: 16px;
    color: #000;
    background: #fff;
}

.header-banner .dp-list {
    margin-bottom: 20px;
    text-align: left;
    list-style: none;
    padding: 0;
}

.header-banner .dp-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 8px;
    line-height: 1.5;
}

.header-banner .dp-list li::before {
    content: "•";
    position: absolute;
    transform: translateX(-200%);
    color: #000000;
    font-weight: 600;
}

.header-banner .small-title {
    font-size: 20px;
    font-weight: 600;
    color: #3999ff;
    margin-bottom: 20px;
}

.header-banner .product-flag{
    display: flex;
    height: 30px;
    border: 2px solid #0CA0F8;
    border-radius: 5px;
    color: #0E0724;
    font-size: 16px;
    font-weight: 600;
    justify-content: center;
    align-items: center;
    padding-right: 5px;
}

.header-banner .product-flag img{
   /* width: 32px; /* Adjust the size of the icon */
    height: auto;
}

.footer-title{
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .header-banner .dp-list {
        text-align: center;
    }

    .header-banner .small-title {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .header-banner .small-title {
        text-align: left;
    }
}


.header-banner .text-area {
    margin-right: 80px;
}

.header-banner .features {
    margin-bottom: 30px;
    line-height: 1.8;
}


.product-button .buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /*grid-template-areas:
    "download learn ";*/
    grid-template-rows: auto auto;
    grid-template-areas:
    "download learn"
    "subtitle .";
    gap: 5px 20px;
    align-items: center;
    margin-bottom: 10px;
}

.product-button .buttons .label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.product-button .buttons .label .sub-dec {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
}

.product-button .buttons .label .title {
    line-height: 1.2;
}

.product-button .buttons .label .bottom-btn-title {
    line-height: 1.2;
}

.product-button .buttons .buttons-black .label .title {
    font-size: 16px;
}

.product-button .buttons .buttons-black .label .sub-dec {
    font-size: 10px;
    font-weight: 500;
    line-height: 1.2;
}

.product-button .buttons .buttons-black .label .bottom-btn-title {
    font-size: 16px;
}

.product-button .buttons .buttons-black {
    background: #000 !important;
}

.product-button .menu_buttons {
    gap: 10px 10px;
    margin-bottom: 0px;
}

.product-button .menu_buttons .buttons-black .label .sub-dec {
    font-size: 8px;
}

.product-button .menu_buttons .buttons-black .label .bottom-btn-title {
    font-size: 14px;
}


.product-button .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
    height: 50px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}


.product-button .btn.download {
    grid-area: download;
    background: #06C668;
    color: #fff;
    min-width: 220px;
}

.product-button .btn.download:hover {
    background-color: #0ad482;
}

.product-button .btn.download img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.product-button .btn.learn {
    grid-area: learn;
    border: 2px solid #d0d0d0;
    background: #fff;
    color: #000;
    font-weight: 600;
    text-align: center;
}

.product-button .bottom-btn .learn {
    border: 2px solid #d0d0d0;
    background: #3999ff;
    color: #ffffff;
}

.product-button .btn.learn:hover {
    border: 2px solid #000000;
}

.product-button .bottom-btn .learn:hover {
    border: 2px solid #ffffff;
}

.product-button .btn.learn img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.product-button .bottom-btn {
    width: 480px;
    margin: auto;
}

.product-button .menu-down-btn {
    font-size: 14px;
    height: 38px;
    width: 170px;
    padding: 10px 5px;
    min-width: auto !important;
}

.product-button .menu-down-btn img {
    width: 18px !important;
    height: 18px !important;
    margin-right: 5px !important;
}

.product-button .menu-down-btn .title {
    font-size: 14px;
}

.header-banner .subtitle {
    grid-column: 1 / -1;
    font-size: 14px;
    grid-area: subtitle;
    text-align: center;
}


.header-banner .platform-icons {
    grid-area: icons;
    display: flex;
    gap: 10px;
    justify-content: left;
    align-items: center;
    margin-top: 5px;
}

.header-banner .platform-icons img {
    height: 25px;
    cursor: pointer;
    vertical-align: middle;
}

.header-banner .platform-icons .win.active {
    content: url("../images/common/win-green.png");
}

.header-banner .platform-icons .mac.active {
    content: url("../images/common/mac-green.png");
}

/**/

.header-banner .platform-icons .win:hover {
    content: url("../images/head/black_win_active.png");
}

.header-banner .platform-icons .mac:hover {
    content: url("../images/head/black_mac_active.png");
}

.header-banner .platform-icons .android:hover {
    content: url("../images/head/black_android_active.png");
}

.header-banner .platform-icons .ios:hover {
    content: url("../images/head/black_ios_active.png");
}

.header-banner .hero {
    flex: 1 1 400px;
    text-align: center;
}

.header-banner .hero img {
    max-width: 100%;
    height: auto;
}

.header-banner .app-product {
    display: flex;
    align-items: center;
    margin: 0 0 10px;
}

.header-banner .app-text {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.header-banner .app-product-icon {
    width: 32px; /* Adjust the size of the icon */
    height: auto;
    margin-right: 10px;
}

.header-banner .app-product-name {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    margin-right: 5px;
}

.header-banner .ai-tag {
    /*margin-left: 10px;*/
    font-size: 12px;
    color: #fff;
    background: linear-gradient(90deg, #E273FF 0%, #7A6FF0 100%);
    padding: 2px 8px;
    border-radius: 15px;
    line-height: 1.5;
    /*margin-bottom: 10px;*/
    vertical-align: middle;
}

.footer-banner {
    background-color: #3999ff;
    text-align: center;
    padding: 80px 20px;
    color: #fff;
}

.footer-banner .w-view-1200 {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-banner .logo {
    margin-bottom: 50px;
}

.footer-banner .logo img {
    width: 100px;
    margin: auto;
}

.footer-banner .title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.footer-banner .text {
    font-size: 16px;
    color: #e9f3ff;
    margin-bottom: 40px;
}

@media (max-width: 767px) {

    .header-banner {
        display: block;
        padding-top: 10px;
        text-align: center;
        font-size: 14px;
    }
    .header-banner .app-product-name {
        font-size: 18px;
    }
    .footer-title{
        font-size: 26px;
        font-weight: 600;
        text-align: left;
    }
    .header-banner .features {
        text-align: left;
    }

    .header-banner .text-area {
        margin-right: 0px;
    }

    .header-banner .hero {
        margin-top: 20px;
    }

    .product-button .buttons {
        display: block;
        text-align: left;
        margin-bottom: 10px;
    }

    .product-button .menu-down-btn {
        font-size: 12px;
        font-weight: 400 !important;
        height: 35px;
        width: 145px;
        padding: 10px 5px;

    }

    .product-button .btn {
        width: 100%;
        margin-bottom: 20px;
    }


    .product-button .menu_buttons {
        gap: 10px 10px;
        margin-bottom: 0px;
        display: flex;
        flex: 1 1 auto;
        text-align: center;

    }

    .product-button .btn.learn {
        margin-bottom: 10px;
    }

    .product-button .learn .label .title {
        color: black;
    }

    .menu-down-btn img {
        width: 16px;
    }

    .product-button .menu-down-btn .title {
        font-size: 12px;
    }

    .header-banner .app-product {
        flex-direction: row;
        align-items: flex-start;
    }

    .header-banner .ai-tag {
        margin-left: 0px;
        line-height: 1.3;
        display: inline-block;
    }


    .header-banner .app-text {
        /*flex-direction: column;*/
        /*align-items: flex-start;*/
    }

    .header-banner .app-product-icon {
        width: 45px; /* Adjust the size of the icon */
    }

    .header-banner .platform-icons {
        margin-top: 15px;
    }

    .footer-banner {
        padding-bottom: 30px;
    }

    .footer-banner .text {
        text-align: left;
    }

    .product-button .bottom-btn {
        width: 100%;
    }


}

@media (min-width: 768px) and (max-width: 1024px) {
    .header-banner .app-product-name {
        font-size: 20px;
    }

    .header-banner {
        display: block;
        text-align: center;
    }



    .header-banner .text-area {
        margin-right: 0px;
        position: relative;
        z-index: 2;
    }

    .product-button .buttons {
        justify-content: center;
        width: max-content;
        margin: 0 auto 20px auto;
    }

    .header-banner .hero {
        margin-top: 30px;
        text-align: -webkit-center;
        position: relative;
        z-index: 1;
    }

    .header-banner .platform-icons {
        justify-content: center;

    }

    .header-banner .app-product {
        justify-content: center;
    }

    .product-button .menu_buttons {
        gap: 10px 10px;
        margin-bottom: 0px;
        display: flex;
    }

    .product-button .learn .label .title {
        color: black;
    }
}