/* <!-- ======= PRELOADER START ======= --> */
/* <!-- ======= PRELOADER START ======= --> */
/* <!-- ======= PRELOADER START ======= --> */
/* <!-- ======= PRELOADER START ======= --> */
/* <!-- ======= PRELOADER START ======= --> */

@import url("https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap");

:root {
    --color-bg: #121212;
    /* Off-black */
    --color-text: #f5f5f5;
    /* Off-white */
    --color-dark: #1a1a1a;
    /* Slightly lighter than background */
    --color-light: #e0e0e0;
    /* Slightly darker than text */
    --font-primary: "Space Mono", monospace;
    --font-size-massive: clamp(10rem, 20vw, 30rem);
    --grid-size: 50px;
    --transition-speed: 500ms;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-bg);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 999999;
}

/* Pixel Grid */
.pixel-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.pixel-row,
.pixel-column {
    position: absolute;
    background-color: var(--color-text);
    opacity: 0.1;
}

.pixel-row {
    height: 1px;
    width: 0%;
    left: 0;
}

.pixel-column {
    width: 1px;
    height: 0%;
    top: 0;
}

#top-row {
    top: 20%;
}

#bottom-row {
    bottom: 20%;
}

#left-column {
    left: 20%;
}

#right-column {
    right: 20%;
}

/* Block elements that fill progressively */
.block-container {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.block {
    position: absolute;
    background-color: var(--color-dark);
    border: 1px solid rgba(245, 245, 245, 0.1);
    transform-origin: center;
    transform: scale(0);
    transition: transform var(--transition-speed) cubic-bezier(0.25, 1, 0.5, 1);
}

#block-1 {
    top: 10%;
    left: 10%;
    width: 15vw;
    height: 15vw;
}

#block-2 {
    top: 10%;
    right: 10%;
    width: 20vw;
    height: 20vw;
}

#block-3 {
    bottom: 10%;
    left: 10%;
    width: 20vw;
    height: 20vw;
}

#block-4 {
    bottom: 10%;
    right: 10%;
    width: 15vw;
    height: 15vw;
}

/* Counter */
.counter-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    width: 100%;
    text-align: center;
}

.counter {
    font-size: var(--font-size-massive);
    font-weight: 700;
    line-height: 0.8;
    color: var(--color-text);
    position: relative;
    display: inline-block;
}

.counter-outline {
    font-size: var(--font-size-massive);
    font-weight: 700;
    line-height: 0.8;
    color: transparent;
    -webkit-text-stroke: 1px rgba(245, 245, 245, 0.1);
    position: absolute;
    top: 5px;
    left: 5px;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Loading Text */
.text-container {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 10;
}

.loading-text {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.system-messages {
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.5;
    opacity: 0.6;
    height: 1.5em;
    overflow: hidden;
}

.message {
    display: none;
}

.message.active {
    display: block;
}

/* Loading Bar */
.loading-bar-container {
    position: absolute;
    bottom: 3rem;
    left: 2rem;
    right: 2rem;
    z-index: 10;
}

.loading-bar {
    height: 3px;
    width: 100%;
    background-color: rgba(245, 245, 245, 0.1);
    margin-bottom: 10px;
    position: relative;
}

.progress {
    height: 100%;
    width: 0%;
    background-color: var(--color-text);
    transition: width var(--transition-speed) cubic-bezier(0.23, 1, 0.32, 1);
}

.loading-bar-markers {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 0.8rem;
    opacity: 0.6;
    position: relative;
}

.marker {
    position: relative;
    padding-top: 10px;
    transition: opacity 0.3s ease;
}

.marker::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 5px;
    background-color: var(--color-text);
}

/* Connector lines between markers */
.connector-lines {
    position: absolute;
    top: 0;
    width: 100%;
}

.connector-line {
    position: absolute;
    top: -12px;
    height: 1px;
    background-color: var(--color-text);
    transform-origin: left;
    transform: scaleX(0);
    transition: transform var(--transition-speed) cubic-bezier(0.23, 1, 0.32, 1);
}

#line-0-25 {
    left: 0%;
    width: 25%;
}

#line-25-50 {
    left: 25%;
    width: 25%;
}

#line-50-75 {
    left: 50%;
    width: 25%;
}

#line-75-100 {
    left: 75%;
    width: 25%;
}

/* Media queries for responsive design */
@media (max-width: 768px) {
    .text-container {
        top: 1rem;
        left: 1rem;
    }

    .loading-bar-container {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
    }

    .loading-text {
        font-size: 1.5rem;
    }

    .system-messages {
        font-size: 0.8rem;
    }

    #block-1,
    #block-2,
    #block-3,
    #block-4 {
        width: 25vw;
        height: 25vw;
    }
}

/* <!-- X====== PRELOADER -END- ======X --> */
/* <!-- X====== PRELOADER -END- ======X --> */
/* <!-- X====== PRELOADER -END- ======X --> */
/* <!-- X====== PRELOADER -END- ======X --> */
/* <!-- X====== PRELOADER -END- ======X --> */





/* <!-- ======= HEADER START ======= --> */
/* <!-- ======= HEADER START ======= --> */
/* <!-- ======= HEADER START ======= --> */
/* <!-- ======= HEADER START ======= --> */
/* <!-- ======= HEADER START ======= --> */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
    word-break: break-word;
    background: #02050a;
    color: #a2a2a2;
}

.main_menu {
    width: 250px;
    height: 100vh;
    position: fixed;
    border-right: 2px solid #151c25;
    top: 0;
    left: 0;
    background: #09101a;
    z-index: 999;
    scrollbar-width: none;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    display: flex;
    flex-direction: column;
}

