@import url('https://fonts.googleapis.com/css2?family=Kalnia:wght@400;500;600;700&family=Montserrat:wght@100;200;300;400;600;700;800;900&display=swap');
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Kalnia', serif;
}

a,
p,
span,
button,
li {
    font-family: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
    width: 100%;
}

body {
    background-color: #213617;
}

.main-wrapper {
    overflow: hidden;
    overflow-x: hidden;
    background-image: url(../images/blur-overlay.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #101011;
}

 ::-webkit-scrollbar {
    width: 3px;
    background-color: #101011;
    height: 4px;
}

 ::-webkit-scrollbar-thumb {
    background-color: #000;
}

.hover-this .hover-anim {
    pointer-events: none;
    -webkit-transition: -webkit-transform 0.2s linear;
    transition: -webkit-transform 0.2s linear;
    -o-transition: transform 0.2s linear;
    transition: transform 0.2s linear;
    transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}

.cursor {
    pointer-events: none;
    position: fixed;
    padding: 0.3rem;
    background-color: #fff;
    border-radius: 50%;
    mix-blend-mode: difference;
    -webkit-transition: opacity 0.4s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.4s ease, -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease, opacity 0.4s ease;
    transition: transform 0.3s ease, opacity 0.4s ease;
    transition: transform 0.3s ease, opacity 0.4s ease, -webkit-transform 0.3s ease;
    z-index: 99999;
    display: none;
}

body.loaded {
    overflow: hidden !important;
    height: 100% !important;
}

.preloader {
    position: fixed;
    z-index: 10;
    height: 100vh;
    width: 100%;
    left: 0;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: transparent;
    z-index: 99999999999999;
}

.preloader svg {
    position: absolute;
    top: 0;
    width: 100vw;
    height: 110vh;
    fill: #13220b;
}

h5.preloader-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 100px;
    color: #fff;
    text-transform: uppercase;
}

@media (max-width: 1040px) {
    h5.preloader-text {
        font-size: 60px;
    }
}

h5.preloader-text::after {
    content: "Loading";
    position: absolute;
    left: 0;
    top: 0;
    color: #2EFF75;
    animation: move 2s infinite alternate;
}

@keyframes move {
    from {
        clip-path: circle(50px at 0% 50%);
    }
    to {
        clip-path: circle(50px at 100% 50%);
    }
}


/*---------------------Navbar-----------------------*/


/* .offcanvas-backdrop.close {
    display: none;
} */

.btn-menu {
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border-radius: 10px;
    position: relative;
    z-index: 9;
    /* width: 60px;
    height: 60px; */
}

#nav-icon3 {
    width: 55px;
    height: 45px;
    position: relative;
    -webkit-transform: rotate(0deg) scale(0.6);
    -moz-transform: rotate(0deg) scale(0.6);
    -o-transform: rotate(0deg) scale(0.6);
    transform: rotate(0deg) scale(0.6);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}

#nav-icon3 span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 13px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

#nav-icon3 span:nth-child(1) {
    top: 0px;
}

#nav-icon3 span:nth-child(2),
#nav-icon3 span:nth-child(3) {
    top: 18px;
}

#nav-icon3 span:nth-child(4) {
    top: 36px;
}

#nav-icon3.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}

#nav-icon3.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#nav-icon3.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#nav-icon3.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}

.page-header.is-sticky .navbar {
    padding: 12px 0 !important;
}

.page-header.is-sticky {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.55);
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(5px);
    animation: slideDown 0.35s ease-out;
    top: 0;
}

.page-header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    /* padding: 20px 0; */
    z-index: 8;
    /* background-color: rgba(0, 0, 0, 0.75); */
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.custom-menu-box {
    /* background-color: rgba(255, 255, 255, 0.55); */
    /* box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1); */
    /* backdrop-filter: blur(10px); */
    /* -webkit-backdrop-filter: blur(5px); */
    padding: 0;
    border-radius: 10px;
    transition: all 0.5s;
    display: flex;
    align-items: center;
    margin-right: 5px;
}

.custom-menu-box a {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    line-height: 18px;
    text-decoration: none;
    padding: 0 5px !important;
    transition: all 0.5s;
}

.custom-menu-box a:first-child {
    padding-left: 0;
}

.custom-menu-box a:last-child {
    padding-right: 0;
}

.get-quote {
    margin-right: 10px;
    position: relative;
    z-index: 1;
}

