/*** GENERIC CSS ***/
body {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: 1.6;
    color: var(--text-light);
    background: var(--black);
}

a {
    -webkit-transition: var(--transition);
    transition: var(--transition);
    text-decoration: none;
    color: var(--white);
    cursor: pointer;
}

a i {
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

a:hover {
    text-decoration: none;
    color: var(--white);
}

a:focus {
    text-decoration: none;
}

button {
    outline: 0 !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    cursor: pointer;
}

button:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

section {
    overflow: hidden;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--white);
    font-weight: 400;
    font-family: var(--font-display);
}

:root {
    /* Colors */
    --black: #0A0A0A;
    --black-soft: #111111;
    --black-card: #151515;
 
    --cream: #F3F1EA;
    --white: #FFFFFF;
 
    --text-dark: #111111;
    --text-light: #FFFFFF;
    --text-muted: #A5A5A5;
 
    --lime: #D7FF00;
 
    --border-dark: #292929;
    --border-light: #D6D3CB;
 
 
    /* Typography */
    --font-display: "Space Grotesk", sans-serif;
    --font-body: "Manrope", sans-serif;
 
 
    /* Font sizes */
    --fs-hero: clamp(48px, 6vw, 70px);
    --fs-h2: clamp(38px, 4vw, 20px);
    --fs-h3: clamp(26px, 2.5vw, 38px);
    --fs-h4: clamp(20px, 1.8vw, 26px);
 
    --fs-body-lg: 20px;
    --fs-body: 16px;
    --fs-small: 14px;
    --fs-xs: 12px;
 
 
    /* Layout */
    --container: 1440px;
    --gutter: 40px;
 
 
    /* Animation */
    --transition: 0.4s cubic-bezier(.16,1,.3,1);
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1;
}
 
h1, .h1 {
    font-size: var(--fs-hero);
    text-transform: uppercase;
    font-family: var(--font-body);
    line-height: 1.11;
    letter-spacing: 1px;
}
 
h1 span, .h1 span {
    color: var(--lime);
}
 
h2, .h2 {
    font-size: var(--fs-h2);
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 1px;
}
 
h3, .h3 {
    font-size: var(--fs-h3);
    line-height: 1.25;
}
 
h4, .h4 {
    font-size: var(--fs-h4);
}

p {
    color: var(--text-muted);
    font-size: var(--fs-body);
    margin-bottom: 15px;
    line-height: 1.8;
}

p:last-child {
    margin-bottom: 0;
}

img {
    max-width: 100%;
    height: auto;
}

.btn-default {
    display: inline-block;
    color: var(--lime);
    font-size: var(--fs-small);
    line-height: 60px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    border-radius: 0px;
    padding: 0px 20px 0px 30px;
    background: none;
    border: 1px solid var(--lime);
}

.btn-default span {
    display: inline-block;
    vertical-align: middle;
    width: 60px;
    line-height: 58px;
    text-align: center;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    margin-right: 20px;
    transition: var(--transition);
}

.btn-default img {
    max-height: 20px;
    transition: var(--transition);
    margin-left: 18px;
}

.btn-default:hover {
    color: var(--black);
    background: var(--lime);
}

.btn-default:hover span {
    color: var(--white);
    background: var(--lime);
    border-color: var(--lime);
}

.btn-default:hover img {
    filter: invert(1) brightness(0);
}

.btn-default.yellow {
    color: var(--black);
    background: var(--lime);
}

.btn-default.yellow img {
    filter: invert(1) brightness(0);
}

.btn-default.yellow:hover {
    color: var(--lime);
    background: transparent;
}

.btn-default.yellow:hover img {
    filter: none;
}


.btn-default.submit-btn {
    color: var(--black);
    background: var(--lime);
}

.btn-default.submit-btn img {
    filter: invert(1) brightness(0);
}

.btn-default.submit-btn:hover {
    color: var(--lime);
    background: transparent;
}

.btn-default.submit-btn:hover img {
    filter: none;
}

.section-title h6, .section-title .h6 {
    color: var(--lime);
    font-family: var(--font-body);
    font-size: var(--fs-body);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0px 0px 20px 0px;
}

.section-title h2 span {
    color: var(--lime);
}

.section-title h6 span.border-dot, .section-title .h6 span.border-dot {
    display: inline-block;
    vertical-align: middle;
    width: 105px;
    height: 1px;
    background: var(--lime);
    position: relative;
    margin-left: 15px;
}

.section-title h6 span.border-dot:before, .section-title .h6 span.border-dot:before {
    content: '';
    position: absolute;
    top: -2px;
    left: -1px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(215, 255, 0, .5);
    background: var(--lime);
}

.section-title h6 span.border-dot:after,.section-title .h6 span.border-dot:after {
    content: '';
    position: absolute;
    top: -1px;
    left: 50px;
    width: 55px;
    height: 3px;
    background: var(--lime);
}

.section-title h6 span.border-dot.left, .section-title .h6 span.border-dot.left {
    margin-left: 0px;
    margin-right: 15px;
}

.section-title h6 span.border-dot.left:before, .section-title .h6 span.border-dot.left:before {
    left: auto;
    right: -1px;
}

.section-title h6 span.border-dot.left:after, .section-title .h6 span.border-dot.left:after {
    left: auto;
    right: 50px;
}

/*** SIDEMENU ***/
.menu-btn {
    min-width: 40px;
    min-height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--lime);
}

.menu-btn span {
    display: block;
    width: 70%;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    background: var(--white) !important;
    height: 1px;
    margin: 4px auto;
    border-radius: 0px;
    transition: var(--transition);
}

.menu-btn:hover {
    background: var(--lime) !important;
}

.menu-btn:hover span {
    background: var(--black) !important;
}

.menu-btn div {
    position: relative;
    top: 0px;
    vertical-align: middle;
    width: 23px;
}

.side-menu h3 {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 600;
}

.side-menu .contact-links {
    margin-bottom: 10px;
}

.side-menu {
    background: var(--black-card);
    position: fixed;
    top: 0px;
    right: -150%;
    width: 340px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    height: 100%;
    z-index: 9999999;
    padding: 55px 35px;
    overflow: hidden;
    overflow-y: auto;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.15);
    border-left: 1px solid var(--border-dark);
    border-right: 1px solid var(--border-dark);
}

.side-menu.intro {
    right: 0px;
}

.side-menu ul.main-menu {
    padding-left: 0px;
    margin-top: 30px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-dark);
}

.side-menu ul.main-menu.navbar-nav li {
    list-style: none;
    display: inline-block;
    width: 100%;
    margin: 0;
    margin-bottom: 0px;
}

.side-menu ul.main-menu li a {
    display: inline-block;
    width: 100%;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    font-size: var(--fs-body);
    padding: 7px 0px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    font-weight: 400;
}

.side-menu ul.main-menu li a i {
    margin-right: 20px;
    font-size: var(--fs-body-lg);
}

.side-menu ul.main-menu li:hover > a,
.side-menu ul.main-menu li.active > a {
    background: none;
    color: var(--lime);
}

.side-menu a.CloseBtn {
    float: right;
    color: var(--white);
    /* background: var(--lime); */
    font-size: 22px;
    margin: 0;
    position: relative;
    z-index: 99;
    cursor: pointer;
    position: absolute;
    top: 25px;
    right: 14px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 0px 0px 0px 5px;
}

.side-menu a.CloseBtn:before,
.side-menu a.CloseBtn:after {
    content: "";
    display: block;
    width: 22px;
    height: 2px;
    background-color: currentColor;
    position: absolute;
    left: 50%;
    top: 50%;
}

