/*---------------------------------------
COMMON STYLES             
-----------------------------------------*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    position: relative;
    overflow-x: hidden;
    font-size: 10px;
    margin: 0;
}
@media only screen and (min-width: 2112px) {
    html{
        font-size: 11px;
    }
}
@media only screen and (min-width: 2304px) {
    html{
        font-size: 12px;
    }
}
@media only screen and (min-width: 2496px) {
    html{
        font-size: 13px;
    }
}
@media only screen and (min-width: 2688px) {
    html{
        font-size: 14px;
    }
}
@media only screen and (min-width: 2880px) {
    html{
        font-size: 15px;
    }
}
@media only screen and (min-width: 3072px) {
    html{
        font-size: 16px;
    }
}
@media only screen and (min-width: 3264px) {
    html{
        font-size: 17px;
    }
}
@media only screen and (min-width: 3456px) {
    html{
        font-size: 18px;
    }
}
@media only screen and (min-width: 3648px) {
    html{
        font-size: 19px;
    }
}
@media only screen and (min-width: 3840px) {
    html{
        font-size: 20px;
    }
}
body{
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    line-height: 3.3rem;
    font-weight: normal;
    color: #1D2A80;
    overflow: hidden;
    margin: 0;
    padding: 0;
    font-weight: 400;
}

a {
    color: #1D2A80;
    transition: all .3s;
}
a, a:hover, a:focus{
    text-decoration: none;
    outline: none;
    transition: all .3s;
    color: #1D2A80;
}
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 1.2;
    height: 3.6rem;
    border-radius: 3rem;
    background-color: #DCF6FF;
}
.btn:hover {
    background-color: #2DB9EB;
}
ul, ol, li{
    list-style: none;
    margin: 0;
    padding: 0;
}
img{
    max-width: 100%;
    height: auto;
}
h1, h2, h3, h4, h5, h6 {
    color: #1D2A80;
    font-family: 'Gilroy';
    font-weight: 700;
}
h1 {
    font-size: 6rem;
    line-height: 7rem;
}
h2 {
    font-size: 4rem;
    line-height: 4.9rem;
}
h3 {
    font-size: 3rem;
    line-height: 4rem;
}
h4 {
    font-size: 2.5rem;
    line-height: 3.5rem;
}
h5 {
    font-size: 2rem;
    line-height: 3rem;
}
h6 {
    font-size: 1.5rem;
    line-height: 2.5rem;
}
.icon {
    display: flex;
}
.container {
    max-width: 117rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}


/*header*/
.header-area {
    background-color: #fff;
    position: relative;
}
.header-area.sticky {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    border-bottom: 1px solid #EAEAEA;
}
.header-row {
    display: flex;
    align-items: center;
}
.header-logo {
    width: 15rem;
    display: flex;
}
.header-logo img {
    max-height: 3.5rem;
}
.header-btns {
    width: 25rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.btn-login {
    width: 8.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.4rem;
    line-height: 2.1rem;
    font-weight: 500;
    text-transform: capitalize;
    padding-right: 2.2rem;
    margin-right: 2.3rem;
    position: relative;
}
.btn-login::after {
    content: '';
    width: .1rem;
    height: 2.6rem;
    background-color: #D7D7D7;
    position: absolute;
    right: 0;
}
.btn-login .icon {
    display: flex;
}
.header-btns .hdr-btn {
    width: 10.4rem;
}
.header-menu {
    width: calc(100% - 40rem);
}
.header-menu ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
.header-menu > ul > li a {
    height: 8.5rem;
    display: flex;
    align-items: center;
    font-family: 'Gilroy';
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: .5rem 1.6rem;
}
.header-menu > ul > li a:hover {
    color: #2DB9EB;
}

.mobile-header-area {
    display: none;
    padding: 10px 0;
    background-color: #fff;
}
.mobile-header-area.sticky {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    border-bottom: 1px solid #EAEAEA;
}
.mobile-header-row {
    display: flex;
    align-items: center;
}
.mobile-header-ham {
    width: 48px;
    display: flex;
    justify-content: flex-end;
}
.mobile-header-logo {
    width: calc(100% - 48px);
}
.mobile-header-logo img {
    max-height: 35px;
}
.mobile-header-logo a {
    display: flex;
}
@media only screen and (max-width: 1170px) {
    .header-area {
        display: none;
    }
    .mobile-header-area {
        display: block;
    }
}


/*mobile menu*/
.offcanvas-menu {
    position: relative;
    width: 100%;
    overflow: hidden
}
.offcanvas-menu ul {
    margin: 0;
    padding: 0;
    list-style: none
}
.offcanvas-menu ul.menu {
    position: relative;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1)
}
.offcanvas-menu ul.menu.off-view {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0)
}
.offcanvas-menu ul.menu.in-view {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}
.offcanvas-menu ul li {
    display: block;
}
.offcanvas-menu ul li.menu-item-has-children {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.offcanvas-menu ul li.menu-item-has-children > a {
    width: calc(100% - 60px);
}
.offcanvas-menu ul li a {
    display: block;
    padding: 11px 20px;
    transition: color .3s;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    text-decoration: none;
    height: auto;
}
.offcanvas-menu ul li a:hover {
    color: #fff;
}
.offcanvas-menu ul li.back-btn>a {
    background-color: #313b47;
    color: #fff
}
.offcanvas-menu ul li.back-btn>a::before {
    display: inline-block;
    width: 0;
    height: 0;
    margin-right: 8px;
    border-top: .32em solid transparent;
    border-right: .37em solid;
    border-bottom: .32em solid transparent;
    content: '';
    opacity: .75
}
.offcanvas-menu ul li.active>a {
    color: #00015E
}
.offcanvas-menu ul li.menu-item-has-children>span {
    display: block;
    position: relative;
    width: 100%
}
.offcanvas-menu ul li.menu-item-has-children>span>a {
    padding-right: 65px;  
}
.offcanvas-menu ul li.menu-item-has-children.active>span>a {
    color: #00015E
}
.offcanvas-menu ul li.menu-item-has-children .sub-menu-toggle {
    width: 60px;
    height: 54px;
    transition: background-color .3s;
    border-left: 1px solid rgba(255,255,255,0.12);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.75);
    cursor: pointer;
    z-index: 1;
}
.offcanvas-menu ul li.menu-item-has-children .sub-menu-toggle::before {
    display: block;
    position: absolute;
    top: 50%;
    right: 25px;
    width: 0;
    height: 0;
    margin-top: -5px;
    border-top: .35em solid transparent;
    border-bottom: .35em solid transparent;
    border-left: .4em solid;
    content: ''
}
.offcanvas-menu ul li.menu-item-has-children .sub-menu-toggle:hover {
    background-color: rgba(255,255,255,0.1)
}
.offcanvas-menu ul li.menu-item-has-children>.sub-menu {
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: auto;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}
.offcanvas-menu ul li.menu-item-has-children>.sub-menu.in-view {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}
.offcanvas-menu ul li.menu-item-has-children>.sub-menu.off-view {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0)
}
@-webkit-keyframes submenu-show {
    from {
        -webkit-transform: scale(0.85);
        transform: scale(0.85);
        opacity: 0
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
}
@keyframes submenu-show {
    from {
        -webkit-transform: scale(0.85);
        transform: scale(0.85);
        opacity: 0
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
}
.offcanvas-wrapper {
    position: relative;
    min-height: 100vh;
    background-color: #fff;
    z-index: 10
}
.offcanvas-container {
    position: fixed;
    top: 0;
    left: -290px;
    width: 290px;
    height: 100%;
    background-color: #374250;
    box-shadow: inset -4px 0 17px 0 rgba(0,0,0,0.35);
    visibility: visible;
    z-index: 99999;
    overflow-y: auto;
    transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}
.offcanvas-container.active {
    left: 0;
}


/*slider*/
.slider-area {
    position: relative;
    overflow: hidden;
    padding: 6.4rem 0 8.5rem;
}
.slider-row {
    display: flex;
    align-items: center;
}
.slider-content {
    width: 56.5rem;
    padding-right: 3rem;
}
.slider-image-area {
    width: calc(100% - 56.5rem);
}
.slider-content h1 {
    font-size: 4rem;
    line-height: 4.9rem;
    margin-bottom: 2.1rem;
    min-width: 51rem;
    min-height: 9.8rem;
}
.slider-content p {
    min-width: 53.5rem;
    min-height: 9.8rem;
}
.slider-content p .animate-title-inner {
    transition-delay: .4s;
}
.slider-btn {
    margin-top: 3.9rem;
    position: relative;
    display: flex;
    align-items: center;
}
.slider-btn a {
    width: 18.7rem;
    height: 5.5rem;
    border-radius: 5rem;
    background-color: #2DB9EB;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-right: 1.9rem;
    flex-shrink: 0;
}
.slider-btn a:hover {
    background-color: #1D2A80;
}
.slider-btn span {
    font-family: 'Gilroy';
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #C5D5DB;
    font-size: 1.4rem;
    line-height: 1.9rem;
    width: 20rem;
    transition: all .5s;
    transition-delay: 1s;
    opacity: 0;
}
.slider-btn-ani {
    min-width: 20.6rem;
    min-height: 5.5rem;
}
.slider-btn-ani .animate-title-inner {
    transition-delay: .8s!important;
}
.slider-try {
    width: 18.5rem;
    position: absolute;
    top: 67px;
    left: 12.4rem;
    transition: all .5s;
    transition-delay: 1.4s;
    opacity: 0;
}
.animate .slider-btn span, .animate .slider-try {
    opacity: 1;
}
.slider-image {
    width: 89.7rem;
    height: 53.8rem;
    position: relative;
}
.slider-image-mobile {
    display: none;
}
.slider-d1 {
    position: relative;
    width: 89.7rem;
    height: 53.8rem;
    z-index: 5;
    animation: zoz 4s;
}
@keyframes zoz {
    from {
        transform:scale(.8);
    }
    to {
        transform:scale(1);
    }
}
.animate .slider-d1 {
    transform: scale(1);
}
.slider-image > img {
    position: absolute;
}
.slider-d2 {
    width: 35.9rem;
    right: 10rem;
    top: 4.4rem;
    z-index: 6;
    transition: transform .2s, right 2.5s, opacity .5s;
    opacity: 0;
}
.animate .slider-d2 {
    right: 0;
    opacity: 1;
}
.slider-p1 {
    width: 16rem;
    left: 17rem;
    bottom: 11.9rem;
    transition: transform .2s, left 2s;
    transition-delay: 0s, .5s;
}
.animate .slider-p1 {
    left: 0;
}
.slider-p2 {
    left: 2.7rem;
    bottom: 16.8rem;
    width: 1.4rem;
    animation: spin 5.5s infinite linear;
}
.slider-p3 {
    width: 10.1rem;
    left: 16.5rem;
    bottom: 9rem;
    transition: transform .2s, left .7s, bottom .7s;
    transition-delay: 0s, .7s;
}
.animate .slider-p3 {
    left: 2.9rem;
    bottom: 7.7rem;
}
@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}
@keyframes zoom {
    0% {
        transform: scale(.9);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(.9);
    }
}
.slider-dw {
    position: absolute;
    top: 7.7rem;
    z-index: 6;
    left: 10.6rem;
    width: 44rem;
    height: 5.7rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.slider-dw img {
    max-height: 100%;
    width: calc(25% - .4rem);
    transition: transform .7s;
    transform: scale(0);
    opacity: 0;
}
.animate .slider-dw img {
    transform: scale(1);
    opacity: 1;
}
.slider-dw .slider-dw4 {
    transition-delay: 1s;
}
.slider-dw .slider-dw3 {
    transition-delay: 1.3s;
}
.slider-dw .slider-dw2 {
    transition-delay: 1.6s;
}
.slider-dw .slider-dw1 {
    transition-delay: 1.8s;
}
.slider-g1 {
    width: 35rem;
    position: absolute;
    top: 0;
    left: 0;
}
.slider-pg1 {
    width: 8.3rem;
    position: absolute;
    bottom: 0;
    left: 0;
}
.slider-s1 {
    width: 115.5rem;
    height: 63.8rem;
    border-radius: 35rem;
    background: linear-gradient(88.95deg, #8DE1FF 29.18%, #8247F5 77.08%);
    position: absolute;
    top: -75rem;
    right: -113rem;
    transform: rotate(-25.56deg);
    transition: all 1s;
    transition-delay: 2.2s;
}
.animate .slider-s1 {
    top: -14rem;
    right: -31.5rem;
}
@media only screen and (max-width: 1200px){
    .slider-image, .slider-s1, .slider-try, .slider-pg1 {
        display: none;
    }
    .slider-image-mobile {
        display: block;
    }
    .slider-row {
        position: relative;
        z-index: 1;
    }
    .slider-image-area {
        width: 450px;
    }
    .slider-content {
        width: calc(100% - 450px);
    }
}
@media only screen and (max-width: 1170px){
    .slider-content h1, .slider-content p {
        min-width: auto;
    }
    .slider-btn span {
        opacity: 1;
    }
}
@media only screen and (max-width: 991px){
    .slider-area.window {
        padding: 49px 0 56px;
    }
    .slider-content h1 {
        font-size: 32px;
        line-height: 39px;
        margin-bottom: 14px;
    }
    .slider-content p {
        line-height: 28px;
    }
    .slider-btn a {
        width: 155px;
        height: 44px;
        margin-right: 15px;
    }
    .slider-btn span {
        font-size: 12px;
        line-height: 17px;
        letter-spacing: 0.07em;
    }
    .slider-btn-ani {
        min-width: auto;
    }
}
@media only screen and (max-width: 767px){
    .slider-row {
        flex-direction: column-reverse;
        flex-wrap: wrap;
    }
    .slider-image-area {
        width: 400px;
        max-width: 100%;
        margin-bottom: 16px;
    }
    .slider-content {
        width: 100%;
        padding: 0;
    }
    .slider-content h1 {
        font-size: 28px;
        line-height: 34px;
    }
    .slider-content p {
        font-size: 14px;
        line-height: 23px;
    }
    .slider-btn {
        margin-top: 22px;
    }
}
@media only screen and (max-width: 330px){
    .slider-btn {
        flex-direction: column;
        align-items: flex-start;
    }
    .slider-btn span {
        margin-top: 13px;
        font-size: 10px;
        line-height: 13px;
        padding-left: 15px;
    }
    .slider-area.window {
        padding-top: 40px;
    }
}


@media only screen and (max-width: 1900px){.slider-image{width:888px;height:532px}.slider-d1{width:888px;height:532px}.slider-d2{width:355px;right:99px;top:44px}.slider-p1{width:158px;left:168px;bottom:118px}.slider-p2{left:27px;bottom:166px;width:14px}.slider-p3{width:100px;left:163px;bottom:89px}.animate .slider-p3{left:29px;bottom:76px}.slider-dw{top:76px;left:105px;width:435px;height:56px}.slider-s1{width:1143px;height:631px;border-radius:346px;top:-742px;right:-1118px}.animate .slider-s1{top:-138px;right:-312px}.slider-g1{width:346px}}@media only screen and (max-width: 1850px){.slider-image{width:864px;height:518px}.slider-d1{width:864px;height:518px}.slider-d2{width:346px;right:96px;top:42px}.slider-p1{width:154px;left:164px;bottom:115px}.slider-p2{left:26px;bottom:162px;width:13px}.slider-p3{width:97px;left:159px;bottom:87px}.animate .slider-p3{left:28px;bottom:74px}.slider-dw{top:74px;left:102px;width:424px;height:55px}.slider-s1{width:1113px;height:615px;border-radius:337px;top:-723px;right:-1089px}.animate .slider-s1{top:-135px;right:-303px}.slider-g1{width:337px}}@media only screen and (max-width: 1800px){.slider-image{width:841px;height:504px}.slider-d1{width:841px;height:504px}.slider-d2{width:336px;right:94px;top:41px}.slider-p1{width:150px;left:159px;bottom:111px}.slider-p2{left:25px;bottom:155px;width:13px}.slider-p3{width:95px;left:155px;bottom:84px}.animate .slider-p3{left:27px;bottom:72px}.slider-dw{top:72px;left:99px;width:412px;height:53px}.slider-s1{width:1083px;height:598px;border-radius:328px;top:-703px;right:-1059px}.animate .slider-s1{top:-131px;right:-295px}.slider-g1{width:328px}}@media only screen and (max-width: 1750px){.slider-image{width:817px;height:490px}.slider-d1{width:817px;height:490px}.slider-d2{width:327px;right:91px;top:40px}.slider-p1{width:146px;left:155px;bottom:108px}.slider-p2{left:25px;bottom:153px;width:13px}.slider-p3{width:92px;left:150px;bottom:82px}.animate .slider-p3{left:26px;bottom:70px}.slider-dw{top:70px;left:97px;width:401px;height:52px}.slider-s1{width:1053px;height:581px;border-radius:319px;top:-684px;right:-1030px}.animate .slider-s1{top:-128px;right:-287px}.slider-g1{width:319px}}@media only screen and (max-width: 1700px){.slider-image{width:794px;height:476px}.slider-d1{width:794px;height:476px}.slider-d2{width:318px;right:88px;top:39px}.slider-p1{width:142px;left:150px;bottom:105px}.slider-p2{left:24px;bottom:149px;width:12px}.slider-p3{width:89px;left:146px;bottom:80px}.animate .slider-p3{left:26px;bottom:68px}.slider-dw{top:68px;left:94px;width:389px;height:50px}.slider-s1{width:1023px;height:565px;border-radius:310px;top:-664px;right:-1000px}.animate .slider-s1{top:-124px;right:-279px}.slider-g1{width:310px}}@media only screen and (max-width: 1650px){.slider-image{width:771px;height:462px}.slider-d1{width:771px;height:462px}.slider-d2{width:308px;right:86px;top:38px}.slider-p1{width:137px;left:146px;bottom:102px}.slider-p2{left:23px;bottom:144px;width:12px}.slider-p3{width:87px;left:142px;bottom:77px}.animate .slider-p3{left:25px;bottom:66px}.slider-dw{top:66px;left:91px;width:378px;height:49px}.slider-s1{width:992px;height:548px;border-radius:301px;top:-644px;right:-971px}.animate .slider-s1{top:-120px;right:-271px}.slider-g1{width:301px}}@media only screen and (max-width: 1600px){.slider-image{width:747px;height:448px}.slider-d1{width:747px;height:448px}.slider-d2{width:299px;right:83px;top:37px}.slider-p1{width:133px;left:142px;bottom:99px}.slider-p2{left:22px;bottom:140px;width:12px}.slider-p3{width:84px;left:137px;bottom:75px}.animate .slider-p3{left:24px;bottom:64px}.slider-dw{top:64px;left:88px;width:367px;height:47px}.slider-s1{width:962px;height:532px;border-radius:292px;top:-625px;right:-942px}.animate .slider-s1{top:-117px;right:-262px}.slider-g1{width:292px}}@media only screen and (max-width: 1550px){.slider-image{width:724px;height:434px}.slider-d1{width:724px;height:434px}.slider-d2{width:290px;right:81px;top:35px}.slider-p1{width:129px;left:137px;bottom:96px}.slider-p2{left:22px;bottom:136px;width:11px}.slider-p3{width:81px;left:133px;bottom:73px}.animate .slider-p3{left:23px;bottom:62px}.slider-dw{top:62px;left:85px;width:355px;height:46px}.slider-s1{width:932px;height:515px;border-radius:282px;top:-605px;right:-912px}.animate .slider-s1{top:-113px;right:-254px}.slider-g1{width:282px}}@media only screen and (max-width: 1500px){.slider-image{width:701px;height:420px}.slider-d1{width:701px;height:420px}.slider-d2{width:280px;right:78px;top:34px}.slider-p1{width:125px;left:133px;bottom:93px}.slider-p2{left:21px;bottom:131px;width:10px}.slider-p3{width:79px;left:129px;bottom:70px}.animate .slider-p3{left:23px;bottom:60px}.slider-dw{top:60px;left:83px;width:344px;height:44px}.slider-s1{width:902px;height:498px;border-radius:273px;top:-586px;right:-883px}.animate .slider-s1{top:-109px;right:-246px}.slider-g1{width:273px}}@media only screen and (max-width: 1450px){.slider-image{width:677px;height:406px}.slider-d1{width:677px;height:406px}.slider-d2{width:271px;right:75px;top:33px}.slider-p1{width:121px;left:128px;bottom:90px}.slider-p2{left:20px;bottom:126px;width:10px}.slider-p3{width:76px;left:125px;bottom:67px}.animate .slider-p3{left:22px;bottom:58px}.slider-dw{top:58px;left:80px;width:332px;height:43px}.slider-s1{width:872px;height:482px;border-radius:264px;top:-566px;right:-853px}.animate .slider-s1{top:-105px;right:-238px}.slider-g1{width:264px}}@media only screen and (max-width: 1400px){.slider-image{width:654px;height:392px}.slider-d1{width:654px;height:392px}.slider-d2{width:262px;right:73px;top:32px}.slider-p1{width:117px;left:124px;bottom:87px}.slider-p2{left:20px;bottom:122px;width:10px}.slider-p3{width:74px;left:120px;bottom:65px}.animate .slider-p3{left:21px;bottom:56px}.slider-dw{top:56px;left:77px;width:321px;height:41px}.slider-s1{width:842px;height:465px;border-radius:255px;top:-547px;right:-824px}.animate .slider-s1{top:-102px;right:-230px}.slider-g1{width:255px}}@media only screen and (max-width: 1350px){.slider-image{width:631px;height:378px}.slider-d1{width:630px;height:378px}.slider-d2{width:252px;right:70px;top:31px}.slider-p1{width:112px;left:119px;bottom:84px}.slider-p2{left:19px;bottom:118px;width:10px}.slider-p3{width:71px;left:116px;bottom:63px}.animate .slider-p3{left:20px;bottom:54px}.slider-dw{top:54px;left:74px;width:309px;height:40px}.slider-s1{width:812px;height:448px;border-radius:246px;top:-527px;right:-794px}.animate .slider-s1{top:-98px;right:-221px}.slider-g1{width:246px}}@media only screen and (max-width: 1300px){.slider-image{width:607px;height:364px}.slider-d1{width:607px;height:364px}.slider-d2{width:243px;right:68px;top:30px}.slider-p1{width:108px;left:115px;bottom:80px}.slider-p2{left:18px;bottom:114px;width:9px}.slider-p3{width:68px;left:112px;bottom:61px}.animate .slider-p3{left:20px;bottom:52px}.slider-dw{top:52px;left:72px;width:298px;height:38px}.slider-s1{width:782px;height:432px;border-radius:237px;top:-508px;right:-765px}.animate .slider-s1{top:-95px;right:-213px}.slider-g1{width:237px}}@media only screen and (max-width: 1250px){.slider-image{width:584px;height:350px}.slider-d1{width:584px;height:364px}.slider-d2{width:234px;right:65px;top:29px}.slider-p1{width:104px;left:111px;bottom:77px}.slider-p2{left:17px;bottom:109px;width:9px}.slider-p3{width:66px;left:107px;bottom:58px}.animate .slider-p3{left:19px;bottom:50px}.slider-dw{top:50px;left:69px;width:286px;height:37px}.slider-s1{width:752px;height:415px;border-radius:228px;top:-488px;right:-735px}.animate .slider-s1{top:-91px;right:-205px}.slider-g1{width:228px}}

/*cat carosel*/
.cat-carousel-area {
    border-bottom: .1rem solid #EAEAEA;
    border-top: .1rem solid #EAEAEA;
    padding-bottom: 3.8rem;
}
.cat-carousel-title {
    display: flex;
    justify-content: center;
    margin-top: -1.7rem;
}
.cat-carousel-title span {
    padding: 0 3rem;
    background-color: #fff;
    font-family: 'Gilroy';
    font-weight: 500;
    font-size: 2rem;
    line-height: 3.5rem;
}
.cat-carousel-wrapper {
    margin-top: 2.4rem;
    position: relative;
}
.cat-carousel-single {
    padding: .5rem 2.2rem;
    border: .1rem solid #9EE5FF;
    background-color: #F8FDFF;
    border-radius: 4.5rem;
    overflow: hidden;
    display: flex !important;
    align-items: center;
    height: 5.1rem;
    margin: 0 1rem;
    width: max-content;
    opacity: 0;
}
.cat-carousel-single .icon {
    width: 2.2rem;
    display: flex;
    margin-right: .4rem;
    flex-shrink: 0;
}
.cat-carousel-single span {
    width: calc(100% - 2.6rem);
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 500;
    flex-shrink: 0;
}
.cat-carousel-nav {
    width: 5.2rem;
    height: 5.2rem;
    background-color: #fff;
    outline: none;
    border: .1rem solid #CDF2FF;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 0;
    opacity: 0;
    transition: opacity .3s;
    transition-delay: 3s;
}
.animate .cat-carousel-nav {
    opacity: 1;
}
.cat-carousel-nav.cc-nav-prev {
    left: -7.5rem;
}
.cat-carousel-nav.cc-nav-next {
    right: -7.5rem;
}
@media only screen and (max-width: 1300px) {
    .cat-carousel-nav {
        position: static;
    }
    .cat-carousel-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .cat-carousel-items {
        width: calc(100% - 120px);
    }
}
@media only screen and (max-width: 1170px) {
    .cat-carousel-single, .cat-carousel-nav {
        opacity: 1;
    }
}
@media only screen and (max-width: 767px) {
    .cat-carousel-nav {
        width: 40px;
        height: 40px;
    }
    .cat-carousel-nav svg {
        width: 6px !important;
    }
    .cat-carousel-items {
        width: calc(100% - 90px);
    }
    .cat-carousel-single .icon {
        width: 18px;
        margin-right: 4px;
    }
    .cat-carousel-single span {
        width: calc(100% - 22px);
        font-size: 14px;
    }
    .cat-carousel-single {
        height: 40px;
        padding: 0 13px;
        margin: 0 5px;
    }
    .cat-carousel-title span {
        font-size: 14px;
        padding: 0 6px;
    }
    .cat-carousel-title {
        margin-top: -19px;
    }
    .cat-carousel-wrapper {
        margin-top: 12px;
    }
    .cat-carousel-area {
        padding-bottom: 26px;
    }
}
/*features*/
.features-area {
    padding-bottom: 14.2rem;
    display: none;
}
.title-row {
    text-align: center;
    padding: 9.4rem 0 7.7rem;
}
.title-row h4 {
    font-size: 1.7rem;
    line-height: 2.4rem;
    margin-bottom: .8rem;
    color: #2DB9EB;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    min-height: 2.4rem;
    margin-left: auto;
    margin-right: auto;
}
.solution-for-title-content .title-row h4 {
    min-height: 2.4rem;
    width: 12.6rem;
}
.title-row h2 {
    font-size: 4rem;
    line-height: 4.8rem;
    margin-bottom: .6rem;
    min-height: 4.8rem;
    margin-left: auto;
    margin-right: auto;
}
.solution-for-title-content .title-row h2 {
    width: 54.8rem;
    min-height: 4.8rem;
}
.solution-for-title-content .title-row h2 .animate-title-inner {
    transition-delay: .4s;
}
.title-row p {
    font-size: 1.6rem;
    line-height: 2.8rem;
    font-weight: 500;
    color: #505780;
    margin: 0 auto;
}
.solution-for-title-content .title-row p {
    min-height: 5.6rem;
}
.solution-for-title-content .title-row p .animate-title-inner {
    transition-delay: .8s;
}
.features-wrap {
    background-color: #EFFAFF;
    border: .1rem solid #EAEAEA;
    border-radius: 2rem;
    overflow: hidden;
}
.features-title {
    background-color: #fff;
    padding: 3.4rem 5.9rem 3.7rem 4.1rem;
    display: flex;
    border-bottom: .1rem solid #EAEAEA;
}
.ft-col1 {
    width: 33.333%;
    display: flex;
    align-items: center;
}
.ft-col1 .icon {
    width: 7.1rem;
    height: 7.1rem;
    border-radius: 2rem;
    background-color: #E9FFF5;
    display: ;
    align-items: center;
    justify-content: center;
    margin-right: 2.2rem;
}
.ft-col1 h2 {
    width: calc(100% - 9.3rem);
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 600;
}
.ft-col2 {
    width: 66.667%;
    line-height: 2.4rem;
    display: flex;
    align-items: center;
}
.features-items {
    padding: 0 3.3rem 4.5rem;
    display: flex;
    flex-wrap: wrap;
}
.features-single {
    margin-top: 2rem;
    border-radius: 2rem 0 2rem 2rem;
    padding: 3rem 3.9rem 2.3rem 2rem;
    display: flex;
    width: calc(33.333% - 1rem);
    margin-right: 1.5rem;
    position: relative;
}
.features-single:nth-child(3n) {
    margin-right: 0;
}
.features-single .icon {
    width: 4rem;
    margin-right: 1rem;
}
.features-single .fs-content {
    width: calc(100% - 5rem);
}
.fs-content h4 {
    font-size: 1.6rem;
    line-height: 2.2rem;
    font-weight: 500;
    font-family: 'Poppins';
    min-height: 4rem;
    display: flex;
    align-items: center;
    margin-bottom: .4rem;
}
.fs-content p {
    font-size: 1.2rem;
    line-height: 2.1rem;
    color: #6069A7;
}
.fs-link {
    width: 3.3rem;
    height: 3.3rem;
    background-color: #E6FFF3;
    border-radius: .6rem 0 .6rem .6rem;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: .6rem;
    right: .6rem;
    transition: all .4s;
    transition-delay: .3s;
    display: none;
}
.features-single:hover {
    background-color: #fff;
}
.features-single:hover .fs-link {
    display: flex;
}
.features-single-cta {
    width: calc(66.667% - 2.5rem);
    padding-bottom: 1rem;
    display: flex;
    align-items: flex-end;
}
.features-single-cta-inner {
    width: 100%;
    background-color: #fff;
    padding: 2.7rem 2.4rem 2.6rem 1.8rem;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
}
.btn.fsc-btn {
    width: 14rem;
    font-size: 1.1rem;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    height: 4.2rem;
}
.features-single-cta-inner .fsc-con {
    width: calc(100% - 14rem);
    display: flex;
    align-items: center;
}
.fsc-con .icon {
    width: 6.4rem;
    margin-right: 1.4rem;
}
.fsc-con .text {
    width: calc(100% - 7.8rem);
    font-family: 'Gilroy';
    font-weight: 700;
    max-width: 25.5rem;
    font-size: 1.8rem;
    line-height: 2.3rem;
}
.features-for-wrap {
    margin-top: 4rem;
    border: .1rem solid #E1E5F0;
    padding: 3rem 0 2.5rem;
    border-radius: 1.5rem;
    display: flex;
}
.features-for-col {
    width: 33.333%;
    border-right: .1rem solid #ECECEC;
    padding: 0 1.7rem;
}
.features-for-col:last-child {
    border-radius: ;
    border-right: 0;
}
.features-for-single-head {
    display: flex;
    border-bottom: .1rem solid #ECECEC;
    margin-bottom: 2.9rem;
    padding: 0 1.2rem;
}
.features-for-single-head .icon {
    width: 6.3rem;
    height: 6.3rem;
    border-radius: 1.8rem;
    background-color: #FFF2EB;
    align-items: center;
    justify-content: center;
    margin-right: 1.7rem;
    flex-shrink: 0;
}
.features-for-single-head.f2 .icon {
    background-color: #FAF7FF;
}
.features-for-single-head.f3 .icon {
    background-color: #F0F5FF;
}
.features-for-single-head .features-for-con {
    width: calc(100% - 8rem);
}
.features-for-single-head .features-for-con h4 {
    font-size: 2.2rem;
    line-height: 3.5rem;
}
.features-for-single-head .features-for-con p {
    min-height: 5.8rem;
    padding-bottom: .5rem;
    font-size: 1.2rem;
    line-height: 1.5rem;
    padding-top: .2rem;
}
.features-for-single {
    display: flex;
    padding: 0 2.5rem;
}
.features-for-single .icon {
    width: 3.9rem;
    margin-right: 1.3rem;
    flex-shrink: 0;
}
.features-for-con h4 {
    font-family: 'Poppins';
    font-size: 1.6rem;
    line-height: 2.2rem;
    padding: .6rem 0;
    font-weight: 500;
}
.features-for-con p {
    min-height: 8.2rem;
    padding-bottom: 1rem;
    font-size: 1.2rem;
    line-height: 2.1rem;
    color: #6069A7;
}
.features-for-single:last-child .features-for-con p {
    min-height: 6rem;
}
.features-webes-wrap {
    margin-top: 5.6rem;
    display: flex;
}
.features-webes-cta {
    width: 37rem;
    margin-left: 2.5rem;
    background: linear-gradient(98.81deg, #1D2A80 11.09%, #1120C4 120.19%), #1D2A80;
    border: .1rem solid #EAEAEA;
    border-radius: 1.5rem;
    padding: 4.6rem 4.3rem 4.2rem 4rem;
    flex-shrink: 0;
}
.features-webes-items {
    width: calc(100% - 38.5rem);
    border: .1rem solid #ECECEC;
    border-radius: 1.5rem;
    background-color: #F0FBF8;
}
.features-webes-items .features-for-single-head {
    padding: 2.5rem 2.8rem;
    border: none;
    margin: 0;
    background-color: #fff;
    border-radius: 1.5rem 1.5rem 0 0;
}
.features-webes-items .features-for-single-head .features-for-con p {
    min-height: auto;
    color: #1D2A80;
    padding: 0;
    line-height: 1.9rem;
}
.features-webes-items .features-for-single-head .features-for-con h4 {
    padding-top: 0;
    padding-bottom: .4rem;
    font-family: 'Gilroy';
    font-weight: 600;
}
.features-webes-items .features-for-single-head .icon {
    background-color: #DAF5FF;
}
.features-webes-items .features-for-single-head .features-for-con {
    max-width: 41.9rem;
}
.features-webes-items-row {
    padding: 2.9rem 1.7rem 0 1.7rem;
    display: flex;
}
.features-webes-col {
    width: 50%;
    flex-shrink: 0;
}
.features-webes-col .features-for-single:last-child .features-for-con p {
    min-height: 8.6rem;
}
.features-webes-cta h2 {
    font-size: 3.3rem;
    line-height: 4rem;
    color: #9EE6FF;
    margin-bottom: 5.2rem;
}
.features-webes-cta-inner {
    position: relative;
}
.webes-cta-p2 {
    width: 11.8rem;
    right: -6.2rem;
    position: absolute;
    top: 16rem;
    border-radius: .8rem;
    transition: top 1.5s, opacity .5s;
    opacity: 1;
}
.animate .webes-cta-p2 {
    top: 11rem;
    opacity: 1;
}
.webes-cta-p3 {
    width: 13.5rem;
    position: absolute;
    top: 4.7rem;
    right: -14.8rem;
    transition: right 1.5s, opacity .5s;
    opacity: 1;
}
.animate .webes-cta-p3 {
    right: -9.8rem;
    opacity: 1;
}
.promo-section-area {
    background-color: #F6FCFF;
    padding-top: 11.8rem;
    padding-bottom: 6.4rem;
    position: relative;
}
.promo-section-row {
    display: flex;
    position: relative;
}
.promo-items {
    width: 57.7rem;
    padding-right: 5.4rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    z-index: 5;
}
.promo-section-svg {
    position: absolute;
    right: 82rem;
    top: -41rem;
}
.promo-section-svg path {
    transition: all 5s;
    stroke-dasharray: 3000;
    stroke-dashoffset: 3000;
    transition-delay: 1s;
}
.promo-section-svg.animate path {
    stroke-dasharray: 6000;
}
.promo-items {
    width: 57.7rem;
    padding-right: 5.4rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.promo-section-content {
    width: calc(100% - 57.7rem);
    padding-top: 4.5rem;
}
.promo-section-content h2 {
    min-height: 9.8rem;
}
.promo-single {
    width: calc(50% - 1.7rem);
    background-color: #fff;
    margin-bottom: 3.4rem;
    padding: 3.4rem 2rem 3.3rem 3.8rem;
    transition: background .3s, backdrop-filter .3s, transform 1s;
    box-shadow: .8rem .531rem 4.786rem rgba(236, 249, 255, 0.6);
    border-radius: 1.2rem;
    position: relative;
    transform: scale(.8);
}
.promo-single:nth-child(2) {
    transition-delay: 0s, 0s, .3s;
}
.promo-single:nth-child(3) {
    transition-delay: 0s, 0s, .3s;
}
.promo-single:nth-child(4) {
    transition-delay: 0s, 0s, 0s;
}
.animate .promo-single {
    transform: scale(1);
}
.promo-single:hover {
    background: rgba(253, 253, 253, 0.6);
    backdrop-filter: blur(3px);
}
.promo-single::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: -.3rem;
    left: -.3rem;
    border: .3rem solid #fff;
    border-radius: 1.2rem;
    transition: all .3s;
    display: none;
}
.promo-single:hover::after {
    display: block;
}
.promo-single:nth-child(2n) {
    top: -3.3rem;
}
.promo-single .icon {
    height: 3.5rem;
    align-items: center;
    margin-bottom: 1.4rem;
}
.promo-single h2 {
    height: 4.4rem;
    font-size: 1.6rem;
    line-height: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}
.promo-single p {
    min-height: 11rem;
    font-size: 1.2rem;
    line-height: 1.8rem;
    color: #505780;
}
.promo-section-content h2 {
    margin-bottom: 2.7rem;
}
.promo-section-content p {
    color: #505780;
    margin-bottom: 4.5rem;
    min-height: 16.5rem;
}
.promo-section-content p .animate-title-inner {
    transition-delay: .5s;
}
.promo-section-content .btn {
    width: 20.8rem;
    height: 4.3rem;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    background-color: #1D2A80;
    transform: scale(0);
    transition: transform .5s;
    transition-delay: 1.2s;
}
.animate.promo-section-content .btn {
    transform: scale(1);
}
.promo-section-content .btn:hover {
    background-color: #2DB9EB;
}
.promo-video-area {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top center;
}
.promo-video-wrap {
    border-radius: 1.5rem;
    position: relative;
    overflow: hidden;
    background-color: #1D2A80;
    padding: 7.5rem 6.8rem 6.1rem 6.8rem;
    color: #DCF6FF;
}
.promo-video-wrap::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, #1D2A80 39.05%, rgba(29, 42, 128, 0) 98.9%);
}
.promo-video-upper {
    display: flex;
    margin-bottom: 2.4rem;
    position: relative;
    z-index: 5;
}
.pvu-text {
    width: 33.5rem;
    padding-right: 2rem;
}
.pvu-list {
    width: calc(100% - 33.5rem);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.pvu-text h2 {
    line-height: 5.5rem;
    letter-spacing: -0.01em;
    color: #9EE6FF;
    font-weight: 900;
    margin-bottom: 1.7rem;
}
.pvu-text h2 .animate-title {
    min-height: 4.8rem;
}
.pvu-text-ttl2 .animate-title-inner {
    transition-delay: .5s!important;
}
.pvu-text h2 span {
    font-weight: 400;
}
.pvu-text a {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    line-height: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #9EE5FF;
}
.pvu-text span {
    margin-right: .4rem;
    transition: all .3s;
}
.pvu-text a:hover span {
    margin-right: .8rem;
}
.pvu-list-single {
    width: calc(50% - 1.1rem);
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.1rem;
}
.pvu-list-single .icon {
    width: 2.5rem;
    margin-right: 1.5rem;
    margin-top: .3rem;
}
.pvu-list-single .text {
    width: calc(100% - 4rem);
    font-size: 1.4rem;
    line-height: 2.7rem;
    color: #DCF6FF;
}
.promo-video-bottom {
    background-color: #DCF6FF;
    border-radius: 1.5rem;
    display: flex;
    position: relative;
    z-index: 5;
}
.pvw-p1 {
    width: auto;
    position: absolute;
    top: 0;
    right: -10rem;
    height: 100%;
    transition: all 1.5s;
}
.animate .pvw-p1 {
    right: 0;
}
.promo-video-thumb {
    width: 37.2rem;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 24.7rem;
    border-radius: 0 1.5rem 1.5rem 0;
}
.promo-video-thumb .vid-favicon {
    width: 22.7rem;
    position: absolute;
    top: -7.7rem;
    right: -8.2rem;
      transform: translatey(0px);
      -webkit-animation: float 6s ease-in-out infinite;
              animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-2rem);
  }
  100% {
    transform: translatey(0px);
  }
}
.promo-video-thumb-play {
    width: 7.1rem;
    margin-top: 2.1rem;
    transition: all 1.5s;
}
.promo-video-thumb:hover .promo-video-thumb-play {
    translate: ;
    transform: scale(1.2);
}
.promo-video-content {
    width: calc(100% - 37.2rem);
    padding: 4.3rem 4.4rem 3.4rem 4.2rem;
}
.promo-video-content h2 {
    font-size: 2.4rem;
    line-height: 3.5rem;
    letter-spacing: -0.01em;
    margin-bottom: 1.9rem;
}
.promo-video-content .btn {
    width: 20.8rem;
    height: 4.3rem;
    background-color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #1D2A80;
    margin-bottom: 2.4rem;
}
.promo-video-content .btn:hover {
    background-color: #9EE6FF;
}
.pvc-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.pvc-list-single {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    line-height: 1.2;
    color: #1D2A80;
    font-weight: 500;
    flex-shrink: 0;
    margin-right: 1.5rem;
}
.pvc-list-single .icon {
    margin-right: .4rem;
}
.promo-video-thumb-play {
    width: 7.1rem;
    margin-top: 2.1rem;
}
.solution-for-area .container {
    position: relative;
}
@media only screen and (max-width: 1170px) {
    .promo-section-svg {
        display: none;
    }
    .promo-single, .promo-section-content .btn {
        transform: scale(1);
    }
    .animate-title .animate-title-inner {
        position: static !important;
    }
    .animate-title {
        min-height: auto !important;
        height: auto;
    }
    .promo-video-wrap {
        padding: 50px 25px 55px;
    }
    .pvu-text {
        width: 250px;
    }
    .pvu-list {
        width: calc(100% - 250px);
    }
}
@media only screen and (max-width: 991px){
    .promo-section-row {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
    .promo-items {
        width: 100%;
        padding-right: 0;
    }
    .promo-single:nth-child(2n) {
        top: 0;
    }
    .promo-single {
        width: calc(50% - 7px);
        margin-bottom: 15px;
    }
    .promo-section-area {
        padding-top: 63px;
        padding-bottom: 17px;
    }
    .promo-single h2 {
        height: auto;
    }
    .promo-single p {
        min-height: 46px;
    }
    .promo-section-content {
        width: 100%;
        padding-top: 0;
        margin-bottom: 44px;
    }
    .promo-section-content h2 {
        font-size: 32px;
        line-height: 36px;
        margin-bottom: 15px;
    }
    .promo-section-content p {
        line-height: 28px;
        margin-bottom: 22px;
    }
    .promo-video-wrap {
        border-radius: 9px;
    }
    .promo-video-wrap {
        border-radius: 9px;
        padding: 40px 15px 15px;
    }
    .promo-video-upper {
        flex-wrap: wrap;
    }
    .pvu-text {
        width: 100%;
        margin-bottom: 20px;
    }
    .pvu-text h2 {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 12px;
    }
    .pvu-list {
        width: 100%;
    }
    .pvu-list-single .icon {
        margin-right: 5px;
        margin-top: 0;
    }
    .pvu-list-single .text {
        width: calc(100% - 30px);
        line-height: 21px;
    }
    .promo-video-bottom {
        border-radius: 9px;
    }
    .promo-video-content {
        padding: 20px 15px;
    }
    .pvc-list-single {
        font-size: 10px;
        margin-right: 8px;
    }
}
@media only screen and (max-width: 767px){
    .promo-single {
        width: 100%;
        padding: 23px 15px 24px 15px;
        border-radius: 6px;
    }
    .promo-single .icon {
        margin-bottom: 8px;
    }
    .promo-single h2 {
        margin-bottom: 7px;
    }  
    .promo-single p {
        min-height: auto;
        font-size: 14px;
        line-height: 22px;
    }
    .pvu-list-single {
        width: 100%;
        margin-bottom: 10px;
    }
    .promo-video-bottom {
        flex-wrap: wrap;
    }
    .promo-video-content {
        width: 100%;
        padding: 22px 15px 23px;
    }
    .promo-video-content h2 {
        line-height: 29px;
    }
    .pvc-list {
        flex-direction: column;
        align-items: flex-start;
    }
    .pvc-list-single {
        font-size: 12px;
        margin-right: 0;
        margin-bottom: 9px;
    }
    .promo-video-content .btn {
        margin-bottom: ;
        margin-bottom: 19px;
        max-width: 100%;
    }
    .promo-video-thumb {
        min-height: 186px;
        width: 100%;
        border-radius: 0 0 9px 9px;
    }
    .promo-video-thumb .vid-favicon {
        max-width: 150px;
        right: -59px;
        top: -56px;
    }
    .promo-video-thumb-play {
        width: 65px;
        margin-top: 28px;
    }
    .pvw-p1 {
        display: none;
    }
}

/*solution for*/
.solution-for-row {
    margin-left: calc((100% - 114rem) / 2 );
    position: relative;
    display: flex;
    z-index: 1;
}
.solution-for-list {
    width: 29rem;
    background: linear-gradient(149.68deg, rgba(255, 255, 255, 0.49) 0.74%, rgba(248, 253, 255, 0.49) 102.64%);
    backdrop-filter: blur(5px);
    border-radius: .9rem;
    border: .1rem solid #F0FBFF;
    padding: 2.9rem 1.6rem 0 2rem;
    position: relative;
    z-index: 1;
}
.solution-for-list ul {
    height: calc(100% - 7.7rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.solution-for-list ul li a {
    display: flex;
    align-items: center;
    min-height: 5rem;
    padding: .5rem 1.4rem .5rem 2.3rem;
    border-radius: .5rem;
    transition: all .3s;
    margin-bottom: 1rem;
}
.solution-for-list ul li a:hover, .solution-for-list ul li.active a {
    background-color: #EFFBFF;
}
.solution-for-list ul li a .icon {
    width: 2.3rem;
    margin-right: 1rem;
}
.solution-for-list ul li a span {
    width: calc(100% - 3.3rem);
    font-size: 1.5rem;
    font-family: 'Gilroy';
    font-weight: 600;
}
.sfl-all {
    display: flex;
    align-items: center;
    min-height: 6.1rem;
    justify-content: center;
    border-top: .1rem solid #F0F2FF;
    margin-top: 1.6rem;
    font-size: 1.2rem;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 500;
}
.sfl-all .icon {
    margin-left: .6rem;
}
.solution-for-items {
    width: calc(100% - 29rem);
    padding-left: 1.7rem;
    position: relative;
    z-index: 1;
}
.solution-for-sigle-row {
    height: 100%;
    display: none;
}
.solution-for-sigle {
    width: calc(25% - 1.7rem);
    margin-right: 1.7rem;
    height: 100%;
    position: relative;
    border-radius: 1rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 43.3rem;
    padding: 3.2rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    transition: all 1s;
}
.solution-for-sigle:first-child {
    z-index: 4;
}
.solution-for-sigle:nth-child(2) {
    z-index: 3;
    left: calc((-25% - 1.7rem) / 2);
}
.solution-for-sigle:nth-child(3) {
    z-index: 2;
    left: calc((-50% - 1.7rem) / 2);
}
.solution-for-sigle:nth-child(4) {
    z-index: 1;
    left: calc((-75% - 1.7rem) / 2);
}
.solution-for-sigle-row.active .solution-for-sigle {
    left: 0;
}
.solution-for-sigle::after {
    content: '';
    width: 100%;
    height: 17.9rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    position: absolute;
    left: 0;
    bottom: 0;
}
.solution-for-sigle h2 {
    color: #fff;
    font-size: 2.4rem;
    line-height: 2.6rem;
    transition: all .5s;
    position: relative;
    z-index: 1;
}
.solution-for-sigle p {
    color: #fff;
    font-size: 1.4rem;
    line-height: 2.2rem;
    margin-top: 1.5rem;
    display: none;
    position: relative;
    z-index: 1;
}
.solution-for-sigle:hover p {
    display: none;
}
.solution-for-sigle.solution-for-sigle-explore {
    background-color: #EBFAFF;
    align-items: center;
    justify-content: center;
    border: .1rem dashed #AFEAFF;
    font-family: 'Gilroy';
    font-weight: 700;
    font-size: 2.4rem;
    text-align: center;
    line-height: 2.6rem;
}
.solution-for-sigle.solution-for-sigle-explore .icon {
    width: 4.3rem;
    height: 4.3rem;
    background-color: #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
    box-shadow: 0px 1.1rem 2.4rem #CEF3FF;
}
.solution-for-title-content .title-row p {
    max-width: 39.2rem;
}
.solution-for-sigle-row:first-child {
    display: flex;
}
.solution-for-row.animate .solution-for-sigle-row:first-child .solution-for-sigle {
    left: 0;
}
.solution-for-sigle.solution-for-sigle-explore::after {
    display: none;
}
.sfr-p1 {
    width: 4.4rem;
    position: absolute;
    left: -2.9rem;
    bottom: 2.2rem;
}
.sfr-p2 {
    width: 3.6rem;
    position: absolute;
    bottom: -2.7rem;
    left: 1.6rem;
}
.sfr-p3 {
    width: 5.3rem;
    position: absolute;
    left: 31rem;
    bottom: -5.3rem;
}
.solution-for-items-area {
    position: relative;
}
.solution-for-svg {
    position: absolute;
    left: -26rem;
    top: -2.7rem;
}
@media only screen and (max-width: 1500px) {
    .solution-for-sigle {
        min-height: 350px;
        width: calc(100% - 10px);
        margin-right: 10px;
        border-radius: 7px;
    }
    .solution-for-list ul li a {
        padding-top: 0;
        padding-bottom: 0;
        margin-bottom: 0;
    }  
    .solution-for-title-content .title-row {
        padding-bottom: 41px;
    }
    .solution-for-sigle {
        min-height: 360px;
        width: calc(100% - 10px);
        margin-right: 10px;
        border-radius: 7px;
        padding: 30px 20px;
    }
}
@media only screen and (max-width: 1170px) {
    .solution-for-title-content .title-row {
        padding-top: 73px;
    }
    .solution-for-row {
        margin: 0 15px;
        flex-wrap: wrap;
    }
    .solution-for-list {
        width: 100%;
        margin-bottom: 20px;
        padding: 0;
    }
    .solution-for-items {
        width: 100%;
        padding: 0;
    }
    .solution-for-sigle.solution-for-sigle-explore {
        margin-right: 0;
    }
    .solution-for-sigle {
        min-height: 270px;
        padding: 20px 15px;
    }
    .solution-for-sigle h2 {
        font-size: 20px;
        line-height: 23px;
    }
    .solution-for-title-content .title-row h4, .solution-for-title-content .title-row h2 {
        width: auto;
    }
    .solution-for-svg {
        display: none;
    }
}
@media only screen and (max-width: 650px) {
    .solution-for-sigle-row {
        flex-wrap: wrap;
    } 
    .solution-for-sigle:nth-child(2n) {
        margin-right: 0;
    }
    .solution-for-sigle {
        height: 150px;
        width: calc(50% - 5px);
        margin-bottom: 10px;
        border-radius: 5px;
        min-height: auto;
        left: 0 !important;
    }
    .solution-for-sigle.solution-for-sigle-explore .icon {
        margin-top: 10px;
        flex-shrink: 0;
        width: 35px;
        height: 35px;
    }
    .solution-for-sigle.solution-for-sigle-explore {
        font-size: 16px;
        line-height: 19px;
    }
    .solution-for-title-content .title-row h2 {
        font-size: 32px;
        line-height: 38px;
        margin-bottom: 9px;
    }
    .solution-for-title-content .title-row p {
        line-height: 23px;
    }
    .solution-for-title-content .title-row {
        padding-bottom: 30px;
    }
    .solution-for-list ul li a {
        padding: 0 15px;
    }
    .solution-for-list ul li a .icon {
        margin-right: 5px;
    }
}
/*lead tools*/
.lead-tools-area {
    padding-top: 17.1rem;
    padding-bottom: 14.5rem;
}
.lead-tools-title.title-row p {
    max-width: 77rem;
    margin: 0 auto;
    min-height: 5.6rem;
}
.lead-tools-title.title-row h4 {
    width: 13.3rem;
    min-height: 2.4rem;
}
.lead-tools-title.title-row h2 {
    width: 64.6rem;
    min-height: 4.8rem;
}
.lead-tools-title.title-row h2 .animate-title-inner {
    transition-delay: .4s;
}
.lead-tools-title.title-row p .animate-title-inner {
    transition-delay: .8s;
}
.lead-tools-wrap {
    display: flex;
    align-items: center;
}
.lead-tools-image {
    width: 67.4rem;
    display: flex;
    justify-content: flex-end;
    padding-right: 11.5rem;
}
.lead-tools-single {
    display: none;
    position: relative;
    width: 50.5rem;
}
.lead-tools-single:first-child {
    display: block;
}
.lts-img {
    border-radius: 1rem;
    width: 100%;
    height: 44.5rem;
    object-fit: contain;
    position: relative;
    z-index: 5;
}
.lts-p1 {
    width: 16.1rem;
    position: absolute;
    bottom: 3.5rem;
    right: -7.7rem;
    filter: drop-shadow(0 1.6rem 6.6rem rgba(168, 168, 168, 0.31));
    z-index: 6;
}
.its-bg {
    width: 47.8rem;
    height: 47.8rem;
    position: absolute;
    background-color: #DCF6FF;
    border-radius: 3.5rem;
    top: -5rem;
    left: -3.6rem;
    transform: rotate(-5.09deg);
    z-index: 4;
}
.its-border {
    width: 49.7rem;
    height: 49.7rem;
    border-radius: 3.5rem;
    top: -6.9rem;
    position: absolute;
    left: -2rem;
}
.lead-tools-items {
    width: calc(100% - 67.4rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.lti-col {
    width: calc(50% - 1.1rem);
}
.lti-single {
    background-color: #fff;
    box-shadow: 0px .7rem 4.3rem rgba(209, 209, 209, 0.3);
    border-radius: 15px;
    display: block;
    margin-bottom: 2.2rem;
    padding: 2.5rem 1.5rem 2.6rem 2rem;
}
.lti-single .icon {
    width: 3.6rem;
    height: 3.6rem;
    background-color: #DCF6FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.9rem;
}
.lti-single h2 {
    font-size: 1.6rem;
    line-height: 2rem;
    margin-bottom: 1.4rem;
    transition: all .3s;
}
.lti-single p {
    font-size: 1.2rem;
    line-height: 2rem;
    transition: all .3s;
}
.lti-single.active, .lti-single:hover {
    background-color: #1D2A80;
    box-shadow: 0px .7rem 1.9rem rgba(209, 209, 209, 0.25);
}
.lti-single.active h2, .lti-single:hover h2, .lti-single.active p, .lti-single:hover p {
    color: #fff;
}
@media only screen and (max-width: 1600px) {
    .lead-tools-area {
        padding-top: 62px;
        padding-bottom: 106px;
    }  
}
@media only screen and (max-width: 1170px) {
    .lead-tools-image {
        width: calc(100% - 42.8rem);
        padding-right: 41px;
    }
    .lead-tools-items {
        width: 42.8rem;
    }
    .lts-p1, .its-bg, .its-border {
        display: none;
    }
    .lead-tools-area {
        padding-bottom: 62px;
    }
    .lead-tools-area .title-row {
        padding-bottom: 43px;
    }
}
@media only screen and (max-width: 991px) {
    .lead-tools-image {
        display: none;
    }
    .lead-tools-items {
        width: 100%;
    }
    .lead-tools-title.title-row h2 {
        width: auto;
        font-size: 32px;
        line-height: 38px;
        margin-bottom: 9px;
    }
    .lead-tools-title.title-row p {
        font-size: ;
        line-height: 28px;
    }
    .title-row.lead-tools-title {
        padding-top: 69px;
        padding-bottom: 38px;
    }
    .lti-single {
        padding: 20px 15px;
        border-radius: 8px;
        margin-bottom: 15px;
    }
    .lti-col {
        width: calc(50% - 7px);
    }
    .lti-single.active, .lti-single:hover {
        background-color: #fff;
        box-shadow: 0px .7rem 4.3rem rgba(209, 209, 209, 0.3);
    }
    .lti-single.active h2, .lti-single:hover h2, .lti-single.active p, .lti-single:hover p {
        color: inherit;
    }
}
@media only screen and (max-width: 500px) {
    .lead-tools-items {
        flex-wrap: wrap;
    }
    .lti-col {
        width: 100%;
    }
}
/*cta*/
.cta-row {
    position: relative;
}
.cta-row-main {
    position: relative;
    z-index: 5;
}
.cta-content {
    width: calc(100% - 10.8rem);
    background: linear-gradient(106.75deg, #1D2A80 7.99%, #1120C4 116.84%);
    border-radius: .9rem;
    height: 17.8rem;
    position: relative;
    padding: 1rem 7.7rem 1rem 17.7rem;
    margin-left: 8.6rem;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.cta-content::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    transition: all 1s;
}
.animate .cta-content::after {
    width: 0;
}
.cta-arrow {
    width: 27.3rem;
    position: absolute;
    z-index: 1;
    left: 0;
    top: -1.9rem;
}
.cta-btn {
    width: 35rem;
}
.cta-text {
    width: calc(100% - 35rem);
    font-family: 'Gilroy';
    font-weight: 700;
    color: #fff;
    font-size: 2.7rem;
    line-height: 3.9rem;
    position: relative;
}
.cta-text::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #1A288E;
    position: absolute;
    top: 0;
    right: 0;
    transition: all .8s;
    transition-delay: 1s;
}
.animate .cta-text::after {
    width: 0;
}
.cta-text div {
    display: inline-block;
}
.cta-text .color {
    color: #9EE5FF;
}
.cta-text .underline {
    position: relative;
}
.cta-text .underline img {
    width: 8.4rem;
    position: absolute;
    bottom: 0;
    left: 0;
}
.cta-btn {
    width: 35rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cta-btn a {
    width: calc(50% - 1.1rem);
    height: 4.8rem;
    background-color: #fff;
    border-radius: 5.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: 700;
    transition: all .7s;
    transform: scale(0);
    transition-delay: 1s;
}
.animate .cta-btn a {
    transform: scale(1);
}
.cta-btn .btn-fill {
    background-color: #9EE5FF;
}
.cta-btn a:hover {
    background-color: #9EE5FF;
}
.cta-btn .btn-fill:hover {
    background-color: #fff;
}
.animate .cta-btn a.btn-white {
    transition-delay: 1.3s;
}
.cta-line {
    height: 100%;
    position: absolute;
    top: 0;
    right: -7.4rem;
    transition: all .5s;
    transition-delay: 1.5s;
}
.animate .cta-line {
    right: 0;
}
.cta-logo {
    width: 14.5rem;
    position: absolute;
    right: -14.5rem;
    bottom: -13.1rem;
    transition: all .7s;
    transition-delay: 1.5s;
}
.animate .cta-logo {
    right: 0;
    bottom: 0;
}
.cta-shape {
    width: calc(100% - 15.3rem);
    position: absolute;
    top: 0;
    right: 2.2rem;
    background: linear-gradient(88.54deg, #8DE1FF 42.59%, #8247F5 122.32%), #9EE5FF;
    height: 17.7rem;
    border-radius: .9rem;
    transition: all .7s;
    transition-delay: 1s;
}
.animate .cta-shape {
    right: 0;
    top:  2.3rem;
}
@media only screen and (max-width: 1170px) {
    .cta-arrow {
        display: none;
    }
    .cta-content {
        margin: 0;
        width: 100%;
        height: auto;
        border-radius: 5px;
        padding: 26px 15px;
    }
    .cta-logo {
        display: none;
    }
    .cta-btn {
        position: relative;
        z-index: 1;
    } 
    .cta-shape {
        width: 100%;
        border-radius: 5px;
        height: 100%;
    }
    .animate .cta-shape {
        right: -15px;
        top: 15px;
    }
}
@media only screen and (max-width: 767px) {
    .cta-content {
        flex-wrap: wrap;
    }
    .cta-text {
        width: 100%;
        margin-bottom: 18px;
        font-size: 22px;
        line-height: 28px;
    }
    .cta-btn {
        width: 100%;
        justify-content: flex-start;
    }
    .cta-btn a {
        width: 188px;
        height: 40px;
        margin-right: 15px;
    }
}
@media only screen and (max-width: 500px) {
    .cta-btn {
        flex-direction: column;
        align-items: flex-start;
    }
    .cta-btn a {
        margin-right: 0;
        max-width: 100%;
    }
    .cta-btn a:not(:first-child) {
        margin-top: 12px;
    }
}

/*dashboard-tab-area*/
.dashboard-tab-area {
    margin: 16.6rem 7.3rem 13.8rem 7.3rem;
    position: relative;
}
.dashboard-tab-bg-top {
    background-color: #F8F8F8;
    border-radius: 3rem;
    height: 69.2rem;
    padding-top: 8.3rem;
    margin-bottom: 2rem;
}
.dtbt-title {
    max-width: 79.3rem;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 4.2rem;
    min-height: 9.8rem;
}
.dtbt-title span {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top left;
    color: #2DB9EB;
}
.dtbt-form {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40.2rem;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    min-height: 4.5rem;
}
.dtbt-form input[type="text"] {
    width: 26.7rem;
    max-width: 100%;
    margin-right: 1.2rem;
    height: 4.5rem;
    border-radius: 5rem;
    border: .1rem solid #F8F8F8;
    background-color: #fff;
    outline: none;
    padding: .5rem 2rem;
    color: #1D2A80;
    font-family: 'Poppins';
    font-size: 1.2rem;
    font-weight: 500;
    position: absolute;
    top: 100%;
    left: 0;
    transition: top .7s;
    transition-delay: .4s;
}
.animate .dtbt-form input[type="text"] {
    top: 0;
}
.dtbt-form input[type="text"]::placeholder {
  color: #C4DEE8;
  opacity: 1;
}
.dtbt-form input[type="text"]:-ms-input-placeholder {
  color: #C4DEE8;
}
.dtbt-form input[type="text"]::-ms-input-placeholder {
  color: #C4DEE8;
}
.dtbt-form input[type="submit"] {
    width: 12.3rem;
    height: 4.5rem;
    border-radius: 5rem;
    border: none;
    outline: none;
    background-color: #9EE5FF;
    font-family: 'Poppins';
    text-transform: uppercase;
    color: #1D2A80;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .3s, top .7s;
    position: absolute;
    top: 100%;
    right: 0;
    transition-delay: 0s, .8s;
}
.animate .dtbt-form input[type="submit"] {
    top: 0;
}
.dtbt-form input[type="submit"]:hover {
    background-color: #fff;
}
.dashboard-tab-bg-top .container {
    position: relative;
    height: 100%;
}
.dtbt-p1 {
    width: 29rem;
    height: 0;
    background-color: #41D5FF;
    transform: matrix(-0.95, 0.01, 0.36, 1, 0, 0);
    border-radius: .9rem;
    position: absolute;
    left: 6.2rem;
    bottom: -2.6rem;
    transition: all .7s;
    transition-delay: .4s;
}
.animate .dtbt-p1 {
    height: 40.3rem;
}
.dtbt-p2 {
    width: 13.4rem;
    height: 18rem;
    background: #C3DBFF;
    transform: matrix(-0.95, 0.01, 0.36, 1, 0, 0);
    border-radius: .7rem;
    position: absolute;
    right: 23.5rem;
    bottom: 0;
    transition: all .7s;
    transition-delay: .8s;
}
.animate .dtbt-p2 {
    right: 10.5rem;
}
.dashboard-tab-bg-bottom {
    width: 100%;
    height: 33.7rem;
    background: linear-gradient(90.92deg, #8DE1FF -1.53%, #8247F5 152.73%), #EBFAFF;
    border-radius: 3rem;
    transition: transform 3s;
    transform: skew(30deg, 0deg);
}
.animate .dashboard-tab-bg-bottom {
    transform: skew(0deg, 0deg);
}
.dashboard-tab-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.dashboard-tab-main {
    position: relative;
    z-index: 9;
    padding-top: 8.3rem;
    padding-bottom: 8.6rem;
}
.dashboard-tab-upper {
    margin-bottom: 6.8rem;
}
.dashboard-tab-single {
    display: none;
    position: relative;
}
.dashboard-tab-single:first-child {
    display: flex;
}
.dts-mobile-image {
    display: none;
}
.dts-image {
    width: 75.6rem;
    margin-left: 19.2rem;
    filter: drop-shadow(.721515rem 3.93639rem 6.5rem rgba(174, 174, 174, 0.161));
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
/*    transform: scaleY(.8);
    transition: transform .7s;*/
}
/*.animate .dts-image {
    transform: scaleY(1);
}*/
.dts-sub {
    width: 32rem;
    position: absolute;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    left: -2rem;
}
.dts-mod-upper.mod-upper1 {
    width: 13rem;
    height: 4.6rem;
}
.dts-mod-upper.mod-upper2 {
    width: 16.5rem;
    height: 4.6rem;
}
.dts-mod-upper.mod-upper3 {
    width: 32rem;
    height: 21.3rem;
}
.dts-mod-upper.mod-upper4 {
    width: 18rem;
    height: 4.6rem;
}
.dts-mod-upper > * {
    transition: bottom .7s;
    position: absolute;
    bottom: 100%;
}
.animate .dts-mod-upper > * {
    bottom: 0;
}
.dts-mod {
    background-color: #FFFFFF;
    border-radius: 4.6rem;
    min-height: 4.6rem;
    padding: .5rem 2rem;
    display: flex;
    align-items: center;
    width: max-content;
    box-shadow: 0px 1.1rem 4.4rem rgba(191, 222, 253, 0.29);
}
.dts-mod-upper {
    display: flex;
    overflow: hidden;
    position: relative;
}
.dts-mod-upper:not(:first-child) {
    margin-top: 1.5rem;
}
.mod1 {
    transition-delay: 1s;
}
.mod2 {
    transition-delay: 1.4s;
}
.mod3 {
    transition-delay: 1.8s;
}
.mod4 {
    transition-delay: 2.2s;
}
.dts-mod .icon {
    width: 2rem;
    margin-right: .4rem;
}
.dts-mod > span {
    font-size: 1rem;
    line-height: 1.2;
    width: calc(100% - 2.4rem);
    font-weight: 600;
}
.dts-p2 {
    width: 32rem;
    border-radius: 1.5rem;
}
.dashboard-tab-items {
    margin-bottom: 6.7rem;
}
.dashboard-tab-nav ul {
    width: 38.7rem;
    margin: 0 auto;
    border-radius: 5.3rem;
    background-color: rgba(255, 255, 255, 0.5);
    border: .1rem solid #fff;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: space-between;
}
.dashboard-tab-nav ul::after {
    width: 50%;
    height: 100%;
    border-radius: 5.3rem;
    background-color: #fff;
    content: '';
    position: absolute;
    display: none;
}
.dashboard-tab-nav ul li {
    width: 50%;
    position: relative;
    z-index: 1;
}
.dashboard-tab-nav ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 5.5rem;
    border-radius: 5.3rem;
    font-size: 1.3rem;
    line-height: 1.4rem;
    font-weight: 600;
}
.dashboard-tab-nav ul li a .icon {
    width: 2.5rem;
    margin-right: .6rem;
    justify-content: center;
}
.dashboard-tab-nav ul li a span {
    width: 12rem;
}
.dashboard-tab-nav ul li.active a {
    background-color: #fff;
}
@media only screen and (max-width: 1366px) {
    .dashboard-tab-area {
        margin-left: 15px;
        margin-right: 15px;
    }
    .dashboard-tab-bg-top {
        border-radius: 25px;
        height: 588px;
        padding-top: 70px;
        margin-bottom: 17px;
    }
    .dtbt-p1 {
        width: 246px;
        height: 0;
        left: 53px;
        bottom: -22px;
    }
    .animate .dtbt-p1 {
        height: 342px;
    }
    .dtbt-p2 {
        width: 114px;
        height: 153px;
        right: 276px;
    }
    .animate .dtbt-p2 {
        right: 187px;
    }
    .dashboard-tab-bg-bottom {
        height: 286px;
        border-radius: 25px;
    }
    .dashboard-tab-main {
        padding-top: 70px;
        padding-bottom: 73px;
    }
    .dashboard-tab-upper {
        margin-bottom: 58px;
    }
    .dtbt-title {
        margin-bottom: 36px;
    }
    .dashboard-tab-items {
        margin-bottom: 57px;
    }
    .dts-image {
        width: 643px;
        margin-left: calc(163px + 96px);
    }
    .dts-sub {
        width: 272px;
        left: 76px;
    }
    .dts-mod {
        border-radius: 39px;
        min-height: 39px;
        margin-top: 13px;
        padding: 4px 17px;
        box-shadow: 0px 9px 37px rgb(191 222 253 / 29%);
    }
    .dts-mod .icon {
        width: 17px;
        margin-right: 3px;
    }
    .dts-mod > span {
        font-size: 8px;
        line-height: 1.2;
        width: calc(100% - 20px);
    }
    .dts-mod-upper:not(:first-child) {
        margin-top: 12px;
    }
    .dts-mod-upper.mod-upper1 {
        width: 110px;
        height: 39px;
    }
    .dts-mod-upper.mod-upper2 {
        width: 140px;
        height: 39px;
    }
    .dts-mod-upper.mod-upper3 {
        width: 272px;
        height: 181px;
    }
    .dts-mod-upper.mod-upper4 {
        width: 153px;
        height: 39px;
    }
    .dts-p2 {
        width: 272px;
        border-radius: 13px;
    }
    .dashboard-tab-nav ul li a {
        height: 47px;
        border-radius: 45px;
    }
    .dashboard-tab-nav ul li a .icon {
        width: 15px;
        margin-right: 5px;
    }
    .dashboard-tab-nav ul li a span {
        width: 112px;
    }
}
@media only screen and (max-width: 1170px) {
    .dashboard-tab-area {
        margin-top: 90px;
        margin-bottom: 64px;
    }
}
@media only screen and (max-width: 991px) {
    .dts-ani-images, .dtbt-p1, .dtbt-p2 {
        display: none;
    }
    .dts-mobile-image {
        display: block;
    }
    .dashboard-tab-bg {
        height: 100%;
    }
    .dashboard-tab-bg-bottom {
        border-radius: 15px;
        transform: skew(0deg, 0deg);
        height: 200px;
    }
    .dashboard-tab-bg-top {
        height: calc(100% - 210px);
        margin-bottom: 10px;
        border-radius: 15px;
    }
    .dashboard-tab-items {
        margin-bottom: 49px;
    }
    .dtbt-title {
        max-width: 100%;
        font-size: 32px;
        line-height: 37px;
        margin-bottom: 25px;
    }
    .dashboard-tab-main {
        padding-top: 57px;
        padding-bottom: 60px;
    }
    .dtbt-form input[type="text"], .dtbt-form input[type="submit"] {
        position: static;
    }
}
@media only screen and (max-width: 600px) {
    .dtbt-form {
        max-width: 100%;
    }
    .dtbt-form input[type="submit"] {
        width: 100px;
        height: 40px;
        font-size: 10px;
    }
    .dtbt-form input[type="text"] {
        width: calc(100% - 105px);
        margin-right: 5px;
        height: 40px;
    }
    .dashboard-tab-upper {
        margin-bottom: 39px;
    }
    .dashboard-tab-main {
        padding-bottom: 48px;
    }
    .dashboard-tab-items {
        margin-bottom: 38px;
    }
    .dashboard-tab-nav ul li a {
        height: 40px;
        font-size: 12px;
    }
    .dashboard-tab-bg {
        width: calc(100% + 30px);
        margin-left: -15px;
    }
    .dashboard-tab-bg-top, .dashboard-tab-bg-bottom {
        border-radius: 0;
    }
    .dashboard-tab-nav ul {
        max-width: 100%;
    }
}
@media only screen and (max-width: 400px) {
    .dtbt-form {
        flex-wrap: wrap;
        flex-direction: column;
        align-items: flex-start;
    }
    .dtbt-form input[type="text"] {
        width: 100%;
        margin-right: 0;
        margin-bottom: 9px;
    }
    .dtbt-form input[type="submit"] {
        font-size: 12px;
        width: 185px;
    }
    .dashboard-tab-nav ul {
        flex-wrap: wrap;
        border-radius: 24px;
    }
    .dashboard-tab-nav ul li a {
        height: 47px;
        font-size: 12px;
    }
    .dashboard-tab-nav ul li a .icon {
        width: 17px;
        margin-right: 7px;
    }
    .dtbt-title {
        font-size: 20px;
        line-height: 27px;
    }
}

/*landing slider*/
.landing-slider-items .slick-list.draggable {
    padding: 0px calc((100% - 116.8rem) / 2 ) !important;
}
.title-extra-area {
    display: flex;
    align-items: center;
}
.title-extra-content {
    width: 100%;
}
.title-extra-content h4 {
    font-size: 1.7rem;
    line-height: 3rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #2DB9EB;
    margin-bottom: 1.2rem;
    min-height: 3rem;
}
.title-extra-content h2 {
    max-width: 54rem;
    margin-bottom: 1.1rem;
}
.landing-slider-area .title-extra-content h2 {
    min-height: 9.8rem;
}
.title-extra-list {
    display: flex;
    align-items: center;
    margin-bottom: 5.5rem;
}
.tel-single {
    display: flex;
    flex-shrink: 0;
    margin-right: 1.9rem;
    align-items: center;
}
.tel-single .icon {
    width: 2.2rem;
    margin-right: .6rem;
}
.btn.title-extra-btn {
    width: 20.9rem;
    height: 4.3rem;
    background-color: #1D2A80;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    flex-shrink: 0;
}
.btn.title-extra-btn:hover {
    background-color: #2DB9EB;
}
.landing-slider-single {
    padding: 2.5rem;
    background-color: #EEF0FF;
    border-radius: 2rem;
    margin: 0 .7rem;
    height: 46.5rem;
}
.landing-slider-single:nth-child(2n) {
    background-color: #EBFAFF;
}
.landing-slider-items::before {
    content: '';
    width: calc((100% - 118rem) / 2 );
    height: 100%;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.68) 5.78%, #FFFFFF 76.93%);
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
}
.landing-slider-items::after {
    content: '';
    width: calc((100% - 118rem) / 2 );
    height: 100%;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.68) 5.78%, #FFFFFF 76.34%);
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    transform: matrix(-1, 0, 0, 1, 0, 0);
}
.landing-slider-wrap {
    position: relative;
}
.lan-nav {
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 50%;
    border: .1rem solid #8792DB;
    background-color: #fff;
    cursor: pointer;
    transition: all .3s;
}
.lan-nav {
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 50%;
    border: .1rem solid #8792DB;
    background-color: #fff;
    cursor: pointer;
    transition: all .3s;
    box-shadow: 0px 1.019rem 3.09549rem rgba(154, 167, 255, 0.51);
}
.lan-nav:hover {
    background-color: #1D2A80;
}
.lan-nav path {
    transition: all .3s;
}
.lan-nav:hover path {
    stroke: #fff !important;
}
.landing-slider-nav-area .container {
    position: relative;
}
.landing-slider-nav {
    width: 13.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    right: -8.6rem;
    top: 0;
}
.landing-slider-nav-area {
    position: absolute;
    top: calc(50% - 2.7rem);
    width: 100%;
    z-index: 9;
}
.landing-slider-single img {
    height: 100%;
    object-fit: cover;
    object-position: top center;
}
@media only screen and (max-width: 1366px) {
    .landing-slider-nav {
        right: 8px;
        width: 117px;
    }
    .landing-slider-single {
        height: 400px;
    }
}
@media only screen and (max-width: 991px) {
    .title-extra-content h2 {
        font-size: 32px;
        line-height: 39px;
    }
    .landing-slider-single {
        padding: 7px;
        border-radius: 5px;
        height: 350px;
    }
    .lan-nav {
        width: 40px;
        height: 40px;
    }
    .lan-nav svg {
        width: 15px !important;
    }
    .landing-slider-nav {
        width: 85px;
    }
}
@media only screen and (max-width: 767px) {
    .title-extra-area {
        flex-wrap: wrap;
        margin-bottom: 47px;
    }
    .title-extra-list {
        margin-bottom: 16px;
    }
}
@media only screen and (max-width: 650px) {
    .title-extra-list {
        flex-wrap: wrap;
    }
    .tel-single {
        width: 100%;
        margin-bottom: 3px;
    }
}
/*landing box*/
.landing-box-area {
    padding-top: 11.4rem;
    padding-bottom: 9.2rem;
    position: relative;
}
.landing-box-title {
    text-align: center;
    margin-bottom: 8.3rem;
    width: 63rem;
    margin-left: auto;
    margin-right: auto;
    min-height: 4.9rem;
}
.landing-box-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.landing-box-single {
    width: calc(25% - 1.5rem);
    margin-right: 1.5rem;
    box-shadow: 0px .7rem 4.3rem rgba(209, 209, 209, 0.3);
    border-radius: 1.5rem;
    padding: 3.5rem 2.4rem 1.5rem 3.5rem;
    min-height: 25.3rem;
    margin-bottom: 2.7rem;
    background-color: #fff;
}
.landing-box-single:nth-child(4n) {
    margin-right: 0;
}
.landing-box-single .icon {
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 50%;
    background-color: #DCF6FF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .9rem;
}
.landing-box-single h2 {
    font-size: 1.6rem;
    line-height: 1.9rem;
    margin-bottom: 1.6rem;
}
.landing-box-single p {
    font-size: 1.2rem;
    line-height: 1.9rem;
}
.landing-box-area .container {
    position: relative;
}
.landing-box-svg {
    position: absolute;
    top: -8rem;
    left: -50rem;
    z-index: -1;
}
@media only screen and (max-width: 1170px) {
    .landing-box-svg {
        display: none;
    }
}
@media only screen and (max-width: 991px) {
    .landing-box-svg {
        display: none;
    }
    .landing-box-area {
        padding-top: 82px;
        padding-bottom: 53px;
    }
    .landing-box-title {
        font-size: 32px;
        line-height: 38px;
        margin-bottom: 42px;
        width: 100%;
    }
    .landing-box-items {
        justify-content: flex-start;
    }
    .landing-box-single {
        width: calc(33.333% - 10px);
        margin-bottom: 15px;
    }
    .landing-box-single:nth-child(4n) {
        margin-right: 15px;
    }
    .landing-box-single:nth-child(3n) {
        margin-right: 0;
    }
}
@media only screen and (max-width: 767px) {
    .landing-box-single {
        width: calc(50% - 8px);
    }
    .landing-box-single:nth-child(3n) {
        margin-right: 15px;
    }
    .landing-box-single:nth-child(2n) {
        margin-right: 0;
    } 
}
@media only screen and (max-width: 580px) {
    .landing-box-single {
        width: 100%;
        margin-right: 0;
        border-radius: 10px;
        padding: 25px 15px 28px;
        min-height: auto;
    }
    .landing-box-single:nth-child(2n) {
        margin-right: 0;
    }
    .landing-box-single h2 {
        margin-bottom: 12px;
    }    
    .landing-box-title {
        margin-bottom: 29px;
    }
}

/*testimonial*/
.tes-grid-area {
    padding-bottom: 17.7rem;
}
.tes-grid-items {
    margin-top: 7.3rem;
    margin-bottom: 4.9rem;
    width: calc(100% + 50px);
    left: -25px;
}
.tes-grid-single {
    margin: 0 2.5rem;
}
.tgs-upper {
    display: flex;
    align-items: center;
    margin-bottom: 2.4rem;
}
.tgs-upper .avater {
    width: 6.7rem;
    height: 6.7rem;
    margin-right: 1.3rem;
    padding: .6rem;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.tgs-upper-meta {
    width: calc(100% - 8rem);
}
.tgs-upper-meta h2 {
    font-size: 2rem;
    line-height: 2.5rem;
    margin-bottom: .3rem;
}
.tgs-upper-meta p {
    font-family: 'Gilroy';
    font-size: 1.6rem;
    line-height: 2rem;
    font-weight: 500;
}
.tgs-content {
    min-height: 27rem;
    background-color: #F5F7FA;
    padding: 4.6rem 3.5rem 1rem 3.5rem;
    line-height: 2.8rem;
    border-radius: 0 2rem 2rem 2rem;
}
.tes-grid-btns {
    display: flex;
    align-items: center;
}
.tes-grid-btns .btn {
    padding: .5rem 2.4rem;
    height: 4.9rem;
    text-transform: uppercase;
    font-weight: 700;
    border: .1rem solid transparent;
}
.tes-grid-btns .btn:hover {
    background-color: #fff;
    border: .1rem solid #1D2A80;
}
.tes-grid-btns .btn.btn-border {
    background-color: #fff;
    border-color: #1D2A80;
    margin-left: 1.5rem;
}
.tes-grid-btns .btn.btn-border:hover {
    border-color: transparent;
    background-color: #9EE5FF;
}
.tes-grid-area .title-extra-content h4 {
    min-height: 3rem;
}
.tes-grid-area .title-extra-content h2 {
    min-height: 4.9rem;
}
.tes-grid-area .title-extra-content h2 .animate-title-inner {
    transition-delay: .4s;
}
.tes-grid-area .title-extra-content p {
    min-height: 3.3rem;
}
.tes-grid-area .title-extra-content p .animate-title-inner {
    transition-delay: .8s;
}
@media only screen and (max-width: 1170px) {
    .tes-grid-items {
        margin-top: 39px;
        margin-bottom: 32px;
    }
    .tes-grid-items {
        width: 100%;
        left: 0;
    }
    .tes-grid-single {
        margin: 0 7px;
    }
    .tes-grid-area {
        padding-bottom: 90px;
    }
}
@media only screen and (max-width: 991px) {
    .tes-grid-single {
        width: calc(33.333% - 11px);
    }
    .tgs-content {
        min-height: 150px;
        padding: 20px 15px;
        font-size: 14px;
        line-height: 23px;
        border-radius: 0 10px 10px 10px;
    }
    .tes-grid-single {
        margin: 0;
    }
    .tes-grid-btns .btn {
        height: 40px;
    }
}
@media only screen and (max-width: 500px) {
    .tes-grid-btns {
        flex-direction: column;
        align-items: flex-start;
    }
    .tes-grid-btns .btn.btn-border {
        margin-left: 0;
        margin-top: 15px;
    }
    .tgs-content {
        min-height: 172px;
    }
}
/*footer top*/
.footer-top-area {
    position: relative;
    background-color: #1D2A80;
    padding-top: 14.3rem;
    padding-bottom: 5.6rem;
    color: #fff;
    overflow: hidden;
}
.footer-top-favicon img {
    width: 9.8rem;
}
.footer-top-favicon {
    width: 22.6rem;
    height: 22.6rem;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -12.3rem;
    left: calc(50% - 11.3rem);
    padding-top: 9.2rem;
    z-index: 2;
}
.ft-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: ;
}
.ft-p1 {
    width: 8.4rem;
    position: absolute;
    bottom: -8.4rem;
    left: -8.4rem;
    z-index: 1;
    transition: all 1s;
    transition-delay: .4s;
}
.animate .ft-p1 {
    left: 0;
    bottom: 0;
}
.footer-top-row {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-top-row h2 {
    font-size: 4.8rem;
    line-height: 1.2;
    color: #fff;
    text-align: center;
    margin-bottom: 1.5rem;
    width: 64.6rem;
    min-height: 5.8rem;
}
.footer-top-row h4 {
    font-size: 2rem;
    line-height: 1.2;
    color: #fff;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 2rem;
    min-width: 22rem;
    height: 2.4rem;
}
.footer-top-row h4 .animate-title-inner {
    transition-delay: .3s;
}
.foter-cta-btn {
    min-width: 20.8rem;
    min-height: 5.1rem;
    display: flex;
    margin-bottom: 4.9rem;
}
.foter-cta-btn .animate-title-inner {
    transition-delay: .6s;
}
.footer-top-row .btn {
    width: 20.8rem;
    max-width: 100%;
    height: 5.1rem;
    border: .2rem solid #FFFFFF;
    background-color: #49CEFE;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
}
.footer-top-row .btn:hover {
    background-color: #fff;
}
.ftr-list {
    width: 81.8rem;
    height: 4.9rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-radius: 3rem;
    background: rgba(255, 255, 255, 0.13);
    border: .1rem solid #F8F8F84F;
    transform: scaleX(0);
    transition: transform 1s;
    transition-delay: .9s;
}
.animate .ftr-list {
    transform: scaleX(1);
}
.ftr-list-single {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    font-weight: 500;
    opacity: 0;
    transition: .5s;
    transition-delay: 1s;
}
.animate .ftr-list-single {
    opacity: 1;
}
.ftr-list-single .icon {
    margin-right: .5rem;
}
@media only screen and (max-width: 991px) {
    .footer-top-favicon, .ft-p1 {
        display: none;
    }
    .footer-top-area {
        padding: 44px 0 65px;
    }
    .footer-top-row h2 {
        font-size: 32px;
        line-height: 37px;
        margin-bottom: 10px;
        width: 100%;
    }
    .footer-top-row h4 {
        font-size: 16px;
        line-height: 22px;
        min-width: auto;
    }
    .footer-top-row .btn {
        height: 45px;
    }
    .foter-cta-btn {
        min-width: auto;
        margin-bottom: 43px;
    }
    .ftr-list {
        max-width: 100%;
        transform: scaleX(1);
    }
    .ftr-list-single {
        font-size: 14px;
        opacity: 1;
    }
}
@media only screen and (max-width: 550px) {
    .ftr-list {
        flex-wrap: wrap;
        width: 224px;
        height: auto;
        border-radius: 4px;
        padding: 9px 10px;
        max-width: 100%;
    }
    .foter-cta-btn {
        margin-bottom: 32px;
    }
    .footer-top-area {
        padding-bottom: 50px;
    }
}

/*footer main*/
.footer-main-area {
    padding-top: 10rem;
    border-bottom: .1rem solid #8291F2;
}
.footer-main-row {
    display: flex;
    flex-wrap: wrap;
}
.fw5 {
    width: 15.28%;
}
.fw4 {
    width: 16.03%;
    padding-right: 1.5rem;
}
.fw3 {
    width: 21.05%;
    padding-right: 1.5rem;
}
.fw2 {
    width: 21.49rem;
    padding-right: 1.5rem;
}
.fw1 {
    width: calc(100% - 71.3%);
    padding-right: 6.4rem;
}
.widget-title {
    font-size: 1.4rem;
    line-height: 1.6rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 2.2rem;
}
.footer-main-row ul li {
    padding: .6rem 0;
    font-size: 1.4rem;
    line-height: 1.8rem;
}
.footer-main-row ul li a {
    color: #6069A7;
}
.footer-main-row ul li a:hover {
    color: #1D2A80;
}
.footer-main-row .wl-view-more a {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #1D2A80;
    margin-top: 1rem;
}
.footer-main-row .wl-view-more a span {
    margin-right: .4rem;
    transition: all .3s;
}
.footer-main-row .wl-view-more a:hover span {
    margin-right: .9rem;
}
.footer-main-row > div {
    margin-bottom: 5rem;
}
.fw1.footer-wid-logo img {
    max-height: 4.4rem;
}
.fw1.footer-wid-logo > a {
    display: block;
    margin-bottom: 1.5rem;
    margin-top: -1rem;
}
.footer-wid-logo p {
    font-family: 'Gilroy';
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 2.3rem;
    margin-bottom: 4.3rem;
}
.footer-main-row h5 {
    font-size: 1.4rem;
    line-height: 1.6rem;
    text-transform: uppercase;
    margin-bottom: 2.2rem;
}
.footer-gplay {
    width: 15.1rem;
    max-height: 100% !important;
    display: block;
    margin-bottom: 1.4rem;
}
.footer-app-store {
    max-height: 100% !important;
    width: 13.4rem;
}
.footer-newslatter p {
    font-size: 1.4rem;
    line-height: 2.3rem;
    color: #6069A7;
    margin-bottom: 4.3rem;
}
.footer-newslatter-area {
    position: relative;
    width: 100%;
    height: 4.7rem;
}
.footer-newslatter-area input {
    width: 100%;
    height: 100%;
    outline: none;
    background-color: #E9EBF2;
    border: .1rem solid #BFC3DA;
    border-radius: .5rem;
    padding: 0 1rem;
}
.footer-newslatter-area .icon {
    position: absolute;
    top: 1.5rem;
    right: 1.4rem;
}
.footer-newslatter-area input {
    width: 100%;
    height: 100%;
    outline: none;
    background-color: #E9EBF2;
    border: .1rem solid #BFC3DA;
    border-radius: .5rem;
    padding: 0 1rem;
    padding-right: 5rem;
}
.footer-contact-single {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    line-height: 2;
    font-weight: 600;
}
.footer-contact-single .icon {
    width: 3.3rem;
    height: 3.3rem;
    background-color: #DEF6FF;
    border-radius: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}
.footer-contact-single span {
    width: calc(100% - 4.3rem);
    flex-shrink: 0;
}
.footer-contact-single:not(:last-child) {
    margin-bottom: 1.6rem;
}
.footer-social {
    margin-top: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.8rem 0;
}
.footer-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.8rem 0;
    line-height: 2.4rem;
    font-weight: 500;
    letter-spacing: 0.03em;
}
.footer-bottom-menu ul {
    display: flex;
    align-items: center;
}
.footer-bottom-menu ul li a {
    padding: 0 1rem;
    position: relative;
}
.footer-bottom-menu ul li a:hover {
    color: #2DB9EB;
}
.footer-bottom-menu ul li:not(:last-child) a::after {
    content: '';
    width: .1rem;
    height: 1.5rem;
    background-color: #1D2A80;
    position: absolute;
    top: .4rem;
    right: 0;
}
/*title animation*/
.animate-title {
    position: relative;
    overflow: hidden;
}
.animate-title .animate-title-inner {
    position: absolute;
    top: 100%;
    transition: top 1s;
}
.animate .animate-title .animate-title-inner {
    top: 0;
    left: 0;
}
@media only screen and (max-width: 1170px) {
    .fmr-top .fw2, .fmr-top .fw3, .fmr-top .fw4, .fmr-top .fw5, .fmr-bottom .fw1,
     .fmr-bottom .fw2, .fmr-bottom .fw2, .fmr-bottom .fw3, .fmr-bottom .fw4, .fw1.footer-wid-logo h5,
      .footer-gplay, .footer-app-store {
        display: none;
    }
    .fw1, .fw5 {
        width: 100%;
        padding-right: 0;
    }
    .footer-main-area {
        padding-top: 63px;
    }
    .fw1.footer-wid-logo > a {
        margin-bottom: 14px;
        display: flex;
    }
    .footer-wid-logo p {
        margin-bottom: 0;
    }
    .footer-main-row > div {
        margin-bottom: 27px;
    }
    .fw1.footer-wid-logo img {
        max-height: 37px;
    }
    .widget-title {
        margin-bottom: 22px;
        font-size: 18px;
    }
    .footer-contact-single .icon {
        width: 28px;
        height: 28px;
        border-radius: 8px;
        margin-right: 6px;
    }
    .footer-contact-single .icon svg {
        width: 15px;
    }
    .footer-contact-single span {
        width: calc(100% - 34px);
    }
    .footer-social {
        max-width: 201px;
    }
    .footer-wid-logo p {
        font-size: 14px;
        line-height: 17px;
    }
    .footer-bottom-menu {
        display: none;
    }
    .footer-bottom-row {
        font-size: 12px;
        line-height: 17px;
        padding: 16px 0;
    }
}


/*banner*/
.page-banner-area {
    position: relative;
    padding: 8rem 0 9.5rem;
    border-bottom: .1rem solid #EAEAEA;
    min-height: 27rem;
    background: linear-gradient(90deg, rgba(255,201,117,0.29173676306460083) 0%, rgba(141,223,254,0.8575630935968137) 22%, rgba(132,95,247,0.44859950816264005) 100%);
}
.banner-g1 {
    width: 28rem;
}
.banner-p3 {
    position: absolute;
    bottom: -3.5rem;
    width: 10.1rem;
    right: 5rem;
    z-index: 2;
}
.banner-p1 {
    width: 16rem;
    position: absolute;
    right: -3rem;
    bottom: .5rem;
}
.banner-p2 {
    width: 1.4rem;
    animation: spin 5.5s infinite linear;
    position: absolute;
    bottom: 5.5rem;
    right: 14rem;
    z-index: 3;
}
.banner-g1 {
    width: 26rem;
    position: absolute;
    top: 0;
    left: 0;
}
.page-banner-row {
    text-align: center;
}
.page-banner-row h1 {
    font-size: 4.3rem;
    line-height: 4.8rem;
    margin-bottom: 2rem;
}
.page-banner-row h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    line-height: 2.8rem;
    font-weight: 500;
}
@media only screen and (max-width: 991px) {
    .banner-g1, .banner-p1, .banner-p2, .banner-p3 {
        display: none;
    }
    .page-banner-row h1 {
        font-size: 32px;
        line-height: 38px;
        margin-bottom: 8px;
    }
    .page-banner-area {
        padding: 70px 0 73px;
        min-height: auto;
    }
}

/*FAQ*/
.faq-area {
    padding: 11rem 0 15rem;
    background-size: contain;
    background-position: 0rem 0rem;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.faq-area .title-row{
    text-align: center;
    width: 100%;
    margin: 0 auto;
}
.faq-area .title-row h5{
    font-size: 1.7rem;
    line-height: 3rem;
    letter-spacing: .32rem;
    text-transform: uppercase;
    color: #2DB9EB;
    margin-bottom: .8rem;
}
.faq-area .title-row h1{
    margin-bottom: .8rem;
}
.faq-area .title-row .discription{
    font-size: 1.6rem;
    line-height: 2.8rem;
    color: #505780;
}
.faq-area .full-content-row {
    max-width: 94.8rem;
    width: 100%;
    margin: 0 auto;
    background-color: #FFF;
    border-radius: 1.5rem;
    border: .1rem solid #F1F1F1;
    box-shadow: 0rem 2.8rem 3rem rgba(212, 232, 238, 0.54);
    padding: 1.5rem 0 .5rem;
}
.faq-area .full-content-row .faq-single-item{
    padding: 2.8rem 4.5rem 2.8rem 5.5rem;
    border-bottom: .1rem solid #f1f1f1;
}
.faq-area .full-content-row .faq-single-item:last-child{
    border: none;
}
.faq-area .faq-single-item .faq-title-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.faq-area .faq-single-item .faq-title-area h5{
    width: calc(100% - 5rem);
}
.faq-area .faq-single-item .faq-plus-item{
    width: 3.8rem;
    height: 3.8rem;
    margin-left: 1rem;
    border-radius: 5rem;
    background-color: #FFF;
    border: .1rem solid #1D2A80;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0rem .62rem 2.2rem rgba(154, 167, 255, 0.31);
    transition: 700ms cubic-bezier(.42,.97,.52,1.49);
}
.faq-area .faq-single-item .faq-content-area{
    font-size: 1.6rem;
    line-height: 2.7rem;
    display: none;
}
.faq-area .faq-single-item.active .faq-content-area{
    display: block;
    margin-top: 2rem;
    min-height: 8rem;
}
.faq-area .faq-single-item.active .faq-plus-item{
    background-color: #1D2A80;
    border: none;
    transform: rotate(45deg);
    box-shadow: 0rem 1.02rem 3.1rem rgba(154, 167, 255, 0.51);
}
.faq-area .faq-single-item.active path{
    stroke: #fff;
}
@media(max-width: 991px){
    .faq-area .full-content-row .faq-single-item {
        padding: 2.8rem 2rem 2.8rem 2rem;
    }
    .faq-area {
        padding-bottom: 99px;
    }
}


/*support section*/
.miyn-support {
    margin-top: 1rem;
    margin-bottom: 13rem;
}
.miyn-support .support-row{
    min-height: 48.75rem;
    width: calc(100% - 19.2rem);
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
}
.miyn-support .support-row .left-column {
    width: calc(100% - 26.8rem);
    background-color: #1D2A80;
    border-radius: 1.5rem;
    color: #9EE5FF;
    padding: 5rem;
    position: relative;
    margin-top: .8rem;
    overflow: hidden;
}
.miyn-support .support-row .left-column .angle-shape{
    position: absolute;
    bottom: 0rem;
    right: 14rem;
}
.miyn-support svg.left-angle-two {
    transform: translateX(-.7rem);
}
.miyn-support svg.left-angle-three {
    transform: translateX(-1.5rem);
}
.miyn-support .support-row .left-column h2{
    font-size: 3.81rem;
    line-height: 4.67rem;
    color: #9EE5FF;
    max-width: 47.35rem;
    margin-bottom: 1.66rem;
}
.miyn-support .support-row .left-column .content{
    font-size: 1.52rem;
    line-height: 2.57rem;
    max-width: 47.35rem;
    margin-bottom: 4.5rem;
}
.scta-p1 {
    width: 16.1rem;
    position: absolute;
    bottom: -.9rem;
    right: .8rem;
    transform: rotate(-9deg);
    z-index: 1;
}
.scta-p2 {
    width: 16.1rem;
    position: absolute;
    right: -11px;
    top: 0;
}
.miyn-support .support-row .left-column .contact{
    display: flex;
}
.miyn-support .support-row .left-column a{
    color: #FFF;
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    line-height: 2.5rem;
    font-family: 'gilroy_bold';
    transition: all 0.3s;
}
.miyn-support .support-row .left-column a:first-child{
    margin-right: 2.5rem;
}
.miyn-support .support-row .left-column a .icon{
    width: 3.62rem;
    height: 3.62rem;
    background-color: #fff;
    border-radius: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    
}
.miyn-support .support-row .left-column a:hover .icon{
    background-color: #9EE5FF;
    transition: all 0.3s;
}

.miyn-support .support-row .left-column a:hover .contact-number,
section.support .support-row .left-column a:hover .mail-address{
    color: #9EE5FF;
    transition: all 0.3s;
}
.miyn-support .support-row .right-column {
    width: 35.1rem;
    height: 48.75rem;
    background-image: url('../img/support.png');
    background-size: cover;
    position: absolute;
    right: -1.5rem;
    z-index: 2;
}
@media(max-width: 991px){
    .miyn-support {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }
    .miyn-support .support-row{
        width: 100%;
        padding: 0;
    }
    .miyn-support .support-row .left-column {
        width: 100%;
        padding: 2rem;
    }
    .miyn-support .support-row .right-column {
        display: none;
    }
    .scta-p1, .scta-p2 {
        display: none;
    }
    .miyn-support .support-row .left-column .bg-line {
        display: none;
    }
    .miyn-support .support-row .left-column .angle-shape {
        display: none;
    }
}


/*blog archive*/
.blog-archive-area {
    padding: 10rem 0 12rem;
}
.miyn-blog-section{
    background-color: #F8F8F8;
    padding-bottom: 10rem;
}
.miyn-blog-grid{
    display: flex;
    flex-wrap: wrap;
}
.single-blog-grid {
    flex: 0 0 auto;
    width: calc(33.33% - 1.4rem);
    margin-right: 2.1rem;
    margin-bottom: 3rem;
    background-color: #F8F8F8;
    border-radius: 1.5rem;
    overflow: hidden;
}
.single-blog-grid:nth-child(3n) {
    margin-right: 0;
}
.single-blog-grid-inner{
    height: 100%;
}
.single-blog-content {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    padding-bottom: 3rem;
}
.blog-feature-img {
    display: block;
    width: 100%;
    height: 18.6rem;
}
.blog-feature-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
}
.single-blog-heading h3 {
    font-size: 1.6rem;
    line-height: 2.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    color: #1D2A80;
    min-height: 10rem;
    padding: .5rem 0;
}
.single-blog-info{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.single-blog-info a{
    font-family: 'Samsung Sharp Sans';
    font-weight: 500;
    font-size: 1rem;
    line-height: 2.1rem;
    color: #1D2A80;
    display: flex;
    align-items: center;
}
.single-blog-info svg{
    margin-right: .5rem;
}
.single-blog-content p {
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 2.3rem;
    color: #1D2A80;
    min-height: 15rem;
    padding: 2rem 0 1rem;
}
.single-blog-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 11.4rem;
    height: 3rem;
    background: #9EE5FF;
    border-radius: 32.7136px;
    font-weight: 700;
    font-size: 10px;
    line-height: 13px;
    text-align: center;
    text-transform: uppercase;
    color: #1D2A80;
}
.blog-pagination ul {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.blog-pagination ul li a, .blog-pagination ul li span {
    padding: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin-right: 9px;
    font-size: 16px;
    transition: all .3s;
    background: #2db9eb;
    color: #fff;
}
.blog-pagination ul li span {
    background: #efefef;
    color: #2f3a5f;
}
.blog-pagination ul li a.next, .blog-pagination ul li a.prev {
    width: 70px;
}
.prev.page-numbers::after {
    content: 'Prev';
}
.next.page-numbers::after {
    content: 'Next';
}
@media(max-width: 991px){
    .single-blog-grid{
        width: 100%;
        margin-bottom: 20px;
    }
    .single-blog-heading h3 {
        min-height: auto;
        padding: 15px 0 13px;
    }
    .single-blog-content p {
        min-height: auto;
        padding-bottom: 20px;
    }
}
@media(max-width: 575px){
    .miyn-blog-section{
        padding-bottom: 50px;
    }
}
@media(max-width: 400px){
    .single-blog-info .attachment {
        display: none;
    }
}

/*Landing pages*/
.landing-archive-area {
    padding: 11rem 0 13rem;
}
.landng-archive-row {
    display: flex;
    flex-wrap: wrap;
}
.landng-archive-single {
    width: calc(33.333% - 1rem);
    margin-right: 1.5rem;
    padding: 2.5rem;
    background-color: #EEF0FF;
    margin-bottom: 2.5rem;
    border-radius: 2rem;
    display: flex;
    height: 45.8rem;
}
.landng-archive-single:nth-child(2n) {
    background-color: #EBFAFF;
}
.landng-archive-single:nth-child(3n) {
    margin-right: 0;
}
.landng-archive-single img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}
@media only screen and (max-width: 1170px) {
    .landing-archive-area {
        padding-bottom: 55px;
    }
    .landng-archive-single {
        height: 408px;
        padding: 15px;
        border-radius: 12px;
    }
}
@media only screen and (max-width: 991px) {
    .landng-archive-single:nth-child(2n) {
        margin-right: 0;
    }
    .landng-archive-single:nth-child(3n) {
        margin-right: 15px;
    }
    .landng-archive-single {
        width: calc(50% - 8px);
        margin-bottom: 20px;
    }
}
@media only screen and (max-width: 767px) {
    .landng-archive-single {
        width: 100%;
        margin-right: 0;
        height: 353px;
    }
    .landng-archive-single:nth-child(3n) {
        margin-right: 0;
    }
    .landing-archive-area {
        padding-bottom: 0;
        padding-top: 82px;
    }
}