@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@600;700&family=Rubik:wght@400;500&display=swap');

/*----------------------------------------------------
/*global area*/
/*----------------------------------------------------*/
:root {
    --heading-font: 'Rajdhani', sans-serif;
    --body-font: 'Rubik', sans-serif;
    --body-color: #0E0E0E;
    --body-color2: #333F4D;
    --body-color3: #f99d1b;
    --white-color: #ffffff;
    --light-stroke: #ECEFF2;
    --footer-text-color: #616670;
    --transition-base: all 0.3s;
    --main-color: #f99d1b;
    --Secendary: #BCBCBC;
    --bg-color: #0E0E0E;
    --dark-color: #181818;
    --White-color: #fff;
    --border-color: #616670;
    --nb-body-font: 'Rubik', sans-serif;
    --nb-h-font: 'Rajdhani', sans-serif;
    --bs-gutters-x: 3.5rem;
}

.g-30,
.gx-30 {
    --bs-gutter-x: 30px;
}

.g-30,
.gy-30 {
    --bs-gutter-y: 30px;
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: inherit;
    }
}

@keyframes image_left_right {
    0% {
        left: 10%;
    }

    50% {
        left: 20%;
    }

    100% {
        left: 10%;
    }
}

@keyframes scale_fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 60px, 0);
        transform: translate3d(0, 60px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes rotateme {
    0% {
        transform: rotate(0deg);
        opacity: 1;
    }

    50% {
        transform: rotate(-180deg);
    }

    100% {
        transform: rotate(-360deg);
        opacity: 1;
    }
}

/* Animation Part Start */
@-webkit-keyframes scale_fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 60px, 0) rotate(0deg);
        transform: translate3d(0, 60px, 0) rotate(00deg);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0) rotate(0deg);
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
}

@keyframes scale_fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 60px, 0) rotate(-10deg);
        transform: translate3d(0, 60px, 0) rotate(0deg);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0) rotate(0deg);
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
}

@keyframes waves {
    0% {
        -webkit-transform: scale(0.2, 0.2);
        transform: scale(0.2, 0.2);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
    50% {
        opacity: 0.9;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    }
    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}

@keyframes spin {
    100% {
        transform: rotateZ(360deg);
    }
}

@keyframes anim {
    0%, 100% {
        width: 100%;
        height: 100%;
    }
    50% {
        width: 50%;
        height: 50%;
    }
}

@keyframes anims2 {
    100% {
        width: 100%;

    }
}

@keyframes newanimation {
    0% {
        background-position: 0;
    }
    60% {
        background-position: 180px;
    }
    100% {
        background-position: 180px;
    }
}

@keyframes toRightFromLeft {
    49% {
        transform: translate(100%);
    }
    50% {
        opacity: 0;
        transform: translate(-100%);
    }
    51% {
        opacity: 1;
    }
}

@keyframes fadeeffect {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        -ms-transform: translateY(40px);
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes iconanimation {
    49% {
        transform: translateY(-100%);
    }
    50% {
        opacity: 0;
        transform: translateY(100%);
    }
    51% {
        opacity: 1;
    }
}

/* Animation Part End */
html.has-scroll-smooth {
    overflow: hidden;
}
/* PRELOADER */
.preloader {
    width: 100vw;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99;
    transition: all cubic-bezier(0.785, 0.135, 0.15, 0.86) 1s;
    overflow: hidden;
  }
  .preloader .inner {
    display: inline-block;
    position: relative;
    z-index: 1;
    animation-name: preloader-inner;
    animation-duration: 0.8s;
    transition: all ease 0.8s;
  }
  .preloader .inner figure {
    width: 200px;
    height: 200px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    margin-bottom: 0;
  }
  .preloader .inner figure img {
    height: 70px;
  }
  .preloader .inner small {
    width: 100%;
    display: block;
    color: #fff;
    font-family: var(--heading-font);
    font-size: 24px;
    text-align: center;
    margin-top: 15px;
  }
  .preloader .inner .progress-bar {
    background: none;
  }
  .preloader svg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    fill: var(--body-color);
  }
  .preloader svg path {
    animation-name: preloader-svg;
    -webkit-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -o-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -ms-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
    animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
    animation-duration: 0.7s;
    animation-play-state: paused;
    animation-fill-mode: forwards;
  }
/* PAGE LOADED */
.page-loaded .preloader {
    top: 100%;
  }
  
  .page-loaded .preloader .inner {
    transform: translateY(50px);
    opacity: 0;
  }
  
  .page-loaded .preloader svg path {
    animation-play-state: running;
  }
  
  .page-loaded .navbar {
    transform: translateY(0);
  }
  .nb__hero-section,
  .nbv2_hero{
    transform: scale(1.4);
    transition-duration: 0.7s;
    -webkit-transition-duration: 0.7s;
    transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
    transition-delay: 0.25s;
    opacity: 0;
  }
  .page-loaded .nb__hero-section ,
  .page-loaded .nbv2_hero{
    transform: scale(1);
    opacity: 1;
  }
  
  .page-loaded .page-header {
    transform: scale(1);
    opacity: 1;
  }
  
/* PAGE TRANSITION */
.page-transition {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: -100%;
    z-index: 99;
    transition: all cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.7s;
    overflow: hidden;
  }
  .page-transition.active {
    top: 0;
  }
  .page-transition.active svg path {
    animation-name: page-transition;
    -webkit-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -o-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -ms-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
    animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
    animation-duration: 1s;
    animation-fill-mode: forwards;
  }
  .page-transition svg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    fill: var(--body-color);
  }
.nb_common_img{
    width: 100%;
    display: block;
    margin: 0;
    position: relative;
    overflow: hidden;
}
.nb_common_img img {
    width: 100%;
    opacity: 0;
    transform: scale(1.2);
    transition-duration: 0.7s;
    -webkit-transition-duration: 0.7s;
    transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
}

.nb_common_img_alt{
    width: 100%;
    display: block;
    margin: 0;
    position: relative;
   
}
.nb_common_img_alt img {
   
    opacity: 0;
    transform: scale(1.2);
    transition-duration: 0.7s;
    -webkit-transition-duration: 0.7s;
    transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
}
.nb_common_img_alt.is-inview img {
    opacity: 1;
    transform: scale(1);
}
.nb_common_img.is-inview img {
    opacity: 1;
    transform: scale(1);
}
body {
    margin: 0;
    padding: 0;
    z-index: 1;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.875;
    overflow-x: hidden;
    color: var(--body-color);
    font-family: var(--body-font);
}
body.nba_demo_one{
    background: var(--body-color);
}
body .container {
    max-width: 1314px;
}

.body_wrap {
    overflow: hidden;
    position: relative;
}

.ul-li ul {
    margin: 0;
    padding: 0;
}

.ul-li ul li {
    list-style: none;
    display: inline-block;
}

li {
    list-style: none;
}

.ul-li-block ul {
    margin: 0;
    padding: 0;
}

.ul-li-block ul li {
    display: block;
    list-style: none;
}

[data-background] {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: 500ms all ease;
    transition: 500ms all ease;
}

a:hover,
a:focus {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
}

.form-control:focus,
button:visited,
button.active,
button:hover,
button:focus,
input:visited,
input.active,
input:hover,
input:focus,
textarea:hover,
textarea:focus,
a:hover,
a:focus,
a:visited,
a.active,
select,
select:hover,
select:focus,
select:visited {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-decoration: none;
    /*color: inherit;*/
}

