/*
Theme Name: FEINUO Oraxis
Author: ModinaTheme
Author URI: https://themeforest.net/user/modinatheme/
Description: Architecture & Interior Html Template
Version: 1.0.0
*/
/*CSS Table Of Content Ends Here*/
@import url("css2.css");
:root {
  --body: #fff;
  --black: #000;
  --white: #fff;
  --theme: #A6A182;
  --theme-2: #A6A182;
  --header: #2b2b2b;
  --base: #00813D;
  --text: #54595F;
  --text2: #bfbfbf;
  --border: #E6E6E6;
  --border2: #373737;
  --ratting: #F8BC26;
  --bg: #F8F8F8;
  --bg2: #0D0D0D;
  --color-gradient-1: linear-gradient(to left, #fd4a81, #ff5e73, #ff7269, #ff8662, #fc9860);
  ---color-gradient-2: linear-gradient(to left, #ff8662, #fc9860, #ff7269, #fd4a81, #ff5e73);
  ---box-shadow: 0px 6px 25px rgba(0, 0, 0, 0.05);
}
.main{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


.theme-btn {
  background-color: var(--theme);
  color: var(--white);
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  padding: 22px 40px;
  border-radius: 0;
  letter-spacing: 1.2px;
  line-height: 1;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
  border-radius: 5px;
}
.theme-btn::before {
  content: "";
  background-color: var(--header);
  width: 0;
  height: 50%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
  border-radius: 5px 5px 0 0;
}
.theme-btn::after {
  content: "";
  background-color: var(--header);
  width: 0;
  height: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
  border-radius: 0 0 5px 5px;
}
.theme-btn i {
  margin-left: 5px;
}
.theme-btn:hover {
  color: var(--white);
}
.theme-btn:hover::before, .theme-btn:hover::after {
  width: 100%;
}
.theme-btn.bg-transparent {
  background-color: transparent;
  border: 1px solid var(--theme);
  color: var(--header);
}
.theme-btn.bg-transparent::before {
  border-radius: 5px 5px 0 0;
  background-color: var(--theme);
}
.theme-btn.bg-transparent::after {
  border-radius: 0 0 5px 5px;
  background-color: var(--theme);
}
.theme-btn.bg-transparent:hover {
  color: var(--white);
}
.theme-btn.padding-style {
  padding: 24px 40px;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .theme-btn.padding-style {
    padding: 18px 32px;
  }
}
@media (max-width: 575px) {
  .theme-btn.padding-style {
    padding: 16px 30px;
    font-size: 14px;
  }
}
.theme-btn.bg-white {
  background-color: var(--white);
  color: var(--header);
}
.theme-btn.bg-white::before, .theme-btn.bg-white::after {
  background-color: var(--header);
}
.theme-btn.bg-white:hover {
  color: var(--white);
}
.theme-btn.radius-none {
  border-radius: 0;
}
.theme-btn.radius-none::before, .theme-btn.radius-none::after {
  border-radius: 0;
}
.theme-btn.hover-white::before, .theme-btn.hover-white::after {
  background-color: var(--white);
}
.theme-btn.hover-white:hover {
  color: var(--header);
}
@media (max-width: 767px) {
  .theme-btn {
    padding: 18px 32px;
  }
}
@media (max-width: 575px) {
  .theme-btn {
    padding: 16px 30px;
    font-size: 14px;
  }
}

.link-btn {
  letter-spacing: 1.2px;
  text-transform: capitalize;
  /* color: var(--header); */
  font-weight: 500;
  display: inline-block;
  font-size: 14px;
}
.link-btn i {
  margin-left: 5px;
}
.link-btn:hover {
  color: var(--theme);
}
.link-btn.white-btn {
  color: var(--white);
}
.link-btn.white-btn:hover {
  color: var(--theme);
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
 *{
  padding: 0;
  margin: 0;
 }


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

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

input:focus {
  color: var(--white);
  outline: none;
}

input {
  color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /* font-family: "", sans-serif; */
  margin: 0px;
  padding: 0;
  color: var(--header);
  /* text-transform: capitalize; */
  transition: all 0.4s ease-in-out;
}

h1 {
  font-size: 68px;
  font-weight: 700;
  line-height: 118%;
}

h2 {
  font-size: 48px;
  line-height: 125%;
  font-weight: 700;
}
@media (max-width: 1199px) {
  h2 {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 32px;
  }
}

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

h4 {
  font-size: 20px;
  font-weight: 600;
}

h5 {
  font-size: 20px;
  font-weight: 600;
}

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

a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}

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

.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(--theme);
  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 "Montserrat", sans-serif, "Montserrat", sans-serif;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          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(--theme);
  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: var(--header);
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  font-family: "Montserrat", sans-serif;
  position: absolute;
  top: -3px;
  transform: rotateY(-90deg);
}
.preloader p {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: var(--theme);
}
.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: #fff;
  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);
}

.back-list a:hover{
  color: var(--theme);
}

/* head */
.main{
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.head{
  width: 60%;
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin: 15px 0;
}
.head-right{
  font-size: 16px;
  color: #C1995B;
}
.nav{
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: rgb(20, 20, 20);
  color: #fff;
}
.nav>ul{
  list-style: none;
  width: 70%;
}
.nav>ul>li a{
  color: #fff;
}
.nav>ul>li{
  width: 10%;
  display: block;
  float: left;
  padding: 20px 0;  
  text-align: center;
  position: relative;
}
.on{
  background-color: #ff6637;
}
.nav >ul>li:hover{
  background-color: #ff6637;
}
.nav>ul>li .submenu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  /* height: 50px; */
  width: 100%;
  /* border: 1px solid #f5f5f5; */
  background: #ff6637;
  margin: 10px 0;
  transform-origin: 0 0;  
  transition: all .3s ease-in-out; 
  visibility: hidden;
  display: block;
  opacity: 0;
  z-index: 10;
}
.nav>ul>li .submenu::before{
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 100%;
  width: 0;
  height: 0;
  padding: 0;
  z-index: 20;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #ff6637; /* 改变颜色可以改变箭头颜色 */
}
 
/* 鼠标悬停样式 */
.has-submenu:hover .submenu {
  visibility: visible;
  opacity: 1;
}
.submenu li{
  width: 100%;
  font-size: 16px;
  height: 35px;
  line-height: 35px;
}
 
.submenu li:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

@media screen and (max-width:1450px){
  .nav>ul>li{
    width: 15%;
    /* font-size: 2px; */
  }
  .nav>ul>li a{
    text-align: center;
  }
  .head{
    font-size: 10px;
  }
}
@media screen and (max-width:620px){
  .nav>ul>li{
    width: 20%;
    font-size: 10px;
  }
  .nav>ul>li a{
    text-align: center;
  }
  .head{
    font-size: 10px;
  }
}

/* banner */
.slider-wrap {
			position: relative;
			width: 100%;
      max-height:800px;
      padding-top: 30%
}
.slider-wrap .slider{
 width:100%;
}
.slider-wrap img{ 
  width: 100%;
  position: absolute;
	top: 0;
	left: 0;
  height: 100%;
  object-fit: cover;
  display: none;
}
.slider img.cur {
	display: block;
}
.yuan {
	position: absolute;
	left: 50%;
	bottom: 40px;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
}
.yuan .yuan-item {
	display: block;
	position: relative;
	float: left;
	width: 18px;
	height: 18px;
	margin-right: 1px;
	cursor: pointer;
}
.yuan .yuan-item::after {
	content: "";
	display: block;
	position: absolute;
	top: 4px;
	left: 4px;
	width: 10px;
	height: 10px;
	border: 2px solid rgba(255, 255, 255, .4);
	border-radius: 50%;
	box-sizing: border-box;
}
.yuan .yuan-item.cur::after {
	background: #fff;
}
.yuan .yuan-item::before {
	content: "";
	display: block;
	width: 18px;
	height: 18px;
	background-color: rgba(255, 255, 255, 0);
	border-radius: 50%;
}
.yuan .yuan-item.cur::before {
	background-color: rgba(255, 255, 255, .2);
}
.btn-group {
  height: 50px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
padding: 0 15px;
	width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.btn-group .btn-left,
.btn-group .btn-right {
	width: 50px;
	height: 50px;
	line-height: 50px;
	font-size: 30px;
	text-align: center;
	color: #fff;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 50%;
	cursor: pointer;
	font-family: "宋体";
}


.anli>div{
  float: left;
  padding: 10px;
}
.anli>div>a>img{
  width: 100%;
  height: 100%;
}

.hr-line {
  border-top: 1px dashed #5c5c5c; /* 设置为虚线，颜色为黑色 */
  width: 80%; /* 设置宽度 */
  margin: 0 auto; /* 水平居中 */
}


.scroll-up {
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  position: fixed;
  right: 25px;
  bottom: 35px;
  height: 50px;
  width: 50px;
  transition: all 0.4s ease-in-out;
}

.scroll-up::after {
  position: absolute;
  font-family: "Font Awesome 5 Pro";
  content: "\f176";
  text-align: center;
  line-height: 50px;
  font-weight: 700;
  font-size: 18px;
  color: var(--theme);
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}

.scroll-up svg path {
  fill: none;
}

.scroll-up svg.scroll-circle path {
  stroke: var(--theme);
  stroke-width: 4px;
  box-sizing: border-box;
  transition: all 0.4s ease-in-out;
}

.scroll-up.active-scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  transform: translateZ(0);
  visibility: hidden;
}
@media (max-width: 767px) {
  .mouse-cursor {
    display: none;
  }
}