.side-menu a.CloseBtn:before {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -moz-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

.side-menu a.CloseBtn:after {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -moz-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.side-menu .menu-item-has-children {
    cursor: pointer;
}

.side-menu .menu-item-has-children > a {
    pointer-events: none;
    cursor: pointer;
    position: relative;
}

.side-menu .menu-item-has-children:hover > a,
.side-menu .menu-item-has-children.active > a {
    color: var(--lime) !important;
}

.side-menu .menu-item-has-children > a:after {
    content: "";
    width: 25px;
    height: 25px;
    background: var(--lime);
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    top: 50%;
    transform: translate(0px, -50%);
}

.side-menu .menu-item-has-children > a:before {
    position: absolute;
    top: 0;
    right: 0;
    color: var(--white);
    font-size: 27px;
    z-index: 99;
    top: 51%;
    transform: translate(0px, -50%);
    right: 6px;
    content: "\f067";
    display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
}

.side-menu .menu-item-has-children.current > a:before {
    content: "\f068";
}

.side-menu ul.navbar-nav > li.menu-item-has-children ul.sub-menu {
    opacity: 1;
    visibility: visible !important;
    position: relative !important;
    left: 0 !important;
    -webkit-transform: translateY(0) !important;
    -ms-transform: translateY(0) !important;
    transform: translateY(0) !important;
    background: var(--white);
    border: none;
    border-radius: 0;
    padding: 0px 0px !important;
    display: none !important;
    top: 0 !important;
}

.side-menu ul.navbar-nav > li.current ul.sub-menu {
    display: block !important;
    pointer-events: auto;
}

.side-menu ul.navbar-nav > li > ul.sub-menu > li {
    margin: 0;
}

.side-menu ul.navbar-nav > li > ul.sub-menu > li a {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
    padding: 10px 15px !important;
}

.side-menu ul.navbar-nav > li > ul.sub-menu > li:hover a,
.side-menu ul.navbar-nav > li > ul.sub-menu > li.current_page_item > a,
.side-menu ul.navbar-nav > li > ul.sub-menu > li.active > a {
    color: var(--white) !important;
    background: var(--lime) !important;
}

.side-menu ul li.current ul.sub-menu {
    display: block !important;
    pointer-events: auto;
}

.side-menu h3 {
    margin-top: 40px;
    color: var(--lime);
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 15px;
}

.side-menu .contact-list li {
    padding-bottom: 5px;
}

.side-menu .contact-list li i {
    color: var(--lime);
}

.side-menu .contact-list li a {
    color: var(--white);
    font-size: var(--fs-small);
}

.side-menu .contact-list li a i {
    font-size: var(--fs-body);
}

.contact-list.social {
    margin-top: 30px;
}

.contact-list.social li a i {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-light);
    color: var(--white);
    font-size: var(--fs-body);
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
    margin-right: 10px;
}

.contact-list.social li a:hover i {
    background: var(--lime);
    border-color: var(--lime);
    color: var(--black);
}

.contact-list {
    color: var(--white);
    padding: 0;
    margin: 0;
    list-style: none;
}

.contact-list li {
    margin: 0px 0px 5px 0px;
    color: var(--white);
    display: flex;
    max-width: max-content;
    align-items: start;
}

.contact-list li a {
    display: inline-block;
    color: var(--text-muted);
}

.contact-list li a:hover,
.contact-list li:hover i {
    color: var(--lime);
}

.contact-list li i {
    color: var(--white);
    color: var(--lime);
    min-width: 30px;
    min-height: 30px;
    border-radius: 30px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    display: block;
    position: relative;
    top: -3px;
    margin-right: 0px;
}

@media only screen and (min-width:768px) {

}

/*** HEADER ***/
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    transition: var(--transition);
    padding: 22px 30px;
}

header .main-nav {
    padding: 0px 0px;
}

header.fixed {
    position: fixed;
    z-index: 999;
    background: var(--black);
    padding: 25px 30px;
}

header.home-header.fixed .navbar-brand {
    opacity: 1;
    pointer-events: auto;
}

.navbar-brand {
    padding: 0px !important;
}

.navbar-brand img,
header .logo img {
    max-height: 55px;
}

.navbar {
    padding: 0px 0px;
}

.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-item {
    position: relative;
}

.navbar-light .navbar-nav.center > .nav-item {
    margin: 0px 27px;
}

.navbar-light .navbar-nav > .nav-item {
    display: inline-block;
    vertical-align: top;
}

.navbar-light .navbar-nav > .nav-item > .nav-link.dropdown-toggle:after {
    font-size: 18px;
}

.navbar-light .navbar-nav > .nav-item > .nav-link {
    position: relative;
    color: var(--white);
    font-size: 14px;
    line-height: 1;
    transition: var(--transition);
    text-transform: uppercase;
    padding: 20px 0px !important;
    letter-spacing: 1px;
    font-weight: 600;
}

.navbar-light .navbar-nav > .nav-item > .nav-link::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    margin-left: -3px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lime);
    opacity: 0;
}

.navbar-light .navbar-nav > .nav-item:hover > .nav-link::before,
.navbar-light .navbar-nav > .nav-item.active > .nav-link::before {
    opacity: 1;
}

.navbar-light .navbar-nav > .nav-item ul.sub-menu {
    border: none;
    border-radius: 0px !important;
    text-align: left;
    display: block;
    list-style: none;
    margin: 0;
    position: absolute;
    overflow: hidden;
    left: calc(50% - 100px);
    min-width: 180px;
    padding: 0px;
    padding-top: 10px;
    opacity: 0px;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    background: none;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    white-space: nowrap;
}

.navbar-light .navbar-nav>.nav-item:hover>.nav-link,
.navbar-light .navbar-nav>.nav-item.active>.nav-link {
    color: var(--lime) !important;
}

.navbar-light .navbar-nav > .nav-item:hover ul.sub-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.navbar-light .navbar-nav > .nav-item ul.sub-menu > li {
    width: 100%;
    position: relative;
    margin-bottom: 1px;
}

.navbar-light .navbar-nav > .nav-item ul.sub-menu > li:last-child {
    border: none;
}

.navbar-light .navbar-nav > .nav-item ul.sub-menu > li > .nav-link {
    transition: var(--transition);
    display: inline-block;
    clear: both;
    margin: 0px;
    width: 100%;
    position: relative;
    line-height: 40px;
    padding: 0px 18px !important;
    font-size: 13px;
    border: none;
    white-space: nowrap;
    color: var(--white) !important;
    background: var(--black);
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: center;
}

.navbar-light .navbar-nav > .nav-item ul.sub-menu > li:hover > a,
.navbar-light .navbar-nav > .nav-item ul.sub-menu > li.active > a {
    color: var(--black) !important;
    background: var(--white) !important;
}

/*** HERO BANNER ***/
.hero-banner {
    background-color: #0d0d0e;
    padding: 230px 0px 50px 0px;
    position: relative;
}

.slogan-tag {
    position: absolute;
    color: var(--text-muted);
    font-size: 21px;
    font-weight: 100;
    top: 50%;
    left: -188px;
    transform: rotate(-90deg);
    letter-spacing: 10px;
}

.slogan-tag::before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 60px;
    height: 1px;
    background: var(--lime);
    vertical-align: middle;
    margin-right: 20px;
}

.hero-banner h1 {
    margin: 20px 0px 0px 0px;
}

.hero-banner p {
    margin: 25px 0px 45px 0px;
}

.video-btn {
    display: inline-block;
    color: var(--white);
    font-size: var(--fs-small);
    letter-spacing: 1px;
    font-weight: 500;
    text-align: center;
    border-radius: 0px;
    padding: 0px 0px 0px 0px;
    margin-left: 30px;
}

.video-btn span {
    display: inline-block;
    border: 1px solid var(--border-light);
    width: 56px;
    line-height: 56px;
    text-align: center;
    border-radius: 50%;
    padding-left: 3px;
    margin-right: 15px;
    transition: var(--transition);
}

.video-btn img {
    max-height: 20px;
    transition: var(--transition);
}

.video-btn:hover {
    color: var(--lime);
}

.video-btn:hover span {
    background: var(--lime);
    border-color: var(--lime);
}