.menu_icon {
    position: absolute;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    background: green;
    top: 10px;
    right: -60px;
    cursor: pointer;
    color: #02050a;
    font-size: 24px;
    display: none;
}

.main_menu .logo {
    background: #151c25;
    padding: 50px;
}

a {
    display: inline-block;
    text-decoration: none;
    color: #fff;
}

.w-100 {
    width: 100% !important;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

img,
svg {
    vertical-align: middle;
}

.main_menu ul {
    list-style: none;
    padding: 30px 30px 60px 30px;
    overflow: hidden;
    flex-grow: 1;
    overflow-y: auto;
    transition: all linear 0.3s;
    /* Hide scrollbar for Chrome, Safari, and Opera */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* Internet Explorer 10+ */
}

.main_menu ul::-webkit-scrollbar {
    display: none;
}

ul,
ol,
li {
    margin: 0;
    padding: 0;
    color: #a2a2a2;
}

.main_menu ul li a {
    border-radius: 5px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    display: block;
    margin-top: 30px;
    font-weight: 500;
    font-size: 14px;
    line-height: 12px;
    text-transform: uppercase;
    color: #a2a2a2;
    letter-spacing: 1px;
    padding: 0;
    background: none !important;
    padding-right: 17px;
}

.main_menu ul li a span {
    background: #222831;
    display: inline-block;
    width: 60px;
    height: 60px;
    padding: 15px;
    line-height: 25px;
    text-align: center;
    border-radius: 5px;
    margin-right: 17px;
    font-size: 24px;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
}

.main_menu ul li a:hover,
.main_menu ul li a.active {
    color: green !important;
}

.main_menu ul li a span svg {
    filter: brightness(10);
}

.main_menu ul li a:hover span,
.main_menu ul li a.active span {
    background: green;
}

.main_menu ul li a svg path{
    stroke: #ffff!important;
}

.main_menu ul li a.active svg,
.main_menu ul li:hover a svg path {
    color: black;
}

.main_menu ul li a:hover svg,
.main_menu ul li a.active svg,
.main_menu ul li:hover svg path,
.main_menu ul li:hover a svg path {
    filter: unset;
    stroke: #000000 !important;
}

.main_menu ul li a:hover span svg path,
.main_menu ul li a.active span svg path {
    stroke: #000000 !important;
}

@media screen and (max-width: 1199.99px) {
    .menu_icon {
        display: flex;
    }

    .main_menu {
        left: -250px;
    }

    .main_menu.show_menu {
        left: 0;
    }
}

.menu_icon .close_icon {
    display: none;
}

.menu_icon.show_icon .fa-bars.fa-xmark {
    background: #151c25;
    color: #fff;
}

.menu_icon.show_icon {
    background: #151c25;
    color: #fff;
}

/* <!-- ======= HEADER -END- ======= --> */
/* <!-- ======= HEADER -END- ======= --> */
/* <!-- ======= HEADER -END- ======= --> */
/* <!-- ======= HEADER -END- ======= --> */
/* <!-- ======= HEADER -END- ======= --> */





/* <!-- ======= BANNER START ======= --> */
/* <!-- ======= BANNER START ======= --> */
/* <!-- ======= BANNER START ======= --> */
/* <!-- ======= BANNER START ======= --> */
/* <!-- ======= BANNER START ======= --> */
ul,
ol,
li {
    margin: 0;
    padding: 0;
    color: #a2a2a2;
}

.main {
    padding-left: 250px;
}

#banner {
    height: 100vh;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    position: relative;
}

#banner {
    padding-left: 20px;
}

.col-lg-7 {
    padding: 0 12;
}

.tf_banner_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
}

.tf_banner_text h1 {
    color: #FFF;
    margin-bottom: 30px;
}

.tf_banner_text h1,
.tf_banner_text h1 span {
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    word-break: normal;
}

.tf_banner_text h1 span {
    color: green;
}

.cd-headline.rotate-1 {
    display: inline-block;
    perspective: 1000px;
}

.cd-words-wrapper {
    display: inline-block;
    position: relative;
    height: 1em;
}

.cd-words-wrapper {
    display: inline-block;
    text-align: left;
}

.cd-title,
.cd-words-wrapper,
.cd-words-wrapper b.is-visible {
    position: relative;
}

.cd-words-wrapper b {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform-origin: bottom;
    transform: rotateX(-90deg);
    animation: flipWords 9s infinite;
}

.cd-words-wrapper b:nth-child(1) {
    animation-delay: 0s;
}

.cd-words-wrapper b:nth-child(2) {
    animation-delay: 3s;
}

.cd-words-wrapper b:nth-child(3) {
    animation-delay: 6s;
}

@keyframes flipWords {
    0% {
        opacity: 0;
        transform: rotateX(90deg);
    }

    10% {
        opacity: 1;
        transform: rotateX(0deg);
    }

    30% {
        opacity: 1;
        transform: rotateX(0deg);
    }

    40% {
        opacity: 0;
        transform: rotateX(90deg);
    }

    100% {
        opacity: 0;
        transform: rotateX(-180deg);
    }
}

.tf_banner_text p {
    font-weight: 500;
    margin-bottom: 65px;
    word-break: normal;
}

p,
span {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
    color: #a2a2a2;
}

.tf_banner_text ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 28px;
    list-style: none;
}

.tf_banner_text ul li a {
    margin-right: 30px;
}