.get-quote a {
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    line-height: 18px;
    padding: 12px 20px;
    border-radius: 10px;
    transition: all 0.5s;
    text-transform: capitalize;
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.get-quote a:hover {
    background-color: #2EFF75;
    color: #000;
    border: 1px solid transparent;
}

.navbar-toggler {
    padding: 0;
    border: 0;
}

.navbar {
    padding: 16px 0;
}

.btn-close:focus {
    box-shadow: none;
}

.nav-item {
    padding: 0 12px;
}

.nav-link {
    color: #fff;
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    padding: 0;
    position: relative;
    display: inline-block;
}

.nav-link.active {
    color: #fff !important;
    position: relative;
    display: inline-block;
}

.nav-link.active::after {
    content: "";
    transition: all 0.5s;
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 3px;
    background: #fff;
    transform: scaleX(1);
}

.nav-link:after {
    content: "";
    transition: all 0.5s;
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 3px;
    background: #fff;
    transform: scaleX(0);
}

.nav-link:hover {
    color: #fff !important;
}

.nav-link:hover:after {
    transform: scaleX(1);
}

.nav-link:focus,
.nav-link:hover {
    color: #fff;
}


/*-------------Hero-------------*/

#hero {
    padding: 70px 0 100px;
    margin-top: 90px;
}

#hero .get-quote a {
    background-color: #2EFF75;
    color: #000;
    border: 1px solid transparent;
}

#hero .get-quote a:hover {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.txt-type>.txt {
    border-right: 0.2rem solid #777;
}


/* .hero-content {
    margin-bottom: 50px;
} */

.hero-content h4 {
    margin-bottom: 0;
    color: #fff;
    font-size: 30px;
    line-height: 30px;
    font-weight: 500;
}

.hero-content h1 {
    margin-bottom: 0;
    color: #fff;
    font-size: 52px;
    line-height: 52px;
    font-weight: 700;
    display: inline-block;
    margin-top: 20px;
}

.hero-content .txt {
    margin-bottom: 0;
    color: #2EFF75;
    font-size: 52px;
    line-height: 52px;
    font-weight: 700;
    display: inline-block;
}

.hero-content p {
    margin-bottom: 0;
    color: #fff;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    margin-top: 20px;
    padding-right: 200px;
}

#hero .get-quote {
    margin-top: 20px;
}

#hero .row>[class*='col-'] {
    padding-left: 0;
    padding-right: 0;
}


/* .hero-img {
    margin-left: 50px;
} */

#hero .row {
    margin: 0 0;
}

.txt-type {
    min-height: 120px;
    display: block;
}

.vector-1 {
    position: absolute;
    top: 10%;
    left: -10%;
}

.vector-2 {
    position: absolute;
    top: 15%;
    right: 0;
}

.vector-3 {
    position: absolute;
    bottom: 40%;
    left: -30%;
}

.vector-4 {
    position: absolute;
    bottom: 20%;
    right: -20%;
}

.vector-5 {
    position: absolute;
    bottom: 10%;
    left: -20%;
}

.vector-1-img {
    transform: translatex(0);
    animation: vector-img 3s ease-in-out infinite;
    --webkit-animation: vector-img 3s ease-in-out infinite;
}

.vector-2-img {
    transform: translateY(0);
    animation: vector-img-1 3s ease-in-out infinite;
    --webkit-animation: vector-img-1 3s ease-in-out infinite;
}

@keyframes vector-img {
    0% {
        transform: translatex(0px);
    }
    50% {
        transform: translatex(-10px);
    }
    100% {
        transform: translatex(0px);
    }
}

@-webkit-keyframes vector-img {
    0% {
        transform: translatex(0px);
    }
    50% {
        transform: translatex(-10px);
    }
    100% {
        transform: translatex(0px);
    }
}

@keyframes vector-img-1 {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@-webkit-keyframes vector-img-1 {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.vector-1 img {
    animation-delay: 1s !important;
    width: 60px;
}

.vector-2 img {
    width: 80px;
    animation-delay: 1.2s !important;
}

.vector-3 img {
    width: 60px;
    animation-delay: 1.4s !important;
}

.vector-4 img {
    width: 60px;
    animation-delay: 1.6s !important;
}

.vector-5 img {
    width: 70px;
    animation-delay: 1.8s !important;
}


/*---------------------service--------------------*/

#service {
    padding: 90px 0 90px;
}

.service-content h1 {
    color: #fff;
    text-transform: uppercase;
    font-size: 44px;
    line-height: 44px;
    margin-bottom: 0;
    font-weight: 700;
}

.service-content h1 span {
    font-family: 'Kalnia'
}

.service-content p {
    margin-bottom: 0;
    color: #fff;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    margin-top: 20px;
}

.service-icon {
    flex-shrink: 0;
    background-color: #fff;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 50px;
}

.serivce-details {
    margin-top: 30px;
}

.serivce-details h2 {
    color: #fff;
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 0;
    position: relative;
    font-weight: 600;
    text-transform: capitalize;
}

.serivce-details p {
    margin-bottom: 0;
    color: #fff;
    font-size: 16px;
    line-height: 22px;
    margin-top: 15px;
    font-weight: 600;
}

.service-card {
    background-color: transparent;
    /* border-radius: 15px; */
    padding: 40px 30px;
    /* box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2); */
    text-align: center;
    height: 100%;
}

.card1 {
    z-index: 2;
}

.card2 {
    z-index: 3;
}

.card3 {
    z-index: 4;
}

.card4 {
    z-index: 5;
}

.card5 {
    z-index: 6;
}


/*----------------What to Expect---------------*/

#expect {
    padding: 90px 0;
}

