@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

/***** General CSS *****/

body.bg {
    background: url(../images/bg-fade.png);
    background-size: 100%;
}

body {
    word-break: break-word;
    font: 16px/25px 'Roboto', sans-serif;
    color: #000000;
    overflow-x: hidden;
    font-weight: 400;
}

@font-face {
    font-family: Gilroy;
    font-weight: 500;
    src: url(../fonts/gilroy/Gilroy-Bold.ttf);
}

@font-face {
    font-family: Gilroy;
    font-weight: 400;
    src: url(../fonts/gilroy/Gilroy-Medium.ttf);
}

img {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Gilroy', sans-serif;
}

ul {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}

h1 {
    font-size: 65px;
    line-height: 70px;
    color: #000;
    font-weight: 500;
    margin: 0 0 17px;
}

h2 {
    font-size: 45px;
    line-height: 50px;
    color: #000000;
    font-weight: 500;
    margin: 0 0 30px;
}

h3 {
    font-size: 30px;
    line-height: 34px;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    font-size: 24px;
    line-height: 29px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-size: 20px;
    line-height: 25px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-size: 18px;
    line-height: 23px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}


/* BEGIN: HEADER SEC CSS */

.slicknav_menu {
    display: none;
}

@media only screen and (min-width:0px) and (max-width:767px) {
    .slicknav_menu {
        display: block;
    }
}

section.banner {
    padding: 100px 0;
    position: relative;
}

ul#menu {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 60px;
}

.main-navigate {
    padding: 10px 0;
    background: #000;
}

ul#menu>li>a {
    color: #fff;
    font-size: 20px;
    position: relative;
}

a {
    text-decoration: none;
}

.btn-1 {
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    background: #005ff9;
    border-radius: 99px;
    color: #fff !important;
    border: 2px solid #005ff9;
    font-size: 18px;
}

ul#menu>li>a:not(.btn-1):before {
    content: '';
    height: 10px;
    width: 0;
    position: absolute;
    background: #c6daff;
    bottom: 0;
    transition: 0.5s all;
    z-index: -1;
    border-radius: 99px;
}

ul#menu>li>a:not(.btn-1):hover::before {
    width: 100%;
}

h1 span {
    color: #005ff9;
}

.banner h1+span {
    font-size: 22px;
    font-family: 'Gilroy';
    font-weight: 400;
    display: block;
    margin: 30px 0 40px;
}

.btn-2 {
    color: #000;
    font-size: 18px;
    position: relative;
    margin: 0 20px;
    height: 50px;
    display: flex;
    align-items: center;
}

.btn-2:before {
    content: '';
    position: absolute;
    height: 50px;
    width: 50px;
    border-radius: 99px;
    background: #005ff9;
    left: -20px;
    z-index: -1;
    transition: 0.5s all;
}

.btn-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.btn-2:after {
    content: '';
    position: absolute;
    height: 2px;
    width: 100%;
    background: #000;
    bottom: 12px;
    transition: 0.5s all;
}

.btn-2:hover::before {
    width: calc(100% + 40px);
}

.btn-2:hover {
    color: #fff;
}

.btn-2:hover::after {
    width: 0;
}

.btn-1:hover {
    color: #000 !important;
    background: #fff;
    transition: 0.3s all;
}

.ban-img {
    border-top-left-radius: 100%;
    overflow: hidden;
}

.counter-box {
    background: #eee;
    padding: 20px;
    height: 100%;
    border-radius: 10px;
}

.counter-box>span {
    font-size: 60px;
    display: block;
    line-height: 1.1;
    font-family: 'Gilroy';
    font-weight: 500;
    color: #000;
}

.app-box:hover {
    transition: 0.3s all;
}

.app-box:hover * {}

.progrss-bar {
    position: relative;
    height: 1px;
    width: 100%;
    background: #9f9f9f;
}

.progrss-bar>span {
    height: 3px;
    position: absolute;
    width: 50%;
    top: -1px;
    background: #005ff9;
}

.counter-box>p {
    margin: 18px 0 25px;
}

.gif-box-ban {
    margin-top: 24px;
    position: relative;
    background: #010e42;
    overflow: hidden;
    border-radius: 10px;
    z-index: 1;
}

.diagram {
    position: absolute;
    right: 30px;
    top: -40px;
    background: #000;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.diagram::before {
    width: 60%;
    height: 60%;
    position: absolute;
    background: #005ff9;
    z-index: 0;
    content: '';
    border-radius: 6px;
}

.gif-box-ban>div {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    padding: 20px;
}

.gif-box-ban>div>span {
    color: #fff;
    font-family: 'Gilroy';
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 20px;
}

