/* @import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i%7COswald:400,500,600,700&display=swap'); */

:root {
    --heading-font: 'Oswald', sans-serif;
    --para-font: 'Open Sans', sans-serif;
    --heading-color: #fff;
    --para-color: #dedee2;
    --main-color: #05c3de;
    --bg-main-color: #171744;
    --bg-second-color: #1c1d55
}

body {
    font-size: 16px;
    font-family: var(--para-font);
    padding: 0;
    margin: 0;
    font-weight: 400;
    overflow-x: hidden
}

html {
    scroll-behavior: smooth
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0
}

h1,
h1>a,
h2,
h2>a,
h3,
h3>a,
h4,
h4>a,
h5,
h5>a,
h6,
h6>a {
    font-family: var(--heading-font);
    color: var(--heading-color);
    line-height: 1.25;
    font-weight: 600;
    text-transform: capitalize;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s
}

h1>a:hover,
h2>a:hover,
h3>a:hover,
h4>a:hover,
h5>a:hover,
h6>a:hover {
    color: var(--main-color)
}

h1,
h1>a {
    font-size: 70px;
    font-weight: 700
}

h2,
h2>a {
    font-size: 60px;
    font-weight: 700
}

h3,
h3>a {
    font-size: 24px;
    font-weight: 700
}

h4,
h4>a {
    font-size: 20px
}

h5,
h5>a {
    font-size: 18px
}

h6,
h6>a {
    font-size: 16px
}

a {
    display: inline-block;
    font-family: var(--para-font);
    font-weight: 400
}

a,
a:focus,
a:hover {
    text-decoration: none;
    color: inherit
}

p,
span,
li {
    margin: 0;
    font-family: var(--para-font);
    color: var(--para-color);
    line-height: 1.7;
    font-size: 16px
}

span,
li {
    text-transform: capitalize
}

p {
    font-family: var(--para-font);
    font-size: 18px;
    font-weight: 500
}

img {
    max-width: 100%;
    height: auto
}

ul,
ol {
    padding: 0;
    margin: 0;
    list-style: none
}

button:focus,
input:focus,
textarea:focus {
    outline: 0
}

button {
    border: 0;
    cursor: pointer
}

input,
textarea {
    padding: 12px 15px;
    border: 1px solid #12387e;
    border-radius: 6px;
    font-size: 16px;
    background: transparent;
    width: 100%;
    font-family: var(--para-font);
    color: #4c588f;
    text-transform: capitalize
}

label {
    color: var(--heading-color)
}

select {
    padding: 10px 20px;
    border: 1px solid #e5e5e5;
    cursor: pointer
}

textarea {
    min-height: 150px;
    resize: none
}

span {
    display: inline-block
}

.bg {
    background-color: var(--bg-main-color)
}

.bg-overlay-black {
    position: relative
}

.bg-overlay-black:before {
    content: "";
    position: absolute;
    background-color: #171744;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    opacity: .6
}

.bg-overlay-black>div {
    position: relative;
    z-index: 2
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        -ms-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        -ms-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        -ms-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        -ms-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

::selection {
    background-color: var(--main-color)
}

.bg_img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat
}

.title span {
    font-size: inherit;
    font-family: inherit;
    line-height: inherit;
    font-weight: inherit
}

.bg_img {
    background-position: center;
    background-size: cover
}

.mr-1,
.mx-1 {
    margin-right: .25rem !important
}

.mt-1,
.my-1 {
    margin-top: .25rem !important
}

.button-group {
    display: inline-flex;
    overflow: hidden;
    flex-wrap: wrap;
    justify-content: center
}

.b-none {
    border: none !important
}

.section-header {
    position: relative;
    margin-top: -10px;
    margin-bottom: 53px
}

.title {
    color: var(--heading-color)
}

.section-title {
    padding: 0;
    font-weight: 700;
    font-size: 40px;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 20px
}

.title-border {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 3px;
    background-color: var(--main-color);
    margin: 0 13px 30px 13px
}

.title-border::before {
    position: absolute;
    content: '';
    left: -13px;
    bottom: 0;
    width: 10px;
    height: 3px;
    background-color: var(--main-color)
}

.title-border::after {
    position: absolute;
    content: '';
    right: -13px;
    bottom: 0;
    width: 10px;
    height: 3px;
    background-color: var(--main-color)
}

.title-border-center {
    margin: 0 auto;
    margin-bottom: 30px
}

@media(max-width: 991px) {
    .section-title {
        font-size: 30px
    }
}

@media(max-width: 575px) {
    .section-title {
        font-size: 24px
    }

    #vmap {
        height: 240px !important;
        margin-left: 0 !important;
    }
}

.section-title span {
    color: var(--primary-color);
    font-size: inherit;
    font-family: inherit;
    line-height: inherit;
    font-weight: inherit
}

.shadow-none {
    -webkit-box-shadow: none;
    box-shadow: none
}

.mb-30 {
    margin-bottom: 30px
}

.mb-60 {
    margin-bottom: 60px
}

.mb-60-none {
    margin-bottom: -60px
}

.mb-30-none {
    margin-bottom: -30px
}

.mt-60 {
    margin-top: 60px
}

.tx {
    text-align: right
}

.mt-30 {
    margin-top: 30px
}

.mt-60-none {
    margin-top: -60px
}

.mb-90 {
    margin-bottom: 90px
}

.mb-90-none {
    margin-bottom: -90px
}

.pt-80 {
    padding-top: 80px
}

.pt-120 {
    padding-top: 120px
}

@media(max-width: 991px) {
    .pt-120 {
        padding-top: 90px
    }
}

@media(max-width: 575px) {
    .pt-120 {
        padding-top: 70px
    }
}

.pb-120 {
    padding-bottom: 120px
}

@media(max-width: 991px) {
    .pb-120 {
        padding-bottom: 90px
    }
}

@media(max-width: 575px) {
    .pb-120 {
        padding-bottom: 70px
    }
}

.px-40 {
    padding-left: 40px;
    padding-right: 40px
}

