/*1. Default CSS*/
:root {
  /*@Googel Font-Family Declaration*/
  --vln-gf-body:'Ubuntu', sans-serif;
  --vln-gf-heading:'Nunito Sans', sans-serif;
  --vln-gf-fontawesome: "Font Awesome 6 Pro";
  /*@Color Declaration*/
  --vln-text:#7E8185;
  --vln-text-dark: #9DB6D5;
  --vln-text-gray: #89868d;
  --vln-primary:#4baf47;
  --vln-secondary:#eec044;
  --vln-base:#007c14;	
  --vln-accent:#6e2a00;
  --vln-gray: #f3f6fd;
  --vln-white: #fff;
  --vln-black: #0B2038;
  --vln-light:#f8f7f0;
  --vln-border-color: #FCE9DD;
}
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
/*Typography CSS*/
body {
  font-family:var(--vln-gf-body);
  font-size:16px;
  font-weight: 400;
  color: var(--vln-color-text-body);
}
a {text-decoration: none;}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--vln-gf-heading);
  color:var(--vln-primary);
  margin-top: 0px;
  font-weight: var(--vln-fw-sbold);
  line-height: 1.2;
}
h1 {font-size: var(--vln-fs-h1);}
h2 {font-size: var(--vln-fs-h2);}
h3 {font-size: var(--vln-fs-h3);}
h4 {font-size: var(--vln-fs-h4);}
h5 {font-size: var(--vln-fs-h5);}
h6 {font-size: var(--vln-fs-h6);}
ul {
  margin: 0px;
  padding: 0px;
}
p {
  font-size: 16px;
  font-weight:400;
  color: var(--vln-color-text-body);
  margin-bottom: 15px;
  line-height: 26px;
}
.btn,
button,
span,
p,
input,
select,
textarea,
li,
img,
svg path,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

textarea#story {
    -moz-appearance:none;
  outline:0px none transparent;
}

textarea:focus, input:focus{
    outline: 0;
}

*:focus {
    outline: 0;
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
  text-decoration:none;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
  border: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

input {
  outline: none;
}

input[type=color] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  padding: 0;
  border-radius: 50%;
}

*::-moz-selection {
  background: var(--vln-primary);
  color: var(--vln-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--vln-primary);
  color: var(--vln-white);
  text-shadow: none;
}

::selection {
  background: var(--vln-primary);
  color: var(--vln-white);
  text-shadow: none;
}
.vln-primary{color: var(--vln-primary);}
/* Common Classes CSS **/
.w-img img {width: 100%;}
.m-img img {max-width: 100%;}
img {max-width: 100%;}
.fix {overflow: hidden;}
.clear {clear: both;}
.f-left {float: left;}
.f-right {float: right;}
.z-index-1 {z-index: 1;}
.z-index-11 {z-index: 11;}
.overflow-y-visible {overflow-x: hidden;overflow-y: visible;}
.p-relative {position: relative;}
.p-absolute {position: absolute;}
.include-bg {background-position: center;background-size: cover;background-repeat: no-repeat;}
.b-radius {border-radius: 6px;}

.padding {padding:90px 0;}
@media (max-width: 991px) {
  .padding {
    padding: 70px 0;
  }
}
@media (max-width: 767px) {
  .padding {
    padding: 60px 0;
  }
}

@media (max-width: 991px) {
  .sm-padding {
    padding: 15px;
  }
}
.padding-15 {
  padding: 15px !important;
}
.pt-0 {padding-top: 0;}
.pb-0 {padding-bottom: 0;}
/* Section Heading */
.section-heading {
  margin-bottom:35px;
}
.section-heading .sub-heading {
  color: var(--vln-accent);
  margin-bottom: 22px;
  line-height: 42px;
  font-weight: 600;
  font-size: 27px;
}
.section-heading .section-title {
  font-weight:800;
  margin-bottom:20px;
  font-size:36px;		
}
@media (max-width: 991px) {
  .section-heading .section-title {
    font-size: 44px;
  }
}
@media (max-width: 767px) {
  .section-heading .section-title {
    font-size: 32px;
    margin-bottom: 10px;
  }
}
.section-heading p {
  font-size: 18px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.section-heading p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .section-heading p br {
    display: none;
  }
}

@media (max-width: 991px) {
  .section-heading.mb-60 {
    margin-bottom: 40px;
  }
  .section-heading {
    margin-bottom: 40px;
  }
}
/* Margin Class */
.mt-10 {margin-top: 10px;}
.mt-15 {margin-top: 15px;}
.mt-20 {margin-top: 20px;}
.mt-25 {margin-top: 25px;}
.mt-30 {margin-top: 30px;}
.mt-35 {margin-top: 35px;}
.mt-40 {margin-top: 40px;}
.mt-45 {margin-top: 45px;}
.mt-50 {margin-top: 50px;}
.mb-10 {margin-bottom: 10px;}
.mb-15 {margin-bottom: 15px;}
.mb-20 {margin-bottom: 20px;}
.mb-25 {margin-bottom: 25px;}
.mb-30 {margin-bottom: 30px;}
.mb-35 {margin-bottom: 35px;}
.mb-40 {margin-bottom: 40px;}
.mb-45 {margin-bottom: 45px;}
.mb-50 {margin-bottom: 50px;}
.mb-60 {margin-bottom: 60px;}
.mb-90 {margin-bottom: 90px;}
.mr-10 {margin-right:10px;}