.video-btn:hover img {
    filter: invert(1) brightness(0);
}

/*** TRUSTED PARTNER ***/
.trusted-partner {
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
    padding: 50px 0px;
}

.trusted-partner .section-title h2 {
    margin-bottom: 20px;
    font-size: 30px;
}

.trusted-partner .section-title p {
    font-size: var(--fs-small);
}

.counter-item {
    padding: 0px 40px;
}

.counter-item .icon {
    max-height: 60px;
    margin-bottom: 15px;
}

/*** SERVICES ***/
.services {
    padding: 80px 0px;
}

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

.services .line-p {
    border-left: 1px solid var(--lime);
    padding: 10px 50px;
    margin: 0px;
}

.services-box {
    display: inline-block;
    width: 100%;
    height: calc(100% - 40px);
    margin-bottom: 40px;
    /* border: 1px solid rgba(215, 255, 0, .3); */
    padding: 30px 100px 30px 30px;
    position: relative;
    /* clipped corners */
    /* clip-path: polygon(
        0 0,
        calc(100% - 20px) 0,
        100% 20px,
        100% 100%,
        20px 100%,
        0 calc(100% - 20px)
    ); */
    transition: all .3s;
    z-index: 2;
}

.services-box:hover {
    filter: drop-shadow(0px 0px 24px rgba(215, 255, 0, .2))
        drop-shadow(0px 0px 30px rgba(215, 255, 0, .1));
}

.services-box * {
    position: relative;
    z-index: 5;
}

.services-box .box-border {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(215, 255, 0, .2);
    z-index: 1 !important;
    clip-path: polygon(
        0 0,
        calc(100% - 20px) 0,
        100% 20px,
        100% 100%,
        20px 100%,
        0 calc(100% - 20px)
    );
    pointer-events: none;
}

@property --border-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

.services-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: conic-gradient(
        from var(--border-angle),
        transparent 0deg,
        transparent 70deg,
        var(--lime) 100deg,
        var(--lime) 130deg,
        transparent 160deg,
        transparent 360deg
    );

    clip-path: polygon(
        0 0,
        calc(100% - 20px) 0,
        100% 20px,
        100% 100%,
        20px 100%,
        0 calc(100% - 20px)
    );
    z-index: 1 !important;
    pointer-events: none;
    opacity: .25;
}

/* Inner black area */
.services-box::after {
    content: "";
    position: absolute;
    inset: 2px;
    background: var(--black);
    clip-path: polygon(
        0 0,
        calc(100% - 20px) 0,
        100% 20px,
        100% 100%,
        20px 100%,
        0 calc(100% - 20px)
    );
    z-index: 2 !important;
    pointer-events: none;
}

/* =================================
   HOVER ANIMATION
================================= */
.services-box:hover::before {
    opacity: 1;
    animation: borderMove 2s linear infinite;
    filter:
        drop-shadow(0 0 3px var(--lime))
        drop-shadow(0 0 8px rgba(215, 255, 0, .6));
}

@keyframes borderMove {
    from {
        --border-angle: 0deg;
    }
    to {
        --border-angle: 360deg;
    }
}

.services-box p {
    min-height: 80px;
}

.services-box .number {
    position: absolute;
    top: 40px;
    right: 30px;
    color: var(--text-muted);
    font-size: var(--fs-body);
    font-family: var(--font-body);
}

.services-box .icon {
    max-height: 70px;
    margin-bottom: 15px;
	width:auto;
}

.learn-btn {
    display: inline-block;
    color: var(--lime);
    font-size: var(--fs-small);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--lime);
    padding-bottom: 8px;
    margin-top: 20px;
}

.learn-btn img {
    max-height: 15px;
    margin-left: 30px;
}


/*** WHY CHOOSE ***/
.why-choose {
    padding: 80px 0px;
	position:relative;
}

.why-choose::before {
	content:'';
	background:linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0));
	width:75%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
}

.why-choose .section-title {
    margin-bottom: 50px;
}

.why-choose .section-title p {
    width: 100%;
}

.whychoose-box {
    display: flex;
    align-items: start;
    gap: 10px;
    padding: 0px 20px;
    border-right: 1px solid rgba(255, 255, 255, .5);
}

.whychoose-box.last {
    border: none;
}

.whychoose-box .icon {
    max-height: 60px;
}

.whychoose-box h3 {
    color: var(--white);
    font-size: var(--fs-body);
    text-transform: uppercase;
    margin: 20px 0px 15px 0px;
    font-weight: 400;
}

.whychoose-box p {
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0px;
}

.why-choose .btn-default {
    margin-top: 50px;
}

/*** PORTFOLIO ***/
.portfolio {
    padding: 80px 0px;
    border-bottom: 1px solid var(--border-dark);
}

.owl-carousel .owl-item img {
    display: inline-block;
    width: auto;
}

.portfolio-box {
    display: inline-block;
    width: 100%;
    border: 1px solid var(--border-dark);
    background: #f5f5f5;
    padding: 30px 30px 30px 30px;
    padding: 190px 25px 25px 25px;
    border-radius: 5px;
    position: relative;
}

.portfolio-box:hover::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, .3) 11%, rgba(0, 0, 0, 1) 73%);
}

.portfolio-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg,rgba(0, 0, 0, 1) 7%, rgba(41, 0, 8, 1) 61%);

    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 11%, rgba(0, 0, 0, 1) 73%);
    z-index: 1;
    pointer-events: none;
    transition: var(--transition);
}

.portfolio-box .text {
    position: relative;
    z-index: 2;
}

.portfolio-box .icon {
    display: inline-block;
    background: var(--black);
    width: 60px;
    height: 60px;
    padding-top: 10px;
    border-radius: 50%;
    text-align: center;
    margin-bottom: 20px;
    border: 1px solid var(--lime);
}

.portfolio-box .icon img {
    max-height: 40px;
}

.portfolio-box h3 {
    color: var(--white);
    font-size: var(--fs-body);
    letter-spacing: 1px;
    margin-bottom: 7px;
}

.portfolio-box p {
    color: var(--lime);
    font-size: var(--fs-xs);
}

.portfolio-box .arrow {
    position: absolute;
    bottom: 3px;
    right: -8px;
    max-height: 13px;
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 30px;
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 15px 0px 15px;
    background: var(--white);
    border-radius: 50%;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--lime);
}


/*** OUR PROCESS ***/
.our-process {
    padding: 80px 0px;
}

.our-process .section-title {
    margin-bottom: 40px;
}

.our-process .space {
    padding: 0px 80px;
}

.our-process .process-wrapper {
    border: 1px solid var(--border-dark);
    border-radius: 10px;
    display: flex;
}

.our-process .right-side {
    padding: 50px 80px;
    width: calc(100% - 210px);
}

.our-process .space-border {
    padding: 50px 20px;
    border-radius: 10px;
    border: 1px solid var(--border-dark);
    margin-top: 80px;
}

.our-process .space-border>div {
    padding: 0px;
}

.process-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0px 20px;
    border-right: 1px solid rgba(255, 255, 255, .5);
    border-right: 1px solid var(--border-dark);
    border-right: 1px solid var(--border-dark);
}

.process-box .icon {
    display: inline-block;
    background: var(--black);
    width: 60px;
    min-width:60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-align: center;
    border: 1px solid var(--lime);
    border: 1px solid rgba(215, 255, 0,.3);
}

.process-box .icon img {
    max-height: 38px;
}

.process-box.last {
    border: none;
}

.our-process .main-img {
    position: relative;
}

.our-process .main-img .icon-img {
    position: absolute;
    top: 51%;
    left: 50%;
    transform: translate(-56%, -47%);
    max-height: 105px;
}

.process-box h3 {
    color: var(--lime);
    font-size: var(--fs-body);
    text-transform: uppercase;
    margin: 0px 0px 15px 0px;
    font-weight: 400;
}