@media(max-width: 575px) {
    .px-40 {
        padding-left: 15px;
        padding-right: 15px
    }
}

.scrollToTop {
    position: fixed;
    bottom: 0;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background-image: -moz-linear-gradient(-30deg, #c165dd 0, #5c27fe 100%);
    background-image: -webkit-linear-gradient(-30deg, #c165dd 0, #5c27fe 100%);
    background-image: -ms-linear-gradient(-30deg, #c165dd 0, #5c27fe 100%);
    color: #fff;
    line-height: 50px;
    font-size: 24px;
    text-align: center;
    z-index: 99;
    cursor: pointer;
    transition: all 1s;
    transform: translateY(100%)
}

.scrollToTop.active {
    bottom: 30px;
    transform: translateY(0%);
    color: var(--main-color);
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
    animation: giraffe 3s linear infinite
}

.scrollToTop.active::before,
.scrollToTop.active::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 8px;
    background-image: -moz-linear-gradient(-30deg, #c165dd 0, #5c27fe 100%);
    background-image: -webkit-linear-gradient(-30deg, #c165dd 0, #5c27fe 100%);
    background-image: -ms-linear-gradient(-30deg, #c165dd 0, #5c27fe 100%);
    opacity: .15;
    z-index: -10
}

.scrollToTop.active::before {
    z-index: -10;
    -webkit-animation: inner-ripple 2000ms linear infinite;
    -moz-animation: inner-ripple 2000ms linear infinite;
    animation: inner-ripple 2000ms linear infinite
}

.scrollToTop.active::after {
    z-index: -10;
    -webkit-animation: outer-ripple 2000ms linear infinite;
    -moz-animation: outer-ripple 2000ms linear infinite;
    animation: outer-ripple 2000ms linear infinite
}

.scrollToTop:hover {
    color: #fff
}

@-webkit-keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0)
    }

    100% {
        -webkit-transform: scale(1.0);
        opacity: 0
    }
}

@keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    100% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
        opacity: 0
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        -ms-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg)
    }

    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        -ms-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg)
    }
}

@-moz-keyframes rotate {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        -ms-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg)
    }

    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        -ms-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg)
    }
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        -ms-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg)
    }

    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        -ms-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg)
    }
}

*::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5
}

*::-webkit-scrollbar {
    width: 6px;
    background-color: #000
}

*::-webkit-scrollbar-button {
    background-color: #000
}

*::-webkit-scrollbar-thumb {
    background-color: #000
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        -ms-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        -ms-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}

.cmn-btn {
    position: relative;
    padding: 0 45px;
    text-align: center;
    display: inline-block;
    color: #fff;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 500;
    line-height: 50px;
    overflow: hidden;
    text-transform: uppercase;
    transition: all .5s;
    z-index: 1
}