.common_btn,
button.wp-block-search_button.wp-element-button,
.post-password-form input[type="submit"],
.comment-form input[type="submit"] {
    display: inline-flex;
    padding: 20px 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: green;
    color: #02050a;
    font-weight: 500;
    transition: all 0.3s linear 0s;
    word-break: normal;
}

.banner_video_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-transform: capitalize;
    transition: all linear 0.3s;
}

.banner_video_btn i {
    color: green;
    font-size: 20px;
    transition: all linear 0.3s;
    font-size: 50px;
}


@media screen and (max-width: 1199.99px) {
    .main {
        padding-left: 0;
    }

    section {
        margin-left: 0;
        padding-left: 10px;
    }
}

@media screen and (max-width: 1024px) {
    .main #banner {
        height: auto !important;
        padding: 100px 0px 70px 0px;
    }

    .tf_banner_text {
        height: auto;
    }

    .tf_banner_text h1,
    .tf_banner_text h1 span {
        font-size: 50px;
    }
}

@media (max-width: 575.99px) {

    .tf_banner_text h1,
    .tf_banner_text span {
        font-size: 48px !important;
    }

    .tf_banner_text ul {
        margin-left: 10px;
    }

    .tf_banner_text ul li a {
        margin-bottom: 30px;
    }

    .main #banner {
        height: auto !important;
        padding: 100px 0px 50px 0px;
    }
}

/* <!-- ======= BANNER -END- ======= --> */
/* <!-- ======= BANNER -END- ======= --> */
/* <!-- ======= BANNER -END- ======= --> */
/* <!-- ======= BANNER -END- ======= --> */
/* <!-- ======= BANNER -END- ======= --> */



/* <!-- ======= Timeline START ======= --> */
/* <!-- ======= Timeline START ======= --> */
/* <!-- ======= Timeline START ======= --> */
/* <!-- ======= Timeline START ======= --> */
/* <!-- ======= Timeline START ======= --> */
.timeline-line {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.15);
    background: #1c1c1c;
    position: relative;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    background: green;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow:
        0 0 8px green,
        0 0 15px green;
}

.timeline-dot {
    animation: dot-pulse 2s infinite;
}

@keyframes dot-pulse {
    0%,100% {
        box-shadow:0 0 8px green;
    }
    50% {
        box-shadow:0 0 20px rgb(1, 60, 1);
    }
}
/* <!-- ======= Timeline-END- ======= --> */
/* <!-- ======= Timeline-END- ======= --> */
/* <!-- ======= Timeline-END- ======= --> */
/* <!-- ======= Timeline-END- ======= --> */
/* <!-- ======= Timeline-END- ======= --> */



/* <!-- ======= ABOUT START ======= --> */
/* <!-- ======= ABOUT START ======= --> */
/* <!-- ======= ABOUT START ======= --> */
/* <!-- ======= ABOUT START ======= --> */
/* <!-- ======= ABOUT START ======= --> */
h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-bottom: 10px;
}

ul,
ol,
li {
    margin: 0;
    padding: 0;
    color: #a2a2a2;
}

.pt_130 {
    padding-top: 130px !important;
}

#about {
    padding: 0 20px 0 20px;
}


.mb_40 {
    margin-bottom: 40px !important;
}

.my-purpose,
.my-ambition {
    position: relative;
    display: inline-block;
}

.my-purpose::after,
.my-ambition::after {
    content: "";
    display: block;
    width: 40px;
    height: 1.5px;
    background: #45ff4f;
    margin-top: 25px;
}



.tf_section_heading h5 {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: green;
    line-height: 1.2;
}

.tf_section_heading h2 span {
    font-size: 50px;
    font-weight: 600 !important;
    line-height: 1.3;
    color: #fff;
}

.tf__section_heading h2 span {
    font-size: 50px;
    font-weight: 600 !important;
    line-height: 1.3;
    color: #fff;
}

.justify-content-between {
    justify-content: space-between !important;
}

.tf_about_text ul {
    list-style: none;
}

.tf_about_text ul li {
    margin-top: 65px;
}

.tf_about_text ul li .top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    translate: none;
    rotate: none;
    scale: none;
    transform: translate(0px, 30px);
    opacity: 0;
}

.tf_about_text ul li .top .img {
    width: 120px;
    height: 120px;
    margin-right: 30px;
    position: relative;
}

.w-100 {
    width: 100% !important;
}

.tf_about_text ul li .top h3 {
    font-size: 30px;
    font-weight: 600;
    margin-top: 20px;
}

.tf_about_text ul li p {
    font-weight: 500;
    line-height: 28px;
    margin-top: 15px;
    font-size: 16px;
}


.tf_about_img {
    width: 570px;
    height: 640px;
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: 0;
    margin-top: 90px;
    margin-right: 20px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}




.tf_about_img_bg_element::before {
    position: absolute;
    content: "";
    width: 280px;
    height: 280px;
    top: -40px;
    right: -50px;
    z-index: -1;

    background:
        radial-gradient(circle, rgba(69,255,79,0.9) 2px, transparent 2px);

    background-size: 18px 18px;

    animation: floatDots 8s ease-in-out infinite;
}

@keyframes floatDots {
    0% {
        transform: translateY(0) translateX(0);
    }

    25% {
        transform: translateY(-10px) translateX(5px);
    }

    50% {
        transform: translateY(-20px) translateX(0);
    }

    75% {
        transform: translateY(-10px) translateX(-5px);
    }

    100% {
        transform: translateY(0) translateX(0);
    }
}




.about-img {
    height: auto;
    max-width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.tf_about_img img {
    border-radius: 6px !important;
}


.tf_about_img img {
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        #030509 40%
    );

    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        #030509 40%
    );
}