.process-box p {
    color: var(--white);
    font-size: var(--fs-small);
    line-height: 1.8;
    margin: 0px;
}

.process-wrapper {
    position: relative;
    /* display: flex;
    width: 100%;
    min-height: 460px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 7px;
    background: #080808;
    overflow: hidden; */
}

.process-text .big-number {
    margin-bottom: 5px;
    font-size: 110px;
    line-height: 0.8;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
}

.process-text h2 {
    position: relative;
    margin: 10px 0px 12px 0px;
    color: var(--lime);
}

.process-text p {
    color: var(--white);
}

.yellow-line {
    width: 52px;
    height: 2px;
    margin-bottom: 20px;
    background: var(--lime);
}

ul.list {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.list li {
    position: relative;
    color: var(--white);
    font-size: var(--fs-small);
    margin-bottom: 10px;
    padding-left: 28px;
}

ul.list li::before {
    content: "\f00c";
    color: var(--lime);
    position: absolute;
    left: 0;
    top: 1px;
    font-family: FontAwesome;
}

.process-pagination {
    width: 210px;
    flex: 0 0 210px;
    padding: 15px 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.process-page:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.process-page {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    min-height: 73px;
    padding: 10px 10px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

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

.process-number {
    width: 38px;
    height: 38px;
    color: var(--text-muted);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-small);
    transition: var(--transition);
}

.process-name {
    font-size: var(--fs-small);
    font-weight: 500;
    transition: var(--transition);
}

.process-page.active {
    color: var(--lime);
}

.process-page.active .process-number {
    background: var(--lime);
    color: var(--text-dark);
}

.process-page.active .process-name {
    color: var(--lime);
}

.our-process .owl-theme .owl-nav [class*=owl-] {
    display: inline-block;
    cursor: pointer;
    position: absolute;
    top: 50%;
    margin-top: -25px;
    width: 53px;
    height: 54px;
    left: -370px;
    border: 1px solid var(--lime);
    background: none;
    border-radius: 50%;
}

.our-process .owl-theme .owl-nav [class*=owl-] img {
    max-height: 15px;
}

.our-process .owl-theme .owl-nav [class*=owl-].owl-prev {
    transform: rotate(180deg);
}

.our-process .owl-theme .owl-nav [class*=owl-].owl-next {
    left: auto;
    right: -160px;
}


/*** TESTIMONIALS ***/
.testimonials {
    padding: 70px 0px;
}

.testi-box {
    display: flex;
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--border-dark);
    background: var(--black-soft);
    padding: 20px 25px;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
}

.testi-box .stars {
    color: var(--lime);
    font-size: var(--fs-small);
}

.testi-box .stars i {
    margin-right: 5px;
}

.testi-box .chat-icon {
    position: absolute;
    top: 25px;
    right: 25px;
    color: var(--white);
    margin-right: 5px;
}

.testi-box p {
    color: var(--white);
    font-size: var(--fs-small);
    margin: 10px 0px 15px 0px;
    min-height: 101px;
}

.testi-box .user-box {
    display: flex;
    align-items: center;
}

.testi-box .user-box>img {
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background: #ccc;
    margin-right: 10px;
}

.testi-box .user-box h3 {
    color: var(--cream);
    font-size: var(--fs-small);
    margin: 0px 0px 0px 0px;
}

.testi-box .user-box p {
    color: var(--cream);
    font-size: var(--fs-small);
    margin: 0px 0px 0px 0px;
    min-height: inherit;
}

.testimonials .owl-theme .owl-nav [class*=owl-] {
    display: inline-block;
    cursor: pointer;
    position: absolute;
    top: 50%;
    margin-top: -35px;
    width: 45px;
    height: 45px;
    left: -65px;
    border: 1px solid var(--lime);
    background: none;
    border-radius: 50%;
}

.testimonials .owl-theme .owl-nav [class*=owl-] img {
    max-height: 13px;
}

.testimonials .owl-theme .owl-nav [class*=owl-].owl-prev {
    transform: rotate(180deg);
}

.testimonials .owl-theme .owl-nav [class*=owl-].owl-next {
    left: auto;
    right: -65px;
}

.testimonials .owl-stage, .our-blogs .owl-stage {
    display: flex;
}

.testimonials .owl-stage .item, .our-blogs .owl-stage .item {
    display: flex;
    flex: 1 0 auto;
    height: 100%;
    justify-content: space-between;
}

/*** OUR BLOG ***/
.our-blogs {
    padding: 30px 0px;
}

.blog-box {
    display: inline-block;
    width: 100%;
    border: 1px solid var(--border-dark);
    background: #f5f5f5;
    padding: 20px 10px 15px 20px;
    border-radius: 5px;
    position: relative;
}

.blog-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, .85) 100%, rgba(0, 0, 0, .85) 100%);
    z-index: 1;
    pointer-events: none;
    transition: var(--transition);
    opacity: 0;
}

.blog-box:hover::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, .9) 100%, rgba(0, 0, 0, .9) 100%);
}

.blog-box .img img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
    aspect-ratio: 1 / 0.55;
}

.blog-box .text {
    position: relative;
    z-index: 2;
}

.blog-box h6, .blog-box .h6 {
    color: var(--lime);
    font-size: var(--fs-small);
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.blog-box h3 {
    color: var(--white);
    font-size: var(--fs-body);
    letter-spacing: 1px;
    margin-bottom: 19px;
    line-height: 1.5;
    width: 80%;
}

.blog-box p {
    color: var(--white);
    font-size: var(--fs-small);
}

.blog-box .arrow {
    position: absolute;
    bottom: 3px;
    right: 10px;
    max-height: 13px;
    filter: invert(3.5) brightness(5.5);
}

.our-blogs .owl-theme .owl-nav [class*=owl-] {
    display: inline-block;
    cursor: pointer;
    position: absolute;
    top: 50%;
    margin-top: -35px;
    width: 45px;
    height: 45px;
    left: -65px;
    border: 1px solid var(--lime);
    background: none;
    border-radius: 50%;
}

.our-blogs .owl-theme .owl-nav [class*=owl-] img {
    max-height: 13px;
}

.our-blogs .owl-theme .owl-nav [class*=owl-].owl-prev {
    transform: rotate(180deg);
}

.our-blogs .owl-theme .owl-nav [class*=owl-].owl-next {
    left: auto;
    right: -65px;
}

/*** CTA ***/
.cta {
    padding: 80px 0px;
    background: url(../img/bg-schedule.png) 50% 50% no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.cta .row {
    position: relative;
    z-index: 2;
}

.cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    z-index: 1;
    pointer-events: none;
    transition: var(--transition);
}

.cta p {
    color: var(--white);
    margin: 10px 0px 20px 0px;
}

/*** FOOTER ***/
.footer {
    background: var(--black-card);
    padding: 50px 0px 0px 0px;
}

.footer .logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer .logo img {
    max-height: 50px;
}

.footer p {
    color: var(--text-muted);
    font-size: var(--fs-small);
}

.footer .socials a {
    display: inline-block;
    width: 35px;
    height: 35px;
    border: 1px solid var(--border-dark);
    color: var(--white);
    font-size: var(--fs-small);
    text-align: center;
    line-height: 33px;
    border-radius: 50%;
    margin-right: 10px;
}

.footer .socials a:hover {
    background: var(--lime);
    border-color: var(--lime);
    color: var(--black);
}

.footer h3 {
    color: var(--white);
    font-size: var(--fs-body);
    text-transform: uppercase;
}

.footer .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-menu li {
    margin: 0px 0px 0px 0px;
}

.footer .footer-menu li a {
    color: var(--text-muted);
    font-size: var(--fs-small);
}

.footer .footer-menu li a:hover {
    color: var(--lime);
}

.footer .btn-default {
    margin-top: 10px;
    font-size: var(--fs-xs);
    line-height: 50px;
    border-radius: 0px;
    padding: 0px 20px 0px 25px;
}

.footer .copyright {
    border-top: 1px solid var(--border-dark);
    margin-top: 20px;
    padding: 20px 0px;
}

.footer .copyright>div {
    padding: 0px 0px;
}

.footer .copyright p a {
    color: var(--text-muted);
}

.footer .copyright p a:hover {
    color: var(--lime);
}

.footer .copyright p span {
    padding: 0px 20px;
}

.footer .copyright p i {
    color: var(--lime);
    padding: 0px 5px;
}


/*** MOBILE FOOTER ACCORDION ***/
.mobile-footer {
    display: none;
    border-top: 1px solid rgba(255,255,255,0.15);
    margin-top: 20px;
}

.footer-accordion {
    border: 0;
    border-radius: 0px !important;
}

.footer-accordion .accordion-item {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    border-radius: 0px !important;
}

.footer-accordion .accordion-header {
    margin: 0;
    border-radius: 0px !important;
}

.footer-accordion .accordion-button {
    position: relative;
    background: transparent;
    color: var(--white);
    border: 0;
    box-shadow: none !important;
    padding: 16px 35px 16px 0;
    font-size: var(--fs-small);
    font-weight: 500;
    line-height: 1.2;
    border-radius: 0px !important;
}

/*** Remove Bootstrap default blue focus ***/
.footer-accordion .accordion-button:focus {
    box-shadow: none;
}

/*** Remove Bootstrap default background ***/
.footer-accordion .accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--white);
}