.cmn-btn::before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: -moz-linear-gradient(-30deg, #c165dd 0, #5c27fe 100%);
    background-image: -webkit-linear-gradient(-30deg, #c165dd 0, #5c27fe 100%);
    background-image: -ms-linear-gradient(-30deg, #c165dd 0, #5c27fe 100%);
    z-index: -1;
    opacity: 1;
    transition: all .5s
}

.cmn-btn::after {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: -moz-linear-gradient(-30deg, #c165dd 0, #5c27fe 100%);
    background-image: -webkit-linear-gradient(-30deg, #c165dd 0, #5c27fe 100%);
    background-image: -ms-linear-gradient(-30deg, #c165dd 0, #5c27fe 100%);
    z-index: -1;
    opacity: 0;
    transition: all .5s
}

.cmn-btn i {
    padding-left: 10px
}

.cmn-btn:hover {
    color: white
}

.cmn-btn:hover::before {
    opacity: 0
}

.cmn-btn:hover::after {
    opacity: 1
}

.custom-btn {
    color: var(--main-color)
}

.custom-btn i {
    padding-left: 10px
}

.custom-btn:hover {
    color: var(--main-color)
}

.header {
    width: 1170px;
    margin: 10px auto;
    z-index: 99;
    -webkit-transition: all ease 1s;
    transition: all ease 1s;
    padding: 0 20px;
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.header img {
    width: 100px;
}

.banner-btn-area {
    margin-top: 40px;
}

@media(max-width: 1200px) {
    .header {
        width: 100%;
    }

    .header img,
    .footer-logo img {
        width: 100px;
    }
}


@media(max-width: 768px) {
    .header {
        width: 100%;
    }

    .header img,
    .footer-logo img {
        width: 70px;
    }
}

@media(max-width: 575px) {
    .header {
        width: 100%;
    }

    .header img,
    .footer-logo img {
        width: 60px;
    }

    .header-right a ,.footer-btn a{
        padding: 0 20px;
        font-size: 12px;
        line-height: 30px;
    }

    .banner-btn-area {
        margin-top: 70%;
    }
}

.banner-section {
    height: 100vh;
    position: relative;
    padding-top: 300px;
    padding-bottom: 300px;
    overflow: hidden
}

.banner-element-one {
    position: absolute;
    left: 50%
}

.banner-element-two {
    position: absolute;
    right: 0;
    bottom: 20px
}

.banner-element-three {
    position: absolute;
    left: 10%;
    bottom: 10%
}

.banner-element-four {
    position: absolute;
    left: 22%;
    bottom: 16%
}

.banner-element-five {
    position: absolute;
    left: 5%;
    top: 22%
}

.banner-element-six {
    position: absolute;
    left: 60%;
    bottom: 16%
}

.banner-element-seven {
    position: absolute;
    right: 20px;
    bottom: 55%;
    animation: giraffe 3s linear infinite
}

.banner-element-eight {
    position: absolute;
    right: 20px;
    bottom: 70%;
    -webkit-animation: lineThree 8s infinite linear;
    animation: lineThree 8s infinite linear
}

.banner-element-nine {
    position: absolute;
    right: 40px;
    top: 10%;
    -webkit-animation: lineThree 10s infinite linear;
    animation: lineThree 10s infinite linear
}

.banner-element-ten {
    position: absolute;
    right: 60px;
    top: 20%;
    -webkit-animation: zoominoutsinglefeatured 3s linear infinite;
    animation: zoominoutsinglefeatured 3s linear infinite
}

.banner-element-eleven {
    position: absolute;
    left: 30%;
    top: 16%;
    opacity: .5;
    -webkit-animation: zoominoutsinglefeatured 3s linear infinite;
    animation: zoominoutsinglefeatured 3s linear infinite
}

.banner-element-twelve {
    position: absolute;
    left: 20%;
    top: 0;
    -webkit-animation: lineThree 8s infinite linear;
    animation: lineThree 8s infinite linear
}

.banner-element-thirteen {
    position: absolute;
    left: 20%;
    top: 10%;
    -webkit-animation: lineThree 10s infinite linear;
    animation: lineThree 10s infinite linear
}

.banner-element-fourteen {
    position: absolute;
    left: 50%;
    top: 10%;
    -webkit-animation: lineThree 10s infinite linear;
    animation: lineThree 10s infinite linear
}

.banner-element-fifteen {
    position: absolute;
    left: 60%;
    top: 5%;
    -webkit-animation: lineThree 8s infinite linear;
    animation: lineThree 8s infinite linear
}

.banner-element-sixteen {
    position: absolute;
    left: 65%;
    top: 5%;
    -webkit-animation: lineThree 8s infinite linear;
    animation: lineThree 8s infinite linear
}

.banner-element-seventeen {
    position: absolute;
    right: 0;
    bottom: 50%;
    -webkit-animation: lineThree 8s infinite linear;
    animation: lineThree 8s infinite linear
}

.banner-element-eightteen {
    position: absolute;
    right: 0;
    bottom: 20%;
    -webkit-animation: lineThree 8s infinite linear;
    animation: lineThree 8s infinite linear
}

.banner-element-nineteen {
    position: absolute;
    right: 50%;
    bottom: 50%;
    opacity: .5
}

@keyframes giraffe {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(20px)
    }

    100% {
        transform: translateY(0px)
    }
}

.banner-content .title {
    font-size: 80px
}

.banner-content .sub-title {
    font-size: 24px
}

@keyframes rotate2 {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-moz-keyframes rotate2 {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes rotate2 {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@media(max-width: 575px) {

    .banner-element-two,
    .banner-element-three,
    .banner-element-four,
    .banner-element-ten,
    .banner-element-eleven {
        display: none;
    }

    .banner-element-one {
        top: 50%;
    }

    .banner-element-six {
        left: 10%;
    }

    .banner-element-seven {
        left: 55%;
        top: 6%;
        bottom: auto;
    }

    .banner-element-nine {
        top: 40%;
    }

    .banner-element-fourteen {
        top: 30%;
    }

    .banner-section {
        height: 100vh;
        padding-top: 30vh;
    }

    .banner-content .title {
        font-size: 40px
    }

    .banner-content .sub-title {
        font-size: 24px
    }
}

@media(max-width: 768px) {
    .banner-content .title {
        font-size: 40px
    }

    .banner-content .sub-title {
        font-size: 24px
    }

    .title {
        font-size: 30px !important;
    }
    .client-details .title{
        font-size: 16px !important;
    }
}

@media(max-width: 1200px) {
    .banner-content .title {
        font-size: 50px
    }

    .banner-content .sub-title {
        font-size: 24px
    }

}

.about-section {
    position: relative;
    overflow: hidden
}

.about-element-one {
    position: absolute;
    top: 20%;
    right: 10%;
    animation: lineThree 12s infinite linear
}

.about-element-two {
    position: absolute;
    top: 20%;
    right: 8%;
    animation: lineThree 8s infinite linear
}

.about-element-three {
    position: absolute;
    top: 20%;
    right: 12%;
    animation: lineThree 6s infinite linear
}

.about-element-four {
    position: absolute;
    top: 20%;
    left: 12%;
    animation: lineThree 6s infinite linear
}

.about-element-five {
    position: absolute;
    top: 20%;
    left: 13%;
    animation: lineThree 15s infinite linear
}

.about-element-six {
    position: absolute;
    top: 20%;
    left: 15%;
    animation: lineThree 5s infinite linear
}

.about-element-seven {
    position: absolute;
    top: 20%;
    left: 14%;
    animation: lineThree 20s infinite linear
}

.about-element-eight {
    position: absolute;
    bottom: 10%;
    right: 10%;
    animation: zoominoutsinglefeatured 4s linear infinite
}

.about-element-nine {
    position: absolute;
    bottom: 10%;
    left: 5%;
    animation: rotate2 10s linear infinite
}

.about-element-ten {
    position: absolute;
    top: 10%;
    left: 5%;
    animation: zoominoutsinglefeatured 4s linear infinite
}

.about-item {
    position: relative;
    background-color: #1d1d55;
    padding: 25px;
    border-radius: 10px;
    overflow: hidden;
    z-index: 2;
    transition: all .5s
}

.about-icon {
    width: 120px;
    height: 120px;
    line-height: 120px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    background-image: -moz-linear-gradient(-82deg, rgba(115, 240, 255, 0.2) 0, rgba(64, 94, 252, 0.2) 100%);
    background-image: -webkit-linear-gradient(-82deg, rgba(115, 240, 255, 0.2) 0, rgba(64, 94, 252, 0.2) 100%);
    background-image: -ms-linear-gradient(-82deg, rgba(115, 240, 255, 0.2) 0, rgba(64, 94, 252, 0.2) 100%)
}

.about-item .title {
    margin-top: 20px;
    margin-bottom: 20px
}

.about-item::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: -moz-linear-gradient(-82deg, #73f0ff 0, #5aa7fe 38%, #405efc 100%);
    background-image: -webkit-linear-gradient(-82deg, #73f0ff 0, #5aa7fe 38%, #405efc 100%);
    background-image: -ms-linear-gradient(-82deg, #73f0ff 0, #5aa7fe 38%, #405efc 100%);
    z-index: -1;
    -ms-transform: translate(-100%, -100%);
    -webkit-transform: translate(-100%, -100%);
    transform: translate(-100%, -100%);
    transition: all .5s
}

.about-item::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: -moz-linear-gradient(-82deg, #73f0ff 0, #5aa7fe 38%, #405efc 100%);
    background-image: -webkit-linear-gradient(-82deg, #73f0ff 0, #5aa7fe 38%, #405efc 100%);
    background-image: -ms-linear-gradient(-82deg, #73f0ff 0, #5aa7fe 38%, #405efc 100%);
    z-index: -1;
    -ms-transform: translate(100%, 100%);
    -webkit-transform: translate(100%, 100%);
    transform: translate(100%, 100%);
    transition: all .5s
}

.about-item:hover::before {
    -ms-transform: translate(0%, 0%);
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%)
}

.about-item:hover::after {
    -ms-transform: translate(0%, 0%);
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%)
}

.about-item:hover .about-icon {
    background-image: -moz-linear-gradient(-82deg, #405efc 0, #73f0ff 100%);
    background-image: -webkit-linear-gradient(-82deg, #405efc 0, #73f0ff 100%);
    background-image: -ms-linear-gradient(-82deg, #405efc 0, #73f0ff 100%)
}

.about-content .sub-title {
    text-transform: uppercase;
    color: var(--main-color);
    margin-bottom: 10px
}

.about-content .title {
    margin-bottom: 10px
}

.about-content p {
    margin-bottom: 20px
}

.about-content .about-content-btn {
    margin-top: 30px
}

.about-content .about-content-btn .cmn-btn {
    padding: 0 40px
}

.join-section {
    position: relative;
    overflow: hidden
}

.join-element-one {
    position: absolute;
    top: 20%;
    left: 0;
    animation: zoominoutsinglefeatured 4s linear infinite
}

.join-element-two {
    position: absolute;
    top: 10%;
    left: 20%;
    animation: zoominoutsinglefeatured 4s linear infinite
}

.join-element-three {
    position: absolute;
    top: 10%;
    left: 30%;
    animation: zoominoutsinglefeatured 4s linear infinite
}

.join-element-four {
    position: absolute;
    top: 5%;
    left: 40%;
    animation: zoominoutsinglefeatured 4s linear infinite
}

.join-element-five {
    position: absolute;
    top: 70%;
    left: 20%;
    animation: lineThree 10s infinite linear
}

.join-element-six {
    position: absolute;
    top: 70%;
    left: 18%;
    animation: lineThree 6s infinite linear
}

.join-element-seven {
    position: absolute;
    top: 70%;
    left: 22%;
    animation: lineThree 8s infinite linear
}

.join-element-eight {
    position: absolute;
    top: 20%;
    left: 50%;
    animation: lineThree 10s infinite linear
}

.join-element-nine {
    position: absolute;
    top: 20%;
    left: 52%;
    animation: lineThree 6s infinite linear
}

.join-element-ten {
    position: absolute;
    top: 20%;
    left: 48%;
    animation: lineThree 8s infinite linear
}

.join-element-eleven {
    position: absolute;
    top: 10%;
    right: 10%;
    animation: lineThree 10s infinite linear
}

.join-element-twelve {
    position: absolute;
    top: 10%;
    right: 8%;
    animation: lineThree 20s infinite linear
}

.join-element-thirteen {
    position: absolute;
    top: 10%;
    right: 6%;
    animation: lineThree 16s infinite linear
}

.join-element-fourteen {
    position: absolute;
    top: 70%;
    right: 6%;
    animation: lineThree 16s infinite linear
}

.join-element-fifteen {
    position: absolute;
    top: 70%;
    right: 8%;
    animation: lineThree 16s infinite linear
}

.join-element-sixteen {
    position: absolute;
    top: 70%;
    right: 10%;
    animation: lineThree 16s infinite linear
}

.counter-item {
    width: 100%;
    position: relative;
    background-color: var(--bg-second-color);
    padding: 40px 30px;
    border-radius: 8px
}

.counter-item:last-child {
    margin-right: 0
}

.counter-item .odo-area {
    position: relative;
    transition: all .7s
}

.counter-item .odo-area .odo-title {
    color: white;
    display: inline-block
}

@media only screen and (max-width: 991px) {
    .counter-item .odo-area .odo-title {
        font-size: 30px
    }
}

.counter-item .odo-area .odo-title span {
    font-size: inherit;
    color: inherit
}

.counter-item p {
    font-weight: 600;
    font-size: 18px;
    color: var(--main-color)
}

@media only screen and (max-width: 991px) {
    .counter-item p {
        font-size: 16px
    }
}

.counter-item:last-child::after {
    display: none
}

@media(min-width: 992px) {
    .counter-item .counter-content .odo-title {
        font-size: 28px;
        margin-top: -12px
    }
}

.client-section {
    position: relative;
    overflow: hidden
}

.client-element-one {
    position: absolute;
    top: 0;
    left: 40%;
    animation: giraffe 3s linear infinite
}

.client-element-two {
    position: absolute;
    bottom: 0;
    left: 20%;
    animation: giraffe 3s linear infinite
}

.client-element-three {
    position: absolute;
    top: 30%;
    left: 20%;
    animation: lineThree 10s infinite linear
}

.client-element-four {
    position: absolute;
    top: 30%;
    left: 19%;
    animation: lineThree 20s infinite linear
}

.client-element-five {
    position: absolute;
    top: 30%;
    left: 22%;
    animation: lineThree 8s infinite linear
}

.client-element-six {
    position: absolute;
    top: 10%;
    right: 10%;
    animation: lineThree 10s infinite linear
}

.client-element-seven {
    position: absolute;
    top: 10%;
    right: 9%;
    animation: lineThree 20s infinite linear
}

.client-element-eight {
    position: absolute;
    top: 10%;
    right: 12%;
    animation: lineThree 8s infinite linear
}

.client-item-area {
    position: relative;
    background-image: -moz-linear-gradient(16deg, #e1a1ed 0, #ac7df1 35%, #7658f4 100%);
    background-image: -webkit-linear-gradient(16deg, #e1a1ed 0, #ac7df1 35%, #7658f4 100%);
    background-image: -ms-linear-gradient(16deg, #e1a1ed 0, #ac7df1 35%, #7658f4 100%);
    border-radius: 50%
}

@media(min-width: 768px) {
    .client-item-area {
        padding: 35px 50px 81px;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%
    }
}

@media(min-width: 768px) and (max-width:991px) {
    .client-item-area {
        padding: 90px 50px 131px;
        max-width: 630px;
        margin-left: auto;
        margin-right: auto;
        height: 635px
    }
}

@media(min-width: 992px) and (max-width:1200px) {
    .client-item-area .client-details p {
        font-size: 20px
    }

    .client-item-area .swiper-pagination {
        margin-top: 30px
    }
}

@media(max-width: 767px) {
    .client-item-area {
        padding: 60px;
        border-radius: 30px
    }
}

@media(max-width: 575px) {
    .client-item-area {
        padding: 50px 15px;
        border-radius: 15px
    }

    .ruddra-next,
    .ruddra-prev {
        display: none !important
    }

    .client-item-area .client-details p {
        font-size: 18px
    }

    .client-item::before,
    .client-item::after {
        font-size: 40px !important
    }
}

@media(min-width: 768px) and (min-width:1200px) {
    .client-item-area {
        padding: 90px 50px 131px;
        height: 635px
    }
}

.client-item {
    position: relative
}

.client-item::before {
    position: absolute;
    content: "\f10d";
    top: 20%;
    left: 20px;
    color: #8662d9;
    font-family: 'Font Awesome 5 Free';
    font-size: 80px;
    font-weight: 600;
    opacity: .5
}

.client-item::after {
    position: absolute;
    content: "\f10e";
    bottom: -6%;
    right: 20px;
    color: #8662d9;
    font-family: 'Font Awesome 5 Free';
    font-size: 80px;
    font-weight: 600;
    opacity: .7
}

.client-details {
    margin-top: 30px
}

.client-ratings {
    margin-bottom: 20px
}

.client-ratings i {
    color: #fc0
}

.client-details p {
    font-size: 24px;
    font-weight: 600
}

.client-details .title {
    font-size: 24px;
    padding: 5px 30px;
    text-align: center;
    background-color: #8662d9;
    border-radius: 50px;
    margin-top: 30px
}

.client-content {
    margin-left: 40px
}

.client-content .sub-title {
    color: var(--main-color)
}

.client-content .title {
    font-size: 50px
}

.client-content .client-btn {
    margin-top: 30px
}

.client-wrapper {
    overflow: hidden
}

.swiper-pagination {
    position: relative;
    display: block;
    margin-top: 60px
}

.swiper-pagination .swiper-pagination-bullet {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background-color: #efe5fc;
    opacity: 1
}

.swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--main-color)
}
.client-thumb img{
    width: 100px;
    height: 100px;
    border-radius: 100px;
    border: 5px solid #fff;
}
.client-item-area .ruddra-prev,
.client-item-area .ruddra-next {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 5px;
    color: #fff;
    font-size: 20px
}

.client-item-area .ruddra-prev:hover,
.client-item-area .ruddra-next:hover {
    box-shadow: 0 12px 20px 0 rgba(240, 117, 199, 0.4)
}

.client-item-area .ruddra-prev {
    left: -25px
}

.client-item-area .ruddra-next {
    right: -25px
}

.faq-thumb {
    animation: giraffe 3s linear infinite
}

.faq-wrapper {
    margin: -7px 0
}

.faq-wrapper .faq-item {
    padding: 15px 0;
    transition: all .3s
}

.faq-wrapper .faq-item .faq-title {
    font-size: 20px;
    margin-top: -7px;
    margin-bottom: -7px;
    text-transform: capitalize;
    align-items: center;
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border: 2px solid #262d5c;
    border-radius: 10px
}

.faq-wrapper .faq-item .faq-title .title {
    width: calc(100% - 40px);
    padding: 15px 30px;
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
    font-family: var(--heading-font)
}

@media only screen and (max-width: 575px) {
    .faq-wrapper .faq-item .faq-title .title {
        font-size: 18px
    }
}

.faq-wrapper .faq-item .faq-title .title i {
    color: #ff42ae;
    margin-right: 10px;
    font-size: 24px
}

.faq-wrapper .faq-content {
    display: none
}

.faq-wrapper .faq-content p {
    margin-top: 20px;
    padding-bottom: 10px
}

.faq-wrapper .faq-content p a {
    color: var(--main-color)
}

.faq-wrapper .right-icon {
    display: block;
    width: 35px;
    height: 35px;
    position: relative;
    border-radius: 50%;
    background-color: var(--main-color);
    right: 42px
}

.faq-wrapper .right-icon::before {
    width: 2px;
    height: 16px;
    top: 50%;
    left: 50%
}

.faq-wrapper .right-icon::after {
    width: 16px;
    height: 2px;
    top: 50%;
    left: 50%
}

.faq-item .faq-content p:last-child {
    margin-bottom: -7px
}

.faq-wrapper .faq-item.open {
    border: 2px solid #262d5c;
    border-radius: 10px;
    padding: 30px
}

.faq-wrapper .faq-item.open .faq-title {
    border: 0;
    border-bottom: 2px solid #262d5c;
    border-radius: 0
}

.faq-wrapper .faq-item.open .faq-title .title {
    padding: 0 30px 15px 0
}

.faq-item.active .faq-content {
    display: block
}

.faq-item.open .right-icon {
    right: 10px;
    bottom: 6px
}

.faq-item.open .right-icon::before,
.faq-item.open .right-icon::after {
    background-color: #fff
}

.faq-item .right-icon::before,
.faq-item .right-icon::after {
    position: absolute;
    content: '';
    background: #fff;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    transition: all ease .3s;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.faq-item.active.open .faq-title .right-icon::before {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    -ms-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg)
}

.faq-item.open .faq-title .right-icon::before {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    -ms-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg)
}

.faq-list li a {
    font-weight: 600;
    padding: 6px 0;
    transition: all .3s
}

.faq-list-area {
    margin-top: -5px
}

.faq-bottom-area {
    margin-top: 60px
}

.faq-bottom-area p {
    width: 60%;
    text-align: center;
    font-size: 18px;
    margin: 0 auto
}

.faq-bottom-area p span {
    color: var(--main-color)
}

.ruddra-next,
.ruddra-prev {
    background-color: #31318f;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 25px;
    border-radius: 50%;
    outline: 0;
    transition: all 300ms ease;
    display: inline-block;
    font-size: 14px;
    color: #7977cb;
    position: absolute;
    top: 50%;
    z-index: 99;
    cursor: pointer;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: all .3s
}

.ruddra-prev {
    right: 45px
}

.ruddra-next {
    right: 10px
}

.ruddra-next:hover,
.ruddra-prev:hover {
    background-image: -moz-linear-gradient(-30deg, #c165dd 0, #5c27fe 100%);
    background-image: -webkit-linear-gradient(-30deg, #c165dd 0, #5c27fe 100%);
    background-image: -ms-linear-gradient(-30deg, #c165dd 0, #5c27fe 100%);
    color: #fff
}


.footer-section {
    position: relative;
    overflow: hidden
}

@-webkit-keyframes zoominoutsinglefeatured {
    0% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1)
    }

    50% {
        -webkit-transform: scale(1.2, 1.2);
        transform: scale(1.2, 1.2)
    }

    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1)
    }
}

@keyframes zoominoutsinglefeatured {
    0% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1)
    }

    50% {
        -webkit-transform: scale(1.2, 1.2);
        transform: scale(1.2, 1.2)
    }

    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1)
    }
}

@-webkit-keyframes lineThree {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 0
    }

    20% {
        -webkit-transform: translate3d(-70px, 80px, 0);
        transform: translate3d(-70px, 80px, 0);
        opacity: 1
    }

    90% {
        opacity: 1;
        -webkit-transform: translate3d(-300px, 310px, 0);
        transform: translate3d(-300px, 310px, 0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-360px, 380px, 0);
        transform: translate3d(-360px, 380px, 0)
    }
}

@keyframes lineThree {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 0
    }

    20% {
        -webkit-transform: translate3d(-70px, 80px, 0);
        transform: translate3d(-70px, 80px, 0);
        opacity: 1
    }

    90% {
        opacity: 1;
        -webkit-transform: translate3d(-300px, 310px, 0);
        transform: translate3d(-300px, 310px, 0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-360px, 380px, 0);
        transform: translate3d(-360px, 380px, 0)
    }
}

.footer-element-one {
    position: absolute;
    left: 0;
    top: 24%;
    opacity: .5;
    -webkit-animation: zoominoutsinglefeatured 4s linear infinite;
    animation: zoominoutsinglefeatured 4s linear infinite
}

.footer-element-two {
    position: absolute;
    right: 17%;
    bottom: 10%;
    opacity: .5;
    -webkit-animation: zoominoutsinglefeatured 3s linear infinite;
    animation: zoominoutsinglefeatured 3s linear infinite
}

.footer-element-three {
    position: absolute;
    left: 40%;
    bottom: 60%;
    -webkit-animation: lineThree 8s infinite linear;
    animation: lineThree 8s infinite linear
}

.footer-element-four {
    position: absolute;
    left: 43%;
    bottom: 70%;
    -webkit-animation: lineThree 10s infinite linear;
    animation: lineThree 10s infinite linear
}

.footer-element-five {
    position: absolute;
    left: 40%;
    bottom: 70%;
    -webkit-animation: lineThree 7s infinite linear;
    animation: lineThree 7s infinite linear
}

.footer-element-six {
    position: absolute;
    left: 40%;
    bottom: 80%;
    -webkit-animation: lineThree 7s infinite linear;
    animation: lineThree 7s infinite linear
}

.footer-element-seven {
    position: absolute;
    left: 40%;
    bottom: 40%;
    -webkit-animation: lineThree 7s infinite linear;
    animation: lineThree 7s infinite linear
}

.footer-element-eight {
    position: absolute;
    left: 20%;
    bottom: 40%;
    -webkit-animation: lineThree 7s infinite linear;
    animation: lineThree 7s infinite linear
}

.footer-element-nine {
    position: absolute;
    left: 70%;
    bottom: 40%;
    -webkit-animation: lineThree 7s infinite linear;
    animation: lineThree 7s infinite linear
}

.footer-element-ten {
    position: absolute;
    left: 55%;
    bottom: 40%;
    -webkit-animation: lineThree 8s infinite linear;
    animation: lineThree 8s infinite linear
}

.footer-element-eleven {
    position: absolute;
    left: 50%;
    bottom: 45%;
    -webkit-animation: lineThree 7s infinite linear;
    animation: lineThree 7s infinite linear
}

.footer-element-twelve {
    position: absolute;
    left: 58%;
    bottom: 40%;
    -webkit-animation: lineThree 8s infinite linear;
    animation: lineThree 8s infinite linear
}

.footer-element-thirteen {
    position: absolute;
    left: 20%;
    bottom: 80%;
    -webkit-animation: lineThree 8s infinite linear;
    animation: lineThree 8s infinite linear;
    opacity: .5
}

.footer-element-fourteen {
    position: absolute;
    right: 30%;
    bottom: 40%;
    -webkit-animation: lineThree 8s infinite linear;
    animation: lineThree 8s infinite linear
}

.footer-element-fifteen {
    position: absolute;
    right: 33%;
    bottom: 40%;
    -webkit-animation: lineThree 12s infinite linear;
    animation: lineThree 12s infinite linear
}

.footer-element-sixteen {
    position: absolute;
    right: 36%;
    bottom: 40%;
    -webkit-animation: lineThree 10s infinite linear;
    animation: lineThree 10s infinite linear
}

.footer-element-seventeen {
    position: absolute;
    right: 30%;
    bottom: 45%;
    -webkit-animation: zoominoutsinglefeatured 3s linear infinite;
    animation: zoominoutsinglefeatured 3s linear infinite
}

.footer-shape {
    position: absolute;
    right: 70%;
    bottom: 30%;
    opacity: .5;
    -webkit-animation: zoominoutsinglefeatured 3s linear infinite;
    animation: zoominoutsinglefeatured 3s linear infinite
}

@keyframes outer-ripple {
    0% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: .5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        -webkit-filter: alpha(opacity=50)
    }

    80% {
        transform: scale(1.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5)
    }

    100% {
        transform: scale(2.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(2.5);
        -moz-transform: scale(2.5);
        -ms-transform: scale(2.5);
        -o-transform: scale(2.5)
    }
}

@-webkit-keyframes outer-ripple {
    0% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: .5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1)
    }

    80% {
        transform: scale(2.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(2.5);
        -moz-transform: scale(2.5);
        -ms-transform: scale(2.5);
        -o-transform: scale(2.5)
    }

    100% {
        transform: scale(3.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(3.5);
        -moz-transform: scale(3.5);
        -ms-transform: scale(3.5);
        -o-transform: scale(3.5)
    }
}

@-moz-keyframes outer-ripple {
    0% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: .5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1)
    }

    80% {
        transform: scale(2.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(2.5);
        -moz-transform: scale(2.5);
        -ms-transform: scale(2.5);
        -o-transform: scale(2.5)
    }

    100% {
        transform: scale(3.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(3.5);
        -moz-transform: scale(3.5);
        -ms-transform: scale(3.5);
        -o-transform: scale(3.5)
    }
}

@keyframes inner-ripple {
    0% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: .5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1)
    }

    30% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: .5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1)
    }

    100% {
        transform: scale(1.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5)
    }
}

@-webkit-keyframes inner-ripple {
    0% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: .5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1)
    }

    30% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: .5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1)
    }

    100% {
        transform: scale(1.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5)
    }
}