.gif-box-ban>div>span:before {
    content: '';
    height: 2px;
    width: 100px;
    background: #fff;
}

.gif-box-ban>div>h4 {
    color: #fff;
    font-size: 32px;
    width: 55%;
    margin: 15px 0;
    line-height: 1.1;
}

section.banner>img {
    position: absolute;
}

section.banner>img:first-child {
    left: -30px;
    top: 30px;
    -webkit-animation: rotate 6s normal linear infinite;
  animation: rotate 6s normal linear infinite;
}

section.banner>img:nth-child(2) {
    right: -10px;
    bottom: 0;
    -webkit-animation: rotate 6s normal linear infinite;
  animation: rotate 6s normal linear infinite;
}

.about-img svg path {
    fill: #efe9ff;
}

.about-img>img {
    width: 80%;
    border-radius: 12px 50px 12px 50px;
}

.about-img {
    position: relative;
    text-align: center;
}

.about-img>svg {
    position: absolute;
    width: 100%;
    z-index: -1;
    transform: scaleY(1.5) scaleX(1.2);
    left: -20px;
    pointer-events: none;
}

.about-section {
    padding: 50px 0;
    position: relative;
}

.about-section>img {
    position: absolute;
    top: 0;
    left: 10px;
   -webkit-animation: rotate 6s normal linear infinite;
  animation: rotate 6s normal linear infinite;
}

h2 span {
    color: #005ff9;
}

section.service-sec {
    background: url(../images/serv-bg.jpg);
    background-size: 100% 100%;
    padding: 50px 0;
    position: relative;
}

section.service-sec h2 {
    color: #fff;
    margin: 0 0 10px;
}

section.service-sec h2+p {
    color: #fff;
}

.serv-box {
    padding: 40px 20px;
    background: #fff;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    margin: 0 10px;
    overflow: hidden;
}

.serv-box>img {
    height: 80px;
}

.serv-box>b {
    display: block;
    font-size: 18px;
    color: #005ff9;
    margin: 20px 0 5px;
    font-family: 'Gilroy';
    font-weight: 500;
}

.serv-box>span {
    height: 50px;
    width: 50px;
    position: absolute;
    background: #005ff9;
    border-radius: 50%;
    left: 5px;
    top: 15px;
    z-index: -1;
    transition: 0.5s all;
}

.serv-box>a {
    display: flex;
    height: 40px;
    width: 80px;
    justify-content: center;
    margin-left: auto;
    align-items: center;
    position: relative;
    color: #000;
    margin-right: 20px;
}

.serv-box>a:before {
    content: '';
    position: absolute;
    height: 40px;
    width: 40px;
    background: #005ff9;
    border-radius: 99px;
    left: -20px;
    z-index: -1;
    transition: 0.3s all;
}

.serv-box>a:hover::before {
    width: calc(100% + 40px);
}

.serv-box>a:hover {
    color: #fff;
}

.service-slider .slick-arrow {
    position: absolute;
    visibility: hidden;
}

.arrow-slider {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 106%;
    padding: 0;
    top: 60%;
    left: -3%;
}

.arrow-slider>a {
    height: 50px;
    width: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 24px;
    line-height: 0;
    box-shadow: 0 0 20px 0 #00000063;
}
.arrow-slider>a i {
    margin-bottom: -2px;
    font-weight: 700;
}
.serv-box:hover>span {
    height: 200%;
    width: 200%;
    background: #c6daff;
    top: -10px;
    left: -10px;
}

section.steps-sec {
    padding: 100px 0;
    position: relative;
}

.step-box {
    padding: 27px 90px 20px 30px;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
}

.step-box>b {
    font-size: 20px;
    color: #000;
    font-family: 'Gilroy';
    display: block;
    margin: 45px 0 10px;
}

.step-box>span {
    height: 120px;
    width: 120px;
    position: absolute;
    border-radius: 50%;
    left: -60px;
    right: 0;
    margin: auto;
    top: 0;
    background: #005ff9;
    z-index: -1;
    transition: 0.5s all;
}

.step-box:hover>span {
    transform: scale(5.5);
    background: #c6daff;
}

.step-box:hover>img {
    filter: invert(1);
}

.steps-sec .row {
    margin-right: -50px;
}

section.steps-sec>img:first-child {
    position: absolute;
    left: 60px;
   -webkit-animation: rotate 6s normal linear infinite;
  animation: rotate 6s normal linear infinite;
}

section.steps-sec>img:nth-child(2) {
    position: absolute;
    bottom: 30px;
    right: 30px;
   -webkit-animation: rotate 6s normal linear infinite;
  animation: rotate 6s normal linear infinite;
}