.expect-block {
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    min-height: 240px;
    background-color: rgba(58, 255, 125, 0.2);
    position: relative;
}

.word-5::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    background-image: url(../images/web-shape-1.png);
    background-size: contain;
    background-position: top right;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
}

.word-1::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: url(../images/web-shape-2.png);
    background-size: contain;
    background-position: bottom right;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
}

.word-3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    background-image: url(../images/web-shape-6.png);
    background-size: contain;
    background-position: top left;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    opacity: 0.15;
}

.word-6::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    background-image: url(../images/web-shape-4.png);
    background-size: contain;
    background-position: top right;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
}

.word-4::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    background-image: url(../images/web-shape-5.png);
    background-size: contain;
    background-position: top right;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
}

.word-2::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    background-image: url(../images/web-shape-3.png);
    background-size: contain;
    background-position: top right;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
}

.expect-row {
    margin-top: 70px;
}

.expect-row .row>[class*='col-'] {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
}

.expect-row .row {
    margin: 0 -10px;
    justify-content: center;
}

.expect-icon {
    min-height: 80px;
}

.expect-icon img {
    width: 45px;
    flex-shrink: 0;
}

.expect-text h1 {
    color: #fff;
    font-weight: 700;
    font-size: 30px;
    line-height: 40px;
    text-transform: uppercase;
    font-family: 'Montserrat';
    margin-bottom: 0;
}


/*----------------About-------------------*/

#about {
    padding: 90px 0;
}

.section-custom {
    background: rgba(58, 255, 125, 0.20);
}

.about-content h1 {
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 84px;
    line-height: 84px;
    font-family: 'Montserrat';
    letter-spacing: 1px;
}

.about-img {
    margin-top: -50px;
    text-align: end;
}

.about-details h1 {
    color: #fff;
    font-weight: 700;
    font-size: 80px;
    line-height: 80px;
    margin-bottom: 0;
    text-transform: uppercase;
}

.about-details h1 span {
    font-family: 'Kalnia'
}

.title-animation span {
    font-family: 'Kalnia'
}

.about-details p {
    margin-bottom: 0;
    font-size: 20px;
    line-height: 30px;
    color: #fff;
    font-weight: 400;
    margin-top: 20px;
    letter-spacing: 0.8px;
}

.about-details .get-quote {
    margin-top: 50px;
}


/*--------------------process----------------*/

.news-shortcode {
    position: relative;
    display: block;
    margin-left: calc(50% - 50vw)!important;
    margin-right: calc(50% - 50vw)!important;
    max-width: 1000%!important;
    width: 100vw!important;
    overflow: hidden;
}

.news-post.in-view {
    pointer-events: initial;
}

.news-post {
    position: relative;
    box-sizing: border-box;
    padding: 5vw 0 5vw 0;
    padding-left: 80px;
    padding-right: 80px;
    opacity: 0.2;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.3); */
    pointer-events: none;
    transition: all 0.5s;
    /* min-height: 450px; */
}

.post-head {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.post-entry-meta {
    width: 30%;
    text-align: end;
}

.post-entry-meta p {
    margin-bottom: 0;
}

.post-article {
    width: 60%;
}

.news-post.in-view .post-content {
    height: auto;
}

.post-content {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    padding-right: 30%;
    text-align: left;
    overflow: hidden;
    height: 0;
    transition: all 0.5s;
}

.news-post h4 {
    color: #fff;
    font-weight: 700;
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 0;
}

.news-post p {
    color: #fff;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    margin-top: 30px;
    transition: all 0.5s;
}

#process {
    padding: 90px 0;
}