.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
  margin-top: -6px;
}
@media (max-width: 767px) {
  .section-title {
    margin-bottom: 0;
  }
}
.section-title span {
  color: var(--theme);
  margin-bottom: 10px;
  display: inline-block;
  font-weight: 600;
  text-transform: capitalize;
  font-size: 18px;
}
.section-title h2 {
  text-transform: capitalize;
}
.section-title h3 {
  font-size: 28px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .section-title br {
    display: none;
  }
}

.section-title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.center {
  text-align: center;
  margin: 0 auto;
}

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

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

.section-padding {
  padding: 120px 0;
}
@media (max-width: 1199px) {
  .section-padding {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }
}
@keyframes rippleOne {
  70% {
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rounded {
  50% {
    transform: rotate(15deg);
  }
}
@keyframes rounded-2 {
  50% {
    transform: rotate(5deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.animation__rotate {
  animation: rotate 40s linear infinite;
}
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}
@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% {
    transform: rotate(20deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
.float-bob-y {
  animation-name: float-bob-y;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes float-bob-y {
  0% {
    transform: translateY(-30px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(-30px);
  }
}
@keyframes top-image-bounce {
  0% {
    transform: translateX(-8px);
  }
  50% {
    transform: translateX(12px);
  }
  100% {
    transform: translateX(-8px);
  }
}
@keyframes top-image-bounce-2 {
  0% {
    transform: translatey(-8px);
  }
  50% {
    transform: translatey(12px);
  }
  100% {
    transform: translatey(-8px);
  }
}
@keyframes toggle {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes moveCursor1 {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(0.8);
  }
}
@keyframes moveCursor2 {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.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;
}


.breadcrumb-wrapper {
  position: relative;
  overflow: hidden;
}
.breadcrumb-wrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.285) 0%, rgba(0, 0, 0, 0.47) 100%);
}
.breadcrumb-wrapper .page-heading {
  position: relative;
  z-index: 9;
  margin-top: 55px;
}
@media (max-width: 1199px) {
  .breadcrumb-wrapper .page-heading {
    margin-top: 35px;
  }
}
@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading {
    text-align: center;
  }
}
.breadcrumb-wrapper .page-heading h1 {
  color: var(--white);
  font-size: 68px;
  position: relative;
  z-index: 9;
  line-height: 1.3;
}
@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 42px;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}
@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items {
    justify-content: center;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li {
  font-size: 16px;
  color: var(--white);
  font-weight: 500;
  text-transform: capitalize;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
  color: var(--white);
  transition: all 0.4s ease-in-out;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
  color: var(--theme);
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li i {
  color: var(--white);
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items li i {
    font-size: 16px;
  }
}

.work-process-items {
  margin-top: 30px;
  padding: 40px;
  background-color: var(--white);
  box-shadow: var(---box-shadow);
  position: relative;
  z-index: 9;
  border-radius: 5px;
}
@media (max-width: 575px) {
  .work-process-items {
    padding: 30px;
  }
}
.work-process-items::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../image/process-bg.jpg);
  z-index: -1;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.work-process-items::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--black);
  z-index: -1;
  opacity: 0.7;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.work-process-items span {
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--black);
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 48px;
  opacity: 0.2;
  margin-bottom: 40px;
  display: inline-block;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .work-process-items span {
    margin-bottom: 20px;
  }
}
.work-process-items h3 {
  margin-bottom: 20px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 20px;
}
.work-process-items .icon {
  margin-top: 25px;
  transition: all 0.4s ease-in-out;
  position: relative;
  z-index: 9;
  font-size: 48px;
  color: var(--black);
}
@media (max-width: 575px) {
  .work-process-items .icon {
    margin-top: 15px;
  }
}
.work-process-items:hover span {
  -webkit-text-stroke-color: var(--white);
  opacity: 1;
}
.work-process-items:hover h3 {
  border-bottom: 2px solid rgba(230, 230, 230, 0.5);
}
.work-process-items:hover h3, .work-process-items:hover p {
  color: var(--white);
}
.work-process-items:hover .icon {
  color: var(--white);
}
.work-process-items:hover::before, .work-process-items:hover::after {
  opacity: 0.7;
  visibility: visible;
}
.work-process-items.active span {
  -webkit-text-stroke-color: var(--white);
  opacity: 1;
}
.work-process-items.active h3 {
  border-bottom: 2px solid rgba(230, 230, 230, 0.5);
}
.work-process-items.active h3, .work-process-items.active p {
  color: var(--white);
}
.work-process-items.active .icon {
  color: var(--white);
}
.work-process-items.active::before, .work-process-items.active::after {
  opacity: 0.7;
  visibility: visible;
}

.achievement-section {
  position: relative;
}
.achievement-section .shape-left {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.1;
}

.achievement-wrapper {
  position: relative;
  z-index: 9;
}
.achievement-wrapper .achievement-content .about-button {
  margin-top: 40px;
}
.achievement-wrapper .counter-area {
  margin-left: 40px;
}
@media (max-width: 1199px) {
  .achievement-wrapper .counter-area {
    margin-left: 0;
  }
}
.achievement-wrapper .counter-area .counter-item {
  background-color: var(--white);
  text-align: center;
  padding: 30px;
}
.achievement-wrapper .counter-area .counter-item .icon {
  color: var(--theme);
  font-size: 48px;
}
.achievement-wrapper .counter-area .counter-item .content {
  margin-top: 20px;
}
.achievement-wrapper .counter-area .counter-item .content h2 {
  font-size: 48px;
  color: var(--header);
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .achievement-wrapper .counter-area .counter-item .content h2 {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .achievement-wrapper .counter-area .counter-item .content h2 {
    font-size: 32px;
  }
}

.work-process-wrapper .section-title h2 {
  font-size: 68px;
}
@media (max-width: 1399px) {
  .work-process-wrapper .section-title h2 {
    font-size: 62px;
  }
}
@media (max-width: 1199px) {
  .work-process-wrapper .section-title h2 {
    font-size: 58px;
  }
}
@media (max-width: 991px) {
  .work-process-wrapper .section-title h2 {
    font-size: 48px;
  }
}
@media (max-width: 767px) {
  .work-process-wrapper .section-title h2 {
    font-size: 42px;
  }
}
@media (max-width: 575px) {
  .work-process-wrapper .section-title h2 {
    font-size: 32px;
  }
}
.work-process-wrapper .section-title h2 span {
  font-size: 68px;
  font-weight: 700;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--white);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--white);
  -webkit-text-fill-color: transparent;
}
@media (max-width: 1399px) {
  .work-process-wrapper .section-title h2 span {
    font-size: 62px;
  }
}
@media (max-width: 1199px) {
  .work-process-wrapper .section-title h2 span {
    font-size: 58px;
  }
}
@media (max-width: 991px) {
  .work-process-wrapper .section-title h2 span {
    font-size: 48px;
  }
}
@media (max-width: 767px) {
  .work-process-wrapper .section-title h2 span {
    font-size: 42px;
  }
}
@media (max-width: 575px) {
  .work-process-wrapper .section-title h2 span {
    font-size: 32px;
  }
}
.work-process-wrapper .work-process-items-2 {
  margin-top: 30px;
}
.work-process-wrapper .work-process-items-2 .work-process-content {
  position: relative;
}
.work-process-wrapper .work-process-items-2 .work-process-content h3 {
  color: var(--white);
  border-bottom: 1px solid var(--text);
  padding-bottom: 30px;
}
.work-process-wrapper .work-process-items-2 .work-process-content .number {
  font-weight: 700;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--white);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--white);
  -webkit-text-fill-color: transparent;
  font-size: 68px;
  opacity: 0.2;
  position: absolute;
  top: -30px;
  right: 0;
}
@media (max-width: 575px) {
  .work-process-wrapper .work-process-items-2 .work-process-content .number {
    font-size: 48px;
    top: -20px;
  }
}
.work-process-wrapper .work-process-items-2 .work-process-content p {
  padding-top: 30px;
  color: var(--white);
}
@media (max-width: 575px) {
  .work-process-wrapper .work-process-items-2 .work-process-content p {
    padding-top: 20px;
  }
}
.work-process-wrapper.style-2 .section-title h2 {
  color: var(--header) !important;
}
.work-process-wrapper.style-2 .work-process-items-2 {
  margin-top: 30px;
}
.work-process-wrapper.style-2 .work-process-items-2 .work-process-content {
  position: relative;
}
.work-process-wrapper.style-2 .work-process-items-2 .work-process-content h3 {
  color: var(--header);
}
.work-process-wrapper.style-2 .work-process-items-2 .work-process-content .number {
  -webkit-text-stroke-color: var(--black);
}
.work-process-wrapper.style-2 .work-process-items-2 .work-process-content p {
  color: var(--text);
}


