section#main.main-ind{
	padding: 0;
}
,config-holder 
.landing-wrapper h1, .landing-wrapper h2 {
    text-transform: none;
}
.landing-wrapper h1{
    font-size: 50px;
    margin-bottom: 10px;
    font-family:'Saira';
    font-weight:700;
    text-transform:uppercase;
  	line-height: 1.16667 !important;
}
.landing-wrapper h2 {
    font-size: 30px;
    font-family:'Saira';
    text-transform:uppercase;
}
.landing-wrapper i{
    vertical-align: middle;
}
.landing-wrapper .btn-green {
    font-size:18px;
    font-family:'Saira';
    font-weight:700;
    color:#2b2b2b;
    background-color: #00ffde;
    border-color: #00ffde;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 20px;
    min-width: 150px;
    margin-top: 15px;
    min-width: 200px;
}
.landing-wrapper .btn-green:hover {
    background-color:#00c7ad;
    border-color:#00c7ad;
}
*{
    scroll-behavior: smooth
}
.sec-pad-lg{
    padding: 50px 35px;
}
.landing-container{
    max-width: 1170px;
    margin: 0 auto;
}
.txt-center{
    text-align: center;
}
.sec-title{
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 30px;
}
.pos-rel{
    position: relative;
    z-index: 1;
}
/**hero**/
.sec1{
    background-color: #2b2b2b;
    color: #fff;
}
.spark-hero-title{
    padding: 75px 0;
}
.spark-hero-title h2 {
    font-size:20px;
}
.spark-hero-title img{
    margin-bottom: 15px;
}
.spark-hero-title span {
    font-weight:300 !important;
}
.spark-hero-title sup { 
    font-size: 15px !important;
    top: -8px;
}
.spark-hero-desc {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    padding: 50px 0;
    text-align: center;
}
.spark-hero-desc p {
    max-width: 800px;
    margin: 0;
}
.btn-green i {
	margin-left:15px;
	margin-top:-3px;
	font-size:18px;
}
.sec2 {
  background-color:#fff;
}
.sec2 .landing-container {
    padding:50px 0;
    max-width:900px;
}
.sec2 .sec-title {
    margin-top:50px;
}
.sec3 {
    background:#2b2b2b;
    color:#fff;
}
.sec3 .landing-container {
    padding:0 0 50px 0;
    max-width:900px;
}
.sec3 .sec-title {
    margin-top:50px;
}
.sec-logos img {
    display:inline-block;
    margin-top:50px;
    padding:0 30px;
}
.sec4 {
    background-color:#fff;
}
.sec4 .landing-container {
    padding: 120px 0;
}
.sec4 .sec-title {
    margin-bottom:10px;
}
.sec4 .feat-list {
    list-style: none;
    margin: 40px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}
.sec4 .feat-list h1 {
    font-size:30px;
}
.sec4 .feat-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.sec4 .feat-list .sec4-icon {
    height: 200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}
.sec5 {
	background-color:#2b2b2b;
}
.sec5 p {
	color:#ffffff;
}
.sec5 .sec-title {
    color:#fff;
    text-align:center;
}
.sec5 p {
    max-width: 900px;
    margin: 0 auto;
    padding-bottom:50px;
    color: #fff;
    text-align: center;
}
.benchmark-chart {
    --label-width: 295px;
    --primary-colour: #31e6dc;
    --secondary-colour: #a6a6a6;
    --background-colour: #2b2b2b;

    width: 100%;
    max-width: 1170px;
    padding: 26px 24px 22px 0;
    box-sizing: border-box;
    background: var(--background-colour);
    font-family: 'Saira';
}

.chart-row {
    display: grid;
    grid-template-columns: var(--label-width) minmax(0, 1fr);
    min-height: 111px;
}

.game-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 19px;
    padding: 10px 24px 0 20px;
    box-sizing: border-box;
    text-align: right;
}

.game-info strong {
    color: #fff;
    font-size: 20px;
    line-height: 1.2;
}

.game-info span {
    color: #b8b8b8;
    font-size: 20px;
    line-height: 1;
}

.bar-area {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 0;
    border-left: 2px solid #fff;
}

