* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*::after,
*::before {
    box-sizing: border-box;
}

:root {
    --main-color: #ff6e00;
    --light-color: #FFF0E9;
    --black:#000;
    --hover-color: #000;
    --linear:linear-gradient(180deg, rgba(252, 77, 0, 0.05) 0%, rgba(68, 172, 0, 0.05) 37.6%, rgba(68, 172, 0, 0.05) 68.33%, rgba(191, 108, 0, 0.05) 100%);
    --white: #ffffff;
    --button-padding: 11px 20px 13px 20px;
    --gap10: 10px;
    --gap20: 20px;
    --gap30: 30px;
    --f20: 20px;
    --f16: 16px;
    --button-radius: 5px;
    --radius10: 10px;
    --dflex: flex;
    --radius-left: 15px 0px 0px 15px;
    --radius-right: 0 15px 15px 0;
    --gradient: linear-gradient(180deg, #FFF 0%, #ffede5 100%);
    --common-gradient: linear-gradient(180deg, rgba(252, 77, 0, 0.05) 0%, rgba(68, 172, 0, 0.05) 37.6%, rgba(68, 172, 0, 0.05) 68.33%, rgba(191, 108, 0, 0.05) 100%);
    --container-width: 1310px;
}

@keyframes pulse-me {
    0% {
        transform: scale(.9);
        opacity: .2;
        -webkit-transform: scale(.9);
        -moz-transform: scale(.9);
        -ms-transform: scale(.9);
        -o-transform: scale(.9)
    }

    50% {
        opacity: .5
    }

    70% {
        opacity: .09
    }

    100% {
        transform: scale(2.1);
        opacity: 0;
        -webkit-transform: scale(2.1);
        -moz-transform: scale(2.1);
        -ms-transform: scale(2.1);
        -o-transform: scale(2.1)
    }
}

#main {
    float: none;
}

main {
    margin: 80px auto 0 auto;
    max-width: 1920px;
}

main>* {
    padding: 40px 0;
}