.tf_about_img .tf_about_img_text {
    background: green;
    left: auto;
    right: auto;
    transform: translate(0);
    margin-left: auto;
    float: right;
    border-radius: 4px;
    padding: 30px;
    top: -90px;
    opacity: .4;
}

.tf_about_img_text {
    background: #232323;
    padding: 15px 30px;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: relative;
}

.tf_about_img .tf_about_img_text i {
    background: #fff;
    border-radius: 4px;
    color: green;
}

.tf_about_img_text i {
    width: 65px;
    height: 65px;
    text-align: center;
    line-height: 65px;
    background: #fff1;
    border-radius: 50%;
    font-size: 40px;
    margin-right: 10px;
}

.fa,
.fas {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.fa,
.fab,
.fad,
.fal,
.far,
.fas {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.fa-award:before {
    content: "\f559";
}

.tf_about_img .tf_about_img_text h4 {
    color: #02050a;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
}

.tf_about_img_text h4 {
    font-size: 16px;
    font-weight: 600;
}

.tf_about_img .tf_about_img_text h4 span {
    color: #02050a;
    font-size: 20px;
    font-weight: 600;
}

.tf_about_img_text h4 span {
    display: block;
    margin-top: 5px;
}

@media screen and (max-width: 1700px) {
    #about .col-xl-6 {
        overflow: hidden;
        padding-right: 30px;
    }
}

@media screen and (max-width: 1399.99px) {
    .tf__section_heading h2 span {
        font-size: 38px;
        line-height: 60px;
    }
}


@media screen and (max-width: 1399.99px) {
    .tf_section_heading h2 span {
        font-size: 38px;
        line-height: 60px;
    }
}

@media (min-width: 1200px) {

    .h2,
    h2 {
        font-size: 2rem;
    }
}

@media (min-width: 1200px) {
    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}

@media (max-width: 575.99px) {
    .tf_about_img::before {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 575.99px) {
    .tf_about_img {
        width: auto !important;
        height: auto !important;
        margin-top: 80px !important;
        margin-right: 20px !important;
        margin-bottom: 0;
    }

    #about .col-xl-6 {
        overflow: hidden;
    }

    #about {
        padding: 0;
        margin: 0;
    }

    .tf_about_img .tf_about_img_text {
        padding: 15px;
        left: 0 !important;
    }

    .tf_about_img .tf_about_img_text h4 {
        font-size: 30px;
        font-weight: bold;
    }

    .tf_about_img .tf_about_img_text h4 span {
        font-size: 16px;
        font-weight: bold;
    }
}

@media (min-width: 576px) and (max-width: 767.99px) {
    .tf_about_img {
        width: 400px;
        height: auto;
        margin-top: 80px;
        margin-right: 20px;
        margin-bottom: 0;
    }

    .tf_about_img::before {
        width: 150px;
        height: 150px;
    }

    #about .col-xl-6 {
        overflow: visible;
    }
}

@media (min-width: 768px) and (max-width: 991.99px) {
    .tf_about_img {
        width: 400px;
        height: auto;
        margin-top: 80px;
        margin-right: 20px;
        margin-bottom: 0;
    }
}

@media (min-width: 992px) {
    #about .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}

@keyframes aboutZoom {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* <!-- ======= ABOUT -END- ======= --> */
/* <!-- ======= ABOUT -END- ======= --> */
/* <!-- ======= ABOUT -END- ======= --> */
/* <!-- ======= ABOUT -END- ======= --> */
/* <!-- ======= ABOUT -END- ======= --> */
/* <!-- ======= ABOUT -END- ======= --> */






/* <!-- ======= SERVICES START ======= --> */
/* <!-- ======= SERVICES START ======= --> */
/* <!-- ======= SERVICES START ======= --> */
/* <!-- ======= SERVICES START ======= --> */
/* <!-- ======= SERVICES START ======= --> */
/* <!-- ======= SERVICES START ======= --> */
section#service {
    padding: 0 20px;
}

.tf_section_heading h5 {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 15px;
    color: green;
    display: block;
    text-align: center;
    position: relative;
}

.tf_section_heading h2 span {
    text-align: center;
    font-size: 50px;
    font-weight: 600;
    line-height: 1.3;
}

.tf_single_service {
    position: relative;
    translate: none;
    rotate: none;
    scale: none;
    transform: translate(0px, 0px);
    opacity: 1;
}

.tf_single_service .text {
    position: relative;
}

.tf_single_service .text::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(0, 53, 18, 0.12),
            rgba(61, 255, 126, 0));
    opacity: 0;
    transition: .4s;
}

.tf_single_service .text:hover {
    transform: translateY(-12px);
    border-color: #32d74b38;
    box-shadow: inset 0px 0px 20px rgba(50, 215, 75, 0.26)
}

.tf_single_service .text:hover::before {
    opacity: 1;
}

.tf_single_service .text h3 {
    transition: .35s;
}

.tf_single_service .text:hover h3 {
    color: #32d74b;
}

.tf_single_service .text::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 3px;
    background: #32d74b;
    transition: .4s;
}

.tf_single_service .text:hover::after {
    width: 100%;
    left: 0;
}

.tf_single_service .text {
    margin-top: 165px;
    background: #09101a;
    padding: 40px;
    border-radius: 5px;
    position: relative;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
}

.tf_single_service .text span {
    display: block;
    width: 100px;
    height: 100px;
    background: green;
    padding: 12px;
    border-radius: 5px;
    position: absolute;
    top: -50px;
    left: 40px;
}

