::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}
body{
    font-family: "DM Sans", sans-serif;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}
input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator{
    filter: invert(60%);
}
.container{
    width: 1350px;
}
.xheader{
    background: #fff;
}
.xheader .xheader-top{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: #0f0d1d;
    width: 100%;
    padding: 10px 0;
}
.xheader .xheader-top .left{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}
.xheader .xheader-top .left img{
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
.xheader .xheader-top .left a{
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
    margin-right: 15px;
    transition: 300ms;
}
.xheader .xheader-top .left a:hover{
    opacity: 0.7;
}
.xheader .xheader-top .left span{
    display: flex;
    align-items: center;
    color: #fff;
    border-left: 2px solid #fff;
    padding-left: 15px;
}
.xheader .xheader-top .left span img{
    width: 17px;
    height: 17px;
}
.xheader .xheader-top .right{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.xheader .xheader-top .right ul{
    padding: 0;
    margin: 0;
}
.xheader .xheader-top .right ul li{
    list-style: none;
    float: left;
}
.xheader .xheader-top .right ul li a{
    display: flex;
    color: #fff;
    width: 25px;
    height: 25px;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    margin-left: 10px;
    text-decoration: none;
    transition: 300ms;
}
.xheader .xheader-top .right ul li a:hover{
    color: #3c72fc;
}
.xheader .xheader-main{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 10px 0;
}
.xheader .xheader-main:before{
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    background: linear-gradient(270deg, #3c72fc 6.32%, #00060c 216.42%);
    height: 100%;
    content: "";
    -webkit-clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
}
.xheader .xheader-main .logo{
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.xheader .xheader-main .logo img{
    width:180px;
}
.xheader .xheader-main ul.xheader-menu{
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.xheader .xheader-main ul.xheader-menu li{
    list-style: none;
}
.xheader .xheader-main ul.xheader-menu li a{
    display: block;
    text-decoration: none;
    color: #000;
    font-size: 15px;
    padding:15px 10px;
    transition: 300ms;
    font-weight: 500;
}
.xheader .xheader-main ul.xheader-menu li a:hover{
    color: #3c72fc;
}
.xheader .xheader-main .main-right{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.xheader .xheader-main .main-right a{
    display: flex;
    background-image: linear-gradient(90deg, rgb(60, 114, 252) -10.59%, rgb(0, 6, 12) 300.59%);
    color: #fff;
    text-decoration: none;
    width: 130px;
    height: 45px;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
    border-radius: 3px;
    transition: 300ms;
    overflow: hidden;
    gap: 10px;
    position: relative;
    z-index: 1;
}
.xheader .xheader-main .main-right a:before{
    content: "";
    background: #0f0d1d;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    z-index: -1;
    transition: 350ms;
}
.xheader .xheader-main .main-right a:hover::before{
    width: 100%;
}
.xheader .xheader-main .main-right a img{
    width: 20px;
    height: 20px;
}
.index-banner{
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    max-height: 600px;
    justify-content: center;
}
.index-banner img{
    max-width: 100%;
}
.index-banner .banner-main{
    position: absolute;
    padding: 20px;
    z-index: 1;
    max-width: 1350px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.index-banner .banner-main h1{
    margin-top: 0;
    color: #fff;
    font-size: 80px;
    font-weight: 700;
    font-family: "Kumbh Sans", sans-serif;
}
.index-banner .banner-main p{
    color: #fff;
    font-size: 17px;
    max-width: 70%;
}
.index-banner .banner-main a{
    display: flex;
    background-image: linear-gradient(90deg, rgb(60, 114, 252) -10.59%, rgb(0, 6, 12) 300.59%);
    color: #fff;
    padding: 20px 25px;
    text-decoration: none;
    font-size: 17px;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
    border-radius: 3px;
    overflow: hidden;
    width: 210px;
}
.index-banner .banner-main a:before{
    content: "";
    background: #0f0d1d;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50%;
    height: 0%;
    z-index: -1;
    transition: 350ms;
}
.index-banner .banner-main a:after{
    content: "";
    background: #0f0d1d;
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 0%;
    z-index: -1;
    transition: 350ms;
}
.index-banner .banner-main a:hover::before, .index-banner .banner-main a:hover::after {
    height: 100%;
}
.index-services{
    display: flex;
    padding: 80px 0;
}
.index-services .services-left{
    display: flex;
    flex-direction: column;
}
.index-services .services-left h1{
    display: flex;
    margin-top: 0;
    font-weight: 900;
    align-items: center;
    font-family: "Plus Jakarta Sans", sans-serif;
    max-width: 70%;
}
.index-services .services-left .left-item{
    display: flex;
    justify-content: flex-start;
    padding: 20px 0;
    gap: 20px;
    position: relative;
}
.index-services .services-left .left-item:before{
    content: "";
    width: 3px;
    height: 100%;
    position: absolute;
    background: #f2f1fc;
    left: 30px;
}
.index-services .services-left .left-item:last-child::before{
    display: none;
}
.index-services .services-left .left-item .number{
    display: flex;
}
.index-services .services-left .left-item .number strong{
    display: flex;
    position: relative;
    width: 60px;
    height: 60px;
    background: #f2f1fc;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    transition: 350ms;
}
.index-services .services-left .left-item .text{
    display: flex;
    flex-direction: column;
    max-width: 60%;
    gap: 15px;
}
.index-services .services-left .left-item .text span{
    display: flex;
    color: #242e45;
    font-weight: 600;
    font-size: 20px;
    margin-top: 5px;
}
.index-services .services-left .left-item .text p{
    display: flex;
    margin-bottom: 0;
    color: #878898;
    font-size: 18px;
}
.index-services .services-left .left-item:hover > .number strong{
    color: #fff;
    transform: scale(1.1);
    background: #3c2fc0;
    transition: 350ms;
}
.index-services .services-right{
    position: relative;
}
@keyframes bounce{
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes bounce2{
  0%, 100% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(0px);
  }
}
@keyframes bounce3{
  0%, 100% {
    transform: translateY(35px);
  }
  50% {
    transform: translateY(0px);
  }
}
.index-services .services-right img{
    max-width: 100%;
}
.index-services .services-right .img-1{
    z-index: 9;
    position: relative;
    margin-top: 30px;
}
.index-services .services-right .img-2{
    position: absolute;
    top: 0;
    left: 40px;
    z-index: -1;
    clip-path: inset(0 0 30% 0);
}
.index-services .services-right .img-3{
    position: absolute;
    left: 0;
    top: 0;
    animation: bounce 5s infinite ease-in-out;
}
.index-services .services-right .img-4{
    position: absolute;
    left: 180px;
    top: 75px;
    animation: bounce2 5s infinite ease-in-out;
}
.index-services .services-right .img-5{
    position: absolute;
    right: 180px;
    top: 75px;
    animation: bounce3 5s infinite ease-in-out;
}
.index-services .services-right .img-6{
    position: absolute;
    right: 0;
    top: 0;
    animation: bounce 5s infinite ease-in-out;
}
.index-view-demo{
    display: flex;
    background: #f3f7fb;
    padding: 100px;
}
.index-view-demo .demo-left{
    display: flex;
    position: relative;
}
.index-view-demo .demo-left .img{
    width: 386px;
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    z-index: 2;
    position: relative;
}
.index-view-demo .demo-left .img:before{
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .1) 100%);
    content: "";
    display: block;
    height: 100%;
    left: -80%;
    position: absolute;
    top: 0;
    transform: skewX(-25deg);
    width: 50%;
    z-index: 2;
}
@keyframes shine {
    100% {
        left: 125%
    }
}
.index-view-demo .demo-left .img:hover::before{
    animation: shine 1.2s;
}
.index-view-demo .demo-left .img img{
    max-width: 100%;
}
.index-view-demo .demo-left span{
    position: absolute;
    right: 100px;
    top: 20%;
}
.index-view-demo .demo-left span img{
    max-width: 100%;
}
.index-view-demo .demo-right{
    display: flex;
    flex-direction: column;
}
.index-view-demo .demo-right .title{
    display: flex;
    align-items: center;
    gap: 10px;
    color: #3c72fc;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 17px;
}
.index-view-demo .demo-right .text{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.index-view-demo .demo-right .text h2{
    display: flex;
    align-items: center;
    font-weight: 900;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 40px;
}
.index-view-demo .demo-right .text p{
    display: flex;
    margin-bottom: 0;
    color: #878898;
    font-size: 18px;
}
.index-view-demo .demo-right ul{
    display: flex;
    padding: 0;
    margin: 0;
    margin-top: 30px;
}
.index-view-demo .demo-right ul li{
    display: flex;
    gap: 20px;
    align-items: center;
}
.index-view-demo .demo-right ul li span{
    display: flex;
    background: rgb(60, 114, 252, 0.1);
    width: 80px;
    height: 70px;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}
.index-view-demo .demo-right ul li span img{
    max-width: 100%;
}
.index-view-demo .demo-right ul li .about-text{
    display: flex;
    flex-direction: column;
    padding-right: 10px;
    justify-content: center;
}
.index-view-demo .demo-right ul li .about-text h5{
    display: flex;
    font-weight: 600;
    font-size: 16px;
}
.index-view-demo .demo-right ul li .about-text p{
    display: flex;
    color: #878898;
    font-size: 14px;
}
.index-view-demo .demo-right .demo-btn{
    display: flex;
    margin-top: 30px;
}
.index-view-demo .demo-right .demo-btn a{
    display: flex;
    background-image: linear-gradient(90deg, rgb(60, 114, 252) -10.59%, rgb(0, 6, 12) 300.59%);
    color: #fff;
    padding: 15px 25px;
    text-decoration: none;
    font-size: 17px;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
    border-radius: 3px;
    overflow: hidden;
}
.index-view-demo .demo-right .demo-btn a:before{
    content: "";
    background: #0f0d1d;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50%;
    height: 0%;
    z-index: -1;
    transition: 350ms;
}
.index-view-demo .demo-right .demo-btn a:after{
    content: "";
    background: #0f0d1d;
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 0%;
    z-index: -1;
    transition: 350ms;
}
.index-view-demo .demo-right .demo-btn a:hover::before,.index-view-demo .demo-right .demo-btn a:hover::after{
    height: 100%;
}
.index-contact{
    display: flex;
    background: url("../images/testimonial-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0;
}
.index-contact .index-contact-form{
    display: flex;
    flex-direction: column;
    background-image: linear-gradient(90deg, rgb(60, 114, 252) -10.59%, rgb(0, 6, 12) 300.59%);
    padding: 60px;
    border-radius: 5px;
    gap: 20px;
}
.index-contact .index-contact-form .title{
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 17px;
}
.index-contact .index-contact-form .form-group{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.index-contact .index-contact-form .form-group span{
    color: #fff;
    font-size: 16px;
}
.index-contact .index-contact-form .form-group input{
    padding: 10px;
    outline: none;
    border: none;
    border-radius: 3px;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-calendar-picker-indicator{
    display: none;
}
.index-contact .index-contact-form .form-group textarea{
    outline: none;
    border: none;
    border-radius: 3px;
    padding: 15px;
    max-width: 100%;
    min-width: 100%;
    min-height: 100px;
    max-height: 100px;
}
.index-contact .index-contact-form .form-button input{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    background: #0f0d1d;
    color: #fff;
    border: none;
    outline: none;
    padding: 12px;
    border-radius: 3px;
    font-size: 17px;
    transition: 350ms;
}
.index-contact .index-contact-form .form-button input:hover{
    background: #3c2fc0;
}
.index-contact .index-contact-text{
    display: flex;
    flex-direction: column;
    padding: 60px;
    gap: 20px;
}
.index-contact .index-contact-text h5{
    display: flex;
    align-items: center;
    gap: 10px;
    color: #3c72fc;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 17px;
    margin: 0;
}
.index-contact .index-contact-text h1{
    display: flex;
    align-items: center;
    font-weight: 900;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 40px;
    margin: 0;
}
.index-contact .index-contact-text p{
    display: flex;
    margin-bottom: 0;
    color: #878898;
    font-size: 18px;
}
.index-contact .index-contact-text ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
}
.index-contact .index-contact-text ul li{
    display: flex;
    font-size: 17px;
    list-style: none;
    position: relative;
    align-items: center;
    gap: 5px;
}
.index-contact .index-contact-text ul li:before{
    content: "";
    background:url("../images/icons/check-mark.png") ;
    width: 20px;
    height: 20px;
    background-size: cover;
}
.index-contact .index-contact-information{
    display: flex;
    justify-content: space-around;
}
.index-contact .index-contact-information .information-item{
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.index-contact .index-contact-information .information-item .img{
    overflow: hidden;
    display: flex;
    width: 55px;
    height: 55px;
    background: #20282d;
    padding: 10px;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}
.index-contact .index-contact-information .information-item .img img{
    max-width: 100%;
}
.index-contact .index-contact-information .information-item .info{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.index-contact .index-contact-information .information-item .info strong{
    display: flex;
    font-size: 16px;
}
.index-contact .index-contact-information .information-item .info a{
    display: flex;
    text-decoration: none;
    color: #878898;
    font-size: 15px;
    transition: 300ms;
}
.index-contact .index-contact-information .information-item .info a:hover{
    color: #3c72fc;
}
.index-working-process{
    display: flex;
    background: url("../images/bg-work.webp");
    padding: 120px 0;
}
.index-working-process .process-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 300ms;
}
.index-working-process .col-md-3:nth-child(2n),.index-working-process .col-md-3:nth-child(4n){
    transform: scale(1.2);
}
.index-working-process .process-item .inner{
    display: flex;
    position: relative;
    border: 2px dashed rgba(32, 40, 45, 0.18);
    border-radius: 50%;
    width: 190px;
    height: 190px;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin-bottom: 20px;
}
.index-working-process .process-item .inner span{
    position: absolute;
    right: 6px;
    top: 5px;
    background: #20282d;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    opacity: 0;
    transition: 0.3s;
}
.index-working-process .process-item .inner .icon{
    display: flex;
    background: #fff;
    width: 140px;
    height: 140px;
    overflow: hidden;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}
.index-working-process .process-item .inner .icon img{
    width: 52px;
}
.index-working-process .process-item strong{
    display: flex;
    font-size: 16px;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.index-working-process .process-item span{
    display: flex;
    text-align: center;
    color: #878898;
    font-size: 15px;
    padding: 0 20px;
}
.index-working-process .process-item:hover > .inner span{
    opacity: 1;
    transition: 0.3s;
}
.index-working-process .process-item:hover > .inner{
    border-color: #20282d;
    transition: 0.3s;
}
.xfooter{
    background: #0f0d1d;
    position: relative;
    padding-top: 80px;
    font-family: "Kumbh Sans", sans-serif;
}
.xfooter:before{
    content:"";
}
.xfooter .left-solid-img{
    position: absolute;
    top: 0;
    left: -15px;
    z-index: 1;
}
.xfooter .right-solid-img{
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}
.xfooter .xfooter-brand{
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 2;
}
.xfooter .xfooter-brand .contact-logo{
    display: flex;
    overflow: hidden;
}
.xfooter .xfooter-brand .contact-logo img{
    max-width: 100%;
}
.xfooter .xfooter-brand .xfooter-etbis{
    display: flex;
    max-width: 100px;
}
.xfooter .xfooter-brand .xfooter-etbis a{
    display: flex;
}
.xfooter .xfooter-brand .xfooter-etbis a img{
    max-width: 100%;
}
.xfooter .xfooter-brand ul.xfooter-social{
    display: flex;
    padding: 0;
    margin:0;
    gap: 9px;
}
.xfooter .xfooter-brand ul.xfooter-social li{
    list-style: none;
}
.xfooter .xfooter-brand ul.xfooter-social li a{
    display: flex;
    text-decoration: none;
    border: 1px solid hsla(0, 0%, 89%, .2);
    width: 36px;
    height: 36px;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #fff;
    transition: 350ms;
}
.xfooter .xfooter-brand ul.xfooter-social li a:hover{
    background: #3c72fc;
}
.xfooter ul.xfooter-menu{
    display: flex;
    flex-direction: row;
    padding: 0;
    margin: 0;
    gap: 10px;
    align-content: center;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}
.xfooter ul.xfooter-menu h3{
    margin-top: 0;
    color: #fff;
    font-weight: 600;
    font-size: 24px;
}
.xfooter ul.xfooter-menu li{
    list-style: none;
    display: flex;
}
.xfooter ul.xfooter-menu li a{
    display: flex;
    text-decoration: none;
    color: #fff;
    opacity: 0.8;
    font-size: 16px;
    align-items: center;
    transition: 350ms;
    gap: 5px;
}
.xfooter ul.xfooter-menu li a:hover{
    color: #3c72fc;
    padding-left: 5px;
}
.xfooter .xfooter-contact{
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 2;
}
.xfooter .xfooter-contact h3{
    margin-top: 0;
    color: #fff;
    font-weight: 600;
    font-size: 24px;
}
.xfooter .xfooter-contact .info{
    display: flex;
    flex-direction: column;
}
.xfooter .xfooter-contact .info strong{
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    opacity: 0.9;
}
.xfooter .xfooter-contact .info span{
    color: #878898;
}
.xfooter .xfooter-copyright{
    display: flex;
    border-top: 1px solid rgba(255, 255, 225, .2);
    padding: 20px 0;
    align-items: center;
    justify-content: center;
    color: #ddd;
    margin-top: 40px;
}
@media(max-width: 767px){}
@media(max-width: 994px) and (min-width: 767px){}
@media(max-width: 1224px) and (min-width: 994px){}