@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Special+Gothic+Expanded+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Special+Gothic&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Special+Gothic+Condensed+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed: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 {
  --body: #fff;
  --black: #000;
  --white: #fff;
  --header: #05091D;
  --text: #7A7A7A;
  --border: #d7d7d7;
  --bg: #F4F4F4;
  --box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
}


* {
  box-sizing: border-box;
}


 body {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: normal;
  line-height: 28px;
  color: #333;
  background-color: #FFFFFF;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

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

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

input:focus {
  color: #FFFFFF;
  outline: none;
}

input {
  color: #FFFFFF;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
  margin: 0px;
  padding: 0;
  color: #05091D;
  transition: all 0.4s ease-in-out;
}

h1 {
  font-size: 67px;
  font-weight: 700;
  line-height: 114%;
}

h2 {
  font-size: 60px;
  line-height: 114%;
  font-weight: 600;
}
@media (max-width: 767px) {
  h2 {
    font-size: 52px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 40px;
  }
}

h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 164%;
}
@media (max-width: 575px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
}

h5 {
  font-size: 18px;
  font-weight: 500;
}

h6 {
  font-size: 16px;
  font-weight: 600;
  line-height: 145%;
}

a {
  text-decoration: underline;
  outline: none !important;
  cursor: pointer;
  color: #8FB26B;
  transition: all 0.4s ease-in-out;
}

p {
  margin: 0px;
  transition: all 0.4s ease-in-out;
}

span {
  margin: 0px;
  transition: all 0.4s ease-in-out;
}







.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.header-main .main-menu ul {
  margin-bottom: 0;
}

.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 25px;
}

.header-main .main-menu ul li:last-child {
  margin-inline-end: 0;
}

.header-main .main-menu ul li a {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  padding: 20px 0;
  text-align: left;
  position: relative;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li a i {
  margin-left: 7px;
  font-size: 12px;
}

.header-main .main-menu ul li a:hover {
  color: #8FB26B !important;
}

.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 115%;
  inset-inline-start: 0;
  min-width: 240px;
  background: #E9E9E9;
  padding: 20px 0;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  transform: translateY(-10px);
  transition: all 0.4s ease-in-out;
  border-top: 5px solid #8FB26B;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.header-main .main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
}

.menu-title-link {
	font-size: 22px !important;
}

.menu-subtitle-link {
	font-size: 18px !important;
}



.header-main .main-menu ul li .submenu li a {
	font-family: "Special Gothic", sans-serif;
  position: relative;
  z-index: 11;
  font-weight: 600;
  color: #05091D;
  line-height: 38px;
  padding: 0px;
  width: 100%;
}

.header-main .main-menu ul li .submenu li a::before {
  content: "";
  position: absolute;
  width: 0px;
  height: 2px;
  background: #8FB26B;
  left: 14px;
  bottom: 18px;
  transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li .submenu li a:hover {
  color: #8FB26B !important;
}

.header-main .main-menu ul li .submenu li:last-child a {
  border: none;
}
.header-main .main-menu ul li .submenu li .submenu {
  inset-inline-start: 100%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}
.header-main .main-menu ul li .submenu li:hover > a {
  color: #8FB26B !important;
  margin-left: 10px;
}
.header-main .main-menu ul li .submenu li:hover > a::before {
  width: 10px;
}
.header-main .main-menu ul li .submenu li:hover > a::after {
  color: #8FB26B;
}
.header-main .main-menu ul li .submenu li:hover > .submenu {
  -webkit-transform: translateY(1);
  -moz-transform: translateY(1);
  -ms-transform: translateY(1);
  -o-transform: translateY(1);
  transform: translateY(1);
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .submenu li.has-dropdown > a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.header-main .main-menu ul li .secondary-sub {
  left: -625px !important;
}

.header-main .main-menu ul li .has-homemenu {
  width: 1100px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  left: -520px;
  visibility: hidden;
  padding: 0px 30px 10px 30px;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items {
    flex-wrap: wrap;
  }
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
  position: relative;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .content-btn {
  padding: 14px 20px;
  color: #FFFFFF !important;
  width: initial;
  font-size: 16px;
  text-align: center;
  border-radius: 0px !important;
  background-color: #8FB26B;
  line-height: initial;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .content-btn:hover {
  background-color: #05091D;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .submenu-drop-column h4 {
  font-size: 16px;
  font-weight: bold;
  font-family: "Special Gothic", sans-serif;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .submenu-drop-column p {
  font-size: 16px;
  font-family: "Special Gothic", sans-serif;
  line-height: 1.3;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  margin-bottom: 0px !important;
  display: inline-block;
  font-size: 22px;
  font-weight: 600;
  font-family: "Special Gothic", sans-serif;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title .fa-chevron-right {
	margin-left: 10px !important;
    font-size: 22px;
}

.header-main .main-menu ul li:hover > a {
  color: #8FB26B;
}

.header-main .main-menu ul li:hover > a::after {
  color: #8FB26B;
}

.header-main .main-menu ul li:hover > .submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}
.header-main .header-right {
  gap: 40px;
}
@media (max-width: 1399px) {
  .header-main .header-right {
    gap: 20px;
  }
}

.header-main .sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
}


.header-section {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
}
@media (max-width: 1199px) {
  .header-section {
    top: 0;
  }
}
.header-section.header-3 {
  background-color: transparent;
  top: 35px;
}
@media (max-width: 1199px) {
  .header-section.header-3 {
    top: 0;
  }
}

.header-section.header-3 .header-main .main-menu ul li a:hover {
  color: #8FB26B !important;
}
.header-section.header-3 .header-main .main-menu ul li .submenu li a {
  color: #8FB26B;
}
.header-section.header-3 .header-main .main-menu ul li .submenu li a::before {
  background: var(--theme3);
}
.header-section.header-3 .header-main .main-menu ul li .submenu li a:hover {
  color: #8FB26B !important;
}
.header-section.header-3 .header-main .main-menu ul li .submenu li:hover > a {
  color: #8FB26B !important;
}
.header-section.header-3 .header-main .main-menu ul li .submenu li:hover > a::after {
  color: #8FB26B;
}
.header-section.header-3 .header-main .main-menu ul li:hover > a {
  color: #8FB26B;
}
.header-section.header-3 .header-main .main-menu ul li:hover > a::after {
  color: #8FB26B;
}
.header-section.header-3 .header-right .search-icon {
  color: #FFFFFF;
}
.header-section.header-3 .header-right .sidebar__toggle {
  cursor: pointer;
}
.header-section.header-3 .header-right .sidebar__toggle .header-bar {
  position: relative;
  width: 31px;
  height: 18px;
}
.header-section.header-3 .header-right .sidebar__toggle .header-bar span {
  position: absolute;
  width: 100%;
  height: 2px;
  display: inline-block;
  transition: all 0.3s;
  left: 0;
  background: #FFFFFF;
  overflow: hidden;
}
.header-section.header-3 .header-right .sidebar__toggle .header-bar span:first-child {
  top: 0;
  background: #FFFFFF;
  left: 16px;
  width: 15px;
}
.header-section.header-3 .header-right .sidebar__toggle .header-bar span:nth-child(2) {
  top: 44%;
  background: #FFFFFF;
  width: 30px;
}
.header-section.header-3 .header-right .sidebar__toggle .header-bar span:last-child {
  bottom: 0;
  background: #FFFFFF;
  width: 15px;
}
.header-section.header-3 .header-right .sidebar__toggle .header-bar.active span:first-child {
  transform: rotate(45deg) translate(3px, 9px);
}
.header-section.header-3 .header-right .sidebar__toggle .header-bar.active span:nth-child(2) {
  opacity: 0;
}
.header-section.header-3 .header-right .sidebar__toggle .header-bar.active span:last-child {
  transform: rotate(-45deg) translate(3px, -9px);
}
.header-section.header-3 .header-right .sidebar__toggle .header-bar:hover {
  cursor: pointer;
}
.header-section.header-3 .header-main {
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(45px);
}

.header-section.style-2 .header-1 {
  background-color: #F4F4F4;
}
.header-section.style-2 .header-1 .sidebar__toggle {
  color: #05091D !important;
}
.header-section.style-2 .header-main .main-menu ul li a {
  color: #05091D;
}
.header-section.style-2 .header-main .main-menu ul li a:hover {
  color: #8FB26B !important;
}
.header-section.style-2 .header-main .main-menu ul li .submenu li a::before {
  background: var(--theme2);
}
.header-section.style-2 .header-main .main-menu ul li .submenu li a:hover {
  color: #8FB26B !important;
}
.header-section.style-2 .header-main .main-menu ul li .submenu li:hover > a {
  color: #8FB26B !important;
}
.header-section.style-2 .header-main .main-menu ul li .submenu li:hover > a::after {
  color: #8FB26B;
}
.header-section.style-2 .header-main .main-menu ul li:hover > a {
  color: #8FB26B;
}
.header-section.style-2 .header-main .main-menu ul li:hover > a::after {
  color: #8FB26B;
}

.header-1 {
  z-index: 99;
  background-color: #1F3737;
}

.header-1 .header-logo-2 {
  display: none;
}

.header-1 .header-right .sidebar__toggle {
  color: #FFFFFF;
}

@media (max-width: 1199px) {
  .header-1 .header-right .main-button {
    display: none;
  }
}

.header-1.inner-header {
  background-color: #171A2B;
}

.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.9s;
  background-color: #FFFFFF;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.sticky.inner-header {
  background-color: #fff;
}
.sticky.header-1 .header-logo-2 {
  display: block;
}
.sticky.header-1 .header-logo {
  display: none;
}
.sticky.header-1 .header-right .sidebar__toggle {
  color: #05091D;
}
.sticky.header-1 .header-right .search-icon {
  color: #05091D;
}
.sticky.header-1 .main-menu ul li a {
  color: #05091D;
}
.sticky.header-1 .main-menu ul li a:hover {
  color: #8FB26B !important;
}
.sticky.header-1 .main-menu ul li:hover > a {
  color: #8FB26B;
}
.sticky.header-1 .main-menu ul li:hover > a::after {
  color: #8FB26B;
}
.sticky.header-section.header-3 {
  background-color: #FFFFFF;
}
.sticky.header-section.header-3 .header-right .search-icon {
  color: #05091D;
}
.sticky.header-section.header-3 .header-right .sidebar__toggle .header-bar span {
  background: #05091D;
}
.sticky.header-section.header-3 .header-right .sidebar__toggle .header-bar span:first-child {
  background: #05091D;
}
.sticky.header-section.header-3 .header-right .sidebar__toggle .header-bar span:nth-child(2) {
  background: #05091D;
}
.sticky.header-section.header-3 .header-right .sidebar__toggle .header-bar span:last-child {
  background: #05091D;
}
.sticky.header-section.header-3 .header-main {
  padding-left: 0;
  padding-right: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: initial;
}

.offcanvas__info {
  background: #FFF none repeat scroll 0 0;
  border-left: 2px solid #8FB26B;
  position: fixed;
  right: 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));
  -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 99999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}

.offcanvas__info::-webkit-scrollbar {
  display: none;
}

.offcanvas__info.info-open {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
}

.offcanvas__wrapper .offcanvas__content .text {
  color: var(--text);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 45px;
  height: 45px;
  text-align: right;
  position: relative;
  z-index: 9;
  cursor: pointer;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: #8FB26B;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
  margin-top: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
  color: var(--text);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
  margin-bottom: 15px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
  margin-right: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
  color: #8FB26B;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
  text-transform: initial;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .content-btn {
  width: 100%;
  padding: 20px 40px;
  text-transform: capitalize !important;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
  margin-top: 30px;
  gap: 10px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: transparent;
  color: var(--text);
  border-radius: 50%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border: 1px solid var(--border);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
  background-color: #8FB26B;
  color: #FFFFFF;
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}

.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

@media (max-width: 450px) {
  .offcanvas__info {
    width: 300px;
  }
}

@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}




/* Create three equal columns that floats next to each other */

.submenu-drop-column {
  width: 100%;
  padding: 10px;	
}

.submenu-drop-two-column {
  float: left;
  width: 50%;
  padding: 10px;	
}

.submenu-drop-two-column h4 a {
  font-size: 18px !important;
}



/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}