p,
span {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
    margin: 0;
    color: #a2a2a2;
}

.tf_single_service .text h3 {
    font-size: 20px;
    font-weight: 500;
    margin-top: 40px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tf_single_service a {
    border: 1px solid green;
    padding: 15px 30px;
    border-radius: 5px;
    transition: all linear 0.3s;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: -1;
}

.tf_single_service.active .text {
    margin-top: 65px;
}

.tf_single_service.active a {
    bottom: -100px;
    z-index: 1;
}

.tf_single_service a:hover {
    color: #02050a;
    background-color: green;
}


@media only screen and (max-width: 767px) {
    .xs_pt_80 {
        padding-top: 80px !important;
    }

    .tf_single_service .text {
        margin-top: 65px;
    }

    .tf_single_service {
        text-align: right;
        margin-bottom: 20px;
    }

    .tf_single_service .text {
        text-align: left;
        /* margin-bottom: 35px; */
    }

    .tf_single_service a {
        bottom: -100px;
        z-index: 1;
        position: static;
        transform: none;
        display: none;
    }
}

@media (max-width: 575.99px) {
    .tf_section_heading h2 span {
        font-size: 36px;
        line-height: 45px;
    }
}

/* <!-- ======= SERVICES -END- ======= --> */
/* <!-- ======= SERVICES -END- ======= --> */
/* <!-- ======= SERVICES -END- ======= --> */
/* <!-- ======= SERVICES -END- ======= --> */
/* <!-- ======= SERVICES -END- ======= --> */






/* <!-- ======= SKILLS START ======= --> */
/* <!-- ======= SKILLS START ======= --> */
/* <!-- ======= SKILLS START ======= --> */
/* <!-- ======= SKILLS START ======= --> */
/* <!-- ======= SKILLS START ======= --> */
.tf__skills_2 {
    background: #000914;
}

.pb_120 {
    padding-bottom: 120px !important;
}

.pt_115 {
    padding-top: 115px !important;
}

.mt_165 {
    margin-top: 165px !important;
}

.mb_30 {
    margin-bottom: 30px !important;
}

.tf__section_heading h5 {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 15px;
    color: GREEN;
}

.tf__section_heading h2 span {
    text-align: center;
    font-size: 50px;
    font-weight: 600;
    line-height: 1.3;
}

.m-auto {
    margin: auto !important;
}

.tf__skills_2 .nav {
    justify-content: center;
}

.mb_30 {
    margin-bottom: 30px !important;
}

.nav-pills {
    --bs-nav-pills-border-radius: 0.375rem;
    --bs-nav-pills-link-active-color: #fff;
    --bs-nav-pills-link-active-bg: #0d6efd;
}

.nav {
    --bs-nav-link-padding-x: 1rem;
    --bs-nav-link-padding-y: 0.5rem;
    --bs-nav-link-font-weight: ;
    --bs-nav-link-color: var(--bs-link-color);
    --bs-nav-link-hover-color: var(--bs-link-hover-color);
    --bs-nav-link-disabled-color: var(--bs-secondary-color);
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    list-style: none;
}

ul,
ol,
li {
    list-style: none;
    margin: 0;
    padding: 0;
    color: #ffffff;
}

.tf__skills_2 .nav .nav-item button:hover,
.tf__skills_2 .nav .nav-item button.active {
    background: green;
    color: #02050a;
}

.tf__skills_2 .nav .nav-item button {
    text-transform: capitalize;
    color: #ffffff;
    margin: 5px 10px;
    font-weight: 500;
    border-radius: 5px;
    background: #141c27;
    font-size: 16px;
    padding: 18px 40px;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
}

.tf__skills_2 .nav .nav-item button i {
    margin-left: 10px;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: var(--bs-nav-pills-link-active-color);
    background-color: var(--bs-nav-pills-link-active-bg);
}

.col-12 {
    flex: 0 0 auto;
    width: 100%;
}

.tab-content>.active {
    display: block;
}

.fade {
    transition: opacity .15s linear;
}

.tf__single_skill_2 {
    border: 1px solid #e3e3e310;
    border-radius: 5px;
    padding: 40px 40px 40px 70px;
    margin-top: 25px;
}

.tf__single_skill_2 {
    translate: none;
    rotate: none;
    scale: none;
    transform: translate(0px, 30px);
    opacity: 1;
}

.tf__single_skill_2 h3 {
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid green;
    display: inline-block;
    padding-right: 30px;
    padding-bottom: 12px;
    position: relative;
    margin-bottom: 20px;
}

.tf__single_skill_2 h3::after {
    position: absolute;
    content: "\f101";
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    font-size: 14px;
    color: green;
    top: 2px;
    left: -30px;
}

.tf__single_skill_2 h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.tf__single_skill_2 h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 25px;
}

.tf__single_skill_2 p {
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 25px;
}

.tf__single_skill_2 .tf__team_skills_bar_single {
    margin: 0;
    background: none;
}

.tf__single_skill_2 .tf__team_skills_bar_single p {
    padding: 0;
    margin-bottom: 20px;
}

.tf__single_skill_2 p {
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 25px;
}

.tf__team_skills_bar_single p {
    padding-left: 40px;
    padding-top: 15px;
    padding-bottom: 15px;
    color: #ffffff;
}

.tf__single_skill_2 .tf__team_skills_bar_single .barfiller {
    background: #141c27;
}

.barfiller {
    width: 100%;
    height: 6px;
    background: 0 0;
    border: none;
}

.barfiller,
.barfiller .fill,
.slick-list,
.slick-slider,
.slick-track {
    position: relative;
}