.about-wrapper {
  margin-top: 45px;
}
.about-wrapper .about-left-items {
  position: relative;
}
.about-wrapper .about-left-items .dot-shape {
  position: absolute;
  bottom: 55px;
  right: 20px;
}
.about-wrapper .about-left-items .about-counter-items {
  background-color: var(--theme);
  padding: 50px 45px;
  border-radius: 5px;
  height: 100%;
}
@media (max-width: 575px) {
  .about-wrapper .about-left-items .about-counter-items {
    padding: 30px;
    text-align: center;
  }
}
.about-wrapper .about-left-items .about-counter-items h2 {
  color: var(--white);
}
.about-wrapper .about-left-items .about-counter-items h5 {
  color: var(--white);
  margin-top: 15px;
}
.about-wrapper .about-left-items .about-image-1 img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}
.about-wrapper .about-left-items .about-image-2 {
  max-width: 480px;
  height: 300px;
  border-radius: 5px;
  position: relative;
}
@media (max-width: 991px) {
  .about-wrapper .about-left-items .about-image-2 {
    max-width: 800px;
  }
}
.about-wrapper .about-left-items .about-image-2 .client-items {
  padding: 12px 20px;
  background-color: var(--white);
  box-shadow: var(---box-shadow);
  display: flex;
  align-items: center;
  gap: 20px;
  position: absolute;
  top: 40px;
  right: -90px;
  border-radius: 5px;
}
.about-wrapper .about-left-items .about-image-2 .client-items .clinet-img {
  width: 63px;
  height: 63px;
  border-radius: 50%;
}
@media (max-width: 1199px) {
  .about-wrapper .about-left-items .about-image-2 .client-items {
    right: -30px;
  }
}
@media (max-width: 991px) {
  .about-wrapper .about-left-items .about-image-2 .client-items {
    right: 0;
  }
}
.about-wrapper .about-content {
  margin-left: 40px;
}
@media (max-width: 991px) {
  .about-wrapper .about-content {
    margin-left: 0;
  }
}
@media (max-width: 1199px) {
  .about-wrapper .about-content br {
    display: none;
  }
}
.about-wrapper .about-content .about-button {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .about-wrapper .about-content .about-button {
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .about-wrapper .about-content .about-button {
    margin-top: 20px;
  }
}
.about-wrapper .about-content.style-3 .icon-items {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 575px) {
  .about-wrapper .about-content.style-3 .icon-items {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.about-wrapper .about-content.style-3 .icon-items .icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  background-color: var(--bg2);
  text-align: center;
}
.about-wrapper .about-content.style-3 .icon-items .content h3 {
  color: var(--white);
  margin-bottom: 5px;
}
.about-wrapper .about-content.style-3 .icon-items .content p {
  color: var(--white);
}
.about-wrapper .about-image-2 img {
  width: 100%;
  height: 100%;
}

.about-wrapper-3 .about-image img {
  width: 100%;
  height: 100%;
}
.about-wrapper-3 .about-content {
  margin-left: 40px;
}
@media (max-width: 1399px) {
  .about-wrapper-3 .about-content {
    margin-left: 15px;
  }
  .about-wrapper-3 .about-content br {
    display: none;
  }
}
@media (max-width: 991px) {
  .about-wrapper-3 .about-content {
    margin-left: 0;
  }
}
.about-wrapper-3 .about-content .about-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 767px) {
  .about-wrapper-3 .about-content .about-list {
    margin-top: 20px;
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .about-wrapper-3 .about-content .about-list {
    margin-top: 15px;
    margin-bottom: 25px;
  }
}
.about-wrapper-3 .about-content .about-list ul li:not(:last-child) {
  margin-bottom: 15px;
}
.about-wrapper-3 .about-content .about-list ul li i {
  color: var(--theme);
  margin-right: 5px;
}
.about-wrapper-3.style-2 .about-image-items .about-image-1 {
  max-width: 490px;
  height: 465px;
  border-radius: 5px;
  margin-left: 100px;
  position: relative;
}
@media (max-width: 991px) {
  .about-wrapper-3.style-2 .about-image-items .about-image-1 {
    margin-left: 0;
  }
}
@media (max-width: 575px) {
  .about-wrapper-3.style-2 .about-image-items .about-image-1 {
    height: 450px;
    max-width: 550px;
  }
}
.about-wrapper-3.style-2 .about-image-items .about-image-1::before {
  position: absolute;
  top: 0;
  left: -30px;
  content: "";
  height: 100%;
  width: 15px;
  border-radius: 5px;
  background-color: var(--theme);
}
.about-wrapper-3.style-2 .about-image-items .about-image-1 .about-image-2 {
  position: absolute;
  bottom: -65px;
  left: -100px;
  max-width: 300px;
}
@media (max-width: 991px) {
  .about-wrapper-3.style-2 .about-image-items .about-image-1 .about-image-2 {
    left: 0;
    bottom: 0;
  }
}
@media (max-width: 767px) {
  .about-wrapper-3.style-2 .about-image-items .about-image-1 .about-image-2 {
    max-width: 250px;
  }
}
@media (max-width: 575px) {
  .about-wrapper-3.style-2 .about-image-items .about-image-1 .about-image-2 {
    max-width: 200px;
  }
}
.about-wrapper-3.style-2 .about-image-items .about-image-1 .about-image-2 img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}
.about-wrapper-3.style-2 .about-content {
  margin-left: 20px;
}
.about-wrapper-3.style-2 .about-content .progress-wrap {
  margin-bottom: 55px;
  margin-top: 30px;
}
.about-wrapper-3.style-2 .about-content .progress-wrap .pro-items:not(:last-child) {
  margin-bottom: 30px;
}
.about-wrapper-3.style-2 .about-content .progress-wrap .pro-items .pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.about-wrapper-3.style-2 .about-content .progress-wrap .pro-items .pro-head .title {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
}
.about-wrapper-3.style-2 .about-content .progress-wrap .pro-items .pro-head .point {
  font-size: 16px;
  font-weight: 500;
  color: var(--theme);
}
.about-wrapper-3.style-2 .about-content .progress-wrap .pro-items .progress {
  background: var(--white);
  justify-content: flex-start;
  border-radius: 5px;
  align-items: center;
  position: relative;
  display: flex;
  height: 6px;
  width: 100%;
  border-radius: 5px;
}
.about-wrapper-3.style-2 .about-content .progress-wrap .pro-items .progress-value {
  animation: load 3s normal forwards;
  border-radius: 0;
  background: var(--theme);
  height: 6px;
  width: 0;
  border-radius: 5px;
}
.about-wrapper-3.style-2 .about-content .progress-wrap .pro-items .style-two {
  animation: load2 3s normal forwards;
}
@keyframes load {
  0% {
    width: 0;
  }
  100% {
    width: 70%;
  }
}
@keyframes load2 {
  0% {
    width: 0;
  }
  100% {
    width: 85%;
  }
}

.service-details-wrapper .service-details-items .service-image img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}
.service-details-wrapper .service-details-items .details-content {
  margin-top: 30px;
}
.service-details-wrapper .service-details-items .details-content h3 {
  font-size: 28px;
}
.service-details-wrapper .service-details-items .details-content .list {
  margin-top: 30px;
  margin-bottom: 40px;
}
.service-details-wrapper .service-details-items .details-content .list li {
  position: relative;
  padding-left: 25px;
}
.service-details-wrapper .service-details-items .details-content .list li::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  content: "";
  background-color: var(--theme);
}
.service-details-wrapper .service-details-items .details-content .list li:not(:last-child) {
  margin-bottom: 10px;
}
.service-details-wrapper .service-details-items .details-content h4 {
  font-size: 24px;
  margin-bottom: 20px;
}
.service-details-wrapper .service-details-items .details-content .list-items {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
.service-details-wrapper .service-details-items .details-content .list-items .d-list li i {
  color: var(--theme);
  margin-right: 5px;
}
.service-details-wrapper .service-details-items .details-content .list-items .d-list li:not(:last-child) {
  margin-bottom: 15px;
}
.service-details-wrapper .service-details-items .details-content .list-items .icon-box {
  padding: 30px 30px;
  text-align: center;
  background-color: var(--bg);
}
.service-details-wrapper .service-details-items .details-content .list-items .icon-box i {
  font-size: 40px;
  color: var(--theme);
  margin-bottom: 20px;
}
.service-details-wrapper .service-details-items .details-content .list-items .icon-box h4 {
  margin-bottom: 5px;
}
.service-details-wrapper .main-sidebar .single-sidebar-widget {
  margin-bottom: 40px;
}
.service-details-wrapper .main-sidebar .single-sidebar-widget .widget-categories ul li {
  padding: 18px 30px;
  background-color: var(--bg);
  font-size: 20px;
  font-weight: 600;
  color: var(--header);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 1199px) {
  .service-details-wrapper .main-sidebar .single-sidebar-widget .widget-categories ul li {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .service-details-wrapper .main-sidebar .single-sidebar-widget .widget-categories ul li {
    font-size: 18px;
  }
}
.service-details-wrapper .main-sidebar .single-sidebar-widget .widget-categories ul li i {
  font-size: 22px;
  color: var(--theme);
  transition: all 0.4s ease-in-out;
}
.service-details-wrapper .main-sidebar .single-sidebar-widget .widget-categories ul li:not(:last-child) {
  margin-bottom: 20px;
}
.service-details-wrapper .main-sidebar .single-sidebar-widget .widget-categories ul li:hover {
  background-color: var(--theme);
  color: var(--white);
}

.service-details-wrapper .main-sidebar .single-sidebar-widget .widget-categories ul li:hover i {
  color: var(--white);
}
.service-details-wrapper .main-sidebar .single-sidebar-widget .widget-categories ul li:hover a {
  color: var(--white);
}
.active{
  background-color: var(--theme) !important;
  color: var(--white) !important;
}
.active i{
  color: var(--white) !important;
}
.active a{
  color: var(--white) !important;
}
.service-details-wrapper .main-sidebar .bg-image {
  max-width: 500px;
  position: relative;
}
@media (max-width: 991px) {
  .service-details-wrapper .main-sidebar .bg-image {
    max-width: 800px;
  }
}
.service-details-wrapper .main-sidebar .bg-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--black);
  opacity: 0.7;
  border-radius: 5px;
}
.service-details-wrapper .main-sidebar .bg-image .contact-text {
  position: relative;
  text-align: center;
  padding: 40px 35px;
  margin: 0 auto;
}
.service-details-wrapper .main-sidebar .bg-image .contact-text .icon {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background-color: var(--theme);
  text-align: center;
  color: var(--white);
  border-radius: 50%;
  margin: 0 auto 20px;
  position: relative;
}
.service-details-wrapper .main-sidebar .bg-image .contact-text p {
  color: var(--white);
}
.service-details-wrapper .main-sidebar .bg-image .contact-text h3 {
  margin-top: 15px;
}
.service-details-wrapper .main-sidebar .bg-image .contact-text h3 a {
  color: var(--white);
}
.service-details-wrapper .main-sidebar .download-service-doc .theme-btn {
  font-size: 22px;
  font-weight: 600;
}
@media (max-width: 1199px) {
  .service-details-wrapper .main-sidebar .download-service-doc .theme-btn {
    font-size: 16px;
    padding: 22px 20px;
  }
}
@media (max-width: 991px) {
  .service-details-wrapper .main-sidebar .download-service-doc .theme-btn {
    font-size: 18px;
  }
}
.service-details-wrapper .main-sidebar .download-service-doc .theme-btn.style-2 {
  text-align: left;
  background-color: var(--bg);
  color: var(--header);
}
.service-details-wrapper .main-sidebar .download-service-doc .theme-btn.style-2 i {
  font-size: 24px;
  margin-right: 15px;
}
@media (max-width: 1199px) {
  .service-details-wrapper .main-sidebar .download-service-doc .theme-btn.style-2 i {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .service-details-wrapper .main-sidebar .download-service-doc .theme-btn.style-2 i {
    font-size: 18px;
  }
}
.service-details-wrapper .main-sidebar .download-service-doc .theme-btn.style-2::before, .service-details-wrapper .main-sidebar .download-service-doc .theme-btn.style-2::after {
  background-color: var(--theme);
}
.service-details-wrapper .main-sidebar .download-service-doc .theme-btn.style-2:hover {
  color: var(--white);
}

.project-details-wrapper .project-details-items .project-image img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}
.project-details-wrapper .project-details-items .project-details-content {
  background-color: var(--bg);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: 5px;
  margin: -150px 40px 0;
  position: relative;
  z-index: 9;
}
@media (max-width: 767px) {
  .project-details-wrapper .project-details-items .project-details-content {
    margin: 0;
    padding: 30px;
  }
}
.project-details-wrapper .project-details-items .project-details-content h2 {
  font-size: 28px;
  margin-bottom: 15px;
}
.project-details-wrapper .project-details-items .project-details-content .d-list {
  margin-top: 20px;
}
.project-details-wrapper .project-details-items .project-details-content .d-list li i {
  color: var(--theme);
  margin-right: 5px;
}
.project-details-wrapper .project-details-items .project-details-content .d-list li:not(:last-child) {
  margin-bottom: 15px;
}
.project-details-wrapper .project-details-items .pro-details-items {
  margin-top: 50px;
}
.project-details-wrapper .project-details-items .pro-details-items .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}
.project-details-wrapper .project-details-items .pro-details-items .pro-details-content-items {
  padding: 40px 30px;
  background-color: var(--bg);
  height: 100%;
}
.project-details-wrapper .project-details-items .pro-details-items .pro-details-content-items .pro-details-cont {
  margin-bottom: 17px;
}
.project-details-wrapper .project-details-items .pro-details-items .pro-details-content-items .pro-details-cont h3 {
  margin-bottom: 15px;
}
.project-details-wrapper .main-sidebar .single-sidebar-widget .project-catagory {
  background-color: var(--bg);
  padding: 30px;
  border-radius: 5px;
}
.project-details-wrapper .main-sidebar .single-sidebar-widget .project-catagory h3 {
  margin-bottom: 10px;
}
.project-details-wrapper .main-sidebar .single-sidebar-widget .project-catagory ul {
  margin-top: 30px;
}
.project-details-wrapper .main-sidebar .single-sidebar-widget .project-catagory ul li {
  font-weight: 600;
  color: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--white);
  padding: 14px 20px;
  font-size: 20px;
  border-radius: 5px;
}
.project-details-wrapper .main-sidebar .single-sidebar-widget .project-catagory ul li:not(:last-child) {
  margin-bottom: 15px;
}
.project-details-wrapper .main-sidebar .single-sidebar-widget .project-catagory ul li span {
  font-weight: 400;
  font-size: 16px;
  color: var(--text);
}
.project-details-wrapper .main-sidebar .single-sidebar-widget .project-catagory .social-icon {
  margin-top: 30px;
  gap: 10px;
}
.project-details-wrapper .main-sidebar .single-sidebar-widget .project-catagory .social-icon a {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 5px;
  background-color: var(--black);
  color: var(--white);
  transition: all 0.4s ease-in-out;
}
.project-details-wrapper .main-sidebar .single-sidebar-widget .project-catagory .social-icon a:hover {
  background-color: var(--theme);
}

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

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--theme);
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--theme);
  border-radius: 10px;
}