.logo-slider img {
    height: 60px;
    padding: 16px;
    background: #fff;
    object-fit: contain;
    margin: 0 20px;
    border-radius: 10px;
}

section.clients-sec {
    padding: 50px 0;
    background: #005ff9;
}

section.clients-sec h2 {
    color: #fff;
}

section.approch-sec {
    padding: 100px 0;
    position: relative;
}

.app-box {
    padding: 20px;
    background: #0044b2;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    overflow: hidden;
    position: relative;
    min-height: 282px;
    z-index: 1;
}

.app-box>span {
    display: block;
    color: #fff;
    font-size: 20px;
    margin: 20px 0 10px;
}

.app-box.mt-4>img {
    position: absolute;
    top: 50px;
    left: 50px;
    
}
.flower{
    animation: rotate 6s normal linear infinite;

}

.app-box.mt-4 {
    height: 282px;
}

.app-box.bx-2 {
    height: 100%;
}

.app-box.bx-2>img {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    transform: scale(2) translateY(-20px) translateX(-10px);
    z-index: -1;
}

.col-md-12 .app-box.mt-4>img {
    left: 0;
    width: 100%;
    height: 100%;
    top: 0;
    object-fit: cover;
    z-index: -1;
    mix-blend-mode: soft-light;
    pointer-events: none;
}

section.approch-sec>img {
    top: 200px;
    position: absolute;
    right: 200px;
   -webkit-animation: rotate 6s normal linear infinite;
  animation: rotate 6s normal linear infinite;
}

.testi-box {
    margin: 0 20px;
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    display: flex !important;
    align-items: center;
    gap: 20px;
}

.testi-box>img {
    height: 280px;
    width: 245px;
    object-fit: cover;
    border-radius: 10px;
}

.testi-box>div>img {
    margin: 0 0 30px;
}

.testi-box>div>p {
    font-size: 25px;
    font-weight: 500;
    font-family: 'Gilroy';
    line-height: 1.1;
}

.testi-box>div {
    padding: 20px;
}

.testi-box>div>div {
    font-size: 24px;
    color: #000;
    line-height: 1.2;
}

.testi-box>div>div>span {
    display: block;
    color: #005ff9;
}

.testi-slider .slick-list {
    padding: 0 15%;
    margin: 0 10px;
}

.testi-slider .slick-slide {
    opacity: 0.5;
}

.testi-slider .slick-current {
    opacity: 1;
}

section.testimonial-sec {
    padding: 100px 0;
    position: relative;
}

section.testimonial-sec .arrow-slider {
    top: 45%;
}

.testi-slider .slick-arrow {
    position: absolute;
    visibility: hidden;
}

section.testimonial-sec>div {
    background: #eee;
    padding: 40px 15px;
    border-radius: 20px;
}


/*footer start*/

.footerSec {
    margin-top: 40px;
    width: 100%;
    object-fit: cover;
    padding-top: 80px;
    background: #000000;
}

h5.f-head {
    font-size: 32px;
    color: #fff;
    font-weight: 500;
    position: relative;
    margin: 0 0 30px;
    display: inline-block;
    line-height: 1;
}

.news-letter>img {
    margin: 0 0 20px -40px;
}

.footer-contact ul li img {
    margin: 0px 30px 0 0;
    width: 8%;
}

.footer-contact ul li span {
    font-size: 15px;
    color: #fff;
}

.footer-contact ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.foot-links ul li a {
    font-size: 18px;
    color: #fff;
    font-weight: 400;
    line-height: 2;
}

.news-letter p {
    font-size: 16px;
    color: #fff;
}

.footer-in input {
    width: 100%;
    height: 49px;
    border: none;
    border-radius: 50px;
    padding: 20px;
}

.footer-in {
    position: relative;
}

.footer-in button {
    position: absolute;
    width: 30%;
    right: 0;
    background: #9b800d;
    border: none;
    color: #fff;
    font-family: 'Poppins';
    font-weight: 400;
    padding: 12px 20px;
    border-radius: 50px;
    transition: .5s;
}

.footer-contact ul li>i {
    height: 40px;
    width: 40px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
}

ul.footer-media {
    margin-top: 30px;
}

ul.footer-media li a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #000;
    font-size: 24px;
    margin: 0 10px 0 0;
    transition: .5s;
    background: #fff;
}
ul.footer-media li a i {
    margin-bottom: -2px;
}

ul.footer-media li a:hover {
    color: #005ff9;
    transition: .5s;
}

.copy-txt p {
    margin: 0;
    color: #fff;
    font-weight: 400;
}