.barfiller .tipWrap,
.mfp-align-top .mfp-container:before,
.mfp-loading.mfp-figure,
.mfp-s-error .mfp-content,
.mfp-s-ready .mfp-preloader,
.slick-arrow.slick-hidden,
.slick-slide.slick-loading img {
    display: none;
}

.tf__single_skill_2 .barfiller .tip {
    margin-top: -43px;
    font-size: 13px;
}

.barfiller .tip {
    margin-top: -33px;
    position: absolute;
    z-index: 2;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
}

.barfiller .fill {
    width: 80%;
    background: green;
    transition: opacity .15s linear;
}

.barfiller .fill {
    display: block;
    width: 0;
    height: 100%;
    background: green;
    z-index: 1;
}

.barfiller .fill {
    display: block;
    width: 0;
    height: 100%;
    background: green;
    z-index: 1;
    transition: width 5s ease-in-out;
}


.barfiller .fill {
    display: block;
    width: 0;
    height: 100%;
    background: green;
    z-index: 1;
    transition: width 1.5s ease-in-out;
    position: relative;
}

.barfiller .tip {
    position: absolute;
    right: 0;
    top: -25px;
    font-size: 14px;
    color: #fff;
    font-weight: bold;
}


.tab-content>.active {
    display: block;
}

.fade {
    transition: opacity .15s linear;
}


section#skills {
    padding: 0 20px;
}

@media (min-width: 992px) and (max-width: 1199.99px) {
    /* .tf__section_heading h2 span {
        font-size: 38px;
        line-height: 60px;
    } */
}

@media (min-width: 992px) {
    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}

@media (min-width: 1200px) {
    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}

@media (min-width: 1200px) {

    .h3,
    h3 {
        font-size: 1.75rem;
    }

    .h2,
    h2 {
        font-size: 2rem;
    }
}

@media (min-width: 1400px) {
    .col-xxl-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
}

@media (min-width: 1200px) {
    .col-xl-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }
}

@media screen and (max-width: 1399.99px) {
    .tf__section_heading h2 span {
        font-size: 38px;
        line-height: 60px;
    }
}

@media (min-width: 1200px) {
    .col-xl-9 {
        flex: 0 0 auto;
        width: 75%;
    }
}

@media (min-width: 576px) and (max-width: 767.99px) {
    /* .tf__section_heading h2 span {
        font-size: 36px;
        line-height: 45px;
    } */
}

@media (min-width: 576px) and (max-width: 767.99px) {
    .tf__skills_2 .nav .nav-item button {
        padding: 10px 20px;
        font-size: 13px;
        margin: 5px 5px;
    }

    .tf__single_skill_2 {
        padding: 20px 20px 20px 50px;
    }
}

@media (max-width: 575.99px) {
    .tf__section_heading h2 span {
        font-size: 36px;
        line-height: 45px;
    }

    .tf__single_skill_2 {
        padding: 20px 20px 20px 50px;
    }
}

@media (max-width: 575.99px) {
    .tf__skills_2 .nav .nav-item button {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* <!-- ======= SKILLS -END- ======= --> */
/* <!-- ======= SKILLS -END- ======= --> */
/* <!-- ======= SKILLS -END- ======= --> */
/* <!-- ======= SKILLS -END- ======= --> */
/* <!-- ======= SKILLS -END- ======= --> */






/* <!-- ======= PORTFOLIO START ======= --> */
/* <!-- ======= PORTFOLIO START ======= --> */
/* <!-- ======= PORTFOLIO START ======= --> */
/* <!-- ======= PORTFOLIO START ======= --> */
/* <!-- ======= PORTFOLIO START ======= --> */
section#portfolio {
    padding: 0 20px;
    margin-bottom: 120px;
}

section#blog,
section#contact {
    padding: 0 20px;
}

.tf__portfolio_2 .tf__portfolio_item {
    height: auto;
}

.tf__portfolio_item {
    height: 550px;
    margin-top: 25px;
    overflow: hidden;
    position: relative;
    display: block;
    width: 100%;
}

.tf__portfolio_2 .tf__portfolio_item img {
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.w-100 {
    width: 100% !important;
}

.mt_120 {
    margin-top: 120px !important;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

#about h5,
#about h2,
#portfolio h5,
#portfolio h2 {
    text-align: left !important;
}

img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.tf__portfolio_item .text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: rgb(2, 5, 10);
    background: linear-gradient(0deg, rgba(2, 5, 10, 1) 0%, rgba(2, 5, 10, 0.5802696078431373) 61%, rgba(2, 5, 10, 0) 100%);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -webkit-transform: scaleY(0);
}

.tf__portfolio_item:hover .text {
    transform: scale(1);
    -webkit-transform: scale(1);
}

.tf__portfolio_item .text h4 {
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.tf__portfolio_item .text p {
    position: relative;
    text-transform: capitalize;
    padding-left: 60px;
}

.tf__portfolio_item .text p::after {
    position: absolute;
    content: "";
    background: green;
    width: 50px;
    height: 1px;
    top: 12px;
    left: 0;
}

.tf__portfolio_2 .tf__portfolio_item {
    height: auto;
}

.tf__portfolio_item {
    height: 550px;
    margin-top: 25px;
    overflow: hidden;
    position: relative;
    display: block;
    width: 100%;
}

.tf__portfolio_2 .tf__portfolio_item img {
    border-radius: 6px;
    -webkit-border-radius: 6px;
}

.mfp-hide {
    display: none !important;
}

img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.des {
    padding: 30px 40px;
}

.des .category {
    text-transform: uppercase;
    color: green;
    letter-spacing: 1px;
    margin: 5px 0;
    display: block;
    font-size: 14px;
}

.des .popup_title {
    margin-bottom: 20px;
}

.des .details_quot_text {
    margin: 20px 0 !important;
    padding: 20px 30px;
}

.details_quot_text {
    background: var(--bgColor);
    padding: 50px;
    margin-top: 57px;
    margin-bottom: 35px;
    position: relative;
}

.details_quot_text p {
    margin: 0;
}

.details_quot_text h4 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 25px;
}