.main-button {
  position: relative;
  display: flex;
  align-items: center;
}

.main-button .content-btn {
  position: relative;
  z-index: 2;
  display: inline-block;
  border: none;
  text-transform: capitalize;
  text-align: center;
  background-color: #8FB26B;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  padding: 19.5px 35px;
  border-radius: 999px;
  font-family: "Special Gothic", sans-serif;
}

@media (max-width: 575px) {
  .main-button .content-btn {
    padding: 18px 30px;
    font-size: 14px;
  }
}

.main-button .arrow-btn {
  width: 53px;
  height: 53px;
  line-height: 53px;
  text-align: center;
  background: #8FB26B;
  color: #FFFFFF;
  border-radius: 999px;
  display: inline-block;
  transition: all 0.4s ease-in-out;
}

.main-button .arrow-btn i {
  font-size: 16px;
  transform: rotate(-45deg);
  display: inline-block;
  transition: all 0.4s ease-in-out;
}

.main-button .arrow-btn:hover {
  background: #05091D;
  color: #FFFFFF;
}

.main-button.bg-2 .content-btn, .main-button.bg-2 .arrow-btn {
  background-color: var(--theme2);
  color: #05091D;
}

.main-button.bg-2:hover .content-btn, .main-button.bg-2:hover .arrow-btn {
  color: #FFFFFF;
}

.main-button.bg-3 .content-btn, .main-button.bg-3 .arrow-btn {
  background-color: var(--theme3);
  color: #FFFFFF;
}

.main-button.bg-3:hover .content-btn, .main-button.bg-3:hover .arrow-btn {
  color: #FFFFFF;
}

.main-button:hover .content-btn, .main-button:hover .arrow-btn {
  background-color: #F99002;
}

.main-button:hover .arrow-btn i {
  transform: rotate(0);
}

.content-btn {
  position: relative;
  z-index: 2;
  display: inline-block;
  border: none;
  text-transform: capitalize;
  text-align: center;
  background-color: #8FB26B;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  padding: 19.5px 35px;
  border-radius: 10px;
  font-family: "Special Gothic", sans-serif;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 575px) {
  .content-btn {
    padding: 18px 30px;
    font-size: 14px;
  }
}

.content-btn:hover {
  background-color: #05091D;
}

.link-btn {
  text-transform: uppercase;
  color: var(--text);
  font-weight: 500;
  display: inline-block;
  font-size: 12px;
}

.link-btn i {
  margin-right: 5px;
}

.link-btn:hover {
  color: #05091D;
}


@-webkit-keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}

@keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}

@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rounded {
  50% {
    transform: rotate(15deg);
  }
}

@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@-webkit-keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes tpswing {
  0% {
    -webkit-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@-webkit-keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@-webkit-keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}

@keyframes rounded {
  50% {
    transform: rotate(20deg);
  }
}

@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}

.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}

@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}

@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounce-x {
  -webkit-animation: bounce-x 7s infinite linear;
  animation: bounce-x 7s infinite linear;
}

@keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}

@keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}

@keyframes rotated2 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}

@keyframes wave {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(-50%);
  }
}


/*------ Image Animation -----*/

.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img-custom-anim-right {
  animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-right {
  0% {
    transform: translateX(5%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img-custom-anim-top {
  animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img-custom-anim-bottom {
  animation: img-anim-bottom 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}







.page-heading-text {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 48px;
  color: #FFF;
  margin-bottom: 10px;
}

@media (max-width: 575px) {
  .page-heading-text {
    font-size: 40px;
	  line-height: 1;
  }
}


.breadcrumb-wrapper {
  position: relative;
  overflow: hidden;
}

.breadcrumb-wrapper .page-heading {
  position: relative;
  padding: 210px 0 150px;
  text-align: center;
  z-index: 9;
}

@media (max-width: 1199px) {
  .breadcrumb-wrapper .page-heading {
    padding-top: 180px;
  }
}

.breadcrumb-wrapper .page-heading h1 {
  color: #8FB26B;
  font-size: 72px;
  font-weight: bold;
  position: relative;
  z-index: 9;
}

@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 56px;
  }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items {
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
  justify-content: center;
}

@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items {
    margin-top: 15px;
  }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li {
  color: #FFFFFF;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 22px;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
  color: #FFFFFF;
  transition: all 0.4s ease-in-out;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
  color: #8FB26B;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li i {
  color: #FFFFFF;
}

.error-items {
  text-align: center;
}
.error-items .error-image img {
  width: 100%;
  height: 100%;
}
.error-items .error-content {
  text-align: center;
  margin-top: 50px;
}
.error-items .error-content p {
  max-width: 480px;
  margin: 40px auto 50px;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #8FB26B;
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #8FB26B;
  border-radius: 10px;
}

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

.ml-50 {
  margin-left: 50px;
}
@media (max-width: 1199px) {
  .ml-50 {
    margin-left: 0;
  }
}

.ripple {
  position: relative;
}
.ripple::before, .ripple::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 110px;
  height: 110px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -webkit-animation: rippleOne 3s infinite;
  animation: rippleOne 3s infinite;
}
.ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}



.swiper-dot {
  padding-top: 50px;
  position: relative;
}

.swiper-dot .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  transition: 0.6s;
  background-color: #CCCCCC;
  opacity: 1;
  border-radius: 10px;
}

.swiper-dot .swiper-pagination-bullet:not(:last-child) {
  margin-right: 10px;
}

.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #8FB26B;
  transition: 0.6s;
  position: relative;
}

.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  width: 22px;
  height: 22px;
  line-height: 22px;
  top: -6px;
  left: -6px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid #8FB26B;
  content: "";
}

.array-button {
  display: flex;
  align-items: center;
  gap: 15px;
}
.array-button .array-prev {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background-color: #2a2a2a;
  color: #FFFFFF;
  transition: all 0.4s ease-in-out;
  font-size: 12px;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.08);
}
.array-button .array-prev:hover {
  background-color: #8FB26B;
  color: #FFFFFF;
}
.array-button .array-next {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background-color: #8FB26B;
  color: #FFFFFF;
  transition: all 0.4s ease-in-out;
  font-size: 12px;
}
.array-button .array-next:hover {
  background-color: #8FB26B;
  color: #FFFFFF;
}

.mt-10 {
  margin-top: 10px;
}

/* 
@media (max-width: 767px) {
  br {
    display: none;
  }
}
*/

.mt-60 {
  margin-top: 55px;
}

.mb-40 {
  margin-bottom: 40px;
}

/* background */
.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}

.bg-cover-2 {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
  width: 100%;
  height: 100%;
}

.custom-container {
  max-width: 1680px;
}

.page-nav-wrap ul li {
  display: inline-block;
}
.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: transparent;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 5px;
}
.page-nav-wrap ul li .page-numbers.current {
  background-color: #8FB26B;
  color: #FFFFFF;
}
@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
  }
}
.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
}
.page-nav-wrap ul li .page-numbers:hover {
  background-color: #8FB26B;
  color: #FFFFFF;
  border: 1px solid transparent;
}

.item-bg-color {
  background-color: #F4F6FA !important;
}

.bor-top {
  border-top: 1px solid #CCC;
}

.bor-left {
  border-left: 1px solid var(--border);
}

.bor-bottom {
  border-bottom: 1px solid #CCC;
}

.sticky-style {
  position: sticky !important;
  top: 100px;
}

.custom-container-2 {
  max-width: 1575px;
  margin: 0 auto;
}

.aximo_screenfix_right {
  margin-right: calc((-100vw + 100%) / 2);
}

.custom-container-3 {
  max-width: 1695px;
  margin: 0 auto;
}

