@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {
  --primary: #107a68;
  --secondary: #f26800;
  --white: #ffffff;
  --black: #000;
  --gray: #f1f7f6;
  --primary-dark: #043830;
  /* --gradient-primary: linear-gradient(90deg, #033029 0%, #359b89 100%); */
  --gradient-primary: linear-gradient(90deg, #7f9e36  0%, #cc565282 100%);
  --gradient-secondary: linear-gradient(90deg, #cc56524a  0%, #7f9e36 100%);
  --gradient-primary-reverse: linear-gradient(90deg, #359b89 0%, #033029 100%);
  --tp-text-1: #67687A;
  --tp-text-2: #757474;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", serif;
  font-size: 14px;
  font-weight: normal;
  line-height: 26px;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0px;
  font-weight: 500;
  line-height: 1.2;
  -webkit-transition: color 0.3s 0s ease-out;
  -moz-transition: color 0.3s 0s ease-out;
  -ms-transition: color 0.3s 0s ease-out;
  -o-transition: color 0.3s 0s ease-out;
  transition: color 0.3s 0s ease-out;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

ul {
  margin: 0px;
  padding: 0px;
}

p {
   
  font-size: 14px;
  font-weight: 400;
  color: var(--tp-text-body);
  line-height: 24px;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

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

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

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

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
}

*::-moz-selection {
  background: #f6c29b;
  color: #000;
  text-shadow: none;
}

*::-webkit-selection {
  background: #f6c29b;
  color: #000;
  text-shadow: none;
}

*::selection {
  background: #f6c29b;
  color: #000;
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--tp-common-black);
  font-size: 14px;
  opacity: 1;
}

*::placeholder {
  color: var(--tp-common-black);
  font-size: 14px;
  opacity: 1;
}
.gradianttext{
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.top-btn-wrapper {
  position: fixed;
  right: 50px;
  bottom: 15px;
  height: 44px;
  width: 44px;
  cursor: pointer;
  display: block;
  border-radius: 50%;
  z-index: 99;
}

.top-bottom-btn {
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  background: var(--gradient-secondary);
  box-shadow: 0px 8px 16px rgba(3, 4, 28, 0.3);
  color: var(--white);
  border-radius: 50%;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
.top-bottom-btn i {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}
.top-bottom-btn:hover {
  -webkit-transform: translateY(-4px);
  -moz-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  -o-transform: translateY(-4px);
  transform: translateY(-4px);
}
.btn-primary {
    user-select: none;
    -moz-user-select: none;
    background: var(--gradient-primary);
    /* background: #536e16; */
    color: var(--white);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 0;
    padding: 18px 25px;
    text-align: center;
    text-transform: capitalize;
    touch-action: manipulation;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    vertical-align: middle;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    white-space: nowrap;
    overflow: hidden;
    border-radius: 100px;
    --arrow-hover-move-x: -110%;
    gap: 10px;
    z-index: 1;
    position: relative;
    border: none;    
}
.btn-primary::before{
    content: "";
    position: absolute;
    -webkit-transition-duration: 800ms;
    transition-duration: 800ms;
    width: 200%;
    height: 200%;
    top: 110%;
    left: 50%;
    background: var(--gradient-secondary);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    z-index: -1;
}
.btn-primary:hover::before, .btn-primary:focus-visible::before {
    top: -40%;
}
.btn-primary i {
  transform: translateY(1px);
  margin-left: 6px;
}
.btn-primary:hover {
  color: var(--white);
  /*background: var(--gradient-primary-reverse);*/
}
.btn-primary-outline-white{
    border: solid 1px var(--white);
    color: var(--white);
    background: transparent;
}


@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@-moz-keyframes shine {
  100% {
    left: 125%;
  }
}
@-ms-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}

@-webkit-keyframes transform {
  0% {
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    transform: scale(0.9);
  }
  90% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    transform: scale(0.9);
  }
}
@-moz-keyframes transform {
  0% {
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    transform: scale(0.9);
  }
  90% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    transform: scale(0.9);
  }
}
@-ms-keyframes transform {
  0% {
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    transform: scale(0.9);
  }
  90% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    transform: scale(0.9);
  }
}
@keyframes transform {
  0% {
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    transform: scale(0.9);
  }
  90% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    transform: scale(0.9);
  }
}
@keyframes updown-two {
  0% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
.grey-bg {
  background-color: #ccc;
}
/*----------------------------------------*/
/*  2.10 Offcanvas
/*----------------------------------------*/
.offcanvas-box {
  position: fixed;
  left: 0;
  top: 0;
  /*width: 400px;*/
  height: 100%;
  -webkit-transform: translateX(calc(-100% - 80px));
  -moz-transform: translateX(calc(-100% - 80px));
  -ms-transform: translateX(calc(-100% - 80px));
  -o-transform: translateX(calc(-100% - 80px));
  transform: translateX(calc(-100% - 80px));
  background: var(--white) none repeat scroll 0 0;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
.offcanvas-box::-webkit-scrollbar {
  display: none; /* for Chrome, Safari, and Opera */
}
.offcanvas-box.menu-open {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}

.offcanvas__wrapper {
  position: relative;
  padding: 40px;
  z-index: 999;
  min-height: 100%;
}

.offcanvas__close {
  position: absolute;
  top: 35px;
  right: 30px;
}

.offcanvas__close-btn {
  position: relative;
  display: inline-block;
  font-size: 16px;
  height: 44px;
  width: 44px;
  line-height: 40px;
  border-radius: 10px;
  background-color: #f5f5f5;
  color: var(--tp-text-1);
}
.offcanvas__close-btn::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 10px;
  background: var(--gradient-primary);
  opacity: 0;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
  z-index: 0;
}
.offcanvas__close-btn i {
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
  -webkit-transform: translateY(-1px);
  -moz-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  -o-transform: translateY(-1px);
  transform: translateY(-1px);
}
.offcanvas__close-btn:hover::after {
  opacity: 1;
}
.offcanvas__close-btn:hover svg {
  color: var(--white);
  transform: rotate(45deg);
}
.menu-overlay {
  background-color: var(--black);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.menu-overlay.opened {
  opacity: 0.7;
  visibility: visible;
}
.title span{
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 10px;
}
.title h3 {
  font-weight: 600;
  font-size: 40px;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.header-logo {
  width: 342px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.header-logo a {
  z-index: 2;
}
.header-logo a{ width: 110px; }
.header-logo a img{ width: 100%; }
.header-logo-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 130%;
  height: 100%;
  background: var(--gray);
  clip-path: polygon(0px 0px, 100% 0px, 76.57% 100.79%, 0% 100%);
  z-index: 1;
}
.header-btn {
  width: 395px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: var(--gray);
}

.tp-header-sticky-hamburger {
  height: 80px;
  line-height: 80px;
  opacity: 0;
  visibility: hidden;
}
.tp-header-wrapper-inner {
  width: 100%;
}
.tp-header-sticky .mobilemenubox ul li a {
  padding: 34px 0 34px 0;
}
.tp-header-top {
  padding-top: 9px;
  padding-bottom: 7px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #E3E3E3;
  padding-left: 120px;
  padding-right: 70px;
}
.header-top-menu a {
  font-size: 16px;
  line-height: 24px;
}
.header-top-menu span i{
  display: inline-block;
  margin-right: 8px;
  background: #7f9e36;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
    vertical-align: middle;
    font-size: 18px;
}
.tp-header-top-right .header-social a {
  position: relative;
  font-weight: 400;
  font-size: 15px;
  color: #7f9e36;
  margin-left: 24px;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.tp-header-contact-icon span {
  height: 54px;
  width: 54px;
  line-height: 54px;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
  background: var(--gradient-primary);
  margin-right: 13px;
}
.tp-header-contact-content p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 2px;
}
.tp-header-contact-content span {
  font-weight: 500;
  display: block;
  font-size: 20px;
  letter-spacing: -0.8px;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
.hamburger-btn {
  width: 34px;
  height: 24px;
  cursor: pointer;
  background: transparent;
  border: 0;
  outline: 0;
  line-height: 60px;
  text-align: end;
  transform: translateY(-20%);
}
.hamburger-btn span {
  display: inline-block;
  position: absolute;
  left: 0;
  background: var(--gradient-primary);
  height: 2px;
  width: 25px;
  opacity: 1;
  z-index: 1;
  border-radius: 10px;
  transition: 0.3s ease;
}
.hamburger-btn span:nth-child(1) {
  top: 0;
}
.hamburger-btn span:nth-child(2) {
  top: 8px;
  width: 14px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
.hamburger-btn span:nth-child(3) {
  top: 15px;
  right: 0;
  left: auto;
}
.hamburger-btn:hover span:nth-child(1) {
  left: 10px;
}
.hamburger-btn:hover span:nth-child(3) {
  right: 10px;
}

.tp-header-top-support a {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  color: var(--tp-text-2);
}
.tp-header-top-support a:hover::before {
  bottom: 1px;
  opacity: 1;
}
.tp-header-top-support a::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -3px;
  height: 1px;
  width: 100%;
  background: var(--tp-text-2);
  opacity: 0;
  transition: 0.3s;
}

/* HEADER CSS */
.mobilemenubox {
  position: relative;
}
.mobilemenubox ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  transition: none;
}
.mobilemenubox ul li:not(:last-of-type) {
  margin-right: 20px;
}

.mobilemenubox ul li a {
  display: inline-block;
  padding: 25px 5px;
  font-weight: 500;
  font-size: 16px;
  text-transform: capitalize;
  color: #333;
}
.mobilemenubox ul li a:hover, .mobilemenubox ul li a.active{ color: #7f9e36; }
/*Mobile Menu*/
.tp-mobile-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: var(--white);
  padding: 13px 0 5px;
  z-index: 999;
  border-top: 1px solid var(--tp-border-primary);
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
.menu-mobile ul {
  position: static;
  display: block;
  box-shadow: none;
}
.menu-mobile ul li {
  list-style: none;
  position: relative;
  width: 100%;
  padding: 0;
}
.menu-mobile ul li:not(:last-child) a {
  border-bottom: 1px solid rgba(2, 11, 24, 0.1);
}
.menu-mobile ul li:last-child a span {
  border-bottom: 0;
}
.menu-mobile ul li > a {
  display: block;
  font-size: 16px;
  color: var(--tp-common-black);
  position: relative;
  padding: 10px 0;
  padding-right: 20px;
}
.menu-mobile ul li > a > i {
  display: inline-block;
  width: 11%;
  margin-right: 13px;
  -webkit-transform: translateY(4px);
  -moz-transform: translateY(4px);
  -ms-transform: translateY(4px);
  -o-transform: translateY(4px);
  transform: translateY(4px);
  font-size: 21px;
  line-height: 1;
}
.menu-mobile * ul, .menu-mobile * li {
  transition: none !important;
}

.subscribebox .btn-primary{ 
    border-radius: 0;
    position: absolute;
    top: 6px;
    right: 6px;
    padding: 23px 45px;
    border-radius: 10px;
}

/*Slider*/
.slider-area:hover .slider-nav button {
  opacity: 1;
  overflow: visible;
  left: 40px;
}
.slider-area:hover .slider-nav button.hero-button-next-1 {
  right: 40px;
  left: auto;
}
.slider-bg::before{
    content: '';
    background-image: url(../images/boxbg.svg);
    height: 239px;
    width: 258px;
    background-size: cover;
    position: relative;
    left: 0;
    top: 0;
    z-index: 2;
    display: inline-block;
    opacity: .4;
}
.slider-bg::after{
    content: '';
    background-image: url(../images/dottedbox.svg);
    height: 160px;
    width: 165px;
    background-size: cover;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: inline-block;
    opacity: .4;
    animation: updown-two 2.6s linear 0s infinite alternate;
}
.slider-bg {
  position: absolute;
  top: 0px;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 0;
  /* background: #cc565282; */
  background: var(--gradient-primary);
  /* background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs' width='1440' height='560' preserveAspectRatio='none' viewBox='0 0 1440 560'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1097%26quot%3b)' fill='none'%3e%3cpath d='M1132.85 193.1 a45.55 45.55 0 1 0 91.1 0 a45.55 45.55 0 1 0 -91.1 0z' stroke='rgba(251%2c 251%2c 249%2c 0.23)'%3e%3c/path%3e%3cpath d='M321.31-0.28a54.03 54.03 0 1 0-6.59 107.86z' stroke='rgba(251%2c 251%2c 249%2c 0.23)'%3e%3c/path%3e%3cpath d='M407.4 25.36L438.03 25.36L438.03 47.03L407.4 47.03z' stroke='rgba(250%2c 234%2c 206%2c 0.15)'%3e%3c/path%3e%3cpath d='M917.2 367.34a41.41 41.41 0 1 0 59.08-58.04z' fill='rgba(250%2c 234%2c 206%2c 0.15)'%3e%3c/path%3e%3cpath d='M201.27 0.04a49.07 49.07 0 1 0-28.94 93.78z' stroke='rgba(250%2c 234%2c 206%2c 0.15)'%3e%3c/path%3e%3cpath d='M968.93 445.52L983.83 445.52L983.83 460.42L968.93 460.42z' fill='rgba(186%2c 243%2c 186%2c 0.19)'%3e%3c/path%3e%3cpath d='M646.85 468.22L689.38 468.22L689.38 475.21L646.85 475.21z' stroke='rgba(250%2c 234%2c 206%2c 0.15)'%3e%3c/path%3e%3cpath d='M107.49 423.27L139.81 423.27L139.81 455.59L107.49 455.59z' fill='rgba(186%2c 243%2c 186%2c 0.19)'%3e%3c/path%3e%3cpath d='M1170.75 478.43 a45.95 45.95 0 1 0 91.9 0 a45.95 45.95 0 1 0 -91.9 0z' fill='rgba(251%2c 251%2c 249%2c 0.23)'%3e%3c/path%3e%3cpath d='M1135.93 228.33 a54.34 54.34 0 1 0 108.68 0 a54.34 54.34 0 1 0 -108.68 0z' fill='rgba(186%2c 243%2c 186%2c 0.19)'%3e%3c/path%3e%3cpath d='M884.78 408.86L915.75 408.86L915.75 439.83L884.78 439.83z' fill='rgba(251%2c 251%2c 249%2c 0.23)'%3e%3c/path%3e%3cpath d='M171.67 208.98L176.25 208.98L176.25 264.07L171.67 264.07z' fill='rgba(251%2c 251%2c 249%2c 0.23)'%3e%3c/path%3e%3cpath d='M484.3 452.17 a12.99 12.99 0 1 0 25.98 0 a12.99 12.99 0 1 0 -25.98 0z' fill='rgba(250%2c 234%2c 206%2c 0.15)'%3e%3c/path%3e%3cpath d='M1125.58 449.57 a20.81 20.81 0 1 0 41.62 0 a20.81 20.81 0 1 0 -41.62 0z' fill='rgba(251%2c 251%2c 249%2c 0.23)'%3e%3c/path%3e%3cpath d='M736.63 528.69L772.21 528.69L772.21 564.27L736.63 564.27z' fill='rgba(251%2c 251%2c 249%2c 0.23)'%3e%3c/path%3e%3cpath d='M513.73 250.97L543.82 250.97L543.82 301.51L513.73 301.51z' stroke='rgba(250%2c 234%2c 206%2c 0.15)'%3e%3c/path%3e%3cpath d='M1436.3 131.49L1479.6 131.49L1479.6 151.5L1436.3 151.5z' stroke='rgba(251%2c 251%2c 249%2c 0.23)'%3e%3c/path%3e%3cpath d='M1087.5 327.3a31.97 31.97 0 1 0-39.05 50.63z' stroke='rgba(250%2c 234%2c 206%2c 0.15)'%3e%3c/path%3e%3cpath d='M1365.15 378.45L1391.43 378.45L1391.43 404.73L1365.15 404.73z' stroke='rgba(250%2c 234%2c 206%2c 0.15)'%3e%3c/path%3e%3cpath d='M1325.46 450.25a34.5 34.5 0 1 0-62.34-29.56z' stroke='rgba(250%2c 234%2c 206%2c 0.15)'%3e%3c/path%3e%3cpath d='M402.86 216.13L455.14 216.13L455.14 268.41L402.86 268.41z' stroke='rgba(250%2c 234%2c 206%2c 0.15)'%3e%3c/path%3e%3cpath d='M770.95 293.85L811.8 293.85L811.8 301.25L770.95 301.25z' fill='rgba(250%2c 234%2c 206%2c 0.15)'%3e%3c/path%3e%3cpath d='M442.97 429.39 a6.28 6.28 0 1 0 12.56 0 a6.28 6.28 0 1 0 -12.56 0z' stroke='rgba(251%2c 251%2c 249%2c 0.23)'%3e%3c/path%3e%3cpath d='M749.74 150.37L761.37 150.37L761.37 170.08L749.74 170.08z' stroke='rgba(186%2c 243%2c 186%2c 0.19)'%3e%3c/path%3e%3cpath d='M1403.8 407.2a0.5 0.5 0 1 0-0.82 0.57z' stroke='rgba(251%2c 251%2c 249%2c 0.23)'%3e%3c/path%3e%3cpath d='M321.45 266.63 a44.52 44.52 0 1 0 89.04 0 a44.52 44.52 0 1 0 -89.04 0z' stroke='rgba(250%2c 234%2c 206%2c 0.15)'%3e%3c/path%3e%3cpath d='M1432.16 470.42 a3.06 3.06 0 1 0 6.12 0 a3.06 3.06 0 1 0 -6.12 0z' stroke='rgba(186%2c 243%2c 186%2c 0.19)'%3e%3c/path%3e%3cpath d='M51.62 372.79 a30.34 30.34 0 1 0 60.68 0 a30.34 30.34 0 1 0 -60.68 0z' fill='rgba(186%2c 243%2c 186%2c 0.19)'%3e%3c/path%3e%3cpath d='M1243.58 403.68L1285.05 403.68L1285.05 409.14L1243.58 409.14z' fill='rgba(250%2c 234%2c 206%2c 0.15)'%3e%3c/path%3e%3cpath d='M359.87 340.02 a0.28 0.28 0 1 0 0.56 0 a0.28 0.28 0 1 0 -0.56 0z' fill='rgba(251%2c 251%2c 249%2c 0.23)'%3e%3c/path%3e%3cpath d='M929.02 181.22L944.2 181.22L944.2 227.95L929.02 227.95z' fill='rgba(186%2c 243%2c 186%2c 0.19)'%3e%3c/path%3e%3cpath d='M486.11 39.53L512.38 39.53L512.38 65.8L486.11 65.8z' stroke='rgba(186%2c 243%2c 186%2c 0.19)'%3e%3c/path%3e%3cpath d='M850.68 201.19L897.88 201.19L897.88 248.39L850.68 248.39z' fill='rgba(251%2c 251%2c 249%2c 0.23)'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1097'%3e%3crect width='1440' height='560' fill='white'%3e%3c/rect%3e%3c/mask%3e%3c/defs%3e%3c/svg%3e"); */
}

.slider-title-wrapper h2 {
  font-size: 60px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  letter-spacing: -1px;
  text-transform: capitalize;
  margin-bottom: 50px;
  animation-delay: 0.5s;
  animation-duration: 0.7s;
}

.slider-title-wrapper p {
  color: var(--white);
  margin-bottom: 62px;
  animation-delay: 0.7s;
  animation-duration: 0.9s;
}

.slider-title-wrapper span {
  display: inline-block;
   
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--white);
  margin-bottom: 10px;
  animation-delay: 0.3s;
  animation-duration: 0.5s;
}
.nav-button-wrapper {
  animation-delay: 0.9s;
  animation-duration: 1s;
}
.slider-small {
  /*padding-left: 77px;
  margin-top: -50px;*/
  animation-delay: 0.5s;
  animation-duration: 0.7s;
}
.slider-small img {
  border-radius: 100%;
  max-width: 100%;
    box-shadow: 40px 0 0 0 #7f9e36;
    -webkit-box-shadow: 40px 0px 0px 0px #cc56524a;
}
.slider-active .swiper-slide{ background: linear-gradient(90deg, #033029 0%, #359b89 100%); }

.slider-active .swiper-slide.swiper-slide-active .slider-subtitle {
  animation-fill-mode: both;
  animation-name: fadeInUp;
}
.slider-active .swiper-slide.swiper-slide-active .slider-title-wrapper h2 {
  animation-fill-mode: both;
  animation-name: fadeInUp;
}
.slider-active .swiper-slide.swiper-slide-active .slider-text p {
  animation-fill-mode: both;
  animation-name: fadeInUp;
}
.slider-active .swiper-slide.swiper-slide-active .nav-button-wrapper {
  animation-fill-mode: both;
  animation-name: fadeInUp;
}
.slider-active .swiper-slide.swiper-slide-active .slider-small {
  animation-fill-mode: both;
  animation-name: fadeInUp;
}
.slider-nav {
  display: none;
}

.slider-nav button {
  overflow: hidden;
  opacity: 0;
  position: absolute;
  top: 41%;
  left: 50px;
  height: 67px;
  width: 67px;
  border-radius: 50%;
  font-size: 17px;
  font-weight: 900;
  color: var(--white);
  background: var(--white);
  z-index: 1;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
.slider-nav button:hover i {
  background: var(--white);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
.slider-nav button:hover::before {
  opacity: 1;
}
.slider-nav button::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  opacity: 0;
  background-image: linear-gradient(90deg, #004D6E 0%, #00ACCC 100%);
  z-index: -1;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
.slider-nav button i {
  background: linear-gradient(90deg, #004D6E 0%, #00ACCC 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
.slider-nav button.hero-button-next-1 {
  left: auto;
  right: 50px;
}
.slider-pagination {
  position: absolute;
  bottom: 60px;
  z-index: 1;
  left: 50%;
  transform: translateX(-50px);
}
.slider-pagination .swiper-pagination-bullet {
  background: var(--white);
  margin-left: 10px;
  height: 14px;
  width: 14px;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
.slider-small{ margin-bottom: 40px; }

/*Footer*/
.footer-main {
  overflow: hidden;
  z-index: 1;
}
/*.footer-main::before{
    content: '';
    background: url(../images/bg-shape.png);
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    opacity: .5;
}*/
.footer-bg-shape {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    opacity: .5;
}
.footer-bg-shape img {
  width: 100%;
}
.footer-border {
  border-bottom: 1px solid #333F4D;
}
.footer-content p {
  color: var(--white);
}
.footer-content ul li {
  position: relative;
  list-style: none;
  margin-left: 15px;
}
.footer-content ul li:not(:last-of-type) {
  margin-bottom: 20px;
}
.footer-content ul li a:hover {
  background-size: 0 1px, 100% 1px;
}
.footer-content ul li::after {
  position: absolute;
  content: "";
  top: 13px;
  left: -15px;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background: var(--white);
}
.footer-content ul li a {
   
  font-weight: 400;
  font-size: 14px;
  color: var(--white);
  background-image: linear-gradient(#f1f1f5, #f3f3f8), linear-gradient(#f3f3f7, #f2f2f7);
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.2s linear;
}
.footer-widget-detail {
    background: #363a3e;
    border: 1px solid #444a51;
    border-radius: 5px;
    padding: 20px;
}
.footer-widget-detail-inner{
    padding-left: 26px;
}
.footer-widget-detail-inner:not(:last-of-type) {
  margin-bottom: 30px;
}
.footer-widget-detail-inner a {
  position: relative;
  font-weight: 400;
  font-size: 14px;
  color: var(--white);
  word-break: break-word;
}
.footer-widget-detail-inner a:hover {
  color: #7f9e36;
}
.footer-widget-detail-inner a i {
    position: absolute;
    top: -2px;
    left: -28px;
    color: #7f9e36;
}
.footer-social a {
  position: relative;
  font-weight: 400;
  font-size: 20px;
  color: var(--white);
  border-radius: 5px;
  width: 40px;
  height: 40px;
  display: inline-block;
  margin-right: 10px;
  text-align: center;
  line-height: 40px;
}
.footer-social a:hover::after {
  opacity: 1;
}
.footer-social a::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background-image: var(--gradient-secondary);
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
.footer-title {
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.96px;
  color: var(--white);
  margin-bottom: 20px;
}
.copyright-area {
  padding-top: 30px;
  padding-bottom: 30px;
}
.copyright-area p {
  color: var(--white);
}
.copyright-area a {
   
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
.footer-logo { width: 150px; }
.footer-logo img { width: 100%; }


/*Why Choose us*/
.tp-about-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.about-left:hover .img-2::after {
  animation: shine 1.5s;
}
.about-left{ width: 100%; padding-left: 30px; }
.about-left img {
  border-radius: 10px;
}
.about-left .img-1 {
  margin-top: 70px;
  margin-left: -30px;
    width: 100%;
}

.about-left .img-2 {
  position: absolute;
  bottom: -10px;
  right: 20px;
  overflow: hidden;
  width: 50%;
  border-radius: 10px;
    border: solid 2px #fff;
    animation: updown-two 2.6s linear 0s infinite alternate;
}
.about-left .img-2 img{ width: 100%; border-radius: 10px; }
.about-left .img-2::after {
  position: absolute;
  top: 0;
  left: -100%;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
  z-index: 1;
}
.about-left .img-3 {
    position: absolute;
    top: 0;
    right: -60px;
    z-index: -1;
    width: 250px;
    animation: updown-two 2.6s linear 0s infinite alternate;
}

.tp-about-wrapper-list {
    display: inline-block;
    margin-bottom: 20px;
}
.tp-about-wrapper-list ul li {
    list-style: none;
    float: left;
    width: 50%;
    font-size: 15px;
    font-weight: 500;
    color: var(--tp-text-body);
    margin-bottom: 10px;
}
.tp-about-wrapper-list ul li span {
    font-size: 20px;
    background: linear-gradient(90deg, #c95e59 0%, #f32a22 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    display: inline-block;
    margin-right: 4px;
    vertical-align: middle;
}
.about-btn {
  line-height: 1;
  margin-right: 50px;
}

.about-btn .btn-primary {
  padding: 21px 53px;
}

/* Subscribe Form */
.subscribe-area {
  z-index: 2;
    position: relative;
}
.subscribe-box {
    padding: 60px 50px;
    position: relative;
}
.subscribe-box::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #7f9e36 url(../images/subscribe-bg.svg);
  border-radius: 5px;
  z-index: -1;
}
.subscribe-bg::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: #212529;
  z-index: -1;
}
.subscribebox input {
  border: none;
  height: 73px;
  border-radius: 10px;
  padding-right: 37%;
  font-size: 16px;
    padding-left: 20px;
  width: 100%; 
}
.subscribebox input::placeholder, .subscribebox input:focus {
  font-weight: 400;
  font-size: 16px;
  color: #636363;
}
.subscribe-box h3 {
  font-weight: 700;
  font-size: 27px;
  letter-spacing: -0.54px;
  color: var(--white);
  margin-bottom: 0;
}
.sliderbottommain{
    position: relative;
    width: 100%;
    z-index: 100;
    margin-top: -40px;
}

.sliderbottombox {
    margin-top: -50px;
    z-index: 1;
    position: relative;
}
.process-item {
    text-align: center;
    background-color: #fdf4ed;
    padding: 15px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: 0.5s;
    min-height: 330px;
        border-radius: 5px;
}
.process-item::after {
  content: "";
  width: 100%;
  height: 4px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #6d911f96;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.process-item:hover::after {
  height: 100%;
}
.process-item h3{
    font-size: 22px;
    color: #f32a22;
    font-weight: 600;
}
.process-item h3, .process-item p{ position: relative; z-index: 1; }
.process-item p{
    color: #575757;
}
.process-item:hover p, .process-item:hover h3{ color: #fff; }
.process-item::before {
    position: absolute;
    content: "";
    height: 65%;
    width: 90%;
    background-color: #cc56524a;
    left: 0;
    right: 0;
    margin: auto;
    top: -110px;
    z-index: -1;
    border-radius: 50%;
    transition: 0.5s;
}
.process-item .icon {
    margin-bottom: 20px;
    position: relative;
    background: #fff;
    border-radius: 50%;
    position: relative;
    z-index: 10;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    padding: 20px;
    display: inline-block;
    width: 100px;
    height: auto;
    border: solid 2px #ffb570;
    box-shadow: 0px 8px 32px 0px rgb(248 134 20 / 21%);
}

.process-item .icon img{ width: 100%; }
.process-item .icon i {
    display: inline-block;
    height: 90px;
    width: 90px;
    line-height: 90px;
    background-color: #ffffff;
    text-align: center;
    font-size: 50px;
    border-radius: 50px;
    transition: 0.5s;
    box-shadow: 0px 8px 32px 0px rgba(204, 204, 204, 0);
}

.process-item h3 {
    font-size: 25px;
    margin-bottom: 15px;
}

/*TestiMonials*/
.swiper-item {
  position: relative;
  background: var(--white);
  border-radius: 0px 5px 5px 0px;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  margin-left: 121px;
  padding-left: 147px;
}
.tp-testimonial-thumb-2 {
    position: absolute;
    /*top: 0;*/
    left: -115px;
    box-shadow: rgb(0 0 0 / 0%) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
    border-radius: 50%;
    padding: 15px;
    background: #fff;
    border: solid 2px #e2e2e2;
}
.tp-testimonial-thumb-2 img {
  border-radius: 50%;
}
/*.tp-testimonial-content-2 {
  position: relative;
  padding: 35px 3px;
}*/
.tp-testimonial-quote {
  position: absolute;
  top: 30px;
  right: 35px;
}
.tp-testimonial-item-2 {
    position: relative;
    background: #fff;
    border-radius: 0px 5px 5px 0px;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
    margin-left: 121px;
    padding: 20px;
    padding-left: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
}
.tp-testimonial-user-content{ position: relative; z-index: 1; }
.tp-testimonial-user-content h3{
    font-weight: 600;
    font-size: 22px;
    color: #333230;
    letter-spacing: -0.96px;
}
.tp-testimonial-user-content p {
    color: #7a7267;
}
.tp-testimonial-user-content::after{
    content: '';
    background: url(../images/quteicon.svg) no-repeat;
    position: absolute;
    top: -10px;
    right: -7px;
    z-index: -1;
    opacity: .8;
    width: 59px;
    height: 41px;
    background-size: cover;
}
.tp-testimonial-nav-2 {
    position: relative;
}
.tp-testimonial-nav-2 button {
    position: absolute;
    right: 56px;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
    background: #D8E5EB;
    z-index: 1;
}
.tp-testimonial-nav-2 button i {
    background: var(--gradient-primary);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}
.tp-testimonial-nav-2 button::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    opacity: 0;
    background-image: var(--gradient-primary);
    z-index: -1;
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
}
.tp-testimonial-nav-2 button:hover::before {
    opacity: 1;
}
.tp-testimonial-nav-2 button:hover i {
    background: var(--white);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}
.tp-testimonial-nav-2 button.testimonial-button-next-1 {
    right: 0;
}
.demo_one-ihbox-2-bg {
    padding: 70px 0px 150px;
    position: relative;
    width: 100%;
    background: var(--gradient-primary);
}
.demo_one-ihbox-2-bg::before{
    content: '';
    background: url(../images/rrrainbow.svg) no-repeat;
    height: 100%;
    width: 100%;
    position: absolute;
    height: 100%;
    width: 100%;
    background-size: cover;
    left: 0;
    top: 0;
    opacity: .3;
}
.ihbox-2-boxs {
    margin-top: -130px;
}
.services-item {
  background: var(--white);
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
    box-shadow: 0px 4px 10px #e0e0e059;
    /* padding: 50px 45px; */
    margin: 10px;
}

.services-inner-box{
    padding: 25px 25px;
}
.services-item:hover .services__icon-two i {
  transform: rotateY(180deg);
}
.services__item-three {
  background: var(--tg-color-white-default);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  border: 1px solid #DFE1ED;
  padding: 40px 25px 38px 40px;
  box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.06);
  height: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.services__item-three:hover {
  transform: translateY(-5px);
}
.services__item-three:hover .services__icon-three {
  transform: rotateY(180deg);
}
.services__icon-two {
    font-size: 60px;
    color: #7f9e36;
    position: relative;
    padding: 10px 0 0 17px;
    z-index: 1;
    margin-bottom: 10px;
    display: inline-block;
}
.services__icon-two i {
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    display: block;
}
.services-item:hover .services__icon-two i {
    transform: rotateY(180deg);
}
.services__content-two .title {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
}
.services__content-two p {
    margin-bottom: 15px;
    min-height: 120px;
}
.tg-btn-two {
    background: #eceef5;
    color: #4d3834;
    font-weight: 500;
}
.tg-btn-two i{ color: #f32a22; font-size: 20px; }
.tg-btn-two:hover i{ color: #fff; }
.services__icon-two::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: #aac96391;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    z-index: -1;
}
.services-item .servicepic{ border-radius: 30px 30px 0 0; }
.services-item .servicepic img{
    transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transition: all ease 400ms;
    -moz-transition: all ease 400ms;
    -webkit-transition: all ease 400ms;
    border-radius: 30px 30px 0 0;
}
.services-item:hover .servicepic img{
    transform: scale(1.05);
    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}
.servicepic{ position: relative; overflow: hidden; }
.servicepic::after{
    position: absolute;
    content: "";
    top: 0;
    left: -75%;
    z-index: 0;
    display: block;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-25deg);
}
/*.servicepic:hover, .servicepic::after {
    animation: shine 800ms;
}*/
.servicepic img{ width: 100%; }
/* Team start */

.team-bg{
    padding: 180px 0px 150px;
    position: relative;
    width: 100%;
    background: linear-gradient(90deg, #121111 0%, #515652 100%);
    z-index: 1;
}
.team-bg::before{
    content: '';
    background: url(../images/teambg.svg) no-repeat;
    height: 100%;
    width: 100%;
    position: absolute;
    height: 100%;
    width: 100%;
    background-size: cover;
    left: 0;
    top: 0;
    opacity: .1;
    z-index: -1;
}
.tp-team-overlay-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 600px;
  background: var(--tp-theme-secondary);
  z-index: -1;
}
.tp-team-bg {
  position: absolute;
  top: -27%;
  left: 0;
  background-repeat: no-repeat;
  z-index: -1;
}
.tp-team-item{ position: relative; z-index: 1; }
.tp-team-item-thumb {
    overflow: hidden;
    border-radius: 5px;
    position: relative;
}
.tp-team-item-thumb::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 100%;
    background: linear-gradient(3.65deg, #191919 5.86%, rgba(0, 77, 110, 0) 82.23%);
    border-radius: 5px;
    z-index: 1;
}
.tp-team-item-thumb:hover img {
    transform: scale(1.08);
}
.tp-team-item-thumb img {
    border-radius: 5px;
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
    width: 100%;
}
.tp-team-social {
    position: absolute;
    top: 30px;
    right: 0;
    z-index: 1;
}
.tp-team-social a {
    position: relative;
    font-size: 14px;
    font-weight: 400;
    display: block;
    text-align: center;
    border-radius: 5px;
    line-height: 30px;
    height: 30px;
    width: 30px;
    margin-bottom: 10px;
    color: #7f9e36;
    background: var(--white);
    transition: none;
}
.tp-team-social .icon-1 {
    visibility: hidden;
    opacity: 0;
    transform: translateX(0px);
    transition: all 0.3s ease-in-out;
}
.tp-team-social .icon-2 {
    visibility: hidden;
    opacity: 0;
    transform: translateX(0px);
    transition: all 0.4s ease-in-out;
}
.tp-team-social .icon-3 {
    visibility: hidden;
    opacity: 0;
    transform: translateX(0px);
    transition: all 0.5s ease-in-out;
}
.tp-team-social .icon-4 {
    visibility: hidden;
    opacity: 0;
    transform: translateX(0px);
    transition: all 0.6s ease-in-out;
}
.tp-team-social a::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    background-image: var(--tp-gradient-primary);
    opacity: 0;
    z-index: -1;
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
}
.tp-team-social a:hover::after {
    opacity: 1;
}
.tp-team-item:hover .tp-team-social .icon-1 {
    visibility: visible;
    transform: translateX(-30px);
    opacity: 1;
}
.tp-team-item:hover .tp-team-social .icon-2 {
    visibility: visible;
    transform: translateX(-30px);
    opacity: 1;
}
.tp-team-item:hover .tp-team-social .icon-3 {
    visibility: visible;
    transform: translateX(-30px);
    opacity: 1;
}
.tp-team-item:hover .tp-team-social .icon-4 {
    visibility: visible;
    transform: translateX(-30px);
    opacity: 1;
}
.tp-team-info {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 2;
}
.tp-team-info h4 a {
    font-weight: 600;
    font-size: 24px;
    letter-spacing: -0.96px;
    color: var(--white);
}
.tp-team-info p {
    color: var(--white);
}
.team-main .row [class*=col-]:nth-child(even) .tp-team-item {
    margin-top: 40px;
}
.m-negative-130px{ margin-top: -130px; }
/* Team End */

/*About Us start*/

.tp-support-wrapper {
  position: relative;
  border-radius: 5px;
  padding: 50px;
  z-index: 2;
  background: #fef8f4;
  margin-bottom: -150px;
    overflow: hidden;
}
.tp-support-wrapper::before {
    content: '';
    background-image: url(../images/welthrightshape.svg);
    height: 239px;
    width: 347px;
    background-size: cover;
    position: absolute;
    right: -85px;
    top: -80px;
    z-index: 2;
    display: inline-block;
    opacity: .5;
}
.tp-support-thumb::before{
    content: '';
    background-image: url(../images/leafbg.svg);
    height: 100%;
    width: 76%;
    /* background-size: cover; */
    position: absolute;
    left: 0px;
    top: 0;
    z-index: -1;
    display: inline-block;
    opacity: .5;
}
.aboutshape::before{ 
    content: '';
    background: url(../images/line-circle.svg) no-repeat;
    height: 40%;
    width: 40%;
    /* background-size: cover; */
    position: absolute;
    left: 30%;
    bottom: 0;
    z-index: -1;
    display: inline-block;
    opacity: .4;
}
.tp-support-thumb .main {
    width: 100%;
    border-radius: 10px;
}
.tp-support-thumb { padding-right: 40px; }
.tp-support-thumb .shape-1 {
  position: absolute;
  top: 12%;
  left: 17%;
}
.tp-support-thumb .shape-2 {
  position: absolute;
  top: 14%;
  right: 6%;
}
.tp-support-thumb p {
  margin-bottom: 5px;
}
.tp-support-thumb p, .tp-support-thumb span {
  font-family: var(--tp-ff-heading);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.96px;
  color: var(--tp-heading-primary);
}
.tp-support-wrapper-inner {
  padding-top: 45px;
}
.tp-support-wrapper-inner p {
  margin-bottom: 30px;
  color: var(--tp-text-1);
}
.tp-support-btn {
  line-height: 1;
}
.tp-support-btn .tp-btn {
  padding: 23px 53px;
}

/***** Breadcrumb start *****/
.breadcrumb__area::before{
    content: '';
    background-image: url(../images/sssurfbg.svg);
    height: 100%;
    width: 100%;
    background-size: cover;
    position: absolute;
    right: 0px;
    top: 0;
    z-index: -2;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center right 0px;
    opacity: .8;
    transform: rotateY(180deg);
}
.breadcrumb__area::after{
    content: '';
    background: url(../images/rrrainbow.svg) no-repeat;
    height: 100%;
    width: 100%;
    position: absolute;
    height: 100%;
    width: 100%;
    background-size: cover;
    left: 0;
    top: 0;
    z-index: -1;
    opacity: .3;
}
.breadcrumb__area {
    padding: 100px 0;
    position: relative;
    background: var(--gradient-primary);
    height: 100%;
    width: 100%;
    /* background-size: cover; */
    z-index: 1;
    display: inline-block;
}
.breadcrumb__title {
  font-weight: 600;
  font-size: 48px;
  letter-spacing: -1.92px;
  color: var(--white);
  margin-bottom: 0;
}
.breadcrumb__list span {
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.8px;
  color: var(--white);
}
.breadcrumb__list span:not(:last-of-type) {
  margin-right: 8px;
}
.breadcrumb__list span a:hover {
  color: var(--secondary);
}
/***** Breadcrumb End *****/

/*About Us Page*/

.missionmain .missionbox:nth-child(2) {
    /* background-image: var(--gradient-secondary); */
    background: #7f9e36;
    color: var(--white);
}
.missionmain .missionbox:nth-child(3) {
    background-color: #323232;
    color: var(--white);
}
.missionmain .missionbox:nth-child(1) {
    background-color: #f8f8f8;
}
.missionmain .missionbox:nth-child(2) h2,
.missionmain .missionbox:nth-child(3) h2{
    color: var(--white);
}
.missionmain .ihbox-2-boxs {
    margin-top: -130px;
}
.missionbox-icon{ width: 80px; margin: 0 auto 10px; }
.missionbox-icon img{ width: 100%; }
.missionmain .missionbox {
    z-index: 1;
    padding: 55px 75px 40px;
    text-align: center;
    position: relative;
}
.missionmain .missionbox:before {
    position: absolute;
    content: '';
    background: linear-gradient(90deg, #7f9e36a3 0%, #359b897a 100%);
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: center;
    transition: all 500ms ease;
}
.missionmain .missionbox:hover:before {
    transform: scaleX(1);
}
.missionmain .missionbox h2 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    position: relative;
    letter-spacing: 0px;
}

/******* Faq's start ********/
.accordion-main{
    background: var(--white);
    box-shadow: 0px 4.8px 24.4px -6px rgba(19, 16, 34, 0.1), 0px 4px 13px -2px rgba(19, 16, 34, 0.06);
    border-radius: 5px;
    padding: 50px;
}
.accordion-main .accordion-item {
  border: 0;
  background: var(--white);
  border-radius: 0px 0px 5px 5px;
  margin-bottom: 20px;
}
.accordion-main .accordion-item:last-of-type {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.accordion-main .accordion-button {
  font-weight: 500;
  font-size: 16px;
  background: var(--white);
  border: 1px solid #E3E3E3;
  border-radius: 5px;
  padding: 20px 50px 18px 20px; 
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
.accordion-main .accordion-button::after {
    position: absolute;
    content: "\F22C";
    font-family: bootstrap-icons;
    top: 19%;
    right: 10px;
    font-weight: 500;
    font-size: 18px;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    background: var(--white);
    border-radius: 50%;
    color: var(--secondary);
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
.accordion-main .accordion-button.has-plus-icon::after {
  display: none;
}
.accordion-main .accordion-button .tp-accordion-plus {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  width: 14px;
  height: 14px;
}
.accordion-main.accordion-button .tp-accordion-plus::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #525258;
  border-radius: 2px;
}
.accordion-main .accordion-button .tp-accordion-plus::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  background-color: #525258;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 2px;
}
.accordion-main .accordion-button.collapsed::after {
  width: 41px;
  height: 41px;
  text-align: center;
  line-height: 41px;
  background-image: var(--gradient-secondary);
  border-radius: 50%;
  color: var(--white);
}
.accordion-main .accordion-button:not(.collapsed) {
  background-image: var(--gradient-secondary);
  border-radius: 5px;
  color: var(--white);
  box-shadow: none;
  border: none;
  margin-bottom: 10px;
}
.accordion-main .accordion-button:not(.collapsed) .tp-accordion-plus::before {
  -webkit-transform: translateX(-50%) rotate(90deg);
  -moz-transform: translateX(-50%) rotate(90deg);
  -ms-transform: translateX(-50%) rotate(90deg);
  -o-transform: translateX(-50%) rotate(90deg);
  transform: translateX(-50%) rotate(90deg);
  background-color: var(--primary);
}
.accordion-main.accordion-button:not(.collapsed) .tp-accordion-plus::after {
  background-color: var(--primary);
}
.accordion-main .accordion-button:focus {
  box-shadow: none;
  /*border: 0;*/
}
.accordion-main .accordion-body {
  padding: 0 52px 2px 20px;
}
.faqs-bg{
    padding: 200px 0px 0;
    position: relative;
    width: 100%;
    /*z-index: 1;*/
    /*background: url(../images/faqsbg.svg) no-repeat;
    background-size: cover;*/
}
.faqs-bg::before{
    content: '';
    background: #1c251c url(../images/leafbg.svg) no-repeat;
    height: 100%;
    width: 100%;
    position: absolute;
    height: 85%;
    width: 100%;
    background-size: cover;
    left: 0;
    top: 0;
    z-index: -1;
}
.chooseicon{
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 43px;
    border: 1px solid #7f9e36;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    color: #ccc;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
}
.chooseicon::after{ 
    background: #7f9e36;
    /* background: linear-gradient(180deg, rgba(255,106,0,0) 0%, rgba(255,149,27,1) 50%, rgba(250,144,4,0) 100%);; */
    width: 1px;
    height: 100%;
    content: '';
    /* margin-left: 30px; */
    display: inline-block;
    position: absolute;
    right: -15px;
}
.whychoosetext h4{  font-size: 16px; font-weight: 600;}
.whychoosetext p{ font-size: 13px; line-height: 20px; margin-bottom: 0; }

/******* Faq's close ********/

/******* Contact Us Start *******/
.contact-area{ background: #ccc; z-index: 1; position: relative; }
.contacttext p {
    position: relative;
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 0;
    color: #808080;
}
.contacticon {
    line-height: 65px;
    margin-right: 20px;
    width: 65px;
    height: 65px;
    color: var(--white);
    text-align: center;
    border-radius: 50%;
    background-image: var(--gradient-secondary);
    font-size: 24px;
}
.contact-area .title{
    position: relative;
}
.contact-area .title::before{
    content: '';
    background: var(--gradient-primary);
    width: 100px;
    height: 2px;
    position: absolute;
    bottom: -20px;
}
.contacttext h2 {
    font-size: 18px;
    line-height: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}
.mapiframe iframe{ width: 100%; min-height: 500px; }
.contact-rightbox{ position: relative; }
.contact-rightbox::before{ 
    content: "";
    background: #fff;
    width: calc(100vw + 69%);
    position: absolute;
    right: 0%;
    top: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
}
.addressbox:nth-child(1){ border-top: 0; margin-top: 0; padding-top: 0; }
.addressbox{
    border-top: 1px solid #e6eaef;
    margin-top: 25px;
    padding-top: 25px;
}
.contactus-form .form-control{
    width: 100%;
    display: block;
    border: none;
    outline: none;
    background-color: #ededed;
    color: #000;
    height: 60px;
    margin-bottom: 20px;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 15px;
}
.contactus-form textarea.form-control {
    height: 120px;
}
.contact-area .title h3{ font-size: 30px; }
.img-2.aboutsmallimg{ border: none; width: 25%; }
.aboutleftimg.about-left .img-3 {
    position: absolute;
    top: -51px;
    right: -30%;
    z-index: -1;
    width: 250px;
}
.aboutleftimg .img-1 { margin-top: 0; border-radius: 0; margin-left: 40px; }
.aboutleftimg{ margin-top: 40px; padding-left: 0; }
.aboutleftimg::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: -40px;
    left: 0;
    z-index: -1;
    border-width: 10px;
    border-style: solid;
    border-image-slice: 1;
    opacity: .6;
    border-image-source: var(--gradient-secondary);
}
/******* Contact Us end *******/

/******* Project Start *******/
.projectbox {
    background: var(--white);
    border-radius: 5px;
    padding: 30px;
    box-shadow: 0px 10px 60px rgba(0, 0, 0, 0.07);
    position: relative;
    transition: all ease 0.5s;
}
.project-icon {
    position: absolute;
    top: -22px;
    right: 25px;
    height: 60px;
    width: 60px;
    display: inline-block;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    transition: transform 0.5s ease;
    background-image: var(--gradient-secondary);
    color: #fff;
    font-size: 24px;
    transition: all ease 0.5s;
}
.projectbox:hover .project-icon{
    color: #9edd05;
    background-image: var(--gradient-primary);
}
.project-content {
    padding: 15px 0 20px 0;
}
.project-content h4 {
    font-weight: 600;
    font-size: 20px;
    color: #135e51;
}
.project-content p{ 
    margin-bottom: 0;
    font-size: 13px;
    color: #7b7878;
    line-height: 22px;
    min-height: 135px;
}
.project-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}
.project-thumb img {
    border-radius: 5px;
    width: 100%;
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
}
.projectbox:hover .project-thumb img {
    transform: scale(1.08);
}
/******* Project end *******/

.white{
  color: #ffffff;
}
.gradianttext2{
  color: #135e51;
  font-weight: 600;
}