/*!
Theme Name: ljinnovate
Theme URI: http://vrinsoft.com/
Author: Underscores.me
Author URI: http://vrinsoft.com/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: ljinnovate
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

ljinnovate is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/* Basic styles */
:root {scroll-behavior: unset;}
* { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
*, ::before, ::after { box-sizing:border-box; -webkit-box-sizing:border-box; }
html { 
    overflow:hidden; 
    overflow-y:auto; 
}

/* Variables */
* {
	box-sizing: border-box;
	margin: var(--global-margin);
	padding: var(--global-padding);
	text-decoration: none;
}

body {
	font-family: var(--global-font-family);
	font-weight: var(--global-font-weight);
	font-size: var(--global-normal-font-size);
	line-height: 26px;
	color: var(--primary-color);	
	background-color: var(--secondary-color);	
	margin: var(--global-margin);
	padding: var(--global-padding) !important;
}
img {
	max-width: var(--global-width);
	display: var(--global-display-style-block);
	margin: var(--global-margin);
}
ul {
	list-style: var(--global-list-style);
	margin: var(--global-margin);
	padding: var(--global-padding);
}
li {
	list-style: var(--global-list-style);
}
a {
	font-weight: var(--global-font-weight-regular);
	font-size: var(--global-medium-font-size);
	line-height: 19px;
	display: var(--global-display-style-block);
	text-decoration: none;
	color: var(--primary-color);
	transition: var(--global-transition);
}
a:focus {
	outline:none;
}
a:active, a:hover {
	color: var(--common-white-color);
	outline:0;
	transition: var(--global-transition);
}
p a, p strong a {
	display: inline-block;
}
a:hover, a:focus {
	opacity:1;
}
input,
textarea {
  font-size: var(--global-medium-font-size);
  line-height: normal;
  font-weight: var(--global-font-weight-regular);
  color: var(--common-white-color);
  border: none;
  border-bottom: 1px solid rgb(255 255 255 / 50%);
  padding: 0 0 12px 0;
  background: transparent;
  width: 100%;
}
input::placeholder,
textarea::placeholder {
  color: rgb(152 162 168 / 50%);
  opacity: 1;
}
input::-webkit-input-placeholder, 
textarea::-moz-placeholder {
  color: rgb(152 162 168 / 50%);
  opacity: 1;
}
article, aside, details, figcaption, figure, footer, header, nav, section, summary { 
    display: var(--global-display-style-block); 
}
audio, canvas, video { 
    display: var(--global-display-style-inline-block); 
}
html, button, input, select, textarea {
	font-family: var(--global-font-family);
}
input:focus, textarea:focus, select:focus {
	border-color:var(--primary-color);
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(assets/images/icon_down.svg) !important;
  background-repeat: no-repeat !important;
  background-position: right 12px bottom 12px !important;
  line-height: 1.2;
  cursor: pointer;
  border: none;
  border-bottom: 1px solid rgb(255 255 255 / 50%);
  padding: 0 0 12px 0;
  background: transparent;
  width: 100%;
  font-size: var(--global-medium-font-size);
  color: var(--common-grayscale-color);
}
textarea:focus-visible,
select:focus-visible { 
  outline: none;
}
iframe {
  border:0;
  width:100%;
  border-radius: 0;
}
svg:not(:root) {
  overflow:hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6, address, p, pre, blockquote, dl, dd, menu, ol, ul, table, caption, hr { 
  	margin: 0 0 16px 0; 
}
h1, h2, h3, h4, h5, h6 {
	font-family: var(--global-font-family);
  	color: var(--common-white-color);
}
h1 {
	font-size: var(--global-xxl-font-size);
  line-height: 72px;
  text-align: center;
  font-weight: var(--global-font-weight-bold);
  font-style: var(--normal-font-family);
	margin-bottom: 8px;
}
h2 {
	font-size: var(--global-xl-font-size);
  line-height: 48px;
  font-weight: var(--global-font-weight-bold);
  font-style: var(--normal-font-family);
	margin-bottom: 30px;
}
h3 {
  font-size: var(--global-xl-two-font-size);
  line-height: 44px;
  font-weight: var(--global-font-weight-regular);
  font-style: var(--normal-font-family);
}
h4 {
  font-size: var(--global-lager-font-size);
  line-height: 32px;
  font-weight: var(--global-font-weight-regular);
  font-style: var(--normal-font-family);
}
h5 {
  font-size: var(--global-normal-one-font-size);
  line-height: 36px;
  font-weight: var(--global-font-weight-regular);
  font-style: var(--normal-font-family);
}
h6 {
  font-size: var(--global-medium-font-size);
  line-height: 20px;
  font-weight: var(--global-font-weight-bold);
  font-style: var(--normal-font-family);
}
p {
    font-size: var(--global-medium-font-size);
    color: var(--common-grayscale-color);
    line-height: 26px;
    font-weight: var(--global-font-weight-regular);
    font-style: var(--normal-font-family);
}
p br {
	display: var(--global-display-none);
}
input:focus {
	outline: none;
}
p:last-child {
  margin-bottom:0;
}
/* End Typography */

/* Button */
.solid-button,
.widget_search .wp-block-search__button {
  font-weight: 600;
  font-size: var(--global-medium-font-size);
  line-height: 20px;
  padding: 12px 32px;
  cursor: pointer;
  background: var(--primary-color);
  color: var(--common-white-color);
  transition: var(--global-transition);
  border-radius: 8px;
  display: var(--global-display-inline-flex);
  align-items: var(--alignment-center);
  justify-content: var(--justify-content-center);
}
.solid-button:hover{
	transition: var(--global-transition);
	background: var(--common-white-color);
	color: var(--primary-color);
}
/* End Button */

/* Spacing Style */
.py-60 {padding-top: 60px;padding-bottom: 60px;}
.pt-60 {padding-top: 60px;}
.pb-60 {padding-bottom: 60px;}
.mb-40{margin-bottom: 40px;}
.mt-30{margin-top: 30px;}
.mb-30{margin-bottom: 30px;}
.mb-16{margin-bottom: 16px;}
.mb-12{margin-bottom: 12px;}
/* End Spacing Style */

.site-content {
  padding-top: 0;
}
.container {
  margin: 0 auto;
  max-width: 1140px;
}

/* Header */
.header-top {
	position: var(--position-fixed);
	top: 0;
	left: 0;
	width: var(--global-width);
	z-index: 99;
	padding: 18px 0;
}
.header-top.smaller {
  box-shadow: 0px 15px 20px rgb(50 50 50 / 6%);
  transition: var(--global-transition);
  background: rgb(17 19 22 / 90%);
  padding: 12px 0;
  backdrop-filter: blur(20px);
}
.main-navigation .menu-toggle {
  display: var(--global-display-none);
}
.main-navigation .site-nav {
  display: var(--global-display-style);
  justify-content: var(--justify-content-end);
  align-items: var(--alignment-center);
  margin: var(--global-margin-zero);
  padding: var(--global-padding-zero);
}
.main-navigation .site-nav > .menu-item {
  margin-right: 40px;
  flex-shrink: 0;
  position: var(--position-relative);
}
.main-navigation .nav-menu li:last-child {
  margin-right: 0;
}
.main-navigation .nav-menu li a {
  font-weight: var(--global-font-weight-semibold);
  font-size: var(--global-medium-font-size);
  line-height: 19px;
  color: var(--common-white-color);
  text-transform: capitalize;
  transition: var(--global-transition);
  display: var(--global-display-style);
  align-items: var(--alignment-center);
  justify-content: var(--justify-content-center);
}
.main-navigation .nav-menu li:hover a,
.main-navigation .nav-menu li a:focus,
.main-navigation .nav-menu li a.active {
  color: var(--primary-color);
  transition: var(--global-transition);
}
.main-navigation ul li .sub-menu {
  position: var(--position-absolute);
  top: 35px;
  left: var(--global-value-zero);
  width: 280px;
  border-radius: 8px;
  opacity: var(--global-value-zero);
  visibility: hidden;
  transform: translate(0, 10px);
  transition: var(--global-transition);
  display: var(--global-display-style-block);
  background: var(--common-black-color);
  box-shadow: none;
  z-index: 4;
  overflow: hidden;
}
.main-navigation ul li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(0,0);
  transition: var(--global-transition);
}
.main-navigation ul li .sub-menu li {
  width: var(--global-width);
}
.main-navigation ul li .sub-menu li > a {
  display: var(--global-display-style-block);
  border-bottom: 1px solid #333;
  padding: 10px 12px;
  line-height: 20px;
  position: var(--position-relative);
  transition: var(--global-transition);
  left: var(--global-value-zero);
  font-size: var(--global-small-font-size);
  color: var(--common-white-color) !important;
}
.main-navigation ul li .sub-menu li > a:hover {
  color: var(--primary-color) !important;
  background-color: var(--secondary-color);
}
.main-navigation ul li .sub-menu li:last-child a {
  border-bottom: var(--global-value-zero);
}
.main-navigation ul li.menu-item-has-children > a {
  pointer-events: none;
}
.main-navigation ul li.menu-item-has-children > a:after {
  content: '';
  -webkit-mask-image: url(assets/images/icon_down.svg);
  mask-image: url(assets/images/icon_down.svg);
  background-repeat: no-repeat;
  -webkit-mask-size: cover;
  display: var(--global-display-style-block);
  background: var(--common-white-color);
  width: 15px;
  height: 15px;
  margin: 2px var(--global-value-zero) var(--global-value-zero) 6px;
  transition: var(--global-transition);
}
.main-navigation ul li.menu-item-has-children:hover > a:after,
.main-navigation ul li.menu-item-has-children > a.active:after {
  background: var(--primary-color);
}
.site-header .btn-wrapper {
  display: var(--global-display-style);
  justify-content: var(--justify-content-end);
  align-items: var(--alignment-center);
}
.site-header .btn-wrapper a {
  flex-shrink: 0;
}
.site-header .contact-number {
  margin-right: 28px;
  font-weight: var(--global-font-weight-semibold);
  color: var(--common-white-color);
  line-height: 20px;
}
.site-header .contact-number:hover {
  color: var(--primary-color);
}
.site-header .solid-button {
  font-weight: var(--global-font-weight-semibold);
  /* background: var(--common-black-color);
  color: var(--primary-color); */
}
.site-header .solid-button:hover {
  background: var(--common-white-color);
  color: var(--primary-color);
}
.mobile_only {
  display: none;
}
.scrollidisable {
  position: fixed;
  width: 100%;
}
.btn-check:active + .btn-primary:focus, .btn-check:checked + .btn-primary:focus, .btn-primary.active:focus, .btn-primary:active:focus, .show > .btn-primary.dropdown-toggle:focus {
	box-shadow: none;
}

.slideUp {
  -webkit-animation: fade-in-bottom 0.7s 0.4s forwards ease-out;
  animation: fade-in-bottom 0.7s 0.4s forwards ease-out;
}


@-webkit-keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(70px);
    transform: translateY(70px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(70px);
    transform: translateY(70px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeout {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeout {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadingSVG {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadingSVG {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 1;
  }
}
@keyframes rotate {
  from {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 1;
  }
}

.hero-backdrop #Vector,
.hero-backdrop #Vector_2,
.hero-backdrop #Vector_3,
.hero-backdrop #Vector_4,
.hero-backdrop #Vector_5,
.hero-backdrop #Vector_6,
.hero-backdrop #Vector_7,
.hero-backdrop #Vector_8,
.hero-backdrop #Vector_9,
.hero-backdrop #Vector_10,
.hero-backdrop #Vector_11,
.hero-backdrop #Vector_12,
.hero-backdrop #Vector_13,
.hero-backdrop #Vector_14,
.hero-backdrop #Vector_15,
.hero-backdrop #Vector_16,
.hero-backdrop #Vector_17,
.hero-backdrop #Vector_18,
.hero-backdrop #Vector_19,
.hero-backdrop #Vector_20,
.hero-backdrop #Vector_21,
.hero-backdrop #Vector_22,
.hero-backdrop #Vector_23,
.hero-backdrop #Vector_24,
.hero-backdrop #Vector_25,
.hero-backdrop #Vector_26,
.hero-backdrop #Vector_27 {
  opacity: 0;
}
.hero-backdrop #Vector,
.hero-backdrop #Vector_2,
.hero-backdrop #Vector_3,
.hero-backdrop #Vector_4,
.hero-backdrop #Vector_5,
.hero-backdrop #Vector_6,
.hero-backdrop #Vector_7 {
  -webkit-animation-name: rotate;
  animation-name: rotate;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-transform-origin: left top;
  transform-origin: left top;
}
.hero-backdrop #Vector {
  -webkit-animation-delay: 0.35s;
  animation-delay: 0.35s;
}
.hero-backdrop #Vector_2 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.hero-backdrop #Vector_3 {
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}
.hero-backdrop #Vector_4 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.hero-backdrop #Vector_5 {
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}
.hero-backdrop #Vector_6 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.hero-backdrop #Vector_7 {
  -webkit-animation-delay: 0.05s;
  animation-delay: 0.05s;
}
.hero-backdrop #Vector_8,
.hero-backdrop #Vector_9,
.hero-backdrop #Vector_10,
.hero-backdrop #Vector_11,
.hero-backdrop #Vector_12,
.hero-backdrop #Vector_13,
.hero-backdrop #Vector_14,
.hero-backdrop #Vector_15,
.hero-backdrop #Vector_16,
.hero-backdrop #Vector_17,
.hero-backdrop #Vector_18,
.hero-backdrop #Vector_19,
.hero-backdrop #Vector_20,
.hero-backdrop #Vector_21,
.hero-backdrop #Vector_22,
.hero-backdrop #Vector_23,
.hero-backdrop #Vector_24,
.hero-backdrop #Vector_25,
.hero-backdrop #Vector_26,
.hero-backdrop #Vector_27 {
  -webkit-animation-name: rotate;
  animation-name: rotate;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-transform-origin: right top;
  transform-origin: right top;
}
.hero-backdrop #Vector_8 {
  -webkit-animation-delay: 0.05s;
  animation-delay: 0.05s;
}
.hero-backdrop #Vector_9 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.hero-backdrop #Vector_10 {
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}
.hero-backdrop #Vector_11 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.hero-backdrop #Vector_12 {
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}
.hero-backdrop #Vector_13 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.hero-backdrop #Vector_14 {
  -webkit-animation-delay: 0.35s;
  animation-delay: 0.35s;
}
.hero-backdrop #Vector_15 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.hero-backdrop #Vector_16 {
  -webkit-animation-delay: 0.45s;
  animation-delay: 0.45s;
}
.hero-backdrop #Vector_17 {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.hero-backdrop #Vector_18 {
  -webkit-animation-delay: 0.55s;
  animation-delay: 0.55s;
}
.hero-backdrop #Vector_19 {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.hero-backdrop #Vector_20 {
  -webkit-animation-delay: 0.65s;
  animation-delay: 0.65s;
}
.hero-backdrop #Vector_21 {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
.hero-backdrop #Vector_22 {
  -webkit-animation-delay: 0.75s;
  animation-delay: 0.75s;
}
.hero-backdrop #Vector_23 {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.hero-backdrop #Vector_24 {
  -webkit-animation-delay: 0.85s;
  animation-delay: 0.85s;
}
.hero-backdrop #Vector_25 {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
.hero-backdrop #Vector_26 {
  -webkit-animation-delay: 0.95s;
  animation-delay: 0.95s;
}
.hero-backdrop #Vector_27 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.hero-header_bg {
  z-index: -100 !important;
}