.slide-transtion {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.brand-slide-element {
  width: auto;
  display: inline-block;
}

.item-bg {
  background-color: var(--bg) !important;
}
.item-bg p {
  color: var(--text) !important;
}
.item-bg .client-info {
  border-top: 1px solid var(--border) !important;
}
.item-bg .client-info .content h3 {
  color: #05091D !important;
}
.item-bg .client-info .content span {
  color: var(--text) !important;
}

.hero-12 {
  overflow: hidden;
  z-index: 9;
  position: relative;
  padding-top: 80px;
}
@media (max-width: 1199px) {
  .hero-12 {
    padding: 180px 0 150px;
  }
}
@media (max-width: 991px) {
  .hero-12 {
    padding: 120px 0;
  }
}
.hero-12 .hero-content h6 {
  margin-bottom: 10px;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2.56px;
  text-transform: uppercase;
}
.hero-12 .hero-content h1 {
  margin-bottom: 20px;
  color: #FFFFFF;
}
@media (max-width: 1399px) {
  .hero-12 .hero-content h1 {
    font-size: 55px;
  }
}
@media (max-width: 1199px) {
  .hero-12 .hero-content h1 {
    font-size: 48px;
  }
}
@media (max-width: 991px) {
  .hero-12 .hero-content h1 {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .hero-12 .hero-content h1 {
    font-size: 55px;
  }
}
@media (max-width: 575px) {
  .hero-12 .hero-content h1 {
    font-size: 40px;
  }
}
.hero-12 .hero-content h1 span {
  font-weight: 100;
}
.hero-12 .hero-content p {
  color: #FFFFFF;
  opacity: 0.8;
  max-width: 500px;
}
.hero-12 .hero-content .main-button {
  margin-top: 30px;
}
.hero-12 .hero-content .main-button .content-btn {
  background: transparent;
  border: 1px solid #8FB26B;
}
.hero-12 .hero-content .main-button .arrow-btn {
  background: transparent;
  border: 1px solid #8FB26B;
}
.hero-12 .hero-content .main-button:hover .content-btn, .hero-12 .hero-content .main-button:hover .arrow-btn {
  background-color: #8FB26B;
}
.hero-12 .hero-content .main-button:hover .arrow-btn i {
  transform: rotate(0);
}

@media (max-width: 575px) {
  .hero-content .hero-cta {
	margin: 0px auto;
  }
}

.hero-12 .hero-shape {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media (max-width: 1199px) {
  .hero-12 .hero-shape {
    display: none;
  }
}
.hero-12 .hero-shape img {
  height: 100%;
}
.hero-12 .hero-image {
  position: relative;
  z-index: 9;
  margin-right: -55%;
}
@media (max-width: 1199px) {
  .hero-12 .hero-image {
    margin-right: 0;
  }
}
.hero-12 .hero-image img {
  width: 100%;
  height: 100%;
}

.hero-1 {
  position: relative;
  z-index: 9;
}
.hero-1 .circle-arrow {
  position: absolute;
  right: 135px;
  bottom: 35px;
  z-index: 9;
}
@media (max-width: 767px) {
  .hero-1 .circle-arrow {
    display: none;
  }
}
.hero-1 .circle-arrow a {
  height: 200px;
  width: 200px;
  text-align: center;
  line-height: 163px;
  display: inline-block;
  border-radius: 50%;
  background: rgba(255, 59, 0, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
.hero-1 .circle-arrow a .circle1 {
  height: 175px;
  width: 175px;
  text-align: center;
  line-height: 175px;
  position: relative;
  margin-left: 0px;
  margin-top: 10px;
  animation: cir36 10s linear infinite;
}
.hero-1 .circle-arrow a .arrow1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFFFFF;
  font-size: 20px;
}
.hero-1 .swiper-slide-active .hero-image {
  -webkit-transform: scale(1.12);
  -moz-transform: scale(1.12);
  transform: scale(1.12);
}

@media (max-width: 767px) {
  .hero-1 .slider-button {
    display: none;
  }
}

.hero-1 .slider-button .array-prev {
  font-size: 24px;
  color: #FFFFFF;
  position: absolute;
  left: 2%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  cursor: pointer;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  background-color: #8FB26B;
  border-radius: 5px;
}

.hero-1 .slider-button .array-prev i {
  display: inline-block;
}

.hero-1 .slider-button .array-prev:hover {
  background-color: #FFFFFF;
  color: #05091D;
}

.hero-1 .slider-button .array-next {
  font-size: 24px;
  color: #05091D;
  position: absolute;
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  cursor: pointer;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  background-color: #FFFFFF;
  border-radius: 5px;
}

.hero-1 .slider-button .array-next:hover {
  background-color: #8FB26B;
  color: #FFFFFF;
}

.hero-1 .hero-image {
  overflow: hidden;
  position: absolute !important;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: -2;
  background-size: cover;
  transform: scale(1);
  -webkit-transition: all 8s ease-out 0s;
  -moz-transition: all 8s ease-out 0s;
  -ms-transition: all 8s ease-out 0s;
  -o-transition: all 8s ease-out 0s;
  transition: all 8s ease-out 0s;
}
.hero-1 .hero-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, #16171A 0.06%, rgba(22, 23, 26, 0) 99.93%);
  z-index: -1;
}
.hero-1 .hero-content {
  padding: 180px 0 180px;
  position: relative;
  z-index: 9;
}
@media (max-width: 767px) {
  .hero-1 .hero-content {
    text-align: center;
    margin: 0 auto;
    padding: 130px 0 130px;
  }
}

.hero-1 .hero-content h6 {
  color: #FFFFFF;
  background-color: #8FB26B;
  padding: 8px 20px;
  line-height: 1;
  display: inline-block;
  letter-spacing: 1px;
  margin-bottom: 30px;
  border-radius: 5px;
}

.hero-1 .hero-content h1 {
  color: #FFFFFF;
  margin-bottom: 15px;
  line-height: 120%;
}

@media (max-width: 1399px) {
  .hero-1 .hero-content h1 {
    font-size: 70px;
  }
}

@media (max-width: 991px) {
  .hero-1 .hero-content h1 {
    font-size: 56px;
  }
}

@media (max-width: 767px) {
  .hero-1 .hero-content h1 {
    font-size: 43px;
  }
}

@media (max-width: 575px) {
  .hero-1 .hero-content h1 {
    font-size: 34px;
  }
}

.hero-1 .hero-content p {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 40px;
}

.hero-1 .hero-content .hero-button {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .hero-1 .hero-content .hero-button {
    margin-top: 40px;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .hero-1 .hero-content .hero-button {
    margin-top: 25px;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.hero-1 .hero-content .hero-button .video-btn {
  background-color: #8FB26B;
  color: #FFFFFF;
  display: inline-block;
  font-size: 16px;
  height: 50px;
  width: 50px;
  line-height: 50px;
  border-radius: 50%;
  text-align: center;
  position: relative;
}
.hero-1 .hero-content .hero-button .video-btn::before {
  position: absolute;
  top: 50%;
  left: 50%;
  right: 0;
  bottom: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #8FB26B;
  content: "";
  transform: translate(-50%, -50%);
}
.hero-1 .hero-content .hero-button .button-text span {
  font-size: 16px;
  color: #FFFFFF;
  font-weight: bold;
}

.hero-2 {
  padding: 220px 0 100px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1199px) {
  .hero-2 {
    padding-top: 190px;
  }
}
@media (max-width: 991px) {
  .hero-2 {
    padding-top: 140px;
  }
}
.hero-2 .bg-shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 1199px) {
  .hero-2 .bg-shape-1 {
    display: none;
  }
}
@media (max-width: 991px) {
  .hero-2 .hero-content h1 {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .hero-2 .hero-content h1 {
    font-size: 52px;
  }
}
@media (max-width: 575px) {
  .hero-2 .hero-content h1 {
    font-size: 42px;
  }
}
.hero-2 .hero-content span {
  color: var(--theme2);
}
.hero-2 .hero-content p {
  color: var(--black);
  margin-top: 20px;
  margin-bottom: 40px;
}
.hero-2 .hero-content h4 {
  margin-top: 40px;
  font-size: 18px;
  font-weight: 500;
  max-width: 270px;
  line-height: 177%;
  margin-bottom: 20px;
}
.hero-2 .hero-image {
  position: relative;
}
.hero-2 .hero-image img {
  width: 100%;
  height: 100%;
}
.hero-2 .hero-image .box-shape {
  position: absolute;
  bottom: 0;
  right: -50px;
}
@media (max-width: 1199px) {
  .hero-2 .hero-image .box-shape {
    display: none;
  }
}
.hero-2 .gradient-color {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 1199px) {
  .hero-2 .gradient-color {
    display: none;
  }
}

.hero-3 {
  position: relative;
  padding: 290px 0 160px;
}
@media (max-width: 1199px) {
  .hero-3 {
    padding: 170px 0 0;
  }
}
.hero-3 .left-shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media (max-width: 1399px) {
  .hero-3 .left-shape {
    display: none;
  }
}
.hero-3 .hero-video-box {
  padding: 30px 350px 30px 40px;
  border-radius: 20px 0px 0px 0px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 1199px) {
  .hero-3 .hero-video-box {
    position: static;
    padding: 30px;
    margin-top: 30px;
  }
}
.hero-3 .hero-video-box .video {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.hero-3 .hero-video-box .video .video-btn {
  width: 50px;
  height: 50px;
  background-color: var(--theme3);
  line-height: 50px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  color: #FFFFFF;
}
.hero-3 .hero-video-box .video h5 {
  color: #FFFFFF;
}
.hero-3 .hero-video-box p {
  color: #FFFFFF;
}
.hero-3::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0.7;
  background: #05091D;
}
.hero-3 .hero-content {
  position: relative;
}
@media (max-width: 1199px) {
  .hero-3 .hero-content {
    margin-bottom: 80px;
  }
}
.hero-3 .hero-content h6 {
  color: #FFFFFF;
}
.hero-3 .hero-content h1 {
  color: #FFFFFF;
  font-size: 88.143px;
}
@media (max-width: 1199px) {
  .hero-3 .hero-content h1 {
    font-size: 72px;
  }
}
@media (max-width: 991px) {
  .hero-3 .hero-content h1 {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .hero-3 .hero-content h1 {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .hero-3 .hero-content h1 {
    font-size: 38px;
  }
}
.hero-3 .hero-content h1 span {
  font-weight: 300;
}
.hero-3 .hero-content .main-button {
  margin-top: 40px;
}
.hero-3 .hero-content .main-button .content-btn {
  background-color: transparent;
  border: 1px solid #FFFFFF;
}
.hero-3 .hero-content .main-button .arrow-btn {
  background-color: var(--theme3);
}
.hero-3 .hero-content .main-button:hover .content-btn {
  background-color: var(--theme3);
  border: 1px solid var(--theme3);
}
.hero-3 .social-icon {
  gap: 30px;
  position: absolute;
  right: 140px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1199px) {
  .hero-3 .social-icon {
    display: none !important;
  }
}
.hero-3 .social-icon a {
  color: #FFFFFF;
}
.hero-3 .social-icon a:hover {
  color: var(--theme3);
}

.hero-22 {
  background-color: #16171A;
  position: relative;
  z-index: 9;
}
.hero-22 .hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
@media (max-width: 1899px) {
  .hero-22 .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9 !important;
  }
  .hero-22 .hero-image::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(90deg, #16171A 0.06%, rgba(22, 23, 26, 0) 99.93%);
  }
  .hero-22 .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.hero-22 .hero-image img {
  max-width: 100%;
}
.hero-22 .dot-shape {
  position: absolute;
  top: 0;
  right: 600px;
}
.hero-22 .hero-content {
  padding: 300px 0 160px;
  position: relative;
  z-index: 9;
}
@media (max-width: 767px) {
  .hero-22 .hero-content {
    text-align: center;
    margin: 0 auto;
    padding: 130px 0;
  }
}
.hero-22 .hero-content h1 {
  color: #FFFFFF;
  font-size: 75px;
  margin-bottom: 30px;
}
.hero-22 .hero-content h1 span {
  color: var(--theme2);
}
@media (max-width: 1199px) {
  .hero-22 .hero-content h1 {
    font-size: 70px;
  }
  .hero-22 .hero-content h1 br {
    display: none;
  }
}
@media (max-width: 991px) {
  .hero-22 .hero-content h1 {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .hero-22 .hero-content h1 {
    font-size: 48px;
  }
}
@media (max-width: 575px) {
  .hero-22 .hero-content h1 {
    font-size: 34px;
  }
}
.hero-22 .hero-content p {
  color: #FFFFFF;
  font-weight: 500;
}
.hero-22 .hero-content .hero-button {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 50px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .hero-22 .hero-content .hero-button {
    justify-content: center;
    margin-top: 30px;
  }
}




.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}
.mean-container .mean-nav > ul .homemenu-items {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .mean-container .mean-nav > ul .homemenu-items {
    flex-wrap: wrap;
  }
}
.mean-container .mean-nav > ul .homemenu-items .homemenu {
  position: relative;
}
@media (max-width: 1199px) {
  .mean-container .mean-nav > ul .homemenu-items .homemenu {
    max-width: 300px;
    text-align: center;
    margin: 0 auto;
    border: 1px solid var(--border);
    padding: 10px;
  }
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 12px 20px;
  color: #FFFFFF !important;
  width: initial;
  font-size: 16px;
  text-align: center;
  border-radius: 0;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: #FFFFFF !important;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  font-weight: 500;
  text-transform: capitalize;
  border-bottom: 1px solid var(--border) !important;
  border: none;
}
.mean-container .mean-nav ul li a:hover {
  color: #8FB26B;
}

.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
  color: #8FB26B;
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
}

.mean-container .mean-nav ul li > a > i {
  display: none;
}

.mean-container .mean-nav ul li > a.mean-expand i {
  display: inline-block;
  font-size: 18px;
}

.mean-container .mean-nav > ul > li:first-child > a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
  height: 200px;
  width: 100%;
  padding: 0;
  border-top: 0;
  margin-bottom: 20px;
}





.preloader {
  align-items: center;
  cursor: default;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}
.preloader .animation-preloader {
  z-index: 1000;
}
.preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-top-color: var(--theme3);
  height: 9em;
  margin: 0 auto 3.5em auto;
  width: 9em;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .spinner {
    width: 7.5em;
    height: 7.5em;
    margin: 0 auto 1.5em auto;
  }
}
.preloader .animation-preloader .txt-loading {
  font: bold 5em "Roboto", serif, "Special Gothic", sans-serif;
  text-align: center;
  user-select: none;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .txt-loading {
    font-size: 2.5em;
  }
}
.preloader .animation-preloader .txt-loading .letters-loading {
  color: var(--theme3);
  position: relative;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading::before {
  animation: letters-loading 4s infinite;
  color: #05091D;
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  font-family: "Roboto", serif;
  position: absolute;
  top: -3px;
  transform: rotateY(-90deg);
}
.preloader p {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: var(--theme3);
}
.preloader .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}
.preloader .loader .row {
  height: 100%;
}
.preloader .loader .loader-section {
  padding: 0px;
}
.preloader .loader .loader-section .bg {
  background-color: var(--bg);
  height: 100%;
  left: 0;
  width: 100%;
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}
.preloader.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}
.preloader.loaded .loader-section .bg {
  width: 0;
  transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

.search-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: rgba(255, 255, 255, 0.9);
}
.search-wrap .search-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.search-wrap .search-cell {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}
.search-wrap .search-field-holder {
  width: 50%;
  margin: auto;
  position: relative;
  animation: slideInUp 0.3s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .search-wrap .search-field-holder {
    width: 70%;
  }
}
@media (max-width: 575px) {
  .search-wrap .search-field-holder {
    width: 80%;
  }
}
.search-wrap .main-search-input {
  width: 100%;
  height: 70px;
  border: 0;
  padding: 0 50px;
  text-transform: capitalize;
  background: transparent;
  font-size: 25px;
  color: #8FB26B;
  border-bottom: 2px solid #8FB26B;
  text-align: center;
  letter-spacing: 2px;
}

@media (max-width: 575px) {
  .search-wrap .main-search-input {
    height: 50px;
    padding: 0 0;
    line-height: 50px;
    font-size: 18px;
  }
}
.search-wrap input.form-control,
.search-wrap input.form-control:focus {
  background-color: #8FB26B;
}

input.main-search-input::placeholder {
  color: #8FB26B;
  opacity: 1;
  font-size: 25px;
}

@media (max-width: 575px) {
  input.main-search-input::placeholder {
    font-size: 18px;
  }
}
.search-close {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 30px;
  color: #8FB26B;
  cursor: pointer;
}

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  width: 6px;
  height: 6px;
  z-index: 10000001;
  background-color: #8FB26B;
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -35px;
  margin-top: -35px;
  width: 70px;
  height: 70px;
  background-color: #8FB26B;
  opacity: 0.3;
}

.cursor-outer {
  margin-left: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid #8FB26B;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.5;
  -webkit-transition: all 0.08s ease-out;
  -o-transition: all 0.08s ease-out;
  transition: all 0.08s ease-out;
}

.cursor-outer.cursor-hover {
  opacity: 0;
}

.back-to-top {
  border-radius: 50%;
  background-color: #8FB26B;
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: #FFFFFF;
  font-size: 18px;
  position: fixed;
  display: inline-block;
  z-index: 999;
  right: 30px;
  bottom: 30px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.back-to-top:hover {
  background-color: #05091D;
  color: #FFFFFF;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}


.slider-button {
  border-top: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
  /*margin-top: 35px;*/
  padding: 25px 0;
}

.slider-button .cmn-next,
.slider-button .cmn-prev {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  transition: all 0.4s;
  border: 1px solid #E5E5E5;
}

.slider-button .cmn-next i,
.slider-button .cmn-prev i {
  color: #454750;
  font-size: 24px;
  transition: all 0.4s;
}

.slider-button .cmn-next:hover,
.slider-button .cmn-prev:hover {
  background: #8FB26B;
  border-color: #8FB26B;
}

.slider-button .cmn-next:hover i,
.slider-button .cmn-prev:hover i {
  color: #FFFFFF;
}

@media (max-width: 1399px) {
  .slider-button .cmn-next,
  .slider-button .cmn-prev {
    width: 48px;
    height: 48px;
    line-height: 48px;
  }
  .slider-button .cmn-next i,
  .slider-button .cmn-prev i {
    font-size: 17px;
  }
}

@media (max-width: 1399px) {
  .slider-button .cmn-next,
  .slider-button .cmn-prev {
    width: 38px;
    height: 38px;
    line-height: 38px;
  }
  .slider-button .cmn-next i,
  .slider-button .cmn-prev i {
    font-size: 16px;
  }
}

.slider-button .previus-text {
  font-size: 22px;
  color: #05091D;
}
@media (max-width: 575px) {
  .slider-button .previus-text {
    font-size: 18px;
  }
  .slider-button .project-storke {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .slider-button .previus-text {
    font-size: 16px;
  }
  .slider-button .project-storke {
    font-size: 24px;
  }
}
@media (max-width: 470px) {
  .slider-button .previus-text {
    font-size: 14px;
  }
  .slider-button .project-storke {
    display: none;
  }
}

















/*------ General Page Section Styles -----*/

.section-padding {
  padding: 60px 0;
}

@media (max-width: 1199px) {
  .section-padding {
    padding: 60px 0;
  }
}

@media (max-width: 991px) {
  .section-padding {
    padding: 40px 0;
  }
}

.section-title {
  margin-bottom: 30px;
  margin-top: -7px;
}

.section-title.style-2 {
  margin-top: 0;
}

.section-title.style-2 h6 {
  line-height: 1;
  font-size: 16px;
  letter-spacing: 2.56px;
  text-transform: uppercase;
  color: var(--theme3);
  margin-bottom: 15px;
}

.section-title.style-3 {
  margin-top: 0;
}

.section-title.style-3 h6 {
  line-height: 1;
  font-size: 16px;
  letter-spacing: 2.56px;
  text-transform: uppercase;
  color: #8FB26B;
  margin-bottom: 15px;
}

.section-title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 0;
    justify-content: center;
    text-align: center;
  }
}

.section-title-area .section-title {
  margin-bottom: 0;
}

.section-bg {
  background-color: var(--bg);
}

.section-bg-2 {
  background-color: #05091D;
}








/*------ Home About Section Styles -----*/

.about-section {
	background-color: #F9F9F9;
	background-image: url("../img/mosswall-hm-about-section-bkgrd.png");
	padding-bottom: 100px !important;
}

.about-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  border-top: 1px solid #CCC;
  padding-top: 40px;
  position: relative;
  z-index: 9;
}

@media (max-width: 1199px) {
  .about-wrapper {
    flex-wrap: wrap;
    gap: 25px;
  }
}

.about-wrapper .about-items {
  display: flex;
  gap: 40px;
}

@media (max-width: 1199px) {
  .about-wrapper .about-items {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.about-wrapper .about-items .about-img {
  max-width: 503px;
}

.about-wrapper .about-items .about-img img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.about-wrapper .about-items .about-content {
  max-width: 474px;
}

.about-wrapper .about-items .about-content .circle-box {
  margin-top: 35px;
  width: 150px;
  min-width: 150px;
  height: 150px;
  text-align: center;
  border-radius: 50%;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  background-color: #F4F4F4;
  font-size: 18px;
  font-weight: 700;
  color: #05091D;
  position: relative;
  border: 1px solid #8FB26B;
  font-family: "Roboto", serif;
}

.about-wrapper .about-items .about-content .circle-box span {
  position: relative;
  z-index: 9;
}

.about-wrapper .about-items .about-content .circle-box span .icon {
  display: block;
  transform: rotate(-40deg);
  margin-bottom: 10px;
}

.about-wrapper .about-items .about-content .circle-box::before {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  background: rgba(255, 59, 0, 0.35);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
  z-index: 0;
  opacity: 0;
}

.about-wrapper .about-items .about-content .circle-box::after {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  content: "";
  background: #8FB26B;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 1.8s;
  z-index: 0;
  opacity: 0;
}

.about-wrapper .about-items .about-content .circle-box:hover::before {
  width: 100%;
  height: 100%;
  opacity: 1;
}

.about-wrapper .about-items .about-content .circle-box:hover::after {
  width: 100%;
  height: 100%;
  opacity: 1;
}

.about-wrapper .about-items .about-content .circle-box:hover span {
  color: #FFFFFF;
}

.about-wrapper .counter-box {
  border-radius: 20px;
  background: #F4F4F4;
  padding: 45px 40px;
  text-align: center;
  min-width: 235px;
}

.about-wrapper .counter-box h2 {
  font-size: 45px;
  font-weight: 700;
  margin-top: 5px;
}

.about-wrapper .counter-box p {
  font-size: 16px;
  font-weight: 400;
}

.about-wrapper .about-shape {
  position: absolute;
  top: -50%;
  bottom: 0;
  right: 0;
  z-index: -1;
}

@media (max-width: 1600px) {
  .about-wrapper .about-shape {
    display: none;
  }
}

.about-wrapper-2 {
  margin-bottom: 40px;
  margin-top: 50px;
}

@media (max-width: 1399px) {
  .about-wrapper-2 {
    margin-top: 0;
  }
}

@media (max-width: 1199px) {
  .about-wrapper-2 {
    margin-bottom: 0;
  }
}

h3.about-content-title {
  font-size: 36px;
  font-weight: 600;
  line-height: 120%;
  text-align: right;
}

@media (max-width: 575px) {
  h3.about-content-title {
	  font-size: 24px;
	  text-align: center;
  }
}

.about-wrapper-2 .about-content {
  max-width: 650px;
}

.about-wrapper-2 .about-content .section-title p {
  margin-top: 30px;
}

.about-wrapper-2 .about-content .counter-items-area {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

@media (max-width: 1199px) {
  .about-wrapper-2 .about-content .counter-items-area {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: start;
  }
}

.about-wrapper-2 .about-content .counter-items-area .counter-items h3 {
  font-size: 45px;
  font-weight: 600;
}

.about-wrapper-2 .about-img {
  position: relative;
  margin-left: 40px;
}

@media (max-width: 1199px) {
  .about-wrapper-2 .about-img {
    margin-left: 0;
  }
}

.about-wrapper-2 .about-img img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.about-wrapper-2 .about-img .line-shape {
  position: absolute;
  top: -48px;
  left: -42px;
  right: 0;
  width: 659px;
  z-index: -1;
}

@media (max-width: 1399px) {
  .about-wrapper-2 .about-img .line-shape {
    display: none;
  }
}

.about-wrapper-2 .about-img .shape-box {
  position: absolute;
  bottom: -40px;
  right: -55px;
}

@media (max-width: 1199px) {
  .about-wrapper-2 .about-img .shape-box {
    display: none;
  }
}

@media (max-width: 1399px) {
  .about-wrapper-3 {
    margin-bottom: -30px;
  }
}

.about-wrapper-3 .about-items-3 .about-img {
  position: relative;
}

.about-wrapper-3 .about-items-3 .about-img img {
  border-radius: 999px;
}

@media (max-width: 1399px) {
  .about-wrapper-3 .about-items-3 .about-img img {
    width: 100%;
    height: 100%;
  }
}

.about-wrapper-3 .about-items-3 .about-img .counter-box {
  background-color: var(--theme3);
  display: inline-block;
  height: 200px;
  width: 200px;
  border-radius: 50%;
  padding: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  display: grid;
  line-height: 1;
  position: absolute;
  bottom: 2px;
  left: -80px;
}

@media (max-width: 1399px) {
  .about-wrapper-3 .about-items-3 .about-img .counter-box {
    left: 0;
    bottom: 5%;
  }
}

.about-wrapper-3 .about-items-3 .about-img .counter-box h2 {
  color: #FFFFFF;
  font-size: 60px;
  padding-top: 15px;
}

.about-wrapper-3 .about-items-3 .about-img .counter-box p {
  color: #FFFFFF;
  margin-top: -50px;
}

.about-wrapper-3 .about-content p {
  margin-top: 20px;
  margin-bottom: 35px;
}

.about-wrapper-3 .about-content .icon-items {
  display: flex;
  gap: 20px;
  border-bottom: 1px dashed #CCC;
  padding-bottom: 25px;
  align-items: center;
  margin-bottom: 25px;
}

.about-wrapper-3 .about-content .icon-items.style-2 {
  border-bottom: none;
  padding-bottom: 0;
}

.about-wrapper-3 .about-content .icon-items .icon {
  border-radius: 999px;
  background: #F4F4F4;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 30px;
  color: var(--theme3);
}

.about-wrapper-3 .about-content .icon-items .content {
  flex-basis: 75%;
}

.about-wrapper-3 .about-content .icon-items .content h5 {
  margin-bottom: 15px;
}

.about-wrapper-4 .about-content .about-list-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-wrapper-4 .about-content .about-list-items ul li {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto", serif;
  color: #7A7A7A;
}

.about-wrapper-4 .about-content .about-list-items ul li i {
  margin-right: 10px;
  color: #05091D;
}

.about-wrapper-4 .about-content .about-list-items ul li:not(:last-child) {
  margin-bottom: 15px;
}

.about-wrapper-4 .about-content .about-upcoming-image {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  align-items: center;
}

.about-wrapper-4 .about-content .about-upcoming-image img {
  border-radius: 20px;
}

.about-wrapper-4 .about-image-4 {
  text-align: right;
}

.about-wrapper-11 .about-image-items {
  position: relative;
}

.about-wrapper-11 .about-image-items .video-box {
  position: absolute;
  top: 50%;
  left: 34%;
  transform: translate(-50%, -50%);
  z-index: 9;
}

.about-wrapper-11 .about-image-items .video-box .video-buttton {
  width: 142px;
  height: 142px;
  line-height: 142px;
  text-align: center;
  border-radius: 50%;
  background-color: #8FB26B;
  display: inline-block;
  z-index: 9;
  font-size: 24px;
  color: #FFFFFF;
  position: relative;
}

.about-wrapper-11 .about-image-items .video-box .video-buttton .text-circle {
  position: absolute;
  top: 7%;
  left: 7%;
  -webkit-animation: cir36 10s linear infinite;
  animation: cir36 10s linear infinite;
}

.about-wrapper-11 .about-image-items .counter-shape {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background-color: #FFFFFF;
  box-shadow: var(--box-shadow);
  position: absolute;
  bottom: 30px;
  left: -50px;
  z-index: 1;
  border-radius: 10px;
}

@media (max-width: 575px) {
  .about-wrapper-11 .about-image-items .counter-shape {
    left: 0;
  }
}

.about-wrapper-11 .about-image-items .counter-shape .content h3 {
  font-size: 28px;
  font-weight: bold;
}

.about-wrapper-11 .about-image-items .about-image-1 {
  max-width: 430px;
  height: 360px;
  position: relative;
  border-radius: 20px;
}

@media (max-width: 991px) {
  .about-wrapper-11 .about-image-items .about-image-1 {
    max-width: 560px;
  }
}

.about-wrapper-11 .about-image-items .about-image-1 .about-image-2 {
  position: absolute;
  bottom: -30%;
  right: -35%;
}

.about-wrapper-11 .about-image-items .about-image-1 .about-image-2 img {
  border-radius: 20px;
  border: solid #FFF 3px;
}

@media (max-width: 1199px) {
  .about-wrapper-11 .about-image-items .about-image-1 .about-image-2 {
    display: none;
  }
	
}

.about-wrapper-11 .about-content .about-icon-items {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 30px;
  padding-bottom: 40px;
}

@media (max-width: 1399px) {
  .about-wrapper-11 .about-content .about-icon-items {
    flex-wrap: wrap;
    padding-bottom: 30px;
    margin-top: 30px;
  }
}

.about-wrapper-11 .about-content .about-icon-items .icon-items {
  display: flex;
  align-items: center;
  gap: 25px;
}

.about-wrapper-11 .about-content .about-icon-items .icon-items .icon {
  width: 120px;
  height: 120px;
  text-align: center;
  border-radius: 50%;
  background-color: #8FB26B;
  color: #FFFFFF;
  margin: 0px auto;
}

h4.about-label {
  margin: 10px auto;
}

.about-icon {
  margin: 0px auto;
}

.about-icon img {
  width: 120px;
  height: 120px;
}

.about-wrapper-11 .about-content .about-icon-items .icon-items .content {
  flex-basis: 60%;
}

.about-wrapper-11 .about-content .about-author {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
}

@media (max-width: 1199px) {
  .about-wrapper-11 .about-content .about-author {
    flex-wrap: wrap;
  }
}

.about-wrapper-11 .about-content .about-author .author-image {
  display: flex;
  align-items: center;
  gap: 15px;
}

.about-wrapper-11 .about-content .about-author .author-image .content p {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  margin-top: -2px;
}

.about-wrapper-11.style-2 .about-image-items .circle-shape {
  position: absolute;
  top: 0;
  right: 25%;
  animation: cir36 10s linear infinite;
}

.about-wrapper-11.style-2 .about-image-items .about-image-1 {
  max-width: 420px;
  height: 500px;
}

@media (max-width: 991px) {
  .about-wrapper-11.style-2 .about-image-items .about-image-1 {
    max-width: 550px;
    height: 530px;
  }
}

@media (max-width: 767px) {
  .about-wrapper-11.style-2 .about-image-items .about-image-1 {
    max-width: 450px;
    height: 415px;
  }
}

@media (max-width: 575px) {
  .about-wrapper-11.style-2 .about-image-items .about-image-1 {
    max-width: 550px;
    height: 500px;
  }
}

.about-wrapper-11.style-2 .about-image-items .about-image-1 .about-image-2 {
  border: 10px solid #FFFFFF;
  box-shadow: var(--box-shadow);
  right: -40%;
}

@media (max-width: 1199px) {
  .about-wrapper-11.style-2 .about-image-items .about-image-1 .about-image-2 {
    right: -20%;
  }
}

@media (max-width: 575px) {
  .about-wrapper-11.style-2 .about-image-items .about-image-1 .about-image-2 {
    right: 0;
  }
}

.about-wrapper-11.style-2 .about-image-items .about-image-1::after {
  display: none;
}

.about-wrapper-11.style-2 .about-content .about-icon-items .icon-items .icon {
  background-color: #FFFFFF;
  color: #8FB26B;
  box-shadow: 0px 4px 25px 0px rgba(56, 75, 255, 0.08);
}

.about-wrapper-11.style-2 .about-content .about-icon-items .icon-items .content h4 {
  font-weight: 600;
  margin-bottom: 5px;
}

.about-wrapper22 .about-image {
  position: relative;
}

.about-wrapper22 .about-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.about-wrapper22 .about-image .about-image-2 {
  position: absolute;
  top: 0;
  right: 0;
  border-left: 15px solid #FFFFFF;
  border-bottom: 15px solid #FFFFFF;
  border-radius: 10px;
}

@media (max-width: 575px) {
  .about-wrapper22 .about-image .about-image-2 {
    max-width: 180px;
    z-index: 9;
  }
}

.about-wrapper22 .about-image .about-experience {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #05091D;
  border-top: 15px solid #FFFFFF;
  border-right: 15px solid #FFFFFF;
}

.about-wrapper22 .about-image .about-experience .bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  mix-blend-mode: color-burn;
}

.about-wrapper22 .about-image .about-experience .about-experience-content {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
}

.about-wrapper22 .about-image .about-experience .about-experience-content .about-text {
  padding: 38.5px 16px;
  background-color: var(--theme3);
}

.about-wrapper22 .about-image .about-experience .about-experience-content .about-text .experience-title {
  font-size: 16px;
  color: #FFFFFF;
  font-weight: 700;
  line-height: 1.75;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin: 0;
}

.about-wrapper22 .about-image .about-experience .about-experience-content .about-year {
  padding: 0 32.48px 0 38px;
  font-size: 65px;
  color: #FFFFFF;
  font-weight: 700;
  line-height: 1.076;
  text-transform: uppercase;
  margin-bottom: 0;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #FFFFFF;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #FFFFFF;
  -webkit-text-fill-color: transparent;
}

.about-wrapper22 .about-content {
  margin-left: 50px;
}

@media (max-width: 1199px) {
  .about-wrapper22 .about-content {
    margin-left: 20px;
  }
}

@media (max-width: 991px) {
  .about-wrapper22 .about-content {
    margin-left: 0;
  }
}

.about-wrapper22 .about-content .about-inner {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 575px) {
  .about-wrapper22 .about-content .about-inner {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.about-wrapper22 .about-content .about-inner .icon-items {
  display: flex;
  gap: 20px;
}

@media (max-width: 1199px) {
  .about-wrapper22 .about-content .about-inner .icon-items {
    flex-wrap: wrap;
  }
}

.about-wrapper22 .about-content .about-inner .icon-items .icon {
  width: 80px;
  height: 80px;
  line-height: 70px;
  text-align: center;
  font-size: 30px;
  background-color: var(--theme3);
  color: #FFFFFF;
  border-radius: 50%;
}

.about-wrapper22 .about-content .about-inner .icon-items .content h6 {
  margin-bottom: 3px;
}

.about-wrapper22 .about-content .inner-thumb img {
  border-radius: 10px;
}

.about-wrapper22 .about-content .about-author {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
}

@media (max-width: 1199px) {
  .about-wrapper22 .about-content .about-author {
    gap: 30px;
  }
}

@media (max-width: 575px) {
  .about-wrapper22 .about-content .about-author {
    margin-top: 20px;
    flex-wrap: wrap;
  }
}

.about-wrapper22 .about-content .about-author .author-image {
  display: flex;
  align-items: center;
  gap: 20px;
}








/*------ Home Solutions Section Styles -----*/

.hm-solution-section {
	background-image: url("../img/mosswall-hm-solution-section-bkgrd.jpg");
}

.hm-solution-section-title h3 {
  color: #8FB26B;
  font-size: 48px;
  line-height: 114%;
  font-weight: 600;
}

.hm-solution-section-title h4 {
  color: #DDE8D2;
  font-size: 28px;
  font-weight: normal;
  text-transform: none;
  margin: 0px !important;
}

.hm-solution-box-icon img {
  max-height: 100px !important;
}

.hm-solution-box-items {
  border-radius: 20px;
  background: #F4F4F4;
  padding: 30px;
  min-height: 320px;
  transition: all 0.4s ease-in-out;
}

.hm-solution-box-items .icon {
  font-size: 60px;
  color: #8FB26B;
  transition: all 0.6s ease-in-out;
  display: inline-block;
}

.hm-solution-box-items .content h3 {
  margin-top: 20px;
}

.hm-solution-box-items .content h3 a:hover {
  color: #8FB26B;
}

.hm-solution-box-items .content p {
  margin-top: 20px;
}

.hm-solution-box-items .content .link-btn {
  margin-top: 30px;
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hm-solution-box-items .content .link-btn span {
  transform: rotate(-45deg);
  font-size: 12px;
  display: inline-block;
}

.hm-solution-box-items .content .link-btn:hover {
  color: #8FB26B;
}

.hm-solution-box-items:hover {
  background: var(--White, #FFF);
  box-shadow: 0px 5px 60px 0px rgba(0, 0, 0, 0.05);
}

.hm-solution-box-items:hover .icon {
  transform: rotateY(-360deg);
}

.hm-solution-box-icon {
  max-height: 120px;
}

.hm-solution-cta {
  display: flex;
  justify-content: center;
  padding-top: 40px;
}

.hm-solution-cta-btn {
  padding: 25px 80px !important;
  border-radius: 40px !important;
}


@media (max-width: 575px) {
  .hm-solution-box-items {
    margin: 30px;
    min-height: inherit;
 }
}

@media (max-width: 575px) {
  .hm-solution-section-title h3 {
    font-size: 32px;
 }
}

@media (max-width: 575px) {
  .hm-solution-section-title h4 {
    font-size: 20px;
 }
}

@media (max-width: 575px) {
  .hm-solution-cta-btn {
    font-size: 18px !important;
  }
}








/*------ Home News Section Styles -----*/

.hm-news-section {
  padding-top: 30px !important;
}

.hm-news-section-title h3 {
  color: #000000;
  font-size: 48px;
  line-height: 114%;
  font-weight: 600;
}

.hm-news-section-title h4 {
  color: #999999;
  font-size: 28px;
  font-weight: normal;
  text-transform: none;
  margin: 0px !important;
}


.hm-news-box-items {
  margin-top: 0px;
}

.hm-news-box-items .hm-news-img img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.hm-news-box-items .hm-news-content {
  margin-top: -100px;
  position: relative;
  z-index: 9;
  margin-left: 20px;
  margin-right: 20px;
  border-radius: 20px;
  border: 1px solid #CCC;
  background: #FFFFFF;
  padding: 25px;
}

.hm-news-box-items .hm-news-content .date-list {
  display: flex;
  gap: 30px;
}

.hm-news-box-items .hm-news-content h3 {
  margin-top: 20px;
  font-size: 20px;
}

.hm-news-content h3 a {
  color: #000;
}

.hm-news-content h3 a:hover {
  color: #95B871;
}

.hm-news-box-items .hm-news-content .link-btn {
  margin-top: 20px;
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  text-transform: capitalize;
}

.hm-news-box-items .hm-news-content .link-btn:hover {
  color: #95B871;
}

@media (max-width: 575px) {
  .hm-news-box-items {
    margin: 0px 0px 30px 0px;
   }
  }

@media (max-width: 575px) {
  .hm-news-section-title h3 {
    font-size: 32px;
 }
}

@media (max-width: 575px) {
  .hm-news-section-title h4 {
    font-size: 20px;
 }
}









/*------ Home Contact Section Styles -----*/

.hm-contact-us-section {
	background-image: url("../img/mosswall-hm-contact-us-section-bkgrd.jpg");
}

.hm-contact-us-items h3 {
  color: #274C03;
  font-size: 46px;
  line-height: 114%;
  font-weight: 700;
}

.hm-contact-us-items h4 {
  color: #657F4A;
  font-size: 42px;
  font-weight: 600;
  text-transform: none;
  line-height: 110%;
}

.hm-contact-us-btn {
  background-color: #274C03 !important;
  margin-top: 20px;
  padding: 25px 40px !important;
  font-size: 24px !important;
}

.hm-contact-us-btn:hover {
  background-color: #F99002 !important;
}

.hm-contact-us-img {
	max-width: 620px !important;
}












/*------ Product Page Styles -----*/

.product-hero .product-hero-content-sml {
  padding: 160px 0px 90px 0px;
  position: relative;
  z-index: 9;
}

.product-hero .product-hero-content-sml h1 {
  color: #777;
  font-size: 52px;
  font-weight: 700;
  margin: 15px 0px;   
  line-height: 100%;
}

.product-hero .product-hero-content-lrg {
  padding: 160px 0px 90px 0px;
  position: relative;
  z-index: 9;
}

.product-pg-hero-logo {
  padding-top: 15px;
}

.product-hero-cta {
  background-color: #68CBCE !important;
}

@media (max-width: 575px) {
.product-hero-cta {
    padding: 20px 35px !important;
    font-size: 18px !important;
  }
}

@media (max-width: 575px) {
.product-pg-content.content {
  text-align: center;
  }
}

@media (max-width: 575px) {
.product-button {
  display: block;
  }
}

@media (max-width: 575px) {
.product-hero .product-hero-content-sml {
  padding: 100px 0px 20px 0px;
  position: relative;
  z-index: 9;
  }
}

@media (max-width: 575px) {
.product-hero .product-hero-content-lrg {
  padding: 20px 0px 60px 0px;
  position: relative;
  z-index: 9;
  }
}

.product-features-content {
  margin-top: 30px;
}

.product-features-text {
  text-align: center;
}

.product-features-text h3 {
  color: #68CBCE;
  font-size: 48px;
  line-height: 100%;
}

.product-features-text p {
  color: #FFF;
  font-size: 30px;
  line-height: 120%;
}

.product-features-options {
  display: flex;
  flex-wrap: nowrap;
}

.product-features-number-text {
  color: #F67964;
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  font-weight: 200;
  line-height: 110%;
  margin: 15px 0px 0px 20px;
}

.product-features-number-text span {
  color: #FFF;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}

.product-features-card-box {
  padding-top: 15px;
}

@media (max-width: 595px) {
.product-features-text h3 {
  font-size: 36px;
  padding: 0px 15px;
  }
}

@media (max-width: 595px) {
.product-features-text p {
  font-size: 26px;
  padding: 0px 10px;
  }
}

@media (max-width: 595px) {
.product-features-number-text {
  font-size: 28px;
  }
}

@media (max-width: 595px) {
.product-features-card-box {
  padding: 15px 10px 0px 10px;
  }
}

.product-facts-section {
	background: #000;
}

.product-facts-box {
  text-align: center;
  border: solid 1px #999;
	padding-top: 20px;
}

.product-facts-icon {
  position: relative;
  bottom: 30px;
}

.product-facts-number {
  font-family: "Special Gothic Expanded One", sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: #FFF;
}

.product-facts-text {
  color: #71CBCF;
  font-size: 20px;
  line-height: 110%;
  padding: 5px 40px 15px 40px;
}

.product-baqa-section {
  padding: 100px 0px;
}

.product-baqa-sect-content.content {
  text-align: right;
}

@media (max-width: 575px) {
.product-facts-box {
  margin: 40px;
  }
}

@media (max-width: 595px) {
  .product-facts-text {
    color: #71CBCF;
    font-size: 24px;
    line-height: 110%;
    padding: 5px 40px 15px 40px;
  }
}

.product-demo-reqs-section {
	background-image: url("../img/mosswall-product-pg-demo-bkgrd-reqs-3000x450.jpg");
	padding: 50px !important;
}

.product-demo-reqs-info {
  margin: 40px 0px 0px 30px;
}

.product-demo-reqs-title h4 {
  color: #F67964;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 40px;
  line-height: 105%;
}

.product-demo-reqs-title span {
  font-weight: 700;
}

.product-demo-reqs-text p {
  color: #000;
  font-size: 36px;
  line-height: 110%;
}

@media (max-width: 595px) {
.product-demo-reqs-info {
  text-align: center;
  margin: 30px 0px 0px 0px !important;
  }
}

@media (max-width: 595px) {
.product-demo-reqs-info br {
  display: none;
  }
}

@media (max-width: 595px) {
.product-demo-reqs-title span {
  font-weight: 100;
  }
}

@media (max-width: 595px) {
  .product-demo-reqs-title h4 {
    font-size: 36px;
  }
}
  
  @media (max-width: 595px) {
  .product-demo-reqs-text p {
    font-size: 28px;
  }
}

.product-demo-test-cases-section {
	background-image: url("../img/mosswall-product-pg-demo-bkgrd-test-cases-3000x450.jpg");
	padding: 50px !important;
}

.product-demo-test-cases-info {
  text-align: right;
  margin: 50px 30px 0px 0px;
}

.product-demo-test-cases-title h4 {
  color: #469A6E;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 40px;
  line-height: 105%;
}

.product-demo-test-cases-title span {
  font-weight: 700;
}

.product-demo-test-cases-text p {
  color: #000;
  font-size: 36px;
  line-height: 110%;
}

@media (max-width: 595px) {
.product-demo-test-cases-info {
  text-align: center;
  margin: 30px 0px 0px 0px !important;
  }
}

@media (max-width: 595px) {
.product-demo-test-cases-info br {
  display: none;
  }
}

@media (max-width: 595px) {
.product-demo-test-cases-title span {
  font-weight: 100;
  }
}

@media (max-width: 595px) {
.product-demo-test-cases-title h4 {
  font-size: 36px;
  }
}

@media (max-width: 595px) {
.product-demo-test-cases-text p {
  font-size: 28px;
  }
}


/*------ Product Page Testimonials Section Styles -----*/

.testimonial-section-title h2 {
  font-size: 48px;
  color: #444;
}

.testimonial-card-items {
  text-align: center;
  margin: 30px auto 0;
  padding: 0 20px 30px;
  background-color: #444444;
  transition: all 0.4s ease-in-out;
  border-radius: 10px;
}

.testimonial-card-items .client-info .client-img {
  padding-top: 30px;
  border-radius: 0px 0px 120px 120px;
  background: #8FB26B;
  width: 90px;
  height: 115px;
  margin: 0 auto;
  transition: all 0.4s ease-in-out;
}

.testimonial-card-items .client-info .client-img img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  border: 2px solid #05091D;
}

.testimonial-card-items .client-info .client-content {
  margin-top: 20px;
  margin-bottom: 15px;
}

.testimonial-card-items .client-info .client-content h3 {
  font-size: 24px;
  color: #FFFFFF;
}

.testimonial-card-items .client-info .client-content span {
  color: #E7E7E7;
  font-size: 20px;
}

.testimonial-card-items p {
  color: #E7E7E7;
  font-size: 18px;
}

.testimonial-card-items .icon {
  margin-top: 20px;
  transition: all 0.4s ease-in-out;
}

.testimonial-card-items:hover {
  background-color: #8FB26B;
}

.testimonial-card-items:hover .client-info .client-img {
  background-color: #05091D;
}

.testimonial-card-items:hover .client-info .client-img img {
  border: 2px solid #8FB26B;
}

.testimonial-card-items:hover .client-info .client-content h3, .testimonial-card-items:hover .client-info .client-content span {
  color: #FFFFFF;
}

.testimonial-card-items:hover p {
  color: #FFFFFF;
}

.testimonial-card-items:hover .icon {
  filter: grayscale(100%) brightness(300%);
}

.testimonial-card-items121 {
  margin-top: 60px;
}

.testimonial-card-items121 .testimonial-items-top {
  text-align: center;
  background-color: #ecf0f4;
  border-radius: 10px;
  padding: 40px 30px;
  position: relative;
  margin-bottom: 30px;
  transition: all 0.4s ease-in-out;
  border: 1px solid transparent;
}

@media (max-width: 575px) {
  .testimonial-card-items121 .testimonial-items-top {
    padding: 30px 40px;
  }
}

.testimonial-card-items121 .testimonial-items-top .icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme2);
  font-size: 26px;
  color: #FFFFFF;
  margin: -70px auto 30px;
}

.testimonial-card-items121 .testimonial-items-top p {
  font-size: 18px;
  line-height: 190%;
  color: #05091D;
  font-weight: 500;
}

@media (max-width: 575px) {
  .testimonial-card-items121 .testimonial-items-top p {
    font-size: 16px;
  }
}

.testimonial-card-items121 .testimonial-items-top .star {
  color: var(--theme2);
  margin-top: 15px;
}

.testimonial-card-items121 .testimonial-items-top::before {
  position: absolute;
  content: "";
  right: 41px;
  bottom: -1px;
  width: 81px;
  height: 1px;
  background-color: transparent;
  transform-origin: bottom left;
  transform: rotate(30deg);
  z-index: 1;
}

.testimonial-card-items121 .testimonial-items-top:after {
  position: absolute;
  content: "";
  right: 50px;
  bottom: -41.5px;
  width: 72px;
  height: 42px;
  background-color: inherit;
  border-right: 1px solid transparent;
  -webkit-clip-path: polygon(100% 0, 0 0, 100% 100%);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.testimonial-card-items121 .client-info-items .client-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid #8FB26B;
}

.testimonial-card-items121:hover .testimonial-items-top {
  background-color: #FFFFFF;
  border: 1px solid var(--border);
}

.testimonial-card-items121:hover .testimonial-items-top:after {
  border-right: 1px solid var(--border);
}

.testimonial-card-items121:hover .testimonial-items-top::before {
  background-color: var(--border);
}








/*------ News Page Styles -----*/

.mw-news-wrapper .mw-news-items {
  border: 1px solid hsl(0, 0%, 89%);
  padding: 30px;
  border-radius: 16px;
}
.mw-news-wrapper .mw-news-items:not(:last-child) {
  margin-bottom: 30px;
}
.mw-news-wrapper .mw-news-items .thumb {
  position: relative;
}
.mw-news-wrapper .mw-news-items .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.mw-news-wrapper .mw-news-items .content {
  margin-top: 30px;
}
.mw-news-wrapper .mw-news-items .content .post-cat {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
}

.mw-news-wrapper .mw-news-items .content .post-cat li i {
  color: #8FB26B;
  margin-right: 5px;
}

.mw-news-wrapper .mw-news-items .content h3 {
  font-size: 30px;
}

.mw-news-wrapper .mw-news-items .content h3 a:hover {
  color: #8FB26B;
}

.mw-news-wrapper .mw-news-items .content .main-button {
  margin-top: 40px;
}

.mw-news-details-wrapper {
  padding-bottom: 80px;
}

.mw-news-details-wrapper .mw-news-details-image {
  margin-bottom: 15px;
}

.mw-news-details-wrapper .mw-news-details-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.mw-news-details-content h2 {
  font-size: 48px;
  margin-bottom: 5px;
}

.mw-news-details-content ul li {
  list-style: disc;
  margin-left: 50px;
}

.mw-news-details-post-list li i {
  color: #8FB26B;
  margin-right: 5px;
}

.mw-news-details-content p {
  margin-bottom: 10px;
}

@media (max-width: 595px) {
  .mw-news-details-section {
    padding: 30px 10px !important;
  }
}

@media (max-width: 595px) {
  .mw-news-details-content h2 {
    font-size: 36px;
    margin-bottom: 5px;
  }
}

@media (max-width: 575px) {
  .mw-news-wrapper .mw-news-items .content h3 {
    font-size: 20px;
  }
}









/*------ Podcast Page Styles -----*/

.mw-podcast-wrapper .mw-podcast-items {
  border: 1px solid hsl(0, 0%, 89%);
  padding: 30px;
  border-radius: 16px;
}
.mw-podcast-wrapper .mw-podcast-items:not(:last-child) {
  margin-bottom: 30px;
}
.mw-podcast-wrapper .mw-podcast-items .thumb {
  position: relative;
}
.mw-podcast-wrapper .mw-podcast-items .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.mw-podcast-wrapper .mw-podcast-items .content {
  margin-top: 30px;
}
.mw-podcast-wrapper .mw-podcast-items .content .post-cat {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
}

.mw-podcast-wrapper .mw-podcast-items .content .post-cat li i {
  color: #8FB26B;
  margin-right: 5px;
}

.mw-podcast-wrapper .mw-podcast-items .content h3 {
  font-size: 30px;
}

.mw-podcast-wrapper .mw-podcast-items .content h3 a:hover {
  color: #8FB26B;
}

.mw-podcast-wrapper .mw-podcast-items .content .main-button {
  margin-top: 40px;
}

.mw-podcast-details-wrapper {
  padding-bottom: 80px;
}

.mw-podcast-details-wrapper .mw-podcast-details-image {
  margin-bottom: 15px;
}

.mw-podcast-details-wrapper .mw-podcast-details-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.mw-podcast-details-content h2 {
  font-size: 48px;
  margin-bottom: 5px;
}

.mw-podcast-details-content ul li {
  list-style: disc;
  margin-left: 50px;
}

.mw-podcast-details-post-list li i {
  color: #8FB26B;
  margin-right: 5px;
}

.mw-podcast-details-content p {
  margin-bottom: 10px;
}

@media (max-width: 595px) {
  .mw-podcast-details-section {
    padding: 30px 10px !important;
  }
}

@media (max-width: 595px) {
  .mw-podcast-details-content h2 {
    font-size: 36px;
    margin-bottom: 5px;
  }
}

@media (max-width: 575px) {
  .mw-podcast-wrapper .mw-podcast-items .content h3 {
    font-size: 20px;
  }
}







.main-button .mw-modal-btn {
  position: relative;
  z-index: 2;
  display: inline-block;
  border: none;
  text-transform: capitalize;
  text-align: center;
  background-color: #8FB26B;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  padding: 19.5px 35px;
  border-radius: 999px;
  font-family: "Special Gothic", sans-serif;
}

.main-button:hover .mw-modal-btn {
  background-color: #F99002;
  transition: all 0.4s ease-in-out;
}







/*------ Company Page Styles -----*/

.company-pg-section {
  padding: 60px 20px;
}

.company-pg-container h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: #657F4A;
  line-height: 100%;
  text-transform: uppercase;
}

.company-pg-container h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 400;
}

.company-pg-container p {
  font-size: 22px;
  color: #05091D;
  line-height: 150%;
  margin-bottom: 15px;
}

.company-pg-text.mw-what-we-do {
  padding-top: 100px;
}

.mw-mission-vision {
  margin-top: 60px;
}


@media (max-width: 575px) {
.company-pg-container {
	text-align: center;
  }
}

@media (max-width: 575px) {
.company-pg-text.mw-what-we-do {
	padding: 0px !important;
  }
}

@media (max-width: 575px) {
.company-pg-text {
	padding-top: 0px !important;
	text-align: center;
  }
}

@media (max-width: 575px) {
.company-pg-container h3 {
	font-size: 36px;
  }
}

@media (max-width: 575px) {
.company-pg-container h4 {
	font-size: 28px;
  }
}

@media (max-width: 575px) {
.company-pg-container p {
	font-size: 18px;
  }
}

@media (max-width: 575px) {
.company-pg-img {
	width: 80%;
	margin-top: 20px;
  }
}












/*------ Contact Page Styles -----*/

.contact-section {
  background-color: var(--black);
}

.contact-section .contact-wrapper .contact-info {
  margin-top: 25px;
}

.contact-section .contact-wrapper .contact-info li {
  color: #FFFFFF;
  font-size: 22px;
  font-family: "Roboto", serif;
  font-weight: 600;
}

.contact-section .contact-wrapper .contact-info li a {
  color: #FFFFFF;
}

.contact-section .contact-wrapper .contact-info li:not(:last-child) {
  margin-bottom: 25px;
}

.contact-section .contact-wrapper .contact-info li span {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Special Gothic", sans-serif;
  font-weight: 400;
  display: block;
  margin-bottom: 20px;
}

.contact-section .contact-wrapper .contact-info li span i {
  color: #FFFFFF;
  margin-right: 6px;
}

.contact-section .contact-wrapper .contact-form-items {
  border-radius: 20px;
  background: #171A2B;
  padding: 45px 40px;
}

.contact-section .contact-wrapper .contact-form-items .form-clt span {
  display: block;
  font-size: 20px;
  color: #FFFFFF;
  font-weight: 600;
  padding-bottom: 15px;
}

.contact-section .contact-wrapper .contact-form-items .form-clt .nice-select {
  font-size: 16px;
  text-transform: capitalize;
  border-radius: 0;
  background-color: transparent;
  border: none;
  box-shadow: none;
  border-radius: 20px;
  font-family: "Special Gothic", sans-serif;
  color: var(--text);
  font-weight: 400;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 18px 30px;
  height: initial;
  font-weight: 400;
  height: initial;
  line-height: initial;
}

.contact-section .contact-wrapper .contact-form-items .form-clt .nice-select::after {
  right: 30px;
  border-bottom: 1px solid #8FB26B;
  border-right: 1px solid #8FB26B;
  width: 9px;
  height: 9px;
  top: 33%;
  margin-top: 0;
}

.contact-section .contact-wrapper .contact-form-items .form-clt .nice-select .list {
  background-color: #FFFFFF;
  z-index: 99;
  width: 100%;
}

.contact-section .contact-wrapper .contact-form-items .form-clt .nice-select span {
  padding-bottom: 0 !important;
  font-size: 16px;
  font-weight: 400;
}

.contact-section .contact-wrapper .contact-form-items .form-clt input, .contact-section .contact-wrapper .contact-form-items .form-clt textarea {
  width: 100%;
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 16px 30px;
  line-height: 1;
  color: #FFFFFF;
  background-color: transparent;
}

.contact-section .contact-wrapper .contact-form-items .form-clt input::placeholder, .contact-section .contact-wrapper .contact-form-items .form-clt textarea::placeholder {
  color: #FFFFFF;
}

.contact-section .contact-wrapper .contact-form-items .form-clt textarea {
  padding-bottom: 85px;
}

.contact-section .contact-wrapper .contact-form-items .content-btn {
  position: relative;
  z-index: 2;
  display: inline-block;
  border: none;
  text-transform: capitalize;
  text-align: center;
  background-color: #8FB26B;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  padding: 19.5px 35px;
  border-radius: 999px;
  font-family: "Special Gothic", sans-serif;
  width: 100%;
  transition: all 0.4s ease-in-out;
}

.contact-section .contact-wrapper .contact-form-items .content-btn i {
  font-size: 14px;
  padding-left: 10px;
  transform: rotate(-40deg);
  display: inline-block;
}

.contact-section .contact-wrapper .contact-form-items .content-btn:hover {
  background-color: #FFFFFF;
  color: #05091D;
}


.contact-us-wrapper .contact-form-items {
  margin-top: 40px;
}

.contact-us-wrapper .contact-form-items .form-clt {
  position: relative;
}

.contact-us-wrapper .contact-form-items .form-clt .icon {
  position: absolute;
  left: 30px;
  top: 18px;
  color: #8FB26B;
}

.contact-us-wrapper .contact-form-items .form-clt input, .contact-us-wrapper .contact-form-items .form-clt textarea {
  width: 100%;
  outline: none;
  border: 1px solid #CCCCCC;
  border-radius: 20px;
  padding: 18px 30px;
  line-height: 1;
  color: var(--text);
  background-color: transparent;
}

.contact-us-wrapper .contact-form-items .form-clt input::placeholder, .contact-us-wrapper .contact-form-items .form-clt textarea::placeholder {
  color: var(--text);
}

.contact-us-wrapper .contact-form-items .form-clt textarea {
  padding-bottom: 85px;
  border-radius: 20px;
}

.contact-us-wrapper .contact-form-items .form-clt .nice-select {
  padding: 0;
  font-size: 16px;
  text-transform: capitalize;
  border-radius: 0;
  background-color: transparent;
  border: none;
  box-shadow: none;
  font-size: 16px;
  font-family: "Special Gothic", sans-serif;
  color: var(--text);
  font-weight: 400;
  border: 1px solid #CCCCCC;
  border-radius: 20px;
  padding: 18px 30px;
  height: initial;
  height: initial;
  line-height: initial;
}

.contact-us-wrapper .contact-form-items .form-clt .nice-select::after {
  right: 30px;
  border-bottom: 1px solid #8FB26B;
  border-right: 1px solid #8FB26B;
  width: 9px;
  height: 9px;
  top: 33%;
  margin-top: 0;
}

.contact-us-wrapper .contact-form-items .form-clt .nice-select .list {
  background-color: #FFFFFF;
  z-index: 99;
  width: 100%;
}

.contact-us-wrapper .contact-form-items .content-btn {
  position: relative;
  z-index: 2;
  display: inline-block;
  border: none;
  text-transform: capitalize;
  text-align: center;
  background-color: #8FB26B;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  padding: 19.5px 35px;
  border-radius: 999px;
  font-family: "Special Gothic", sans-serif;
  width: 100%;
  transition: all 0.4s ease-in-out;
}

.contact-us-wrapper .contact-form-items .content-btn i {
  font-size: 14px;
  padding-left: 10px;
  transform: rotate(-40deg);
  display: inline-block;
}

.contact-us-wrapper .contact-form-items .content-btn:hover {
  background-color: #05091D;
  color: #FFFFFF;
}

.contact-form-container {
  text-align: center;
	margin: 60px 0px 100px 0px;
}

.contact-header-text h2 {
  font-size: 30px;
  font-weight: normal;
  margin-bottom: 80px;
  line-height: 120%;
  text-transform: none;
}

.contact-box {
  width: 800px;
  margin: 0px auto;
}

.contact-form-img {
  margin-bottom: -1px;
}

@media (max-width: 767px) {
.contact-box {
  width: 100%;
  padding: 30px !important;
 }
}

@media (max-width: 767px) {
.contact-form-img {
  max-width: 80% !important;
 }
}

  @media (max-width: 767px) {
    .contact-us-wrapper .contact-form-items .form-clt .nice-select {
      border-radius: 10px;
    }
  }

.nice-select .current {
  font-size: 18px;
}

.contact-submit-btn {
  width: 180px !important;
}

.contact-submit-btn:hover {
  background-color: #FAA128 !important;
}

.contact-us-wrapper .contact-box {
  border-radius: 50px;
  padding: 50px;
  border: solid 3px #590D0D;
}



.mw-form-horiz {
  margin-top: 50px;
}

.mw-form-single-select-label {
  text-align: left;
  margin-bottom: 5px;
}

.form-radio-text {
  text-align: left;
}

.form-radio {
  display: flex;
}

.form-radio input {
  width: 1em !important;
}

.form-radio label {
  margin-left: 5px;
}

.mw-form-submit {
  margin-top: 50px;
}












/*------ Privacy Statement Page Styles -----*/

.privacy-pg-container {
  padding: 30px 0px 80px 0px;
}

.privacy-pg-container h3 {
  font-size: 32px;
  line-height: 100%;
}

.privacy-pg-container h4 {
  font-size: 24px;
	margin-top: 20px;
}

.privacy-pg-container .sub-text {
  color: #999999;
}

.privacy-pg-container p {
  color: #05091D;
  margin-bottom: 10px;
}

.privacy-pg-container a {
  color: #8FB26B;
}

.privacy-pg-container a:hover {
	text-decoration: underline;
}

@media (max-width: 575px) {
  .privacy-pg-container {
    padding: 0px 20px;
  }
}








/*------ Terms & Conditions Page Styles -----*/

.terms-pg-container {
  padding: 30px 0px 80px 0px;
}

.terms-pg-container h3 {
  font-size: 32px;
  line-height: 100%;
}

.terms-pg-container h4 {
  font-size: 24px;
	margin-top: 20px;
}

.terms-pg-container .sub-text {
  color: #999999;
}

.terms-pg-container p {
  color: #05091D;
  margin-bottom: 10px;
}

.terms-pg-container a {
  color: #8FB26B;
}

.terms-pg-container a:hover {
	text-decoration: underline;
}

.terms-pg-text-indent {
  width: 90%;
  margin: auto;
  padding-bottom: 10px;
}

@media (max-width: 575px) {
  .terms-pg-container {
    padding: 0px 20px;
  }
}


  









/*------ Thank You Page Styles -----*/

.thank-you-container {
  text-align: center;
  padding: 60px 0px 100px 0px;
}

.thank-you-text {
  margin-top: 40px;
}

.thank-you-text h2 {
  color: #657F4A;
  text-transform: uppercase;
  font-weight: 700;
}

.thank-you-text p {
  font-family: "Roboto", sans-serif;
  font-size: 38px;
  font-weight: 100;
  line-height: 110%;
  color: #333;
}

@media (max-width: 595px) {
  .thank-you-text p {
    font-size: 24px;
  }
}








/*------ Solutions Page Styles -----*/

.solutions-pg-container {
  padding: 100px 0px;
}

.solutions-pg-hdr-title h2 {
  font-size: 44px;
  padding-top: 8px;
}

.solutions-pg-text p {
  margin-bottom: 15px;
}

.solutions-pg-text ol li {
  margin-left: 25px;
}

.solutions-pg-text ul li {
  list-style: disc;
  margin-left: 50px;
}

.solutions-pg-hdr {
  display: flex;
  margin-bottom: 20px;
}

.solutions-pg-hdr-trademark {
  width: 170px;
  padding-right: 15px;
}

.solutions-pg-text-aside {
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 20px;;
  background-color: #E0E0E0;
}

.solutions-pg-text-aside h4 {
  font-size: 24px;
  font-weight: bold;
}







/*------ Footer Section Styles -----*/

.footer-column-rt {
  text-align: right;
}

.footer-column-rt h4 {
  color: #888;
  font-size: 38px;
  line-height: 110%;
	text-transform: none;
}

.footer-button {
  float: right;
  margin-top: 15px;
}

.ftr-contact-btn {
  font-size: 18px !important;
  padding: 20px 30px !important;
  background-color: #8FB26B !important;
}

.content-btn.ftr-contact-btn:hover {
  background-color: #F99002 !important;
}

.footer-nav-links li a {
  font-size: 16px;
  font-weight: 700;
  color: #274C03;
}

.footer-nav-links li a:hover {
	text-decoration: underline;
}

.footer-nav-links li span a {
  font-size: 14px;
  font-weight: normal;
  color: #999;
}

.footer-nav-links li span a:hover {
  color: #8FB26B;
}

@media (max-width: 575px) {
  .footer-widget-wrapper .single-footer-widget {
    text-align: center;
  }
}

@media (max-width: 575px) {
  .footer-button {
	  float: none;
  }
}

@media (max-width: 575px) {
  .footer-button a {
	  margin: 0px auto;
  }
}

.footer-logo-area {
  padding: 60px 0px 20px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #CCC;
}

.footer-logo-area .social-icon {
  gap: 30px;
  font-size: 30px;
}

.footer-logo-area .social-icon a {
  color: #8FB26B;
}

.footer-logo-area .social-icon a:hover {
  color: #05091D;
}

.footer-widget-wrapper {
  padding: 0px 0px 30px 0px;
}

.footer-widget-wrapper .single-footer-widget {
  margin-top: 30px;
}

.footer-widget-wrapper .single-footer-widget .wid-title {
  margin-bottom: 20px;
}

.footer-widget-wrapper .single-footer-widget .wid-title h3 {
  line-height: 1;
}

.footer-widget-wrapper .single-footer-widget .footer-content .footer-contact li {
  font-size: 16px;
  color: #05091D; 
}

.footer-widget-wrapper .single-footer-widget .footer-content .footer-contact li span {
  display: block;
  font-size: 16px;
  font-family: "Roboto", serif;
  margin-top: 10px;
  color: #274C03;
}

.footer-widget-wrapper .single-footer-widget .footer-content .footer-contact li span a {
  color: #274C03;
}

.footer-widget-wrapper .single-footer-widget .footer-content .footer-contact li span a:hover {
	text-decoration: underline;
}

.footer-widget-wrapper .single-footer-widget .footer-content .footer-contact li:not(:last-child) {
  margin-bottom: 20px;
}

.footer-widget-wrapper .single-footer-widget .footer-content .footer-input {
  position: relative;
  margin-bottom: 25px;
  margin-top: 20px;
}

.footer-widget-wrapper .single-footer-widget .footer-content .footer-input input {
  width: 100%;
  border: none;
  background-color: transparent;
  color: var(--text);
  position: relative;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}

.footer-widget-wrapper .single-footer-widget .footer-content .footer-input input::placeholder {
  color: var(--text);
}

.footer-widget-wrapper .single-footer-widget .footer-content .footer-input .newsletter-button {
  position: absolute;
  right: 0;
  top: 0;
  color: #8FB26B;
}

.footer-widget-wrapper .single-footer-widget .footer-content .social-icon {
  gap: 17px;
}

.footer-widget-wrapper .single-footer-widget .footer-content .social-icon a {
  width: 40px;
  height: 40px;
  border: 1px solid #8FB26B;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  display: inline-block;
}

.footer-widget-wrapper .single-footer-widget .footer-content .social-icon a:hover {
  background-color: #8FB26B;
  color: #FFFFFF;
}

.footer-widget-wrapper .single-footer-widget .list-items li {
  transition: all 0.4s ease-in-out;
  font-weight: 400;
}

.footer-widget-wrapper .single-footer-widget .list-items li:not(:last-child) {
  margin-bottom: 15px;
}

.footer-widget-wrapper .single-footer-widget .list-items li a {
  position: relative;
  padding-left: 20px;
  color: #7A7A7A;
}

.footer-widget-wrapper .single-footer-widget .list-items li a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--text);
  transition: all 0.4s ease-in-out;
}

.footer-widget-wrapper .single-footer-widget .list-items li:hover a {
  color: #8FB26B;
}

.footer-widget-wrapper .single-footer-widget .list-items li:hover a::after {
  background-color: #8FB26B;
}

.footer-bottom {
  position: relative;
  z-index: 9;
}

.footer-bottom .footer-wrapper {
  position: relative;
  z-index: 9;
  border-top: 1px solid rgba(5, 9, 29, 0.2);
  padding-top: 30px;
  font-size: 12px;
}

.footer-trademark-container {
  font-size: 12px;
  padding: 10px 0px;
  color: #7A7A7A;
  line-height: 115%;
}

@media (max-width: 991px) {
  .footer-bottom .footer-wrapper {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center !important;
  }
}

@media (max-width: 991px) {
  .footer-trademark-container {
    text-align: center;
  }
}



.footer-bottom .footer-wrapper p {
  color: #7A7A7A;
}

.footer-bottom .footer-wrapper p a {
  color: #8FB26B;
}

.footer-bottom .footer-wrapper .footer-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 991px) {
  .footer-bottom .footer-wrapper .footer-menu {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center !important;
  }
}

.footer-bottom .footer-wrapper .footer-menu li a {
  color: #8FB26B;
  background-image: linear-gradient(#05091D, #05091D);
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline-block;
  transition: all 0.4s ease-in-out;
}

.footer-bottom .footer-wrapper .footer-menu li a:hover {
  background-size: 100% 1px;
  color: #05091D;
}

.footer-section-3 {
  margin: 0 180px;
  border-radius: 40px;
  margin-bottom: 30px;
}

@media (max-width: 1600px) {
  .footer-section-3 {
    margin: 0 0;
  }
}

.footer-widget-wrapper-3 {
  padding: 30px 0px;
}

.footer-widget-wrapper-3 .footer-widget-single {
  margin-top: 30px;
}

.footer-widget-wrapper-3 .footer-widget-single .footer-head {
  margin-bottom: 30px;
}

.footer-widget-wrapper-3 .footer-widget-single .footer-head h3 {
  font-size: 22px;
  font-weight: 600;
}

.footer-widget-wrapper-3 .footer-widget-single .footer-input {
  margin-top: 30px;
  display: flex;
  align-items: center;
}

@media (max-width: 1399px) {
  .footer-widget-wrapper-3 .footer-widget-single .footer-input {
    flex-wrap: wrap;
    gap: 10px;
  }
}

.footer-widget-wrapper-3 .footer-widget-single .footer-input input {
  border: none;
  width: 100%;
  background-color: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0 30px;
  height: 50px;
  line-height: 50px;
  color: var(--text);
}

.footer-widget-wrapper-3 .footer-widget-single .footer-input .plane-icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme3);
  color: #FFFFFF;
  transition: all 0.4s ease-in-out;
  flex-basis: 14%;
}

@media (max-width: 1399px) {
  .footer-widget-wrapper-3 .footer-widget-single .footer-input .plane-icon {
    flex-basis: initial;
  }
}

.footer-widget-wrapper-3 .footer-widget-single .footer-input .plane-icon:hover {
  background-color: #05091D;
}

.footer-widget-wrapper-3 .footer-widget-single .social-icon {
  gap: 17px;
  margin-top: 35px;
}

.footer-widget-wrapper-3 .footer-widget-single .social-icon a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  background-color: #FFFFFF;
  color: #05091D;
}