.footer-btm {
    background: #000;
    padding: 20px 0;
    margin-top: 30px;
    border-top: 1px solid #fff;
}


/*footer End*/

.gif-box-ban>img {
    opacity: 0;
}

.gif-box-ban>svg {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: scale(1.5) translateX(-100px);
    left: 0;
    z-index: -1;
    opacity: 0.2;
}

span.barsss {
    position: absolute;
    width: 165px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    right: 30px;
    bottom: -10px;
}

span.barsss>span {
    height: 140px;
    width: 50px;
    background: #fff;
    border-radius: 5px;
    animation: heighter 15s infinite;

}

@keyframes heighter {
    0% {
        height: 0px;
    }
    10% {
        height: 0px;
    }
    20% {
        height: 0px;
    }
    30% {
        height: 140px;
    }
    40% {
        height: 140px;
    }
    50% {
        height: 140px;
    }
    60% {
        height: 0px;
    }
    70% {
        height: 140px;
    }
    80% {
        height: 140px;
    }
    90% {
        height: 140px;
    }
    100% {
        height: 0px;
    }
}

span.barsss>span:first-child {
    transform: translateY(40px);
    animation-delay: 0.3s;
}

span.barsss>span:nth-child(2) {
    transform: translateY(20px);
    animation-delay: 0.2s;
}

html {
    overflow-x: hidden;
}

.slicknav_nav .btn-1 {
    display: none;
}

.slicknav_menu {
    font-size: 16px;
    background: black;
    padding: 5px;
}

.slicknav_btn {
    background-color: #005ff9;
}


/* Responsive */

@media only screen and (min-width:1200px) and (max-width:1399px) {
    h1 {
        font-size: 56px;
        line-height: 60px;
    }
    .gif-box-ban>div>h4 {
        font-size: 29px;
    }
    .testi-box>div>p {
        font-size: 19px;
    }
}

@media only screen and (min-width:0px) and (max-width:767px) {
    .main-navigate {
        padding: 20px 0 0;
    }
    .logo {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .btn-1 {
        height: 40px;
        padding: 0 25px;
        font-size: 14px;
    }
    h1 {
        font-size: 35px;
        line-height: 40px;
    }
    .banner h1+span {
        margin: 20px 0 20px;
    }
    .btn-2 {
        font-size: 14px;
    }
    .btn-wrapper {
        gap: 10px;
    }
    .btn-2:before {
        height: 40px;
        width: 40px;
    }
    section.banner .row.justify-content-between {
        gap: 60px;
    }
    .gif-box-ban>img {
        height: 300px;
    }
    .gif-box-ban>div>h4 {
        font-size: 30px;
        width: 100%;
    }
    .about-img {
        margin: 0 0 50px;
    }
    h2 {
        font-size: 34px;
        line-height: 40px;
    }
    .arrow-slider {
        top: 103%;
        width: 50%;
        right: 0;
        margin: auto;
    }
    section.service-sec {
        padding-bottom: 100px;
    }
    section.steps-sec>img:first-child {
        left: 20px;
        top: 20px;
    }
    .step-box {
        padding: 27px 30px 0px 30px;
        clip-path: polygon(0% 0%, 100% 0, 100% 75%, 50% 100%, 0 75%);
        margin: 0 0 40px;
    }
    .steps-sec .row {
        margin-right: -12px;
    }
    .step-box>span {
        left: 0;
    }
    .app-box {
        margin: 12px 0;
    }
    .app-box.bx-2 {
        height: 560px;
    }
    section.testimonial-sec {
        padding: 0;
    }
    .testi-box {
        display: block !important;
        padding: 20px;
    }
    .testi-slider .slick-list {
        padding: 0;
        margin: 0 -20px;
    }
    .testi-box>div>p {
        font-size: 14px;
    }
    .testi-box>div {
        padding: 20px 0 0;
    }
    .testi-box>img {
        width: 100%;
    }
    section.testimonial-sec .arrow-slider {
        top: 90%;
    }
    section.testimonial-sec>div {
        padding-bottom: 100px;
    }
    h5.f-head {
        margin: 30px 0 20px;
    }
    .slicknav_nav a {
        font-size: 18px;
    }
    .ban-img {
        margin-bottom: 20px;
    }
}












@keyframes rotate {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
  25% {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
  }
  50% {
    -webkit-transform: rotate3d(0, 0, 1, 180deg);
    transform: rotate3d(0, 0, 1, 180deg);
  }
  75% {
    -webkit-transform: rotate3d(0, 0, 1, 270deg);
    transform: rotate3d(0, 0, 1, 270deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 360deg);
    transform: rotate3d(0, 0, 1, 360deg);
  }
}