.fly {
  -webkit-transition: all 600ms ease-in-out;
  transition: all 600ms ease-in-out;
}
.hide-block {
  opacity: 0;
  -webkit-transform: translateY(100px) scale(1) translate3d(0, 0, 0);
  transform: translateY(100px) scale(1) translate3d(0, 0, 0);
}
.show-block {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1) translate3d(0, 0, 0);
  transform: translateY(0) scale(1) translate3d(0, 0, 0);
}
.expand {
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}
.expand:hover {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
  box-shadow: 0 0 10px 0px #000000;
}
.fade {
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
@-webkit-keyframes animationExpandBox {
  from {
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes animationExpandBox {
  from {
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes animationExpandTransmissionBox {
  from {
    width: 58rem;
    max-height: 16rem;
  }
  to {
    width: 100%;
    max-height: 100rem;
  }
}
@keyframes animationExpandTransmissionBox {
  from {
    width: 58rem;
    max-height: 16rem;
  }
  to {
    width: 100%;
    max-height: 100rem;
  }
}
@-webkit-keyframes animationModal {
  from {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes animationModal {
  from {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes custom-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes custom-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes floating-box {
  0% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
  100% {
    -webkit-transform: translate(0px, 60px);
    transform: translate(0px, 60px);
  }
}
@keyframes floating-box {
  0% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
  100% {
    -webkit-transform: translate(0px, 60px);
    transform: translate(0px, 60px);
  }
}
@-webkit-keyframes logo-slide-in {
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes logo-slide-in {
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes logo-zoom-in {
  from {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes logo-zoom-in {
  from {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes logo-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes logo-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes liquid_transform_anim {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(20deg) scale(0.6);
    transform: translate(0px, 0px) rotate(20deg) scale(0.6);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}
@keyframes liquid_transform_anim {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(20deg) scale(0.6);
    transform: translate(0px, 0px) rotate(20deg) scale(0.6);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}
@-webkit-keyframes green_transform_anim {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(80deg) scale(0);
    transform: translate(0px, 0px) rotate(80deg) scale(0);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}
@keyframes green_transform_anim {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(80deg) scale(0);
    transform: translate(0px, 0px) rotate(80deg) scale(0);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}
@-webkit-keyframes mining_transform_anim {
  0% {
    -webkit-transform: translate(-40px, 0px) rotate(0deg) scale(0.8);
    transform: translate(-40px, 0px) rotate(0deg) scale(0.8);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}
@keyframes mining_transform_anim {
  0% {
    -webkit-transform: translate(-40px, 0px) rotate(0deg) scale(0.8);
    transform: translate(-40px, 0px) rotate(0deg) scale(0.8);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}
@-webkit-keyframes satellite_transform_anim {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(0.6);
    transform: translate(0px, 0px) rotate(0deg) scale(0.6);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}
@keyframes satellite_transform_anim {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(0.6);
    transform: translate(0px, 0px) rotate(0deg) scale(0.6);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}
@-webkit-keyframes lightning_transform_anim {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(20deg) scale(0.6);
    transform: translate(0px, 0px) rotate(20deg) scale(0.6);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}
@keyframes lightning_transform_anim {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(20deg) scale(0.6);
    transform: translate(0px, 0px) rotate(20deg) scale(0.6);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}
@-webkit-keyframes elements_transform_anim {
  0% {
    -webkit-transform: translate(-40px, -40px) rotate(0deg) scale(0.2);
    transform: translate(-40px, -40px) rotate(0deg) scale(0.2);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}
@keyframes elements_transform_anim {
  0% {
    -webkit-transform: translate(-40px, -40px) rotate(0deg) scale(0.2);
    transform: translate(-40px, -40px) rotate(0deg) scale(0.2);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}
@-webkit-keyframes datafeed_transform_anim {
  0% {
    -webkit-transform: translate(500px, 0px) rotate(40deg) scale(0.2);
    transform: translate(500px, 0px) rotate(40deg) scale(0.2);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}
@keyframes datafeed_transform_anim {
  0% {
    -webkit-transform: translate(500px, 0px) rotate(40deg) scale(0.2);
    transform: translate(500px, 0px) rotate(40deg) scale(0.2);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}
@-webkit-keyframes aqua_transform_anim {
  0% {
    -webkit-transform: translate(300px, 0px) rotate(60deg) scale(0.1, 0.1);
    transform: translate(300px, 0px) rotate(60deg) scale(0.1, 0.1);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1, 1);
    transform: translate(0px, 0px) rotate(0deg) scale(1, 1);
  }
}
@keyframes aqua_transform_anim {
  0% {
    -webkit-transform: translate(300px, 0px) rotate(60deg) scale(0.1, 0.1);
    transform: translate(300px, 0px) rotate(60deg) scale(0.1, 0.1);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1, 1);
    transform: translate(0px, 0px) rotate(0deg) scale(1, 1);
  }
}
@-webkit-keyframes amp_transform_anim {
  0% {
    -webkit-transform: translate(300px, 0px) rotate(60deg) scale(0, 0);
    transform: translate(300px, 0px) rotate(60deg) scale(0, 0);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1, 1);
    transform: translate(0px, 0px) rotate(0deg) scale(1, 1);
  }
}
@keyframes amp_transform_anim {
  0% {
    -webkit-transform: translate(300px, 0px) rotate(60deg) scale(0, 0);
    transform: translate(300px, 0px) rotate(60deg) scale(0, 0);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1, 1);
    transform: translate(0px, 0px) rotate(0deg) scale(1, 1);
  }
}
@-webkit-keyframes financial_transform_anim {
  0% {
    -webkit-transform: translate(0px, 400px) rotate(40deg) scale(0.1, 0.1);
    transform: translate(0px, 400px) rotate(40deg) scale(0.1, 0.1);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1, 1);
    transform: translate(0px, 0px) rotate(0deg) scale(1, 1);
  }
}
@keyframes financial_transform_anim {
  0% {
    -webkit-transform: translate(0px, 400px) rotate(40deg) scale(0.1, 0.1);
    transform: translate(0px, 400px) rotate(40deg) scale(0.1, 0.1);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1, 1);
    transform: translate(0px, 0px) rotate(0deg) scale(1, 1);
  }
}
@-webkit-keyframes energy_transform_anim {
  0% {
    -webkit-transform: translate(0px, 400px) rotate(40deg) scale(0.1, 0.1);
    transform: translate(0px, 400px) rotate(40deg) scale(0.1, 0.1);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1, 1);
    transform: translate(0px, 0px) rotate(0deg) scale(1, 1);
  }
}
@keyframes energy_transform_anim {
  0% {
    -webkit-transform: translate(0px, 400px) rotate(40deg) scale(0.1, 0.1);
    transform: translate(0px, 400px) rotate(40deg) scale(0.1, 0.1);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1, 1);
    transform: translate(0px, 0px) rotate(0deg) scale(1, 1);
  }
}
.header-new_backdrop_jade path {
  stroke-dashoffset: 2000;
  stroke-dasharray: 2000;
  -webkit-transform: translate(0px, 0px) rotate(45deg) scale(-1, 1) !important;
  transform: translate(0px, 0px) rotate(45deg) scale(-1, 1) !important;
}
@-webkit-keyframes jade_transform_anim {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes jade_transform_anim {
  to {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes floating {
  from {
    -webkit-transform: translate(0, -5px);
    transform: translate(0, -5px);
  }
  65% {
    -webkit-transform: translate(0, 15px);
    transform: translate(0, 15px);
  }
  to {
    -webkit-transform: translate(0, -5px);
    transform: translate(0, -5px);
  }
}
@keyframes floating {
  from {
    -webkit-transform: translate(0, -5px);
    transform: translate(0, -5px);
  }
  65% {
    -webkit-transform: translate(0, 15px);
    transform: translate(0, 15px);
  }
  to {
    -webkit-transform: translate(0, -5px);
    transform: translate(0, -5px);
  }
}
.hero-backdrop {
  content: "";
  position: absolute;
  width: 100%;
  z-index: -1;
}
.hero-backdrop svg {
  height: 100%;
}
/* End Header */

/* Banner */
.banner {
  position: var(--position-relative);
  padding: 215px 0 339px;
}
.banner:before {
  content: '';
  position: var(--position-absolute);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.69;
  background: radial-gradient(88.85% 153.45% at 45.16% 32.69%, rgba(33, 101, 244, 0.30) 0%, rgba(33, 101, 244, 0.12) 19.49%, rgba(2, 30, 90, 0.08) 98.44%);
  filter: blur(25px);
}
.banner-content {
  position: var(--position-relative);
  text-align: center;
  z-index: 2;
}
.banner-content h1 span {
  display: var(--global-display-style-block);
  font-weight: var(--global-font-weight-regular);
}
.banner-content p {
  font-size: var(--global-lager-font-size);
  line-height: 32px;
  color: var(--common-light-gray-one-color);
  max-width: 713px;
  margin: 0 auto 32px;
}
.banner-content .solid-button {
  display: var(--global-display-style-inline-block);
}
/* End Banner */

/* Our Services */

.our-services {
  background: var(--secondary-color);
}
.our-services-wrapper .row {
  margin: 0 -13px;
}
.our-services-box-col {
  padding: 0 13px;
}
.our-services-box {
  background: var(--secondary-color);
  padding: 57px 100px 98px;
  text-align: center;
  height: 100%;
}
.border-box {
  border: 1px solid var(--common-dark-black-color);
  position: var(--position-relative);
  border-radius: 12px;
  transition: all 0.75s ease-in-out 0s;
  z-index: 2;
}
.border-box::after, .border-box::before {
  border-radius: 12px;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: scale(0);
  transition: all 0.5s ease-in-out 0s;
  width: 100%;
  z-index: 3;
}
.border-box::before {
  border-bottom: 1px solid var(--primary-color);
  border-left: 1px solid var(--primary-color);
  transform-origin: 0 100% 0;
}
.border-box::after {
  border-right: 1px solid var(--primary-color);
  border-top: 1px solid var(--primary-color);
  transform-origin: 100% 0 0;
}
.border-box:hover::after, .border-box:hover::before {
  transform: scale(1);
}
.border-box:hover {
  border: 1px solid rgba(0, 160, 80, 0);
}

.our-services-box-content {
    position: relative;
    z-index: 999;
}
.our-services-box-col:first-child .our-services-box-icon {
  border-radius: 20px;
  background: linear-gradient(127deg, #8B05F4 0%, rgba(73, 8, 155, 0.47) 100%);
  margin: 0 auto 40px;
  display: var(--global-display-style);
  justify-content: var(--justify-content-center);
  align-items: var(--alignment-center);
  width: 150px;
  height: 150px;
}
.our-services-box-col:last-child .our-services-box-icon {
  border-radius: 20px;
  background: linear-gradient(127deg, #0582F4 0%, rgba(10, 120, 181, 0.47) 100%);
  margin: 0 auto 40px;
  display: var(--global-display-style);
  justify-content: var(--justify-content-center);
  align-items: var(--alignment-center);
  width: 150px;
  height: 150px;
  position: var(--position-relative);
}
.our-services-box-content h3 {
  font-size: var(--global-lager-three-font-size);
  line-height: 32px;
  margin-bottom: 12px;
}
.text-link {
  position: var(--position-relative);
  font-size: var(--global-medium-font-size);
  line-height: 20px;
  font-weight: var(--global-font-weight-semibold);
}
.text-link:after {
  content: '';
  position: var(--position-absolute);
  -webkit-mask-image: url(assets/images/right_arrow_icon.svg);
  mask-image: url(assets/images/right_arrow_icon.svg);
  width: 18px;
  height: 9px;
  background-repeat: no-repeat;
  background: var(--primary-color);
  transition: var(--global-transition);
  -webkit-mask-size: cover;
  margin: 6px 0 0 8px;
}
.text-link:hover:after {
  transform: translateX(4px);
  transition: var(--global-transition);
  background: var(--common-white-color);
}
/* End Our Services */

/* Portfolio */
.portfolio-heading {
  display: var(--global-display-style);
  align-items: var(--alignment-center);
  justify-content: var(--flex-justify-space-between);
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}
.portfolio-heading h2 {
  margin: 0;
}
.portfolio-image {
  margin-bottom: 20px;
  overflow: hidden;
  display: var(--global-display-style);
  justify-content: var(--justify-content-center);
  align-items: var(--alignment-end);
  border-radius: 8px;
  background: var(--common-black-color);
  position: var(--position-relative);
  min-height: 412px;
}
.portfolio-image::before, .portfolio-image::after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  top: 0;
}
/* .portfolio-image:before {
  background: rgba(255, 255, 255, 0.5);
  width: 60px;
  left: 0;
  filter: blur(30px);
  -webkit-animation: shine-alt1 5s ease-in-out infinite;
  animation: shine-alt1 5s ease-in-out infinite;
}
.portfolio-image:after {
  background: rgba(255, 255, 255, 0.2);
  width: 30px;
  left: 30px;
  filter: blur(5px);
  -webkit-animation: shine-alt2 5s ease-in-out infinite;
  animation: shine-alt2 5s ease-in-out infinite;
}

@-webkit-keyframes shine-alt1 {
  0% {
    opacity: 0.5;
    transform: translateX(-100px) skewX(-15deg);
    transition-property: opacity, transform;
  }
  11.5044247788%, 100% {
    opacity: 0.6;
    transform: translateX(300px) skewX(-15deg);
    transition-property: opacity, transform;
  }
}

@keyframes shine-alt1 {
  0% {
    opacity: 0.5;
    transform: translateX(-100px) skewX(-15deg);
    transition-property: opacity, transform;
  }
  11.5044247788%, 100% {
    opacity: 0.6;
    transform: translateX(300px) skewX(-15deg);
    transition-property: opacity, transform;
  }
}
@-webkit-keyframes shine-alt2 {
  0% {
    opacity: 0;
    transform: translateX(-100px) skewX(-15deg);
    transition-property: opacity, transform;
  }
  11.5044247788%, 100% {
    opacity: 1;
    transform: translateX(300px) skewX(-15deg);
    transition-property: opacity, transform;
  }
}
@keyframes shine-alt2 {
  0% {
    opacity: 0;
    transform: translateX(-100px) skewX(-15deg);
    transition-property: opacity, transform;
  }
  11.5044247788%, 100% {
    opacity: 1;
    transform: translateX(300px) skewX(-15deg);
    transition-property: opacity, transform;
  }
} */
.portfolio-column img {
  width: 100%;
  object-fit: contain;
  transition: var(--global-transition);
}
.portfolio-column:hover img {
	transform: scale(1.1);
	transition: var(--global-transition);
}
.portfolio-column:nth-child(1) .portfolio-image {
  background-image: url(assets/images/purple_shape.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.portfolio-column:nth-child(2) .portfolio-image {
  background-image: url(assets/images/yellow_shape.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.portfolio-block h4 {
  margin-bottom: 5px;
}
.portfolio-column:last-child {
  width: 100%;
  margin-top: 32px;
}
.portfolio-column:last-child .portfolio-cover {
  display: var(--global-display-style);
  justify-content: var(--justify-content-center);
  align-items: var(--alignment-center);
  background: var(--common-black-color);
  border-radius: 8px;
  overflow: hidden;
}
.portfolio-column:last-child .portfolio-image {
  margin: var(--global-margin-zero);
  flex: 0 0 auto;
  width: 58.33333333%;
  overflow: visible;
}
.portfolio-column:last-child img {
  object-fit: cover;
}
.portfolio-column:last-child .portfolio-content {
  padding-left: 86px;
  padding-right: 20px;
  flex: 0 0 auto;
  width: 41.66666667%;
}
.portfolio-project-left,
.portfolio-key-features-content {
  padding-right: 30px;
}
.portfolio-key-features-img, .portfolio-project-left {
  overflow: hidden;
  border-radius: 40px 0 0 40px;
}
/* End Portfolio */

/* About Us */
.about-left p {
  padding-right: 80px;
  line-height: 36px;
}
.counter-col h3 {
  font-weight: var(--global-font-weight-bold);
}
.counter-col {
  margin: 0 auto;
  display: var(--global-display-style-inline-block);
}
.counter-col:first-child {
  width: 100%;
  margin-bottom: 30px;
}
.counter-box {
  width: 232px;
  height: 115px;
  margin: 0 auto;
  background: linear-gradient(180deg, #1A1E24 16.95%, rgba(26, 30, 36, 0.00) 100%);
  border-radius: 12px;
  padding: 20px;
  text-align: left;
}
.counter-col:nth-child(2) .counter-box {
  margin-left: 30px;
}
.counter-col:nth-child(3) .counter-box {
  margin-left: 47px;
}
.counter-col:nth-child(2), .counter-col:nth-child(3) {
  margin-bottom: 30px;
}
.counter-col:nth-child(4) {
  width: 100%;
}
/* End About Us */

/* Our Company Principles */
.our-company-box {
  border-radius: 12px;
  border: 1px solid var(--common-dark-black-color);
  background: var(--secondary-color);
  padding: 20px 20px 14px;
  height: 100%;
}
.our-company-box-icon {
  width: 60px;
  height: 60px;
  display: var(--global-display-style);
  justify-content: var(--justify-content-center);
  align-items: var(--alignment-center);
  background: var(--common-black-color);
  border-radius: 12px;
  margin-bottom: 14px;
}
/* End Our Company Principles */

/* Contact Box */
.contact-box-inner {
  border-radius: 8px;
  background: linear-gradient(360deg, rgba(29, 60, 124, 0.00) 0%, rgba(29, 60, 124, 0.83) 66.67%);
  padding: 32px 105px;
  text-align: center;
}
.contact-box-inner .solid-button {
  display: var(--global-display-style-inline-block);
}
.wpcf7-not-valid-tip {
  font-weight: var(--global-font-weight-regular);
  display: var(--global-display-style-block);
  font-size: var(--global-small-font-size);
  color: var(--common-red-color);
  line-height: normal;
  padding: 6px 0 0 0;
}
/* End Contact Box */

/* Industries */
.industries-col {
  position: relative;
}
.industries-col h2 {
	/* max-width: 460px; */
	margin: 0 0 60px 0;
	padding-right: 120px;
}
.industries .industries-button-next,
.industries .industries-button-prev{
  position: var(--position-absolute);
  top: 25px;
  transform: translate(0, -50%);
  width: 40px;
  height: 40px;
  background: var(--common-black-color);
  border: 1px solid transparent;
  border-radius: 100%;
  transition: var(--global-transition);
  z-index: 2;
}
.industries .swiper-button-disabled{
  cursor: initial;
  opacity: 0.7;
  pointer-events: none;
}
.industries .industries-button-next{
  right: 12px;
}
.industries .industries-button-prev {
  left: inherit;
  right: 90px;
}
.industries .industries-button-next:hover,
.industries .industries-button-prev:hover{
  border-color: var(--primary-color);
  background: var(--secondary-color);
  transition: var(--global-transition);
}
.industries .industries-button-next::after,
.industries .industries-button-prev::after{
  content: '';
  position: var(--position-absolute);
  top: 0;
  bottom: 0;
  left: 3px;
  right: 0;
  margin: auto;
  background: url('assets/images/slider_arrow.svg') no-repeat center;
  background-size: contain;
  width: 24px;
  height: 24px;
}
.industries .industries-button-prev::after{
  right: 0;
  left: 0;
  transform: rotate(180deg);
}
.industries-box {
  border-radius: 12px;
  border: 1px solid var(--common-dark-black-color);
  background: var(--secondary-color);
  padding: 20px 20px 22px;
  height: 100%;
  cursor: default;
}
.industries-icon {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--common-black-color);
  border-radius: 12px;
  margin-bottom: 14px;
}
.industries .swiper-slide {
  height: auto;
}
/* End Industries */

/* Awards and Achievements */
.awards h2 {
  margin-bottom: 40px;
}
.awards .awards-slider {
  width: 100%;
  height: 100%;
  position: var(--position-relative);
  overflow: hidden;
}
.awards .swiper-wrapper {
  transition-timing-function: linear !important;
  position: var(--position-relative);
  align-items: var(--alignment-center);
}
.awards .swiper-slide {
  display: var(--global-display-style);
  justify-content: var(--justify-content-center);
  align-items: var(--alignment-center);
  width: auto;
  position: var(--position-relative);
  overflow: hidden;
}
/* End Awards and Achievements */

/* Why LJ Innovate */
.why-lj-box-col {
  margin-bottom: 24px;
}
.why-lj-box-col:last-child {
  margin-bottom: 0;
}
.why-lj-box {
  display: var(--global-display-style);
  align-items: var(--alignment-start);
  justify-content: var(--justify-content-start);
}
.why-lj-box-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: var(--global-display-style);
  justify-content: var(--justify-content-center);
  align-items: var(--alignment-center);
  background: var(--common-black-color);
  border-radius: 12px;
}
.why-lj-box-content {
  margin-left: 24px;
}
.why-lj-box-content p {
  line-height: 30px;
}
.why-lj-left-col {
  position: sticky;
  top: 150px;
}
/* End Why LJ Innovate */

/* Contact Form */
.contact-form-section {
  background: lightgray 0px -152.005px / 100% 128.123% no-repeat;
  background-size: cover;
  background-position: center;
  position: var(--position-relative);
}
.contact-form-section:before {
  content: '';
  position: var(--position-absolute);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 19, 22, 0.60);
}
.contact-form-wrapper {
  border-radius: 8px;
  background-color: var(--common-black-color);
  padding: 60px;
  position: var(--position-relative);
  z-index: 2;
}
.contact-form-box {
  position: var(--position-relative);
}
.wpcf7-spinner {
  background-color: #ffffff;
  margin: 0;
  position: var(--position-absolute);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.wpcf7-spinner::before {
  content: '';
  background-color: var(--common-black-color);
}
label {
  display: var(--global-display-style-block);
  color: var(--common-light-gray-one-color);
  font-size: var(--global-small-font-size);
  line-height: normal;
  font-weight: var(--global-font-weight-regular);
  margin-bottom: 8px;
}
.form-group {
  margin-bottom: 24px;
}
.contact-form-wrapper textarea {
  height: 60px;
  resize: none;
}
.submit-btn input[type="submit"] {
  border-radius: 8px;
  border: 1px solid var(--primary-color);
  background: var(--primary-color);
  padding: 12px;
  font-weight: var(--global-font-weight-semibold);
  transition: var(--global-transition);
}
.submit-btn input[type="submit"]:hover {
  color: var(--primary-color);
  background: var(--common-white-color);
  border-color: var(--common-white-color);
  transition: var(--global-transition);
}
.wpcf7 form .wpcf7-response-output {
  margin: 20px 0 0 0;
  padding: var(--global-padding-zero);
  border: none;
}
.contact-details {
  padding-top: 70px;
  position: var(--position-relative);
  display: var(--global-display-style);
  justify-content: var(--justify-content-end);
  flex-direction: column;
  padding-left: 55px;
  padding-right: 36px;
}
.contact-details:before {
  content: '';
  position: var(--position-absolute);
  top: -5px;
  left: -2px;
  background: url(assets/images/design_shape.svg) no-repeat top;
  background-size: contain;
  width: 307px;
  height: 300px;
}
.contact-details h2 {
  font-weight: var(--global-font-weight-regular);
  color: var(--common-light-gray-one-color);
}
.contact-details h3 {
  font-weight: var(--global-font-weight-bold);
  color: var(--common-white-color);
  display: var(--global-display-style);
  align-items: var(--alignment-center);
  justify-content: var(--justify-content-end);
}
.contact-details h3:before {
  content: '';
  position: var(--position-absolute);
  left: 55px;
  width: 135px;
  height: 1px;
  background-color: var(--common-light-gray-two-color);
}
.contact-details p {
  font-size: var(--global-small-font-size);
  line-height: 24px;
  margin: var(--global-margin-zero);
  color: var(--common-light-gray-one-color);
}
.contact-details .contact-block {
  margin-top: 30px;
}
.contact-details .contact-info li p:before,
.contact-details .contact-info li a:before {
  background: var(--common-light-gray-one-color);
}
.contact-details .contact-info li p,
.contact-details .contact-info li a {
  color: var(--common-white-color);
}
.contact-details .contact-block li.address p {
  max-width: 240px;
}
/* End Contact Form */

/* Footer */
.site-footer {
  position: var(--position-relative);
}
.site-footer:before {
  content: '';
  position: var(--position-absolute);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.69;
  background: radial-gradient(156.19% 110.10% at -0.00% 22.21%, rgba(33, 101, 244, 0.18) 0%, rgba(33, 101, 244, 0.07) 52.48%, rgba(2, 30, 90, 0.05) 98.44%);
  filter: blur(25px);
}
.site-footer .container {
  position: var(--position-relative);
  z-index: 2;
}
.social-media {
  display: var(--global-display-style);
  align-items: var(--alignment-center);
  justify-content: var(--justify-content-start);
  list-style: var(--global-list-style);
  margin: var(--global-margin-zero);
  padding: var(--global-padding-zero);
}
.social-media li {
  margin-right: 10px;
}
.social-media li:last-child {
  margin-right: 0;
}
.social-media li a {
  display: var(--global-display-style);
  justify-content: var(--justify-content-center);
  align-items: var(--alignment-center);
  width: 30px;
  height: 30px;
  border: 1px solid var(--common-black-color);
  border-radius: 4px;
  position: var(--position-relative);
  top: 0;
  transition: var(--global-transition);
}
.social-media li a:hover {
  top: -5px;
  transition: var(--global-transition);
}
.social-media li a .hoveron {
  display: none;
}
.social-media li a:hover .hoveron {
  display: block;
}
.social-media li a:hover .hoveroff {
  display: none;
}
.site-footer h5 {
  margin-bottom: 12px;
}
.service-listing,
.company-listing,
.contact-info {
  margin: var(--global-margin-zero);
  padding: var(--global-padding-zero);
}
.service-listing li,
.company-listing li,
.contact-info li {
  margin-bottom: 12px;
}
.service-listing li:last-child,
.company-listing li:last-child,
.contact-info li:last-child {
  margin-bottom: 0;
}
.service-listing li a,
.company-listing li a,
.contact-info li a,
.site-footer p {
  font-size: var(--global-small-font-size);
  line-height: 24px;
  font-weight: var(--global-font-weight-regular);
  color: var(--common-text-color);
}
.service-listing li a:hover,
.company-listing li a:hover {
  color: var(--primary-color);
}
.contact-block {
  margin-top: 22px;
}
.contact-block h6 {
  margin-bottom: 15px;
}
.contact-info li p,
.contact-info li a {
  padding-left: 30px;
  position: var(--position-relative);
  transition: var(--global-transition);
}
.contact-info li p {
  padding-right: 20px;
}
.contact-info li p:before {
  content: '';
  position: var(--position-absolute);
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  -webkit-mask-image: url(assets/images/icon_pin.svg);
  mask-image: url(assets/images/icon_pin.svg);
  background-repeat: no-repeat;
  background: var(--common-text-color);
  transition: var(--global-transition);
  -webkit-mask-size: cover;
  display: block;
}
.contact-info li a:before {
  content: '';
  position: var(--position-absolute);
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background: var(--common-text-color);
  transition: var(--global-transition);
  -webkit-mask-size: cover;
  display: block;
}
.contact-info li p br {display: none;}
.contact-info li .email:before {
  -webkit-mask-image: url(assets/images/icon_email.svg);
  mask-image: url(assets/images/icon_email.svg);
}
.contact-info li .phone:before {
  -webkit-mask-image: url(assets/images/icon_call.svg);
  mask-image: url(assets/images/icon_call.svg);
}
.contact-info li a:hover {
  color: var(--primary-color);
  transition: var(--global-transition);
}
.contact-info li .phone:hover:before,
.contact-info li .email:hover:before {
  background: var(--primary-color);
  transition: var(--global-transition);
}
.emaillist {
  position: var(--position-relative);
}
.emaillist .es_subscription_form .es-form-field-container .gjs-row:first-child {
  display: none;
}
.emaillist .es_subscription_form .es-form-field-container .gjs-row {
  width: 100%;
  margin: 0;
}
.emaillist .es_subscription_form .es-form-field-container .gjs-row .es-field-label {
  margin: 0 0 8px 0;
}
.emaillist .es_subscription_form .es-form-field-container .gjs-row .es-email {
  background-color: transparent !important;
  border-bottom: 1px solid rgb(255 255 255 / 50%);
  width: 100%;
}
.emaillist .es_subscription_form .es-form-field-container .gjs-row input[type=submit] {
  margin-top: 18px;
  border-bottom: none;
  width: auto;
}
.emaillist .es_subscription_form .es-form-field-container .gjs-row input[type="submit"]:hover {
  background-color: var(--common-white-color) !important;
  transition: var(--global-transition);
  color: var(--primary-color) !important;
}
.es_spinner_image {
  float: none;
  position: var(--position-absolute);
  bottom: 1px;
  left: auto;
  right: 60px;
  margin: 0 auto;
}
.es_subscription_message.success {
  color: var(--common-text-color);
  font-size: var(--global-small-font-size);
  line-height: 20px;
}
.footer-bottom {
  margin-top: 50px;
  padding: 10px 0;
  border-top: 1px solid var(--common-black-color);
}
.copyright-left,
.footer-bottom-nav {
  display: var(--global-display-style);
  align-items: var(--alignment-center);
}
.copyright-left p {
  margin: 0;
}
.footer-bottom-nav {
  margin: var(--global-margin-zero);
  padding: var(--global-padding-zero);
  margin-left: 28px;
}
.footer-bottom-nav li {
  margin-right: 20px;
  padding-right: 20px;
  line-height: 19px;
}
.footer-bottom-nav li:last-child {
  margin-right: 0;
}
.footer-bottom-nav li a {
  color: var(--common-text-color);
  font-size: var(--global-small-font-size);
  line-height: 19px;
  position: var(--position-relative);
}
.footer-bottom-nav li a:after {
  content: '';
  position: var(--position-absolute);
  top: 0;
  right: -20px;
  width: 1px;
  height: 19px;
  background-color: var(--common-text-color);
}
.footer-bottom-nav li:last-child a:after {
  display: none;
}
.footer-bottom-nav li a:hover {
  color: var(--primary-color);
}
.payment-img {
  display: var(--global-display-style);
  justify-content: var(--justify-content-end);
}
.c-go-top {
  position: var(--position-fixed);
  right: 12px;
  bottom: 50px;
  display: none;
  background-color: var(--primary-color);
  padding: 10px;
  text-decoration: none;
  z-index: 999;
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  transition: all .4s;
  width: 42px;
  height: 42px;
  text-align: center;
}
.c-go-top:hover {
  background-color: var(--common-light-green-color);
  border-color: var(--common-light-green-color);
}
.c-go-top svg {
  width: 16px;
  height: 16px;
}
.c-go-top svg path {
  fill: #fff;
}
/* End Footer */

/* About Us */
.entry-header {
  padding: 205px 0 100px;
  background: url(assets/images/inner-bg.svg) no-repeat center;
  background-size: cover;
}
.entry-header p {
  max-width: 715px;
  margin: 0 auto;
  text-align: center;
  font-size: var(--global-normal-one-font-size);
  line-height: 32px;
}
.about-ideas-left {
  padding-right: 50px;
}
.about-ideas-image {
  overflow: hidden;
  border-radius: 40px 0 0 40px;
}
.about-ideas-image.desktop-hide {
  display: var(--global-display-none);
}
.about-us-section {
  position: var(--position-relative);
  padding: 130px 0;
  margin: 60px 0;
}
.about-us-section p {
  padding: 0;
}
.about-us-image {
  height: 100%;
  position: var(--position-absolute);
  top: 0;
  right: 0;
  width: 50%;
}
.about-us-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.about-us-image:before {
  content: '';
  height: 100%;
  width: 100%;
  display: var(--global-display-style-block);
  position: var(--position-absolute);
  right: 0;
  background-image: url(assets/images/gradient-overlay.png);
}
.about-us-section .about-left {
  position: var(--position-relative);
  z-index: 2;
}
.about-counter .counter-col {
  animation-name: none;
}
.about-counter .counter-col-wrapper {
  display: var(--global-display-style);
  justify-content: var(--justify-content-center);
  align-items: var(--alignment-center);
  margin: 0 -12px;
}
.about-counter .counter-col-wrapper .counter-col {
  width: 25%;
  margin: 0 !important;
}
.about-counter .counter-col-wrapper .counter-col .counter-box {
  margin: 0 auto;
}
.mission-vision-box {
  border-radius: 12px;
  border: 1px solid var(--common-dark-black-color);
  background: var(--secondary-color);
  padding: 20px 20px 14px;
  height: 100%;
}
.mission-vision-icon {
  width: 60px;
  height: 60px;
  display: var(--global-display-style);
  justify-content: var(--justify-content-center);
  align-items: var(--alignment-center);
  background: var(--common-black-color);
  border-radius: 12px;
  margin-bottom: 14px;
}
.leadership-box {
  display: var(--global-display-style);
  justify-content: var(--flex-justify-space-between);
  align-items: var(--alignment-center);
  gap: 20px;
}
.leadership-img {
  width: 160px;
  height: 160px;
  border-radius: 100%;
  overflow: hidden;
  display: var(--global-display-style);
  justify-content: var(--justify-content-center);
  align-items: var(--alignment-center);
  flex-shrink: 0;
}
.leadership-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.features-box {
  border-radius: 12px;
  border: 1px solid var(--common-dark-black-color);
  background: var(--secondary-color);
  padding: 30px;
  height: 100%;
}
.features-box-icon {
  width: 60px;
  height: 60px;
  display: var(--global-display-style);
  justify-content: var(--justify-content-center);
  align-items: var(--alignment-center);
  background: var(--common-black-color);
  border-radius: 12px;
  margin-bottom: 14px;
}
.features-box-icon img {
  max-width: 40px;
}
/* End About Us */


/* Testimonials */
.testimonial-button-next,
.testimonial-button-prev,
.testimonial-col .testimonial-btn-group{
    display: var(--global-display-style);
    align-items: var(--alignment-center);
}
.testimonial-col {
  position: var(--position-relative);
}
.testimonial-col .testimonial-btn-group{
    flex-direction: row-reverse;
    grid-gap: 20px;
}
.testimonial h2 {
    margin: 0;
}
.testimonial-btn-group .swiper-button-disabled {
    pointer-events: none;
}
.testimonial-button-next,
.testimonial-button-prev{
  background-color: var(--common-black-color);
  justify-content: var(--justify-content-center);
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: 1px solid transparent;
  transition: var(--global-transition);
}
.testimonial-button-next:hover,
.testimonial-button-prev:hover{
    border-color: var(--primary-color);
    transition: var(--global-transition);
}
.testimonial-button-next svg{
    transform: rotate(180deg);
}
.testimonial-button-next:hover path,
.testimonial-button-prev:hover path{
    fill: var(--primary-color);
}
.testimonial .swiper-slide {
	height: 100%;
}
.testimonial-col .testimonial-slider {
	padding-top: 30px;
	padding-bottom: 32px;
}
.testimonial .testimonial-slide {
  border-radius: 8px;
  padding: 40px;
  border: 1px solid rgba(33, 101, 244, 0.20);
  height: 100%;
  background-color: var(--common-black-color);
}
.testimonial-slider .testimonial-slide .head{
  display: var(--global-display-style);
  justify-content: var(--justify-content-start);
  align-items: var(--alignment-center);
  grid-gap: 15px;
  margin-bottom: 24px;
}
.testimonial-slider h5 {
    margin-bottom: var(--global-margin-zero);
    font-weight: var(--global-font-weight-semibold);
}
.testimonial-slider .head img{
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}
.testimonial-slider p {
  line-height: 28px;
  color: var(--common-text-color);    
}
.testimonial .swiper-scrollbar {
  background: var(--common-black-color);
  height: 2px;
  border-radius: 0;
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset,8%));
  bottom: var(--swiper-scrollbar-bottom,18px);
}
.testimonial .swiper-scrollbar-drag {
  height: 100%;
  width: 110px !important;
  position: var(--position-relative);
  background: #C3CDD3;
  border-radius: 0;
  left: 0;
  top: 0;
}
/* End Testimonials */

/* FAQ */
.faq .accordion {
  margin-top: 34px;
}
.faq .accordion-button {
  margin-bottom: 0;
  padding: 16px 45px 16px 0;
  color: var(--common-white-color);
  background-color: transparent;
  font-size: var(--global-normal-font-size);
  line-height: 32px;
  font-weight: var(--global-font-weight-semibold);
}
.faq .accordion-flush .accordion-item {
  background-color: transparent;
  border-bottom: 1px solid var(--common-grayscale-color);
}
.faq .accordion-button:not(.collapsed) {
  box-shadow: var(--global-display-none);
}
.faq .accordion-button:focus {
  z-index: 3;
  border-color: var(--global-display-none);
  outline: 0;
  box-shadow: var(--global-display-none);
}
.accordion-button::after,
.accordion-button:not(.collapsed)::after {
  background-image: url("assets/images/icon_plus.svg");
  position: var(--position-absolute);
  top: 20px;
  right: 22px;
  filter: brightness(100);
}
.accordion-button:not(.collapsed)::after {
  background-image: url("assets/images/icon_minus.svg");
}
.faq .accordion-body {
  padding: 12px 40px 12px 0;
}
.faq .accordion-body p {
  line-height: 28px;
}
.faq .accordion-button:hover {
  color: var(--primary-color);
}
/* End FAQ */

/* 404 & Thank You */
.not-found .error-text,
.thank-you-wrapper {
  text-align: center;
}
.not-found .error-text h1 {
  font-size: 150px;
  line-height: 1;
  color: var(--primary-color);
}
/* End 404 */

/* Service Page */
.service-banner-wrapper {
  text-align: center;
}
.service-banner-wrapper .solid-button {
  margin-top: 20px;
}
.service-block-image {
  overflow: hidden;
  border-radius: 40px 0 0 40px;
}
.service-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 500px;
  min-height: 500px;
}
.service-list {
  margin: var(--global-margin-zero);
  padding: var(--global-padding-zero);
}
.service-list li {
  font-size: var(--global-medium-font-size);
  color: var(--common-grayscale-color);
  line-height: 26px;
  font-weight: var(--global-font-weight-regular);
  font-style: var(--normal-font-family);
  margin-bottom: 10px;
  position: var(--position-relative);
  padding-left: 25px;
}
.service-list li:last-child {
  margin-bottom: var(--global-value-zero);
}
.service-list li:before {
  content: '';
  position: var(--position-absolute);
  top: 4px;
  left: 0;
  background-image: url(assets/images/slider_arrow.svg);
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
  width: 16px;
  height: 16px;
}

.our-expertise {
  margin-bottom: -24px;
}
.our-expertise-box {
  border-radius: 12px;
  border: 1px solid var(--common-dark-black-color);
  background: var(--secondary-color);
  padding: 20px 20px 14px;
  height: 100%;
}
.our-expertise-box-icon {
  width: 60px;
  height: 60px;
  display: var(--global-display-style);
  justify-content: var(--justify-content-center);
  align-items: var(--alignment-center);
  background: var(--common-black-color);
  border-radius: 12px;
  margin-bottom: 14px;
}
.our-expertise-box-content {
  position: relative;
  z-index: 999;
}
.our-expertise-box-col {
  margin-bottom: 24px;
}

.service-tabbing .nav-tabs {
  display: var(--global-display-style);
  justify-content: var(--justify-content-center);
  align-items: var(--alignment-center);
  gap: 16px;
}
.service-tabbing .nav-tabs .nav-link {
  margin: 0;
  border: 1px solid var(--common-dark-black-color);
  border-radius: 12px;
  padding: 13px 17px;
  font-weight: var(--global-font-weight-regular);
  font-size: var(--global-medium-font-size);
  line-height: 19px;
  color: var(--common-white-color);
  min-width: 207px;
}
.service-tabbing .nav-tabs .nav-link:hover, 
.service-tabbing .nav-tabs .nav-item.show .nav-link, .service-tabbing .nav-tabs .nav-link.active {
  color: var(--common-white-color);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* .technology,
.leadership {
  background: linear-gradient(180deg, #1A1E24 16.95%, rgba(26, 30, 36, 0.00) 100%);
} */
.tab-inner-content {
  padding-top: 50px;
}
.technology-box-col {
  margin-bottom: 24px;
}
.technology-box {
  border-radius: 12px;
  border: 1px solid var(--common-dark-black-color);
  background: var(--secondary-color);
  padding: 20px;
  height: 100%;
  text-align: center;
}
.technology-box img {
  max-width: 40px;
  max-height: 40px;
  margin: 0 auto 20px;
  -webkit-transition: all .8s ease-in-out;
}
.technology-box h5 a {
  color: var(--common-white-color);
}
.tab-content>.tab-pane.fade {
  transition: inherit;
}

.service-counter {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  position: var(--position-relative);
  background-attachment: fixed;
}
.service-counter:before {
  position: var(--position-absolute);
  content: '';
  height: 100%;
  background: rgb(17 19 22 / 70%);
  width: 100%;
  top: 0;
  bottom: 0;
}
.service-counter .container {
  position: var(--position-relative);
  z-index: 2;
}
.service-counter .counter-box {
  background: transparent;
}
.service-counter .counter-box p {
  color: var(--common-white-color);
}
/* End Service Page */

/* Contact Us Page */
.contact-map iframe {
  width: 100%;
  height: 450px;
}
/* End Contact Us Page */

/* Blog Page */
.blogList_bottom {
  margin-top: 16px;
}
.blogList_middle_left p {
  font-size: 12px;
  line-height: 25px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.inner-content .blogDetail_content ul {
  margin-left: 20px;
}
.blogList_bottom h4 {
  margin-bottom: 10px;
}
.blogList_bottom h4 a {
  font-size: var(--global-lager-font-size);
  line-height: 32px;
  font-weight: var(--global-font-weight-semibold);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.blogList_bottom_content p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;  
  overflow: hidden;
  color: var(--common-white-color);
}
.blogDetail_content img {
  height: auto;
}
.blogList_bottom h4 a:hover {
  color: var(--common-light-green-color);
  transition: var(--global-transition);
}
.blogList_middle_right p {
  margin-bottom: 0;
}
.blogList_img {
  overflow: hidden;
  transition: var(--global-transition);
  border-radius: 12px 12px 0 0;
  border: 1px solid var(--common-dark-black-color);
}
.blogList_img img {
  transition: var(--global-transition);
  border-radius: 15px 15px 0 0;
  height: 250px;
  object-fit: cover;
  width: var(--global-width);
}
.blogList_img:hover img {
  transform: scale(1.2);
  transition: var(--global-transition);   
}
.inner-content ul {
  list-style: none;
  margin: var(--global-margin-zero);
  padding: var(--global-padding-zero);	
}
.inner-content ul li {
  list-style: var(--global-list-style);
  position: var(--position-relative);
  padding-left: 20px;
  font-size: var(--global-medium-font-size);
  line-height: 28px;
  color: var(--common-grayscale-color);
  margin-bottom: 10px;
}
.inner-content ul li:before {
  content: '';
  position: var(--position-absolute);
  top: 8px;
  left: 0;
  width: 16px;
  height: 16px;
  -webkit-mask-image: url(assets/images/slider_arrow.svg);
  mask-image: url(assets/images/slider_arrow.svg);
  -webkit-mask-size: cover;
  background-repeat: no-repeat;
  background: var(--common-grayscale-color);
}
.inner-content ul li a {
  display: inline-block;
}
.inner-content ol {
  list-style-type: none;
  counter-reset: item;
  margin: 25px 0 0 0;
  padding: 0;
}
.inner-content ol > li {
  display: table;
  counter-increment: item;
  margin-bottom: 10px;
  font-size: var(--global-normal-font-size);
  line-height: 24px;
  font-weight: var(--global-font-weight-regular);
  color: var(--common-white-color);
}
.inner-content ol > li:before {
  content: counters(item, ".") ". ";
  display: table-cell;
  padding-right: 0.6em;
}
.blogDetail_inner_right .sidebar-box {
  padding: 20px;
  border-radius: 12px;
  position: sticky;
  top: 120px;
  margin-bottom: 40px;
  background: var(--common-black-color);
}
.inner-content .sidebar-box h2 {
  line-height: normal;
  font-size: 24px;
  margin: 0 0 10px 0;
}
.widget_search .wp-block-search__label {
  display: var(--global-display-none);
}
.wp-block-search__inside-wrapper {
  display: var(--global-display-style);
  position: var(--position-relative);
  width: var(--global-width);
}
.widget_search [type=search] {
  width: var(--global-width);
  border: 1px solid rgb(255 255 255 / 50%);
  border-radius: 12px 0 0 12px;
  border-right: 0;
  padding: 10px;
}
.widget_search .wp-block-search__button{
  margin: 0;
  border: none;
  border-radius: 0 12px 12px 0;
}
.widget_search .wp-block-search__button:hover{
  background: var(--common-white-color);
  color: var(--primary-color);
  transition: var(--global-transition);
}
.widget {
  margin-bottom: 20px;
}
.widget ul li {
  margin-bottom: 10px;
  position: var(--position-relative);
  padding-left: 20px;
}
.widget ul li::before {
  content: '';
  position: var(--position-absolute);
  top: 4px;
  left: 0;
  width: 16px;
  height: 16px;
  -webkit-mask-image: url(assets/images/slider_arrow.svg);
  mask-image: url(assets/images/slider_arrow.svg);
  -webkit-mask-size: cover;
  background-repeat: no-repeat;
  background: var(--common-grayscale-color);
}
.widget ul li:hover::before {
  background: var(--primary-color);
}
.widget ul li a {
  font-size: var(--global-small-font-size);
  line-height: 24px;
  color: var(--common-grayscale-color);
}
.widget ul li a:hover {
  color: var(--primary-color);
}
.widget ul li:last-child {
  margin-bottom: 0;
}
.blogList_item {
  margin-bottom: 24px;
}
.blogDetail_img img {
  border-radius: 25px;
}
.blogList .blogList_bottom {
  margin: 0;
  padding: 20px;
  border-radius: 0 0 12px 12px;
  border: 1px solid var(--common-dark-black-color);
  background: var(--secondary-color);
  height: 100%;
}
.blogList .blogList_bottom {
  border-top: 0;
}
.blogList_sec {
  padding-bottom: 60px;
}

.pagination {
  justify-content: var(--justify-content-center);
  align-items: var(--alignment-center);
}
.pagination a {
  margin: 0 10px;
  color: var(--common-white-color);
  border: 1px solid var(--common-white-color);
  padding: 4px 11px;
  transition: var(--global-transition);
}
.pagination a:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--common-white-color);
  transition: var(--global-transition);
}
a.prev.page-numbers {
  margin-right: 0;
}
span.page-numbers.current {
  background-color: var(--primary-color);
  color: var(--common-white-color);
  padding: 5px 14px;
  font-weight: var(--global-font-weight-regular);
  font-size: var(--global-medium-font-size);
  line-height: 19px;
  display: var(--global-display-style-block);
}
a.next.page-numbers {
  margin-left: 0;
}
/* End Blog Page */

/* Search Page */
.blog-search-listing h2.entry-title a {
  font-size: inherit;
  line-height: inherit;
} 
.blog-search-listing .post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 250px;
}
.blog-search-listing h2 {
  font-size: var(--global-lager-font-size);
  line-height: 30px;
  margin-bottom: 12px;
}
.blog-search-listing .entry-meta {
  display: var(--global-display-style);
  align-items: var(--alignment-center);
  gap: 10px;
  margin: 0 0 20px 0;
}
.blog-search-listing span.posted-on,
.blog-search-listing span.byline {
  display: var(--global-display-style);
  align-items: var(--alignment-center);
  gap: 6px;
}
/* End Search Page */

/* Portfolio Detail */
.portfolio-project-right h2 {
  margin-bottom: 16px;
}
ul.tech-list {
    display: var(--global-display-style);
    justify-content: var(--justify-content-start);
    align-items: var(--alignment-center);
    gap: 10px;
    flex-wrap: wrap;
}
ul.tech-list li {
  font-size: var(--global-small-one-font-size);
  line-height: 20px;
  font-weight: var(--global-font-weight-regular);
  color: var(--common-white-color);
}
.portfolio-project-right .table-borderless {
  margin: 0;
}
.table-borderless tr td:nth-child(odd) {
  font-weight: 700;
  color: var(--primary-color);
}
.table-borderless tr td:nth-child(even) {
  font-weight: 400;
  color: var(--common-grayscale-color);
}

.features-list li {
  font-size: var(--global-medium-font-size);
  color: var(--common-grayscale-color);
  line-height: 26px;
  font-weight: var(--global-font-weight-regular);
  font-style: var(--normal-font-family);
  margin-bottom: 10px;
  position: var(--position-relative);
  padding-left: 25px;
}
.features-list li:last-child {
  margin-bottom: var(--global-value-zero);
}
.features-list li:before {
  content: '';
  position: var(--position-absolute);
  top: 4px;
  left: 0;
  background-image: url(assets/images/slider_arrow.svg);
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
  width: 16px;
  height: 16px;
} 
/* End Portfolio Detail */

.blogList_middle_left {
  display: none;
} 

body .grecaptcha-badge {
  bottom: 95px !important;
  z-index: 2;
}

body .olark-launch-button-wrapper {
  
}