.title h1 {
    margin-bottom: 0;
    font-weight: 700;
    font-size: 64px;
    line-height: 64px;
    margin-bottom: 0;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}

.process-block {
    position: relative;
    display: block;
    overflow: hidden;
    transition: all 0.5s;
}

.process-steps {
    display: flex;
    align-items: start;
    padding-bottom: 50px;
    border-bottom: 1px solid #606060;
    margin-top: 50px;
    position: relative;
    opacity: 0.2;
    justify-content: start;
    transition: all 0.5s;
}

.process-steps.in-view {
    pointer-events: initial;
    transition: all 0.5s;
}

.process-steps:first-child {
    margin-top: 0;
}

.process-steps:last-child {
    border-bottom: 0;
}

.number {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    border-radius: 50%;
    margin-left: auto;
}

.number h1 {
    color: #fff;
    font-weight: 600;
    font-size: 100px;
    line-height: 100px;
    margin-bottom: 0;
}

.process-details h1 {
    color: #fff;
    font-weight: 700;
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 0;
}

.process-details {
    padding-right: 50px;
}

.process-details ul {
    padding-left: 0;
}

.process-details ul li {
    color: #fff;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    margin-top: 30px;
    transition: all 0.5s;
}

.process-block {
    margin-top: 100px;
}

.process-details {
    margin-left: 50px;
}

.process-steps.in-view .post-content {
    height: auto;
}

.post-content {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    height: 0;
    transition: all 0.5s;
}


/*-------------------Projects----------------*/

#project {
    padding: 90px 0;
}

.top-images img {
    border-radius: 13px;
    transition: all 0.5s;
    transform: translateY(0);
    animation: movebounce 3s ease-in-out infinite;
    --webkit-animation: movebounce 3s ease-in-out infinite;
}

@keyframes movebounce {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0px);
    }
}

@-webkit-keyframes movebounce {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0px);
    }
}

.image-1 {
    animation-delay: 2s !important;
}

.image-2 {
    animation-delay: 5s !important;
}

.image-3 {
    animation-delay: 7s !important;
}

.image-4 {
    animation-delay: 8s !important;
}

.top-images a {
    transition: all 0.3s !important;
}

.top-images a:hover img {
    transform: translateY(-10px);
}

.topheader-inner {
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.topheader-inner h3 {
    color: #fff;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 0;
    font-family: 'Montserrat';
    padding: 0 15px;
}

.topheader-inner .get-quote {
    margin-top: 50px;
}

.top-images {
    margin-top: -300px;
}

.no-margin {
    margin-top: 60px;
}

.top-1 {
    margin-bottom: 60px;
}

.top1 img {
    opacity: 0.75;
    transition: all 0.5s;
}

.top1 img:hover {
    opacity: 1;
}

.main-project img {
    margin-top: -80px;
}


/*------------------------------Technology-----------------------------*/

:root {
    --marquee-width: 100vw;
    --marquee-elements-displayed: 8;
    --marquee-element-width: calc( var(--marquee-width) / var(--marquee-elements-displayed));
    --marquee-animation-duration: calc(var(--marquee-elements) * 6s);
}

.marquee {
    width: var(--marquee-width);
    height: var(--marquee-height);
    background: rgba(58, 255, 125, 0.20);
    color: #eee;
    overflow: hidden;
    position: relative;
    padding: 0;
    width: 120%;
}

.marquee:before,
.marquee:after {
    position: absolute;
    top: 0;
    width: 10rem;
    height: 100%;
    content: "";
    z-index: 1;
}

.marquee:before {
    left: 0;
    background: linear-gradient(to right, #3AFF7D33 0%, transparent 100%);
}

.marquee:after {
    right: 0;
    background: linear-gradient(to left, #3AFF7D33 0%, transparent 100%);
}

.marquee-content {
    list-style: none;
    height: 100%;
    display: flex;
    animation: scrolling var(--marquee-animation-duration) linear infinite;
    margin-bottom: 0;
}

@keyframes scrolling {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX( calc(-1 * var(--marquee-element-width) * var(--marquee-elements)));
    }
}

.marquee-content li {
    display: flex;
    justify-content: center;
    align-items: center;
    /* text-align: center; */
    flex-shrink: 0;
    width: var(--marquee-element-width);
    max-height: 100%;
    font-size: calc(var(--marquee-height) * 3 / 4);
    /* 5rem; */
    white-space: nowrap;
}

#technology img {
    width: 100px;
}

.shopyfy {
    width: 170px !important;
}

@-webkit-keyframes marquee {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

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

.marquee-text {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.marquee-text h1 {
    text-transform: uppercase;
    will-change: transform;
    transform: translateX(0);
    white-space: nowrap;
    -webkit-animation: marquee 45s linear infinite;
    animation: marquee 45s linear infinite;
    font-size: 160px;
    line-height: 160px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: 0;
}

#technology {
    position: relative;
    margin-top: 100px;
    transform: rotate(355deg);
    left: -10%;
}


/*----------------Testimonial-------------*/

.review-box {
    border-radius: 15px;
    background: url(../images/testimonial-bg.png), rgba(58, 255, 125, 0.20);
    padding: 50px 50px 70px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
}

.testimonial-text {
    overflow: hidden;
}

#review {
    padding: 200px 0 100px;
}

.review-box h1 {
    margin-bottom: 0;
    font-size: 44px;
    line-height: 44px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
}

.testimonial-content p {
    color: #fff;
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 15px;
}

.testimonial-content h2 {
    color: #fff;
    font-size: 24px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 0;
    font-family: 'Kalnia';
    letter-spacing: 1px;
    margin-bottom: 0;
    text-align: center;
}

.testimonial-background {
    margin-top: 30px;
    padding: 0 50px;
}

#review .swiper-pagination {
    left: 50%;
    transform: translateX(-50%);
    bottom: -40px;
    z-index: 0;
}