@media screen and (max-width: 678px) {
    .tf__portfolio_item .text {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}

/* <!-- ======= PORTFOLIO -END- ======= --> */
/* <!-- ======= PORTFOLIO -END- ======= --> */
/* <!-- ======= PORTFOLIO -END- ======= --> */
/* <!-- ======= PORTFOLIO -END- ======= --> */
/* <!-- ======= PORTFOLIO -END- ======= --> */
/* <!-- ======= PORTFOLIO -END- ======= --> */







/* <!-- ======= BLOG START ======= --> */
/* <!-- ======= BLOG START ======= --> */
/* <!-- ======= BLOG START ======= --> */
/* <!-- ======= BLOG START ======= --> */
/* <!-- ======= BLOG START ======= --> */
/* <!-- ======= BLOG START ======= --> */

.tf__blog_2 {
    background: #000914;
}

.pb_120 {
    padding-bottom: 120px !important;
}

.mb_30 {
    margin-bottom: 30px !important;
}

.pt_120 {
    padding-top: 120px !important;
}

.m-auto {
    margin: auto !important;
}

.tf__slingle_blog_2 {
    margin-top: 25px;
}

.tf__blog_img_2 {
    height: 350px;
    position: relative;
    width: 100%;
}

.tf__blog_img_2 img {
    border-radius: 5px;
}

.w-100 {
    width: 100% !important;
}

.tf__blog_img_2 span {
    border-radius: 5px;
    background: green;
    display: inline-block;
    padding: 10px 20px;
    color: #09101a;
    font-weight: 500;
    position: absolute;
    top: 20px;
    right: 20px;
    text-transform: uppercase;
    font-size: 14px;
    box-shadow: 0 16px 32px 0 rgba(0, 0, 0, 0.04);
    letter-spacing: 0.3px;
}

.tf__blog_text_2 ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin: 15px 0;
}

.tf__blog_text_2 ul li {
    font-size: 14px;
    font-weight: 400;
}

.tf__blog_text_2 ul li i {
    color: green;
    margin-right: 5px;
}

/* <!-- ======= BLOG -END- ======= --> */
/* <!-- ======= BLOG -END- ======= --> */
/* <!-- ======= BLOG -END- ======= --> */
/* <!-- ======= BLOG -END- ======= --> */
/* <!-- ======= BLOG -END- ======= --> */






/* <!-- ======= CONTACT START ======= --> */
/* <!-- ======= CONTACT START ======= --> */
/* <!-- ======= CONTACT START ======= --> */
/* <!-- ======= CONTACT START ======= --> */
/* <!-- ======= CONTACT START ======= --> */
.pt_95 {
    padding-top: 95px !important;
}

.tf__contact_2_text {
    padding: 60px;
    background: #09101a;
    margin-top: 25px;
    text-align: center;
}

.tf__contact_2_text span {
    display: block;
    width: 70px;
    height: 70px;
    margin: 0 auto;
}

.w-100 {
    width: 100% !important;
}

.tf__contact_2_text h3 {
    font-size: 20px;
    margin: 30px 0 15px;
}

.tf__contact_2_text p {
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 23px;
}

.tf__contact_2_text a {
    font-size: 16px;
    font-weight: 500;
    display: block;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
}

.contact_form_2 {
    text-align: center;
    margin-top: 40px;
}

.contact_form_2 form input,
.contact_form_2 form textarea {
    background: none;
    border: 1px solid #fff1;
    border-radius: 5px;
    margin-top: 20px;
    padding: 17px 20px;
    color: #ffffff;
}

input,
textarea {
    width: 100%;
    padding: 12px 20px;
    outline: none;
    resize: none;
    border: none;
    border-radius: 0;
    font-size: 16px;
    font-weight: 300;
}

::placeholder {
    color: #ffffff;
}

button,
input,
optgroup,
select,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
    cursor: pointer;
}

.contact_form_2 form button {
    border-radius: 5px;
    background: green;
    color: #02050a;
    padding: 18px 67px;
    margin-top: 15px;
    font-size: 16px;
    font-weight: 500;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

[type=button],
[type=reset],
[type=submit],
button {
    -webkit-appearance: button;
}

button {
    border: none;
}

button,
select {
    text-transform: none;
}

/* <!-- ======= CONTACT -END- ======= --> */
/* <!-- ======= CONTACT -END- ======= --> */
/* <!-- ======= CONTACT -END- ======= --> */
/* <!-- ======= CONTACT -END- ======= --> */
/* <!-- ======= CONTACT -END- ======= --> */







/* <!-- ======= FOOTER START ======= --> */
/* <!-- ======= FOOTER START ======= --> */
/* <!-- ======= FOOTER START ======= --> */
/* <!-- ======= FOOTER START ======= --> */
/* <!-- ======= FOOTER START ======= --> */
.footer_2_copyright_area {
    background-color: #09101a;
    background-color: #151c25;
    background-color: #000914;
}

.footer_2_copyright_area .tf__footer_copyright {
    margin-top: 0px;
}

.tf__footer_copyright {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 75px;
    /* border-top: 1px solid rgba(255, 255, 255, 0.067); */
    padding: 35px 0px;
    text-align: center;
}

.tf__footer_copyright p {
    opacity: 0.5;
    font-size: 14px;
}

/* <!-- ======= FOOTER -END- ======= --> */
/* <!-- ======= FOOTER -END- ======= --> */
/* <!-- ======= FOOTER -END- ======= --> */
/* <!-- ======= FOOTER -END- ======= --> */
/* <!-- ======= FOOTER -END- ======= --> */







/* <!-- ======= PROGRESS BUTTON START ======= --> */
/* <!-- ======= PROGRESS BUTTON START ======= --> */
/* <!-- ======= PROGRESS BUTTON START ======= --> */
/* <!-- ======= PROGRESS BUTTON START ======= --> */
/* <!-- ======= PROGRESS BUTTON START ======= --> */
#blog .tf_section_heading,
#contact .tf_section_heading,
#skills .tf_section_heading,
#service .tf_section_heading {
    text-align: center;
}