.fix {
  overflow: hidden;
}


.array-button {
  position: relative;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 20px;
}
.array-button .array-prev {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background-color: rgba(166, 161, 130, 0.2);
  color: var(--theme);
  font-size: 18px;
  font-weight: 600;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .array-button .array-prev {
    width: 45px;
    height: 45px;
    line-height: 45px;
  }
}
.array-button .array-prev:hover {
  background-color: var(--theme);
  color: var(--white);
}
.array-button .array-next {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background-color: var(--theme);
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .array-button .array-next {
    width: 45px;
    height: 45px;
    line-height: 45px;
  }
}
.array-button .array-next:hover {
  background-color: rgba(166, 161, 130, 0.2);
  color: var(--theme);
}
.array-button.radius-none .array-prev, .array-button.radius-none .array-next {
  border-radius: 0 !important;
}

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

@media (max-width: 575px) {
  br {
    display: none;
  }
}

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


.bg-white {
  background-color: var(--white) !important;
}

.border-none {
  border-top: none !important;
}

.ml-100 {
  margin-left: 100px !important;
}
@media (max-width: 991px) {
  .ml-100 {
    margin-left: 0 !important;
  }
}

.border-radius-none {
  border-radius: 0 !important;
}
.border-radius-none input {
  border-radius: 0 !important;
}

.text-color {
  color: rgba(255, 255, 255, 0.7019607843);
}