#review .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    display: inline-block;
    border-radius: 100%;
    background: #000;
    opacity: .2;
    margin-left: 10px;
    transform: scale(0.8);
}

#review .swiper-pagination-bullet-active {
    opacity: 1;
    background: #fff;
    transform: scale(1.08);
}

.testimonial-content {
    text-align: center;
}

#review .swiper-button-next,
#review .swiper-button-prev {
    background: none;
    width: 50px;
    height: auto;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    z-index: 0;
}

#review .swiper-button-next {
    right: -30px;
}

#review .swiper-button-prev {
    left: -30px;
}


/*-----------------Footer----------------------*/

#footer {
    padding: 30px 0 0;
}

.footer-content h1 {
    color: #fff;
    margin-bottom: 0;
    font-size: 54px;
    line-height: 54px;
    font-weight: 600;
    text-transform: uppercase;
}

.footer-content p {
    color: #fff;
    margin-bottom: 0;
    font-size: 20px;
    line-height: 32px;
    font-weight: 400;
    margin-top: 20px;
    padding-right: 50px;
}

.footer-content .get-quote {
    margin-top: 50px;
}

.explore-circle {
    text-align: center;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.explore-circle svg textPath {
    fill: #fff;
}

.explore-circle a {
    text-decoration: none;
    color: #7fc453;
    display: inline-block;
}

.explore-circle a .hover-anim {
    pointer-events: none;
    -webkit-transition: -webkit-transform 0.2s linear;
    transition: -webkit-transform 0.2s linear;
    -o-transition: transform 0.2s linear;
    transition: transform 0.2s linear;
    transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}

.circle-button {
    position: relative;
    display: inline-block;
}

.circle-button.in-bord:before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

.circle-button.in-bord:after {
    content: '';
    position: absolute;
    top: 55px;
    left: 55px;
    right: 55px;
    bottom: 55px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

.circle-button .rotate-circle svg {
    width: 210px;
    fill: #000;
}

.circle-button .arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-20px) translateY(-20px);
    -ms-transform: translateX(-20px) translateY(-20px);
    transform: translateX(-50%) translateY(-50%);
    display: inline-block;
    width: auto;
    height: auto;
}

.circle-button .arrow img {
    width: 50px;
}

.circle-button .arrow svg {
    width: 40px;
    height: 40px;
}