[data-toggle="popup"],
.common-button {
    background-color: var(--button-color);
    font-size: 18px;
    text-transform: initial;
    font-weight: 600;
    padding: 13px 30px 14px 30px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

[data-toggle="popup"]:hover,
.common-button:hover {
    background-color: #0868ce;
    color: #fff;
}

a:hover,
a:focus,
a:active,
a:valid,
a {
    text-decoration: none;
}

button {
    outline: none;
    border: none;
}

.enq-popup-button-block {
    text-align: center;
}

* {
    box-sizing: border-box;
}

ul,
li,
ol {
    list-style: none;
    margin: 0;
}

img {
    border: none;
    outline: 0;
    max-width: 100%;
}

.btn__div {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    grid-gap: 15px;
    margin: 15px 0 0 0;
}

.btn__div.center {
    justify-content: center;
}

.play-anim-ico {
    background-image: url(../index-94.html);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 25px;
    height: 25px;
    position: relative;
}

.play-anim-ico:after {
    position: absolute;
    width: 34px;
    height: 34px;
    content: '';
    left: 50%;
    top: 50%;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin: -17px 0 0 -17px;
    border-radius: 50%;
    z-index: -1;
    box-shadow: 0 0 0 13px #ffffff;
    transform: scale(0.9);
    transform-origin: center center;
    animation: pulse-me 1s linear infinite;
    -webkit-animation: pulse-me 1s linear infinite;
}

.play-anim-ico.theme {
    background-image: url(../index-94.html);
}

.play-anim-ico.theme:after {
    box-shadow: 0 0 0 13px #1D59C4;
}

.common-btn {
    background-color: var(--orange);
    color: var(--white);
    padding: var(--button-padding);
    gap: var(--gap20);
    font-size: var(--f16);
    border-radius: var(--button-radius);
    -webkit-border-radius: var(--button-radius);
    -moz-border-radius: var(--button-radius);
    -ms-border-radius: var(--button-radius);
    -o-border-radius: var(--button-radius);

}
.common-btn {
    background-color: var(--main-color);
    color: var(--white);
    padding: var(--button-padding);
    gap: 10px;
    font-size: var(--f16);
    border-radius: var(--button-radius);
    -webkit-border-radius: var(--button-radius);
    -moz-border-radius: var(--button-radius);
    -ms-border-radius: var(--button-radius);
    -o-border-radius: var(--button-radius);
    line-height: 1em;
    display: inline-flex;
    align-items: center;
    gap: var(--gap10);
    font-weight: 400;
    font-family: 'Exo 2';
    border: none;
    outline: none;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    z-index: 0;
    position: relative;
    overflow: hidden;
    text-transform: capitalize;
}
.common-btn::before {
    background: #000;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    z-index: -1;
    pointer-events: none;
}
.common-btn:hover::before {
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
}

.common-btn:hover,
.common-btn:focus {
    color: #fff;
}
.common-btn img {
    width: 16px;
    height: 21px;
    display: inline-block;
    font-size: 0;
    vertical-align: middle;
}
.blink {
    animation: blink 2s infinite;
    -webkit-animation: blink 2s infinite;
}

.play-anim-ico.blink:after {
    display: none;
}

@keyframes blink {
    30% {
        opacity: 0
    }
}

.common-btn.bg-white {
    background-color: #fff;
    color: var(--button-color);
}

.common-btn.bg-white:hover {
    background-color: var(--hover-color);
    color: #fff;
}

.common-btn small {
    display: block;
    font-size: 12px;
}

.border-btn {
    color: var(--main-color);
    text-align: center;
    font-size: 18px;
    text-transform: capitalize;
    line-height: 1em;
    font-weight: 600;
    padding: 12px 15px 14px 15px;
    min-height: 50px;
    min-width: 120px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 10px;
    border: 1px solid var(--main-color);
    background: transparent;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.border-btn:hover,
.border-btn:focus {
    background: var(--main-color);
    color: #fff;
    border: 1px solid var(--main-color);
}

.border-btn img {
    height: 24px;
    vertical-align: middle;
}

.border-btn:hover img {
    filter: brightness(0) invert(1);
}

.white-btn{
    background-color: #fff;
    color: var(--main-color);
}
.white-btn:hover{
    background-color: var(--main-color);
    color: #fff;
}
p strong {
    font-size: 18px;
    color: var(--black);
    display: block;
    line-height: 1.2em;
}

p {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 23px;
    letter-spacing: 0;
    color: var(--black);
    font-weight: 400;
    text-align: justify;
}

p:last-child {
    margin-bottom: 0;
}

b {
    font-size: 18px;
    line-height: normal;
    margin: 0 0 12px 0;
}

.d-block {
    display: block;
}

.heading-area {
    width: 100%;
    display: block;
    margin: 0 0 15px 0;
}

.main-title {
    color: var(--black);
    font-size: 37.08px;
    font-weight: 700;
    line-height: 1.1em;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: -8px;
}

.sub-title {
    color: var(--black);
    font-size: 18.54px;
    font-weight: 700;
    line-height: 1.2em;
    display: block;
    margin: 5px 0 15px 0;
}

.heading-area.center>* {
    text-align: center;
}

.heading-area.white>* {
    color: #fff;
}

.heading-area.white .main-title>* {
    color: #fff;
}
.heading-area > .m-color{
    color: var(--main-color);
}
.heading-area>p {
    margin-top: 5px;
    margin-bottom: 0;
}
.heading-area > .sub-title{
    margin-bottom: 0;
}
.m-color {
    color: var(--main-color);
}

.deskop-none {
    display: none;
}
.m-0{
    margin: 0 !important;
}

.blink {
    animation: blink 2s infinite;
    -webkit-animation: blink 2s infinite;
}

.bn-section .blink {
    display: inline-block;
    vertical-align: top;
    font-size: 0;
    margin: 0 0 0 5px;
}

.bn-section .blink img {
    display: inline-block;
    vertical-align: middle;
    width: 24px;
    height: 24px;
}

@keyframes blink {
    30% {
        opacity: 0
    }
}

/* --------------------------------------------------- */
.bn-section {
    /* background-image: url(../images/uber-script-features-up/banner-back.jpg); */
    background: var(--linear);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.bn-inner {
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.banner-left {
    width: 48%;
}

.bn-section h1 {
    font-size: 45px;
    line-height: 1.1em;
    color: var(--black);
    margin: 0 0 15px 0;
    font-weight: bold;
}

.bn-section .bn-heading {
    font-size: 22px;
    color: var(--black);
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1em;
    display: block;
    margin: 10px 0 15px 0;
}

.bn-section .bn-heading>* {
    display: block;
}

.banner-right {
    width: 48%;
}

/* --------------------------------------------------- */
.fet-inner {
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
}

.fet__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.fet__list .fet-caption {
    box-shadow: 0 0 24.98px -4.16px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    padding: 18px;
    min-height: 100%;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.fet-caption i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 10px 0;
    font-size: 50px;
}
.fet-caption strong {
    display: flex;
    text-transform: capitalize;
    color: var(--black);
    font-size: 18px;
    line-height: 1.2em;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    margin: 0 0 10px 0;
}

.fet-caption .clientvideos {
    max-width: 25px;
    width: 100%;
    height: 25px;
    margin-left: 10px;
}

/* --------------------------------------------------- */
.tb-section{
    background-color: var(--light-color);
}
.tb-inner{
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.tb-left{
    width: 36%;
}
.tb-right{
    width: 61.6%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.dv-subtitle{
    font-size: 16px;
    color: var(--black);
    display: block;
    margin: 0 0 10px;
    line-height: 1em;
}
/* --------------------------------------------------- */
.pr-section {
    padding: 40px 0;
    background-color: #f8f8f8;
}
.pr-inner {
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
}

.masonry {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}

.masonry .item {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 15px;
    box-shadow: 0 0 24.98px -4.16px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0 0 24.98px -4.16px rgba(0, 0, 0, 0.15);
    background-color: #ffffff;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.masonry .item i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 10px 0;
    font-size: 50px;
    color: #f09817;
}

.masonry .item i img {
    width: 50px;
    height: 50px;
    display: inline-block;
    font-size: 0;
}

.masonry .item strong {
    display: flex;
    text-transform: capitalize;
    color: var(--black);
    font-size: 18px;
    line-height: 1.2em;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    margin: 0 0 10px 0;
}

.masonry .item .clientvideos {
    max-width: 25px;
    width: 100%;
    height: 25px;
    margin-left: 10px;
}
.masonry .item p b{
    color: #333;
    font-size: 16px;
}
.masonry .item ul li {
    font-size: 16px;
    line-height: 23px;
    margin: 0 0 5px 0;
    position: relative;
    padding: 0 0 0 20px;
    text-align: justify;
    color: var(--black);
}

.masonry .item ul li:before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--main-color);
    left: 0;
    top: 7px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.masonry .item:last-child{
    grid-column: span 3;
}
/* --------------------------------------------------- */
.demolinks{
    background-color: var(--black);
    z-index: 1;
    position: relative;
}
.demolinks::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    background-image: url(../png/line.png);
    background-repeat: no-repeat;
    background-position: center left;
    background-size: cover;
}
.demolinks-inner{
        max-width: 1310px;
        padding: 0 15px;
        margin: 0 auto;
}
.demo-links-row{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 15px;
    margin: 0 auto 15px auto;
    max-width: 1220px;

}
.links-column ul{
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}
.web-column strong,
.links-column  strong{
    display: block;
    font-size: 22px;
    color: #fff;
    text-transform: uppercase;
    padding-left: 10px;
}
.web-column strong{
    text-align: center;
    margin: 0 0 15px 0;
    padding: 0;
}
ul.weblinks{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1220px;
    margin: 0 auto;
}
/* --------------------------------------------------- */
.rd-inner{
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
}
/* --------------------------------------------------- */
.dr-section{
    background-color: var(--light-color)
}
.dr-inner{
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
}
/* --------------------------------------------------- */
.ad-inner{
        max-width: 1310px;
        padding: 0 15px;
        margin: 0 auto;
}
/* --------------------------------------------------- */
.__TD__ROW{
    display: flex;
    flex-direction: column;
    border: 1px solid #E6E9F5;
    background-color: #E6E9F5;
    row-gap: 1px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}
.__TR__{
    display: grid;
    grid-template-columns: 60px 1fr 1.599fr;
    gap: 1px;
    background-color: #E6E9F5;
}
.__TD__{
    background-color: #fff;
    padding: 13px 20px;
    font-size: 15px;
    color: var(--black);
    font-weight: 400;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.__TD__:last-child{
    background-color: #FFF9EF;
}
.__TR__:first-child .__TD__:first-child{
    border-radius:  3px 0 0 0;
    -webkit-border-radius:  3px 0 0 0;
    -moz-border-radius:  3px 0 0 0;
    -ms-border-radius:  3px 0 0 0;
    -o-border-radius:  3px 0 0 0;
}
.__TR__:last-child .__TD__:first-child{
    border-radius:  0px 0 0 3px;
    -webkit-border-radius:  0px 0 0 3px;
    -moz-border-radius:  0px 0 0 3px;
    -ms-border-radius:  0px 0 0 3px;
    -o-border-radius:  0px 0 0 3px;
}
.__TR__:first-child .__TD__:last-child{
    border-radius: 0 3px 0px 0;
    -webkit-border-radius: 0 3px 0px 0;
    -moz-border-radius: 0 3px 0px 0;
    -ms-border-radius: 0 3px 0px 0;
    -o-border-radius: 0 3px 0px 0;
}
.__TR__:last-child .__TD__:last-child{
    border-radius: 0 0 3px 0;
    -webkit-border-radius: 0 0 3px 0;
    -moz-border-radius: 0 0 3px 0;
    -ms-border-radius: 0 0 3px 0;
    -o-border-radius: 0 0 3px 0;
}

.NUM{
    text-align: center;
}
/* --------------------------------------------------- */
.sp-section{
    background: var(--linear);
}
.sp-innner{
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
}
.sp_list {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.6fr;
    gap: 20px;
    align-items: center;
}
.sp_list li{
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.sp-innner .sp_box{
    text-align: right;
}
.sp_content{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    align-items: center;
    margin: 0 0 8px 0;
}

.sp_content i {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sp_content i img{
    width: 45px;
    height: 45px;
    display: inline-block;
    font-size: 0;
}
.sp_content  strong {
    width: calc(100% - 60px);
    width: -webkit-calc(100% - 60px);
    width: -moz-calc(100% - 60px);
    width: -o-calc(100% - 60px);
    width: -ms-calc(100% - 60px);
    font-size: 18px;
    line-height: 1.2em;
    color: var(--black);
    text-transform: uppercase;
    font-weight: bold;
}
.sp_list li .sp_img{
    text-align: center;
}
.sp_list li:last-child .sp_box{
    text-align: left;
}
.sp_list li:last-child .sp_content{
    flex-direction: unset;
}
/* --------------------------------------------------- */
.sc-inner{
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 22px;
    align-items: flex-end;
}
.sc__list li{
    position: relative;
    font-size: 16px;
    color: var(--black);
    line-height: normal;
    font-weight: 400;
    padding-left: 26px;
    line-height: normal;
    margin: 0 0 10px 0;
}
.sc__list li:last-child{
    margin-bottom: 0;
}
.sc__list li::after{
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 16px;
    height: 16px;
    border: 3px solid #FC4D00;
    background-color: #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
/* --------------------------------------------------- */
.wh-section{
    background-color: #EBF2F1;
}
.wh-inner{
    display: flex;
    flex-wrap: wrap;
    max-width: 1310px;
    padding: 0 15px;
    justify-content: space-between;
    margin: 0 auto;
}
.wh-left{
    width: 24%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;justify-content: flex-end;
}
.wh-left img{
    vertical-align: top;
}
.wh-right{
    width: 72%;
    padding-bottom: 30px;
}
.wh__list{
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.wh__list .wh_caption{
    border: 1px solid #000;
    padding: 15px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.wh__list .wh_caption i {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wh_title_box{
    width: calc(100% - 60px);
    width: -webkit-calc(100% - 60px);
    width: -moz-calc(100% - 60px);
    width: -ms-calc(100% - 60px);
    width: -o-calc(100% - 60px);
}
.wh__list .wh_caption i img{
    display: inline-block;
    font-size: 0;
    filter: invert(1);
    -webkit-filter: invert(1);
}
.wh__list .wh_caption strong{
    text-transform: uppercase;
    line-height: 1.2em;
    color: #000;
    font-size: 20px;
    display: block;
    margin: 0 0 8px 0;
}
.wh__list .wh_caption p{
    color: #000;
}
.wh__list .wh_caption p a{
    color: var(--black);
}
/* --------------------------------------------------- */
.ad-inner{
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
}
.ad__list > * {
    padding: 0 0 20px 0;
}
.ad__list li{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.ad__list .ad__image{
    width: 33%;
}
.ad__list .ad__content{
    width: 65%;
}
.ad__content strong{
    display: block;
    font-size: 28px;
    color: var(--main-color);
    text-transform: capitalize;
    line-height: 1em;
    margin: 0 0 10px 0;
}
.ad__list li:nth-child(2n) {
    padding: 0;
    flex-direction: row-reverse;
}
.ad__list li:nth-child(2n) .ad__image{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
/* --------------------------------------------------- */
.alg-section{
    background: var(--linear);
}
.alg-inner{
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
}
.alg__items{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 35px;
}
.alg__items .alg__caption{
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background-color: #F0E7E7;
    padding: 37px 28px 28px 37px;
    border-radius: 27px;
    -webkit-border-radius: 27px;
    -moz-border-radius: 27px;
    -ms-border-radius: 27px;
    -o-border-radius: 27px;
    position: relative;
    z-index: 1;
}
.alg__items .alg__caption::before{
    content: '';
    left: 15px;
    top: 15px;
    width: 100%;
    height: 100%;
    position: absolute;
    border: 1px dashed #BCBCBC;
    border-radius: 27px;
    -webkit-border-radius: 27px;
    -moz-border-radius: 27px;
    -ms-border-radius: 27px;
    -o-border-radius: 27px;
    z-index: -1;
}
.alg__items li:first-child .alg__caption{
    background-color: #EBF2F1;
}
.alg__items li:last-child .alg__caption{
    background-color: #EBF2F1;
}
.alg__items .alg__caption i {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 15px 0;
}
.alg__items .alg__caption strong{
    color: var(--main-color);
    font-size: 22px;
    line-height: 1.2em;
    display: block;
    text-transform: uppercase;
    margin: 0 0 10px 0;
}
.alg__image{
    text-align: center;
}
/* --------------------------------------------------- */
.cv-section {
    width: 100%;
    background: url(../jpg/color-variation-img.jpg) no-repeat scroll top;
    text-align: center;
}
.cv-inner{
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
}
.cv__box{
    text-align: center;
}
/* ------------------------------------------------------------------ */
.cr-section{
    padding-bottom: 0;
}
.cr-inner{
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
}
.languages-box ul{
    border: 1px solid #E6E9F5;
   background-color: #E6E9F5;
   display: flex;
   flex-direction: column;
   row-gap: 1px;
}
.languages-box ul li{
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 1px;
    background-color: #E6E9F5;
}
.languages-box ul li span{
    display: flex;
    flex-direction: column;
    background-color: #fff;
    padding: 5px;
    text-align: center;
    color: var(--main-color);
}
.languages-box ul li b{
    font-weight: 400;
    font-size: 14px;
    display: block;
    margin: 0 0 5px 0;
    line-height: 1em;
    color: var(--black);
}
.languages-box-bottom{
    background-color: #E6E9F5;
    padding: 8px;
}
.languages-box-bottom p{
    text-align: center;
}
/* --------------------------------------------------- */
.av__inner{
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
}
.currencies-box ul{
    border: 1px solid #E6E9F5;
    background-color: #E6E9F5;
    display: flex;
    flex-direction: column;
    row-gap: 1px;
}
.currencies-box ul li{
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 1px;
    background-color: #E6E9F5;
}
.currencies-box ul li span{
    display: flex;
    flex-direction: column;
    background-color: #fff;
    padding: 5px;
    text-align: center;
    color: var(--main-color);
}
.currencies-box ul li b{
    font-weight: 400;
    font-size: 14px;
    display: block;
    margin: 0 0 5px 0;
    line-height: 1em;
    color: var(--black);
}
.currencies-box ul li:last-child span:last-child{
    grid-column: span 6;
    text-align: left;
}
.currencies-box-bottom{
    background-color: #E6E9F5;
    padding: 8px;
}
.currencies-box-bottom p{
    text-align: center;
}
/* --------------------------------------------------- */
.sq-section{
    background-color: #E6E9F5;
}
.sq-inner{
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
}
/* --------------------------------------------------- */
.pdc-inner{
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
}
.pdc__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 917px;
    margin: auto;
    text-align: center;
}
.pdc__list li{
    display: flex;
    flex-direction: column;
}
.pdc__list li span{
    display: block;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--main-color);
    margin: 0 0 10px 0;
    line-height: 1em;
    font-weight: bold;
}
.pdc__list li p{
    text-align: center;
}
/* --------------------------------------------------- */
.latest-new-features {
    padding: 35px 0 40px 0;
}
.latest-new-features-inner {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px;
}
.latest-new-features ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}
.latest-new-features ul li {
    padding: 10px;
    border: 1px solid #ddd;
}
.latest-new-features ul li strong ._VIDEO_ {
    margin: 0 0 0 5px;
    color: #ff6e00;
}
.latest-new-features ul li strong ._VIDEO_:hover {
    color: #ff6e00;
}
.latest-new-features ul li i {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    float: left;
    margin: 0 8px 0 0;
}
.latest-new-features ul li i img {
    width: 46px;
    height: 46px;
    font-size: 0;
    display: inline-block;
}
.latest-new-features ul li strong {
    color: #000;
    font-family: "Exo 2";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    display: block;
    margin: 0 0 3px 0;
}
.latest-new-features ul li p {
    margin: 0;
    line-height: 22px;
}
/* --------------------------------------------------- */
@media (max-width:1920px) {
    .wh-left img {
        max-width: 34vw;
    }
}
@media (max-width:1400px) {
    .wh-left {
        width: 42%;
    }
    .wh-right {
        width: 54%;
    }
    .wh-left img {
        max-width: 53vw;
    }
}

@media (max-width:1199px) {
    .main-title {
        font-size: 33px;
    }
    .bn-section h1 {
        font-size: 40px;
    }
    .__TD__ {
        padding: 8px 10px;
    }
    .tb-right img {
        max-width: 100%;
    }
}

@media (max-width:991px) {
    .main-title {
        font-size: 30px;
    }
    .bn-inner{
        flex-direction: column-reverse;
    }
    .banner-left{
        width: 100%;
    }
    .banner-right {
        width: 100%;
        margin: 0 0 25px 0;
    }
    .bn-section h1 {
        font-size: 35px;
    }
    .bn-section .bn-heading {
        font-size: 20px;
    }
    .fet__list {
        grid-template-columns: repeat(2, 1fr);
    }
    .tb-section{
        padding: 40px 0;
    }
    .tb-left{
        width: 100%;
        order: 3;
        padding: 0;
    }
    .tb-right{
        width: 100%;
        order: 2;
        margin: 0 0 25px 0;
    }
    .masonry {
        grid-template-columns: 1fr 1fr;
    }
    .masonry .item:last-child {
        grid-column: span 2;
    }
    .sp_list{
        align-items: flex-start;
    }
    .sp_list {
        grid-template-columns: 1fr 1fr;
    }
    .sp_list li:nth-child(2){
        display: none;
    }
    .sc-inner {
        display: flex;
        flex-direction: column-reverse;
    }
    .sc-right{
        width: 100%;
        text-align: center;
    }
    .sc-left{
        width: 100%;
    }
    .wh-section{
        padding: 40px 0;
    }
    .wh-left{
        display: none;
    }
    .wh-right{
        width: 100%;
        padding: 0;
    }
    .ad__list .ad__image{
        width: 100%;
        text-align: center;
        margin: 0 0 25px 0;
    }
    .ad__list .ad__content{
        width: 100%;
    }
    .ad__list li:nth-child(2n) .ad__image {
        align-items: center;
    }
    .alg__items {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        align-items: inherit;
    }
    .alg__items li:last-child{
        grid-column: span 2;
    }
    .alg__items .alg__caption{
        padding: 20px;
    }
    .alg__items .alg__caption::before {
        content: '';
        left: 8px;
        top: 8px;
    }
    .languages-box ul li {
        grid-template-columns: repeat(3, 1fr);
    }
    .currencies-box ul li {
        grid-template-columns: repeat(3, 1fr);
    }
    .currencies-box ul li:last-child span:last-child{
        display: none;
    }
    .latest-new-features ul {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:630px) {
    .bn-section h1 {
        font-size: 30px;
    }
    .main-title {
        font-size: 26px;
        margin-top: -4px;
    }
    .fet__list {
        grid-template-columns: 1fr;
    }
    .masonry {
        column-count: inherit;
        display: flex;
        flex-direction: column;
    }
    .demo-links-row {
        grid-template-columns: repeat(2,1fr);
        gap: 10px;
    }
    ul.weblinks {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .__TR__ {
        grid-template-columns: 50px 1fr 1.599fr;
    }
    .sp_list {
        grid-template-columns: 1fr;
    }
    .sp-innner .sp_box {
        text-align: left;
    }
    .sp_content {
        flex-direction: inherit;
    }
    .sc-right{
        margin: 0 0 15px 0;
    }
    .wh__list .wh_caption strong {
        font-size: 18px;
        margin: 0 0 10px 0;
    }
    .wh__list .wh_caption {
        padding: 15px;
    }
    .alg__items {
        grid-template-columns: 1fr;
    }
    .pdc__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .fet__list .fet-caption img{
        image-rendering:-webkit-optimize-contrast;
    }
    .alg__items {
        display: flex;
        flex-wrap: wrap;
    }
    .latest-new-features ul {
        grid-template-columns: 100%;
    }
}

@media (max-width:480px) {
    .dr-section{
        background-color: #f8f8f8;
    }
    .__TR__ {
        grid-template-columns: 1fr;
    }
    .__TD__:last-child{
        background-color: #fff;
    }
    .__TD__{
        font-size: 15px;
        line-height: 19px;
    }
    .__TD__.NUM{
        font-weight: bold;
    }
    .__TR__:nth-child(2n) .__TD__ {
       background-color: #FFF9EF;
    }
    .ad__content strong {
        font-size: 20px;
    }
    .alg__items .alg__caption i {
        width: 60px;
        height: 60px;
    }
    .alg__items .alg__caption strong {
        font-size: 18px;
    }
    .alg__items .alg__caption::before{
        display: none;
    }
    .alg__items .alg__caption {
        padding: 15px;
        border-radius: 8px;
    }
    .common-btn {
        font-size: 16px;
        padding: 13px 12px;
        min-height: 50px;
        border-radius: 8px;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        -ms-border-radius: 8px;
        -o-border-radius: 8px;
}
.languages-box ul li {
    grid-template-columns: repeat(2, 1fr);
}
.languages-box ul li span:last-child{
    grid-column: span 2;
}
.currencies-box ul li {
    grid-template-columns: repeat(2, 1fr);
}
.currencies-box ul li span:last-child{
    grid-column: span 2;
}
.currencies-box ul li:last-child span:nth-child(3){
    grid-column: span 2;
}
.pdc__list {
    grid-template-columns: repeat(1, 1fr);
}
}

@media (max-width:375px) {
    .main-title{
        font-size: 24px;
    }
    .bn-section h1 {
        font-size: 27px;
        line-height: 1em;
        margin: 0 0 5px 0;
    }
    .bn-section .bn-heading {
        font-size: 17px;
        margin: 0 0 6px 0;
    }
}