.form-control {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.pera-content p {
    margin-bottom: 0;
}

p {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: var(--heading-font);
    font-weight: 700;
}

.after-content-none::after {
    content: none !important;
}

/*--
    - Margin & Padding
-----------------------------------------*/

/*-- Margin Top --*/
.nb_mt-5 {
    margin-top: 5px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-25 {
    margin-top: 25px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-35 {
    margin-top: 35px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-45 {
    margin-top: 45px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-55 {
    margin-top: 55px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-65 {
    margin-top: 65px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-75 {
    margin-top: 75px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-85 {
    margin-top: 85px;
}

.mt-90 {
    margin-top: 90px;
}

.mt-95 {
    margin-top: 95px;
}

.mt-100 {
    margin-top: 100px;
}

.mt-105 {
    margin-top: 105px;
}

.mt-110 {
    margin-top: 110px;
}

.mt-115 {
    margin-top: 115px;
}

.mt-120 {
    margin-top: 120px;
}

.mt-125 {
    margin-top: 125px;
}

.mt-130 {
    margin-top: 130px;
}

.mt-135 {
    margin-top: 135px;
}

.mt-140 {
    margin-top: 140px;
}

.mt-145 {
    margin-top: 145px;
}

.mt-150 {
    margin-top: 150px;
}

.mt-155 {
    margin-top: 155px;
}

.mt-160 {
    margin-top: 160px;
}

.mt-165 {
    margin-top: 165px;
}

.mt-170 {
    margin-top: 170px;
}

.mt-175 {
    margin-top: 175px;
}

.mt-180 {
    margin-top: 180px;
}

.mt-185 {
    margin-top: 185px;
}

.mt-190 {
    margin-top: 190px;
}

.mt-195 {
    margin-top: 195px;
}

.mt-200 {
    margin-top: 200px;
}

/*-- Margin Bottom --*/
.nb_mb-5 {
    margin-bottom: 5px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-35 {
    margin-bottom: 35px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-45 {
    margin-bottom: 45px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-55 {
    margin-bottom: 55px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-65 {
    margin-bottom: 65px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-75 {
    margin-bottom: 75px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-85 {
    margin-bottom: 85px;
}

.mb-90 {
    margin-bottom: 90px;
}

.mb-95 {
    margin-bottom: 95px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mb-105 {
    margin-bottom: 105px;
}

.mb-110 {
    margin-bottom: 110px;
}

.mb-115 {
    margin-bottom: 115px;
}

.mb-120 {
    margin-bottom: 120px;
}

.mb-125 {
    margin-bottom: 125px;
}

.mb-130 {
    margin-bottom: 130px;
}

.mb-135 {
    margin-bottom: 135px;
}

.mb-140 {
    margin-bottom: 140px;
}

.mb-145 {
    margin-bottom: 145px;
}

.mb-150 {
    margin-bottom: 150px;
}

.mb-155 {
    margin-bottom: 155px;
}

.mb-160 {
    margin-bottom: 160px;
}

.mb-165 {
    margin-bottom: 165px;
}

.mb-170 {
    margin-bottom: 170px;
}

.mb-175 {
    margin-bottom: 175px;
}

.mb-180 {
    margin-bottom: 180px;
}

.mb-185 {
    margin-bottom: 185px;
}

.mb-190 {
    margin-bottom: 190px;
}

.mb-195 {
    margin-bottom: 195px;
}

.mb-200 {
    margin-bottom: 200px;
}

/*-- Margin Left --*/
.ml-5 {
    margin-left: 5px;
}

.ml-10 {
    margin-left: 10px;
}

.ml-15 {
    margin-left: 15px;
}

.ml-20 {
    margin-left: 20px;
}

.ml-25 {
    margin-left: 25px;
}

.ml-30 {
    margin-left: 30px;
}

.ml-35 {
    margin-left: 35px;
}

.ml-40 {
    margin-left: 40px;
}

.ml-45 {
    margin-left: 45px;
}

.ml-50 {
    margin-left: 50px;
}

.ml-55 {
    margin-left: 55px;
}

.ml-60 {
    margin-left: 60px;
}

.ml-65 {
    margin-left: 65px;
}

.ml-70 {
    margin-left: 70px;
}

.ml-75 {
    margin-left: 75px;
}

.ml-80 {
    margin-left: 80px;
}

.ml-85 {
    margin-left: 85px;
}

.ml-90 {
    margin-left: 90px;
}

.ml-95 {
    margin-left: 95px;
}

.ml-100 {
    margin-left: 100px;
}

.ml-105 {
    margin-left: 105px;
}

.ml-110 {
    margin-left: 110px;
}

.ml-115 {
    margin-left: 115px;
}

.ml-120 {
    margin-left: 120px;
}

.ml-125 {
    margin-left: 125px;
}

.ml-130 {
    margin-left: 130px;
}

.ml-135 {
    margin-left: 135px;
}

.ml-140 {
    margin-left: 140px;
}

.ml-145 {
    margin-left: 145px;
}

.ml-150 {
    margin-left: 150px;
}

.ml-155 {
    margin-left: 155px;
}

.ml-160 {
    margin-left: 160px;
}

.ml-165 {
    margin-left: 165px;
}

.ml-170 {
    margin-left: 170px;
}

.ml-175 {
    margin-left: 175px;
}

.ml-180 {
    margin-left: 180px;
}

.ml-185 {
    margin-left: 185px;
}

.ml-190 {
    margin-left: 190px;
}

.ml-195 {
    margin-left: 195px;
}

.ml-200 {
    margin-left: 200px;
}

/*-- Margin Right --*/
.mr-5 {
    margin-right: 5px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-15 {
    margin-right: 15px;
}

.mr-20 {
    margin-right: 20px;
}

.mr-25 {
    margin-right: 25px;
}

.mr-30 {
    margin-right: 30px;
}

.mr-35 {
    margin-right: 35px;
}

.mr-40 {
    margin-right: 40px;
}

.mr-45 {
    margin-right: 45px;
}

.mr-50 {
    margin-right: 50px;
}

.mr-55 {
    margin-right: 55px;
}

.mr-60 {
    margin-right: 60px;
}

.mr-65 {
    margin-right: 65px;
}

.mr-70 {
    margin-right: 70px;
}

.mr-75 {
    margin-right: 75px;
}

.mr-80 {
    margin-right: 80px;
}

.mr-85 {
    margin-right: 85px;
}

.mr-90 {
    margin-right: 90px;
}

.mr-95 {
    margin-right: 95px;
}

.mr-100 {
    margin-right: 100px;
}

.mr-105 {
    margin-right: 105px;
}

.mr-110 {
    margin-right: 110px;
}

.mr-115 {
    margin-right: 115px;
}

.mr-120 {
    margin-right: 120px;
}

.mr-125 {
    margin-right: 125px;
}

.mr-130 {
    margin-right: 130px;
}

.mr-135 {
    margin-right: 135px;
}

.mr-140 {
    margin-right: 140px;
}

.mr-145 {
    margin-right: 145px;
}

.mr-150 {
    margin-right: 150px;
}

.mr-155 {
    margin-right: 155px;
}

.mr-160 {
    margin-right: 160px;
}

.mr-165 {
    margin-right: 165px;
}

.mr-170 {
    margin-right: 170px;
}

.mr-175 {
    margin-right: 175px;
}

.mr-180 {
    margin-right: 180px;
}

.mr-185 {
    margin-right: 185px;
}

.mr-190 {
    margin-right: 190px;
}

.mr-195 {
    margin-right: 195px;
}

.mr-200 {
    margin-right: 200px;
}

/*-- Padding Top --*/
.pt-5 {
    padding-top: 5px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-15 {
    padding-top: 15px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-25 {
    padding-top: 25px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-35 {
    padding-top: 35px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-45 {
    padding-top: 45px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-55 {
    padding-top: 55px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-65 {
    padding-top: 65px;
}

.pt-70 {
    padding-top: 70px;
}

.pt-75 {
    padding-top: 75px;
}

.pt-80 {
    padding-top: 80px;
}

.pt-85 {
    padding-top: 85px;
}

.pt-90 {
    padding-top: 90px;
}

.pt-95 {
    padding-top: 95px;
}

.pt-100 {
    padding-top: 100px;
}

.pt-105 {
    padding-top: 105px;
}

.pt-110 {
    padding-top: 110px;
}

.pt-115 {
    padding-top: 115px;
}

.pt-120 {
    padding-top: 120px;
}

.pt-125 {
    padding-top: 125px;
}

.pt-130 {
    padding-top: 130px;
}

.pt-135 {
    padding-top: 135px;
}

.pt-140 {
    padding-top: 140px;
}

.pt-145 {
    padding-top: 145px;
}

.pt-150 {
    padding-top: 150px;
}

.pt-155 {
    padding-top: 155px;
}

.pt-160 {
    padding-top: 160px;
}

.pt-165 {
    padding-top: 165px;
}

.pt-170 {
    padding-top: 170px;
}

.pt-175 {
    padding-top: 175px;
}

.pt-180 {
    padding-top: 180px;
}

.pt-185 {
    padding-top: 185px;
}

.pt-190 {
    padding-top: 190px;
}

.pt-195 {
    padding-top: 195px;
}

.pt-200 {
    padding-top: 200px;
}

/*-- Padding Bottom --*/
.pb-5 {
    padding-bottom: 5px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-15 {
    padding-bottom: 15px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-25 {
    padding-bottom: 25px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-35 {
    padding-bottom: 35px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-45 {
    padding-bottom: 45px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-55 {
    padding-bottom: 55px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-65 {
    padding-bottom: 65px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-75 {
    padding-bottom: 75px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-85 {
    padding-bottom: 85px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pb-95 {
    padding-bottom: 95px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-105 {
    padding-bottom: 105px;
}

.pb-110 {
    padding-bottom: 110px;
}

.pb-115 {
    padding-bottom: 115px;
}

.pb-120 {
    padding-bottom: 120px;
}

.pb-125 {
    padding-bottom: 125px;
}

.pb-130 {
    padding-bottom: 130px;
}

.pb-135 {
    padding-bottom: 135px;
}

.pb-140 {
    padding-bottom: 140px;
}

.pb-145 {
    padding-bottom: 145px;
}

.pb-150 {
    padding-bottom: 150px;
}

.pb-155 {
    padding-bottom: 155px;
}

.pb-160 {
    padding-bottom: 160px;
}

.pb-165 {
    padding-bottom: 165px;
}

.pb-170 {
    padding-bottom: 170px;
}

.pb-175 {
    padding-bottom: 175px;
}

.pb-180 {
    padding-bottom: 180px;
}

.pb-185 {
    padding-bottom: 185px;
}

.pb-190 {
    padding-bottom: 190px;
}

.pb-195 {
    padding-bottom: 195px;
}

.pb-200 {
    padding-bottom: 200px;
}

/*-- Padding Left --*/
.pl-5 {
    padding-left: 5px;
}

.pl-10 {
    padding-left: 10px;
}

.pl-15 {
    padding-left: 15px;
}

.pl-20 {
    padding-left: 20px;
}

.pl-25 {
    padding-left: 25px;
}

.pl-30 {
    padding-left: 30px;
}

.pl-35 {
    padding-left: 35px;
}

.pl-40 {
    padding-left: 40px;
}

.pl-45 {
    padding-left: 45px;
}

.pl-50 {
    padding-left: 50px;
}

.pl-55 {
    padding-left: 55px;
}

.pl-60 {
    padding-left: 60px;
}

.pl-65 {
    padding-left: 65px;
}

.pl-70 {
    padding-left: 70px;
}

.pl-75 {
    padding-left: 75px;
}

.pl-80 {
    padding-left: 80px;
}

.pl-85 {
    padding-left: 85px;
}

.pl-90 {
    padding-left: 90px;
}

.pl-95 {
    padding-left: 95px;
}

.pl-100 {
    padding-left: 100px;
}

.pl-105 {
    padding-left: 105px;
}

.pl-110 {
    padding-left: 110px;
}

.pl-115 {
    padding-left: 115px;
}

.pl-120 {
    padding-left: 120px;
}

.pl-125 {
    padding-left: 125px;
}

.pl-130 {
    padding-left: 130px;
}

.pl-135 {
    padding-left: 135px;
}

.pl-140 {
    padding-left: 140px;
}

.pl-145 {
    padding-left: 145px;
}

.pl-150 {
    padding-left: 150px;
}

.pl-155 {
    padding-left: 155px;
}

.pl-160 {
    padding-left: 160px;
}

.pl-165 {
    padding-left: 165px;
}

.pl-170 {
    padding-left: 170px;
}

.pl-175 {
    padding-left: 175px;
}

.pl-180 {
    padding-left: 180px;
}

.pl-185 {
    padding-left: 185px;
}

.pl-190 {
    padding-left: 190px;
}

.pl-195 {
    padding-left: 195px;
}

.pl-200 {
    padding-left: 200px;
}

/*-- Padding Right --*/
.pr-5 {
    padding-right: 5px;
}

.pr-10 {
    padding-right: 10px;
}

.pr-15 {
    padding-right: 15px;
}

.pr-20 {
    padding-right: 20px;
}

.pr-25 {
    padding-right: 25px;
}

.pr-30 {
    padding-right: 30px;
}

.pr-35 {
    padding-right: 35px;
}

.pr-40 {
    padding-right: 40px;
}

.pr-45 {
    padding-right: 45px;
}

.pr-50 {
    padding-right: 50px;
}

.pr-55 {
    padding-right: 55px;
}

.pr-60 {
    padding-right: 60px;
}

.pr-65 {
    padding-right: 65px;
}

.pr-70 {
    padding-right: 70px;
}

.pr-75 {
    padding-right: 75px;
}

.pr-80 {
    padding-right: 80px;
}

.pr-85 {
    padding-right: 85px;
}

.pr-90 {
    padding-right: 90px;
}

.pr-95 {
    padding-right: 95px;
}

.pr-100 {
    padding-right: 100px;
}

.pr-105 {
    padding-right: 105px;
}

.pr-110 {
    padding-right: 110px;
}

.pr-115 {
    padding-right: 115px;
}

.pr-120 {
    padding-right: 120px;
}

.pr-125 {
    padding-right: 125px;
}

.pr-130 {
    padding-right: 130px;
}

.pr-135 {
    padding-right: 135px;
}

.pr-140 {
    padding-right: 140px;
}

.pr-145 {
    padding-right: 145px;
}

.pr-150 {
    padding-right: 150px;
}

.pr-155 {
    padding-right: 155px;
}

.pr-160 {
    padding-right: 160px;
}

.pr-165 {
    padding-right: 165px;
}

.pr-170 {
    padding-right: 170px;
}

.pr-175 {
    padding-right: 175px;
}

.pr-180 {
    padding-right: 180px;
}

.pr-185 {
    padding-right: 185px;
}

.pr-190 {
    padding-right: 190px;
}

.pr-195 {
    padding-right: 195px;
}

.pr-200 {
    padding-right: 200px;
}
.pb-210 {
    padding-bottom: 210px;
}
.pb-220 {
    padding-bottom: 220px;
}
.pb-230 {
    padding-bottom: 230px;
}
/*----------------------------------------*/
/*  02. header
/*----------------------------------------*/
.nb__top-header {
    padding: 10px 0;
}

.nb__top-header {
    background-color: #EEFCFA;
}

.nb__info-items {
    position: relative;
}

.nb__info-items::after {
    content: "";
    background: var(--body-color3);
    width: 1px;
    height: 25px;
    position: absolute;
    right: -90px;
    top: 0;
}

.nb__top-social-icon i {
    padding-left: 25px;
}
.nb__top-social-icon i:hover {
    color: var(--body-color3);
}

/* main header start */
.nb__main-header {
    background: #DCF9F5;
    padding: 16px 0;
    border-bottom: 1px solid #BCBCBC;
}

.nb__navmenu {
    text-align: end;
}

.nb__navmenu > ul {
    display: inline-block;
}

.nb__navmenu > ul > li > a {
    position: relative;
}

.nb__navmenu > ul > li > a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--body-color3);
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
}

.nb__navmenu > ul > li > a:hover::before {
    width: calc(100% - 32px);
}

.nb__navmenu > ul li {
    display: inline-block;
    position: relative;
}

.nb__navmenu > ul li a {
    display: block;
    padding: 0 16px;
    font-weight: 500;
    color: var(--body-color);
    font-size: 16px;
}

.nb__navmenu > ul li.has-submenu {
    position: relative;
}

.nb__navmenu > ul li.has-submenu::after {
    content: "\ef7e";
    position: absolute;
    font-family: 'icomoon';
    right: 0;
    top: 5px;
    font-size: 13px;
    color: var(--body-color);
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
}

.nb__navmenu > ul li.has-submenu > .submenu-wrapper {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 220px;
    background-color: var(--white-color);
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
    text-align: left;
}

.nb__navmenu > ul li.has-submenu > .submenu-wrapper li {
    display: block;
}

.nb__navmenu > ul li.has-submenu > .submenu-wrapper li a {
    color: var(--body-color);
    padding: 10px 24px;
    position: relative;
}

.nb__navmenu > ul li.has-submenu > .submenu-wrapper li a::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background-color: var(--body-color3);
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
}

.nb__navmenu > ul li.has-submenu > .submenu-wrapper li:hover > a {
    padding-left: 36px;
    color: var(--body-color);
}

.nb__navmenu > ul li.has-submenu > .submenu-wrapper li:hover > a::before {
    width: 15px;
}

.nb__navmenu > ul li.has-submenu > .submenu-wrapper li.has-submenu::after {
    content: '\f105';
    top: 10px;
    right: 12px;
    color: var(--body-color);
}

.nb__navmenu > ul li.has-submenu > .submenu-wrapper li.has-submenu > .submenu-wrapper {
    content: '\f105';
    position: absolute;
    left: 100%;
    top: 10px;
}

.nb__navmenu > ul li.has-submenu > .submenu-wrapper li.has-submenu:hover > .submenu-wrapper {
    top: 0;
}

.nb__navmenu > ul li.has-submenu > .submenu-wrapper li.has-submenu:hover::after {
    color: var(--body-color);
}

.nb__navmenu > ul li.has-submenu:hover > .submenu-wrapper {
    top: 58px;
    opacity: 1;
    visibility: visible;
}

.nb__navmenu > ul li:hover > a {
    color: var(--body-color3);
}

.nb__navmenu > ul li:hover::after {
    color: var(--body-color3);
}

/* Search Form Start */
.nd__search {
    display: inline-flex;
    align-items: center;
    color: black;
    border-radius: 40px;
}

.nd__search :is(input, button) {
    color: inherit;
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
}

.search__input {
    width: 0;
    transition: width 0.5s;
}

.search__button {
    display: grid;
    place-items: center;
    width: 25px;
    height: 25px;
    cursor: pointer;
    transition: color 0.25s;
}

.search__button i {
    color: var(--body-color);
}

.search__button:hover {
    color: #e3e3e3;
}

.search__button-dkv i {
    color: #fff;
}

.nd__search:focus-within input {
    width: 180px;
    color: var(--White-color);
}

.nb__header-search-form::placeholder {
    font: inherit;
    color: black;
}

/* offcanvas button */

.header-toggle {
    min-width: 50px;
    min-height: 50px;
    border-radius: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-color: var(--body-color3);
    border: none;
}

.header-toggle span {
    width: 20px;
    height: 2px;
    background-color: var(--body-color);
    display: block;
    position: relative;
    z-index: 2;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
}

.offcanvas_border_one {
    width: 10px !important;
    margin-right: -5px;
}

.header-toggle::before {
    content: '';
    position: absolute;
    left: -10px;
    top: -145%;
    width: 150%;
    height: 143%;
    background-color: var(--body-color);
    z-index: -1;
    border-radius: 40%;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
}

.header-toggle:hover {
    color: var(--white-color);
}

.header-toggle:hover span {
    background-color: var(--white-color);
}

.header-toggle:hover::before {
    top: -6px;
}

/****************** offcanvus start **************/
.offcanvus-box {
    width: 425px;
    z-index: 100;
    top: 0;
    right: -430px;
    height: 100vh;
    overflow-y: scroll;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
}

.offcanvus-box.active {
    right: 0;
}

.offcanvus-box .offcanvus-close {
    position: absolute;
    left: 30px;
    top: 30px;
    color: var(--body-color);
}

.offcanvus-box .offcanvus-close:hover {
    color: var(--body-color);
}

.offcanvus-box .content-top {
    text-align: center;
    padding: 120px 60px 100px;
}

.offcanvus-box .content-top p {
    line-height: 26px;
}

.offcanvus-box .offcanvus-gallery {
    padding: 0 40px;
    gap: 10px;
}

.offcanvus-box .offcanvus-gallery a {
    width: calc(33% - 6px);
    overflow: hidden;
}

.offcanvus-box .offcanvus-gallery a img {
    max-width: 100%;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
}

.offcanvus-box .offcanvus-gallery a img:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.offcanvus-box .offcanvus-newsletter {
    padding: 100px 40px;
}

.offcanvus-box .offcanvus-newsletter h6 {
    font-size: 24px;
}

.offcanvus-box .offcanvus-newsletter input {
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
}

.offcanvus-box .offcanvus-newsletter input:focus {
    border-color: var(--body-color);
}

.offcanvus-box .offcanvus-bottom {
    border-top: 1px solid var(--border-color);
    padding: 20px 40px;
}

.offcanvus-box .user-links a {
    color: var(--body-color);
}

.theme-input {
    width: 100%;
    padding: 20px 25px;
    border-radius: 15px;
    border: 1px solid var(--light-stroke);
    outline: 0;
    color: var(--body-color);
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
    line-height: 24px;
}

.template-btn {
    padding: 19px 36px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    z-index: 1;
    border-radius: 12px;
    overflow: hidden;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
    border: 0;
    background: var(--body-color3);
    color: var(--body-color2);
}

/************************ mobile menu start ****************/
.mobile-menu {
    width: 300px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: -310px;
    background-color: var(--white-color);
    z-index: 60;
    padding: 60px 24px;
    overflow-y: scroll;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
}

.mobile-menu .close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: var(--body-color);
}

.mobile-menu .close:hover {
    color: var(--body-color);
}

.mobile-menu .logo {
    width: 100%;
    display: block;
    background-color: var(--body-color);
    text-align: center;
    padding: 30px;
    border-radius: 10px;
}

.mobile-menu .mobile-nav-menu {
    margin-top: 32px;
}

.mobile-menu .mobile-nav-menu li {
    display: block;
}

.mobile-menu .mobile-nav-menu li + li {
    border-top: 1px solid var(--light-stroke);
}

.mobile-menu .mobile-nav-menu li a {
    display: block;
    color: var(--body-color);
    padding: 10px 0;
    font-weight: 500;
}

.mobile-menu .mobile-nav-menu li a:hover {
    color: var(--body-color);
}

.mobile-menu .mobile-nav-menu li.has-submenu {
    position: relative;
}

.mobile-menu .mobile-nav-menu li.has-submenu > i {
    position: absolute;
    right: 0;
    top: 6px;
    padding: 8px;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
}

.mobile-menu .mobile-nav-menu li.has-submenu > i.icon-rotate {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.mobile-menu .mobile-nav-menu li.has-submenu > .submenu-wrapper {
    padding-left: 15px;
    display: none;
}

.mobile-menu .mobile-search input {
    width: 100%;
}

.mobile-menu .mobile-search button span {
    padding: 0;
    width: 50px;
    height: 50px;
}

.mobile-menu.active {
    left: 0;
}

/* Hero Section Start */
.nb__hero-section {
    background: #DCF9F5;
    padding: 50px 0 118px 0;
    background-repeat: no-repeat;
}

.nb__hero-section h1 {
    color: var(--body-color);
    font-size: 77px;
    font-weight: 700;
    line-height: 90px;
}

.nb__hero-info {
    color: var(--body-color2);
    width: 80%;
}

.nb__hero-button a {
    font-family: var(--heading-font);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.nb__hero-button a {
    display: inline-flex;
    align-items: center;
    position: relative;
    gap: 20px;
    min-width: 180px;
}

.nb__hero-btn-icon {
    position: relative;
    display: flex;
}

.nb__hero-button a:before {
    content: "";
    background: transparent;
    position: absolute;
    width: 44px;
    height: 44px;
    border: 1px solid var(--body-color3);
    border-radius: 50px;
    right: 7px;
    transition: var(--transition-base);
}

.nb__hero-banner-img {
    position: absolute;
    left: -44px;
    top: -60px;
}

.nb__rounded-circle {
    z-index: 5;
    position: absolute;
    background: #ffffff;
    border-radius: 50%;
    border: 1px solid var(--body-color);
    padding: 15px;
    top: -170px;
    right: 100px;
}

.video-icon-canvas {
    position: relative;
}

.video-icon-canvas .text-roted {
    animation-name: rotateme;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    /* animation-timing-function: linear; */
    /* -webkit-animation-name: rotateme; */
    /* -webkit-animation-duration: 15s; */
    /* -webkit-animation-iteration-count: infinite; */
    -webkit-animation-timing-function: linear;
    -moz-animation-name: rotateme;
    -moz-animation-duration: 15s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: rotateme;
    -ms-animation-duration: 15s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: rotateme;
    -o-animation-duration: 15s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
    border-radius: 50%;
}

.canvas-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--body-color3);
    width: 80px;
    height: 80px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.3s;
    font-size: 22px;
}

.video-icon-canvas textPath {
    fill: var(--body-color);
    font-size: 10px;
    letter-spacing: 5px;
    font-weight: 400;
    font-family: var(--body-font);
}

/* Project Style Start */
.nb__project-section {
    padding: 285px 0 150px 0;
}

.nb__section-subtitle h4 {
    color: var(--body-color3);
    font-family: var(--heading-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 27px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.nb__project-section .nb__section-title {
    max-width: 80%;
}

.nb__section-title h2 {
    color: var(--body-color);
    font-family: var(--heading-font);
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
    text-transform: capitalize;
}

.nb__project-content .case-images {
    position: absolute;
    left: 55%;
    top: -70px;
    display: none;
    border-radius: 10px;
    z-index: 10;
}

.nb__project-content .case-2 {
    top: 70px;
}

.nb__project-content .case-3 {
    top: 280px;
}

.nb__project-content .case-images.active {
    display: block;
    -webkit-animation: 1s scale_fadeInUp;
    animation: 1s scale_fadeInUp;
}

.nb__project-row {
    border-bottom: 2px solid #616670;
    overflow-y: hidden;
}

.nb__project-number {
    font-family: var(--heading-font);
    font-size: 68px;
    font-style: normal;
    font-weight: 700;
    line-height: 115%;
    -webkit-text-fill-color: #ffffff;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #000000;
}

.nb__project-title a {
    color: var(--body-color);
    font-family: var(--heading-font);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    text-transform: capitalize;
}

.nb__project-title a:hover {
    color: var(--body-color3);
}

.nb__project-details p {
    color: var(--body-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.nb__feature-img img {
    position: absolute;
    top: -75%;
    transition: var(--transition-base);
    opacity: 0;
    left: -50px;
}

.nb__project-row:hover {
    overflow-y: visible;
}

.nb__project-row:hover .nb__feature-img img {
    opacity: 1;
    left: 50px;
}


.nb__project-link-icon i {
    color: var(--body-color3);
    font-size: 28px;
    display: inline-block;
    transform: rotateZ(-36deg);
    transition: var(--transition-base);
}

.nb__project-row:hover .nb__project-link-icon i {
    transform: rotateZ(0deg);
}

/* brand logo start */
.nb__brand-logo-items .swiper-slide {
    text-align: center;
}

/* Service Start */
.nb__service-box {
    background: var(--white-color);
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
}

.nb__service-section .nb__service-column:nth-child(2) {
    padding-top: 50px;
}

.nb__service-section .nb__service-column:nth-child(3) {
    padding-top: 100px;
}

.nb__service-section .nb__section-title {
    max-width: 50%;
}

.nb__service-content {
    padding: 35px 35px 30px 35px;
}

.nb__service-title-with-icon {
    display: flex;
    gap: 28px;
    align-items: center;
    padding-bottom: 15px;
    justify-content: space-between;
}

.nb__service-title a {
    color: var(--body-color);
    font-family: var(--heading-font);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}

.nb__service-title a:hover {
    color: var(--body-color3);
}

.nb__service-icon {
    background: var(--body-color3);
    padding: 12px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    min-width: 90px;
    min-height: 90px;
}

.nb__service-icon:before {
    content: "";
    background: var(--body-color);
    width: 150px;
    height: 150px;
    position: absolute;
    left: -150px;
    top: 0;
    opacity: 0;
    transition: var(--transition-base);
    z-index: 0;
}

.nb__service-box:hover .nb__service-icon:before {
    left: 0;
    opacity: 1;
}

.nb__service-box:hover .nb__service-icon svg {
    position: relative;
    z-index: 1;
}

.nb__service-box:hover .nb__service-icon svg path {
    fill: #ffffff;
}

.nb__service-info p {
    color: var(--body-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.nb__service-img img {
    width: 100%;
}

/* Start counter Section  */
.nb__counter-box {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nb__counter-icon {
    padding: 15px;
    background: var(--body-color3);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.nb__counter-icon::before {
    content: "";
    background: var(--body-color);
    width: 150px;
    height: 150px;
    position: absolute;
    left: -150px;
    top: 0;
    opacity: 0;
    transition: var(--transition-base);
    z-index: 0;
}

.nb__counter-box:hover .nb__counter-icon::before {
    left: 0;
    opacity: 1;
}

.nb__counter-box:hover .nb__counter-icon svg {
    position: relative;
    z-index: 1;
}

.nb__counter-box:hover .nb__counter-icon svg path {
    fill: #ffffff;
}

.nb__counter-title h4 {
    color: var(--body-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.nb__counter-number {
    font-family: var(--heading-font);
    font-size: 68px;
    font-style: normal;
    font-weight: 700;
    line-height: 115%;
    display: flex;
    -webkit-text-fill-color: #ffffff;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #000000;
}

/* About section Start  */
.nb__about-img-with-promo-box {
    position: relative;
}

.nb_promo-box {
    width: 180px;
    height: 170px;
    background: var(--body-color3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 32px 32px 22px 32px;
    gap: 10px;
    position: absolute;
    top: 56px;
    right: 0;
}

.nb__promo-icon {
    background: var(--white-color);
    padding: 12px;
    border-radius: 50%;
    min-width: 50px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nb__promo-text h4 {
    color: var(--body-color);
    text-align: center;
    font-family: var(--heading-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28.8px;
}

.nb__img-box :nth-child(2) {
    position: absolute;
    bottom: -180px;
    left: 40%;
}

.nb__img-box :nth-child(3) {
    position: absolute;
    bottom: -80px;
    left: 86px;
    z-index: -1;
    -webkit-animation: linear infinite;
    -webkit-animation-name: image_left_right;
    -webkit-animation-duration: 5s;
}

.nb__video-icon {
    position: absolute;
    right: 28%;
}

.nb__video-icon i {
    color: var(--white-color);
    border: 2px solid var(--white-color);
    padding: 22px;
    border-radius: 50%;
    font-size: 22px;
}

.nb__about-section .nb__section-title h2 {
    width: 100%;
}

.nb__about-item {
    gap: 20px;
}

.nb__about-feature-number {
    color: var(--body-color);
    font-family: var(--heading-font);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    text-transform: capitalize;
    background: var(--body-color3);
    padding: 9px 16px;
    border-radius: 5px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nb__about-feature-details h4 {
    line-height: 30px;
}

.nb__about-feature-details {
    gap: 10.5px;
}

/* Team Style */
.nb__team-section {
    padding-bottom: 235px;
}

.nb__team-member {
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
}

.nb__team-section .nb__section-title {
    max-width: 50%;
}

.nb__team-slider {
    overflow: visible;
}

.nb__team-member img {
    width: 100%;
}

.nb__member-info h2 {
    color: var(--body-color);
    font-family: var(--heading-font);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}

.nb__member-info {
    padding: 30px 30px 30px;
    border-radius: 5px;
}

.nb__member-info {
    border-bottom: 2px solid transparent;
}

.nb__member-info:hover {
    border-bottom: 2px solid var(--main-color);
}

.nb__member-info p {
    color: var(--body-color);
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    margin-top: 5px;
    margin-bottom: 10px;
}

.nb__member-social-info {
    gap: 10px;
}

.nb__member-social-info a {
    color: var(--body-color);
    padding: 10px 13px;
    border-radius: 5px;
    border: 1px solid #0E0E0E20;
    transition: var(--transition-base);
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nb__member-social-info a:hover {
    background: var(--body-color3);
    border-color: var(--body-color3);
}

.nb__team-pagination {
    position: absolute;
    top: -80px;
    right: 0;
    display: flex;
    flex-direction: row-reverse;
    gap: 40px;
}

.nb__team-pagination .swiper-button-next,
.nb__team-pagination .swiper-button-prev {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #eeeeee;
    transition: var(--transition-base);
}

.nb__team-pagination .swiper-button-next:after,
.nb__team-pagination .swiper-button-prev:after {
    font-size: 26px;
    color: var(--body-color);
}

.nb__team-pagination .swiper-button-next:after {
    content: "\ef86";
    font-family: 'icomoon';
}

.nb__team-pagination .swiper-button-prev:after {
    content: "\ef82";
    font-family: 'icomoon';
}

.nb__team-pagination .swiper-button-next:hover,
.nb__team-pagination .swiper-button-prev:hover {
    background: var(--body-color3);
}

.nb__team-scrollbar {
    position: relative;
    display: inline-flex;
    width: 100%;
    top: 104px;
    justify-content: center;
}

.nb__team-scrollbar .swiper-scrollbar {
    width: 300px;
    position: relative;
    height: 10px;
    background: rgba(14, 14, 14, 0.10);
}

.nb__team-scrollbar .swiper-scrollbar-drag {
    background: var(--body-color3);
}

/* Testimonial start  */
.nb__about-page-testimonial .nb__section-title h2{
    color: var(--white-color);
}
.nb__testimonial-section .nb__section-title {
    max-width: 40%;
}

.nb__testimonial-slider {
    margin: -15px;
}

.nb__testimonial-slider .swiper-slide {
    padding: 15px;
}

.nb__testimonial-member {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 0 40px 40px;
    border-radius: 5px;
    background: #ffffff;
    position: relative;
    z-index: 3;
}

.nb__testimonial-member:before {
    position: absolute;
    top: 45px;
    left: 0;
    width: 100%;
    height: 89.5%;
    content: "";
    background-color: #ffffff;
    z-index: -1;
    border-radius: 5px;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
}

.nb__testimonial-member img {
    width: 88px;
}

.nb__about-page-testimonial h2{
    color: var(--white-color);
}

.nb__testimonial-info h2 {
    font-size: 24px;
    line-height: 30px;
}

.nb__author-review {
    gap: 4px;
}

.nb__quote-icon {
    border: 1px solid var(--body-color3);
    width: 40px;
    height: 40px;
}

.nb__testimonial-quote {
    position: relative;
    width: 100%;
}

.nb__testimonial-quote:before {
    content: "";
    width: 45%;
    height: 2px;
    background: var(--body-color3);
    position: absolute;
    left: 0;
    top: 50%;
}

.nb__testimonial-quote:after {
    content: "";
    width: 45%;
    height: 2px;
    background: var(--body-color3);
    position: absolute;
    right: 0;
    top: 50%;
}

.nb__testimonial-pagination .swiper-pagination-bullet {
    background: var(--body-color3);
    opacity: 1;
    border: 4px solid #ffffff;
    padding: 5px;
    outline: 2px solid transparent;
}

span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #9f9f9f;
    outline-color: var(--body-color3);
}

.nb__testimonial-pagination {
    margin-top: 90px;
}

/*Subscribe Style Start*/
.nb__subscribe-title h3 {
    color: var(--body-color3);
    font-family: var(--heading-font);
    font-size: 128px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
    text-transform: capitalize;
}

.nb__subscribe-title h3 span {
    -webkit-text-fill-color: #ffffff;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--body-color3);
}

.nb__subscribe-btn-icon {
    position: relative;
    padding-right: 50px;
    transition: all 0.3s;
    border: none;
    background: transparent;
}

.nb__subscribe-btn-icon svg {
    transition: all 0.3s;
}

.nb__subscribe-btn-icon:before {
    content: "";
    width: 137px;
    height: 137px;
    border-radius: 50%;
    border: 1px solid var(--body-color3);
    position: absolute;
    right: 0;
    top: -50px;
}

.nb__subscribe-btn-icon:hover svg {
    width: 100px !important;
}


.nb__subscribe-btn-icon:hover {
    padding-right: 22px;
}

.subscribe__content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 40px;
}

.subscribe__content h3 {
    font-size: 36px;
}

.subscribe__content p {
    text-align: center;
    line-height: 24px;
    margin-top: 20px;
    margin-bottom: 40px;
}

.nb__subscribe-popup-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.nb__subscribe-popup-form input {
    border: unset;
    background-color: #e4eff8;
    padding: 12px 15px;
    font-size: 13px;
    border-radius: 50px;
    width: 250px;
}

.nb__subscribe-popup-form button {
    background-color: var(--body-color3);
    color: #fff;
    border: unset;
    width: 120px;
    border-radius: 50px;
    padding: 8px 12px;
    cursor: pointer;
}

.nb__subscribe-popup-form-wrapper .model-header {
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.nb__subscribe-popup-form-wrapper .model-header button {
    position: absolute;
    top: 20px;
    right: 20px;
}

.nb__subscribe-mobile-btn {
    background-color: var(--body-color3);
    color: #fff;
    border: unset;
    width: 120px;
    border-radius: 50px;
    padding: 8px 12px;
    margin-left: 10px;
    cursor: pointer;
}

/* Start Footer  */
.nb__footer-widget-box {
    border-bottom: 1px solid rgb(97 102 112 / 20%);
}

.nb__footer-widget-box {
    gap: 30px;
}

.nb__foter-about {
    max-width: 23%;
}

.nb__foter-about p {
    color: var(--footer-text-color);
}

.nb__usefull-link-item {
    max-width: 18%;
}

.nb__widget-useful-link ul li {
    list-style: none;
    margin-bottom: 10px;
}

.nb__widget-useful-link ul li:last-child {
    margin-bottom: 0;
}

.nb__widget-useful-link ul li a {
    color: var(--footer-text-color);
    display: flex;
    gap: 8px;
}

.nb__widget-useful-link ul li a:before {
    content: "\E010";
    font-family: 'Iconly';
    color: var(--body-color3);
    font-size: 12px;
    top: 4px;
    position: relative;
}

.nb__widget-contact {
    max-width: 30%;
}

.nb__footer-newsletter {
    max-width: 29%;
}

.nb__footer-newsletter p {
    color: var(--footer-text-color);
}

.nb__footer-social-icon {
    gap: 10px;
}

.nb__footer-social-icon a {
    color: #616670;
    border: 1px solid #565656;
    border-radius: 5px;
    padding: 8px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.nb__footer-social-icon a:hover {
    color: var(--body-color3);
    border-color: var(--body-color3);
}

.nb__copyright-text p {
    color: var(--footer-text-color);
}

.nb__footer-nav-link ul {
    gap: 30px;
}

.nb__footer-nav-link ul li a {
    color: var(--footer-text-color);
}

/*Home Two Style Start*/

.nb-cngt {
    margin-right: calc(0 * var(--bs-gutters-x));
    margin-left: calc(0 * var(--bs-gutters-x));
    --bs-gutter-x: 2.5rem;
}

.nb-fngt {
    margin-right: calc(0 * var(--bs-gutters-x));
    margin-left: calc(0 * var(--bs-gutters-x));
    --bs-gutter-x: 4.5rem;
}

.nb-tabg {
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
    --bs-gutter-x: 1.9rem;
}

.nb-f200 {
    font-size: 150px;
    font-style: normal;
    font-weight: 700;
    line-height: 185px;
}

.nb-f128 {
    font-size: 128px;
    font-style: normal;
    line-height: 147px; /* 230px */
}

.nb-f76 {
    font-size: 76px;
}

.nb-f18 {
    font-size: 18px;
    font-style: normal;
    line-height: 27px; /* 166.667% */
}

.nb-f42 {
    font-size: 42px;
    font-style: normal;
    line-height: 55px; /* 130.952% */
    letter-spacing: -0.84px;
}

.nb-f48 {
    font-size: 48px;
    font-style: normal;
    line-height: 60px; /* 125% */
}

.nb-f24 {
    font-size: 24px;
    font-style: normal;
    line-height: 30px; /* 125% */
}

.nb-f28 {
    font-size: 28px;
    font-style: normal;
    line-height: 35px; /* 125% */
}

.nb-f16 {
    font-size: 16px;
    font-style: normal;
    line-height: 30px; /* 187.5% */
}

.nb-f14 {
    font-size: 14px;
    font-style: normal;
    line-height: 22.4px; /* 187.5% */
}

.nb-f32 {
    font-size: 32px;
    line-height: 32px; /* 200% */
    letter-spacing: 1.28px;
}
.nb-f37 {
    font-size: 37px;
    line-height: 0; /* 200% */
}
.nb-f68 {
    font-size: 68px;
    font-style: normal;
    line-height: 78.2px
}

.nv-f128 {
    font-size: 128px;
    font-style: normal;
    line-height: 147.2px
}

.nb-fw3 {
    font-weight: 300;
}

.nb-fw4 {
    font-weight: 400;
}

.nb-fw5 {
    font-weight: 500;
}

.nb-fw6 {
    font-weight: 600;
}

.nb-fw7 {
    font-weight: 700;
}

.nb-fw8 {
    font-weight: 800;
}

.nb-ls {
    letter-spacing: 4px;
}
.nb-ls-1_28{
    letter-spacing: 1.28px;
}

.nb-fw9 {
    font-weight: 900;
}

.nb-mcl {
    color: var(--main-color);
}

.nb-wcl {
    color: var(--White-color);
}

.nb-bcl {
    color: var(--Secendary);
}

.nb-dcl {
    color: var(--bg-color);
}

.nb-ffb {
    font-family: var(--nb-body-font);
}

.nb-ffh {
    font-family: var(--nb-h-font);
}

.nb-bg1 {
    background-color: var(--bg-color);
}

.nb-bg2 {
    background-color: var(--dark-color);
}

.nb-bg3 {
    background-color: var(--main-color);
}

.nb-bgdv {
    background-color: #242424;
}

.nb-pt146 {
    padding-top: 146px;
}

.nb-ptb120 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.nb-ptb80 {
    padding-top: 83px;
    padding-bottom: 70px;
}

.nb-pb146 {
    padding-top: 75px;
    padding-bottom: 75px;
}

.nb-pb267 {
    padding-top: 267px;
}

.nb-pb61 {
    padding-bottom: 61px;
}

.nb-pb160 {
    padding-bottom: 160px;
}

.nb-pb47 {
    padding-bottom: 47px;
}

.nb-pb47 {
    padding-bottom: 47px;
}

.nb-pt61 {
    padding-top: 60px;
}

.nb-pt76 {
    padding-top: 76px;
}

.nb-pb100 {
    padding-bottom: 100px;
}

.nb-pt100 {
    padding-top: 100px;
}

.nb-pb60 {
    padding-bottom: 60px;
}

.nb-p30 {
    padding: 30px;
}

.nb-ptb30 {
    padding-top: 19px;
    padding-bottom: 19px;
}

.nb-pb20 {
    padding-bottom: 20px;
}

.nb-ws {
    color: transparent;
    -webkit-text-stroke: 1px #FFF;
    -webkit-text-stroke: 1px #FFF;
}

.nb-pbt30 {
    padding-bottom: 30px;
}
.nb-isize {
    font-size: 64px;
}

.nbv2-container {
    max-width: 1290px;
    margin: 0 auto;
}

.nbv2-container-nav {
    max-width: 1749px;
    margin: 0 auto;
}

.nb_flh {
    line-height: 27px;
}

.nb-bscl {
    border: 1px solid var(--border-color);
    border-radius: 5px;
}
.nb-dhcl:hover{
    color: var(--main-color);
}

/*Button Style Icon css*/
.nb-icon {
    display: inline-flex;
    gap: 19px;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.nb-service-download-items-box:hover .nb-icon{
    background: var(--main-color);
    border-color: var(--main-color);
}
.nb-service-download-items-box:hover .nb-icon i{
    color: #fff;
}
.nb-icon:hover {
    color: var(--Secendary);
}
.nb-icon:hover i{
    color: var(--Secendary);
}

.nb-icon:before {
    content: attr(data-letters);
    position: absolute;
    z-index: 2;
    overflow: hidden;
    color: var(--Secendary);
    white-space: nowrap;
    width: 0%;
    transition: width 0.4s 0.3s;
}

.nb-icon:hover::before {
    width: 100%;
}

.nb-icon i {
    margin-left: 5px;
    -webkit-transition: all 500ms linear 0ms;
    -khtml-transition: all 500ms linear 0ms;
    -moz-transition: all 500ms linear 0ms;
    -ms-transition: all 500ms linear 0ms;
    -o-transition: all 500ms linear 0ms;
    transition: all 500ms linear 0ms;
}

.nb-icon:hover i {
    -webkit-animation: toRightFromLeft 0.5s forwards;
    -khtml-animation: toRightFromLeft 0.5s forwards;
    -moz-animation: toRightFromLeft 0.5s forwards;
    -ms-animation: toRightFromLeft 0.5s forwards;
    -o-animation: toRightFromLeft 0.5s forwards;
    animation: toRightFromLeft 0.5s forwards;
}

.nb-btna svg, .nb-btna i {
    font-size: 70px;
    line-height: 70px;
    color: var(--main-color);
    display: inline-block;
}

.nb-btna-hbr:hover .nb-btna i, .nb-btna-hbr:hover .nb-btna svg path, .nb-btna:hover img {
    -webkit-animation: iconanimation 0.5s forwards;
    -moz-animation: iconanimation 0.5s forwards;
    animation: iconanimation 0.5s forwards;
    color: var(--White-color);
    fill: var(--White-color);
}
.nb-nb_icon-line{
    line-height: 0;
}
.nb-ahbr {
    position: relative;
    /*display: inline-block;*/
    overflow: hidden;
    background: linear-gradient(to right, var(--main-color), var(--main-color) 50%, var(--White-color) 50%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #FFFFFF;
    background-size: 200% 100%;
    background-position: 100%;
    transition: background-position 275ms ease;
    text-decoration: none;
}

.nb-ahbr:hover {
    background-position: 0 100%;
    -webkit-text-fill-color: #FFFFFF00;
}

/* Hover End*/
/* Nbv2 Header Style End */

/* Nbv2 Header Style End */

/* Nbv2 Hero Style Style */
.nbv2_hero_section_text__head {
    position: relative;
    z-index: 0;
}

.nbv2_header_wrraper_navbar ul li a {
    color: var(--White-color);
}

.nbv2_header_wrraper_navbar .nb__navmenu > ul li.has-submenu::after {
    color: var(--White-color);
}

.nbv2_header_right {
    text-align: -webkit-right;
}

.nbv2_header_right .header-toggle span {
    top: 17px;
    right: 0;
}

.nbv2_header_right .offcanvas_border_one {
    margin-bottom: 9px;
}

.nbv2_call_action_btn .nb-ncl {
    -webkit-text-fill-color: var(--main-color);
}

/*.nbv2_hero_section_text__head::before{*/
/*    content: attr(title);*/
/*    position: absolute;*/
/*    -webkit-text-stroke: 0.005em #fff;*/
/*    left: 0;*/
/*    z-index: -1;*/
/*}*/
.nbv2_hero_section_col_bottom_left {
    margin-top: 21px;
}

.nbv2_hero_section_col_bottom_left_img {
    display: flex;

}

.nbv2_hero_section_col_bottom_left_img img {
    width: 70px;
    border-radius: 50%;
}

/*.nbv2_hero_section_col_bottom_left_img img:hover{*/
/*    transform: scale(1.3);*/
/*    z-index: 2;*/
/*}*/
.nbv2_hero {
    position: relative;
    overflow: hidden;
}

.nbv2_hero_sharp {
    max-width: 200px;
    max-height: 200px;
    position: absolute;
    width: 100%;
    height: 100%;
    filter: blur(150px);
    border-radius: 50%;
}

.nbv2_hero_sharp_one {
    top: 0;
}

.nbv2_hero_sharp_two {
    bottom: 50%;
    right: 0;
}

.nbv2_circle-wrapper {
    position: relative;
    margin-left: -15px;
    transition: 0.3s ease-in-out;
}

.nbv2_circle-wrapper:hover {
    transform: scale(1.3);
    z-index: 6;
}

.nbv2_circle-wrapper img {
    border-radius: 50%;
    overflow: hidden;
}

.nbv2_circle-wrapper.nb-ief img:first-child {
    -webkit-transform: translatex(50%) scalex(0);
    transform: translatex(50%) scalex(0);
}

.nbv2_hero_section_col_bottom_left__text_count {
    max-width: 200px;
    width: 100%;
}

.nbv2_hero_section_img img {
    width: 100%;
    border-radius: 5px;
}

/* Nbv2 Hero Style End */
/* tab Section Start */
.nbv2_portfolio_content_box {
    border-radius: 5px;
}

.nbv2_portfolio_content_box h4 {
    padding-bottom: 15px;
    padding-top: 35px;
}

/* tab Section End*/
/* Feture Section Start */
.wrapper_videos {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.video-main {
    position: relative;
    display: inline-block;
}

.video {
    height: 90px;
    width: 90px;
    line-height: 50px;
    text-align: center;
    border-radius: 8px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nbv2_featured_left_img img {
    border-radius: 5px;
    max-height: 570px;
    max-width: 276px;
    height: 100%;
    width: 100%;
}

.nbv2_featured_left_img:hover .waves {
    background-color: var(--main-color);
}

.fa-play:before {
    content: "\f04b";
}

.waves {
    position: absolute;
    width: 190px;
    height: 189px;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    border-radius: 8px;
    right: -50px;
    bottom: -50px;
    z-index: -1;
    -webkit-animation: waves 3s ease-in-out infinite;
    animation: waves 3s ease-in-out infinite;
}

.wave-1 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.wave-2 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.wave-3 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.nbv2_featured_right_img img {
    border-radius: 5px;
    max-height: 424px;
    max-width: 343px;
    height: 100%;
    width: 100%;
}

.nbv2_featured_right_icon_box {
    padding: 13px 0 18px 40px;
    margin-top: 20px;
    border-radius: 5px;
}

.nbv2_featured_right_link {
    transition: all .4s;
    height: 56px;
    padding: 10px;
    z-index: 0;
}

.nbv2_featured_right_link:before {
    content: "";
    width: 40px;
    height: 40px;
    position: absolute;
    right: 0px;
    border-radius: 50%;
    border: 1px solid var(--main-color);
    transition: all .4s;

}

.nbv2_featured_right_link:hover:before {
    width: 100%;
    height: 40px;
    right: 0px;
    border-radius: 0;

    /*background:  var(--main-color);*/
    z-index: -1;
}

.nbv2_featured_right_link:hover, .nbv2_featured_right_link:hover path, .nbv2_featured_right_link:hover i {
    fill: var(--main-color);
    color: var(--main-color);
}

.nbv2_featured_right_link svg, .nbv2_featured_right_link i {
    transition: all .4s;
}

.nbv2_featured_right_link:hover svg, .nbv2_featured_right_link i {
    width: 25px;
    transition: all .4s;
}

.nbv2_featured_right_content h2 {
    margin-bottom: 30px;
    margin-top: 20px;
}

.nbv2_featured_right_content p {
    margin-bottom: 76px;
}

.nbv2_featured_right_link:hover i {
    font-size: 30px;
}

/* Feture Section End */
/*project Section Start*/
.nbv2_project_slide_content_bottom {
    padding: 21px 40px;
    border-radius: 5px;
    transition: all .5s;
    z-index: 0;
    width: 80%;
}

.nbv2_project_arciv_content_bottom {
    padding: 20px 40px;
}

.nbv2_project_slide_content_bottom img {
    border-radius: 7px;
}

.nbv2_project_slide_content_bottom:before {
    content: "";
    background: var(--main-color);
    width: 1%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 5px 0 0 5px;
    transition: all .5s;
}

.nbv2_project_slide_content_bottom:hover:before {
    width: 100%;
    transform: translate(0);
    z-index: -1;
    border-radius: 5px;
}

.nbv2_project_slide_content_bottom:hover p, .nbv2_project_slide_content_bottom:hover h4 {
    color: var(--dark-color);
}

.nbv2_project_slide_content {
    padding-bottom: 70px;
}

.nbv2_project_slide_content_bottom_main {
    bottom: -200px;
    width: 100%;
    z-index: 5;
    transition: all .5s;
    opacity: 0;
}

.nbv2_project_slide_single:hover .nbv2_project_slide_content_bottom_main {
    animation: anims2 .6s linear;
    opacity: 1;
    bottom: 11px;
}

.nbv2_project_slide_single {
    margin-right: 20px;
}

.nbv2_project_main_single {
    padding-bottom: 20px;
}

.slider_icon {
    color: var(--main-color);
}

.nbv2_project_slide_content_bottom:hover i {
    color: var(--dark-color);
}

/*Project Section End*/
/* Marque Section Start */
.marquees {
    transform: rotateZ(-2deg);
}

.marquees_wrapper {
    diplay: flex;
}

.marquees_wrapper svg {
    margin-top: -20px;
}

.nbv2_marque {
    position: relative;
    overflow: hidden;
}

.marquees span {
    margin-top: -19px;
}

.nbv2_marque:before {
    content: "";
    background: var(--dark-color);
    width: 400px;
    height: 130px;
    position: absolute;
    filter: blur(78px);
    z-index: 2;
    left: -28px;
    top: 6px;
}

.nbv2_marque:after {
    content: "";
    background: var(--dark-color);
    width: 400px;
    height: 130px;
    position: absolute;
    filter: blur(78px);
    z-index: 2;
    right: 0px;
    top: -52px;
}

.nbv2_project_wrapper_container .marquees h2 {
    gap: 30px;
}

.nbv2_project_wrapper_container .marquees h2 span {
    margin-top: -30px;
}

.nbv2_marque_wrapper_container {
    padding: 25px 0;
}

/* Marque Section End */
/* Team Section Start*/

.nbv2_team_bottom .case-study-box .case-images {
    position: absolute;
    left: 0%;
    top: 0px;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    display: none;
    border-radius: 10px;
}

.nbv2_team_bottom  .case-study-box .case-images.active {
    display: block;
    -webkit-animation: 1s scale_fadeInUp;
    animation: 1s scale_fadeInUp;
}

.nbv2_team_bottom  .case-study-box .case-2.active {
    top: 80px;
}

.nbv2_team_bottom  .case-study-box .case-3.active {
    top: 143px;
}

.nbv2_team_bottom .case-study-box .case-4.active {
    top: 274px;
}

.nbv2_team_bottom  .case-study-box .case-study-single + .case-study-single {
    border-top: 1px solid #ffffff44;
    padding: 34px 0;
}

.nbv2_team_bottom  .case-study-box .case-study-single:first-child {
    padding: 34px 0;
    border-top: 1px solid #ffffff44;
}

.nbv2_team_bottom  .case-study-box .case-study-single:last-child {
    padding-bottom: 30px;
    border-bottom: 1px solid #ffffff44;
}

.mb_name {
    padding-bottom: 15px;
}

.member_name {
    width: 30%;
}

.member_decription {
    padding-left: 30px;
    padding-right: 80px;
}

/* Team Part End */
/* Award Part Start */
.nbv2_award_wrapper_container {
    border: 1px solid var(--main-color);
    padding: 70px 50px;
    border-radius: 8px;
}

.nbv2_award_wrapper {
    margin-top: -109px;
}

.nbv2_award {
    position: relative;
}

.nbv2_award_pd {
    padding: 0 131px 0 141px;
    border-right: 1px solid #ffffff44;
    border-left: 1px solid #ffffff44;
}

/* Award Part End */
/* Testimonial section Start*/
.nb-mtd {
    margin-top: -118px;
}

.nbv2_testimonial_top {
    max-width: 629px;
    width: 100%;
    margin: 0 auto;
}
.nbv2_testimonial_top h4{
    gap: 20px;
}
.nb-icon-roted{
    transform: rotateY(180deg);
}
.nbv2_testimonial {
    padding-bottom: 200px;
}

.nb1-testimonial-slider-box {
    gap: 30px;
    padding: 40px;
}

.nb1-testimonial-slider-box .nb1-body-p {
    padding: 14px 0 27px 0;
}

.nb1-testimonial-slider-box-img {
    display: flex;
    align-self: center;
    position: relative;
    width: 80%;
}

.nb1-testimonial-slider-box-img img {
    width: 100%;
}

.nb1-testimonial-slider-box-img span {
    position: absolute;
    right: 4px;
    top: -18px;
}

.nb1-testimonial-slider-row .slick-dots li button:before {
    font-family: 'slick';
    font-size: 35px;
    opacity: 1;
    color: #f99d1b;
}

.nb1-testimonial-slider-row .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #f99d1b;
    border: 2px solid #f99d1b;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nb1-testimonial-slider-row .slick-dots {
    bottom: -103px;
}

/* the slides */
.nbv2_testimonial_wrapper .slick-slide {
    margin: 0 10px;
    padding: 0px 10px;
}

/* the parent */
.nbv2_testimonial_wrapper .slick-list {
    margin: 0 -10px;
}

/* Testimonial section End*/
/* Contuct section Start*/
.nbv2_input {
    max-height: 60px;
    height: 60px;
    background: var(--dark-color);
    margin-top: 20px;
    border-color: #ffffff00;
}

.nbv2_form_text {
    max-height: 130px;
    height: 130px;
}

.nbv2_form ::placeholder {
    color: var(--Secendary);
    opacity: 1; /* Firefox */
}

.nbv2_form .form-control:focus {
    background: var(--dark-color);
    border-color: #626262;
    color: var(--Secendary);
    outline: 0;
    box-shadow: 0 0 0 0;
}

.nbv2_form textarea::placeholder {
    color: var(--Secendary);
}

.nbv2_form_main_btn {
    margin-top: 20px;
    display: block;
    width: 100%;
    padding: 15px 0;
    border-radius: 5px;
    box-shadow: 0 0 0 0;
}

.nbv2_form_wrapper {
    background: url(../images/contuct.png);
    background-repeat: no-repeat;
    background-position: right;
}

/* Contuct  section End*/
/* Blog  section Start*/
.nb_blog_date {
    padding: 2px 16px;
    z-index: 2;
}

.nb_blog_title_con p {
    margin-bottom: 30px;
}

.nb_blog_btn a {
    padding: 9px 35px;
}

.nb_blog_img {
    overflow: hidden;
}

.nb_blog_img img {
    max-width: 300px;
    width: 100%;
    height: 328px;
    object-fit: cover;
}

.nb-ief {
    animation-name: fadeInUp;
}

.nb-ief img {
    display: block;
    border-radius: 5px;
    -webkit-transition: all 600ms ease;
    -khtml-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
}

.nb-ief img:first-child {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 1;
    -webkit-transform: translatex(50%) scalex(2);
    transform: translatex(50%) scalex(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.nb-iefmain {
    overflow: hidden;
}

.nb_blog_item:hover img:first-child, .nb-iefmain:hover img:first-child {
    -webkit-transform: translatex(0) scalex(1);
    transform: translatex(0) scalex(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

.nb_blog_meta_item span {
    line-height: 1px;
}

/* Blog  section End*/
/* Footer  section Start*/
.nb_inpf {
    min-height: 62px;
    height: 100%;
    border: none;
    border-bottom: 1px solid var(--main-color);
    border-radius: 5px;
}

.nbv2_footer_top_logo ::placeholder {
    color: var(--Secendary) !important;
}

.nbv2_footer_input i {
    right: 20px;
    transition: all .5s;
}

.nbv2_footer_input .form-control:focus {
    background-color: #f99d1b44;
    box-shadow: 0 0 0 0;
    color: var(--White-color);
}

.nbv2_footer_top_logo p {
    padding: 30px 0px;
}

.nbv2_footer_rl_post_img {
    width: 100px;
}

.nbv2_footer_rl_post_img img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.nbv2_footer_top_link ul li {
    padding-top: 10px;
}

.nbv2_footer_top_link ul li:first-child {
    padding-top: 0px;
}

.nbv2_footer_bottom {
    border-top: 1px solid #3e3e3e;
}

.nbv2_footer_top {
    padding-top: 80px;
    padding-bottom: 58px;
}

/* Footer  section End*/
/* text Animation Start */
.nb_animation_text_link {
    overflow: hidden;
    position: relative;
    display: inline-block;
}

.nb_animation_text_link::before,
.nb_animation_text_link::after {
    content: '';
    position: absolute;
    width: 100%;
    left: 0;
}

.nb_animation_text_link::before {
    background-color: var(--main-color);
    height: 2px;
    bottom: 0;
    transform-origin: 100% 50%;
    transform: scaleX(0);
    transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
}

.nb_animation_text_link::after {
    content: attr(data-replace);
    height: 100%;
    top: 0;
    transform-origin: 100% 50%;
    transform: translate3d(200%, 0, 0);
    transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
    color: var(--main-color);
}

.nb_animation_text_link:hover::before {
    transform-origin: 0% 50%;
    transform: scaleX(1);
}

.nb_animation_text_link:hover::after {
    transform: translate3d(0, 0, 0);
}

.nb_animation_text_link .nb_animation_text_linksp {
    display: inline-block;
    transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
}

.nb_animation_text_link:hover .nb_animation_text_linksp {
    transform: translate3d(-200%, 0, 0);
}

/* Animation Two */
.nb_animation_title_main {
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    padding: 0;
    overflow: hidden;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}

.nb_animation_title_main > * {
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.nb_animation_title_main:hover .nb_animation_title_main_non {
    -webkit-transform: translatey(-100%);
    transform: translatey(-100%);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    color: transparent;;
}

.nb_animation_title_main_hbr {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--main-color);
    -webkit-transform: translatey(100%);
    transform: translatey(100%);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.nb_animation_title_main:hover .nb_animation_title_main_hbr {
    position: absolute;
    top: 0;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translatey(0%);
    transform: translatey(0%);
}

/* Text Animation Three */
.nv_loop_animation {
    background: linear-gradient(to right, var(--main-color) 0, var(--main-color) 40%, var(--White-color) 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: newanimation 3s infinite linear;
    animation-fill-mode: forwards;
    -webkit-text-size-adjust: none;
}

/* Text Animation Four */
.nb_btn_hover_all {
    display: inline-block;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: color .5s;
    z-index: 0;
}

.nb_btn_hover_all:before {
    content: "";
    position: absolute;
    z-index: -1;
    background: var(--main-color);
    height: 150px;
    width: 200px;
    border-radius: 50%;
}

.nb_btn_hover_all:hover {
    color: var(--White-color);
}

.nb_btn_hover_all:before {
    top: 100%;
    left: 100%;
    transition: all .7s;
}

.nb_btn_hover_all:hover:before {
    top: -30px;
    left: -87px;
    width: 807px;
}

/* text Animation End */
/* Button Text Ulta */
/* About Start */
/* Header Section Start */
.nb-abg {
    background: var(--body-color);
}

.nb-darkv1 .nb__navmenu > ul li a {
    color: var(--white-color);
}

.nb-darkv1 .nb__navmenu > ul li.has-submenu::after {
    color: var(--white-color);
    /* Header Section End */
}

/* About Bredcrumb Start */
.nb_bredcrumb_wrapper {
    width: 100%;
    background-image: linear-gradient(rgb(0 0 0 / 50%), rgb(0 0 0 / 50%)), url(../images/bredcrumb.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.nb_bredcrumb_wrapper_container {
    display: flex;
    align-items: center;
    max-height: 308px;
    height: 308px;
}

/* About Bredcrumb End */
/* About Feture Start */
.nb-appt {
    padding-top: 150px;
    padding-bottom: 150px;
}

.nb-darkw50 {
    max-width: 50%;
}


.nb__team-pagination_dkv .swiper-button-next:after, .nb__team-pagination_dkv .swiper-button-prev:after {
    font-size: 26px;
    color: var(--White-color);
}

.nb__team-pagination_dkv .swiper-button-next, .nb__team-pagination_dkv .swiper-button-prev {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #242424;
}

.nb__team-pagination_dkv .swiper-button-next:hover, .nb__team-pagination_dkv .swiper-button-prev:hover {
    background: var(--body-color3);
}

.nb__about-pgt .nb__member-social-info a, .nb__about-pgt .nb__member-info h2, .nb__about-pgt .nb__member-info p {
    color: var(--White-color);
}

.nb__team-pagination_dkv .swiper-button-next:hover:after, .nb__team-pagination_dkv .swiper-button-prev:hover:after {
    color: var(--dark-color);
}

.nb__about-pgt .nb__member-social-info a {
    border: 1px solid #ffffff22;
}

.nb__about-pgt .nb__team-scrollbar .swiper-scrollbar {
    background-color: #242424;
}

/*.nb__about-pgt .nb__team-pagination .swiper-button-next{*/
/*background-color: var(--main-color);*/
/*  color: var(--White-color);*/
/*}*/
/* About Feture End */
/* Counter Section Start */
.nb__counter-icon_dkv::before {
    background: var(--main-color);
}

.nb__counter-title_dkv h4 {
    color: var(--Secendary);
}

.nb__counter-number_dkv {
    -webkit-text-fill-color: #ffffff00;
}

/* Counter Section End */
/* Testimonial Section Start */

.nb__testimonial-member-dkv {
    background: transparent;
}

.nb__testimonial-member-dkv img {
    border: 3px solid #303030;
}

.nb__testimonial-member-dkv:before {
    background-color: transparent;
    border: 3px solid #fff2;
}

.nb__testimonial-quote-dkv:before, .nb__testimonial-quote-dkv:after {
    background: #616670;
}

.nb__testimonial-pagination_dkv .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #f99d1b;
    outline-color: var(--body-color3);
}

.nb__testimonial-pagination_dkv .swiper-pagination-bullet {
    border: 4px solid #181818;
}

/* Testimonial Section End */
/* Subscribe Section Start */
.nb__subscribe-title_dkv h3 span {
    -webkit-text-fill-color: #fff0;
}

.nb__subscribe-btn-icon-dkv svg path {
    fill: #fff;
}


.nb-accordion-tab-1, .nb-accordion-tab-2 {
    position: relative;
    margin-bottom: 37px;
}

.nb-accordion-tab-1 h2, .nb-accordion-tab-2 h2 {
    position: relative;
    line-height: 1.5;
    padding: 0.5rem 0.5rem 0.5rem 4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.nb-accordion-tab-1 h2::after, .nb-accordion-tab-2 h2::after {
    content: '\ef5d';
    position: absolute;
    font-family: icomoon;
    left: 1rem;
    font-size: 1rem;
    transition: transform 0.5s;
    color: var(--main-color);
    padding: 0px 3px;
    border: 1px solid var(--main-color);
    border-radius: 5px;
    line-height: 1.5;
}

.nb-accordion-tab-1 h2::before, .nb-accordion-tab-2 h2::before {
    content: '\ee4a';
    position: absolute;
    left: 1rem;
    font-size: 1rem;
    transition: transform 0.5s;
    color: #fff;
    opacity: 0;
    padding: 0px 3px;
    background: var(--main-color);
    border-radius: 5px;
    font-family: icomoon;
    line-height: 1.5;
}

.nb-accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s ease-out;
}

.nb-accordion-content p {
    text-align: justify;
    overflow: hidden;
    padding: 0 0 0 4em;
}

.nb_open .nb-accordion-content {
    grid-template-rows: 1fr;
    padding: 0.5rem 1em;
}

.nb_open h2::after {
    display: none;
}

.nb_open h2::before {
    opacity: 1;
}

.nb_open2 .nb-accordion-content {
    grid-template-rows: 1fr;
    padding: 0.5rem 1em;
}

.nb_open2 h2::after {
    display: none;
}

.nb_open2 h2::before {
    opacity: 1;
}

.form-group input {
    color: #fff;
}

/* Subscribe Section End */
/*Blog section Start*/
.nbv2_blog_single_content {
    width: 90%;
    margin: 0 auto;
    position: relative;
    margin-top: -76px;
    z-index: 3;
}

.nbv2_blog_single_meta {
    display: flex;
    gap: 20px;
}
.nb-htcl:hover {
    color: transparent;
}

.nbv2_blog_single_button a {
    padding: 18px 25px;
    border-radius: 50%;
    left: 42%;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    background: var(--dark-color);
}

.nbv2_blog_single_button a:hover {
    color: var(--dark-color)
}
.nbv2_blog_single {
    margin-top: 103px;
    padding-right: 6px;
}

.nbv2_blog_wrapper_container .nbv2_blog_single:first-child {
    margin-top: 0px;
}

.page-numbers ul li span, .page-numbers ul li a {
    width: 67px;
    border-radius: 50%;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nbv2_blog_wrapper_container .page-numbers ul {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding-left: 0;
}

.nbv2_blog_top {
    width: 50%;
    margin: 0 auto;
}

.nb-search-field {
    width: 100%;
    min-height: 60px;
    padding-left: 20px;
    box-shadow: 0 0 0 0 #ffffff00;
    border: none;
}

.nb-search-form label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.nb-search-form i {
    position: absolute;
    right: 20px;
    cursor: pointer;
}

.nb-wlcolorp:before {
    content: "";
    width: 3px;
    height: 17px;
    background: var(--main-color);
    position: absolute;
    top: 20%;
    left: 0;
}

.nb-cat-item i {
    position: absolute;
    margin-left: -4px;
    opacity: 0;
}

.nb-cat-item:hover a {
    padding-left: 18px;
    color: var(--Secendary);
}

.nb-cat-list ul li {
    border-bottom: 1px solid #303030;
    padding: 10px 0;
}

.nb-cat-list ul li:last-child {
    border: none;
}

.nb-cat-item:hover i {
    opacity: 1;
    color: var(--main-color);
}

/* Widget Recent Post Start */
.nbv2_widget_rl_post_img img {
    width: 87px;
    height: 87px;
    object-fit: fill;
    border-radius: 5px;
}

.nbv2_widget_rl_post_img i {
    display: none;
    z-index: 2;
}

.nbv2_widget_rl_post_img a {
    width: 100px;
    height: 100%;

}

.nbv2_widget_rl_post_img a:after {
    content: "";
    width: 87px;
    height: 87px;
    background: #0E0E0E88;
    z-index: 1;
    display: none;
    position: absolute;
    border-radius: 5px;
}

.nbv2_widget_rl_post:hover :after, .nbv2_widget_rl_post:hover i {
    display: block;
}

.arc-item {
    gap: 10px;
}

.arc-item i {
    margin-left: 10px;
}

.arc-item {
    background: #1e1e1e;
    padding: 8px 10px;
    border-radius: 5px;
}

.arc-item .nb-ahbr {
    -webkit-text-fill-color: var(--Secendary)!important;
}

.arc-item:hover .nb-ahbr {
    background-position: 0 100%;
    -webkit-text-fill-color: #FFFFFF00;
}

.nb-arcive-list li {
    margin-top: 10px;
}

.nb-arcive-list li:first-child {
    margin-top: 0px;
}

.nb-tag-list ul li a {
    padding: 12px 20px;
    border-radius: 5px;
    border: 1px solid #303030;
}

/* Widget Recent Post End */


/* Rsd Work Start */
.nb-icon:before {
    content: attr(data-letters);
    position: absolute;
    z-index: 2;
    overflow: hidden;
    color: var(--Secendary);
    white-space: nowrap;
    width: 0%;
    transition: width 0.4s 0.3s;
}

.nb-icon:hover::before {
    width: 100%;
}
.nb-icon i {
    margin-left: 0px;
    -webkit-transition: all 500ms linear 0ms;
    -khtml-transition: all 500ms linear 0ms;
    -moz-transition: all 500ms linear 0ms;
    -ms-transition: all 500ms linear 0ms;
    -o-transition: all 500ms linear 0ms;
    transition: all 500ms linear 0ms;
}

.nb-icon:hover i {
    -webkit-animation: toRightFromLeft 0.5s forwards;
    -khtml-animation: toRightFromLeft 0.5s forwards;
    -moz-animation: toRightFromLeft 0.5s forwards;
    -ms-animation: toRightFromLeft 0.5s forwards;
    -o-animation: toRightFromLeft 0.5s forwards;
    animation: toRightFromLeft 0.5s forwards;
}

.nb-btna svg, .nb-btna i {
    font-size: 70px;
    line-height: 70px;
    color: var(--main-color);
    display: inline-block;
}

.nb-btna-hbr:hover .nb-btna i, .nb-btna-hbr:hover .nb-btna svg path {
    -webkit-animation: iconanimation 0.5s forwards;
    -moz-animation: iconanimation 0.5s forwards;
    animation: iconanimation 0.5s forwards;
    color: var(--White-color);
    fill: var(--White-color);
}

.nb-ahbr {
    position: relative;
    /*display: inline-block;*/
    overflow: hidden;
    background: linear-gradient(to right, var(--main-color), var(--main-color) 50%, var(--White-color) 50%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #FFFFFF;
    background-size: 200% 100%;
    background-position: 100%;
    transition: background-position 275ms ease;
    text-decoration: none;
}

.nb-ahbr:hover {
    background-position: 0 100%;
    -webkit-text-fill-color: #FFFFFF00;
}

/* Hover End*/
/* Nbv2 Header Style End */

/* Nbv2 Header Style End */

/* Nbv2 Hero Style Style */
.nbv2_hero_section_text__head {
    position: relative;
    z-index: 0;
}

.nbv2_header_wrraper_navbar ul li a {
    color: var(--White-color);
}

.nbv2_header_wrraper_navbar .nb__navmenu > ul li.has-submenu::after {
    color: var(--White-color);
}

.nbv2_header_right {
    text-align: -webkit-right;
}

.nbv2_header_right .header-toggle span {
    top: 17px;
    right: 0;
}

.nbv2_header_right .offcanvas_border_one {
    margin-bottom: 9px;
}

.nbv2_call_action_btn .nb-ncl {
    -webkit-text-fill-color: var(--main-color);
}

/*.nbv2_hero_section_text__head::before{*/
/*    content: attr(title);*/
/*    position: absolute;*/
/*    -webkit-text-stroke: 0.005em #fff;*/
/*    left: 0;*/
/*    z-index: -1;*/
/*}*/
.nbv2_hero_section_col_bottom_left {
    margin-top: 21px;
}

.nbv2_hero_section_col_bottom_left_img {
    display: flex;

}

.nbv2_hero_section_col_bottom_left_img img {
    width: 70px;
    border-radius: 50%;
}

/*.nbv2_hero_section_col_bottom_left_img img:hover{*/
/*    transform: scale(1.3);*/
/*    z-index: 2;*/
/*}*/
.nbv2_hero {
    position: relative;
    overflow: hidden;
}

.nbv2_hero_sharp {
    max-width: 200px;
    max-height: 200px;
    position: absolute;
    width: 100%;
    height: 100%;
    filter: blur(150px);
    border-radius: 50%;
}

.nbv2_hero_sharp_one {
    top: 0;
}

.nbv2_hero_sharp_two {
    bottom: 50%;
    right: 0;
}

.nbv2_circle-wrapper {
    position: relative;
    margin-left: -15px;
    transition: 0.3s ease-in-out;
}

.nbv2_circle-wrapper:hover {
    transform: scale(1.3);
    z-index: 6;
}

.nbv2_circle-wrapper img {
    border-radius: 50%;
    overflow: hidden;
}

.nbv2_circle-wrapper.nb-ief img:first-child {
    -webkit-transform: translatex(50%) scalex(0);
    transform: translatex(50%) scalex(0);
}

.nbv2_hero_section_col_bottom_left__text_count {
    max-width: 200px;
    width: 100%;
}

.nbv2_hero_section_img img {
    width: 100%;
    border-radius: 5px;
}

/* Nbv2 Hero Style End */
/* tab Section Start */
.nbv2_portfolio_content_box {
    border-radius: 5px;
}

.nbv2_portfolio_content_box h4 {
    padding-bottom: 15px;
    padding-top: 35px;
}

/* tab Section End*/
/* Feture Section Start */
.wrapper_videos {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.video-main {
    position: relative;
    display: inline-block;
}

.video {
    height: 90px;
    width: 90px;
    line-height: 50px;
    text-align: center;
    border-radius: 8px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nbv2_featured_left_img img {
    border-radius: 5px;
    max-height: 570px;
    max-width: 276px;
    height: 100%;
    width: 100%;
}

.nbv2_featured_left_img:hover .waves {
    background-color: var(--main-color);
}

.fa-play:before {
    content: "\f04b";
}

.waves {
    position: absolute;
    width: 190px;
    height: 189px;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    border-radius: 8px;
    right: -50px;
    bottom: -50px;
    z-index: -1;
    -webkit-animation: waves 3s ease-in-out infinite;
    animation: waves 3s ease-in-out infinite;
}

.wave-1 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.wave-2 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.wave-3 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.nbv2_featured_right_img img {
    border-radius: 5px;
    max-height: 424px;
    max-width: 343px;
    height: 100%;
    width: 100%;
}

.nbv2_featured_right_icon_box {
    padding: 13px 0 18px 40px;
    margin-top: 20px;
    border-radius: 5px;
}

.nbv2_featured_right_link {
    transition: all .4s;
    height: 56px;
    padding: 10px;
    z-index: 0;
}

.nbv2_featured_right_link:before {
    content: "";
    width: 40px;
    height: 40px;
    position: absolute;
    right: 0px;
    border-radius: 50%;
    border: 1px solid var(--main-color);
    transition: all .4s;

}

.nbv2_featured_right_link:hover:before {
    width: 100%;
    height: 40px;
    right: 0px;
    border-radius: 0;

    /*background:  var(--main-color);*/
    z-index: -1;
}

.nbv2_featured_right_link:hover, .nbv2_featured_right_link:hover path, .nbv2_featured_right_link:hover i {
    fill: var(--main-color);
    color: var(--main-color);
}

.nbv2_featured_right_link svg, .nbv2_featured_right_link i {
    transition: all .4s;
}

.nbv2_featured_right_link:hover svg, .nbv2_featured_right_link i {
    width: 25px;
    transition: all .4s;
}

.nbv2_featured_right_content h2 {
    margin-bottom: 30px;
    margin-top: 20px;
}

.nbv2_featured_right_content p {
    margin-bottom: 76px;
}

.nbv2_featured_right_link:hover i {
    font-size: 30px;
}

/* Feture Section End */

/*project Section Start*/
.nbv2_project {
    padding-bottom: 30px;
}
.nbv2_project_slide_content_bottom {
    padding: 30px 40px;
    border-radius: 5px;
    transition: all .5s;
    z-index: 0;
    width: 80%;
}

.nbv2_project_slide_content_bottom img {
    border-radius: 7px;
}

.nbv2_project_slide_content_bottom:before {
    content: "";
    background: var(--main-color);
    width: 1%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 5px 0 0 5px;
    transition: all .5s;
}

.nbv2_project_slide_content_bottom:hover:before {
    width: 100%;
    transform: translate(0);
    z-index: -1;
    border-radius: 5px;
}

.nbv2_project_slide_content_bottom:hover p, .nbv2_project_slide_content_bottom:hover h4 {
    color: var(--dark-color);
}

.nbv2_project_slide_content {
    padding-bottom: 70px;
}

.nbv2_project_slide_content_bottom_main {
    bottom: -200px;
    width: 100%;
    z-index: 5;
    transition: all .5s;
    opacity: 0;
}

.nbv2_project_slide_single:hover .nbv2_project_slide_content_bottom_main {
    animation: anims2 .6s linear;
    opacity: 1;
    bottom: 11px;
}

.nbv2_project_slide_single {
    margin-right: 20px;
}

.slider_icon {
    color: var(--main-color);
}

.nbv2_project_slide_content_bottom:hover i {
    color: var(--dark-color);
}

/*Project Section End*/
/* Marque Section Start */
.marquees {
    transform: rotateZ(-2deg);
}
.nbv1_marque .marquees {
    transform: rotateZ(0);
}


.marquees_wrapper {
    diplay: flex;
}

.marquees_wrapper svg {
    margin-top: -20px;
}

.nbv2_marque {
    position: relative;
    overflow: hidden;
}

.marquees span {
    margin-top: -19px;
}

.nbv2_marque:before {
    content: "";
    background: var(--dark-color);
    width: 400px;
    height: 130px;
    position: absolute;
    filter: blur(78px);
    z-index: 2;
    left: -28px;
    top: 6px;
}

.nbv2_marque:after {
    content: "";
    background: var(--dark-color);
    width: 400px;
    height: 130px;
    position: absolute;
    filter: blur(78px);
    z-index: 2;
    right: 0px;
    top: -52px;
}

.nbv2_project_wrapper_container .marquees h2 {
    gap: 30px;
}

.nbv2_project_wrapper_container .marquees h2 span {
    margin-top: -30px;
}

.nbv2_marque_wrapper_container {
    padding: 25px 0;
}

/* Marque Section End */
/* Team Section Start*/

.nbv2_team_bottom  .case-study-box .case-images {
    position: absolute;
    left: 0%;
    top: 0px;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    display: none;
    border-radius: 10px;
}

.nbv2_team_bottom  .case-study-box .case-images.active {
    display: block;
    -webkit-animation: 1s scale_fadeInUp;
    animation: 1s scale_fadeInUp;
}

.nbv2_team_bottom  case-study-box .case-study-single + .case-study-single {
    border-top: 1px solid #ffffff44;
    padding: 34px 0;
}

.nbv2_team_bottom  .case-study-box .case-study-single:first-child {
    padding: 34px 0;
    border-top: 1px solid #ffffff44;
}

.nbv2_team_bottom  .case-study-box .case-study-single:last-child {
    padding-bottom: 30px;
    border-bottom: 1px solid #ffffff44;
}

.mb_name {
    padding-bottom: 15px;
}

.member_name {
    width: 30%;
}

.member_decription {
    padding-left: 30px;
    padding-right: 80px;
}

/* Team Part End */
/* Award Part Start */
.nbv2_award_wrapper_container {
    border: 1px solid var(--main-color);
    padding: 70px 50px;
    border-radius: 8px;
}

.nbv2_award_wrapper {
    margin-top: -109px;
}

.nbv2_award {
    position: relative;
}

.nbv2_award_pd {
    padding: 0 131px 0 141px;
    border-right: 1px solid #ffffff44;
    border-left: 1px solid #ffffff44;
}

/* Award Part End */
/* Testimonial section Start*/
.nb-mtd {
    margin-top: -118px;
}

.nbv2_testimonial_top {
    max-width: 629px;
    width: 100%;
    margin: 0 auto;
}

.nbv2_testimonial {
    padding-bottom: 200px;
}

.nb1-testimonial-slider-box {
    gap: 30px;
    padding: 40px;
}

.nb1-testimonial-slider-box .nb1-body-p {
    padding: 14px 0 27px 0;
}

.nb1-testimonial-slider-box-img {
    display: flex;
    align-self: center;
    position: relative;
    width: 80%;
}

.nb1-testimonial-slider-box-img img {
    width: 100%;
}

.nb1-testimonial-slider-box-img span {
    position: absolute;
    right: 4px;
    top: -18px;
}

.nb1-testimonial-slider-row .slick-dots li button:before {
    font-family: 'slick';
    font-size: 35px;
    opacity: 1;
    color: #f99d1b;
}

.nb1-testimonial-slider-row .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #f99d1b;
    border: 2px solid #f99d1b;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nb1-testimonial-slider-row .slick-dots {
    bottom: -103px;
}

/* the slides */
.nbv2_testimonial_wrapper .slick-slide {
    margin: 0 10px;
    padding: 0px 10px;
}

/* the parent */
.nbv2_testimonial_wrapper .slick-list {
    margin: 0 -10px;
}

/* Testimonial section End*/
/* Contuct section Start*/
.nbv2_input {
    max-height: 60px;
    height: 60px;
    background: var(--dark-color);
    margin-top: 20px;
    border-color: #ffffff00;
}

.nbv2_form_text {
    max-height: 130px;
    height: 130px;
}

.nbv2_form ::placeholder {
    color: var(--Secendary);
    opacity: 1; /* Firefox */
}

.nbv2_form .form-control:focus {
    background: var(--dark-color);
    border-color: #626262;
    color: var(--Secendary);
    outline: 0;
    box-shadow: 0 0 0 0;
}

.nbv2_form textarea::placeholder {
    color: var(--Secendary);
}

.nbv2_form_main_btn {
    margin-top: 20px;
    display: block;
    width: 100%;
    padding: 15px 0;
    border-radius: 5px;
    box-shadow: 0 0 0 0;
}

.nbv2_form_wrapper {
    background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)) ,url(../images/contuct.png);
    background-repeat: no-repeat;
    background-position: right;
}

/* Contuct  section End*/
/* Blog  section Start*/
.nb_blog_date {
    padding: 2px 16px;
    z-index: 2;
}

.nb_blog_title_con p {
    margin-bottom: 30px;
}

.nb_blog_btn a {
    padding: 9px 35px;
}

.nb_blog_img {
    overflow: hidden;
}

.nb_blog_img img {
    max-width: 300px;
    width: 100%;
    height: 328px;
    object-fit: cover;
}

.nb-ief {
    animation-name: fadeInUp;
}

.nb-ief img {
    display: block;
    border-radius: 5px;
    -webkit-transition: all 600ms ease;
    -khtml-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
}

.nb-ief img:first-child {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 1;
    -webkit-transform: translatex(50%) scalex(2);
    transform: translatex(50%) scalex(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.nb-iefmain {
    overflow: hidden;
}

.nb_blog_item:hover img:first-child, .nb-iefmain:hover img:first-child {
    -webkit-transform: translatex(0) scalex(1);
    transform: translatex(0) scalex(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

.nb_blog_meta_item span {
    line-height: 1px;
}

/* Blog  section End*/
/* Footer  section Start*/
.nb_inpf {
    min-height: 62px;
    height: 100%;
    border: none;
    border-bottom: 1px solid var(--main-color);
    border-radius: 5px;
}

.nbv2_footer_top_logo ::placeholder {
    color: var(--Secendary) !important;
}

.nbv2_footer_input i {
    right: 20px;
    transition: all .5s;
}

.nbv2_footer_input .form-control:focus {
    background-color: #f99d1b44;
    box-shadow: 0 0 0 0;
}

.nbv2_footer_top_logo p {
    padding: 30px 0px;
}

.nbv2_footer_rl_post_img img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.nbv2_footer_top_link ul li {
    padding-top: 10px;
}

.nbv2_footer_top_link ul li:first-child {
    padding-top: 0px;
}

.nbv2_footer_bottom {
    border-top: 1px solid #ffffff30;
}

.nbv2_footer_top {
    padding-top: 80px;
    padding-bottom: 58px;
}

/* Footer  section End*/
/* text Animation Start */
.nb_animation_text_link {
    overflow: hidden;
    position: relative;
    display: inline-block;
}

.nb_animation_text_link::before,
.nb_animation_text_link::after {
    content: '';
    position: absolute;
    width: 100%;
    left: 0;
}

.nb_animation_text_link::before {
    background-color: var(--main-color);
    height: 2px;
    bottom: 0;
    transform-origin: 100% 50%;
    transform: scaleX(0);
    transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
}

.nb_animation_text_link::after {
    content: attr(data-replace);
    height: 100%;
    top: 0;
    transform-origin: 100% 50%;
    transform: translate3d(200%, 0, 0);
    transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
    color: var(--main-color);
}

.nb_animation_text_link:hover::before {
    transform-origin: 0% 50%;
    transform: scaleX(1);
}

.nb_animation_text_link:hover::after {
    transform: translate3d(0, 0, 0);
}

.nb_animation_text_link .nb_animation_text_linksp {
    display: inline-block;
    transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
}

.nb_animation_text_link:hover .nb_animation_text_linksp {
    transform: translate3d(-200%, 0, 0);
}

/* Animation Two */
.nb_animation_title_main {
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    padding: 0;
    overflow: hidden;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}

.nb_animation_title_main > * {
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.nb_animation_title_main:hover .nb_animation_title_main_non {
    -webkit-transform: translatey(-100%);
    transform: translatey(-100%);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";

}

.nb_animation_title_main_hbr {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--main-color);
    -webkit-transform: translatey(100%);
    transform: translatey(100%);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.nb_animation_title_main:hover .nb_animation_title_main_hbr {
    position: absolute;
    top: 0;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translatey(0%);
    transform: translatey(0%);
}

/* Text Animation Three */
.nv_loop_animation {
    background: linear-gradient(to right, var(--main-color) 0, var(--main-color) 40%, var(--White-color) 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: newanimation 3s infinite linear;
    animation-fill-mode: forwards;
    -webkit-text-size-adjust: none;
}

/* Text Animation Four */
.nb_btn_hover_all {
    display: inline-block;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: color .5s;
    z-index: 0;
}

.nb_btn_hover_all:before {
    content: "";
    position: absolute;
    z-index: -1;
    background: var(--main-color);
    height: 150px;
    width: 200px;
    border-radius: 50%;
}

.nb_btn_hover_all:hover {
    color: var(--White-color);
}

.nb_btn_hover_all:before {
    top: 100%;
    left: 100%;
    transition: all .7s;
}

.nb_btn_hover_all:hover:before {
    top: -30px;
    left: -87px;
    width: 807px;
}

/* text Animation End */
/* Button Text Ulta */
/* About Start */
/* Header Section Start */
.nb-abg {
    background: var(--body-color);
}

.nb-darkv1 .nb__navmenu > ul li a {
    color: var(--white-color);
}

.nb-darkv1 .nb__navmenu > ul li.has-submenu::after {
    color: var(--white-color);
    /* Header Section End */
}

/* About Bredcrumb Start */
.nb_bredcrumb_wrapper {
    width: 100%;
    background-image: linear-gradient(rgb(0 0 0 / 50%), rgb(0 0 0 / 50%)), url(../images/bredcrumb.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.nb_bredcrumb_wrapper_container {
    display: flex;
    align-items: center;
    max-height: 308px;
    height: 308px;
}

/*.nb-about-area::after{*/
/*  content: "";*/
/*  background-color: #0E0E0E;*/
/*  position: absolute;*/
/*  z-index: 5;*/
/*  top: 0;*/
/*  left: 0;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  opacity: 0.80;*/
/*}*/
/* About Bredcrumb End */

/* About  Start */


/* nb-service-area start */
.nb-service-area {
    width: 100%;
    height: 308px;
    background: url(../images/service-banner.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 2;
}

.nb-service-area::after {
    content: "";
    background-color: #0E0E0E;
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.80;
}

.nb-service-container {
    position: relative;
    z-index: 10;
}

.nb-service-row {
    height: 308px;
    align-items: center;
}

.nb-service-contain h4 {
    color: var(--White-color);
    font-family: var(--heading-font);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 41.6px;
    text-transform: capitalize;
}

.nb-service-contain-link {
    text-align: end;
}

.nb-service-contain-link a {
    color: inherit;
    text-decoration: none;
    margin-right: 19px;
    transition: all 0.60s;
    color: var(--White-color);
    font-family: var(--heading-font);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    text-transform: capitalize;
}

.nb-service-contain-link a:hover {
    color: var(--main-color);
}

.nb-service-contain-link span {
    margin-right: 19px;
    color: var(--White-color);
}


.nb-service-info-area {
    padding: 150px 0;
}

.nb-service-info-contain {
    border-radius: 5px;
    background: #181818;
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
    padding: 60px;
}

.nb-service-info-contain-img {
    width: 850px;
    height: 480px;
}

.nb-service-info-contain-img img {
    width: 100%;
    height: 100%;
}

.nb-service-info-contain-box1 {
    margin-bottom: 40px;
}

.nb-service-info-contain-box1 h6 {
    color: var(--White-color);
    font-family: var(--heading-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 27px;
}

.nb-service-info-contain-box1 h4 {
    color: var(--White-color);
    font-family: var(--heading-font);
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
    text-transform: capitalize;
}

.nb-service-info-contain-box1 p {
    color: #BCBCBC;
    font-family: var(--body-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.nb-service-info-contain-box2 {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.nb-service-info-contain-box2-img {
    width: 48%;
    height: 100%;
}

.nb-service-info-contain-box2-img img {
    width: 100%;
    height: 100%;
}

.nb-service-info-contain-box2-text {
    width: 47.50%;
    height: auto;
}

.nb-service-info-contain-box2-h4 {
    color: var(--White-color);
    font-family: var(--heading-font);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 41.6px;
    text-transform: capitalize;
}

.nb-service-info-contain-box2-p1 {
    color: var(--White-color);
    font-family: var(--body-font);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.4px;
}


.nb-service-info-contain-box2-p2 {
    color: #BCBCBC;
    font-family: var(--body-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.nb-service-info-contain-box2-main-p {
    color: #BCBCBC;
    font-family: var(--body-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.nb-service-info-contain-box3-h4 {
    color: var(--White-color);
    font-family: var(--heading-font);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 41.6px;
    text-transform: capitalize;
}

.nb-service-info-contain-box3-ul {
    display: grid;
    grid-template-columns: auto auto;
    gap: 20px;
    list-style: none;
    padding: 0;
}

.nb-service-info-contain-box3-ul li {
    color: #BCBCBC;
    font-family: var(--body-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.nb-button-hover-link {
    margin-top: 42px;
}

.nb-button-hover-link a {
    color: var(--White-color);
    text-align: center;
    font-family: var(--heading-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 1.28px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    border: 0px solid var(--White-color);
    background: var(--main-color);
    padding: 15px 30px;
    position: relative;
    z-index: 5;
}

.nb-button-hover-link a:before {
    background: var(--White-color) !important;
}

.nb-button-hover-link a:hover {

    color: var(--main-color) !important;
}

.nb-service-list-items {
    list-style: none;
    padding: 0;
}

.nb-service-list-items li {
    color: var(--White-color);
    font-family: var(--heading-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 1.28px;
    text-transform: uppercase;
    border-radius: 5px;
    border: 2px solid #181818;
    max-width: 410px;
    height: 58px;
    display: flex;
    align-items: center;
    padding-left: 30px;
    margin-bottom: 10px;
    width: 100%;
}

.nb-service-list-items li:hover {
    border-color: var(--main-color);
    background: #181818;
}


.nb-service-download-items-box {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    border-bottom: 1px solid #bcbcbc33;
}

.nb-service-download-items-box:last-child {
    border: none;
}

.nb-service-download-items {
    border-radius: 5px;
    background: #181818;
    padding: 40px;
    margin-top: 40px;
}

.nb-service-download-items h4 {
    color: var(--White-color);
    font-family: var(--heading-font);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    text-transform: capitalize;
}

.nb-service-download-items a {
    text-decoration: none;
    display: flex;
    justify-content: space-between;
}

.nb-service-download-items-contain {
    display: flex;
    gap: 20px;
}

.nb-service-download-items-contain span h4 {
    color: #BCBCBC;
    font-family: var(--heading-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 27px;
    margin: 0;
}

.nb-service-download-items-contain span p {
    color: #BCBCBC;
    font-family: var(--body-font);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.4px;
    padding-bottom: 20px;
}

.nb-service-download-items-link a {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    border-radius: 5px;
    border: 1px solid #ffffff55;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.nb-service-download-items-link a i {
    color: #BCBCBC;
    font-size: 16px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    opacity: 1;
    width: 14px;
    height: 16px;
}

/* nb-service-area end */
/* nb-project_details-area start */
.nb-project_details-area {
    padding: 150px 0 80px;
}

.nb-project_details-img {
    width: 100%;
    height: auto;
}

.nb-project_details-img img {
    width: 100%;
    height: 100%;
}

.nb-project_details-contain-h4 {
    color: var(--White-color);
    font-family: var(--White-color);
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
    text-transform: capitalize;
    padding-left: 18px;
}

.nb-project_details-contain-h4:before {
    content: "";
    width: 4px;
    height: 34px;
    background: var(--main-color);
    display: inline-block;
    position: absolute;
    left: 0;
    top: 12px;
}
.nb-project_details-contain .nb-button-hover-link a{
    padding: 20px 30px;
}

.nb-project_details-contain-ul {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.nb-project_details-contain-ul li {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid #ffffff7d;
    padding: 20px 0;
}

.nb-project_details-contain-ul li p {
    display: flex;
    justify-content: space-between;
    width: 18%;
    color: #BCBCBC;
    font-family: var(--body-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    margin: 0;
}

.nb-project_details-contain-ul li h4 {
    color: var(--White-color);
    font-family: var(--heading-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 27px;
    margin: 0;
}

.nb-project_details-contain-p {
    margin-top: 30px;
    color: #BCBCBC;
    font-family: var(--body-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.nb-Related-area {
    padding-bottom: 150px;
}

.nb-Related-contain-h4 {
    color: var(--White-color);
    font-family: var(--heading-font);
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
    text-transform: capitalize;
    margin-bottom: 40px;
}

.nb-Related-box {
    display: flex;
    border-radius: 5px;
    background: #181818;
}

.nb-Related-box-img {
    max-width: 100%;
    height: 100%;
}

.nb-Related-box-contain {
    padding: 20px 0px 20px 35px;
}

.nb-Related-box-contain h4 {
    color: var(--White-color);
    font-family: var(--heading-font);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 41.6px;
    text-transform: capitalize;
    position: relative;
}

.nb-Related-box-contain h4::before {
    content: "";
    position: absolute;
    top: 10px;
    left: -17px;
    width: 4px;
    height: 19px;
    background-color: var(--main-color);
    display: block;
}

.nb-Related-box-contain h6 {
    color: var(--White-color);
    font-family: var(--body-font);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.4px;
}

.nb-Related-box-contain p {
    color: #BCBCBC;
    font-family: Rubik;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    margin: 0;
    width: 297px;
}

/* nb-project_details-area End  */
/* nb-faq-area Start  */

.nb-faq-contain {
    margin-bottom: 60px;
}

.nb-faq-contain p {
    color: var(--main-color);
    text-align: center;
    font-family: var(--heading-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 27px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.nb-faq-contain h4 {
    color: var(--White-color);
    text-align: center;
    font-family: var(--heading-font);
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
    text-transform: capitalize;
}

.nb-accordion-item-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.nb-accordion-item {
    width: 49%;
    margin-bottom: 40px;
    background-color: transparent;
    border: none;
}

.nb-accordion-item-button {
    color: var(--white-color);
    font-family: var(--nb-h-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 27px;
    border: none;
    background-color: transparent;
}

.nb-accordion-item-p {
    color: #BCBCBC;
    font-family: var(--body-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.nb-contact-contain h6 {
    color: var(--main-color);
    font-family: var(--body-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    position: relative;
    margin-left: 24px;
}

.nb-contact-contain h6::before {
    content: "";
    position: absolute;
    top: 13px;
    left: -24px;
    display: block;
    width: 14px;
    height: 1px;
    background-color: var(--main-color);
}

.nb-contact-contain h4 {
    color: var(--White-color);
    font-family: var(--nb-h-font);
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
    text-transform: capitalize;
}

.nb-contact-contain p {
    color: #BCBCBC;
    font-family: var(--body-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.nb-contact-contain-ul {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    margin-bottom: 0;
}

.nb-contact-contain-ul li {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.nb-contact-contain-ul li:last-child {
    margin-bottom: 0;
}

.nb-contact-contain-ul-icon {
    width: 91px;
    height: 91px;
    border-radius: 5px;
    border: 2px solid #616670;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--main-color);
}

.nb-contact-contain-ul-text h4 {
    color: var(--White-color);
    font-family: var(--nb-h-font);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.nb-contact-contain-ul-text p {
    color: #BCBCBC;
    font-family: var(--body-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    width: 256px;
}

.nb-contact-contain-ul-text a {
    text-decoration: none;
    color: #BCBCBC;
    font-family: var(--body-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;

}

.nb-contact-contain-form input {
    width: 100%;
    height: 70px;
    border-radius: 5px;
    background: #0E0E0E;
    color: var(--White-color);
    font-family: var(--body-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 20px;
    border: none;
    padding: 20px 30px;
}

.nb-contact-contain-form input::placeholder {
    color: var(--White-color);
}

.nb-contact-contain-form textarea {
    width: 100%;
    height: 140px;
    border-radius: 5px;
    background: #0E0E0E;
    color: var(--White-color);
    font-family: var(--body-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 20px;
    border: none;
    padding: 20px 30px;
}

.nb-contact-contain-form textarea::placeholder {
    color: var(--White-color);
}

.nb-contact-contain-button {
    color: var(--White-color);
    text-align: center;
    font-family: var(--nb-h-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 1.28px;
    text-transform: uppercase;
    background-color: var(--main-color);
    width: 100%;
    padding: 10px 30px;
}

.nb-contact-contain-button:hover {
    color: var(--main-color) !important;
}

.nb-contact-contain-button:before {
    background: var(--White-color) !important;
}

.nb-admin-banner {
    width: 100%;
    height: 411px;
}

.nb-admin-box-ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.nb-admin-box {
    display: flex;
    gap: 10px;
    align-items: center;
    text-decoration: none;
    color: initial;
}

.nb-admin-box-icons i {
    color: var(--main-color);
    font-size: 14px;
}

.nb-admin-box-contain h4 {
    color: var(--White-color);
    font-family: var(--nb-h-font);
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.nb-blog-info-contain {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.nb-blog-info {
    border-radius: 5px;
    border-left: 1px solid var(--main-color);
    background: var(--dark-color);
    box-shadow: 0px 2px 6.4px -1px rgba(19, 16, 34, 0.03), 0px 4.4px 12px -1px rgba(19, 16, 34, 0.06);
    width: 70.7%;
    height: 207px;
    position: relative;
}

.nb-blog-info span {
    position: absolute;
    right: 48px;
    bottom: 38px;
}

.nb-blog-info-list-item {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.nb-blog-info-list-item li {
    width: 48%;
}

.nb-Category-link {
    width: 100%;
    height: 100px;
    border-top: 1px solid #ffffff8c;
    border-bottom: 1px solid #ffffff8c;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 63px;
}

.nb-Category-link-ul-1 {
    padding: 0;
    list-style: none;
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

.nb-Category-link-a {
    color: var(--White-color);
    font-family: var(--body-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    text-decoration: none;
    border-radius: 5px;
    padding: 5px 10px;
    border: 1px solid #f6f6f685;
    transition: all 0.70s;
}

.nb-Category-link-a:hover {
    color: var(--main-color);
    border-color: var(--main-color);
}

.nb-Category-link-ul-2 {
    padding: 0;
    list-style: none;
    display: flex;
    gap: 6px;
    margin-bottom: 0;
}

.nb-Category-link-icons {
    border: 1px solid #f6f6f685;
    border-radius: 5px;
    width: 65px;
    height: 40px;
    display: flex;
    width: 65px;
    height: 40px;
    justify-content: center;
    align-items: center;

}

.nb-Category-link-icons.nb-btna i {
    font-size: 20px !important;
    color: var(--White-color);
}

.nb-Category-link-ul-2 .nb-btna-hbr {
    overflow: hidden;
}

.nb-Category-link-ul-2 .nb-btna-hbr:hover .nb-Category-link-icons i {
    color: var(--main-color);
}

.nb-Category-link-ul-2 .nb-btna-hbr:hover .nb-Category-link-icons {
    border-color: var(--main-color);
}

.nb-blog-form-area {
    width: 100%;
    height: auto;
    border-radius: 5px;
    background:  #181818;
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
}

.nb-blog-form-contain h4 {
    color: var(--White-color);
    font-family: var(--nb-h-font);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 41.6px;
    text-transform: capitalize;
    margin-bottom: 38px;
}

.nb-blog-form-contain p {
    color: #BCBCBC;
    font-family: var(--body-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.nb-blog-form {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.nb-blog-form-input {
    width: 31.6%;
    height: 50px;
    border-radius: 5px;
    background: #0E0E0E;
    border: none;
    color: var(--White-color);
    font-family: var(--body-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    padding: 10px 20px;
}

.nb-blog-form-input::placeholder {
    color: var(--White-color);
    font-family: var(--body-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.nb-blog-form-textarea::placeholder {
    color: var(--White-color);
    font-family: var(--body-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.nb-blog-form-textarea {
    width: 100%;
    height: 167px;
    border-radius: 5px;
    background: #0E0E0E;
    border: none;
    color: var(--White-color);
    font-family: var(--body-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    padding: 10px 20px;
}

.nb-blog-form-checkbox {
    margin-right: 10px;
    width: 15px;
    height: 15px;
    background-color: white;
    border-radius: 38%;
    vertical-align: middle;
    border: 2px solid #ddd;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
}

.nb-blog-form-checkbox:checked {
    background-color: var(--main-color);
}

.nb-blog-form-label {
    color: #BCBCBC;
    font-family: var(--body-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.nb-blog-form-button {
    width: auto;
    padding: 9px 30px;
    border-radius: 5px;
    border: 0;
}

.nb-comment-area-title h4 {
    color: var(--White-color);
    font-family: var(--nb-h-font);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 41.6px;
    text-transform: capitalize;
}

.nb-comment-area-ul {
    list-style: none;
    padding: 0;
}

.nb-comment-area-ul li {
    display: flex;
    gap: 30px;
    border-top: 1px solid #ffffff52;
    padding: 30px 0 35px;
}

.nb-comment-area-ul li:last-child {
    border-bottom: 1px solid #ffffff52;
}

.nb-comment-area-ul-padding {
    padding-left: 80px !important;
}

.nb-comment-contain-img img {
    border-radius: 50%;
    width: 104px;
}

.nb-comment-contain-img {
    width: 160px;
}

.nb-comment-contain h4 {
    color: var(--White-color);
    font-family: var(--nb-h-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 27px;
    margin-bottom: 10px;
}

.nb-comment-contain p {
    color: #BCBCBC;
    font-family: var(--body-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 15px;
}

.nb-comment-contain-span {
    display: flex;
    gap: 30px;
}

.nb-comment-contain-span p {
    color: var(--White-color);
    font-family: Rubik;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.4px;
    margin: 0;
}

.nb-comment-contain-span a {
    color: var(--main-color);
    font-family: var(--nb-h-font);
    text-decoration: none;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 1.28px;
    text-transform: uppercase;
    margin-top: -5px;
}

.nb__service-title-color a {
    color: var(--White-color);
}

.nb__service-info-color p {
    color: #BCBCBC;
}

.nb__service-box-color {
    background-color: #181818;
    margin-bottom: 30px;
}

.nb__service-icon-color {
    background-color: #242424;
}

.nb__service-icon-color svg path {
    fill: var(--main-color);
}

.nb__service-box:hover .nb__service-icon-color svg path {
    fill: #fff;
}

.nb__service-icon:before {
    background-color: var(--main-color);
}
.nb-hbra:hover{
    color:  var(--main-color);
}
/* media start  */


/* media end  */


/* Sabuj End */