.rotate-circle {
    font-size: 30px;
    text-transform: uppercase;
    -webkit-animation-name: rotateCircle;
    animation-name: rotateCircle;
    -webkit-animation-duration: 20s;
    animation-duration: 20s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes rotateCircle {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotateCircle {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.footer-img {
    text-align: start;
}

.footer-img img {
    width: 300px;
    filter: grayscale(1);
    opacity: 0.7;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bottom-footer {
    background: rgba(58, 255, 125, 0.20);
    padding: 15px 0;
}

.copyright p {
    margin-bottom: 0;
    color: #fff;
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
}

.social a {
    text-decoration: none;
    margin-left: 10px;
}

.social a img {
    transition: all 0.5s;
    transform: translateY(0);
}

.social a:first-child {
    margin-left: 0;
}

.social a:hover img {
    transform: translateY(-7px);
}

.go-top .btn-top {
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.5s;
    text-transform: capitalize;
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    display: flex;
    align-items: center;
}

.go-top .btn-top i {
    margin-right: 10px;
}

.go-top .btn-top:hover {
    background-color: #2EFF75;
    color: #000;
    border: 1px solid transparent;
}


/*----------------------Modal----------------------*/

.form-field {
    margin-top: 30px;
}

.form-field input,
.form-field textarea {
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid #213617;
    background-color: transparent;
    font-size: 16px;
    line-height: 16px;
    color: #213617;
    font-weight: 500;
}

.form-control:focus {
    box-shadow: none;
    background-color: transparent;
    border-color: #213617;
}

#contact-modal .modal-content {
    background-color: rgba(255, 255, 255, 1);
    position: relative;
}

#contact-modal .btn-close {
    opacity: 1;
    position: absolute;
    top: -15px;
    right: -15px;
    padding: 0;
    border: 0;
    background: #2EFF75;
    color: #000;
    width: 30px;
    height: 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 9;
}

#contact-modal .modal-title {
    text-align: center;
    font-size: 28px;
    line-height: 28px;
    font-weight: 600;
    text-transform: capitalize;
    color: #213617;
}

#contact-modal form {
    margin-top: 20px;
}

#contact-modal .modal-footer {
    padding: 0;
    border: 0;
    display: block;
    margin-top: 30px;
}

.btn-submit {
    width: 100%;
    font-size: 18px;
    line-height: 18px;
    text-align: center;
    background-color: #213617;
    color: #fff;
    font-weight: 600;
    padding: 12px;
    border: 1px solid transparent;
    border-radius: 6px;
    margin: 0;
    transition: all 0.5s;
    text-transform: uppercase;
}

.btn-submit:hover {
    border: 1px solid #213617;
    background-color: transparent;
    color: #213617;
}

#contact-modal .modal-body {
    padding: 30px;
}


/*-----------------------portfolio-preview-------------------------*/

.circle-1 {
    position: absolute;
    top: 60%;
    right: 0;
    z-index: 0;
}

.circle-2 {
    position: absolute;
    top: 150%;
    left: -10%;
    z-index: 0;
}

.effect-1 {
    position: absolute;
    top: -40%;
    left: -40%;
    z-index: -1;
}

#portfolio-preview {
    padding: 100px 0;
}

#portfolio-preview .card {
    text-decoration: none;
    background-color: transparent;
    height: 100%;
    transition: all 0.5s;
    border: 0;
    overflow: hidden;
}

#portfolio-preview .card .img-holder {
    border-radius: 16px;
    overflow: hidden;
}

#portfolio-preview .card img {
    border-radius: 0;
    transform: scale(1);
    transition: all 1s;
}

#portfolio-preview .card:hover .img-holder img {
    transform: scale(1.1);
}

#portfolio-preview .card:hover .btn-view {
    opacity: 1;
    filter: blur(0);
}

#portfolio-preview .card .btn-view {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(33, 54, 23, 0.75);
    backdrop-filter: blur(10px);
    --webkit-backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    transition: all 0.5s;
    border-radius: 13px;
    color: #fff;
    font-weight: 700;
}

#portfolio-preview .row>[class*='col-'] {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 20px;
}

#portfolio-preview .row {
    margin: 0 -15px;
    justify-content: center;
}

#portfolio-preview .card-title {
    color: #fff;
    font-size: 22px;
    line-height: 22px;
    text-transform: capitalize;
    font-weight: 700;
    font-family: 'Montserrat';
    text-align: start;
    margin-bottom: 0;
}

#portfolio-preview .card-body {
    padding: 16px 0;
    display: flex;
    align-items: center;
}

#portfolio-preview .card-body svg {
    width: 30px;
    fill: #fff;
    stroke: #fff;
    transform: rotate(-45deg);
    margin-right: 10px;
}

#portfolio-preview .card-body p {
    margin-bottom: 0;
    padding: 5px 10px;
    background-color: #2EFF75;
    color: #000;
    font-weight: 600;
    font-size: 10px;
    line-height: 10px;
    text-align: center;
    text-transform: uppercase;
    display: inline-block;
    border-radius: 50px;
    margin-top: 7px;
}


/*--------------portfolio-hero-----------------*/

#portfolio-hero {
    background-color: rgba(58, 255, 125, 0.2);
    height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-hero-content {
    margin-top: 50px;
}

#portfolio-hero h1 {
    margin-bottom: 0;
    color: #fff;
    font-size: 46px;
    line-height: 46px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#portfolio-hero a {
    text-decoration: none;
    color: #2EFF75;
    font-size: 18px;
    line-height: 18px;
    text-align: center;
    text-transform: capitalize;
    font-weight: 600;
}

