:root {
    --orange: #19B4ED;
    --orange-dark: #0782AF;
    --black: #000;
    --white: #ffffff;
    --button-padding: 11px 25px 13px 25px;
    --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%, #d6eef7 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-inner-width: 1310px
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Exo 2';
}
*::before,
*::after{
    box-sizing:border-box;
}
.play-anim-ico {
    width: 60px;
    position: absolute;
    height: 60px;
    left: 50%;
    top: 50%;
    z-index: 1;
    margin-top: -30px;
    margin-left: -30px;
    font-size: 61px;
    box-shadow: 0 6px 15px rgb(0 0 0 / .15);
    color: #fff
}

.play-anim-ico::before {
    content: '\e9c2';
    font-family: 'icomoon';
    vertical-align: top;
    overflow: hidden
}

.play-anim-ico:after {
    content: '';
    position: absolute;
    width: 34px;
    height: 34px;
    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 #fff;
    transform: scale(.9);
    transform-origin: center center;
    animation: pulse-me 1s linear infinite;
    -webkit-animation: pulse-me 1s linear infinite;
    color: #fff
}

.play-anim-ico.theme:after {
    box-shadow: 0 0 0 13px var(--orange-dark)
}

.play-anim-ico.theme {
    color: var(--orange-dark);
    background-color: #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%
}

@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)
    }
}
p {
    margin: 0 0 10px;
    line-height: 23px;
    font-size: 16px;
    color: #000;
    text-align: justify;
}
p:last-child{
    margin-bottom: 0;
}
main {
    max-width: 1920px;
    margin: 80px auto 0  auto;
}

.heading-area {
    display: block;
    width: 100%;
    margin-bottom: 10px
}

.heading-style {
    position: relative;
    font-style: normal;
    font-weight: 700;
    font-size: 35px;
    line-height: 1em;
    color: var(--black);
    text-transform: capitalize;
    margin-top: -7px
}

.heading-style strong {
    font-size: 22px;
    display: block;
    position: relative;
    text-transform: uppercase;
    color: var(--black);
    font-weight: 700;
    line-height: normal;
    margin-top: 5px
}

.heading-style span {
    color: var(--orange-dark)
}

.heading-area.center > * {
    text-align: center;
}
.heading-area > p{
    margin: 5px 0 0 0;
}
img{
    max-width: 100%;
}
.common-btn {
    background-color: var(--orange-dark);
    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);
    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{
    color: #fff;
}

.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 img {
    width: 16px;
    height: 21px;
    display: inline-block;
    font-size: 0;
    vertical-align: middle
}
/* ----------------------------- */
h1.page-heading{
    font-size: 38px;
    line-height: 1em;
    padding: 0 15px;
}
.client-section{
    padding: 25px 0;
}
.client-inner{
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
}
.client-section ul{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    width: 100%;
    margin: 0 0 15px;
}
.client-section ul li{
    width: 100%;
    position: relative;
    display: block;
}
.client-section ul li::before{
    content: '';
    display: block;
    width: 100%;
    padding-top: 56.25%;
}
.client-section ul li > *{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
/* ----------------------------- */
.development{
    padding:0 15px 40px 15px;
}
.development__inner{
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
    width: 100%;
    padding: 20px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    background-repeat: no-repeat;
    background-position: right 0;
    border: 1px solid #ddd;
    background-color: #f6f4ff;
}
/* ----------------------------- */
.latest-new-features {
    padding: 40px 0 35px 0;
    background-color: #f8f8f8;
}

.latest-new-features-latest {
    padding: 0 15px;
    max-width: 1310px;
    margin: 0 auto
}

.latest-new-features-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
}

.latest-new-features ul:first-child {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px
}

.latest-new-features ul:nth-child(2) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
}

.latest-new-features ul:last-child {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    grid-column: span 2;
    margin-top: 0
}

.latest-new-features ul li strong {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    display: block;
    margin: 0 0 4px 0
}

.latest-new-features ul li strong .icon-play-button {
    margin-left: 5px;
    vertical-align: top;
    display: inline-block;
    margin-top: 3px;
    color: var(--orange-dark)
}

.latest-new-features ul li {
    padding: 15px;
    margin-bottom: 0;
    border: 1px solid #ddd;
    border-radius: 20px
}

.latest-new-features ul li p {
    margin: 0
}

.latest-new-features ul li i {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    float: left;
    margin: 0 10px 0 0
}

.latest-new-features ul li i img {
    width: 46px;
    height: 46px
}

.latest-new-features ul li .features_heading {
    display: flex;
    align-items: center;
    margin-bottom: 10px
}

.latest-new-features ul li .features_heading i {
    margin: 0 20px 0 0;
}

.latest-new-features ul li .features_heading strong {
    width: calc(100% - 110px);
    width: -o-calc(100% - 110px);
    width: -moz-calc(100% - 110px);
    width: -webkit-calc(100% - 110px)
}
.mb10 {
    margin-bottom: 10px;
}
/* ---------------------------------------------------------------- */
.adam-video {
    padding: 35px 0 60px 0
}

.adam-video a {
    position: relative;
    display: block
}

.adam-video a:hover {
    color: var(--orange)
}

.adam-video a::before {
    content: '';
    display: block;
    width: 100%;
    padding-top: 59.45%
}

.adam-video a>img {
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.adam-video .play-anim-ico {
    left: auto;
    top: auto;
    right: 20px;
    bottom: -25px;
    border-radius: 50%;
    box-shadow: 0 6px 15px rgb(0 0 0 / .15);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%
}

.adam-video .play-anim-ico img {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    width: 60px;
    height: 60px
}

.adam-video-inner {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px
}

.adam-video-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap20);
    align-items: center;
    justify-content: space-between
}

.adam-video ul.statistics {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: var(--gap20);
    background: linear-gradient(180deg,rgb(68 172 0 / .08) 0%,rgb(191 108 0 / .08) 100%);
    padding: 25px;
    width: 100%;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    justify-content: space-between
}

.adam-video ul.statistics li:nth-last-child(-n+2) {
    margin-bottom: 0
}

.adam-video ul.statistics li strong {
    font-weight: 700;
    font-size: 25px;
    line-height: 30px;
    display: block;
    margin-top: 8px
}

.adam-video ul.statistics li strong span {
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    display: block
}

.adam-video ul.statistics li i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: #000
}

.adam-video ul.statistics li i img {
    height: 50px;
    width: 50px;
    display: inline-block;
    font-size: 0
}

@media (max-width:991px) {
    .heading-style {
        font-size: 30px;
    }
    .latest-new-features-row {
        grid-template-columns: 1fr 1.5fr;
    }
}
@media (max-width:630px) {
    .client-section ul {
        grid-template-columns: 1fr;
    }
    .latest-new-features-row {
    grid-template-columns: 1fr;
    }
    .latest-new-features ul:last-child {
    grid-column: auto;
    }
    .latest-new-features ul:nth-child(2) {
    grid-template-columns: 1fr;
    }
    .adam-video-row {
        grid-template-columns: 1fr;
    }
    .play-anim-ico {
        transform: scale(0.6);
    }
    h1.page-heading {
    font-size: 29px;
}
}