.footer-widget-wrapper-3 .footer-widget-single .social-icon a:hover {
  background-color: var(--theme3);
  color: #FFFFFF;
}

.footer-widget-wrapper-3 .footer-widget-single .footer-contact li {
  font-size: 18px;
  color: var(--text);
}

.footer-widget-wrapper-3 .footer-widget-single .footer-contact li:not(:last-child) {
  margin-bottom: 15px;
}

.footer-widget-wrapper-3 .footer-widget-single .footer-contact li a {
  color: var(--text);
}

.footer-widget-wrapper-3 .footer-widget-single .list-items li {
  transition: all 0.4s ease-in-out;
  font-weight: 400;
}

.footer-widget-wrapper-3 .footer-widget-single .list-items li:not(:last-child) {
  margin-bottom: 15px;
}

.footer-widget-wrapper-3 .footer-widget-single .list-items li a {
  position: relative;
  color: #7A7A7A;
}

.footer-widget-wrapper-3 .footer-widget-single .list-items li:hover a {
  color: var(--theme3);
}

.footer-widget-wrapper-3 .footer-widget-single .list-items li:hover a::after {
  background-color: var(--theme3);
}

.footer-widget-wrapper-22 {
  padding: 50px 0 80px;
}

.footer-widget-wrapper-22 .footer-widget-items-2 {
  margin-top: 30px;
}