.content {
    width: 500px;
    padding: 100px 0;
    margin: 0 auto;
    height: 100%;
    font-size: 14px;
    line-height: 26px;
    text-align: justify;
}

.circle-container {
    background: transparent;
    position: fixed;
    right: 50px;
    bottom: 50px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;

    &.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    &::after {
        position: absolute;
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        content: '\f106';
        text-align: center;
        line-height: 46px;
        font-size: 24px;
        color: green;
        left: 0;
        top: 0;
        height: 46px;
        width: 46px;
        cursor: pointer;
        display: block;
        z-index: 1;
        -webkit-transition: all 200ms linear;
        transition: all 200ms linear;
    }

    &:hover {
        &::after {
            position: absolute;
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            content: '\f106';
            color: green;
            -webkit-transition: all 200ms linear;
            transition: all 200ms linear;
        }
    }

    svg {
        path {
            fill: none;
        }

        &.circle-progress {
            path {
                stroke: green;
                stroke-width: 4;
                box-sizing: border-box;
                -webkit-transition: all 200ms linear;
                transition: all 200ms linear;
            }
        }
    }
}

@media screen and (max-width: 768px) {
    .circle-container {
        right: 25px;
        bottom: 50px;
    }
}

/* <!-- ======= PROGRESS BUTTON -END- ======= --> */
/* <!-- ======= PROGRESS BUTTON -END- ======= --> */
/* <!-- ======= PROGRESS BUTTON -END- ======= --> */
/* <!-- ======= PROGRESS BUTTON -END- ======= --> */
/* <!-- ======= PROGRESS BUTTON -END- ======= --> */






/* <!-- ======= MEGIC CURSOR START ======= --> */
/* <!-- ======= MEGIC CURSOR START ======= --> */
/* <!-- ======= MEGIC CURSOR START ======= --> */
/* <!-- ======= MEGIC CURSOR START ======= --> */
/* <!-- ======= MEGIC CURSOR START ======= --> */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 2.5rem;
    height: 2.5rem;
    z-index: 9999;
    pointer-events: none;
}

.cursor div {
    position: absolute;
    display: grid;
    place-items: center;
}

.cursor div div {
    border: 1px solid #fff;
    border-radius: 50%;
    animation: pulse 2.5s linear infinite;
}

.cursor div:nth-child(1),
.cursor div:nth-child(2) {
    width: 100%;
    height: 100%;
}

.cursor div:nth-child(1) {
    transition: transform 0.2s ease-out;
}

.cursor div:nth-child(2) {
    transition: transform 0.1s ease-out;
}

.cursor div:nth-child(2) div {
    background: #fff;
    border-radius: 50%;
    width: 4px;
    height: 4px;
}

.cursor-zoom .ring>div {
    transform: scale(1.8);
    border: none;
    background-color: #ffffff2f;
}

.cursor .ring>div {
    transition: transform 0.2s ease;
}

@media screen and (max-width: 768px) {
    .cursor {
        display: none;
    }
}

@media (max-width: 575.99px) {

    section#contact,
    section#banner,
    section#about,
    section#milestone,
    section#service,
    section#skills,
    section#blog,
    section#portfolio {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

/* <!-- X====== MEGIC CURSOR -END- ======X --> */
/* <!-- X====== MEGIC CURSOR -END- ======X --> */
/* <!-- X====== MEGIC CURSOR -END- ======X --> */
/* <!-- X====== MEGIC CURSOR -END- ======X --> */
/* <!-- X====== MEGIC CURSOR -END- ======X --> */




.letter-animate {
    display: block;
    overflow: hidden;
    visibility: hidden;
    /* Initially hide the entire heading */
}

.word {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
}

.letter-animate .letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: riseLetter 0.01s forwards;
    animation-timing-function: ease-out;
}

/* Basic rise-up for h5 */
.rise-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease-out;
}

.rise-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.letter-animate.visible {
    visibility: visible;
    /* Show only when animation is triggered */
}

/* Letter-by-letter animation */
.letter-animate span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: riseLetter 0.01s forwards;
    color: inherit;
    font-size: inherit;
    animation-timing-function: ease-out;
    opacity: 1;
}

@keyframes riseLetter {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}






.milestone-animation-box,
.about-animation-box,
.skills-animation-box,
.portfolio-animation-box {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 2s ease, transform 4s ease;
}


.contact-animation-box,
.blog-animation-box,
.service-animation-box {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 2s ease, transform 4s ease;
}

.visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
}