#portfolio-hero p {
    margin-bottom: 0;
    color: #fff;
    font-size: 18px;
    line-height: 18px;
    text-align: center;
    text-transform: capitalize;
    font-weight: 500;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 0;
}

.shape-1 {
    position: absolute;
    top: 15%;
    left: 5%;
    z-index: 1;
}

.shape-2 {
    position: absolute;
    top: 35%;
    left: 30%;
    z-index: 1;
    filter: brightness(0.95);
}

.shape-3 {
    position: absolute;
    top: 10%;
    right: 5%;
    z-index: 1;
}

.btn-more {
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    line-height: 18px;
    padding: 12px 20px;
    border-radius: 10px;
    transition: all 0.5s;
    text-transform: capitalize;
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.portfolio-button {
    text-align: center;
    margin-top: 30px;
}

.btn-more:hover {
    background-color: #2EFF75;
    color: #000;
    border: 1px solid transparent;
}

.portfolio-2 {
    display: none;
    transition: all 0.5s;
}

.service-block {
    margin-top: 50px;
}

.stratergy-box {
    display: flex;
    align-items: center;
    gap: 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 30px;
    height: calc(100% - 30px);
}

.stratergy-detials h4 {
    color: #fff;
    font-weight: 700;
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 0;
}

.stratergy-detials p {
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin-top: 17px;
    transition: all 0.5s;
    margin-bottom: 0;
}

.stratergy-img {
    flex-shrink: 0;
}

.stratergy-img img {
    width: 200px;
    border-radius: 13px;
}

.stratergy-block {
    margin-top: 50px;
}

.blog-box {
    background-color: rgba(58, 255, 125, 0.2);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
    height: calc(100% - 30px);
}

.blog-date {
    background-color: #213617;
    padding: 10px;
    border-radius: 4px;
    position: absolute;
    top: 20px;
    left: 20px;
}

.blog-box .blog-img {
    border-radius: 20px;
    overflow: hidden;
}

.blog-box .blog-details {
    padding: 20px;
}

.blog-box .blog-details h6 {
    font-weight: 600;
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 0;
    color: #fff;
    text-transform: capitalize;
}

.blog-box .blog-details p {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 15px;
}

.blog-box .blog-details a {
    color: #2EFF75;
    font-weight: 600;
    font-size: 18px;
    line-height: 18px;
    margin-top: 30px;
    display: inline-block;
    transition: all 0.3s;
}

.blog-section {
    padding: 100px 0;
}

.blog-date p {
    font-weight: 600;
    font-size: 14px;
    line-height: 14px;
    color: #fff;
    margin-bottom: 0;
    text-transform: capitalize;
}

.other-blogs {
    border: 1px solid rgba(255, 255, 255, 0.75);
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 15px;
    text-decoration: none;
    display: inline-block;
    background-color: transparent;
    transition: all 0.5s;
}

.section-title {
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 0;
    font-weight: 500;
    position: relative;
    color: rgba(58, 255, 125, 0.6);
    display: inline-block;
}

.other-blog-name p {
    font-weight: 400;
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    margin-left: 10px;
    margin-bottom: 0;
    transition: all 0.3s;
    text-transform: capitalize;
}

.other-blog-img img {
    border-radius: 6px;
}

.detail-heading h1 {
    margin-bottom: 10px;
    color: #fff;
    font-weight: 700;
    font-size: 36px;
    line-height: 36px;
    text-transform: capitalize;
}

.blog-detail-img img {
    border-radius: 13px;
}

.blog-person {
    display: flex;
    align-items: center;
    color: rgba(58, 255, 125, 0.6);
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 0;
    margin-top: 10px;
}

.blog-person i {
    margin-right: 10px;
}

.blog-detail-img {
    margin-top: 30px;
}

.detail-para {
    margin-top: 30px;
}

.detail-para p {
    color: #fff;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 0;
    margin-top: 15px;
}

.detail-para h4 {
    color: #fff;
    font-weight: 700;
    font-size: 28px;
    line-height: 28px;
    text-transform: capitalize;
    margin-bottom: 0;
}

.other-blogs .row>[class*='col-'] {
    padding-left: 2px;
    padding-right: 2px;
}

.other-blogs .row {
    margin: 0 -2px;
    align-items: center;
}

.about-me-section {
    padding: 100px 0;
}

.about-me-image {
    text-align: center;
}

.about-me-image img {
    border-radius: 40px;
    transform: translate(0, 0) scaleX(1) scaleY(1) rotate(4deg);
    transition: all 0.5s;
    border: 2px solid rgba(46, 255, 117, 0.3);
}

.about-me-content span {
    font-size: 28px;
    line-height: 28px;
    color: #dddddd;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 12px;
    display: inline-block;
}

.about-me-content h1 {
    font-size: 35px;
    line-height: 40px;
    font-weight: 600;
    margin-bottom: 15px;
    background: -webkit-linear-gradient(0deg, rgb(0 124 11) 0%, rgb(76 173 109) 100%);
    /* background: -webkit-linear-gradient(0deg, rgba(127, 196, 83, 1) 0%, rgba(255, 255, 255, 0.8) 51%, rgba(58, 255, 125, 0.6) 100%); */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.about-me-content p {
    margin-bottom: 0;
    font-size: 20px;
    line-height: 30px;
    color: #fff;
    font-weight: 400;
    margin-top: 20px;
    letter-spacing: 0.8px;
}

.about-me-content .get-quote a {
    display: inline-flex;
    margin-top: 30px;
    padding: 14px 20px;
}

.counter-details {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.counter-details span,
.counter-details h5 {
    margin-bottom: 0;
    color: #2EFF75;
    font-weight: 600;
    font-size: 42px;
    line-height: 42px;
}

.counter-details p {
    margin-bottom: 0;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    text-transform: capitalize;
}

.mission-section {
    background-color: rgba(58, 255, 125, 0.20);
    padding: 90px 0;
    margin-top: 70px;
}

.mission-image {
    border-radius: 20px;
    overflow: hidden;
}

.mission-block-details h1 {
    color: #2EFF75;
    font-weight: 600;
    font-size: 34px;
    line-height: 40px;
    margin-bottom: 0;
    text-transform: capitalize;
}

.mission-block-details ul {
    padding-left: 0;
    margin-bottom: 0;
    margin-top: 30px;
}

.mission-block-details ul li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
    color: #fff;
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
}

.mission-block-details ul li img {
    width: 30px;
    flex-shrink: 0;
}

.mission-block-details,
.about-mission-content {
    margin-left: 70px;
}

.mission-block-details {
    margin-top: 20px;
}

.testimonial-box {
    padding: 30px;
    background-color: rgba(58, 255, 125, 0.20);
    border-radius: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-box .client-image img {
    width: 100px;
    border-radius:50%;
    height:100px;
    object-fit: cover;
    object-position: center;
}

.testimonial-box .testimonial-content {
    text-align: start;
    margin-top: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-box .testimonial-content h2 {
    text-align: start;
    margin-top: auto;
}

.slider-button {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 24px;
}

.slider-button .swiper-button-disabled {
    opacity: 0.6;
}

.client-swiper .swiper-slide {
    height: auto;
}

.blog-block {
    margin-top: 50px;
}

.blog-block .get-quote a {
    display: inline-block;
}

.clients-logos .swiper-wrapper {
    transition-timing-function: linear !important;
    align-items: center;
}

.clients-logos {
    margin-top: 40px;
}

.clients-logos .swiper-slide {
    text-align: center;
}

.clients-logos .swiper-slide img {
    aspect-ratio: 16 / 9;
    object-fit: contain;
    object-position: center;
    width: 200px;
}

.coutenr-box {
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.service-box {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: center;
    margin-top: 40px;
}

.service-block .row>[class*='col-'] .service-box:first-child {
    margin-top: 0;
}

.service-img {
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0px 0 20px rgba(58, 255, 125, 0.3);
}

.service-img img {
    width: 350px;
}

.service-details h1 {
    font-weight: 700;
    font-size: 34px;
    line-height: 34px;
    margin-bottom: 0;
    color: #fff;
    text-transform: uppercase;
}

.service-details ul {
    padding-left: 0;
    margin-bottom: 0;
    margin-top: 25px;
}

.service-details ul li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.service-details ul li h6 {
    color: #2EFF75;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    display: flex;
    align-items: start;
    gap: 10px;
    white-space: nowrap;
}

.service-details ul li h6 p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 23px;
    font-weight: 600;
    text-wrap: wrap;
    color: #213617;
}

.service-box .service-details {
    padding: 75px 60px;
    position: relative;
}

.service-box .service-details::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.25);
    z-index: -1;
    min-height: 280px;
    transform: translateY(-50%);
}

.service-box.right .service-details::after {
    left: 0;
    width: 130%;
    border-radius: 30px 0 0 30px;
}

.service-box.left .service-details::after {
    right: 10px;
    width: 130%;
    border-radius: 0px 30px 30px 0;
}