.footer-widget-wrapper-22 .footer-widget-items-2 .widget-head {
  margin-bottom: 30px;
}

.footer-widget-wrapper-22 .footer-widget-items-2 .widget-head h3 {
  font-size: 74px;
  line-height: 1;
  font-weight: 500;
}

@media (max-width: 767px) {
  .footer-widget-wrapper-22 .footer-widget-items-2 .widget-head h3 {
    font-size: 60px;
  }
}

@media (max-width: 575px) {
  .footer-widget-wrapper-22 .footer-widget-items-2 .widget-head h3 {
    font-size: 45px;
  }
}

.footer-widget-wrapper-22 .footer-widget-items-2 .footer-input {
  position: relative;
  margin-bottom: 25px;
  margin-top: 20px;
}

.footer-widget-wrapper-22 .footer-widget-items-2 .footer-input input {
  width: 100%;
  border: none;
  background-color: transparent;
  color: var(--text);
  position: relative;
  border: 1px solid var(--border);
  padding: 10px 30px;
  border-radius: 999px;
}

.footer-widget-wrapper-22 .footer-widget-items-2 .footer-input input::placeholder {
  color: var(--text);
}

.footer-widget-wrapper-22 .footer-widget-items-2 .footer-input .newsletter-button {
  position: absolute;
  right: 0;
  top: 0;
  color: #8FB26B;
  border-radius: 0px 999px 999px 0px;
  background: #FFAA17;
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: #05091D;
}

