/* @font-face {
     font-family: "Manrope", serif;
    src:
        url("../fonts/Manrope-Bold.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
  }
  @font-face {
     font-family: "Manrope", serif;
    src: url("../fonts/Manrope-Light.ttf"), format("truetype");
    font-weight: 300;
    font-style: normal;
  } */

/* @import url("https://fonts.googleapis.com/css2?family=Scope+One&display=swap"); */
/* @import url('https://fonts.googleapis.com/css2?family=Poiret+One&display=swap'); */

@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&display=swap');

.row {
    display: flex;
    flex-wrap: wrap;
}

.col-md-6 {
    width: 50%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Crimson Pro", serif;
    font-weight: 500;
}

h1 {
    font-size: 7rem;
    margin: 10px 0;
    color: #fff;
    text-shadow: 0px 8px 3px rgba(0, 0, 0, 0.9);
}

p {
    font-size: 15px;
    font-style: normal;
    letter-spacing: 1px;
}

.bg {
    animation: slide 3s ease-in-out infinite alternate;
    background-image: linear-gradient(-60deg, #2f386f 50%, #d7c7ff 50%);
    bottom: 0;
    left: -50%;
    opacity: .5;
    position: absolute;
    right: -50%;
    top: 0;
    z-index: -1;
}

.content p {
    font-size: 32px;
    color: #fff;
}

.content img {
    width: 70%;
}

.bg2 {
    animation-direction: alternate-reverse;
    animation-duration: 4s;
}

.bg3 {
    animation-duration: 5s;
}


/* .content {
  background-color:rgba(255,255,255,.8);
  border-radius:.25em;
  box-shadow:0 0 .25em rgba(0,0,0,.25);
  box-sizing:border-box;
  left:50%;
  padding:10vmin;
  position:fixed;
  text-align:center;
  top:50%;
  transform:translate(-50%, -50%);
} */

@keyframes slide {
    0% {
        transform: translateX(-25%);
    }

    100% {
        transform: translateX(25%);
    }
}

.btn-draw,
.velo-slider__hint>span {
    font-family: "Montserrat", Helvetica, sans-serif;
    font-size: 0.8em;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.main-heding {
    color: #2ef3ff;
    text-transform: uppercase;
    font-size: 34px;
    letter-spacing: 2px;
    line-height: 1;
    text-shadow: 1px 2px 5px #2ef3ff;
    font-weight: lighter;
}

/* 
body {
  margin: 0;
  width: 100%;
  font-weight: 400;
  font-style: normal;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
} */


/** 
 * Default to Border Box
 */


/* *,
*:before,
*:after {
  box-sizing: border-box;
} */


/**
 * Links
 */


/* a {
  text-decoration: none;
  background-color: transparent;
  outline: 0;
} */

.btn-draw {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: auto;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    -webkit-appearance: none;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
}

.btn-draw {
    color: #fff;
    margin-left: 2.3em;
}

.btn-draw:after {
    content: "";
    top: 0;
    right: 0;
    height: 1px;
    width: 100%;
    background-color: #fff;
}

.btn-draw:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -2.4em;
    height: 1px;
    width: 3em;
    background-color: #fff;
    transition: all 0.25s ease;
}

.btn-draw .btn-draw__text {
    position: relative;
    display: block;
    padding: 0.7555em 2.29em;
    line-height: 1.5;
    transition: transform 0.5s ease;
}

.btn-draw .btn-draw__text:before,
.btn-draw .btn-draw__text:after {
    content: "";
    position: absolute;
    height: 1px;
    width: 0;
    background-color: #fff;
}

.btn-draw .btn-draw__text:before {
    top: 0;
    left: 0;
    transition: width 0.15s 0.45s cubic-bezier(0.77, 0, 0.175, 1);
}

.btn-draw .btn-draw__text:after {
    bottom: 0;
    right: 0;
    transition: width 0.15s 0.15s cubic-bezier(0.77, 0, 0.175, 1);
}

.btn-draw .btn-draw__text>span:before,
.btn-draw .btn-draw__text>span:after {
    content: "";
    position: absolute;
    height: 0;
    width: 1px;
    background-color: #00ffc8;
    transition: all 0.2s cubic-bezier(0.2, 0.3, 0.25, 0.9);
}

.btn-draw .btn-draw__text>span:before {
    left: 0;
    bottom: 0;
    transition: height 0.15s 0 cubic-bezier(0.77, 0, 0.175, 1);
}

.btn-draw .btn-draw__text>span:after {
    right: 0;
    top: 0;
    transition: height 0.15s 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}

@media (hover) {

    .btn-draw:hover,
    a:hover .btn-draw {
        cursor: pointer;
        color: #00ffc8;
    }

    .btn-draw:hover:before,
    a:hover .btn-draw:before {
        width: 0;
        transition: all 0.4s ease;
    }

    .btn-draw:hover .btn-draw__text,
    a:hover .btn-draw .btn-draw__text {
        transform: translateX(-2.2em);
        transition: transform 0.5s ease, width 1s ease;
    }

    .btn-draw:hover .btn-draw__text:before,
    a:hover .btn-draw .btn-draw__text:before {
        width: 100%;
        max-width: 100%;
        transition: width 0.15s cubic-bezier(0.77, 0, 0.175, 1);
    }

    .btn-draw:hover .btn-draw__text:after,
    a:hover .btn-draw .btn-draw__text:after {
        width: 100%;
        transition: width 0.15s 0.3s cubic-bezier(0.77, 0, 0.175, 1);
    }

    .btn-draw:hover .btn-draw__text>span:before,
    a:hover .btn-draw .btn-draw__text>span:before {
        left: 0;
        height: 100%;
        transition: height 0.15s 0.45s cubic-bezier(0.77, 0, 0.175, 1);
    }

    .btn-draw:hover .btn-draw__text>span:after,
    a:hover .btn-draw .btn-draw__text>span:after {
        right: 0;
        height: 100%;
        transition: height 0.15s 0.15s cubic-bezier(0.77, 0, 0.175, 1);
    }
}

.btn-draw.btn--white {
    color: #fff;
}

.btn-draw.btn--white:before,
.btn-draw.btn--white:after,
.btn-draw.btn--white .btn-draw__text:before,
.btn-draw.btn--white .btn-draw__text:after,
.btn-draw.btn--white .btn-draw__text>span:before,
.btn-draw.btn--white .btn-draw__text>span:after {
    background-color: #fff;
}

.btn-draw.btn--white:hover,
a:hover .btn-draw.btn--white {
    color: #fff;
}


/* 
body {
  font-family: "Montserrat", Georgia, serif;
  line-height: 1.6;
}

body {
  font-size: 100%;
}
@media (min-width: 32em) {
  body {
    font-size: 102%;
  }
}
@media (min-width: 54em) {
  body {
    font-size: 103%;
  }
}
@media (min-width: 65em) {
  body {
    font-size: 107%;
  }
}
@media (min-width: 75em) {
  body {
    font-size: 110%;
  }
}
@media (min-width: 91em) {
  body {
    font-size: 120%;
  }
}
@media (min-width: 115em) {
  body {
    font-size: 130%;
  }
}
@media (min-width: 130em) {
  body {
    font-size: 140%;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", Helvetica, sans-serif;
  font-weight: 700;
} */
/* .slider-sticky-service {
    position: sticky;
    position: -webkit-sticky;
    top: 0; 
    overflow: hidden;
    height: 100vh;
    display: grid;
    
} */
section.velo-slides {
    width: 98%;
    margin: -90px auto;
    border-radius: 60px;
}

.content-text span {
    font-size: 24px;
    border-top: 1px solid #000;
    padding: 10px;
    margin-top: 10px;
    display: inline-block;
    padding: 10px 0px;
}

.text-above-inner span {
    font-size: 22px;
}

/* .velo-slides {
    z-index: 0;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    height: 100vh;
    background-color: #9eb405;
}

.velo-slides[data-velo-slider="on"] {
    overflow: hidden;
    position: sticky;
    position: -webkit-sticky;
    top:0;
} */

.velo-slide {
    /* height: 100vh; */
    z-index: 4;
    position: sticky;
    position: -webkit-sticky;
    top: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

@media (min-width: 54em) and (max-width: 65em) {
    .velo-slide {
        font-size: 80%;
    }
}

@media (min-width: 54em) and (min-height: 0) and (max-height: 45em) {
    .velo-slide {
        font-size: 70%;
    }
}

[data-velo-slider="on"] .velo-slide {
    /* opacity: 0; */
    position: sticky;
    top: 0;
    /* left: 0;
    width: 100%;
    z-index: 0; */
}

.velo-slide.is-active {
    z-index: 1;
}

/* .hjdfh {
    height: 100vh;
    position: relative;
    z-index: -1;
    width: 100%;
  } */
.velo-slide__bg {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    color: transparent;
    transform: translateZ(0) scale(0.5);
    backface-visibility: hidden;
    /* background-color: #124e66; #0a21c0*/
    background: linear-gradient(#111032, #2f317d);
    overflow: hidden;
    transition: 0.4s;
}

.velo-slide.is-active .velo-slide__bg {

    transform: translateZ(0) scale(1);
}

.velo-slide__bg:after {
    z-index: 0;
    content: "";
    position: relative;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* opacity: 0.4; */
    /* background: #fb8f00; */
}

.velo-slide__figure {
    z-index: 111;
    position: absolute;
    height: 550px;
    width: 550px;
    top: 30px;
    right: 0;
    overflow: hidden;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1);
    transition: transform 0.5s ease;
    opacity: 0.7;
    border-radius: 0 90px 0 0;
}

.is-hovering .velo-slide__figure {
    transform: scale(1.1);
    transition: transform 0.5s ease;
}

.velo-slide__vid-wrap {
    z-index: 5;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transform: scale(1);
    transition: transform 0.5s ease;
}

.velo-slide__vid-wrap:after {
    z-index: 0;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.4;
    /* background: #d76a10; */
}

.is-hovering .velo-slide__vid-wrap {
    transform: scale(1.1);
    transition: transform 0.5s ease;
}

.velo-slide__vid {
    z-index: -1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    min-width: 100%;
    max-width: none;
    height: auto;
    min-height: 100%;
    object-fit: cover;
}

.velo-slide__title {
    margin-top: 0;
}

/* .velo-slide__header {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    overflow-y: hidden;
    padding: 0% 6%;
} */
.main-box {
    display: flex;
    align-items: center;
}

.main-box .top-box span p {
    max-width: 75%;
}

.velo-slide__pretitle {
    color: #fff;
    max-width: 22em;
}

@media (min-width: 54em) {
    .velo-slide__pretitle {
        margin-left: 7%;
    }
}

.velo-slide h3.velo-slide__title {
    margin-bottom: 0.1em;
    line-height: 1.1;
    color: #fff;
    letter-spacing: -0.025em;
    font-weight: 700;
    font-size: 2.25em;
    text-shadow: 0 3px 3px rgba(0, 0, 0, 0.5);
    text-align: right;
    margin-right: -15px;
    -webkit-text-fill-color: #fff;
}

@media (min-width: 54em) {
    .velo-slide h3.velo-slide__title {
        font-size: 5em;
    }
}

@media (min-width: 65em) {
    .velo-slide h3.velo-slide__title {
        font-size: 5em;
    }
}

@media (min-width: 91em) {
    .velo-slide h3.velo-slide__title {
        font-size: 5em;
    }
}

.velo-slide__text {
    color: #fff;
    max-width: 100%;
    display: block;
    margin: 2em 0px 2.5em 0;
    font-size: 1.1em;
    line-height: 1.8;
    font-weight: 300;
}

.velo-slide__btn {
    opacity: 1;
    width: 50%;
}

.top-box {
    width: 50%;
}

.seo-big-text {
    position: relative;
}

.seo-big-text h2 {
    font-size: 5rem;
}

.small-width {
    width: 105%;
    text-align: right;
    display: block;
}

.small-width p {
    margin-right: 30px;
}


/* @media (min-width: 54em) {
    .velo-slide__btn {
        margin-left: 1vw;
    }
} */

.is-active .velo-slide__btn {
    opacity: 1;
}

.velo-slide__btn>a>span {
    opacity: 0;
    overflow-y: hidden;
    transform: translate3d(0, 100%, 0);
}

.is-active .velo-slide__btn>a>span {
    opacity: 1;
    z-index: 9;
    transform: translate3d(0, 0, 0);
    transition: transform 0.4s ease, opacity 0.8s ease;
}

.velo-slide {
    background: #00062d;
    /* border: 1em solid #8697c4; */
    border: 5em solid;
    border-image-slice: 1;
    border-width: 5em;
    border-image-source: radial-gradient(circle at -0% 20%, rgba(139, 255, 198, 1) 0%, rgba(122, 230, 199, 1) 10%, rgba(89, 183, 201, 1) 30%, rgba(56, 141, 199, 1) 50%, rgba(92, 191, 196, 1) 65%, rgba(122, 230, 199, 1) 72%, rgba(139, 255, 198, 1) 88%, rgba(89, 183, 201, 1) 100%);
    /* border-image-source: radial-gradient(circle at -25% 25%, #4ba3c7, #72d9c8, #3c90c7,  #368dc9); */
    /* border-image-source: radial-gradient(circle at -25% 25%, #72d9c8, #49a4c5, #69cec7); */
    /* border: 1em solid #e50000; */
    /* overflow: hidden; */
    /* position: sticky; */
    top: 0;
}

/* .velo-slides[data-velo-theme="light"] .velo-slide {
    margin-top: -1em;
} */

.velo-slide .velo-slide__bg {
    /* color: #8697c4;   */
    /* border: 8.5em solid linear-gradient(to left, #bba3ea, #f0d5f4); */
    border: 5.5em solid;
    border-image-slice: 1;
    border-width: 7.5em 5.5em;
    border-image-source: radial-gradient(circle at -0% 20%, rgba(139, 255, 198, 1) 0%, rgba(122, 230, 199, 1) 10%, rgba(89, 183, 201, 1) 20%, rgba(56, 128, 176, 1) 40%, rgba(56, 128, 176, 1) 52%, rgba(89, 183, 201, 1) 64%, rgba(89, 183, 201, 1) 72%, rgba(122, 230, 199, 1) 88%, rgba(139, 255, 198, 1) 100%);
    /* border-image-source: linear-gradient(to left, rgba(139,255,198,1) 0%, rgba(122,230,199,1) 15%, rgba(89,183,201,1) 28%, rgba(56,141,199,1) 47%, rgba(92,191,196,1) 62%, rgba(122,230,199,1) 72%, rgba(139,255,198,1) 88%, rgba(89,183,201,1) 100%); */
    /* border-image-source: radial-gradient(circle at -25% 25%, #4ba3c7, #72d9c8, #66cbc5,  #368dc9); */
    /* border-image-source: radial-gradient(circle at -25% 25%, #72d9c8, #49a4c5, #69cec7); */
}

.border-gradient-purple {
    border-image-source: linear-gradient(to left, #743ad5, #d53a9d);
}

[data-velo-theme="dark"] {
    background: #9eb405;
}

.velo-slides__bg {
    background-color: #9eb405;
    filter: grayscale(100%);
}

.oh {
    display: block;
    /* overflow-y: hidden; */
    padding: 0.02em 0;
}

.oh {
    display: inline-block;
    transform: translate3d(0, 140%, 0);
    opacity: 1;
    transition: transform 0.4s ease, opacity 0.8s ease;
}

.is-active .oh {
    transform: translate3d(0, 0%, 0);
    opacity: 1;
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.1s ease;
}

.is-active .oh:nth-of-type(2n) {
    transition-delay: 0.2s;
}

.border,
.border:before,
.border:after,
.border span {
    z-index: 91;
    position: fixed;
    background-color: currentColor;
    transition: 0.35s ease-in-out;
}

.is-hovering .border,
.is-hovering .border:before,
.is-hovering .border:after,
.is-hovering .border span {
    transition: 0.5s ease-in-out;
}

.velocity-animating .border,
.velocity-animating .border:before,
.velocity-animating .border:after,
.velocity-animating .border span {
    transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.border {
    top: 0;
    left: 0;
    width: 100%;
    height: 0vw;
}

@media (min-width: 54em) {
    .border {
        height: 10vw;
    }
}

@media (min-width: 91em) {
    .border {
        height: 7vw;
    }
}

@media (min-width: 115em) {
    .border {
        height: 7vw;
    }
}

.is-hovering .border {
    height: 0vw;
}

.velocity-animating .border {
    height: 8vw;
}

@media (min-width: 54em) {
    .velocity-animating .border {
        height: 12vw;
    }
}

.border:before {
    content: "";
    bottom: 0;
    left: 0;
    width: 0vw;
    height: 100%;
    width: 0vw;
}

@media (min-width: 54em) {
    .border:before {
        width: 10vw;
    }
}

@media (min-width: 91em) {
    .border:before {
        width: 7vw;
    }
}

@media (min-width: 115em) {
    .border:before {
        width: 7vw;
    }
}

.is-hovering .border:before {
    width: 0vw;
}

.velocity-animating .border:before {
    width: 8vw;
}

@media (min-width: 54em) {
    .velocity-animating .border:before {
        width: 12vw;
    }
}

.border:after {
    content: "";
    bottom: 0;
    right: 0;
    height: 100%;
    width: 0vw;
    width: 0vw;
}

@media (min-width: 54em) {
    .border:after {
        width: 10vw;
    }
}

@media (min-width: 91em) {
    .border:after {
        width: 7vw;
    }
}

@media (min-width: 115em) {
    .border:after {
        width: 7vw;
    }
}

.is-hovering .border:after {
    width: 0vw;
}

.velocity-animating .border:after {
    width: 8vw;
}

@media (min-width: 54em) {
    .velocity-animating .border:after {
        width: 12vw;
    }
}

.border span {
    bottom: 0;
    left: 0;
    height: 0vw;
    width: 100%;
    height: 0vw;
}

@media (min-width: 54em) {
    .border span {
        height: 10vw;
    }
}

@media (min-width: 91em) {
    .border span {
        height: 7vw;
    }
}

@media (min-width: 115em) {
    .border span {
        height: 7vw;
    }
}

.is-hovering .border span {
    height: 0vw;
}

.velocity-animating .border span {
    height: 8vw;
}

@media (min-width: 54em) {
    .velocity-animating .border span {
        height: 12vw;
    }
}

.velo-slider__hint {
    z-index: 2;
    /* position: relative; */
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    height: 100vh;
    width: 4em;
    font-size: 0.9em;
    color: #fff;
}

@media (min-width: 54em) {
    .velo-slider__hint {
        display: block;
    }
}

.velo-slider__hint>span {
    position: absolute;
    top: 50%;
    left: 50%;
    white-space: nowrap;
    transform: translate(-50%, -50%) rotate(-90deg);
    overflow: hidden;
}

.velo-slider__hint>span>span {
    display: inline-block;
    transform: translateY(-110%);
}

.is-active .velo-slider__hint>span>span {
    opacity: 1;
    top: 50%;
    transition: 1s cubic-bezier(0.19, 1, 0.22, 1);
    transform: translateY(0%);
    transition: 0.4 ease;
}

.velo-slides-nav {
    /* lateral navigation */
    position: absolute;
    z-index: 1;
    right: 3%;
    bottom: 1em;
}

@media (min-width: 54em) {
    .velo-slides-nav {
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
    }
}

.velo-slides-nav__list {
    list-style: none;
}

.velo-slides-nav li:first-child {
    margin-bottom: 0.25em;
}

.velo-slides-nav a {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.5s ease, text-shadow 0.5s ease;
}

.velo-slides-nav a:hover {
    color: white;
    text-shadow: 0px 0px 6px rgba(255, 255, 255, 0.6);
    transition: color 0.5s ease, text-shadow 0.5s ease;
}

.velo-slides-nav a.inactive {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s 0s, visibility 0s 0.2s;
}

.velo-slides-nav i {
    font-size: 2.2em;
}

@media (min-width: 54em) {
    .velo-slides-nav i {
        font-size: 1.5em;
    }
}

@font-face {
    font-family: "ssicons";
    src: url("data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBfgAAAC8AAAAYGNtYXAXVtKOAAABHAAAAFRnYXNwAAAAEAAAAXAAAAAIZ2x5ZiOKaFQAAAF4AAADTGhlYWQNcwRaAAAExAAAADZoaGVhB6EDzQAABPwAAAAkaG10eCYAA2sAAAUgAAAAMGxvY2EETAN0AAAFUAAAABptYXhwAA4AIQAABWwAAAAgbmFtZbVmJhcAAAWMAAABhnBvc3QAAwAAAAAHFAAAACAAAwPHAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpBwPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAOAAAAAoACAACAAIAAQAg6Qf//f//AAAAAAAg6QD//f//AAH/4xcEAAMAAQAAAAAAAAAAAAAAAQAB//8ADwABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAArgPFAp8AFgAAEzQ2NzYyFwkBNjIXFhQHAQYiJwEuATUABAMIFQgBugG7CBUHCAj+MwcVCP4zAwQCjQUJBAcH/kUBuwcHCBUH/jMICAHNAwoFAAAAAQDu/8AC3wOFABYAAAUiJicmNDcJASY0NzYyFwEWFAcBDgEjAQAFCQQICAG7/kUICAcWBwHNBwf+MwQJBUAEAwgVCAG6AbsIFQcICP4zBxUI/jMDBAAAAAEAAACuA8UCnwAWAAA3FBYXFjI3CQEWMjc2NCcBJiIHAQ4BFQAEAwgVCAG6AbsIFQcICP4zBxUI/jMDBMAFCQQICAG7/kUICAcWBwHNBwf+MwQJBQAAAAABAO7/wALfA4UAFgAABTI2NzY0JwkBNjQnJiIHAQYUFwEeATMCzQUJBAcH/kUBuwcHCBUH/jMICAHNAwoFQAQDCBUIAboBuwgVBwgI/jMHFQj+MwMEAAAAAQCh//MDMwOfAB4AAAkBBhQXFjI3AREUFjMyNjURARYyNz4BNTQmJwEmIgcB1P7NBwcIFQcBCA8KCw8BBwgVCAMEBAP+zAcVCAOf/s0IFQcICAEH/L4LDw8LA0L++QgIAwoFBQkEATMHBwAAAQCa/+EDLAONAB4AAAUBNjQnJiIHARE0JiMiBhURASYiBw4BFRQWFwEWMjcB+QEzBwcIFQf++A8LCg/++AcVCAQDAwQBMwgVCB8BMwgVBwgI/vkDQgsPDwv8vgEHCAgDCgUFCQT+zQcHAAAAAQAhAFoDzQLsAB4AABMBNjIXFhQHASEyFhUUBiMhARYUBw4BIyImJwEmNDchATMIFQcICP75A0ILDw8L/L4BBwgIAwoFBQkE/s0HBwG5ATMHBwgVB/74DwsKD/74BxUIBAMDBAEzCBUIAAAAAQAzAFoD3wLsAB4AAAkBJiIHBhQXASEiBhUUFjMhAQYUFx4BMzI2NwE2NCcD3/7NCBUHCAgBB/y+Cw8PCwNC/vkICAMKBQUJBAEzBwcBuQEzBwcIFQf++A8LCg/++AcVCAQDAwQBMwgVCAAAAQAAAAEAAMChG+1fDzz1AAsEAAAAAADVOl//AAAAANU6X/8AAP/AA98DnwAAAAgAAgAAAAAAAAABAAADwP/AAAAEAAAAAAAD3wABAAAAAAAAAAAAAAAAAAAADAQAAAAAAAAAAAAAAAIAAAAEAAAABAAA7gQAAAAEAADuBAAAoQQAAJoEAAAhBAAAMwAAAAAACgAUAB4ASgB2AKIAzgEEAToBcAGmAAAAAQAAAAwAHwABAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAA4ArgABAAAAAAABAAcAAAABAAAAAAACAAcAYAABAAAAAAADAAcANgABAAAAAAAEAAcAdQABAAAAAAAFAAsAFQABAAAAAAAGAAcASwABAAAAAAAKABoAigADAAEECQABAA4ABwADAAEECQACAA4AZwADAAEECQADAA4APQADAAEECQAEAA4AfAADAAEECQAFABYAIAADAAEECQAGAA4AUgADAAEECQAKADQApHNzaWNvbnMAcwBzAGkAYwBvAG4Ac1ZlcnNpb24gMS4wAFYAZQByAHMAaQBvAG4AIAAxAC4AMHNzaWNvbnMAcwBzAGkAYwBvAG4Ac3NzaWNvbnMAcwBzAGkAYwBvAG4Ac1JlZ3VsYXIAUgBlAGcAdQBsAGEAcnNzaWNvbnMAcwBzAGkAYwBvAG4Ac0ZvbnQgZ2VuZXJhdGVkIGJ5IEljb01vb24uAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=") format("truetype");
    font-weight: normal;
    font-style: normal;
}

[class^="icon-"],
[class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: "ssicons" !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-down-chev:before {
    content: "\e900";
}

.icon-right-chev:before {
    content: "\e901";
}

.icon-up-chev:before {
    content: "\e902";
}

.icon-left-chev:before {
    content: "\e903";
}

.icon-up-arrow:before {
    content: "\e904";
}

.icon-down-arrow:before {
    content: "\e905";
}

.icon-left-arrow:before {
    content: "\e906";
}

.icon-right-arrow:before {
    content: "\e907";
}

/* .row {
    display: flex;
    margin-left: -15px;
    margin-right: -15px;
    flex-wrap: wrap;
} */

.col-3 {
    width: 25%;
    padding-left: 15px;
    padding-right: 15px;
}

.number-box {
    /* border: 1px solid #fff; */
    padding: 10px;
    margin: 20px auto;
    min-height: 250px;
    box-shadow: rgba(240, 46, 170, 0.4) -5px 5px, rgba(240, 46, 170, 0.3) -10px 10px, rgba(240, 46, 170, 0.2) -15px 15px, rgba(240, 46, 170, 0.1) -20px 20px, rgba(240, 46, 170, 0.05) -25px 25px;
    background-color: #fff;
    border-radius: 10px;
}

.number-box span {
    font-size: 12px;
    color: #000;
    line-height: 1.4;
    text-align: left;
    display: block;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 30px;
    min-height: 80px;
}

.number-box h4 {
    display: flex;
    justify-content: start;
    font-size: 21px;
    color: #000;
    align-items: start;
    margin: 0 auto;
}

.number-box p {
    color: #000;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0;
}

/* 
.accordion1 { */
/* background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px; */
/* transition: 0.4s;
} */
/* .panel-box{
    position: relative;
}
.panel {
    padding: 18px 0;
    display: none;
    overflow-y: scroll;
    height: 250px;
} */
/* .panel {
    scrollbar-width: thin;
    scrollbar-color: #ab58f9 #F5F5F5;
    position: absolute;
    width: 100%;
    left: 0;
  }
.panel-flex-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
}

.panel-flex-list li {
    width: 33%;
    padding: 10px;
    border-right: 1px solid #fff;
}

.btn-draw.btn--white.accordion1 .act-less,
.btn-draw.btn--white.accordion1.active .act-more {
    display: none;
}

.btn-draw.btn--white.accordion1 .act-more,
.btn-draw.btn--white.accordion1.active .act-less {
    display: block;
}
.panel::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.3);
    background-color: #F5F5F5;
}

.panel::-webkit-scrollbar {
    width: 2px;
    background-color: #F5F5F5;
}

.panel::-webkit-scrollbar-thumb {
    background-color: #ab58f9;
    border: 2px solid #ab58f9;
} */

/* Firefox */
/* .panel {
    scrollbar-width: thin; 
    scrollbar-color: #ab58f9 #F5F5F5;
}
.content-text {
    font-size: 5.5rem;
    padding: 3% 4%;
    width: 45%;
    text-align: left;
    position: relative;
    z-index: 1;
    background: #fff;
    box-sizing: border-box;
    line-height: 1;
  } */
.accordion-sevice {
    background-color: #3982b117;
    color: #fff;
    cursor: pointer;
    width: 95%;
    text-align: left;
    outline: none;
    font-size: 24px;
    transition: 1s;
    position: relative;
    font-family: "Crimson Pro", serif;
    border-width: 0 0 0 0;
    margin: 1%;
    padding: 10px;
    border-style: solid;
    border-radius: 10px;
}

.active,
.accordion-sevice:hover {
    background-color: #20285c57;
}

.slider-list li {
    list-style: disc;
    margin-left: 20px;
}

.slider-list p {
    margin: 0px auto;
}

.number-box p {
    color: #000;
    font-size: 14px;
    line-height: 1;
}

.accordion-sevice:after {
    content: '⇱';
    /* content: "/0xE2"; */
    color: #ffffff;
    font-weight: bold;
    float: right;
    margin-left: 5px;
    position: absolute;
    top: 25%;
    right: 20px;
    font-size: 14px;
    transition: 1s;
}

.panel-box div.panel {
    width: 100%;
}

.active:after {
    content: "⚡";
    font-size: 20px;
    /* transform: rotate(-90deg); */
}

.panel {
    padding: 0 18px;
    /* background-color: white; */
    max-height: 0;
    overflow: hidden;
    transition: max-height 1.2s ease-out;

}

.accordion-sevice.active+.panel {
    animation: zoom-in-zoom-out 0.5s ease;
}

@keyframes zoom-in-zoom-out {
    100% {
        transform: scale(1, 1);
    }

    0% {
        transform: scale(0.5, 0.5);
    }
}

.accordion-sevice.active+.panel ul li {
    position: relative;
    margin-bottom: 4px;
    font-size: 15px;
    padding-left: 40px;
}

.accordion-sevice.active+.panel ul li::before {
    content: "";
    background-image: url(../images/next-white.png);
    position: absolute;
    top: 9px;
    left: 17px;
    right: 0;
    font-size: 20px;
    width: 15px;
    height: 19px;
    background-repeat: no-repeat;
}

.radial-gradient {
    width: 100%;
    /* height: 100vh; */
    background: radial-gradient(circle, rgba(139, 255, 198, 0.7959384437368697) 0%, rgba(139, 255, 198, 1) 5%, rgba(139, 255, 198, 1) 18%, rgba(89, 183, 201, 0.9107843821122199) 35%, rgba(89, 183, 201, 0.23851547454919464) 55%, rgba(89, 183, 201, 0) 70%);
    /* position: relative;
  z-index: -2; */
    margin: 0 auto;
    /* display: flex;
    align-items: center;
    justify-content: center; */
}

/* li .accordion-sevice + .panel{

} */
.height-full {
    display: flex;
    flex-direction: column;
    /* align-items: center;
    justify-content: center; */
    height: 100vh;
}


/* marquee on scroll */
.service-detail2 {
    overflow: hidden;
}

.marquee-slide {
    position: sticky;
    width: 100%;
    height: 100dvh;
    display: flex;
    top: 0;
    /* justify-items: center;
    align-items: center; */
    z-index: 0;
}

.service-detail2 .marquee {
    width: 100%;
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    position: relative;
}

.marquee-left .marquee {
    width: 200%;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 50s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-150%);
    }
}

.client-logo {
    display: inline-block;
}

@keyframes marquee-left-to-right {
    0% {
        transform: translateX(-100%);
        /* Start from off-screen to the left */
    }

    100% {
        transform: translateX(100%);
        /* Move to off-screen to the right */
    }
}

.marquee-left .marquee-content {
    animation: marquee-left-to-right 50s linear infinite;
    margin-bottom: 40px;
}

/* .marquee-right .marquee-content {
    animation: marquee-right-to-right 50s linear infinite;
    margin-bottom: 40px;
} */
/* #textSection{
    background-image: url(../images/detail-bg-line.png),  url(../images/detail-bg-line1.png);
    background-repeat: repeat-x;
    background-attachment: fixed;
    background-position: center;
    animation: scroll 15000s infinite linear;
} */
/* body  {
    height:100%;
    background-image:url(https://i.imgur.com/aCDecXL.jpg);
    background-size: auto 100%;
    overflow:hidden;
    background-repeat:repeat-x;
    animation: scroll 700000s infinite linear;
    
  } */
/* @keyframes scroll {
    from { background-position: 0%;}
    to { background-position: -90000000%; }
  } */
.service-detail3 {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #844a55;
}

.maquee-outer-slide {
    width: 50%;
}

ul.maquee-inner-slide {
    display: flex;
    gap: 40px;
    width: 300%;
    padding: 3%;
}

ul.ul2.maquee-inner-slide {
    transform: translateX(-75%);
}

.c1 {
    width: 100%;
    overflow: hidden;
}

.maquee-inner-slide li {
    width: 350px;
    position: relative;
    background: linear-gradient(to left, #020622, #333c76);
    text-align: center;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}

.whtup-cta-btn a {
    background: #ff0086;
    display: inline-flex;
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0 0 15px rgba(255, 0, 134, 0.9);
    color: #fff;
    border: 1px solid #ff95a7;
    margin-left: 20%;
}

.whtup-cta-btn a svg {
    margin-right: 10px;
}

.text-above {
    padding: 2% 3% 2%;
    color: #00062d;
    display: block;
    position: relative;
    /* bottom: -90px; */
    z-index: 9;
}

.text-above .text-above-inner {
    display: flex;
    flex-direction: column;
}

.text-above .text-above-inner h2 {
    width: 55%;
}

.text-above p {
    font-size: 16px;
}

.panel-box {
    display: flex;
}

/* .panel-box div {
   width: 50%;
  } */
.panel-box div .panel-flex-list li {
    width: 100%;
}

.velo-slide h3 {
    font-size: 52px;
    line-height: 1.2;
    margin-top: 0px;
    margin-bottom: 10px;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(317.42deg, #ffe9fe 10.4%, #85f7c6 83.03%);
    -webkit-background-clip: text;
    background-clip: text;
}

.panel-box div .panel-flex-list.panel li {
    width: 33%;
}

/* .maquee-inner-slide li:nth-child(2) {
  background: #ff0000;
}
.maquee-inner-slide li:nth-child(3) {
  background: #00ff00;
}
.maquee-inner-slide li:nth-child(4)  {
  background: #ffff00;
}
.maquee-inner-slide li:nth-child(5) {
  background: #0000ff;
} */

.maquee-inner-slide li:hover:before,
.maquee-inner-slide li:hover:after {
    content: '';
    position: absolute;
    left: -2px;
    top: -2px;
    background: linear-gradient(45deg, #fb0094, #0000ff, #00ff00, #ffff00, #ff0000, #fb0094, #0000ff, #00ff00, #ffff00, #ff0000);
    background-size: 400%;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    z-index: -1;
    animation: steam 20s linear infinite;
}

@keyframes steam {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}

.maquee-inner-slide li:after {
    filter: blur(50px);
}

.maquee-inner-slide li img {
    margin: 0 auto;
    text-align: center;
    max-width: 140px;
}


/* .c1 h2 {
  font-size: 16vw;
  text-wrap: nowrap;
} */


/* Banner */
.destop-hide {
    display: none;
}

.service-banner {
    position: relative;
    overflow: hidden;
    /* height: 100vh; */
    height: 900px;
    margin: 0 1% 1%;
    border-radius: 50px;
    background-image: url(../images/tortoise-banner.gif);
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
}

.service-banner h1 {
    font-size: 7rem;
    text-transform: uppercase;
    line-height: 0.96;
    margin-top: 0;
}

.service-banner .row {
    display: flex;
    margin-left: -15px;
    margin-right: -15px;
    flex-wrap: wrap;
    justify-content: end;
    align-content: end;
    align-items: end;
    width: 100%;
}

.text-seting.height-full {
    display: flex;
    /* height: 100vh; */
    height: 900px;
    justify-content: end;
    padding-bottom: 25px;
    padding-left: 7%;
}

.service-banner .content p {
    font-size: 16px;
    color: #fff;
    width: 75%;
    font-weight: 100;
    letter-spacing: 0.5px;
    margin-left: auto;
    margin-right: 5%;
    line-height: 1.3;
}

.content-text {
    text-align: center;
    margin: 50px auto 50px auto;
}

.heading-flex {
    display: flex;
    align-items: start;
}

.heading-flex img {
    width: 130px;
    transform: scaleY(-1) rotate(5deg);
    position: relative;
    top: -30px;
    left: 5%;
}

.box {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin: 10px 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    max-height: 0;
    padding: 0 20px;
}

.box.open {
    max-height: 200px;
    /* Adjust based on content */
    padding: 20px;
}

.toggle-btn {
    display: block;
    width: 100%;
    background-color: #007bff;
    color: #fff;
    padding: 10px 0;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    font-size: 16px;
    margin-bottom: 10px;
    transition: background-color 0.3s ease;
}

.toggle-btn:hover {
    background-color: #0056b3;
}

/*Shrinking for mobile*/
/* #highlight-effect p{

    opacity: 0.5;
}
#highlight-effect p:before {

    opacity: 1;
} */
/* #highlight-effect{
        background: radial-gradient(
          hsl(0, 0%, 0%), 
          hsl(200, 100%, 50%) 
        ) fixed;
        background: conic-gradient( hsl(0, 0%, 0%), hsl(200.2, 100%, 21%), hsl(0, 0%, 11%) ) fixed;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-align: justify;
} */
#highlight-effect.in-view {
    opacity: 1;
}

.highlight {
    position: relative;
    /* padding: 12px 0; */
    font-weight: bold;
    display: inline-block;
}

.highlight:before {
    position: absolute;
    content: '';
    z-index: -1;
    top: 0px;
    left: -5px;
    right: -5px;
    bottom: 0px;
    line-height: 1;
    background: linear-gradient(45deg, #0ff, #ffa4f1);
    box-shadow: 0 0 10px #26d3eac0;
    transform-origin: 0;
    transition: transform .8s ease;
    transform: scaleX(0);

    opacity: 1;
}

.highlight.border-bottom:before {
    background: transparent;
    box-shadow: none;
    border-bottom: 4px solid #ff0092;
}

.highlight.bg-texture:before {
    background: none;
    box-shadow: none;
    border: 2px solid #ff0092;
    /* border: 2em solid;
    border-image-slice: 1;
    border-width: 1em ;
    border-image-source: linear-gradient(45deg, #0ff, #ffa4f1); */
}

.in-view .highlight:before {
    transform: scaleX(1);
}

.seo-big-text svg {
    position: absolute;
    /* transform: rotate(90deg); */
    width: 100%;
    height: 100%;
    right: 0;
    z-index: -1;
    bottom: 0;
}

.squiggle {
    stroke-dasharray: 450;
    stroke-dashoffset: 450;
    animation: draw 5s linear infinite alternate;
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

.col-11.four-section {
    width: 85%;
}

.four-section .different-content li {
    width: 24.5%;
}















/* .in-view .highlight{
    
    color: #fff;
    text-shadow: 1px 0 1px rgba(0, 0, 0, 0.5);
} */
.content-text {
    animation: 0.8s ease-in-out 0.3s forwards bFmYmG;
}

.content-divide p {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.5;
}

.different-content {
    display: flex;
    flex-wrap: wrap;
}

.different-content li {
    width: 33%;
    transition: 2s;
    animation-name: rollIn;
    padding: 0 1%;
}

.different-content li p {
    font-size: 18px;
    font-style: normal;
    letter-spacing: 1px;
}

.different-content li:nth-child(2n) {
    margin-top: 50px;
}

.different-content li:nth-child(3n) {
    margin-top: 100px;
}

/* .different-content li:nth-child(5n) {
    margin-top: 150px;
  }
  .different-content li:nth-child(6n) {
    margin-top: 200px;
  } */
@keyframes rollIn {
    0% {
        left: 100%;
    }

    to {
        left: 0;
    }
}



.scrollbar {
    position: relative;
    border-radius: 25px;
    color: white;
    background-color: #333;
    width: 150px;
    height: 10px;
    top: calc(5vh + 5px);
    left: 10px;
    text-align: center;
    cursor: pointer;
}

::-webkit-scrollbar {
    display: none;
}


.wrapper {
    position: relative;

    height: 80vh;

    width: calc((800px * 8) + ((100vw - 20px) * 3) + (10px * 10));

    padding: 0px 10px;

    border-top: 10vh white solid;
    border-bottom: 10vh white solid;
}

.thumbnail span {
    font-size: 30px;
    text-transform: uppercase;
}

.thumbnail {
    display: inline-block;
    float: left;

    height: 50vh;

    width: calc(600px - 10px);
    color: white;

    padding: 10px;
    font-weight: 800;
    border: 1em solid;
    border-image-slice: 1;
    border-width: 1em;
    /* border-image-source: radial-gradient(circle at -0% 20%, rgba(139, 255, 198, 1) 0%, rgba(122, 230, 199, 1) 10%, rgba(89, 183, 201, 1) 30%, rgba(56, 141, 199, 1) 50%, rgba(92, 191, 196, 1) 65%, rgba(122, 230, 199, 1) 72%, rgba(139, 255, 198, 1) 88%, rgba(89, 183, 201, 1) 100%); */

    border-radius: 10px;
    position: relative;
    margin-right: 5px;

    /* background: #262a7b; */
    background: linear-gradient(45deg, #fbdbd0, #ac045e, #254b95);
    opacity: 0.8;
}

.edfc {
    position: absolute;
    bottom: 30px;
    padding: 0 29px;
}

/* .thumbnail strong {
    display: block;
    margin-top: 25%;
  } */
/* .thumbnail:nth-child(1) {
      background-color: red;
  }
  
  .thumbnail:nth-child(2) {
      background-color: navy;
  }
  
  .thumbnail:nth-child(3) {
      background-color: gray;
  }
  
  .thumbnail:nth-child(4) {
      background-color: orange;
  }
  
  .thumbnail:nth-child(5) {
      background-color: purple;
  }
  
  .thumbnail:nth-child(6) {
      background-color: black;
  }
  
  .thumbnail:nth-child(7) {
      background-color: green;
  }
  
  .thumbnail:nth-child(8) {
      background-color: darkred;
  }
  
  .thumbnail:nth-child(9) {
      background-color: teal;
  }
  
  .thumbnail:nth-child(10) {
      background-color: steelblue;
  }
  
  .thumbnail:nth-child(11) {
      background-color: salmon;
  }
  
  .thumbnail:last-child {
    margin-right: 0px;
  } */

.full {
    width: calc(100vw - 20px - 20px);
}


.different-content li strong {
    font-size: 30px;
    font-family: "Crimson Pro", serif;
    text-transform: uppercase;
    line-height: 1;
    display: block;
    /* padding: 0 0 10px; */
}

.different-content li strong {
    position: relative;
    z-index: 0;
    /* height: 400px;
    width: 400px; */
    /* border-radius: 12px; */
    overflow: hidden;

    padding-bottom: 5px;

    font-weight: 600;
    margin-top: 10px;
    /* background: -webkit-linear-gradient(45deg, #065d9b, #ff00ca);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    color: #202656;
}

.different-content li strong span {
    /* padding: 12px; */
    background: #fff;
    color: #202656;
    display: block;
    border-bottom: 1px solid #cac1c1;
}

.different-content li strong::before {
    content: "";
    position: absolute;
    z-index: -2;
    right: -10px;
    bottom: -50%;
    width: 200%;
    height: 200%;
    background-color: #000;
    background-repeat: no-repeat;
    background-size: 100% 100%, 50% 50%;
    background-position: 0 0, 0 100%, 100% 100%, 100% 0;
    background-image: linear-gradient(#00ffff, #ff00d9);
    animation: bgRotate 10s linear infinite;
}

.different-content li strong::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 1px;
    bottom: 10px;
    width: calc(120% - 10px);
    height: calc(120% - 10px);
    background: linear-gradient(#06021d, #06021d);
    border-radius: 12px;
}

@keyframes bgRotate {
    100% {
        transform: rotate(1turn);
    }
}















@media (max-width: 768px) {
    .onde {
        height: 40px;
        min-height: 40px;
    }

    .main-heding {
        font-size: 18px;
        letter-spacing: 0px;
        line-height: 1;
    }

    .content-divide p {
        font-size: 1rem;
    }

    .number-box span {
        margin-top: 5px;
        min-height: auto;
    }

    .different-content li {
        position: sticky;
        top: 20px;
        background: #fff;
        padding: 20px 10px;
        border: 1px solid #cac1c1;
        border-radius: 10px;
        margin: 20px auto;
    }

    section.velo-slides {
        margin: 0px auto;
    }

    [data-velo-slider="on"] .velo-slide {
        position: relative;
        margin-bottom: 10px;
    }

    .number-box {
        min-height: auto;
        margin: 5px auto;
    }

    .velo-slide {
        border-width: 2em;
    }

    .number-box h4 {
        font-size: 28px;
    }

    .different-content li {
        width: 100%;
    }

    .different-content li:nth-child(2n) {
        margin-top: 0;
    }

    .different-content li:nth-child(3n) {
        margin-top: 0px;
    }

    .col-9 {
        width: 100% !important;
    }
}

.counter-text {
    position: relative;
}

.counter-text .container {
    display: flex;
    /* justify-content: center;
  align-items: center; */
    flex-direction: column;
    /* height: 100vh; */
    /* width: 60%; */
    margin: 5% 0;
}

.counter-text .text {
    width: 75%;
    margin: auto;
    margin-top: 50px;
    text-align: center;
}

.counter-text .text>p {
    text-shadow: 0px 0 10px #d53a9c55;
    background: linear-gradient(to right, #d53a9d 50%, #ffffff 50%);
    background-size: 200% 100%;
    background-position-x: 100%;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    /* margin-bottom: -250px; */
    margin-left: 50px;
    line-height: 1.2;
    /*   outline: 6px dotted teal; */
}

.counter-text p {
    font-size: 2.7rem;
}


/* .container {
  padding: 4em 5%;
  max-width: 1080px;
  height: 100vh;
  text-align: left;
  margin: 0 auto;
} */


/* details {
  z-index: 2;
  transition: all 5s ease-in-out;
}

summary {
  display: block;
  position: relative;
  cursor: pointer;
  padding-left: 1em;
}
summary:before {
  content: "+";
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(0);
  transition: 0.25s transform ease;
}

details[open] > summary:before {
  transform: rotate(45deg);
}

details summary::-webkit-details-marker {
  display: none;
}
header {
  position: fixed;
  width: 100%;
  height: 100vh;
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}
header svg {
  fill: white;
  width: 2rem;
  height: 2rem;
  opacity: 0.4;
}
header svg path {
  mix-blend-mode: difference;
}
header .logo svg {
  opacity: 0.25;
}
header .social a {
  display: inline-block;
  margin-left: 0.3em;
}

img {
  width: 100%;
  height: auto;
}
button {
  padding: 1em 1.5em;
  background: #d06324;
  color: #e6e6e6;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 1.5rem;
  width: 100%;
}
button a {
  text-decoration: none;
}
@media (min-width: 640px) {
  button {
    width: auto;
    padding-left: 2rem;
    padding-right: 2rem;
  }
} */


/* .wrapper {
  overflow: hidden;
}

.content {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
} */


/* .content .sliding-img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  width: clamp(40%, 40%, 90px);
  aspect-ratio: 1;
} */

.flex-marquee {
    display: flex;
    gap: 20px;
    margin-left: 5%;
}




.flex-marquee li .sliding-img span {
    font-size: 6.4rem;
    font-weight: bold;
    color: #8bffc6;
    line-height: 0.9;
}

.content1 {
    color: #8bffc6;
    font-size: 23px;
    color: #fff;
}


/* .content1 .sliding-img span {
  border-radius: 100%;
  padding: 10px;
  font-size: 7rem;
  background-color: #000;
  font-weight: bold;
  color: #fff;
  height: 300px;
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
} */


/* .content1 .sliding-text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  will-change: transform;
  white-space: nowrap;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 6rem;
  mix-blend-mode: difference;
  padding: 0 100%;
  -webkit-animation: marquee 9s linear infinite;
          animation: marquee 9s linear infinite;
} */


/* @-webkit-keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
} */


/* .flex-marquee {
  display: flex;
}

.flex-marquee li{
  width: 50%;
} */



/* :root {
    --stroke-width: 2px;
    --background-color: #111;
    --background-grid-color: rgba(255, 255, 255, 0.1);
    --vignetting-color: #000;
    --primary-color: #01ff89;
    --animation-drip-duration: 5s;
  } */
.cta-content {
    text-align: center;
}

.cta-content p {
    font-size: 70px;
    text-align: center;
    color: #ffffff;
    margin: 0 auto;
    font-weight: bold;
    line-height: 1.3;
    font-family: "Luckiest Guy", serif;
}

.seo-cta-img {
    color: #7ed63f;
}

.succes-cta-img {
    color: #46f6ff;
}

.view-more-cta {
    background: #fff;
    padding: 10px 30px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 30px;
    margin: 0 auto;
    display: inline-block;
}

/* .cta-content span {
    line-height: 1;
    position: relative;
    width: 100px;
    height: 100px;
    display: inline-block;
  } */
.cta {
    background: #020420;
    padding: 15px;
    border-radius: 15px;
    max-width: 1000px;
    padding-top: 37px;
    margin: 0 auto;
    text-align: center;
}

.view-more-cta {
    background: #fff;
    padding: 5px 30px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 30px;
    margin: 15px auto;
    display: inline-block;
    font-family: "Luckiest Guy", serif;
    border: 4px dashed #551a8b;
}

/* .cta-content {
    width: 65%;
    margin: 0 auto;
  } */


.cta-section {
    width: 100%;
}

#fist-line {
    animation: fist-line 2s ease 200ms backwards;
}

#second-line {
    animation: second-line 1200ms ease 800ms backwards;
}

.cta .imgs {
    animation: imgs 5s infinite;
    position: relative;
    top: -40px;
    transform: translateY(50%);
    height: auto;
}

.velo-slide {
    transition: transform 0.3s ease, position 0.3s ease;
}

.velo-slide.is-active {
    z-index: 10;
    /* Ensure the active slide is on top */
}

@keyframes fist-line {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translate(0px);
    }
}

@keyframes second-line {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translate(0px);
    }
}

@keyframes imgs {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(20px);
    }
}

#sidebar p {
    margin-top: 0;
    margin-bottom: 6px;
}

#sidebar ul li {
    margin-bottom: 5px;
    font-size: 15px;
    position: relative;
    padding-left: 22px;
}

#sidebar ul li li::before {
    content: "";
    background-image: url(../images/next-icon.png);
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    font-size: 20px;
    width: 15px;
    height: 19px;
    background-repeat: no-repeat;
}


@media(max-width: 1360px) {
    .top-box .col-3 {
        width: 50%;
    }

    .service-banner h1 {
        font-size: 5.6rem;
    }

    .heading-flex img {
        width: 90px;
        top: 0px;
    }

    h2 {
        font-size: 5.6rem;
    }
}

@media(max-width: 1024px) {
    h2 {
        font-size: 4rem;
    }

    .text-above-inner span {
        font-size: 14px;
    }

    .content-text span {
        font-size: 17px;
    }

    .velo-slide[data-velo-theme="light"] .velo-slide__bg {
        /* color: #8697c4; */
        border: 2.5em solid;
        border-image-slice: 1;
        border-width: 4.5em 1.5em;
    }

    .service-banner {
        background-size: cover;
    }

    .velo-slide .col-3 {
        width: 50%;
    }

    .service-banner h1 {
        font-size: 4.5rem;
    }

    .heading-flex img {
        width: 140px;
        left: 10%;
    }

    .text-above .col-8 {
        width: 100%;
        text-align: center;
    }

    .col-11.four-section {
        width: 100%;
    }

    .four-section .different-content li {
        width: 24.5%;
    }

    .panel-box {
        flex-wrap: wrap;
    }

    .panel-box div {
        width: 100%;
    }

    h2 {
        font-size: 3.5rem;
    }

    .text-above p {
        font-size: 16px;
    }

    .col-3 {
        width: 50%;
    }
}

@media(max-width: 768px) {
    .top-box .col-3 {
        width: 100%;
    }

    .four-section .different-content li {
        width: 49.5%;
    }

    .destop-hide {
        display: block;
    }

    .service-banner .col-7 {
        width: 95%;
        padding: 1% 2%;
        text-align: right;
    }

    .service-banner .content p {
        margin-left: auto;
    }

    .service-banner h1 {
        font-size: 3rem;
    }

    main h2 {
        font-size: 2.5rem;
    }

    .top-box .col-3 {
        width: 50%;
    }

    .panel-flex-list li {
        width: 100%;
    }

    .velo-slide__header .velo-slide__btn ul {
        width: 100%;
    }

    .velo-slide.velo-slide__bg {
        border-width: 4.5em 2rem;
    }

    .service-banner {
        background: radial-gradient(circle, rgb(2, 6, 33) 10%, rgb(51, 60, 118) 53%);
        height: auto;
    }

    .text-seting.height-full {
        height: auto;
    }

    .content img {
        width: 100%;
    }

    .content-text {
        font-size: 3.5rem;
        width: 100%;
    }

    .content-text img {
        max-width: initial;
    }

    .text-above-inner span {
        font-size: 12px;
    }

    .main-box .top-box span p {
        max-width: 100%;
        font-size: 14px;
    }

    .text-above .text-above-inner h2 {
        width: 95%;

    }

    .content-text span {
        font-size: 16px;
        display: inherit;
        width: 70%;
    }

    .heading-flex img {
        display: none;
    }

    .service-banner .content p {
        width: 100%;
    }

    .main-box {
        flex-wrap: wrap;
    }

    .top-box,
    .velo-slide__btn {
        width: 100%;
    }

    .slider-sticky-service {
        height: auto;
    }

    .velo-slide {
        /* height: 140vh; */
        z-index: 4;
    }

    .velo-slide__bg,
    .velo-slide {
        /* height: 140vh; */
    }
}

@media (max-width: 520px) {
    .velo-slide {
        /* height: 160vh; */
        z-index: 4;
    }

    .velo-slide__bg,
    .velo-slide {
        /* height: 160vh; */
    }

    .four-section .different-content li {
        width: 100%;
    }

    .velo-slide .col-3 {
        width: 100%;
    }
}