/*** CUSTOM ARROW ***/
.footer-accordion .accordion-button::after {
    position: absolute;
    right: 2px;
    top: 50%;
    width: 8px;
    height: 8px;
    margin: 0;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    background-image: none;
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.3s ease;
}

/*** OPEN ARROW ***/
.footer-accordion .accordion-button:not(.collapsed)::after {
    transform: translateY(-30%) rotate(225deg);
}

/*** ACCORDION CONTENT ***/
.footer-accordion .accordion-body {
    padding: 0 0 15px 0;
}

.footer-accordion .footer-menu a:hover {
    color: var(--white);
}

/*** MOBILE BREAKPOINT ***/
@media (max-width: 767px) {
.desktop-footer {
    display: none;
}

.mobile-footer {
    display: block;
}
}

/*** PAGE BANNER ***/
.page-banner {
    height: 60vh;
    padding-top: 120px;
    margin-top: 98px;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    pointer-events: none;
}

.page-banner .row {
    position: relative;
    z-index: 2;
}

.page-banner .h1 {
    margin: 0px 0px 0px 0px;
}

.page-banner .line {
    display: inline-block;
    width: 80px;
    height: 2px;
    background: var(--lime);
    margin: 20px 0px 20px 0px;
}

.page-banner p, .page-banner .p {
    font-size: var(--fs-body-lg);
    margin: 0px 0px 0px 0px;
}

/*** CONTACT ***/
.contact-info {
    padding: 60px 0px;
}

.contact-space-border {
    padding: 30px 0px;
    border-radius: 10px;
    border: 1px solid var(--border-dark);
    margin: 0 auto;
    margin-bottom: 25px;
}

.contact-space-border>div {
    padding: 0px;
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0px 40px;
    border-right: 1px solid rgba(255, 255, 255, .5);
    border-right: 1px solid var(--border-dark);
    border-right: 1px solid var(--border-dark);
}

.contact-box .icon {
    display: inline-block;
}

.contact-box .icon img {
    min-width: 60px;
    width:60px;
}

.contact-box.last {
    border: none;
}

.contact-box h3, .contact-box .h3 {
    color: var(--white);
    font-size: var(--fs-body);
    text-transform: uppercase;
    margin: 0px 0px 5px 0px;
    font-weight: 400;
}

.contact-box p {
    color: var(--white);
    font-size: var(--fs-small);
    line-height: 1.8;
    margin: 0px !important;
}

.contact-box p a:hover {
    color: var(--lime);
}

.contact-info .section-title {
    margin-bottom: 30px;
}

.contact-info .section-title h2 {
    font-size: var(--fs-h3);
}

.contact-card {
    display: inline-block;
    width: 100%;
    height: calc(100% - 25px);
    margin-bottom: 25px;
    padding: 30px 30px 20px 30px;
    border-radius: 10px;
    border: 1px solid var(--border-dark);
}


.form-control {
    border: 1px solid var(--border-dark) !important;
    background: none !important;
    box-shadow: none !important;
    outline: none !important;
    border-radius: 5px;
    height: 60px;
    margin-bottom: 20px;
    padding: 0px 20px;
    font-family: var(--font-body);
    font-size: var(--fs-small);
    color: var(--white) !important;
}

.form-control::-webkit-input-placeholder {
    color: var(--white);
}

textarea.form-control {
    height: 160px;
    padding: 20px 20px;
}

.form-check label {
    font-size: var(--fs-small);
    color: var(--white);
    margin-bottom: 20px;
}

.form-check label a {
    color: var(--lime);
    text-decoration: underline;
}

.form-check-input[type=checkbox] {
    border-radius: .25em;
    border: 1px solid var(--white);
    background-color: transparent;
    box-shadow: none !important;
}

.form-check-input:checked[type=checkbox] {
    filter: invert(1);
}

.form-check-input:checked {
    background-color: var(--black);
    border-color: var(--black);
}

.contactinfo-box {
    display: flex;
    align-items: start;
    gap: 20px;
    padding: 0px 0px;
}

.contactinfo-box .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    height: 80px;
    border-radius: 50%;
    text-align: center;
    border-radius: 10px;
    border: 1px solid var(--border-dark);
}

.contactinfo-box .icon img {
    max-width: 60px;
}

.contactinfo-box.last {
    border: none;
}

.contactinfo-box .text {
    border-bottom: 1px solid var(--border-dark);
    padding: 10px 0px 20px 0px;
    width: 100%;
    margin-bottom: 17px;
}

.contactinfo-box h3 {
    color: var(--white);
    font-size: var(--fs-body);
    margin: 0px 0px 5px 0px;
    font-weight: 400;
}

.contactinfo-box p {
    color: var(--text-muted);
    font-size: var(--fs-small);
    line-height: 1.8;
    margin: 0px;
    width: 70%;
}

.contactinfo-box p a:hover {
    color: var(--lime);
}

.contactinfo-box.last .text {
    margin: 0px;
    border: none;
    padding-bottom: 0px;
}

.contact-info .contact-list li {
    margin-bottom: 15px;
}

.contact-info .contact-list li i {
    font-size: var(--fs-body-lg);
    min-width: 40px;
}

.contact-info .contact-list li a {
    font-size: var(--fs-body);
}

.contact-info .iframe-map {
    height: calc(100% + 50px) !important;
    filter: grayscale(1);
    border-radius: 10px;  
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;  
    position: relative;
    top: -30px;
    right: -30px;
}

.contact-card .form-group {
    position: relative;
    padding: 1px;
    margin-bottom: 20px !important;
}
 
.contact-card .form-group .form-control {
    position: relative;
    z-index: 3;
    margin-bottom: 0px !important;
}
 
.contact-card .form-group .border-animation {
    position: relative;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
 
.contact-card .form-group .border-animation:after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    z-index: 2;
    background: var(--black);
    border-radius: 6px;
}
 
.contact-card .form-group .border-animation::before {
    content: "";
    z-index: 2 !important;
    content: "";
    position: absolute;
    inset: 0;
    background: conic-gradient(
        from var(--border-angle),
        transparent 0deg,
        transparent 70deg,
        var(--lime) 100deg,
        var(--lime) 130deg,
        transparent 160deg,
        transparent 360deg
    );
    z-index: 1 !important;
    pointer-events: none;
    opacity: 0;
    border-radius: 6px;
}
 
.contact-card .form-group .form-control:focus + .border-animation::before, .contact-card .form-group .border-animation.active::before {
    opacity: 1;
    animation: borderMove2 1s linear infinite;
}
 