@media (max-width: 991px) {
  .title-responsive {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
}

.mb-10 {
  margin-bottom: -10px !important;
}

.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.box-shadow {
  background-color: var(--white);
  box-shadow: var(---box-shadow);
}

.w-100 {
  width: 100% !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mb-15 {
  margin-bottom: -15px !important;
}

.mt-40 {
  padding-top: 40px;
}
@keyframes load {
  0% {
    width: 0;
  }
  100% {
    width: 80%;
  }
}
@keyframes load2 {
  0% {
    width: 0;
  }
  100% {
    width: 70%;
  }
}
@keyframes load3 {
  0% {
    width: 0;
  }
  100% {
    width: 85%;
  }
}
@keyframes load4 {
  0% {
    width: 0;
  }
  100% {
    width: 90%;
  }
}
@keyframes marqueeLeft {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}
@keyframes marqueeRight {
  0% {
    right: 0;
  }
  100% {
    right: -100%;
  }
}
.testimonial-wrapper {
  position: relative;
  margin-top: 30px;
  display: inline-block;
}
@media (max-width: 991px) {
  .testimonial-wrapper {
    width: 100%;
  }
}
.testimonial-wrapper .array-button {
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 1199px) {
  .testimonial-wrapper .array-button {
    display: none;
  }
}
.testimonial-wrapper .array-button .array-prev {
  background-color: transparent;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  line-height: 50px;
  border: 1px solid var(--border);
  color: var(--header);
  font-weight: bold;
}
.testimonial-wrapper .array-button .array-prev:hover {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid transparent;
}
.testimonial-wrapper .array-button .array-next {
  background-color: transparent;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  line-height: 50px;
  border: 1px solid var(--theme);
  color: var(--theme);
  font-weight: bold;
}
.testimonial-wrapper .array-button .array-next:hover {
  background-color: var(--theme);
  color: var(--white);
}
.testimonial-wrapper .testimonial-image {
  height: 534px;
  width: 850px;
  border-radius: 5px;
}
@media (max-width: 1199px) {
  .testimonial-wrapper .testimonial-image {
    width: 600px;
  }
}
@media (max-width: 991px) {
  .testimonial-wrapper .testimonial-image {
    width: initial;
    max-width: 850px;
  }
}
@media (max-width: 767px) {
  .testimonial-wrapper .testimonial-image {
    height: 480px;
  }
}
@media (max-width: 575px) {
  .testimonial-wrapper .testimonial-image {
    height: 430px;
  }
}
.testimonial-wrapper .testimonial-area {
  max-width: 670px;
}
.testimonial-wrapper .testimonial-items {
  padding: 60px;
  background-color: var(--white);
  border-radius: 5px;
  position: relative;
  z-index: 9;
}
@media (max-width: 767px) {
  .testimonial-wrapper .testimonial-items {
    padding: 40px 30px;
  }
}
.testimonial-wrapper .testimonial-items .icon {
  position: absolute;
  top: 60px;
  right: 60px;
  font-size: 48px;
  color: var(--theme);
}
@media (max-width: 767px) {
  .testimonial-wrapper .testimonial-items .icon {
    top: 50px;
    right: 50px;
  }
}
@media (max-width: 575px) {
  .testimonial-wrapper .testimonial-items .icon {
    top: 40px;
    right: 20px;
    font-size: 38px;
  }
}
.testimonial-wrapper .testimonial-items .client-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
.testimonial-wrapper .testimonial-items .client-items .client-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
.testimonial-wrapper .testimonial-items .client-items .client-content h3 {
  margin-bottom: 5px;
}
.testimonial-wrapper .testimonial-items .star {
  margin-top: 30px;
}
@media (max-width: 575px) {
  .testimonial-wrapper .testimonial-items .star {
    margin-top: 20px;
  }
}
.testimonial-wrapper .testimonial-items .star i {
  color: var(--ratting);
}
.testimonial-wrapper .testimonial-items .star .text-color {
  color: #E6E6E6;
}
.testimonial-wrapper .testimonial-items p {
  font-size: 18px;
  margin-top: 20px;
}
@media (max-width: 575px) {
  .testimonial-wrapper .testimonial-items p {
    margin-top: 15px;
    font-size: 16px;
  }
}
.testimonial-wrapper.style-2 {
  position: relative;
}
.testimonial-wrapper.style-2 .testimonial-image {
  height: 393px;
  margin-top: -160px;
  width: 960px;
}
@media (max-width: 991px) {
  .testimonial-wrapper.style-2 .testimonial-image {
    max-width: 960px;
    margin-top: 0;
    width: initial;
  }
}
.testimonial-wrapper.style-2 .testimonial-area {
  padding-top: 110px;
  max-width: 740px;
  margin-left: -100px;
}
@media (max-width: 991px) {
  .testimonial-wrapper.style-2 .testimonial-area {
    padding-top: 0;
    margin-left: 0;
  }
}
.testimonial-wrapper.style-2 .testimonial-items {
  background-color: var(--black);
  border-radius: 0;
  position: relative;
}
.testimonial-wrapper.style-2 .testimonial-items::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 45px;
  height: 45px;
  content: "";
  background-color: var(--theme);
  opacity: 0.5;
}
.testimonial-wrapper.style-2 .testimonial-items h4 {
  color: var(--white);
  font-weight: 400;
  line-height: 145%;
  font-size: 18px;
}
@media (max-width: 575px) {
  .testimonial-wrapper.style-2 .testimonial-items h4 {
    font-size: 16px;
  }
}
.testimonial-wrapper.style-2 .testimonial-items .client-content {
  margin-top: 30px;
}
.testimonial-wrapper.style-2 .testimonial-items .client-content h3 {
  color: var(--white);
  margin-bottom: 5px;
}
.testimonial-wrapper.style-2 .testimonial-items .client-content span {
  color: var(--white);
  font-weight: 400;
}
.testimonial-wrapper.style-2 .testimonial-items .icon {
  bottom: 55px;
  right: 60px;
  top: initial;
  opacity: 0.5;
}
.testimonial-wrapper.style-2 .array-button {
  position: absolute;
  bottom: -88%;
  left: 55%;
  transform: translateX(-50%);
  gap: 0;
}
.testimonial-wrapper.style-2 .array-button .array-prev {
  color: var(--black);
  border-radius: 0;
}
.testimonial-wrapper.style-2 .array-button .array-prev:hover {
  background-color: var(--theme);
  color: var(--white);
}
.testimonial-wrapper.style-2 .array-button .array-next {
  background-color: var(--theme);
  color: var(--white);
  border-radius: 0;
}
.testimonial-wrapper.style-2 .array-button .array-next:hover {
  background-color: var(--black);
}
.testimonial-wrapper.style-2::before {
  position: absolute;
  bottom: 25px;
  left: 0;
  height: 1px;
  width: 350px;
  content: "";
  background-color: var(--theme);
}

.brand-wrapper .brand-image {
  text-align: center;
}
/* .brand-wrapper.style-2 {
  border-bottom: 1px solid var(--text);
} */

.news-card-items {
  margin-top: 30px;
}
.news-card-items .news-image {
  max-width: 370px;
  height: 340px;
}
@media (max-width: 1399px) {
  .news-card-items .news-image {
    max-width: 550px;
  }
}
.news-card-items .news-content {
  position: relative;
  z-index: 9;
  padding: 30px;
  background-color: var(--bg);
  margin-left: 40px;
  border-radius: 5px;
  margin-top: -50px;
  border-bottom: 3px solid transparent;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
  .news-card-items .news-content {
    margin: 0;
  }
}
.news-card-items .news-content ul {
  display: flex;
  align-items: center;
  gap: 15px;
}
.news-card-items .news-content ul li {
  font-size: 14px;
}
.news-card-items .news-content ul li i {
  margin-right: 7px;
}
.news-card-items .news-content h3 {
  margin-top: 15px;
  margin-bottom: 20px;
}
.news-card-items .news-content h3 a:hover {
  color: var(--theme);
}
.news-card-items .news-content .link-btn {
  /* font-weight: 500; */
}
.news-card-items:hover .news-content {
  border-bottom: 3px solid var(--theme);
}
.news-card-items.style-2 .news-image {
  height: 301px;
  max-width: 410px;
}
@media (max-width: 1199px) {
  .news-card-items.style-2 .news-image {
    max-width: 500px;
  }
}
@media (max-width: 767px) {
  .news-card-items.style-2 .news-image {
    max-width: 650px;
    height: 450px;
  }
}
@media (max-width: 575px) {
  .news-card-items.style-2 .news-image {
    max-width: 550px;
    height: 350px;
  }
}
.news-card-items.style-2 .news-content {
  padding: 20px 0 0px;
  margin: 0;
  border-radius: 0;
  background-color: transparent;
  border-bottom: none;
}
.news-card-items.style-2 .news-content ul li {
  /* color: var(--black); */
  letter-spacing: 2.4px;
  /* font-weight: 500; */
}
.news-card-items.style-2 .news-content ul li i {
  color: var(--theme);
}
@media (max-width: 575px) {
  .news-card-items.style-2 .news-content h3 {
    margin-bottom: 10px;
  }
}
.news-card-items.style-2 .news-content p {
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .news-card-items.style-2 .news-content p {
    margin-bottom: 15px;
  }
}
.news-card-items.style-3 .news-image {
  height: 340px;
  max-width: 410px;
  border-radius: 5px;
}
@media (max-width: 767px) {
  .news-card-items.style-3 .news-image {
    max-width: 650px;
  }
}
.news-card-items.style-3 .news-content {
  margin-left: 15px;
  margin-right: 20px;
  border-radius: 0;
  border: none;
  margin-top: -60px;
}
.news-card-items.style-3 .news-content ul {
  flex-wrap: wrap;
  gap: 15px;
}
.news-card-items.style-3 .news-content ul li i {
  color: var(--theme);
}
.news-card-items.style-3 .news-content .link-btn i {
  color: var(--theme);
}

.section-title-area .array-prev {
  background-color: transparent;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
  border: 1px solid var(--border);
  color: var(--header);
  font-weight: bold;
}
.section-title-area .array-prev:hover {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid transparent;
}
.section-title-area .array-next {
  background-color: transparent;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
  border: 1px solid var(--theme);
  color: var(--theme);
  font-weight: bold;
}
.section-title-area .array-next:hover {
  background-color: var(--theme);
  color: var(--white);
}

@media (max-width: 767px) {
  .news-section .section-title-area {
    text-align: center;
    justify-content: center;
  }
}
.blog-wrapper h1, .blog-wrapper h2, .blog-wrapper h3, .blog-wrapper h4, .blog-wrapper h5, .blog-wrapper h6 {
  font-weight: 600;
}
.blog-wrapper .single-blog-post {
  margin-bottom: 40px;
  position: relative;
}
.blog-wrapper .single-blog-post .video__button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.blog-wrapper .single-blog-post .video__button .video__btn__wrp {
  margin-bottom: 0;
}
.blog-wrapper .single-blog-post.post-details.format-quote .post-content {
  position: relative;
  background: transparent;
  border: none;
}
.blog-wrapper .single-blog-post.post-details .post-content {
  border: none;
}
.blog-wrapper .single-blog-post.post-details .post-content img {
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
}
.blog-wrapper .single-blog-post.post-details .post-content .single-post-image {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}
.blog-wrapper .single-blog-post.post-details .post-content h1 {
  font-size: 36px;
  line-height: 1.4;
}
.blog-wrapper .single-blog-post.post-details .post-content h1, .blog-wrapper .single-blog-post.post-details .post-content h2, .blog-wrapper .single-blog-post.post-details .post-content h3, .blog-wrapper .single-blog-post.post-details .post-content h4, .blog-wrapper .single-blog-post.post-details .post-content h5, .blog-wrapper .single-blog-post.post-details .post-content h6 {
  margin-top: 10px;
}
.blog-wrapper .single-blog-post.post-details .post-content table {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post.post-details .post-content h1 {
    font-size: 28px;
  }
  .blog-wrapper .single-blog-post.post-details .post-content h3 {
    font-size: 20px;
  }
}
.blog-wrapper .single-blog-post.post-details blockquote, .blog-wrapper .single-blog-post.post-details .wp-block-quote {
  background-color: var(--theme);
  color: var(--white);
  font-size: 26px;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  padding: 60px;
  text-align: center;
  margin: 40px 0px;
  position: relative;
  z-index: 1;
}
.blog-wrapper .single-blog-post.post-details blockquote a, .blog-wrapper .single-blog-post.post-details .wp-block-quote a {
  color: var(--white);
}
.blog-wrapper .single-blog-post.post-details blockquote a:hover, .blog-wrapper .single-blog-post.post-details .wp-block-quote a:hover {
  color: var(--text);
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post.post-details blockquote, .blog-wrapper .single-blog-post.post-details .wp-block-quote {
    padding: 30px 15px;
    font-size: 18px;
    line-height: 1.5;
  }
}
.blog-wrapper .single-blog-post.post-details blockquote::before, .blog-wrapper .single-blog-post.post-details .wp-block-quote::before {
  right: 30px;
  font-size: 110px;
  line-height: 1;
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  content: "\f10d";
  bottom: -20px;
  color: var(--white);
  z-index: -1;
  opacity: 0.1;
  font-weight: 900;
}
.blog-wrapper .single-blog-post.format-video .post-featured-thumb, .blog-wrapper .single-blog-post.category-video-post .post-featured-thumb {
  z-index: 1;
  position: relative;
}
.blog-wrapper .single-blog-post.format-video .post-featured-thumb::before, .blog-wrapper .single-blog-post.category-video-post .post-featured-thumb::before {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: "";
  background-color: #282835;
  opacity: 0.3;
  z-index: -1;
}
.blog-wrapper .single-blog-post.quote-post .post-content, .blog-wrapper .single-blog-post.format-quote .post-content {
  position: relative;
  background-color: var(--theme);
  border: none;
}
.blog-wrapper .single-blog-post.quote-post .post-content::before, .blog-wrapper .single-blog-post.format-quote .post-content::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url(../image/quotepost.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.blog-wrapper .single-blog-post.quote-post .quote-content, .blog-wrapper .single-blog-post.format-quote .quote-content {
  overflow: hidden;
  padding: 50px;
}
@media (max-width: 585px) {
  .blog-wrapper .single-blog-post.quote-post .quote-content, .blog-wrapper .single-blog-post.format-quote .quote-content {
    text-align: center;
    font-size: 24px;
    padding: 30px;
  }
}
.blog-wrapper .single-blog-post.quote-post .quote-content .icon, .blog-wrapper .single-blog-post.format-quote .quote-content .icon {
  font-size: 70px;
  line-height: 80px;
  float: left;
  overflow: hidden;
  margin-right: 30px;
}
@media (max-width: 585px) {
  .blog-wrapper .single-blog-post.quote-post .quote-content .icon, .blog-wrapper .single-blog-post.format-quote .quote-content .icon {
    float: none;
    margin-bottom: 10px;
    margin-right: 0;
    font-size: 50px;
    line-height: 60px;
  }
}
.blog-wrapper .single-blog-post.quote-post .quote-content .quote-text, .blog-wrapper .single-blog-post.format-quote .quote-content .quote-text {
  overflow: hidden;
}
.blog-wrapper .single-blog-post.quote-post .quote-content h2, .blog-wrapper .single-blog-post.format-quote .quote-content h2 {
  margin-top: -2px;
  font-size: 30px;
  color: var(--white);
}
.blog-wrapper .single-blog-post.quote-post .quote-content .post-meta, .blog-wrapper .single-blog-post.format-quote .quote-content .post-meta {
  margin-top: 10px;
}
.blog-wrapper .single-blog-post.quote-post .quote-content .post-meta span, .blog-wrapper .single-blog-post.quote-post .quote-content .post-meta i, .blog-wrapper .single-blog-post.format-quote .quote-content .post-meta span, .blog-wrapper .single-blog-post.format-quote .quote-content .post-meta i {
  color: var(--white);
}
.blog-wrapper .single-blog-post:last-child {
  margin-bottom: 0;
}
.blog-wrapper .single-blog-post .post-featured-thumb {
  height: 350px;
  width: 100%;
  position: relative;
  margin-bottom: -2px;
  border-radius: 5px;
}
.blog-wrapper .single-blog-post .post-featured-thumb .post-date {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 15px 30px;
  background-color: var(--theme);
  text-align: center;
  border-radius: 5px;
}
.blog-wrapper .single-blog-post .post-featured-thumb .post-date h4 {
  color: var(--white);
}
.blog-wrapper .single-blog-post .post-featured-thumb .post-date h4 span {
  color: var(--white);
  text-transform: uppercase;
  font-size: 15px;
}
@media (max-width: 991px) {
  .blog-wrapper .single-blog-post .post-featured-thumb {
    height: 280px;
  }
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-featured-thumb {
    height: 230px;
  }
}
.blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn .play-video {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 18px;
}
.blog-wrapper .single-blog-post .post-content {
  padding-top: 30px;
  overflow: hidden;
  box-sizing: border-box;
}
@media (max-width: 575px) {
  .blog-wrapper .single-blog-post .post-content {
    padding-top: 20px;
  }
}
.blog-wrapper .single-blog-post .post-content h2 {
  line-height: 1.4;
  font-size: 48px;
  font-weight: 700;
}
@media (max-width: 575px) {
  .blog-wrapper .single-blog-post .post-content h2 {
    font-size: 28px;
  }
}
.blog-wrapper .single-blog-post .post-content h2 a:hover {
  color: var(--theme);
}
.blog-wrapper .single-blog-post .post-content p {
  font-size: 16px;
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content {
    padding: 30px 10px;
  }
}
@media (max-width: 414px) {
  .blog-wrapper .single-blog-post .post-content h2 {
    font-size: 22px;
  }
}
.blog-wrapper .single-blog-post .post-content .post-cat a {
  color: var(--white);
  display: inline-block;
  background-color: var(--theme);
  padding: 14px 18px 12px;
  line-height: 1;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  margin-bottom: 20px;
  text-transform: capitalize;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .post-cat a {
    font-size: 12px;
  }
}
.blog-wrapper .single-blog-post .post-content .post-cat a:hover {
  background-color: var(--header);
}
.blog-wrapper .single-blog-post .post-content ul {
  margin-bottom: 0;
  list-style-type: disc;
  margin-top: 30px;
}
.blog-wrapper .single-blog-post .post-content ul ol {
  margin-bottom: 0;
}
.blog-wrapper .single-blog-post .post-content ul ul {
  margin-bottom: 0;
}
.blog-wrapper .single-blog-post .post-content ul li {
  line-height: 1.5;
  margin-top: 10px;
  list-style-type: disc;
  color: var(--text);
  position: relative;
  font-size: 18px;
  padding-left: 30px;
}
.blog-wrapper .single-blog-post .post-content ul li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Font Awesome 5 Pro";
  content: "\f00c";
  color: var(--theme);
}
.blog-wrapper .single-blog-post .post-content ol {
  margin-bottom: 0;
  list-style-type: decimal;
}
.blog-wrapper .single-blog-post .post-content ol ul {
  margin-bottom: 0;
}
.blog-wrapper .single-blog-post .post-content ol ol {
  margin-bottom: 0;
}
.blog-wrapper .single-blog-post .post-content ol li {
  line-height: 1.5;
  margin-top: 10px;
  list-style-type: decimal;
}
.blog-wrapper .single-blog-post .post-content p {
  margin-top: 15px;
}
.blog-wrapper .single-blog-post .post-content .post-meta {
  margin-bottom: 10px;
}
.blog-wrapper .single-blog-post .post-content .post-meta span {
  color: var(--text);
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  display: inline-block;
  margin-right: 25px;
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .post-meta span {
    font-size: 15px;
  }
}
.blog-wrapper .single-blog-post .post-content .post-meta span i {
  margin-right: 5px;
  color: var(--theme);
  font-weight: 700;
}
.blog-wrapper .single-blog-post .post-content .author-info {
  overflow: hidden;
}
.blog-wrapper .single-blog-post .post-content .author-info .author-img {
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 50%;
  background-color: #f2f2f2;
  margin-right: 15px;
  float: left;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .author-info .author-img {
    margin-right: 5px;
  }
}
.blog-wrapper .single-blog-post .post-content .author-info h5 {
  display: inline-block;
  line-height: 1;
  font-size: 16px;
  margin-top: 9px;
}
.blog-wrapper .single-blog-post .post-content .author-info h5 a:hover {
  color: var(--theme);
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .author-info h5 {
    font-size: 14px;
  }
}
.blog-wrapper .single-blog-post .post-content .post-link a {
  font-weight: 700;
}
.blog-wrapper .single-blog-post .post-content .post-link a:hover {
  color: var(--theme);
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .post-link a {
    font-size: 14px;
  }
}
.blog-wrapper .single-blog-post .post-content .post-link a i {
  margin-right: 5px;
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .post-link a i {
    margin-right: 3px;
  }
}

@media (min-width: 991px) {
  .news-area .main-sidebar {
    margin-left: 20px;
  }
}
@media (max-width: 991px) {
  .news-area .main-sidebar {
    margin-top: 40px;
  }
}
.news-area .main-sidebar .single-sidebar-widget {
  border: 2px solid #ededed;
  box-sizing: border-box;
  padding: 30px;
  margin-bottom: 40px;
}
.news-area .main-sidebar .single-sidebar-widget ul {
  padding-left: 0;
}
.news-area .main-sidebar .single-sidebar-widget ul > li {
  margin-bottom: 10px;
}
.news-area .main-sidebar .single-sidebar-widget ul > li a {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}
.news-area .main-sidebar .single-sidebar-widget ul > li a:hover {
  color: var(--theme);
}
.news-area .main-sidebar .single-sidebar-widget ul ul {
  padding-left: 20px;
}
.news-area .main-sidebar .single-sidebar-widget ul ul li {
  margin-top: 5px;
}
.news-area .main-sidebar .single-sidebar-widget:last-child {
  margin-bottom: 0;
}
.news-area .main-sidebar .single-sidebar-widget .wid-title {
  margin-bottom: 25px;
  padding-left: 45px;
  position: relative;
}

.news-area .main-sidebar .single-sidebar-widget .wid-title::before {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  height: 4px;
  width: 18px;
  border-radius: 5px;
  position: absolute;
  background-color: var(--theme);
}
.news-area .main-sidebar .single-sidebar-widget .wid-title::after {
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  height: 4px;
  width: 4px;
  border-radius: 50%;
  position: absolute;
  background-color: var(--theme);
}
.news-area .main-sidebar .single-sidebar-widget .wid-title h4 {
  font-size: 24px;
  font-weight: 600;
}
.news-area .main-sidebar .single-sidebar-widget .social-link a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--bg);
  font-size: 14px;
  margin-right: 5px;
  margin-bottom: 5px;
}
.news-area .main-sidebar .single-sidebar-widget .social-link a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.popular-posts .single-post-item, .popular_posts .single-post-item {
  overflow: hidden;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #f2f2f2;
}
.popular-posts .single-post-item:last-child, .popular_posts .single-post-item:last-child {
  margin-bottom: 0;
  border: none;
  padding-bottom: 0;
}
.popular-posts .single-post-item .thumb, .popular_posts .single-post-item .thumb {
  height: 95px;
  width: 95px;
  background-color: #f2f2f2;
  float: left;
  overflow: hidden;
  margin-right: 20px;
}
.popular-posts .single-post-item .post-content, .popular_posts .single-post-item .post-content {
  overflow: hidden;
}
.popular-posts .single-post-item .post-content h5, .popular_posts .single-post-item .post-content h5 {
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  margin-bottom: 0;
  text-transform: capitalize;
}
.popular-posts .single-post-item .post-content h5 a:hover, .popular_posts .single-post-item .post-content h5 a:hover {
  color: var(--theme);
}
.popular-posts .single-post-item .post-content .post-date, .popular_posts .single-post-item .post-content .post-date {
  margin-top: 10px;
  color: var(--theme);
  font-weight: 600;
  font-size: 15px;
  text-transform: capitalize;
}
.popular-posts .single-post-item .post-content .post-date i, .popular_posts .single-post-item .post-content .post-date i {
  margin-right: 7px;
}