.footer-widget-wrapper-22 .footer-widget-items-2 .social-icon {
  gap: 17px;
}

.footer-widget-wrapper-22 .footer-widget-items-2 .social-icon a {
  width: 40px;
  height: 40px;
  background-color: #FFFFFF;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  display: inline-block;
}

.footer-widget-wrapper-22 .footer-widget-items-2 .social-icon a:hover {
  background-color: var(--theme2);
  color: #05091D;
}

.footer-widget-wrapper-22 .footer-widget-items-2 .footer-list-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-widget-wrapper-22 .footer-widget-items-2 .footer-list-area .contact-list-2 h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}

.footer-widget-wrapper-22 .footer-widget-items-2 .footer-list-area .contact-list-2 br {
  display: block !important;
}

.footer-widget-wrapper-22 .footer-widget-items-2 .footer-list-area .contact-list-2 ul li:not(:last-child) {
  margin-bottom: 15px;
}

.footer-widget-wrapper-22 .footer-widget-items-2 .footer-list-area .contact-list-2 ul li a {
  color: var(--text);
}

.footer-section {
  position: relative;
  overflow: hidden;
  z-index: 9;
}

.footer-section .color-shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media (max-width: 1399px) {
  .footer-section .color-shape {
    display: none;
  }
}

.footer-section .color-shape-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

@media (max-width: 1399px) {
  .footer-section .color-shape-2 {
    display: none;
  }
}

@media (max-width: 1199px) {
  .menu-thumb {
    display: none !important;
  }
}