@keyframes borderMove2 {
    from {
        --border-angle: 0deg;
    }
    to {
        --border-angle: 360deg;
    }
}

/*** BLOG INFO ***/
.blog-info {
    padding: 40px 0px;
}

.blog-info h2, .blog-info .h2 {
    font-size: var(--fs-body);
    margin-top: 15px;
    margin-bottom: 30px;
}

.blog-info h2 span, .blog-info .h2 span {
    color: var(--lime);
}

.blog-box {
    display: inline-block;
    width: 100%;
    height: calc(100% - 20px);
    margin-bottom: 20px;
    padding: 15px 20px 10px 20px;
    border-radius: 10px;
    background: var(--black-card);
    border: 1px solid var(--border-dark);
    overflow: hidden;
}

.blog-info h6 {
    font-size: var(--fs-xs);
    margin-bottom: 10px;
}

.blog-info h3 {
    margin-bottom: 10px;
}

.blog-info p {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    font-size: var(--fs-small);
    margin-bottom: 20px;
}

.blog-info ul.ul-list {
	margin:0px 0px 0px 20px;
	padding:0px;
}

.blog-info ul.ul-list li {
    color: var(--text-muted);
    font-size: var(--fs-small);
    margin-bottom: 10px;
}

.blog-info p.date-time {
    color: var(--white);
    margin: 0px;
}

.blog-info p.date-time span {
    min-width: 50%;
}

.blog-info p.date-time span + span {
    min-width: 50%;
    text-align: right;
}

.blog-info p.date-time img {
    max-height: 20px;
    margin-right: 2px;
}

.bloginner-box {
    display: inline-block;
    width: 100%;
    height: calc(100% - 20px);
    margin-bottom: 20px;
    padding: 15px 20px 10px 20px;
    border-radius: 10px;
    background: var(--black-card);
    border: 1px solid var(--border-dark);
    overflow: hidden;
}

.blog-info .featured-box img {
    margin-bottom: 20px;
}

body.blog .blog-info .featured-box img {
	margin-bottom:0px;
}


.bloginner-box .img img {
    width: 100%;
    border-radius: 10px;
}

.bloginner-box .text {
    position: relative;
    z-index: 2;
    padding-top: 20px;
}

.bloginner-box h6 {
    color: var(--lime);
    font-size: var(--fs-small);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.bloginner-box h3 {
    color: var(--white);
    font-size: var(--fs-body);
    letter-spacing: 1px;
    margin-bottom: 15px;
    line-height: 1.5;
    width: 78%;
}

.bloginner-box p {
    color: var(--text-muted);
    font-size: var(--fs-xs);
}

.pagination {
    background: none;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 25px;
}

.pagination .active>a,
.pagination a:hover {
    z-index: 3;
    border-color: var(--lime);
}

.pagination a {
    position: relative;
    display: flex;
    width: auto;
    color: var(--white);
    background: none;
    border: 1px solid var(--border-dark);
    font-size: var(--fs-small);
    margin: 0px 12px;
    border-radius: 5px;
    padding: 10px 17px;
}

.pagination a img {
    max-width: 20px;
    margin-left: 15px;
    margin-right: 15px;
}

.form-control.input-search {
    height: 50px;
    background: var(--black-card) !important;
    margin-bottom: 40px !important;
}

.btn-search {
    position: absolute;
    top: 12px;
    right: 10px;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}

.btn-search img {
    width: 25px;
}

.category-box {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    padding: 15px 20px 15px 20px;
    border-radius: 10px;
    background: var(--black);
    border: 1px solid var(--border-dark);
    overflow: hidden;
}

.category-box h3 {
    color: var(--white);
    font-size: var(--fs-body);
    text-transform: uppercase;
    margin-top: 10px;
    margin-bottom: 20px;
}

.categories-ul {
    list-style: none;
    padding: 0;
    margin: 0px;
}

.categories-ul li {
    margin: 0px 0px;
}

.categories-ul li a {
    display: inline-block;
    width: 100%;
    margin: 0px 0px;
    padding: 10px 15px;
    border-radius: 5px;
    color: var(--white);
    font-size: var(--fs-small);
}

.categories-ul li a img {
    width: 30px;
    margin-right: 13px;
}

.categories-ul li a span {
    float: right;
    width: 25px;
    height: 25px;
    line-height: 23px;
    text-align: center;
    border: 1px solid var(--lime);
    color: var(--lime);
    font-size: var(--fs-xs);
    border-radius: 50%;
}

.categories-ul li a:hover {
    background: var(--black-card);
}

.featured-box {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    padding: 15px 20px 15px 20px;
    border-radius: 10px;
    background: var(--black);
    border: 1px solid var(--border-dark);
    overflow: hidden;
}

.featured-box h3 {
    color: var(--white);
    font-size: var(--fs-body);
    text-transform: uppercase;
    margin-top: 10px;
    margin-bottom: 20px;
}

.featured-box h6 {
    color: var(--lime);
    font-size: var(--fs-small);
    text-transform: uppercase;
    margin-top: 20px;
    margin-bottom: 15px;
}

.featured-box h4 {
    color: var(--white);
    font-size: var(--fs-body);
    line-height: 1.4;
    margin-bottom: 5px;
}

.featured-box p {
    margin-bottom: 0px;
}

.featured-box .learn-btn {
    font-size: var(--fs-xs);
    letter-spacing: 1px;
    padding-bottom: 5px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.newsletter-box {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    padding: 15px 20px 15px 20px;
    border-radius: 10px;
    background: var(--black);
    border: 1px solid var(--border-dark);
    overflow: hidden;
}

.newsletter-box h3 {
    color: var(--white);
    font-size: var(--fs-body);
    text-transform: uppercase;
    margin-top: 10px;
    margin-bottom: 10px;
}

.newsletter-box p {
    margin: 0px;
    margin-bottom: 10px;
}

.newsletter-box .form-control {
    margin: 0px;
    margin-bottom: 15px;
    height: 45px;
}

.newsletter-box .submit-btn {
    line-height: 45px;
    border-radius: 5px;
    margin-top: 0px;
    margin-bottom: 10px;
}

/*** PAGE BANNER BLOG DETAILS ***/
.page-banner.blog-details-banner {
    padding: 50px 0px 50px 0px;
    height: inherit;
}

.breadcrumb {
    justify-content: center;
}

.breadcrumb-item {
    color: var(--text-muted);
    font-size: var(--fs-small);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--lime);
}

.breadcrumb-item.active {
    color: var(--white);
}

.page-banner.blog-details-banner h6, .page-banner.blog-details-banner .h6 {
    color: var(--lime);
    font-size: var(--fs-small);
    text-transform: uppercase;
    margin: 30px 0px 15px 0px;
}

.page-banner.blog-details-banner h6 img, .page-banner.blog-details-banner .h6 img {
    max-height: 22px;
}

.page-banner.blog-details-banner h1 {
    text-transform: inherit;
}

.page-banner.blog-details-banner p {
    color: var(--white);
    font-size: var(--fs-small);
}

.page-banner.blog-details-banner p img {
    max-height: 20px;
    margin-top: -3px;
    margin-right: 5px;
}

.page-banner.blog-details-banner p span {
    padding: 0px 30px;
    position: relative;
}

.page-banner.blog-details-banner p span:after {
    content: '';
    position: absolute;
    top: 11px;
    right: 0px;
    width: 2px;
    height: 2px;
    background: var(--lime);
    border-radius: 50%;
}

.page-banner.blog-details-banner p span:last-child:after {
    display: none;
}

/*** BLOG DETAILS INFO ***/
.blog-info.blog-details-info {

}

.featured-img-border {
    border: 1px solid var(--border-dark);
    border-radius: 10px;
    margin-bottom: 30px;
}

.blog-info.blog-details-info .social-p {
    color: var(--white);
    font-weight: 500;
}

.blog-info.blog-details-info .social-p a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 33px;
    text-align: center;
    border: 1px solid var(--border-dark);
    color: var(--lime);
    font-size: var(--fs-small);
    border-radius: 50%;
    margin-left: 10px;
}