.page-nav-wrap ul li {
  display: inline-block;
}
.page-nav-wrap ul li .page-num {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background: #f6f6f6;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
}
.page-nav-wrap ul li .page-num-current {
  background-color: var(--theme);
  color: var(--white);
}
@media (max-width: 767px) {
  .page-nav-wrap ul li .page-num {
    margin-top: 10px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
  }
}
.page-nav-wrap ul li .page-num i {
  margin-top: 2px;
}
.page-nav-wrap ul li .page-num:hover {
  background-color: var(--theme);
  color: var(--white);
}

/* .portfolio-wrapper {
  margin-right: -35%;
} */
@media (max-width: 1199px) {
  .portfolio-wrapper {
    margin-right: 0;
  }
}
.portfolio-wrapper.style-2 {
  /* margin-right: 0; */
  padding: 0 95px;
}
@media (max-width: 1399px) {
  .portfolio-wrapper.style-2 {
    padding: 0;
  }
}
.portfolio-wrapper.style-2 .portfolio-items {
  margin-top: 0;
}
@media (max-width: 767px) {
  .portfolio-wrapper.style-2 .portfolio-items .portfolio-image {
    max-width: 700px;
  }
}

.portfolio-items {
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}
.portfolio-items::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--black);
  z-index: 1;
  top: 20px;
  width: 90%;
  height: 93%;
  left: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
  .portfolio-items::before {
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
  }
}
.portfolio-items .portfolio-image {
  /* max-width: 410px; */  
  min-height: 500px;
  border-radius: 5px;
  position: relative;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
  .portfolio-items .portfolio-image {
    max-width: 550px;
  }
}
@media (max-width: 1199px) {
  .portfolio-items .portfolio-image {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .portfolio-items .portfolio-image {
    height: 500px;
  }
}
@media (max-width: 575px) {
  .portfolio-items .portfolio-image {
    max-width: 550px;
  }
}
.portfolio-items .portfolio-image .portfolio-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 991px) {
  .portfolio-items .portfolio-image .portfolio-content br {
    display: block;
  }
}
.portfolio-items .portfolio-image .portfolio-content .icon {
  width: 55px;
  height: 55px;
  line-height: 55px;
  border-radius: 50%;
  text-align: center;
  background-color: var(--theme);
  color: var(--white);
  display: inline-block;
  transition: all 0.4s ease-in-out;
  margin-bottom: 30px;
}
.portfolio-items .portfolio-image .portfolio-content .icon:hover {
  background-color: var(--white);
  color: var(--theme);
}
.portfolio-items .portfolio-image .portfolio-content h3 {
  margin-bottom: 10px;
}
.portfolio-items .portfolio-image .portfolio-content h3 a {
  color: var(--white);
}
.portfolio-items .portfolio-image .portfolio-content h3 a:hover {
  color: var(--theme);
}
.portfolio-items .portfolio-image .portfolio-content p {
  color: var(--white);
}
.portfolio-items>.portfolio-image:hover {
  /* background-size: 120%; */
  transform: scale(1.2);
  /* opacity: 0.8;
  visibility: visible; */
}
/* .portfolio-items:hover .portfolio-image .portfolio-content {
  opacity: 1;
  visibility: visible;
} */