@-moz-keyframes inner-ripple {
    0% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: .5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1)
    }

    30% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: .5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1)
    }

    100% {
        transform: scale(1.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5)
    }
}

.footer-content {
    padding-top: 120px;
    padding-bottom: 120px
}

.footer-content .sub-title {
    color: var(--main-color);
    text-transform: uppercase
}

.footer-content .title {
    margin-bottom: 60px;
    text-transform: uppercase
}

.footer-content p {
    margin-top: 30px
}

.footer-form {
    width: 60%
}

.footer-form input {
    position: relative;
    background-color: #3b4a93;
    border-radius: 60px;
    border: 1px solid #7983b5;
    color: #dde5ff;
    padding: 14px 200px 14px 30px
}

.footer-form input::placeholder {
    color: #dde5ff
}

.footer-form input[type="submit"] {
    position: absolute;
    right: 40%;
    height: 54px;
    width: auto;
    padding: 0 50px;
    border: 0;
    color: #fff;
    background-image: -moz-linear-gradient(-30deg, #c165dd 0, #5c27fe 100%);
    background-image: -webkit-linear-gradient(-30deg, #c165dd 0, #5c27fe 100%);
    background-image: -ms-linear-gradient(-30deg, #c165dd 0, #5c27fe 100%)
}

@media (max-width: 991px) {
    .footer-form input {
        padding: 14px 30px;
    }
}

@media (max-width: 575px) {
    .footer-form input[type="submit"] {
        width: 100%;
        position: unset;
        margin-top: 10px;
    }
}
.footer-logo img{
    width: 100px;
}
.copyright-area {
    padding: 20px 0;
    border-top: 1px solid #40509d;
}

.copyright-content p a {
    color: var(--main-color)
}

@keyframes cursor-active {
    0% {
        box-shadow: 0 0 0 0 #f7541b
    }

    100% {
        box-shadow: 0 0 0 3rem rgba(247, 84, 27, 0)
    }
}

@keyframes cursor-active2 {
    0% {
        box-shadow: 0 0 0 0 #f7541b
    }

    100% {
        box-shadow: 0 0 0 1rem rgba(247, 84, 27, 0)
    }
}

@keyframes cursorClose {
    0% {
        transform: scale(0) rotate(90deg)
    }

    100% {
        transform: scale(0.45) rotate(45deg)
    }
}

#vmap {
    height: 500px;
    position: relative;
    margin-left: 60px;
    margin-top: -20px
}

div[class*="position"] {
    position: absolute
}

div[class*="position"]:hover .details {
    opacity: 1;
    visibility: visible
}

.position-1 {
    top: 16%;
    left: 38%
}

.position-2 {
    top: 35%;
    left: 18%
}

.position-3 {
    top: 63%;
    left: 54%
}

.position-4 {
    top: 63%;
    left: 28%
}

.position-5 {
    top: 16%;
    left: 68%
}

.position-6 {
    top: 36%;
    left: 75%
}

.position-7 {
    top: 44%;
    left: 50%
}

.position-8 {
    top: 75%;
    left: 86%
}

@keyframes pulseOne {
    0% {
        box-shadow: 0 0 0 0 rgba(83, 80, 255, 0.851), 0 0 0 0 rgba(83, 80, 255, 0.851);
        -webkit-box-shadow: 0 0 0 0 rgba(83, 80, 255, 0.851), 0 0 0 0 rgba(83, 80, 255, 0.851);
        -moz-box-shadow: 0 0 0 0 rgba(83, 80, 255, 0.851), 0 0 0 0 rgba(83, 80, 255, 0.851)
    }

    40% {
        box-shadow: 0 0 0 20px rgba(83, 80, 255, 0), 0 0 0 0 rgba(83, 80, 255, 0.851);
        -webkit-box-shadow: 0 0 0 20px rgba(83, 80, 255, 0), 0 0 0 0 rgba(83, 80, 255, 0.851);
        -moz-box-shadow: 0 0 0 20px rgba(83, 80, 255, 0), 0 0 0 0 rgba(83, 80, 255, 0.851)
    }

    80% {
        box-shadow: 0 0 0 20px rgba(83, 80, 255, 0), 0 0 0 20px rgba(83, 80, 255, 0);
        -webkit-box-shadow: 0 0 0 20px rgba(83, 80, 255, 0), 0 0 0 20px rgba(83, 80, 255, 0);
        -moz-box-shadow: 0 0 0 20px rgba(83, 80, 255, 0), 0 0 0 20px rgba(83, 80, 255, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(83, 80, 255, 0), 0 0 0 0 rgba(83, 80, 255, 0);
        -webkit-box-shadow: 0 0 0 0 rgba(83, 80, 255, 0), 0 0 0 0 rgba(83, 80, 255, 0);
        -moz-box-shadow: 0 0 0 0 rgba(83, 80, 255, 0), 0 0 0 0 rgba(83, 80, 255, 0)
    }
}

@-webkit-keyframes pulseOne {
    0% {
        box-shadow: 0 0 0 0 rgba(83, 80, 255, 0.851), 0 0 0 0 rgba(83, 80, 255, 0.851);
        -webkit-box-shadow: 0 0 0 0 rgba(83, 80, 255, 0.851), 0 0 0 0 rgba(83, 80, 255, 0.851);
        -moz-box-shadow: 0 0 0 0 rgba(83, 80, 255, 0.851), 0 0 0 0 rgba(83, 80, 255, 0.851)
    }

    40% {
        box-shadow: 0 0 0 20px rgba(83, 80, 255, 0), 0 0 0 0 rgba(83, 80, 255, 0.851);
        -webkit-box-shadow: 0 0 0 20px rgba(83, 80, 255, 0), 0 0 0 0 rgba(83, 80, 255, 0.851);
        -moz-box-shadow: 0 0 0 20px rgba(83, 80, 255, 0), 0 0 0 0 rgba(83, 80, 255, 0.851)
    }

    80% {
        box-shadow: 0 0 0 20px rgba(83, 80, 255, 0), 0 0 0 20px rgba(83, 80, 255, 0);
        -webkit-box-shadow: 0 0 0 20px rgba(83, 80, 255, 0), 0 0 0 20px rgba(83, 80, 255, 0);
        -moz-box-shadow: 0 0 0 20px rgba(83, 80, 255, 0), 0 0 0 20px rgba(83, 80, 255, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(83, 80, 255, 0), 0 0 0 0 rgba(83, 80, 255, 0);
        -webkit-box-shadow: 0 0 0 0 rgba(83, 80, 255, 0), 0 0 0 0 rgba(83, 80, 255, 0);
        -moz-box-shadow: 0 0 0 0 rgba(83, 80, 255, 0), 0 0 0 0 rgba(83, 80, 255, 0)
    }
}

@-moz-keyframes pulseOne {
    0% {
        box-shadow: 0 0 0 0 rgba(83, 80, 255, 0.851), 0 0 0 0 rgba(83, 80, 255, 0.851);
        -webkit-box-shadow: 0 0 0 0 rgba(83, 80, 255, 0.851), 0 0 0 0 rgba(83, 80, 255, 0.851);
        -moz-box-shadow: 0 0 0 0 rgba(83, 80, 255, 0.851), 0 0 0 0 rgba(83, 80, 255, 0.851)
    }

    40% {
        box-shadow: 0 0 0 20px rgba(83, 80, 255, 0), 0 0 0 0 rgba(83, 80, 255, 0.851);
        -webkit-box-shadow: 0 0 0 20px rgba(83, 80, 255, 0), 0 0 0 0 rgba(83, 80, 255, 0.851);
        -moz-box-shadow: 0 0 0 20px rgba(83, 80, 255, 0), 0 0 0 0 rgba(83, 80, 255, 0.851)
    }

    80% {
        box-shadow: 0 0 0 20px rgba(83, 80, 255, 0), 0 0 0 20px rgba(83, 80, 255, 0);
        -webkit-box-shadow: 0 0 0 20px rgba(83, 80, 255, 0), 0 0 0 20px rgba(83, 80, 255, 0);
        -moz-box-shadow: 0 0 0 20px rgba(83, 80, 255, 0), 0 0 0 20px rgba(83, 80, 255, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(83, 80, 255, 0), 0 0 0 0 rgba(83, 80, 255, 0);
        -webkit-box-shadow: 0 0 0 0 rgba(83, 80, 255, 0), 0 0 0 0 rgba(83, 80, 255, 0);
        -moz-box-shadow: 0 0 0 0 rgba(83, 80, 255, 0), 0 0 0 0 rgba(83, 80, 255, 0)
    }
}

div[class*="position"] .dot {
    position: relative;
    z-index: 1;
    width: 10px;
    height: 10px;
    border: 2px solid #8f46ed;
    box-shadow: 0 0 5px 3px rgba(254, 196, 45, 0.2);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: block;
    cursor: pointer;
    background-color: #8f46ed;
    animation: pulseOne 5s linear infinite;
    -webkit-animation: pulseOne 5s linear infinite;
    -moz-animation: pulseOne 5s linear infinite
}

div[class*="position"] .dot::before,
div[class*="position"] .dot::after {
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 50%;
    background-color: #8f46ed;
    opacity: 1
}

div[class*="position"] .dot::before {
    -webkit-animation: inner-ripple 2000ms linear infinite;
    -moz-animation: inner-ripple 2000ms linear infinite;
    animation: inner-ripple 2000ms linear infinite
}

div[class*="position"] .dot::after {
    -webkit-animation: outer-ripple 2000ms linear infinite;
    -moz-animation: outer-ripple 2000ms linear infinite;
    animation: outer-ripple 2000ms linear infinite
}

div[class*="position"] .details {
    position: relative;
    z-index: 9;
    padding: 5px 10px;
    background-color: var(--main-color);
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s
}

#vmap .name {
    color: #fff;
    font-weight: 500;
    font-size: 16px
}

#vmap .area {
    font-size: 14px;
    margin: 0
}

svg {
    overflow: hidden;
    vertical-align: middle
}