.bar {
    position: relative;
    display: flex;
    align-items: center;
    width: calc(var(--value) * 1%);
    min-width: 1px;
    height: 45px;
    padding: 0 14px;
    box-sizing: border-box;
}

.bar-primary {
    background: var(--primary-colour);
}

.bar-secondary {
    background: var(--secondary-colour);
}

.bar-label {
    position: static;
    color: #2b2b2b;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    text-transform:uppercase;
}

.bar-value {
    position: absolute;
    top: 50%;
    left: calc(100% + 11px);
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.bar-primary .bar-value {
    color: var(--primary-colour);
}

.bar-secondary .bar-value {
    color: var(--secondary-colour);
}
@media (max-width: 700px) {
    .benchmark-chart {
        --label-width: 150px;
        padding-right: 42px;
    }

    .chart-row {
        min-height: 96px;
    }

    .game-info {
        gap: 13px;
        padding: 7px 14px 0 10px;
    }

    .game-info strong,
    .game-info span,
    .bar span {
        font-size: 14px;
    }

    .bar {
        height: 36px;
    }
}
.feat-list{
	margin-top:50px;
    gap: 35px;
    justify-content: center;
    flex-wrap: wrap;
}
* {
  box-sizing: border-box;
}
.thumb-opa {
  opacity: 0.6;
}

.active,
.thumb-opa:hover {
  opacity: 1;
}
.accordion {
	border-radius: 3px;
	position: relative;
	max-width:1000px;
	margin:30px auto;
}
.accordion p {
	font-size:16px;
	color:#fff;
	padding-bottom:15px;
}
.accordion-section-title {
	width: 100%;
	display: inline-block;
	margin:0;
	transition: all linear 0.15s;
	font-size: 20px;
	font-weight: normal;
	color: #3bbee3;
	text-align: left;
	text-decoration:none;
	margin-bottom:20px;
}
.accordion-section-title:hover {
	color:#008299;
}
.accordion-section-content {
	display: none;
}
.accordion, .accordion * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.accordion img, .accordion * img {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	padding-top: 20px;
	display: block;
}
.tabcontent {
  display: none;
  border-top: none;
}
/* Go from zero to full opacity */
@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}
@media screen and (max-width: 720px){
    .sec4 .landing-container {
        padding: 60px 20px;
    }

    .sec4 .feat-list {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 30px;
    }

    .sec4 .feat-list .sec4-icon {
        height: 120px;
    }

    .sec4 .feat-list .sec4-icon img {
        max-width: 90px;
        max-height: 90px;
    }

    .sec4 .feat-list h1 {
        font-size: 22px;
    }

    .sec4 .feat-list p {
        max-width: 340px;
        margin: 0 auto;
        font-size: 15px;
    }
  .sec1 {
        background-image: none;
        background-color: #2b2b2b;
    }

    .sec1 .landing-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 50px 20px;
    }

    .hero-title {
        display: contents;
    }

    .spark-hero-title {
        order: 1;
        padding: 0;
        text-align: center;
    }

    .spark-hero-title h1 {
        font-size: 42px;
    }

    .spark-hero-title h2 {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .spark-mob-kv {
        order: 2;
        display: block;
        width: 100%;
        max-width: 450px;
        height: auto;
        margin: 35px auto;
    }

    .spark-hero-desc {
        order: 3;
        position: static;
        left: auto;
        bottom: auto;
        transform: none;
        max-width: 100%;
        padding: 0;
        text-align: center;
    }

    .spark-hero-desc h1 {
        font-size: 30px;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .spark-hero-desc p {
        max-width: 100%;
        margin: 0 auto;
        font-size: 15px;
        line-height: 1.6;
    }
    
}
@media screen and (min-width: 720px){
    .sec1{
        background-image: url(/cdn-cgi/imagedelivery/a2gmdSa-nU-ClOr8oizeXw/landing/pcs/destian/destian-kv/public);
        background-position: 50%;
        background-repeat: no-repeat;
    }
    .spark-mob-kv{
        display: none;
    }
    .sec1 .hero-title{
        min-height: 1100px;  
    }
}