.blog-info.blog-details-info .text-details h2 {
    color: var(--white);
    font-size: var(--fs-body);
    position: relative;
}

.blog-info.blog-details-info .text-details h2::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    display: inline-block;
    width: 25px;
    height: 1px;
    background: var(--lime);
    margin: 5px 0px 0px 0px;
}

.quote-card {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    padding: 15px 20px 0px 52px;
    border-radius: 10px;
    background: var(--black);
    border: 1px solid var(--border-dark);
    overflow: hidden;
    position: relative;
}

.quote-card .icon {
    color: var(--lime);
    font-size: var(--fs-body);
    position: absolute;
    top: 13px;
    left: 20px;
}

.next-previous {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    padding: 15px 20px 15px 20px;
    border-radius: 10px;
    background: var(--black);
    border: 1px solid var(--border-dark);
    overflow: hidden;
    position: relative;
    display: flex;
}

.next-previous a {
    color: var(--white);
    font-size: var(--fs-xs);
    text-transform: uppercase;
    width: 50%;
    padding: 10px 30px 10px 0px;
}

.next-previous a + a {
    text-align: right;
    border-left: 1px solid var(--border-dark);
    padding: 10px 0px 10px 30px;
}

.next-previous a.first img {
    margin-top: -3px;
    margin-left: 0px;
    margin-right: 5px;
    transform: rotate(180deg);
}

.next-previous a img {
    max-height: 18px;
    margin-top: -3px;
    margin-left: 5px;
}

.next-previous a span {
    display: inline-block;
    color: var(--white);
    font-size: var(--fs-xs);
    text-transform: initial;
    margin-top: 5px;
}

.recent-box {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    padding: 15px 20px 15px 20px;
    border-radius: 10px;
    background: var(--black);
    border: 1px solid var(--border-dark);
    overflow: hidden;
}

.recent-box h3 {
    color: var(--white);
    font-size: var(--fs-body);
    text-transform: uppercase;
    margin-top: 10px;
    margin-bottom: 20px;
}

.recent-card {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.recent-card>.img {
    border-radius: 5px;
    object-fit: cover;
	flex: 0 0 70px;
    width: 70px;
}

.recent-card .text {
	flex: 1;
    min-width: 0;
}

.recent-card h4 {
    color: var(--white);
    font-size: var(--fs-small);
    line-height: 1.4;
    margin-bottom: 5px;
}

.recent-card p {
    color: var(--text-muted);
    font-size: var(--fs-xs);
    margin-top: 10px;
    margin-bottom: 0px;
}

.recent-card p img {
    max-height: 20px;
    margin-right: 5px;
}


/*** PORTFOLIO INFO ***/
.portfolio-info {
    padding: 40px 0px;
}

.main-port-box {
    padding: 25px 10px;
    border-radius: 35px 10px 10px 10px;
    border: 1px solid var(--border-dark);
    margin: 0 auto;
    margin-bottom: 25px;
}

.portfolio-info.stats .main-port-box {
	border-radius:10px;
	background:var(--black);
}

.filter-buttons {
}

.filter-buttons button {
    color: var(--white);
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: 500;
    background: none;
    text-transform: uppercase;
    border: none;
    padding: 0px 20px;
    line-height: 40px;
    border-radius: 40px;
}

.filter-buttons button img {
    height: 21px;
    margin-right: 7px;
}

.filter-buttons button.active {
    background: var(--lime) !important;
    color: var(--black) !important;
}

.filter-buttons button.active img {
    filter: invert(1);
}

.main-port-box .sortby {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid var(--border-dark);
    color: var(--text-muted);
    font-size: var(--fs-small);
    margin: 0 auto;
}

.main-port-box .sortby select {
    appearance: none;
    border: none;
    outline: none !important;
    color: #fff;
    font-family: var(--font-body);
    font-size: var(--fs-small);
    background: url(../img/select-arrow.png) 100% 50% no-repeat !important;
    background-size: ;
    padding-left: 10px;
    min-width: 100px;
}

option {
    color: #000;
}

.portfolioinner-box {
    display: inline-block;
    width: 100%;
    height: calc(100% - 20px);
    margin-bottom: 20px;
    padding: 80px 20px 50px 30px;
    border-radius: 10px;
    background: var(--black-card);
    border: 1px solid var(--border-dark);
    position: relative;
    overflow: hidden;
    display: flex;
}

.portfolioinner-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 100%;
    background:linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0,0,0,0));
    z-index: 2;
    position: none;
}

.portfolioinner-box .link {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    line-height: 38px;
    border-radius: 5px;
    text-align: center;
    z-index: 2;
    background: var(--black-card);
    border: 1px solid var(--border-dark);
}

.portfolioinner-box .img {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: end;
    padding-right: 30px;
}

.portfolioinner-box.right .img {
    justify-content: start;
    padding-left: 30px;
    padding-right: 0px;
}

.portfolioinner-box .img img {
    width: 50% !important;
    object-fit: cover;
}

.portfolioinner-box .text {
    position: relative;
    z-index: 4;
    width: 50%;
	display:flex;
	justify-content:space-between;
	flex-direction:column;
}

.portfolioinner-box .text.right {
    margin-left: auto;
}

.portfolioinner-box h6 {
    color: var(--lime);
    font-size: var(--fs-xs);
    text-transform: uppercase;
    margin: 0px 0px 15px 0px;
}

.portfolioinner-box h3 {
    color: var(--white);
    /* font-size: var(--fs-body-lg); */
    line-height: 1.4;
    margin-bottom: 5px;
}

.portfolioinner-box p {
    color: var(--white);
    font-size: var(--fs-small);
    margin-top: 10px;
    margin-bottom: 20px;
}

.portfolioinner-box .btn-default {
    font-size: var(--fs-xs);
    line-height: 50px;
    padding: 0px 17px 0px 19px;
}

.contact-space-border.large {
    padding: 30px 35px;
}

.contact-space-border.large h3 {
    font-size: var(--fs-h3);
    margin-bottom: 0px;
}

.projectmind-box {
    padding: 30px 50px 30px 0px;
    border-radius: 10px;
    border: 1px solid var(--border-dark);
    margin: 0 auto;
    margin-bottom: 25px;
}

.projectmind-box .icon {
    display: inline-block;
    text-align: end;
    min-width: 70px;
    height: 70px;
    line-height: 68px;
    border-radius: 50%;
    text-align: center;
    border-radius: 10px;
    border: 1px solid var(--lime);
}

.projectmind-box .icon img {
    max-width: 60px;
}

.projectmind-box.big {
    padding: 0;
}

.projectmind-box.big {
    overflow: hidden;
}

.projectmind-box.big .bigimg {
    float: left;
    height: 150px;
    display: inline-block;
    width: 100%;
    background: url(../img/project-lion.png) 100% 50% no-repeat;
    background-size: cover;
}

/*** SERVICES BANNER ***/
.services-banner {
    background: url(../img/services-hero-lion.jpg) center right no-repeat;
    background-size: auto 100%;
    background-color: #020202;
    padding: 50px 0px;
    margin-top: 98px;
}

.services-banner h6 {
    font-size: var(--fs-small);
}

.services-banner h1 {
    text-transform: inherit;
    font-size: var(--fs-h2);
    line-height: 1.3;
}

.services-banner .line {
    display: inline-block;
    width: 80px;
    height: 2px;
    background: var(--lime);
    margin: 20px 0px 0px 0px;
}

.services-banner p, body.blog .page-banner p {
    margin: 10px 0px 25px 0px;
    width: 90%;
    font-size: var(--fs-small);
}