/*Buttons CSS*/
.vln-primary-btn {
  background:var(--vln-primary);
  color:var(--vln-white);
  font-family:var(--vln-gf-primary);
  display: inline-block;
  font-size:18px;
  font-weight: 500;
  line-height: 1;
  text-transform: capitalize;
  padding:16px 35px;
  letter-spacing: 0;
  border-radius:3px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.vln-primary-btn:focus, .vln-primary-btn:hover {
  color: var(--vln-white);
}
@media (max-width: 767px) {
  .vln-primary-btn {
    font-size: 15px;
    padding: 15px 25px;
  }
}
.vln-primary-btn span {
  position: relative;
  z-index: 20;
}
.vln-primary-btn:after {
  background: var(--vln-white);
  content: "";
  height: 155px;
  left: -75px;
  opacity: 0.2;
  position: absolute;
  top: -50px;
  -webkit-transform: rotate(35deg);
      -ms-transform: rotate(35deg);
          transform: rotate(35deg);
  -webkit-transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
  z-index: -1;
}
.vln-primary-btn:hover:after {
  left: 120%;
  -webkit-transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1);
}
.vln-primary-btn i {
  margin-left: 20px;
}
@media (max-width: 767px) {
  .vln-primary-btn i {
    margin-left: 10px;
  }
}
/*Start Back to top css*/
.back-to-top {
  background: var(--vln-primary);
  border-radius: 3px;
  bottom: 30px;
  color:var(--vln-white);
  cursor: pointer;
  display: none;
  font-size: 20px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  position: fixed;
  right: 30px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 337;
}
.back-to-top:hover, .back-to-top:focus {
  background:var(--vln-base);
  color:var(--vln-white);
}
/*End scroll_up css*/
/*Preloader Start Here*/
.preloader {
  background-color:var(--vln-white);
  bottom: 0;
  height: 100vh;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 99999;
}
.preloader .loader {
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.preloader .pre-box {
  width: 50px;
  height: 50px;
  background:var(--vln-secondary);
  -webkit-animation: loaderAnimate 0.5s linear infinite;
  animation: loaderAnimate 0.5s linear infinite;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 3px;
}
.preloader .pre-shadow {
  width: 50px;
  height: 5px;
  background: #000;
  opacity: 0.1;
  position: absolute;
  top: 59px;
  left: 0;
  border-radius: 50%;
  -webkit-animation: loaderShadow 0.5s linear infinite;
  animation: loaderShadow 0.5s linear infinite;
}

@-webkit-keyframes loaderAnimate {
  17% {
    border-bottom-right-radius: 3px;
  }
  25% {
    -webkit-transform: translateY(9px) rotate(22.5deg);
    transform: translateY(9px) rotate(22.5deg);
  }
  50% {
    -webkit-transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    border-bottom-right-radius: 40px;
  }
  75% {
    -webkit-transform: translateY(9px) rotate(67.5deg);
    transform: translateY(9px) rotate(67.5deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(90deg);
    transform: translateY(0) rotate(90deg);
  }
}
@keyframes loaderAnimate {
  17% {
    border-bottom-right-radius: 3px;
  }
  25% {
    -webkit-transform: translateY(9px) rotate(22.5deg);
    transform: translateY(9px) rotate(22.5deg);
  }
  50% {
    -webkit-transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    border-bottom-right-radius: 40px;
  }
  75% {
    -webkit-transform: translateY(9px) rotate(67.5deg);
    transform: translateY(9px) rotate(67.5deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(90deg);
    transform: translateY(0) rotate(90deg);
  }
}
@-webkit-keyframes loaderShadow {
  50% {
    -webkit-transform: scale(1.2, 1);
    transform: scale(1.2, 1);
  }
}
@keyframes loaderShadow {
  50% {
    -webkit-transform: scale(1.2, 1);
    transform: scale(1.2, 1);
  }
}
/*Preloader End Here*/
/*Header Start Here CSS*/
.header-area {
  padding:10px 85px;
}
.header-area .logo img {
	width:auto;
	height:100px;
}
.header-right {
  display: flex;
  justify-content: center;
}
.header-right {
  padding-top:10px;
}
.header-icon {
  margin-right:0px;
  font-size: 20px;
  margin-top:15px;
}
.header-sh p {
  font-size: 14px;
  margin-bottom: 9px;
  line-height: 1;
  color:#00b7ff;
  font-weight:500;
}
.header-sh h4 {
  color: var(--vln-black);
  font-size: 18px;
  margin-bottom: 0px;
  font-weight: 500;
  padding-top: 15px;
  font-family: var(--vln-gf-heading);
}
.header-icon i {
  color: var(--vln-base);
  font-size: 20px;
  margin-right: 10px;
  background-color: var(--vln-light);
  padding: 18px;
  border-radius: 30px;
}
.main-menu ul li {
  display: inline-block;
  margin: 0 12px;
  position: relative;
  z-index: 999;
  list-style:none;
}
.main-menu ul li a {
  color:var(--vln-black);
  font-weight:500;
  font-size:16px;
  padding:45px 10px 0;
  display: list-item;
  line-height: 1;
  position: relative;
  text-transform: uppercase;
}
.main-menu ul>li:hover>a::before,.main-menu ul > li.active > a::before {
  opacity: 1;
}
.main-menu ul li:hover a,.main-menu ul li.active a {
  color:var(--vln-primary);
}
.header-top-btn a {
  padding: 16px 24px;
}
.header-top-btn {
  padding-top:27px;
}
.header-top-btn .vln-primary-btn {font-size:16px;}
.header-btn a {
  background: #6c5edf;
  padding: 20px 60px;
  border-radius: 30px;
  font-size: 18px;
  letter-spacing: 0;
  font-weight: 700;
  color: #fff;
}
.main-menu ul li ul.submenu {
	position: absolute;
	background: #fff;
	width: 230px;
	top: 110%;
	padding: 15px 0;
	transition: 0.3s;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	opacity: 0;
	visibility: hidden;
	box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
	text-align: left;
}
.main-menu ul li:hover>ul.submenu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.main-menu ul li ul.submenu li {
  margin: 0;
  display: block;
  margin-bottom: 0px;
}

.main-menu ul li ul.submenu li>a::before {
  background: transparent;
}

.main-menu ul li ul.submenu li:hover>a {
  color: #002450;
}

.main-menu ul li ul.submenu li:last-child {
  margin-bottom: 0;
}

.main-menu ul li ul.submenu li a {
	color: #262626;
	font-weight: 500;
	font-size: 15px;
	padding: 12px 28px;
}

.main-menu ul li ul.submenu li ul.submenu {
  left: 100%;
  top: 0;
}

.header-btn a:hover {
  background: #ff63a3;
  color: #fff;
}

.sticky-bar {
	left: 0;
	margin: auto;
	position: fixed;
	top: 0;
	width: 100%;
	box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
	z-index: 9999;
	-webkit-animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
	animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
	-webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
	background: #fff;
}
.sticky-bar .header-sh h4 {
	color: #262626;
}

@media (min-width: 1200px) and (max-width: 1500px) {
.header-area {padding-left: 20px;padding-right: 20px;}
.main-menu ul li {margin: 0 0px;}
.main-menu ul li a{font-size:14px;}	
.header-sh h4 {font-size:16px;}	
.header-top-btn {padding-top: 22px;}	
.header-top-btn a {padding: 12px 6px;}	
.header-icon i{padding: 14px;font-size: 14px;margin-right: 3px;}
.header-icon {margin-right: 6px;}
.brand-area {padding-left: 50px;padding-right: 50px;}
}

/* LG  Device :992px. */
@media (min-width: 992px) and (max-width: 1200px) {
.header-area {padding-left: 15px;padding-right: 15px;}
.header-sh-wrp {display: none;}
.header-area.pt-30.pb-30 {padding-bottom: 22px;}
.logo a img {width: 100%;}
.header-icon {margin-right: 9px;font-size: 14px;}
.header-sh p {font-size: 14px;margin-bottom: 1px;}
.btn.header-btn {padding: 15px 28px;font-size: 14px;}
.header-sh h4 {color: #fff;font-size: 15px;margin-bottom: 0;}
.main-menu ul li {margin: 0 5px;}
.main-menu ul li a {padding: 14px 4px;font-size: 15px;}
.brand-area {padding-left: 50px;padding-right: 50px;}
}
/* MD Device :768px. */
@media (min-width: 768px) and (max-width: 991px) {
.header-area {padding-left: 15px;padding-right: 15px;}
.brand-area {padding-left: 30px;padding-right: 30px;}
.header-sh h4 {color: #000;font-size: 15px;}
.header-area {margin-left: 0px;margin-right: 0px;}
}
/* small mobile (XS) :320px. */
@media (max-width: 767px) {
.brand-area {padding-left: 15px;padding-right: 15px;}
.header-area {padding-left: 0px;padding-right: 0px;}
}
/*Header CSS End*/
/*Main Slider*/
.main-slider {
  overflow: hidden;
  position: relative;
}
.main-slider .swiper-slide {
  position: relative;
  background-color:var(--vln-base);
}
.main-slider .swiper-slide .image-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transform: scale(1);
          transform: scale(1);
  background-position: center;
  -webkit-transition: -webkit-transform 7000ms ease;
  transition: -webkit-transform 7000ms ease;
  transition: transform 7000ms ease;
  transition: transform 7000ms ease, -webkit-transform 7000ms ease;
}

.main-slider .swiper-slide .container {
  padding-top: 162.5px;
  padding-bottom: 182.5px;
}

@media (max-width: 991px) {
  .main-slider .swiper-slide .container {
    padding-top: 130px;
    padding-bottom: 130px;
  }
}

@media (max-width: 425px) {
  .main-slider .swiper-slide .container {
    padding-top: 110px;
    padding-bottom: 110px;
  }
}

.main-slider .swiper-slide .tagline {
  display: block;
  font-size:20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color:var(--vln-white);
  margin-bottom:10px;
  opacity: 0;
  -webkit-transform: translateY(-120px);
          transform: translateY(-120px);
  -webkit-transition-delay: 0;
          transition-delay: 0;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

@media (max-width: 575px) {
  .main-slider .swiper-slide .tagline {
    font-size: 14px;
  }
}

.main-slider .swiper-slide h2 {
  margin: 0;
  color: var(--vln-white);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--vln-base);	
  font-family: var(--vln-gf-heading);
  font-size: 100px;
  line-height: 1.1;
  margin-top: 15px;
  font-weight: 700;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(110px);
          transform: translateY(110px);
  -webkit-transition-delay: 1000ms;
          transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider .swiper-slide h2 br {
  display: inherit !important;
}

.main-slider .swiper-slide p {
  margin: 0;
  font-size: 18px;
  line-height: 1.78;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 40px;
  margin-top: 25px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(110px);
          transform: translateY(110px);
  -webkit-transition-delay: 1000ms;
          transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

@media (max-width: 768px) {
  .main-slider .swiper-slide p {
    max-width: 440px;
  }
}

@media (max-width: 575px) {
  .main-slider .swiper-slide p {
    font-size: 15px;
  }
}

.main-slider .swiper-slide-active .image-layer {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}

.main-slider .swiper-slide-active h2,
.main-slider .swiper-slide-active .tagline,
.main-slider .swiper-slide-active p {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
          transform: translateY(0) translateX(0);
}

.main-slider__nav {
  width: 100%;
  max-width: 1200px;
  padding-left: 15px;
  padding-right: 15px;
  position: absolute;
  top:55%;
  left: 50%;
  z-index:1;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 425px) {
  .main-slider__nav {
    display: none;
  }
}

.main-slider__nav .swiper-button-next,
.main-slider__nav .swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 100;
  width:60px;
  height:60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  color:var(--vln-white);
  border-radius: 50%;
  background-color:var(--vln-secondary);	
  /*opacity: 0.3;*/
  margin: 0;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

@media (max-width: 991px) {
  .main-slider__nav .swiper-button-next,
  .main-slider__nav .swiper-button-prev {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
}

.main-slider__nav .swiper-button-next:hover,
.main-slider__nav .swiper-button-prev:hover {
  opacity: 1;
}

.main-slider__nav .swiper-button-next::after,
.main-slider__nav .swiper-button-prev::after {
  display: none;
}

.main-slider__nav .swiper-button-prev {
  margin-bottom:60px;
}

@media (max-width: 991px) {
  .main-slider__nav .swiper-button-prev {
    margin-top: 10px;
  }
}
/*main-hero*/
.main-hero {
	padding:60px 0;
  	position: relative;
  	background: var(--vln-light);
}
.main-hero .section-heading .section-title {
  margin-bottom: 20px;
  font-size: 45px;
}
.main-hero .section-heading .sub-heading {
  color: var(--vln-accent);
  margin-bottom: 22px;
  font-size: 45px;
}

/*START: Theme Hero CSS*/
.tj-hero-section {
  position:relative;
  background: var(--vln-light);
  padding: 90px 85px;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-hero-section {
    padding-top:60px;
    padding-bottom:60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-hero-section .tj-sec-heading {
    margin-bottom: 80px;
  }
}
.tj-hero-section .title {
  color: var(--vln-primary);
  font-weight:400;
}
.tj-hero-section .hero-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-hero-section .hero-shape {
    width: 50%;
  }
}
.tj-hero-section .hero-shape1 {
  position: absolute;
  top: 0;
  right: 0;
}
.tj-hero-section .hero-shape2 {
  position: absolute;
  top: 20%;
  left: 0;
  opacity: 0.5;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-hero-section .hero-shape2 {
    display: none;
  }
}
.tj-hero-section .hero-shape3 {
  position: absolute;
  top: 12%;
  left: 0;
  opacity: 0.2;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-hero-section .hero-shape3 {
    display: none;
  }
}
.tj-hero-section .hero-scroll {
  position: absolute;
  bottom: -44px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 3;
  max-width: 125px;
  width: 100%;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-hero-section .hero-scroll {
    max-width: 90px;
    bottom: -30px;
  }
}
.tj-hero-section .hero-scroll .scroll-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.tj-hero-section .hero-scroll .scroll-icon a {
  display: inline-block;
  opacity: 0.6;
}
.tj-hero-section .hero-scroll .jump {
  -webkit-animation: jump-arrow 2.5s infinite;
  animation: jump-arrow 2.5s infinite;
}

.tj-slider-section {
  position: relative;
}
.tj-slider-section .swiper-slide {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.tj-slider-section .swiper-slide::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(78deg, rgba(40, 40, 40, 0.95) 0%, rgba(40, 40, 40, 0.76) 41.52%, rgba(255, 255, 255, 0) 100%);
  mix-blend-mode: multiply;
}
.tj-slider-section .swiper-slide .white-sub-title,
.tj-slider-section .swiper-slide .desc,
.tj-slider-section .swiper-slide .title {
  opacity: 0;
  visibility: hidden;
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}
.tj-slider-section .swiper-slide .hero-button {
  opacity: 0;
  visibility: hidden;
  -webkit-transition-delay: 700ms;
  transition-delay: 700ms;
  -webkit-transition: opacity 1500ms ease, -webkit-transform 1500ms ease;
  transition: opacity 1500ms ease, -webkit-transform 1500ms ease;
  transition: transform 1500ms ease, opacity 1500ms ease;
  transition: transform 1500ms ease, opacity 1500ms ease, -webkit-transform 1500ms ease;
}
.tj-slider-section .swiper-slide .white-sub-title,
.tj-slider-section .swiper-slide .title {
  -webkit-transform: translateY(-125px);
  -ms-transform: translateY(-125px);
      transform: translateY(-125px);
}
.tj-slider-section .swiper-slide .hero-button,
.tj-slider-section .swiper-slide .desc {
  -webkit-transform: translateY(125px);
  -ms-transform: translateY(125px);
      transform: translateY(125px);
}
.tj-slider-section .swiper-slide.swiper-slide-active .white-sub-title,
.tj-slider-section .swiper-slide.swiper-slide-active .desc,
.tj-slider-section .swiper-slide.swiper-slide-active .title,
.tj-slider-section .swiper-slide.swiper-slide-active .hero-button {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
  -ms-transform: translateY(0) translateX(0);
      transform: translateY(0) translateX(0);
}
.tj-slider-section .swiper-pagination {
  width: auto;
  right: 50px;
  left: auto;
  bottom: auto;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(90deg);
      -ms-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-slider-section .swiper-pagination {
    right: 15px;
  }
}
.tj-slider-section .swiper-pagination .swiper-pagination-bullet {
  display: inline-block;
  margin: 0 6px;
}
.tj-slider-section .swiper-pagination .swiper-pagination-bullet:last-child {
  margin-bottom: 0;
}
.tj-slider-section .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  cursor: pointer;
  border-radius: 50%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: transparent;
  position: relative;
  top: -9px;
  background: rgba(255, 255, 255, 0.6);
  opacity: 1;
}
.tj-slider-section .swiper-pagination-bullet-active {
  background: -webkit-gradient(linear, left top, right top, from(var(--tj-color-theme-secondary)), to(var(--tj-color-theme-primary)));
  background: linear-gradient(90deg, var(--tj-color-theme-secondary) 0%, var(--tj-color-theme-primary) 100%);
}

.tj-hero-section-three {
  position: relative;
  overflow: hidden;
  padding-top: 310px;
  padding-bottom: 135px;
  background: linear-gradient(78deg, rgba(95, 57, 255, 0.95) 0%, rgba(95, 57, 255, 0.76) 41.52%, rgba(255, 255, 255, 0) 100%);
  mix-blend-mode: multiply;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-hero-section-three {
    padding-top: 260px;
    padding-bottom: 85px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-hero-section-three {
    padding-top: 180px;
    padding-bottom: 55px;
  }
}
.tj-hero-section-three .hero-lg-image {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 1328px;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url(../images/banner-bg/hero-overly.svg);
          mask-image: url(../images/banner-bg/hero-overly.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
}
.tj-hero-section-three .hero-lg-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tj-hero-section-three .hero-lg-image::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--light-color-l-7, #f8f7ff);
  mix-blend-mode: color;
}
.tj-hero-section-three .hero-content-area {
  padding-top: 0;
  padding-bottom: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-hero-section-three .tj-sec-heading .title {
    font-size: 55px;
  }
}
.tj-hero-section-three .tj-sec-heading .desc {
  max-width: 680px;
}
.tj-hero-section-three .tj-sec-heading .desc p {
  font-size: 18px;
}
.tj-hero-section-three .tj-sec-heading .hero-button {
  margin-top: 30px;
}
.tj-hero-section-three .hero-group-shape .group-1 {
  position: absolute;
  top: 0;
  left: 0;
}
.tj-hero-section-three .hero-group-shape .group-2 {
  position: absolute;
  bottom: 35px;
  right: 35%;
  opacity: 0.4;
}
.tj-hero-section-three .hero-group-shape .group-3 {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.9;
}
.tj-hero-section-three .hero-group-shape .group-4 {
  position: absolute;
  top: 0;
  left: 40%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0.9;
}
.tj-hero-section-three .hero-group-shape .group-5 {
  position: absolute;
  bottom: 100px;
  left: 40%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0.5;
}
.tj-hero-section-three .hero-group-shape .group-6 {
  position: absolute;
  top: 20%;
  width: 105px;
  height: 105px;
  left: 35%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-mask-image: url(../images/shape/shape-60.svg);
          mask-image: url(../images/shape/shape-60.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background: var(--tj-color-common-white);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-hero-section-three .hero-group-shape {
    display: none;
  }
}

.hero-group-shape {
  opacity: 0.5;
}
@media (max-width: 575px) {
  .hero-group-shape {
    display: none;
  }
}
.hero-group-shape .bg-shape-one {
  position: absolute;
  top: 0;
  right: 0;
}
.hero-group-shape .bg-shape-two {
  position: absolute;
  top: 0;
  right: 0;
}
.hero-group-shape .bg-shape-three {
  position: absolute;
  top: 0;
  right: 0;
}
.hero-group-shape .bg-shape-four {
  position: absolute;
  top: 70px;
  right: 0;
}
.hero-group-shape .hero-shape {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  opacity: 0.4;
}
.hero-group-shape .hero-shape1 {
  position: absolute;
  top: 30%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hero-group-shape .hero-shape1 {
    display: none;
  }
}
.hero-group-shape .hero-shape2 {
  position: absolute;
  bottom: 10%;
  right: 15%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hero-group-shape .hero-shape2 {
    display: none;
  }
}

.hero-left-content {
  position: relative;
  z-index: 3;
}
.hero-left-content .hero-sub-title {
color: var(--vln-accent);
  font-family: var(--vln-gf-heading);
  font-size: 27px;
  letter-spacing: 0;
  font-weight: 700;
  display: block;
  /*margin-bottom: 10px;*/
}
.hero-left-content .hero-title {
  color: var(--vln-primary);
  margin-bottom:15px;
  font-family: var(--vln-gf-heading);
  font-size: 50px;
  font-weight: 700;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-left-content .hero-title {
    font-size:36px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hero-left-content .hero-title {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
	.tj-hero-section{text-align:center;}
  .hero-left-content .hero-title {
    font-size:36px;
	text-align:center;
  }
  .hero-left-content .hero-sub-title{
   text-align:center;
   font-size: 45px	  
}
}
.hero-left-content p {
  color: var(--vln-black);
  font-size: 18px;
  max-width: 685px;
  margin-bottom: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-left-content p {
    max-width: 480px;
  }
}
.hero-left-content .hero-button {
  margin-top:25px;
}

.hero-image-group {
  text-align: right;
  position: relative;
  margin-right: -175px;
  z-index: 3;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .hero-image-group {
    margin-right: -35px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-hero-section {padding: 40px 35px;}	
  .hero-image-group {
    margin-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hero-image-group {
    margin-right: 140px;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .hero-image-group {
    margin-right: 20px;
    text-align: center;
  }
}
.hero-image-group .group-image1 {
  position: relative;
  max-width:940px;
  width: 100%;
  /*margin-left: auto;*/
  z-index: 3;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-image-group .group-image1 {
    max-width:640px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-image-group .group-image1 {
    margin-right: -30px;
  }
}
@media (max-width: 575px) {
  .hero-image-group .group-image1 {
    max-width:330px;
  }
}
.hero-image-group .group-image1::before {
  position: absolute;
  content: "";
  top: -25px;
  width: 110%;
  height: 105%;
  right: -20px;
  background: url(../images/shape/hero-border.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.hero-image-group .group-image1 img {
  position: relative;
  z-index: 3;
  /*border-radius: 550px;*/
}
.hero-image-group .group-image2 {
  position: absolute;
  top: 20%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  z-index: 3;
  max-width: 345px;
  width: 100%;
}
.hero-image-group .group-image2::before {
  content: "";
  position: absolute;
  border-radius: 550px 500px 500px 500px;
  opacity: 3.25%;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--tj-color-grey-7)), to(rgba(40, 40, 40, 0.7)));
  background: linear-gradient(180deg, var(--tj-color-grey-7) 0%, rgba(40, 40, 40, 0.7) 100%);
  top: 46%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -15px;
  width: 346px;
  height: 530px;
  z-index: 3;
}
.hero-image-group .group-image3 {
  position: absolute;
  top: 20%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  z-index: 3;
  max-width: 345px;
  width: 100%;
}
.hero-image-group .group-image3::before {
  content: "";
  position: absolute;
  border-radius: 550px 500px 500px 500px;
  opacity: 3.25%;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--tj-color-grey-7)), to(rgba(40, 40, 40, 0.7)));
  background: linear-gradient(180deg, var(--tj-color-grey-7) 0%, rgba(40, 40, 40, 0.7) 100%);
  top: 46%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -15px;
  width: 346px;
  height: 530px;
  z-index: 3;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-image-group .group-image2::before {
    width: 275px;
    height: 450px;
    top: 50%;
    left: -20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-image-group .group-image2::before {
    width: 220px;
    height: 360px;
  }
}
@media (max-width: 575px) {
  .hero-image-group .group-image2::before {
    width: 220px;
    height: 350px;
    top: 50%;
    left: -20px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-image-group .group-image2 {
    left: -50px;
    max-width: 250px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-image-group .group-image2 {
    max-width: 200px;
    left: 25%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-image-group .group-image2 {
    max-width: 200px;
    left: 15%;
  }
}
@media (max-width: 575px) {
  .hero-image-group .group-image2 {
    max-width: 200px;
    left: 20px;
  }
}
.hero-image-group .group-image2 img {
  border-radius: 515px 500px 515px 500px;
  border: 10px solid var(--tj-color-common-black);
}
.hero-image-group .group-image3 {
  position: absolute;
  left: 0;
  top: -12%;
  opacity: 0.2;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-image-group .group-image3 {
    top: -22%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hero-image-group .group-image3 {
    display: none;
  }
}
.hero-image-group .group-image4 {
  position: absolute;
  left: 15%;
  top: -5%;
  opacity: 0.5;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-image-group .group-image4 {
    top: -15%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hero-image-group .group-image4 {
    display: none;
  }
}
.hero-image-group .group-image5 {
  position: absolute;
  right: -20px;
  top: -10%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hero-image-group .group-image5 {
    display: none;
  }
}
.hero-image-group .group-image6 {
  position: absolute;
  left: -5%;
  bottom: 5%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-image-group .group-image6 {
    bottom: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hero-image-group .group-image6 {
    display: none;
  }
}

.hero-content-area {
  padding-top: 285px;
  padding-bottom: 90px;
  max-width: 760px;
  position: relative;
  z-index: 3;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hero-content-area {
    padding-top: 260px;
    padding-bottom: 30px;
  }
}
.hero-content-area .title {
  color: var(--tj-color-grey-5);
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-content-area .title {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .hero-content-area .title {
    font-size: 38px;
  }
}
.hero-content-area .desc p {
  color: var(--tj-color-light-4);
  font-size: 20px;
}
.hero-content-area .hero-button {
  margin-top: 40px;
}
.hero-content-area .active-shape {
  position: relative;
}
/*Hero Banner Section End CSS */

/*Marquee Section*/
.marquee-section {
  position: relative;
  padding:24px 0;
  background: var(--vln-secondary);
}
@media (max-width: 1199.98px) {
  .marquee-section {
    padding:15px 0;
  }
}
.marquee-section .icon-leaves-37 {
  position: relative;
}

.marquee {
  position: relative;
  --duration:60s;
  --gap: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  gap: var(--gap);
}
.marquee .marquee-group {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  -webkit-animation: scroll var(--duration) linear infinite;
          animation: scroll var(--duration) linear infinite;
}
.marquee .text {
 position: relative;
  font-size: 27px;
  font-weight: 700;
  line-height: 36px;
  font-family: var(--vln-gf-heading);
  color: var(--vln-accent);
  padding: 0 30px;
}
@media (max-width: 1199.98px) {
  .marquee .text {
    padding: 30px;
  }
}
.marquee .text:before {
  content: "";
  position: absolute;
  top: 50%;
  right: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color:var(--vln-white);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (prefers-reduced-motion: reduce) {
  .marquee .marquee-group {
    -webkit-animation-play-state: play;
            animation-play-state: play;
  }
}
@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-100% - var(--gap)));
            transform: translateX(calc(-100% - var(--gap)));
  }
}
@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-100% - var(--gap)));
            transform: translateX(calc(-100% - var(--gap)));
  }
}
/*About Section*/
.about-section {
  position: relative;
  padding: 120px 0 116px;
}
@media (max-width: 991.98px) {
  .about-section .image-column .inner-column {
    margin-bottom: 40px;
  }
}
.about-section .image-column .inner-column .image-box {
  position: relative;
}
.about-section .image-column .inner-column .image-box .exp-box {
  position: absolute;
  top: 118px;
  left: -70px;
  width: 220px;
  background-color:var(--vln-secondary);
  -webkit-box-shadow: 0 15px 60px rgba(68, 67, 67, 0.08);
          box-shadow: 0 15px 60px rgba(68, 67, 67, 0.08);
  padding:10px 50px 10px 120px;
  border-radius: 10px;
}
@media (max-width: 1399.98px) {
  .about-section .image-column .inner-column .image-box .exp-box {
    top: 53px;
    left: 19px;
  }
}
@media (max-width: 767.98px) {
  .about-section .image-column .inner-column .image-box .exp-box {
    left: 50px;
  }
}
@media (max-width: 575.98px) {
  .about-section .image-column .inner-column .image-box .exp-box {
    left: 15px;
  }
}
.about-section .image-column .inner-column .image-box .exp-box .image {
  margin-bottom: 24px;
  position: absolute;
  top:3px;
  left:10px;
}

.about-section .image-column .inner-column .image-box .exp-box .title {
  font-family:var(--vln-gf-heading);
  color:var(--vln-accent);
  font-weight:700;
  margin-bottom:0;
  font-size:36px;
}
.about-section .image-column .inner-column .image-box .exp-box span {
  font-size: 30px;
  font-family: var(--vln-gf-heading);
  line-height: auto;
  color: var(--vln-accent);
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .about-section .image-column .inner-column .image-box .image img {
    width: 100%;
  }
}
.about-section .image-column .inner-column .image-box .image-2 {
  position: absolute;
  bottom:50px;
  right:30px;
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .about-section .image-column .inner-column .image-box .image-2 {
    display: none;
  }
}
.about-section .content-column .inner-column {
  margin-left:25px;
}
@media (max-width: 1199.98px) {
  .about-section .content-column .inner-column {
    margin-left: 10px;
  }
}
.about-section .content-column .inner-column .sub-title {
  font-size: 18px;
  margin-bottom:5px;
  font-weight: 700;
  font-family: var(--vln-gf-heading);
  color: var(--vln-accent);
}

.about-section .content-column .inner-column .title {
  font-size: 50px;
  margin-bottom: 33px;
  font-weight: 700;
  font-family: var(--vln-gf-heading);
}
@media (max-width: 1199.98px) {
  .about-section .content-column .inner-column .title {
    font-size: 39px;
  }
}
@media (max-width: 575.98px) {
  .about-section .content-column .inner-column .title {
    font-size: 30px;
    line-height: 37px;
  }
}
.about-section .content-column .inner-column .text {
  font-family: var(--vln-gf-body);
  color: var(--vln-black);
  margin-bottom: 25px;
}
.overlay-anim {
  position: relative;
}
.overlay-anim:before {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 9;
  pointer-events: none;
}
.overlay-anim:hover:before {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}
.bounce-y {
  -webkit-animation: bounce-y 5s infinite linear;
  animation: bounce-y 5s infinite linear;
}

@-webkit-keyframes bounce-y {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes bounce-y {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
/*Services Start Here*/
.plants-services-section {
  padding: 60px 0;
  position: relative;
  background: var(--vln-light);
}
.plants-services-section .content-box {
	margin-right:60px;
}
.plants-services-image {
  display: flex;
  align-items: baseline;
  gap: 30px;
}
@media (max-width: 425px) {
  .plants-services-image {
    gap: 20px;
  }
}
.plants-services-image-inner {
  width: 50%;
  height: 100%;
}
.plants-services-image-inner img {
  display: block;
  width: 100%;
  border-radius: 20px;
}
.plants-services-image-inner img:not(:last-child) {
  margin-bottom: 30px;
}
@media (max-width: 425px) {
  .plants-services-image-inner img:not(:last-child) {
    margin-bottom: 20px;
  }
}
/*Services End Here*/
/*Our gallery Section Start Here*/
.our-gallery-section {
  position: relative;
}
.gallery-block .inner-box{
  position: relative;
  display: block;
  overflow: hidden;
}
.gallery-block .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
  background: #000;
}
.gallery-block .inner-box .image-box img{
  width: 100%;
  transition: all 500ms ease;
}
.gallery-block .inner-box:hover .image-box img{
  opacity: 0.7;
}
.gallery-block .inner-box .image-box:before{
  position: absolute;
  content: '';
  background: rgba(102, 145, 255, 0.8);
  mix-blend-mode: multiply;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0;
  z-index: 1;
  transition: all 500ms ease;
}
.gallery-block .inner-box:hover .image-box:before{
  opacity: 1;
}
.gallery-block .inner-box .content-box{
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.gallery-block .inner-box .content-box .view-btn a{
  position: relative;
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 86px;
  font-size: 30px;
  color: #fff;
  background:var(--vln-primary);
  border-radius: 50%;
  text-align: center;
  margin-bottom: 35px;
  top: -15px;
  opacity: 0;
}
.gallery-block .inner-box .content-box .view-btn a:hover{
  background: var(--vln-secondary) !important;
  color:var(--vln-white);
}
.gallery-block .inner-box:hover .content-box .view-btn a{
  top: 0px;
  opacity: 1;
}
.gallery-block .inner-box .content-box .text-box{
  position: relative;
  top: 15px;
  opacity: 0;
  transition: all 500ms ease;
}
.gallery-block .inner-box:hover .content-box .text-box{
  top: 0px;
  opacity: 1;
}
.gallery-block .inner-box .content-box .text-box h3{
  display: block;
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 6px;
}
.gallery-block .inner-box .content-box .text-box h3 a{
  display: inline-block;
  color:var(--vln-white);
}
.gallery-block .inner-box .content-box .text-box h3 a:hover{
  text-decoration: underline;
}
.gallery-block .inner-box .content-box .text-box p{
  color:var(--vln-white);
}
.owl-dots-none .owl-dots,
.owl-nav-none .owl-nav{
  display: none !important;
}

.owl-nav button{
  background: transparent;
}
/*Our Gallery Section End Here*/
/*Our Core Values Section Start Here*/
.core-values-section {
	position:relative;
	padding:60px 0;
}
.core-values-section .section-heading {margin-bottom:0;}
.core-values-section .section-heading .section-title{margin-bottom:10px;}
.core-values-section .core-values-text {	
	padding-left: 5px;
	padding-right: 20px;
	margin-bottom: 40px;
}
.core-values__content-list {
  position: relative;
  display: block;
  border-top: 1px solid #e9e9e9;
  border-bottom: 1px solid #e9e9e9;
  padding-top: 30px;
  padding-bottom: 31px;
}
.core-values__content-list.plant {
   padding-top:15px;
   padding-bottom:15px;
   border-top:none;
   border-bottom:none;
}
.core-values__content-list.plant li {margin-bottom:5px;}
.core-values__content-list.plant li .title {padding-left:15px;}
.core-values__content-list.plant li .title h3 {font-size:16px;line-height:24px;text-transform:none;}
.core-values__content-list.plant li .icon {font-size: 24px;
  line-height: 24px;}
.core-values__content-list li {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 17px;
}

.core-values__content-list li:last-child {
  margin-bottom: 0;
}

.core-values__content-list li .icon {
  position: relative;
  display: block;
  color: var(--vln-primary);
  font-size: 27px;
  line-height: 27px;
}

.core-values__content-list li .title {
  position: relative;
  display: block;
  padding-left: 20px;
}
.core-values__content-list li .title h3 {
  font-size: 18px;
  line-height: 28px;
  text-transform: uppercase;
  color: var(--vln-black);
  font-weight: 500;
}
.core-values__content-text {
  position: relative;
  display: block;
  padding-top:20px;
}
.core-values__content-text.plant{padding-top:0;}
.core-values__content-text h5 {
	font-weight: 800;
  margin-bottom: 20px;
  font-size: 36px;
  color: var(--vln-accent)
}
.core-values-section .section-heading.mango{margin-bottom:0;}
.core-values-section .section-heading.mango .section-title {font-size:45px;margin-bottom:0;}
/*Our Core Values Section End Here*/
/*Theme Page Header CSS*/
.page-title{
  position:relative;
  padding: 165px 0px;
  background: #000;
}

.page-title .bg-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.7;
}

.page-title .bg-layer:before{
  position: absolute;
  content: '';
  background-color:#000;
  mix-blend-mode: multiply;
  opacity: 0.0;	
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
}

.page-title h1{
  position: relative;
  display: block;
  font-size: 60px;
  line-height: 70px;
  color: var(--vln-white);
  font-weight: 700;
  margin-bottom: 0;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
}

.page-title .bread-crumb li{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 26px;
  color: #fff;
  font-weight: 500;
  padding-right: 15px;
  margin-right: 5px;
}

.page-title .bread-crumb li:last-child{
  padding: 0px !important;
  margin: 0px !important;
}

.page-title .bread-crumb li a{
  display: inline-block;
  color: #fff;
}

.page-title .bread-crumb li a:hover{
  color: var(--theme-color);
}

.page-title .bread-crumb li:before{
  position: absolute;
  content: "\f105";
  font-family: 'Font Awesome 5 Pro';
  font-weight: 400;
  top: 0px;
  right: 0px;
}

.page-title .bread-crumb li:last-child:before{
  display: none;
}

/* Page Header End Here */
.mission-vision-section{padding:80px 0; position:relative;background:var(--vln-light);}
.single-strategy {
  background-color:var(--vln-white);
  border:2px solid var(--vln-primary);
  border-radius: 10px;
  text-align: center;
  padding: 48px 15px 38px;
  position: relative;
  min-height: 445px;	
}
.strategy-icon {
  width:100px;
  height:100px;
  line-height:100px;
  background:var(--vln-light);
  border-radius:50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  margin-bottom: 0px;
  margin-bottom:25px;
}
.single-strategy h4 {
  font-size:36px;
  margin-bottom: 5px;
  font-weight: 700;
  font-family: var(--vln-gf-heading);
  color: var(--vln-accent);
}



.gallery-section {
	position:relative;
	padding:60px 0;
}


@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .gallery-section .gallery-list div {
    /*width: 30.1%;*/
  }
}
@media (max-width: 767px) {
  .gallery-section .gallery-list div{
    /*width: 30.5%;*/
  }
}
.gallery-section .gallery-list div a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 7px;
}
.gallery-section .gallery-list div a:hover .hover-overlay {
  visibility: visible;
  opacity: 1;
}
.gallery-section .gallery-list div a img {
  width: 100%;
  border-radius: 7px;
}
.gallery-section .gallery-list div a .hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(42, 125, 46, 0.55);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
	
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
	
}
.gallery-section .gallery-list div a .hover-overlay i {
  background-color: var(--vln-white);
  color: var(--vln-base);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 12px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
 
 display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}






















.contact-info-section{
  position: relative;
  padding:60px 0;		
}

.info-block-one .inner-box{
  position: relative;
  display: block;
  background: var(--vln-light);
  padding: 0px 20px 42px 20px;
  transition: all 500ms ease;
  min-height: 260px;
}

.info-block-one .inner-box:hover{
  transform: translateY(-10px);
}

.info-block-one .inner-box .icon-box{
  position: relative;
  display: inline-block;
  width: 90px;
  height: 90px;
  line-height: 90px;
  font-size: 40px;
  color: #fff;
  background:var(--vln-primary);
  border-radius: 50%;
  text-align: center;
  margin-bottom: 30px;
  margin-top: -45px;
  z-index: 1;
  transition: all 500ms ease;
}

.info-block-one .inner-box .icon-box:before{
  position: absolute;
  content: '';
  background: var(--vln-secondary);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform: scale(0,0);
  z-index: -1;
  left: 0px;
  top: 0px;
  transition: all 500ms ease;
}

.info-block-one .inner-box:hover .icon-box:before{
  transform: scale(1,1);
}

.info-block-one .inner-box h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 16px;
}

.info-block-one .inner-box p{
  color: var(--vln-black);
  font-size: 16px;
}

.info-block-one .inner-box p a{
  color: var(--vln-black);
}

.info-block-one .inner-box p a:hover{
  text-decoration: underline;
  color:var(--vln-base);	
}


/*Contact Section*/
.contact-section{
  position:relative;
  padding:60px 0;	
}
.contact-section .form-inner{
  position: relative;
  max-width: 740px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0px 0px 120px rgba(0, 0, 0, 0.1);
  padding: 70px;
}

.contact-section .form-inner .form-group {
  position: relative;
  padding: 0px 10px;
  margin-bottom: 20px;
}
.contact-section .form-inner .form-group input {
  height: form-control-height();
  padding: 14px 30px;
  outline: 0;
  background-color: #f4f5f8;
  border: 1px solid #f4f5f8;
  color: var(--vln-black);
  font-size: 18px;
  width: 100%; 
}

.contact-section .form-inner form{
  position: relative;
  margin: 0px 5px;
}

.contact-section .form-inner .form-group textarea {
  font-size:18px;
  padding: 14px 30px;	
  height: 160px;
  resize: none;
  display: block;
  background-color: #f4f5f8;
  border: 1px solid #f4f5f8;
  width: 100%;
  color: var(--vln-black);
}

.google-map-section{
  position: relative;
  margin-bottom: -150px;
}

.google-map-section #contact-google-map{
  position: relative;
  width: 100%;
  height: 620px;
}






















/*Footer Section Start Here*/
.footer-area {
  position: relative;
  z-index: 1;
  padding-top:100px;	
}
/*Footer Wave*/
.footer-wave {
  overflow: hidden;
}
.footer-wave .wave-shapes {
  position: absolute;
  z-index: -1;
  top: 1px;
  left: -100px;
  width: calc(100% + 100px);
}
.footer-wave .wave-shapes .w-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  -webkit-animation: wave 6s infinite;
          animation: wave 6s infinite;
}
.footer-wave .wave-shapes .w-shape.two {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}
@-webkit-keyframes wave {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
}
@keyframes wave {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
}
.footer-wrapper {
  background-color:#1c2019;
  position:relative;
  z-index:1;
}
.footer-widget-area{
	position:relative;
	padding-top:55px;
	padding-bottom:40px;
	z-index:1;
}
/*Footer Widget*/
.footer-widget h4.widget-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--vln-gray);
  padding-top: 55px;	
}
.footer-widget h4.widget-title:after {
  background: var(--vln-primary);	
  display: block;
  content: "";
  width: 50px;
  height: 2px;
  margin-top: 20px;
  margin-bottom: 27px;
}
.footer-about-widget .widget-content > p {
  margin-bottom: 25px;
} 
.footer-about-widget .social-icon {margin-bottom: 25px;}
.footer-about-widget .social-icon li {
  display: inline-block;
  margin-right: 7px;
  text-align: center;
}
.footer-about-widget .social-icon li a {
  color: #ffffff;
}
.footer-about-widget .social-icon li a i {
  padding: 0 10px 0 5px;
  font-size:16px;
}
.footer-about-widget .social-icon li a:hover {
  color: #009961;
}
.contact-info-widget .info-list li:not(:last-child) {
  margin-bottom: 10px;
}
.contact-info-widget .info-list li i {padding-right: 5px;color: var(--vln-secondary);}
.footer-nav-widget .footer-nav li:not(:last-child) {
  margin-bottom: 10px;
}
.footer-nav-widget .footer-nav li a {
  position: relative;
  line-height: 19px;
}
.footer-nav-widget .footer-nav li a:hover:after {
  width: 100%;
}
.footer-nav-widget .footer-nav li a:after {
  background-color:var(--vln-secondary);	
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0%;
  height: 1px;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.footer-gallery-widget .gallery-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.footer-gallery-widget .gallery-list li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 30.8%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-gallery-widget .gallery-list li {
    width: 30.1%;
  }
}
@media (max-width: 767px) {
  .footer-gallery-widget .gallery-list li {
    width: 30.5%;
  }
}
.footer-gallery-widget .gallery-list li a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 7px;
}
.footer-gallery-widget .gallery-list li a:hover .hover-overlay {
  visibility: visible;
  opacity: 1;
}
.footer-gallery-widget .gallery-list li a img {
  width: 100%;
  border-radius: 7px;
}
.footer-gallery-widget .gallery-list li a .hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(42, 125, 46, 0.55);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
	
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
	
}
.footer-gallery-widget .gallery-list li a .hover-overlay i {
  background-color: var(--vln-white);
  color: var(--vln-base);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 12px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
 
 display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
/*Copyright Area*/
.copyright-area {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding:32px 0 12px;
}
@media (max-width: 991px) {
	.copyright-area .copyright-text {
		text-align: center;
	}
}
.copyright-area .powered-by {float:right;}
@media (max-width: 991px) {
  .copyright-area .powered-by {
    text-align: center;
    margin-top: 15px;
    float: none;
  }
}
.copyright-area .powered-by a, .copyright-area .copyright-text a {
  position: relative;
}
.copyright-area .powered-by a:after, .copyright-area .copyright-text a:after {
  background-color:var(--vln-primary);	
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0;
  height: 1px;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.copyright-area .powered-by a:hover:after, .copyright-area .copyright-text a:hover:after{
  width: 100%;
}
/*Footer Section End Here*/