/*!
Theme Name: TA Demo Landing
Author: Themesarray
Author URI: https://themesarray.com/
Version: 1000000.0.0
Tested up to: 5.4
Requires PHP: 5.6
Text Domain: ta-demo-landing

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Demo Landing is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
:root {
  --Demo-list-color: #5CA595;
  --Text-Black: #333;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color:  var(--Text-Black, #333);;
  margin: 0;
  line-height: 1.6;
}
img{
    height: auto;
    max-width: 100%;
}
img.custom-logo {
    width: 200px;
    height: auto;
}
.ta-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}
body.logged-in header#masthead {
    top: 32px;
}
header#masthead {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999999;
    padding: 5px 0;
}
.site-header.scrolled {
    background: #ffffff;
    box-shadow: 0 0 14px 0 #0000001c;
}
body.logged-in header#masthead.site-header.scrolled {
    top: 0;
}
.header-content-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
ul#primary-menu {
    display: flex;
    list-style: none;
    gap: 24px;
}
ul#primary-menu a {
    padding: 20px 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color:  var(--Text-Black, #333);;
}
ul#primary-menu a:hover {
    color: #5ca595;
}
a.ta-demos-btn-primary {
    display: flex;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    background: var(--Demo-list-color, #5CA595);
    width: max-content;
    text-decoration: none;
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-weight: 700;
    webkit-transition: all ease 0.4s;
    -ms-transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    transition: all ease 0.4s;
}
a.ta-demos-btn-secondary {
    display: flex;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    border: 1px solid var(--Text-Black, #333);
    color: var(--Text-Black, #333);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    width: max-content;
    text-decoration: none;
    webkit-transition: all ease 0.4s;
    -ms-transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    transition: all ease 0.4s;
}
a.ta-demos-btn-secondary:hover {
    background: #5ca595;
    color: #fff;
    border-color: #5ca595;
}
a.ta-demos-btn-secondary:hover svg path {
    stroke: #ffffff;
}
a.ta-demos-btn-primary:hover {
    background: #5ca595d1;
}
.ta-demos-banner-content {
    position: absolute;
    top: 190px;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    width: 934px;
    max-width: 100%;
    z-index: 9999;
}
.ta-demos-banner {
    position: relative;
    background: radial-gradient(circle at 30% 40%, rgba(173, 216, 230, 0.5), transparent 60%), radial-gradient(circle at 70% 60%, rgba(255, 182, 193, 0.4), transparent 60%), radial-gradient(circle at 50% 50%, rgba(255, 228, 196, 0.5), transparent 70%);
    background-color: #fdf6f8;
    backdrop-filter: blur(60px);
}
.ta-demos-banner-content h1 {
    margin: 0;
    font-family: Inter;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.4;
    position: relative;
}
.ta-demos-banner-content h1 img {
    position: absolute;
    top: 0;
    right: 0;
}
.ta-banner-bg-1 {
    position: absolute;
    left: 20%;
    top: 18%;
    animation: floatUpDown 4s ease-in-out infinite;
}
@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px); /* Adjust the value as needed */
  }
}
.ta-banner-bg-2 {
    position: absolute;
    left: 27%;
    top: 18%;
    animation: floatLeftRight 4s ease-in-out infinite;
}
@keyframes floatLeftRight {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-20px); /* Adjust for how far you want it to move left */
  }
}
.ta-banner-bg-3 {
    position: absolute;
    top: 18%;
    right: 27%;
    animation: floatLeftRight1 4s ease-in-out infinite;
}
@keyframes floatLeftRight1 {
  0%, 100% {
    transform: translateX(-20px);
  }
  50% {
    transform: translateX(0); /* Adjust for how far you want it to move left */
  }
}
.total-demo-banner span {
    display: block;
    color: var(--Text-Black, #333);
    font-family: Inter;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
}
.total-demo-banner {
    position: absolute;
    top: 36%;
    right: 27%;
    color: var(--Demo-list-color, #5CA595);
    font-family: Inter;
    font-size: 36px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}
.ta-banner-bg-1 img {
    width: 40px;
}
.ta-demos-banner-btn {
    display: flex;
    gap: 25px;
    margin-top: 30px;
    justify-content: center;
}
.ta-demos-banner-bg {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding-top: 265px;
    font-size: 0;
}
.ta-demos-banner-bg img {
    width: 100%;
    height: auto;
}
footer#colophon {
    position: relative;
    padding-top: 40px;
}
.footer-bg-1 {
    position: absolute;
    bottom: 0;
    right: 0;
}
.footer-bg-2 {
    position: absolute;
    top: 0;
    left: 0;
}
.footer-content {
    text-align: center;
}
.footer-content h2 {
    color: #333;
    font-family: Inter;
    font-size: 32px;
    margin: 0;
}
.footer-desc {
    color: #666;
}
.footer-content a.ta-demos-btn-primary {
    margin: 0 auto;
    margin-top: 30px;
}
.site-info {
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
    margin-top: 100px;
    align-items: center;
}
.footer-copy-right {
    color: var(--Text-Black, #333);
    font-size: 14px;
}
.social-icon {
    display: flex
;
    gap: 16px;
    align-items: center;
}
.social-icon a {
    display: block;
    background: #FFF;
    border-radius: 50px;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 45px;
}
.social-icon a:nth-child(2) {
    line-height: 42px;
}
.ta-cta-screenshot-prev {
    background: #041241;
}
.ta-cta-screenshot-prev {
    background: #041241;
    height: 760px;
    position: relative;
    overflow: hidden;
}
.ta-cta-screenshot-wrapper {
  position: relative;
}
.ta-cta-screenshot-prev-grid-item {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}
.ta-cta-screenshot-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.ta-cta-screenshot-prev-content .section-title {
    position: absolute;
    top: 50%;
    z-index: 99999;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 30px);
}
.ta-cta-screenshot-prev, .section-title span, 
.ta-cta-screenshot-prev .section-title h2, 
.ta-cta-screenshot-prev .section-desc{
    color: #fff;
}
.ta-cta-screenshot-prev .section-title h2 {
    max-width: 667px;
    margin: 0 auto;
}
.section-desc p {
    margin: 0;
}
.ta-cta-screenshot-prev .section-desc {
    margin: 0;
    ax-width: 487px;
    margin: 0 auto;
    width: 100%;
}
.ta-cta-screenshot-prev-content .section-title span:before, .ta-cta-screenshot-prev-content .section-title span:after {
    background-image: url('data:image/svg+xml;utf8,<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 0.5L7.34708 4.6459H11.7063L8.17963 7.2082L9.52671 11.3541L6 8.7918L2.47329 11.3541L3.82037 7.2082L0.293661 4.6459H4.65292L6 0.5Z" fill="white"/></svg>');
}
.ta-cta-screenshot-prev-content a.ta-demos-btn-primary {
    margin: 0 auto;
    margin-top: 20px;
}
.ta-cta-screenshot-prev:before {
    content: "";
    position: absolute;
    background: rgba(26, 74, 102, 0.75);
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 999;
    left: 0;
}
.ta-cta-screenshot-list {
  display: flex;
  flex-direction: column;
  animation: scroll-vertical 20s linear infinite;
}

.ta-cta-screenshot-item {
  width: 400px;
  flex-shrink: 0;
}

.ta-cta-screenshot-item img {
  width: 100%;
  display: block;
}

/* Infinite Smooth Scroll */
@keyframes scroll-vertical {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

.ta-cta-screenshot-list-opposit {
  display: flex;
  flex-direction: column;
  animation: scroll-vertical-reverse 20s linear infinite;
}
@keyframes scroll-vertical-reverse {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}
.ta-cta-screenshot-prev-grid-item img {
    border-radius: 10px;
    line-height: 0;
    display: block;
    font-size: 0;
}
.section-title {
    text-align: center;
}
.section-title span {
    color: var(--Demo-list-color, #5CA595);
    font-size: 16px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.section-title span:before, .section-title span:after {
    content: "";
    display: inline-block;
    width: 13px;
    height: 11px;
    background-image: url('data:image/svg+xml;utf8,<svg width="13" height="11" viewBox="0 0 13 11" xmlns="http://www.w3.org/2000/svg"><path d="M6.5 0L7.84708 4.1459H12.2063L8.67963 6.7082L10.0267 10.8541L6.5 8.2918L2.97329 10.8541L4.32037 6.7082L0.793661 4.1459H5.15292L6.5 0Z" fill="%236E6B6B"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    margin: 0 5px;
}
span.title-total-demo:before, span.title-total-demo:after {
    display: none;
}
.section-title h2 {
    color: var(--Text-Black, #333);
    font-family: Inter;
    font-size: 36px;
    margin: 0;
}
.section-desc {
    width: 653px;
    max-width: 100%;
    margin: 0 auto;
    margin-top: 5px;
    color: #727272;
}
.ta-main-features {
    padding: 40px 0;
}
.ta-main-feature-grids {
    margin-top: 60px;
}
.feature-grid-2-column {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
.feature-grid-1-2-column {
    border-radius: 8px;
    background: linear-gradient(90deg, #F5F5F5 0%, #F0FFFC 100%);
    box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.01);
    width: 807px;
    max-width: 100%;
}
.feature-grid-1-2-column-inner{
    padding: 40px;
}
.feature-grid-1-2-column-top {
    display: flex;
}
.feature-grid-1-2-column-left h3 {
    color: var(--Text-Black, #333);
    font-family: Inter;
    font-size: 24px;
    margin: 0;
}
.feature-grid-1-2-column-features ul li {
    margin-bottom: 16px;
}
.feature-grid-1-2-column-bottom {
    display: flex;
    justify-content: space-between;
}
.feature-grid-1-2-column-bottom h4 {
    margin: 0;
}
.feature-grid-2-2-column {
    border-radius: 8px;
    padding: 40px;
    width: 471px;
    max-width: 100%;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.16);
}
.feature-grid-2-2-column-top {
    display: flex;
    justify-content: space-between;
}
.feature-grid-2-2-column-left h3 {
    color: var(--BG-White, #FFF);
    font-family: Inter;
    font-size: 24px;
    max-width: 206px;
    margin: 0;
    line-height: normal;
    margin-bottom: 10px;
}
.feature-grid-2-2-column-bottom {
    display: flex
;
    justify-content: space-between;
    align-items: center;
}
.grade-performance {
    width: 70px;
    height: 70px;
    border: solid 1px #ffffff;
    border-radius: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: #FFF;
    transform: translateY(10px);
}
.feature-grid-2-2-column-features {
    color: var(--Text-White, #FFF);
    max-width: 247px;
}
.feature-grid-2-2-column-bottom {
    display: flex;
    justify-content: space-between;
}
.feature-grid-3-column-wrap {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(413px, 413px));
    margin-top: 40px;
    justify-content: center;
}
.feature-grid-3-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin: 0 auto;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.16);
}
.feature-grid-3-item.layout-1 h3 {
    color: #FFF;
    font-family: Inter;
    font-size: 24px;
    margin: 0;
    line-height: normal;
}
.feature-grid-3-item.layout-1 .feature-grid-3-item-desc {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 10px;
    width: 333px;
    max-width: 100%;
}
.feature-grid-2-2-column-right {
    text-align: center;
}
.feature-grid-3-item.layout-2 h3, .feature-grid-3-item.layout-3 h3 {
    color: var(--Text-Black, #333);
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}
.feature-grid-3-item-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 24px 40px;
}
.feature-grid-3-item.layout-2 .feature-grid-3-item-title-desc {
    order: 2;
}
.feature-grid-3-item.layout-2 .feature-grid-3-item-desc, .feature-grid-3-item.layout-3 .feature-grid-3-item-desc {
    color: var(--Text-Black, #333);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 10px;
}
.feature-grid-3-item.layout-2 {
    padding-top: 40px;
}
.ta-demo-lists {
    background: #F5F5F5;
    padding-bottom: 80px;
}
span.title-total-demo {
    text-align: center;
    font-family: Poppins;
    font-size: 112px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    background: linear-gradient(180deg, #5CA595 33%, #F5F5F5 70%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: translateY(60px);
    position: relative;
}
.ta-demo-grids {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}
.ta-demo-grid-item {
    border-radius: 10px;
    border: 1px solid #EAEEFF;
    background: #FFF;
    box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.01);
    display: flex;
    padding: 15px;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}
.ta-demo-grid-item span {
    color: var(--Text-Black, #333);
    text-align: center;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 0;
}
.ta-responsive-prev {
    padding: 80px 0;
}
.ta-responsive-prev-grids {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(307px, 1fr));
    gap: 30px;
    margin-top: 80px;
    place-items: center;
}
.ta-responsive-prev-grid-item {
    border-radius: 8px;
    border: 2px solid #DDD;
    padding: 12px;
}
.ta-layouts-prev-lists {
    padding: 80px 0;
}
.ta-layouts-prev-grids {
    display: flex;
    gap: 50px;
}
.ta-layouts-prev-grid {
    border-radius: 8px;
    background: #F5F5F5;
    width: 50%;
}
.ta-layouts-prev-grid-inner{
     padding: 40px;
}
.ta-layouts-prev-grid h2 {
    color: var(--Text-Black, #333);
    text-align: center;
    font-family: Inter;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}
.ta-layouts-prev-desc {
    color: #747474;
    text-align: center;
    margin-top: 12px;
    margin-bottom: 32px;
}
.ta-feature-lists {
    padding: 20px 0 80px 0;
}
.ta-feature-grids {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 60px;
}
.ta-feature-grid-item {
    border-radius: 8px;
    background: #F5F5F5;
    text-align: center;
    min-width: 195px;
    min-height: 130px;
    width: 195px;
}
.ta-feature-grid-item-inner{
    padding: 16px 24px;
}
.ta-feature-grid-item h2 {
    margin: 0;
    margin-top: 24px;
    font-weight: 600;
}

.charts-container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.chart-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.chart-wrapper p {
    color: #FFF;
    margin: 0;
}
.chart {
    width: 90px; /* Size of the chart container */
    height: 90px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.progress-circle {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg); /* Start progress from the top */
}

.progress-circle-bg {
    fill: #e6f7ea; /* Light green background fill */
    stroke: none;
}

.progress-circle-fg {
    fill: none;
    stroke: #28a745; /* Main green for progress */
    stroke-width: 5; /* Thickness of the progress line */
    stroke-linecap: round; /* Rounded ends for the progress line */
    stroke-dasharray: 0; /* Will be set by JS */
    stroke-dashoffset: 0; /* Will be set by JS */
    transition: stroke-dasharray 0.5s ease-out; /* Smooth animation */
}

.chart-value {
    position: absolute;
    font-size: 28px;
    font-weight: bold;
    color: #1c7430; /* Darker green for text, adjust as needed */
}

.chart-label {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
}
.header-btn-responsive, button.menu-toggle, button.menu-toggle-close{
    display: none;
}
@media only screen and (max-width: 1200px) {
    .total-demo-banner {
        top: 40%;
        right: 17%;
    }
    .ta-banner-bg-1 {
        left: 5%;
        top: 23%;
    }
    .ta-banner-bg-2 {
        left: 10%;
        top: 10%;
    }
    .ta-banner-bg-3 {
        top: 10%;
        right: 10%;
    }
}

@media only screen and (max-width: 1024px) {
    .feature-grid-2-column {
        flex-direction: column;
        align-items: center;
    }
    .feature-grid-2-column {
        flex-direction: column;
    }

    .feature-grid-3-item {
        padding: 15px;
    }
    .ta-demo-grids {
        grid-template-columns: repeat(2, 1fr);
    }
    .ta-demo-lists{
        padding-bottom: 40px;
    }
    .feature-grid-3-item.layout-1 .feature-grid-3-item-desc{
        width: 100%;
    }
    .ta-demos-banner-content h1 {
        font-size: 40px;
    }
    .ta-demos-banner-content {
        top: 100px;
    }
    .total-demo-banner {
        top: 30%;
        right: 15%;
    }
}

@media only screen and (max-width: 900px) {
    button.menu-toggle-close{
        display: block;
    }
    .header-btn-responsive{
        display: block;
        padding: 20px;
        padding-top: 40px;
        text-align: center;
    }
    button.menu-toggle-close {
        position: absolute;
        top: 10px;
        right: 10px;
        border: none;
        background: none;
    }
    button.menu-toggle span {
        width: 30px;
        height: 2px;
        display: block;
        background: #121212;
    }
    button.menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        border: none;
        background: none;
    }
    .header-btn-responsive a {
        margin: 0 auto;
    }
    .menu-menu-1-container {
        border-top: solid 1px #cbcbcb;
        margin-top: 20px;
    }
    .header-btn{
        display: none;
    }
    .main-navigation.toggled .menu-main-wrap {
        right: 0;
    }
    .menu-main-wrap {
        position: fixed;
        width: 300px;
        background: #ffffff;
        right: -300px;
        top: 0;
        height: 100%;
        webkit-transition: all ease 0.4s;
        -ms-transition: all ease 0.4s;
        -moz-transition: all ease 0.4s;
        transition: all ease 0.4s;
    }
    ul#primary-menu {
        flex-direction: column;
        padding: 20px;
        gap: 10px;
    }
    ul#primary-menu li a {
        padding: 0;
    }
    .ta-demos-banner:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #ffffffb0;
    }
}

@media only screen and (max-width: 768px) {
    .ta-layouts-prev-lists{
        padding: 40px 0;
    }
    .ta-feature-lists {
        padding: 20px 0 40px 0;
    }
    .ta-feature-grid-item h2 {
        margin-top: 10px;
        font-size: 15px;
        line-height: 1.2;
        font-weight: 500;
    }
    .ta-demo-grid-image svg {
        width: 30px;
    }
    .ta-feature-grid-item-inner {
        padding: 10px;
    }
    .ta-feature-grid-item {
        min-width: 150px;
        min-height: 100px;
        width: 150px;
    }
    .total-demo-banner {
        top: inherit;
        right: 44%;
        bottom: -35px;
    }
    .ta-demos-banner-content h1 {
        font-size: 32px;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .feature-grid-1-2-column-bottom h4{
        font-size: 12px;
    }
    .feature-grid-1-2-column-bottom {
        flex-wrap: wrap;
        gap: 20px;
    }
    .feature-grid-1-2-column-inner {
        padding: 15px;
    }
    .feature-grid-1-2-column-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .feature-grid-1-2-column-features {
        text-align: left;
    }
    .feature-grid-3-column-wrap{
        grid-template-columns: repeat(auto-fit, minmax(350px, 350px));
    }
    .feature-grid-3-item-inner{
        padding: 15px;
    }
    .feature-grid-3-item {
        margin: 0 auto;
    }

    .ta-layouts-prev-grid{
       
        width: 100%;
    }
    .ta-layouts-prev-grid-inner{
         padding: 15px;
    }
    .ta-cta-screenshot-prev{
        height: 480px;
    }
    span.title-total-demo {
        font-size: 50px;
        transform: translateY(17px);
    }
    .ta-layouts-prev-grids {
        flex-direction: column;
        text-align: center;
    }
    .ta-responsive-prev{
        padding: 40px 0;
    }
    .section-title h2{
        font-size: 20px;
    }
    .site-info {
        flex-direction: column;
        gap: 24px;
        margin-top: 32px;
    }
    .footer-content h2 {
        font-size: 24px;
    }
    a.ta-demos-btn-primary, a.ta-demos-btn-secondary {
        padding: 6px 15px;
        font-size: 12px;
    }
}

@media only screen and (max-width: 600px) {
    .ta-demos-banner-bg {
        padding-top: 120px;
    }
    .total-demo-banner {
        display: none;
    }
    .ta-demos-banner-content h1 img {
        display: none;
    }
    .ta-demos-banner-content h1 {
        font-size: 24px;
    }
    .feature-grid-2-2-column{
        width: auto;
        padding: 15px;
    }
    .feature-grid-2-2-column-features{
        width: 100%;
    }
    .feature-grid-3-item.layout-1 .feature-grid-3-item-desc{
        width: 100%;
    }
    .feature-grid-3-item {
        max-width: 100%;
    }
    .feature-grid-3-item.layout-1, .feature-grid-3-item.layout-2, .feature-grid-3-item {
        margin: 0 auto;
    }
    .ta-demo-grids {
        grid-template-columns: repeat(1, 1fr);
        margin-top: 30px;
    }
    .ta-demo-grid-item {
        max-width: 383px;
        margin: 0 auto;
    }
    .ta-banner-bg-3, .ta-banner-bg-2 {
        display: none;
    }
}
@media only screen and (max-width: 480px) {
    .ta-responsive-prev-grid-item {
        margin: 0 auto;
    }
    .ta-demos-banner {
        height: 351px;
    }
}