@media (max-width: 767px) {
  .portfolio-wrapper-3 {
    margin-top: -20px;
  }
}
.portfolio-wrapper-3 .portfolio-content {
  margin-left: 33px;
}
@media (max-width: 1199px) {
  .portfolio-wrapper-3 .portfolio-content {
    margin-left: 0;
  }
  .portfolio-wrapper-3 .portfolio-content br {
    display: block;
  }
}
@media (max-width: 575px) {
  .portfolio-wrapper-3 .portfolio-content {
    text-align: center;
  }
}
.portfolio-wrapper-3 .portfolio-content span {
  font-size: 18px;
  font-weight: 600;
  color: var(--theme);
  display: inline-block;
  margin-bottom: 10px;
}
.portfolio-wrapper-3 .portfolio-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .portfolio-wrapper-3 .portfolio-content h3 {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .portfolio-wrapper-3 .portfolio-content h3 {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .portfolio-wrapper-3 .portfolio-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.portfolio-wrapper-3 .portfolio-content h3 a:hover {
  color: var(--theme);
}
.portfolio-wrapper-3 .portfolio-content p {
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .portfolio-wrapper-3 .portfolio-content p {
    margin-bottom: 25px;
  }
}
.portfolio-wrapper-3 .portfolio-content ul {
  margin-bottom: 35px;
  margin-top: -10px;
}
.portfolio-wrapper-3 .portfolio-content ul li i {
  color: var(--theme);
  margin-right: 5px;
}
.portfolio-wrapper-3 .portfolio-content ul li:not(:last-child) {
  margin-bottom: 15px;
}
.portfolio-wrapper-3 .portfolio-content .counter-item {
  display: inline-flex;
  gap: 20px;
  padding: 20px;
  background-color: #C1995B;
}
.portfolio-wrapper-3 .portfolio-content .counter-item h2 {
  font-size: 48px;
}
.portfolio-wrapper-3 .portfolio-content .counter-item h2 span {
  font-size: 48px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 0;
}
.portfolio-wrapper-3 .portfolio-content .counter-item p {
  margin-bottom: 0;
}
.portfolio-wrapper-3 .project-image {
  margin-left: 33px;
}
@media (max-width: 1199px) {
  .portfolio-wrapper-3 .project-image {
    margin-left: 0;
  }
}
.portfolio-wrapper-3 .project-image img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.contact-info-wrapper {
  background-color: var(--bg);
}
.contact-info-wrapper .google-map {
  margin-bottom: -9px;
}
.contact-info-wrapper .google-map iframe {
  width: 100%;
  height: 560px;
}
.contact-info-wrapper .contact-info-content {
  padding: 40px;
}
.contact-info-wrapper .contact-info-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}
.contact-info-wrapper .contact-info-content .contact-info-area {
  margin-top: 40px;
}
.contact-info-wrapper .contact-info-content .contact-info-area .contact-info-items .icon {
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50%;
  background-color: rgba(166, 161, 130, 0.1);
  color: var(--theme);
  text-align: center;
}
.contact-info-wrapper .contact-info-content .contact-info-area .contact-info-items .content {
  margin-top: 20px;
}
.contact-info-wrapper .contact-info-content .contact-info-area .contact-info-items .content h3 {
  font-weight: 600;
}
.contact-info-wrapper .contact-info-content .contact-info-area .contact-info-items .content h6 {
  font-weight: 400;
  color: var(--text);
}
.contact-info-wrapper .contact-info-content .contact-info-area .contact-info-items .content h6 a {
  color: var(--text);
}

@media (max-width: 1399px) {
  .contact-section-4 {
    padding-top: 40px;
  }
}
@media (max-width: 1199px) {
  .contact-section-4 {
    padding-top: 20px;
  }
}
@media (max-width: 991px) {
  .contact-section-4 {
    margin-top: -40px;
  }
}

.contact-wrapper-3 {
  background-image: url(../image/contact.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0 0 80px 0;
  border-radius: 5px;
}
.contact-wrapper-3 .contact-content {
  background-color: var(--white);
  border-radius: 0 0 5px 0;
  padding: 40px;
  padding-left: 0;
}
.contact-wrapper-3 .contact-content .contact-form-items .form-clt {
  position: relative;
}
.contact-wrapper-3 .contact-content .contact-form-items .form-clt input, .contact-wrapper-3 .contact-content .contact-form-items .form-clt textarea {
  width: 100%;
  outline: none;
  border: 1px solid var(--border);
  background-color: transparent;
  color: var(--text);
  padding: 16px 20px;
  border-radius: 5px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .contact-wrapper-3 .contact-content .contact-form-items .form-clt input, .contact-wrapper-3 .contact-content .contact-form-items .form-clt textarea {
    padding: 14px 20px;
  }
}
@media (max-width: 575px) {
  .contact-wrapper-3 .contact-content .contact-form-items .form-clt input, .contact-wrapper-3 .contact-content .contact-form-items .form-clt textarea {
    padding: 12px 18px;
  }
}
.contact-wrapper-3 .contact-content .contact-form-items .form-clt input::-moz-placeholder, .contact-wrapper-3 .contact-content .contact-form-items .form-clt textarea::-moz-placeholder {
  color: var(--text);
}
.contact-wrapper-3 .contact-content .contact-form-items .form-clt input::placeholder, .contact-wrapper-3 .contact-content .contact-form-items .form-clt textarea::placeholder {
  color: var(--text);
}
.contact-wrapper-3 .contact-content .contact-form-items .form-clt textarea {
  padding-bottom: 115px;
}

.footer-widgets-wrapper {
  padding: 90px 0 120px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1199px) {
  .footer-widgets-wrapper {
    padding: 70px 0 100px;
  }
}
@media (max-width: 991px) {
  .footer-widgets-wrapper {
    padding: 50px 0 80px;
  }
}
.footer-widgets-wrapper .single-footer-widget {
  margin-top: 30px;
}
.footer-widgets-wrapper .single-footer-widget .widget-head {
  margin-bottom: 30px;
}
.footer-widgets-wrapper .single-footer-widget .widget-head h3 {
  font-weight: 600;
  color: var(--white);
}
.footer-widgets-wrapper .single-footer-widget .footer-content p {
  color: var(--white);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input {
  position: relative;
  margin-top: 40px;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input input {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  outline: none;
  padding: 18px 20px;
  width: 100%;
  border-radius: 5px;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input input::-moz-placeholder {
  color: var(--white);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input input::placeholder {
  color: var(--white);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input .newsletter-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 64px;
  line-height: 60px;
  border-radius: 5px;
  text-align: center;
  background-color: var(--theme);
  color: var(--white);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input.style-two {
  position: relative;
  margin-top: 40px;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input.style-two input {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7019607843);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input.style-two input::-moz-placeholder {
  color: var(--white);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input.style-two input::placeholder {
  color: var(--white);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input.style-two .newsletter-btn {
  border-radius: 0 5px 5px 0;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input.style-three input {
  background-color: var(--black);
  border-radius: 0;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input.style-three .newsletter-btn {
  border-radius: 0;
  color: var(--black);
  font-size: 18px;
  top: 5px;
  right: 5px;
  height: 54px;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon {
  gap: 10px;
  margin-top: 40px;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 5px;
  display: inline-block;
  background-color: #0D0D0D;
  color: rgba(255, 255, 255, 0.7019607843);
  transition: all 0.4s ease-in-out;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info-area .contact-items {
  display: flex;
  gap: 20px;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info-area .contact-items:not(:last-child) {
  margin-bottom: 20px;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info-area .contact-items .icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid var(--theme);
  color: rgba(255, 255, 255, 0.7019607843);
  border-radius: 50%;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info-area .contact-items .content {
  flex-basis: 79%;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info-area .contact-items .content h4 {
  color: var(--white);
  font-weight: 600;
  margin-top: 5px;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info-area .contact-items .content h4 a {
  color: var(--white);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info-area-2 .contact-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info-area-2 .contact-items:not(:last-child) {
  margin-bottom: 20px;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info-area-2 .contact-items .icon {
  font-size: 20px;
  color: var(--theme);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info-area-2 .contact-items .content p {
  color: var(--white);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info-area-2 .contact-items .content h6 {
  font-size: 16px;
  font-weight: 400;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info-area-2 .contact-items .content h6 a {
  color: var(--white);
}
.footer-widgets-wrapper .single-footer-widget .list-items li {
  text-transform: capitalize;
}
.footer-widgets-wrapper .single-footer-widget .list-items li:not(:last-child) {
  margin-bottom: 15px;
}
.footer-widgets-wrapper .single-footer-widget .list-items li a {
  font-size: 16px;
  color: var(--white);
  position: relative;
}
.footer-widgets-wrapper .single-footer-widget .list-items li a::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  height: 2px;
  content: "";
  background-color: var(--theme);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.footer-widgets-wrapper .single-footer-widget .list-items li a:hover {
  padding-left: 20px;
  color: var(--theme);
}
.footer-widgets-wrapper .single-footer-widget .list-items li a:hover::before {
  opacity: 1;
  visibility: visible;
}
.footer-widgets-wrapper.style-2 .single-footer-widget {
  margin-top: 30px;
}
.footer-widgets-wrapper.style-2 .single-footer-widget .footer-content .social-icon a {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.footer-widgets-wrapper.style-2 .single-footer-widget .footer-content .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}
.footer-widgets-wrapper.style-2 .single-footer-widget .list-items li i {
  margin-right: 10px;
  color: var(--theme);
}

.footer-bottom {
  padding: 30px 0;
  position: relative;
  z-index: 9;
  background-color: rgba(255, 255, 255, 0.0509803922);
}
@media (max-width: 575px) {
  .footer-bottom {
    padding: 20px 0;
    text-align: center;
  }
}
@media (max-width: 991px) {
  .footer-bottom .footer-wrapper {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center !important;
    margin-top: 30px;
  }
}
.footer-bottom .footer-wrapper p {
  color: rgba(255, 255, 255, 0.7019607843);
}
.footer-bottom .footer-wrapper p a {
  color: rgba(255, 255, 255, 0.7019607843);
}
.footer-bottom .footer-wrapper .footer-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 575px) {
  .footer-bottom .footer-wrapper .footer-menu {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }
}
.footer-bottom .footer-wrapper .footer-menu li a {
  color: rgba(255, 255, 255, 0.7019607843);
  background-image: linear-gradient(var(--theme), var(--theme));
  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;
}
.footer-bottom .footer-wrapper.border-style {
  border-top: 1px solid var(--text) !important;
}
.footer-bottom.style-2 {
  background-color: transparent;
  padding: 0;
  position: relative;
  z-index: 9;
  margin-top: -5px;
}
@media (max-width: 991px) {
  .footer-bottom.style-2 {
    margin-top: -35px;
  }
}
.footer-bottom.style-2 .footer-wrapper {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px 0;
}




.footer-section {
  position: relative;
  overflow: hidden;
}
.footer-section .shape-img {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.2;
}
.footer-section .shape-img-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.1;
}
.footer-section .footer-shape-3 {
  position: absolute;
  bottom: 0;
  right: 0;
}
.footer-section .bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
}
.footer-section .bg-shape img {
  width: 100%;
  height: 100%;
}