.contact-box .counter-item {
    padding: 0 !important;
}

/*** SERVICES INFO ***/
.services-info {
    padding: 40px 0px 0px 0px;
}


/*** PRICESS DETAILS INFO ***/
.process-details-info {
    padding: 40px 0px 0px 0px;
}

.processinner-box {
    display: inline-block;
    width: 100%;
    position: relative;
}

.processinner-box .line {
    position: absolute;
    top: 40px;
    right: -7px;
}

.processinner-box .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    border-right: 1px solid rgba(255, 255, 255, .5);
    border: 1px solid var(--lime);
    border: 1px solid var(--border-dark);
    border-radius: 50%;
    padding-top: 5px;
}

.processinner-box .icon img {
    max-height: 70px;
    filter: brightness(0) saturate(100%) invert(99%) sepia(1%) saturate(0%) hue-rotate(182deg) brightness(102%) contrast(103%);
}

.processinner-box h4 {
    color: var(--lime);
    margin-top: 20px;
}

/*** TECHNOLOGIES SLIDER ***/
.technologies-slider {
    padding: 0px 0px 30px 0px;
    border-radius: 10px;
    border: 1px solid var(--border-dark);
    margin: 0 auto;
    margin-bottom: 25px;
}

.technologies-slider h6, .technologies-slider .h6 {
    display: inline-block;
    color: var(--lime);
    text-transform: uppercase;
    background: var(--black);
    padding: 5px 10px;
    top: -15px;
    position: relative;
    margin: 0px 0px 10px 0px;
}

.technologies-slider .logos-carousel .item .logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}

.technologies-slider .logos-carousel .item img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

/*** ABOUT BANNER ***/
.services-banner.about-banner {
    background-color: #030303;
    padding: 50px 0px 150px 0px;
    margin-top: 98px;
	position:relative;
}

.services-banner.about-banner::before {
	content:'';
	background:linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0));
	width:100%;
	height:100%;
	position:absolute;
	top:0px;
	left:0px;
}

.stats {
    margin-top:-75px;
}

.stats .contact-space-border {
    background: var(--black);
}

/*** OUR STORY ***/
.our-story {
    padding: 50px 0px 0px 0px;
}

.our-story .btn-default {
    margin-top: 20px;
}

/*** TIMELINE INFO ***/
.timeline-info {
    padding: 100px 0px 100px 0px;
}

.timeline-info .space>div {
    padding: 0px;
}

.timeline-box {
    display: inline-block;
    width: 100%;
    position: relative;
}

.timeline-box .line {
    position: absolute;
    top: 35px;
    left: 80px;
    z-index: 1;
}

.timeline-box .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border-right: 1px solid rgba(255, 255, 255, .5);
    border: 1px solid var(--lime);
    border-radius: 50%;
    margin: 0 auto;
    padding-top: 5px;
    background: var(--black);
    position: relative;
    z-index: 2;
}

.timeline-box .icon img {
    max-height: 58px;
    filter: brightness(0) invert(1);
	border:0px;
	background:none;
}

.timeline-box .text {
    padding: 0px 25px;
    border-right: 1px solid var(--border-dark);
}

.timeline-box .text.last {
    border: 0px;
}

.timeline-box .h4 {
    color: var(--lime);
    margin-top: 20px;
}

.timeline-box p {
    font-size: var(--fs-small);
}

/*** OUR TEAM ***/
.our-team {
    padding: 0px 0px 0px 0px;
}

.our-team .section-title {
    margin-bottom: 30px;
}

.team-box {
    display: inline-block;
    width: 100%;
    height: calc(100% - 20px);
    margin-bottom: 20px;
    border-radius: 10px;
    border: 1px solid var(--border-dark);
    position: relative;
}

.team-box::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: 40px;
    height: 40px;
    border-left: 1px solid var(--lime);
    border-top: 1px solid var(--lime);
    border-radius: 10px 0px 0px 0px;
    pointer-events: none;
}

.team-box .arrow {
    position: absolute;
    top: 15px;
    left: 15px;
}

.team-box .img {
    display: inline-block;
    width: 100%;
    border-bottom:1px solid var(--border-dark);
    margin-bottom: 20px;
}

.team-box .img img {
    display: inline-block;
    width: 100%;
    margin-top: -50px;
    filter: grayscale(1);    
    aspect-ratio: 1 / 1.15;
    object-fit: cover;
    object-position: top center;
}

.team-box .text {
    display: inline-block;
    width: 100%;
    padding: 0px 40px 20px 20px;
}

.team-box .text .h4 {
    color: var(--white);
    font-size: var(--fs-body-lg);
    margin: 0px 0px 0px 0px;
}

.team-box .text .h6 {
    color: var(--lime);
    font-size: var(--fs-small);
    margin: 10px 0px 10px 0px;
}

.team-box .text p {
    color: var(--text-muted);
    font-size: var(--fs-small);
    margin: 0px 0px 20px 0px;
}

.team-box .text .contact-list.social a i {
    border-color: var(--lime);
    color: var(--lime);
}

.team-box .text .contact-list.social a:hover i {
    background: var(--lime);
    color: var(--black);
}

.our-team .btn-default {
    margin-top: 20px;
}

footer .privacy-menu {
	margin:0px;
	padding:0px;
	list-style:none;
}

footer .privacy-menu li {
	margin:0px 5px;
	display:inline-block;
}

footer .privacy-menu li a {	
    color: var(--text-muted);
    font-size: var(--fs-small);
}

.stats .contact-box .h3 {
	font-size:var(--fs-h3);
}

.stats.smaller .h3 {
	font-size:var(--fs-body);
}

.general-page ul {
	margin:0px 0px 0px 20px;
	padding:0px;
}

.general-page ul li {
    color: var(--text-muted);
    font-size: var(--fs-small);
    margin-bottom: 10px;
}

.general-page h3, .general-page .h3{
    font-size: var(--fs-body);
    margin-top: 15px;
    margin-bottom: 30px;
}

.general-page p {
	display:inline-block;
	width:100%;
}

.technologies-slider {
	margin:100px 0px 50px 0px;
}

.faq-box .accordion-item {
	background:none !important;
	border-radius:0px !important;
	margin-bottom:10px !important;
	border-color:var(--text-muted);
}

.faq-box .accordion-button {
	background:none !important;
	color:var(--white);
	text-transform:uppercase;
	border-radius:0px !important;
	box-shadow:none !important;
	border-bottom:1px solid var(--text-muted);
}

.faq-box .accordion-button::after {
	filter:brightness(0) invert(1);
}

body.page-template-template-services-details .our-story {
	margin-bottom:50px;
}

body.page-template-template-services-details .navbar-light .navbar-nav > .nav-item#menu-item-120 .nav-link, body.single-post .navbar-light .navbar-nav > .nav-item#menu-item-117 .nav-link, body.single-portfolios .navbar-light .navbar-nav > .nav-item#menu-item-119 .nav-link {
	 color: var(--lime) !important;
}

body.page-template-template-services-details .navbar-light .navbar-nav > .nav-item#menu-item-120 .nav-link::before, body.single-post .navbar-light .navbar-nav > .nav-item#menu-item-117 .nav-link:before, body.single-portfolios .navbar-light .navbar-nav > .nav-item#menu-item-119 .nav-link:before {
	opacity:1;
}

body.error404 .services-banner .h1 {
    text-transform: inherit;
    font-size: var(--fs-h2);
    line-height: 1.3;
}

body.error404 .services-banner .big {
    text-transform: inherit;
    font-size:150px;
    line-height: 1;
	font-weight:bold;
}

body.single-portfolios .processinner-box .line {
	right:unset;
	left:40px;
	z-index:-1;
}

body.single-portfolios .processinner-box .icon {
	background:var(--black);
}

.contact-card .form-group select.form-control {
    background: url(../img/right-arrow.svg) 94% 50% no-repeat !important;
    background-size: 15px auto !important;
}