/*
Theme Name: Axenio
Author: TrendyWave
Author URI: https://themeforest.net/user/TrendyWave
Description: Bulidx - Construction HTML Template
Version: 1.0.0
*/
/*CSS Table Of Content Ends Here*/
/*
--------------------------------------------------------------
[Table of Contents]
--------------------------------------------------------------
01. Variables & Mixins
02. Typography
03. Buttons
04. About
05. Animation
06. Brand
07. Contact
08. Cta
09. Faq
10. Feature
11. Footer
12. Header
13. Helping
14. Hero
15. MeanMenu
16. News
17. Preloader
18. Pricing
19. Project
20. Section
21. Service
22. Team
23. Testimonial
--------------------------------------------------------------
*/
@import url("https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --body: #0F1F1F;
  --black: #000;
  --white: #fff;
  --theme: #FF5E14;
  --header: #0E121D;
  --text: #4D5765;
  --border: #E4E4E4;
  --bg: #F8F8F8;
  --bg-2: #000;
  --bg-3: #F8F5F0;
  --box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
}

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

.link-btn {
  font-size: 14px;
  font-weight: 700;
  color: var(--theme);
  font-family: Public Sans;
  display: inline;
}
.link-btn i {
  margin-left: 5px;
  color: var(--theme);
}
.link-btn.style-2 {
  border-bottom: 1px solid var(--theme);
  padding-bottom: 5px;
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  font-family: "Public Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--text);
  background-color: var(--white);
  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: var(--text);
  outline: none;
}

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

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

h1 {
  font-size: 110px;
  font-weight: 500;
}
@media (max-width: 1600px) {
  h1 {
    font-size: 70px;
  }
}
@media (max-width: 1199px) {
  h1 {
    font-size: 60px;
  }
}
@media (max-width: 991px) {
  h1 {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  h1 {
    font-size: 30px;
  }
}

h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 120%;
}
@media (max-width: 1199px) {
  h2 {
    font-size: 35px;
  }
}
@media (max-width: 991px) {
  h2 {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 30px;
  }
}
@media (max-width: 470px) {
  h2 {
    font-size: 25px;
  }
}

h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 133%;
}
@media (max-width: 1399px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 24px;
  font-weight: 600;
  line-height: 141%;
}
@media (max-width: 1399px) {
  h4 {
    font-size: 20px;
  }
}

h5 {
  font-size: 20px;
  font-weight: 600;
}
@media (max-width: 575px) {
  h5 {
    font-size: 20px;
  }
}

h6 {
  font-size: 16px;
  font-weight: 600;
}

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;
}

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

.about-wrapper {
  margin-top: 30px;
}
.about-wrapper .about-left-item .client-image {
  margin-bottom: 20px;
}
.about-wrapper .about-left-item .counter-content {
  display: flex;
  align-items: center;
}
.about-wrapper .about-left-item .counter-content h3 {
  font-weight: 600;
  transform: rotate(-90deg);
}
.about-wrapper .about-left-item .counter-content h4 {
  color: var(--text);
  font-size: 20px;
  font-weight: 600;
}
.about-wrapper .about-left-item .about-left-image {
  margin-top: 140px;
  max-width: 427px;
}
@media (max-width: 1199px) {
  .about-wrapper .about-left-item .about-left-image {
    margin-top: 30px;
    max-width: initial;
  }
}
.about-wrapper .about-left-item .about-left-image img {
  width: 100%;
  height: 100%;
}
.about-wrapper .about-right-item {
  margin-left: 30px;
}
@media (max-width: 1199px) {
  .about-wrapper .about-right-item {
    margin-left: 0;
  }
}
.about-wrapper .about-right-item p {
  max-width: 516px;
}
.about-wrapper .about-right-item .about-items {
  display: flex;
  gap: 50px;
  margin-top: 60px;
}
@media (max-width: 1199px) {
  .about-wrapper .about-right-item .about-items {
    margin-top: 30px;
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .about-wrapper .about-right-item .about-items {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.about-wrapper .about-right-item .about-items .content .about-list {
  margin-top: 180px;
}
@media (max-width: 1199px) {
  .about-wrapper .about-right-item .about-items .content .about-list {
    margin-top: 30px;
  }
}
.about-wrapper .about-right-item .about-items .content .about-list li {
  color: var(--header);
}
.about-wrapper .about-right-item .about-items .content .about-list li:not(:last-child) {
  margin-bottom: 12px;
}
@media (max-width: 1199px) {
  .about-wrapper .about-right-item .about-items .content .about-list li {
    font-size: 14px;
  }
}
.about-wrapper .about-right-item .about-items .content .about-list li i {
  margin-right: 5px;
  color: var(--theme);
}
.about-wrapper .about-right-item .about-items .about-right-image {
  max-width: 454px;
}
@media (max-width: 1199px) {
  .about-wrapper .about-right-item .about-items .about-right-image {
    max-width: 389px;
  }
}
@media (max-width: 991px) {
  .about-wrapper .about-right-item .about-items .about-right-image {
    max-width: initial;
  }
}
.about-wrapper .about-right-item .about-items .about-right-image img {
  width: 100%;
  height: 100%;
}

.about-section {
  position: relative;
}
.about-section .top-shape {
  position: absolute;
  top: 0;
  right: 90px;
}
@media (max-width: 1199px) {
  .about-section .top-shape {
    display: none;
  }
}
.about-section .left-shape {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 1199px) {
  .about-section .left-shape {
    display: none;
  }
}

.about-wrapper-2 {
  margin-top: 40px;
}
.about-wrapper-2 .about-image {
  max-width: 381px;
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-image {
    max-width: initial;
  }
}
.about-wrapper-2 .about-image img {
  width: 100%;
  height: 100%;
}
.about-wrapper-2 .about-content {
  margin-left: 20px;
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-content {
    margin-left: 0;
  }
}
.about-wrapper-2 .about-content p {
  max-width: 478px;
  font-size: 16px;
  font-weight: 400;
}
.about-wrapper-2 .about-content .about-button {
  margin-top: 40px;
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-content .about-button {
    margin-top: 30px;
  }
}
.about-wrapper-2 .about-right-item .counter-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-right-item .counter-item {
    flex-wrap: wrap;
  }
}
.about-wrapper-2 .about-right-item .counter-item h2 {
  color: var(--theme);
  font-size: 56px;
  font-weight: 700;
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-right-item .counter-item h2 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .about-wrapper-2 .about-right-item .counter-item h2 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .about-wrapper-2 .about-right-item .counter-item h2 {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .about-wrapper-2 .about-right-item .counter-item h2 {
    font-size: 30px;
  }
}
.about-wrapper-2 .about-right-item .counter-item h3 {
  font-size: 18px;
  font-weight: 500;
}
.about-wrapper-2 .about-right-item .about-right-image {
  position: relative;
  max-width: 245px;
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-right-item .about-right-image {
    max-width: initial;
  }
}
.about-wrapper-2 .about-right-item .about-right-image img {
  width: 100%;
  height: 100%;
}
.about-wrapper-2 .about-right-item .about-right-image .about-small-image {
  max-width: 248px;
  position: absolute;
  left: -150px;
  bottom: -70px;
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-right-item .about-right-image .about-small-image {
    max-width: 160px;
    left: 0;
    bottom: 0;
  }
}
@media (max-width: 991px) {
  .about-wrapper-2 .about-right-item .about-right-image .about-small-image {
    max-width: initial;
  }
}
.about-wrapper-2 .about-right-item .about-right-image .about-small-image img {
  width: 100%;
  height: 100%;
}

.about-section-2 {
  margin-top: 80px;
}
@media (max-width: 1600px) {
  .about-section-2 {
    margin-top: 0;
  }
}

@-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);
  }
}
@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
@-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%);
  }
}
/*img-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;
}

@keyframes moving {
  0% {
    transform: translatey(0px);
  }
  20% {
    transform: translateX(-50px);
  }
  50% {
    transform: translatey(-40px);
  }
  100% {
    transform: translatey(0px);
  }
}
@keyframes translateX2 {
  0% {
    -webkit-transform: translateX(-30px);
    -moz-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    -o-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    -webkit-transform: translatXY(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
  }
}
@keyframes translateY2 {
  0% {
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
  }
}
@keyframes arryLeftRight {
  0% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(10px);
  }
}
.animation__arryLeftRight {
  animation: arryLeftRight 2s ease infinite alternate;
}

@keyframes shine {
  from {
    -webkit-mask-position: 150%;
  }
  to {
    -webkit-mask-position: -50%;
  }
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes scrolly {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-60%);
  }
}
@keyframes scrolls {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.animation-infinite {
  animation: ShapeAnim 80s linear infinite;
  height: 30px;
  width: 100%;
  background-repeat: repeat;
  overflow: hidden;
}

@keyframes ShapeAnim {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top left 2000px;
  }
}
.contact-from-section {
  position: relative;
  z-index: 9;
}
.contact-from-section .left-shape {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.contact-from-section .left-shape img {
  width: 100%;
  height: 100%;
}
@media (max-width: 1199px) {
  .contact-from-section .left-shape {
    display: none;
  }
}

.contact-from-wrapper {
  border-top: 1px solid var(--border);
  padding-top: 40px;
  margin-top: 60px;
}
@media (max-width: 1199px) {
  .contact-from-wrapper {
    margin-top: 15px;
  }
}
@media (max-width: 575px) {
  .contact-from-wrapper {
    margin-top: 100px;
  }
}
.contact-from-wrapper .form-clt input, .contact-from-wrapper .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid var(--border);
  background: transparent;
  padding: 16px 20px;
  font-weight: 400;
  color: var(--white);
}
.contact-from-wrapper .form-clt input::placeholder, .contact-from-wrapper .form-clt textarea::placeholder {
  color: var(--white);
}
.contact-from-wrapper .theme-btn {
  width: 100%;
}
.contact-from-wrapper .theme-btn::before {
  background-color: var(--white);
}
.contact-from-wrapper .theme-btn::after {
  background-color: var(--white);
}
.contact-from-wrapper .theme-btn:hover {
  color: var(--header);
}

.contact-wrapper .contact-image-item .contact-image {
  margin-left: -254px;
}
@media (max-width: 1199px) {
  .contact-wrapper .contact-image-item .contact-image {
    margin-left: 0;
  }
}
.contact-wrapper .contact-image-item .contact-image img {
  width: 100%;
  height: 100%;
}
.contact-wrapper .contact-image-item .counter-item {
  display: flex;
  align-items: center;
  gap: 60px;
  justify-content: end;
  margin-top: 40px;
}
@media (max-width: 1199px) {
  .contact-wrapper .contact-image-item .counter-item {
    flex-wrap: wrap;
    gap: 30px !important;
    margin-top: 30px;
    justify-content: start;
  }
}
.contact-wrapper .contact-image-item .counter-item .count-wrap {
  display: flex;
  align-items: center;
  gap: 17px;
}
@media (max-width: 1199px) {
  .contact-wrapper .contact-image-item .counter-item .count-wrap {
    flex-wrap: wrap;
  }
}
.contact-wrapper .contact-image-item .counter-item .count-wrap.style-2 {
  border-right: 1px solid var(--header);
  padding-right: 60px;
}
@media (max-width: 1199px) {
  .contact-wrapper .contact-image-item .counter-item .count-wrap.style-2 {
    border-right: none;
    padding-right: 0;
    padding-right: 30px;
  }
}
.contact-wrapper .contact-image-item .counter-item .count-wrap h2 {
  color: var(--theme);
}
.contact-wrapper .contact-image-item .counter-item .count-wrap h3 {
  font-size: 16px;
  font-weight: 600;
}
.contact-wrapper .contact-content {
  margin-left: 30px;
}
@media (max-width: 1199px) {
  .contact-wrapper .contact-content {
    margin-left: 0;
  }
}
.contact-wrapper .contact-content .text {
  margin-top: 30px;
  margin-bottom: 20px;
  color: var(--header);
}
.contact-wrapper .contact-content .form-clt input, .contact-wrapper .contact-content .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  border-bottom: 1px solid var(--header);
  background: transparent;
  padding: 16px 0px;
  font-weight: 400;
  color: var(--header);
  padding-bottom: 10px;
}
.contact-wrapper .contact-content .form-clt input::placeholder, .contact-wrapper .contact-content .form-clt textarea::placeholder {
  color: var(--header);
}
.contact-wrapper .contact-content .form-clt textarea {
  padding-bottom: 120px;
  resize: none;
}
.contact-wrapper .contact-content p {
  color: var(--header);
  margin-top: 40px;
  margin-bottom: 10px;
}

.contact-section {
  margin: 0 100px;
}
@media (max-width: 1199px) {
  .contact-section {
    margin: 0 40px;
  }
}
@media (max-width: 991px) {
  .contact-section {
    margin: 0 30px;
  }
}
@media (max-width: 575px) {
  .contact-section {
    margin: 0 15px;
  }
}

.contact-information-item {
  display: flex;
  align-items: center;
  gap: 30px;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: 0px 9px 14px 0px #FBFBFB;
  padding: 40px;
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .contact-information-item {
    padding: 30px;
  }
}
.contact-information-item .icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  background-color: #F4F4F4;
  color: var(--theme);
  transition: all 0.4s ease-in-out;
  font-size: 40px;
}
.contact-information-item .content h3 {
  font-size: 20px;
  font-weight: 600;
}
.contact-information-item .content p {
  max-width: 238px;
  margin-top: 5px;
}
.contact-information-item:hover .icon {
  background-color: var(--theme);
  color: var(--white);
}

.contact-information-section {
  margin-bottom: -10px;
}

.contact-box-wrapper {
  background-color: var(--white);
  box-shadow: 0px 6px 35px 0px rgba(0, 0, 0, 0.06);
  padding: 60px;
  margin-top: 10px;
  position: relative;
}
@media (max-width: 991px) {
  .contact-box-wrapper {
    padding: 50px;
  }
}
@media (max-width: 767px) {
  .contact-box-wrapper {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .contact-box-wrapper {
    padding: 30px;
  }
}
.contact-box-wrapper h2 {
  text-align: center;
  margin-bottom: 30px;
}
.contact-box-wrapper .form-clt {
  position: relative;
}
.contact-box-wrapper .form-clt input, .contact-box-wrapper .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: #F4F4F4;
  padding-bottom: 20px;
  padding: 16px 20px;
  transition: all 0.4s ease-in-out;
  color: var(--text);
  font-size: 14px;
  font-weight: 400;
}
.contact-box-wrapper .form-clt input::placeholder, .contact-box-wrapper .form-clt textarea::placeholder {
  color: var(--text);
}
.contact-box-wrapper .form-clt .icon {
  position: absolute;
  right: 24px;
  top: 15px;
}
.contact-box-wrapper .form-clt textarea {
  padding-bottom: 150px;
  resize: none;
}
@media (max-width: 1199px) {
  .contact-box-wrapper .form-clt textarea {
    padding-bottom: 100px;
  }
}
.contact-box-wrapper .theme-btn {
  width: 100%;
}

@media (max-width: 1199px) {
  .contact-from-section-2 {
    margin-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .contact-from-section-2 {
    margin-bottom: 80px;
  }
}

.map-items .googpemap iframe {
  width: 100%;
  height: 700px;
}
@media (max-width: 575px) {
  .map-items .googpemap iframe {
    height: 400px;
  }
}

.map-section {
  margin-top: -200px;
}
@media (max-width: 1199px) {
  .map-section {
    margin-top: 0;
  }
}

.counter-wrapper-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .counter-wrapper-2 {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.counter-wrapper-2 .counter-item {
  display: flex;
  align-items: center;
  gap: 20px;
  border-right: 1px solid var(--border);
  padding-right: 80px;
}
@media (max-width: 1199px) {
  .counter-wrapper-2 .counter-item {
    padding-right: 0;
    border-right: none;
    flex-wrap: wrap;
  }
}
.counter-wrapper-2 .counter-item .content h2 {
  line-height: 1;
  font-weight: 700;
}
.counter-wrapper-2 .counter-item.style-2 {
  border-right: none;
  padding-right: 0;
}
.counter-wrapper-2.style-2 .counter-item .content h2 {
  color: var(--white);
}
.counter-wrapper-2.style-2 .counter-item .content p {
  color: #B2B2B2;
}

.counter-section-2 {
  position: relative;
}
@media (max-width: 1199px) {
  .counter-section-2 {
    overflow: hidden;
  }
}
.counter-section-2 .left-shape {
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 1600px) {
  .counter-section-2 .left-shape {
    display: none;
  }
}

.counter-right-content {
  display: flex;
  align-items: center;
  gap: 70px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}
@media (max-width: 991px) {
  .counter-right-content {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.counter-right-content .counter-content-1 span {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
  display: inline-block;
  color: var(--header);
  font-family: "Exo", sans-serif;
}
.counter-right-content .counter-content-1 h2 {
  font-size: 64px;
  color: var(--theme);
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .counter-right-content .counter-content-1 h2 {
    font-size: 50px;
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .counter-right-content .counter-content-1 h2 {
    font-size: 40px;
    margin-bottom: 10px;
  }
}
.counter-right-content .counter-content-1 h2 span {
  font-size: 64px;
  color: var(--theme);
}
.counter-right-content .counter-content-1 p {
  max-width: 344px;
}
.counter-right-content .counter-content-1.style-2 {
  border-left: 1px solid var(--border);
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .counter-right-content .counter-content-1.style-2 {
    border-left: none;
    padding-left: 0;
  }
}

.faq-items {
  text-align: center;
  margin-top: 30px;
}
.faq-items .faq-content .accordion-item {
  border: 0;
  background-color: var(--white);
}
.faq-items .faq-content .accordion-item .accordion-header .accordion-button {
  font-weight: 600;
  color: var(--header);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background-color: var(--white);
  text-transform: capitalize;
  font-size: 24px;
  padding: 30px 0 20px;
}
@media (max-width: 1199px) {
  .faq-items .faq-content .accordion-item .accordion-header .accordion-button {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .faq-items .faq-content .accordion-item .accordion-header .accordion-button {
    font-size: 16px;
  }
}
.faq-items .faq-content .accordion-item .accordion-header .accordion-button::after {
  content: "\f078";
  background: transparent;
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  transition: all 0.3s ease-in-out !important;
  color: var(--header);
}
.faq-items .faq-content .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  content: "\f078";
  background: transparent;
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  color: var(--header);
}
.faq-items .faq-content .accordion-item .accordion-header .accordion-button.collapsed {
  background-color: var(--white);
  color: var(--header);
  border-bottom: 1px solid rgba(86, 86, 86, 0.3);
}
.faq-items .faq-content .accordion-item .accordion-collapse .accordion-body {
  text-align: left;
  padding-left: 0;
  color: var(--text);
  background-color: transparent;
  padding-top: 0;
  border-bottom: 1px solid rgba(86, 86, 86, 0.3);
  padding-bottom: 20px;
}
@media (max-width: 991px) {
  .faq-items .faq-content .accordion-item .accordion-collapse .accordion-body {
    padding-right: 30px;
  }
}

.faq-section {
  position: relative;
  margin: 0 100px;
}
@media (max-width: 1199px) {
  .faq-section {
    margin: 0 40px;
  }
}
@media (max-width: 991px) {
  .faq-section {
    margin: 0 30px;
  }
}
@media (max-width: 575px) {
  .faq-section {
    margin: 0 15px;
  }
}
.faq-section .left-shape {
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 1199px) {
  .faq-section .left-shape {
    display: none;
  }
}
.faq-section .right-shape {
  position: absolute;
  right: 50px;
  bottom: 40px;
}
@media (max-width: 1199px) {
  .faq-section .right-shape {
    display: none;
  }
}

.feature-card-item {
  position: relative;
}
.feature-card-item .feature-content {
  margin-top: 30px;
}
.feature-card-item .feature-content h3 {
  font-size: 36px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .feature-card-item .feature-content h3 {
    font-size: 25px;
  }
}
.feature-card-item .feature-content p {
  color: var(--white);
  max-width: 351px;
}

.feature-section {
  position: relative;
}
.feature-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--header);
  top: initial;
  bottom: 60%;
}
@media (max-width: 1199px) {
  .feature-section::before {
    display: none;
  }
}

.work-process-card-items {
  margin-top: 30px;
  text-align: center;
  position: relative;
}
.work-process-card-items .line-shape {
  position: absolute;
  top: 82px;
  left: 300px;
}
@media (max-width: 1199px) {
  .work-process-card-items .line-shape {
    display: none;
  }
}
.work-process-card-items .work-process-icon {
  width: 188px;
  height: 188px;
  background-color: #F8F8F8;
  border-radius: 50%;
  text-align: center;
  line-height: 188px;
  margin: 0 auto;
  position: relative;
}
.work-process-card-items .work-process-icon .number {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -30px;
}
.work-process-card-items .work-peocess-content {
  margin-top: 30px;
}
.work-process-card-items .work-peocess-content h3 {
  font-size: 20px;
  font-weight: 600;
}
.work-process-card-items .work-peocess-content p {
  max-width: 333px;
  margin: 0 auto;
}

.work-process-section {
  position: relative;
}
.work-process-section .work-process-shape-1 {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 1600px) {
  .work-process-section .work-process-shape-1 {
    display: none;
  }
}
.work-process-section .work-process-shape-2 {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 1600px) {
  .work-process-section .work-process-shape-2 {
    display: none;
  }
}

.skil-wrapper .skill-left-item .skill-image {
  max-width: 532px;
}
@media (max-width: 1199px) {
  .skil-wrapper .skill-left-item .skill-image {
    max-width: initial;
  }
}
.skil-wrapper .skill-left-item .skill-image img {
  width: 100%;
  height: 100%;
}
.skil-wrapper .skill-left-item .progress-wrap {
  margin-top: 40px;
}
@media (max-width: 1199px) {
  .skil-wrapper .skill-left-item .progress-wrap {
    margin-top: 30px;
  }
}
.skil-wrapper .skill-left-item .progress-wrap .pro-items {
  width: 100%;
}
.skil-wrapper .skill-left-item .progress-wrap .pro-items:not(:last-child) {
  margin-bottom: 30px;
}
.skil-wrapper .skill-left-item .progress-wrap .pro-items .pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.skil-wrapper .skill-left-item .progress-wrap .pro-items .pro-head .title {
  font-size: 16px;
  font-weight: 500;
}
.skil-wrapper .skill-left-item .progress-wrap .pro-items .pro-head .point {
  font-size: 16px;
  color: var(--header);
}
.skil-wrapper .skill-left-item .progress-wrap .pro-items .progress {
  background: var(--border);
  justify-content: flex-start;
  border-radius: 0px;
  align-items: center;
  position: relative;
  display: flex;
  height: 12px;
  width: 100%;
}
.skil-wrapper .skill-left-item .progress-wrap .pro-items .progress-value {
  animation: load 3s normal forwards;
  border-radius: 0;
  background: var(--theme);
  height: 4px;
  width: 0;
  position: relative;
}
.skil-wrapper .skill-left-item .progress-wrap .pro-items .progress-value::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme);
  top: -4px;
  right: 0;
  left: initial;
  width: 11px;
  height: 11px;
  line-height: 11px;
  border-radius: 50px;
}
.skil-wrapper .skill-left-item .progress-wrap .pro-items .style-two {
  animation: load2 3s normal forwards;
}
.skil-wrapper .skill-left-item .progress-wrap .pro-items .style-three {
  animation: load3 3s normal forwards;
}
@keyframes load {
  0% {
    width: 0;
  }
  100% {
    width: 90%;
  }
}
@keyframes load2 {
  0% {
    width: 0;
  }
  100% {
    width: 70%;
  }
}
@keyframes load3 {
  0% {
    width: 0;
  }
  100% {
    width: 55%;
  }
}
.skil-wrapper .skill-content {
  margin-left: 30px;
}
@media (max-width: 1199px) {
  .skil-wrapper .skill-content {
    margin-left: 0;
  }
}
.skil-wrapper .skill-content .text {
  max-width: 632px;
  margin-top: 25px;
}
.skil-wrapper .skill-content .skill-list-item {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .skil-wrapper .skill-content .skill-list-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.skil-wrapper .skill-content .skill-list-item ul li {
  color: var(--header);
  font-weight: 500;
}
.skil-wrapper .skill-content .skill-list-item ul li:not(:last-child) {
  margin-bottom: 20px;
}
.skil-wrapper .skill-content .skill-list-item ul li svg {
  margin-right: 5px;
}

.chossse-us-wrapper {
  margin-top: 40px;
}
.chossse-us-wrapper .why-chosse-us-content {
  margin-right: 30px;
}
@media (max-width: 1199px) {
  .chossse-us-wrapper .why-chosse-us-content {
    margin-right: 0;
  }
}
.chossse-us-wrapper .why-chosse-us-content .choose-us-left-image {
  margin-left: 250px;
}
@media (max-width: 1199px) {
  .chossse-us-wrapper .why-chosse-us-content .choose-us-left-image {
    margin-left: 0;
  }
}
.chossse-us-wrapper .why-chosse-us-content .choose-us-left-image img {
  width: 100%;
  height: 100%;
}
.chossse-us-wrapper .why-chosse-us-content .choose-us-main-item {
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .chossse-us-wrapper .why-chosse-us-content .choose-us-main-item {
    margin-top: 30px;
  }
}
.chossse-us-wrapper .why-chosse-us-content .choose-us-main-item .choose-us-item {
  justify-content: space-between;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .chossse-us-wrapper .why-chosse-us-content .choose-us-main-item .choose-us-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.chossse-us-wrapper .why-chosse-us-content .choose-us-main-item .choose-us-item .choose-us-icon-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1199px) {
  .chossse-us-wrapper .why-chosse-us-content .choose-us-main-item .choose-us-item .choose-us-icon-item {
    flex-wrap: wrap;
  }
}
.chossse-us-wrapper .why-chosse-us-content .choose-us-main-item .choose-us-item .choose-us-icon-item .icon {
  width: 64px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  border-radius: 100px;
  background-color: #FFF3ED;
  border: 2px solid var(--white);
}
.chossse-us-wrapper .why-chosse-us-content .choose-us-main-item .choose-us-item .choose-us-icon-item .content h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 141%;
}
@media (max-width: 1199px) {
  .chossse-us-wrapper .why-chosse-us-content .choose-us-main-item .choose-us-item .choose-us-icon-item .content h3 {
    font-size: 20px;
  }
}
.chossse-us-wrapper .why-chosse-us-content .choose-us-main-item .choose-us-item .choose-us-icon-item .content p {
  max-width: 267px;
}
.chossse-us-wrapper .choose-us-image-2 {
  height: 558px;
  position: relative;
  z-index: 999;
}
.chossse-us-wrapper .choose-us-image-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(to bottom, #fe5b1b, #f7410c);
  z-index: -1;
}
.chossse-us-wrapper .choose-us-image-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-section-1 {
  position: relative;
}
.feature-section-1 .left-shape {
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 1199px) {
  .feature-section-1 .left-shape {
    display: none;
  }
}

.feature-wrapper-1 .feature-left-item {
  margin-right: 60px;
}
@media (max-width: 1199px) {
  .feature-wrapper-1 .feature-left-item {
    margin-right: 0;
  }
}
.feature-wrapper-1 .feature-left-item .text-image {
  margin-top: 120px;
  text-align: right;
}
@media (max-width: 1199px) {
  .feature-wrapper-1 .feature-left-item .text-image {
    text-align: left;
  }
}
@media (max-width: 991px) {
  .feature-wrapper-1 .feature-left-item .text-image {
    margin-top: 30px;
    text-align: left;
  }
}
.feature-wrapper-1 .feature-left-item h3 {
  font-size: 36px;
  color: var(--text);
  font-weight: 500;
  margin-top: 70px;
  margin-left: 100px;
  text-align: end;
}
@media (max-width: 1199px) {
  .feature-wrapper-1 .feature-left-item h3 {
    font-size: 25px;
    text-align: left;
    margin-left: 0;
    margin-bottom: 10px;
    margin-top: 30px;
  }
}
.feature-wrapper-1 .feature-right-item .feature-icon-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .feature-wrapper-1 .feature-right-item .feature-icon-item {
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
  }
}
.feature-wrapper-1 .feature-right-item .feature-icon-item .feature-items {
  display: flex;
  align-items: center;
  gap: 15px;
}
.feature-wrapper-1 .feature-right-item .feature-icon-item .feature-items .feature-icon {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background: #FFF3ED;
}
.feature-wrapper-1 .feature-right-item .feature-icon-item .feature-items .content h3 {
  font-size: 18px;
}
.feature-wrapper-1 .feature-right-item .feature-image img {
  width: 100%;
  height: 100%;
}

.feature-wrapper-2 .feature-left-item-2 .feature-image {
  margin-bottom: 60px;
}
.feature-wrapper-2 .feature-left-item-2 .feature-image img {
  width: 100%;
  height: 100%;
}
.feature-wrapper-2 .feature-left-item-2 .feature-icon-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 1199px) {
  .feature-wrapper-2 .feature-left-item-2 .feature-icon-item {
    flex-wrap: wrap;
  }
}
.feature-wrapper-2 .feature-left-item-2 .feature-icon-item.style-2 {
  border-bottom: 1px solid var(--border);
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.feature-wrapper-2 .feature-left-item-2 .feature-icon-item .icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background-color: var(--bg-3);
}
.feature-wrapper-2 .feature-left-item-2 .feature-icon-item .icon img {
  transition: all 0.4s ease-in-out;
  display: inline-block;
}
.feature-wrapper-2 .feature-left-item-2 .feature-icon-item .content p {
  max-width: 380px;
}
.feature-wrapper-2 .feature-left-item-2 .feature-icon-item:hover .icon img {
  transform: scaleX(-1) !important;
}
.feature-wrapper-2 .feature-right-item-2 {
  margin-left: 20px;
}
@media (max-width: 1199px) {
  .feature-wrapper-2 .feature-right-item-2 {
    margin-left: 0;
  }
}
.feature-wrapper-2 .feature-right-item-2 .text {
  max-width: 684px;
  margin-top: 20px;
}
.feature-wrapper-2 .feature-right-item-2 .feature-image-item {
  display: flex;
  gap: 30px;
  margin-top: 60px;
}
@media (max-width: 1199px) {
  .feature-wrapper-2 .feature-right-item-2 .feature-image-item {
    margin-top: 30px;
  }
}
@media (max-width: 991px) {
  .feature-wrapper-2 .feature-right-item-2 .feature-image-item {
    flex-wrap: wrap;
    margin-top: 30px;
    align-items: center;
  }
}
.feature-wrapper-2 .feature-right-item-2 .feature-image-item .feature-image-2 img {
  width: 100%;
  height: 100%;
}
.feature-wrapper-2 .feature-right-item-2 .feature-image-item .feature-count-box {
  border: 1px solid var(--border);
  padding: 40px 30px;
  text-align: center;
}
@media (max-width: 575px) {
  .feature-wrapper-2 .feature-right-item-2 .feature-image-item .feature-count-box {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .feature-wrapper-2 .feature-right-item-2 .feature-image-item .feature-count-box {
    margin: 0 auto;
  }
}
.feature-wrapper-2 .feature-right-item-2 .feature-image-item .feature-count-box .feature-count.style-2 {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.feature-wrapper-2 .feature-right-item-2 .feature-image-item .feature-count-box .feature-count.style-3 {
  margin-bottom: -20px;
}
.feature-wrapper-2 .feature-right-item-2 .feature-image-item .feature-count-box .feature-count h2 {
  color: var(--theme);
}

.gallery-item {
  position: relative;
}
.gallery-item.style-2 {
  margin-top: 30px;
}
.gallery-item .gallery-iamge {
  position: relative;
  z-index: 9;
  overflow: hidden;
}
.gallery-item .gallery-iamge img {
  width: 100%;
  height: 100%;
}
.gallery-item .gallery-iamge .icon {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  color: var(--white);
  z-index: 999;
  font-size: 32px;
}
.gallery-item .gallery-iamge:before, .gallery-item .gallery-iamge:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 50%;
  top: 0;
  left: 0;
  background: rgba(14, 18, 29, 0.5);
  transform: translateX(-100%) rotate(15deg);
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.gallery-item .gallery-iamge:after {
  left: auto;
  right: 0;
  transform: translateX(100%) rotate(-15deg);
}
.gallery-item:hover .gallery-iamge .icon {
  top: 50%;
  opacity: 1;
  visibility: visible;
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  color: var(--white);
  background-color: var(--theme);
}
.gallery-item:hover .gallery-iamge:before, .gallery-item:hover .gallery-iamge:after {
  transform: none;
  opacity: 1;
  visibility: visible;
}

.footer-widget-wrapper {
  padding: 120px 0;
}
@media (max-width: 1199px) {
  .footer-widget-wrapper {
    padding: 70px 0;
  }
}
@media (max-width: 991px) {
  .footer-widget-wrapper {
    padding: 50px 0;
  }
}
.footer-widget-wrapper.style-2 {
  padding: 100px 0 80px;
}
@media (max-width: 991px) {
  .footer-widget-wrapper.style-2 {
    padding: 100px 0 70px;
  }
}
.footer-widget-wrapper.style-2 .single-footer-widget .wid-title h3 {
  color: var(--header);
  font-size: 24px;
  font-weight: 600;
  line-height: 141%;
}
.footer-widget-wrapper.style-2 .single-footer-widget .footer-content p {
  color: var(--text);
}
.footer-widget-wrapper.style-2 .single-footer-widget .social-icon {
  gap: 15px;
  margin-top: 40px;
}
.footer-widget-wrapper.style-2 .single-footer-widget .social-icon a {
  display: inline-block;
  width: 46px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  background: #3D4250;
  color: var(--white);
  transition: all 0.4s ease-in-out;
}
.footer-widget-wrapper.style-2 .single-footer-widget .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}
.footer-widget-wrapper.style-2 .single-footer-widget .list-items li i {
  color: var(--text);
}
.footer-widget-wrapper.style-2 .single-footer-widget .list-items li a {
  color: var(--text);
}
.footer-widget-wrapper.style-2 .single-footer-widget .list-items li:hover i {
  color: var(--theme);
}
.footer-widget-wrapper.style-2 .single-footer-widget .recent-post-area .recent-items .recent-content h5 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: var(--header);
}
.footer-widget-wrapper.style-2 .single-footer-widget .recent-post-area .recent-items .recent-content h5 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(#FF5E14, #FF5E14);
}
.footer-widget-wrapper.style-2 .single-footer-widget .recent-post-area .recent-items .recent-content ul li {
  color: var(--header);
}
.footer-widget-wrapper .single-footer-widget {
  margin-top: 30px;
  position: relative;
}
.footer-widget-wrapper .single-footer-widget .wid-title {
  margin-bottom: 30px;
}
.footer-widget-wrapper .single-footer-widget .wid-title h4 {
  color: var(--white);
  position: relative;
  padding-bottom: 15px;
}
.footer-widget-wrapper .single-footer-widget .wid-title h4::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 55px;
  height: 2px;
  background-color: var(--theme);
}
.footer-widget-wrapper .single-footer-widget .wid-title h4::after {
  position: absolute;
  bottom: 0;
  left: 60px;
  content: "";
  width: 25px;
  height: 2px;
  background-color: var(--theme);
}
.footer-widget-wrapper .single-footer-widget .footer-content p {
  color: var(--white);
  max-width: 341px;
}
.footer-widget-wrapper .single-footer-widget .footer-contact-item {
  margin-top: 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.footer-widget-wrapper .single-footer-widget .footer-contact-item .contact-item span {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 5px;
  display: inline-block;
}
.footer-widget-wrapper .single-footer-widget .footer-contact-item .contact-item .list li {
  color: #B2B2B2;
}
.footer-widget-wrapper .single-footer-widget .footer-contact-item .contact-item .list li i {
  width: 26px;
  height: 26px;
  text-align: center;
  line-height: 26px;
  background-color: var(--theme);
  margin-right: 10px;
  color: var(--white);
  font-size: 12px;
}
.footer-widget-wrapper .single-footer-widget .footer-contact-item .contact-item .list li a {
  color: #B2B2B2;
}
.footer-widget-wrapper .single-footer-widget .list-items li {
  transition: all 0.4s ease-in-out;
}
.footer-widget-wrapper .single-footer-widget .list-items li i {
  margin-right: 10px;
  color: #B2B2B2;
}
.footer-widget-wrapper .single-footer-widget .list-items li a {
  color: #B2B2B2;
}
.footer-widget-wrapper .single-footer-widget .list-items li:not(:last-child) {
  margin-bottom: 15px;
}
.footer-widget-wrapper .single-footer-widget .list-items li:hover {
  margin-left: 5px;
}
.footer-widget-wrapper .single-footer-widget .list-items li:hover a {
  color: var(--theme);
}
.footer-widget-wrapper .single-footer-widget .recent-post-area .recent-items {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .footer-widget-wrapper .single-footer-widget .recent-post-area .recent-items {
    flex-wrap: wrap;
  }
}
.footer-widget-wrapper .single-footer-widget .recent-post-area .recent-items .recent-content h4 {
  font-size: 18px;
  margin-bottom: 5px;
}
.footer-widget-wrapper .single-footer-widget .recent-post-area .recent-items .recent-content h4 a {
  color: var(--header);
}
.footer-widget-wrapper .single-footer-widget .recent-post-area .recent-items .recent-content h4 a:hover {
  color: var(--theme);
}
.footer-widget-wrapper .single-footer-widget .recent-post-area .recent-items .recent-content ul li {
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
}
.footer-widget-wrapper .single-footer-widget .recent-post-area .recent-items .recent-content ul li i {
  color: var(--theme);
  margin-right: 5px;
}

.footer-section {
  position: relative;
}
.footer-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--header);
  opacity: 0.94;
}

.footer-bottom {
  background: #262A36;
  padding: 20px 0;
  position: relative;
}
.footer-bottom .footer-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .footer-bottom .footer-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.footer-bottom .footer-wrapper p {
  color: var(--white);
}
.footer-bottom .footer-wrapper p span {
  color: var(--theme);
}
.footer-bottom .footer-wrapper .social-icon {
  gap: 15px;
}
.footer-bottom .footer-wrapper .social-icon a {
  display: inline-block;
  width: 46px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  background: #3D4250;
  color: var(--white);
  transition: all 0.4s ease-in-out;
}
.footer-bottom .footer-wrapper .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.footer-section-2 {
  position: relative;
  z-index: 9;
}
.footer-section-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(14, 18, 29, 0.85);
  z-index: -1;
}
.footer-section-2::after {
  position: absolute;
  content: "";
  width: 93%;
  left: 65px;
  top: 34%;
  bottom: 40px;
  background-color: var(--white);
  z-index: -1;
}
@media (max-width: 1199px) {
  .footer-section-2::after {
    top: 260px;
    width: 100%;
    left: 0;
    bottom: 0;
  }
}
@media (max-width: 991px) {
  .footer-section-2::after {
    top: 245px;
  }
}
@media (max-width: 767px) {
  .footer-section-2::after {
    top: 220px;
  }
}
.footer-section-2 .footer-text {
  text-align: center;
  margin-top: 120px;
}
@media (max-width: 1199px) {
  .footer-section-2 .footer-text {
    margin-top: 100px;
  }
}
@media (max-width: 991px) {
  .footer-section-2 .footer-text {
    margin-top: 80px;
  }
}
.footer-section-2 .footer-text span {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  display: inline-block;
  font-family: "Exo", sans-serif;
}
.footer-section-2 .footer-text h2 {
  font-size: 74px;
  font-weight: 500;
  border-bottom: 2px solid var(--white);
  padding-bottom: 10px;
  display: inline-block;
}
.footer-section-2 .footer-text h2 a {
  color: var(--white);
}
@media (max-width: 1199px) {
  .footer-section-2 .footer-text h2 {
    font-size: 60px;
  }
}
@media (max-width: 991px) {
  .footer-section-2 .footer-text h2 {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .footer-section-2 .footer-text h2 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .footer-section-2 .footer-text h2 {
    font-size: 30px;
  }
}
.footer-section-2 .text-image {
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.footer-section-2 .text-image img {
  width: 100%;
  height: 100%;
}
@media (max-width: 1199px) {
  .footer-section-2 .text-image {
    display: none;
  }
}

.footer-bottom-2 {
  padding: 30px 0 70px;
  border-top: 1px solid var(--border);
}
@media (max-width: 1199px) {
  .footer-bottom-2 {
    padding: 30px 0;
  }
}
.footer-bottom-2 p {
  text-align: center;
}

.header-top-section {
  position: relative;
  z-index: 9;
  background-color: var(--header);
}
@media (max-width: 991px) {
  .header-top-section {
    display: none;
  }
}
.header-top-section .container-fluid {
  padding: 0 100px;
}
@media (max-width: 1600px) {
  .header-top-section .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) {
  .header-top-section .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .header-top-section .container-fluid {
    padding: 0 20px;
  }
}

.header-top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.header-top-wrapper .contact-list {
  display: flex;
  align-items: center;
  gap: 40px;
}
.header-top-wrapper .contact-list li {
  color: var(--white);
}
.header-top-wrapper .contact-list li i {
  margin-right: 5px;
  color: var(--white);
}
.header-top-wrapper .contact-list li a {
  color: var(--white);
}
.header-top-wrapper .social-icon {
  gap: 20px;
}
.header-top-wrapper .social-icon span {
  color: var(--white);
}
.header-top-wrapper .social-icon a {
  color: var(--white);
}
.header-top-wrapper .social-icon a:hover {
  color: var(--theme);
}

.header-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: transparent;
}

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

.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: 40px;
}
.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: 700;
  color: var(--header);
  padding: 20px 0;
  text-align: left;
  position: relative;
  text-transform: uppercase;
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li a i {
  margin-left: 4px;
}
.header-main .main-menu ul li a:hover {
  color: var(--theme) !important;
}
.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 100%;
  inset-inline-start: 0;
  min-width: 240px;
  background: var(--white);
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  color: var(--header);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  transform: translateY(10px);
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}
.header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 11;
  font-size: 16px;
  font-weight: 700;
  color: var(--header);
  padding: 0 25px;
  padding-bottom: 11px;
  padding-top: 11px;
  width: 100%;
  border-bottom: 1px solid #eeeeee;
}
.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 {
  background: var(--theme);
  color: var(--white) !important;
}
.header-main .main-menu ul li .submenu li:hover > a::after {
  color: var(--theme);
}
.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%);
  color: var(--theme);
}
.header-main .main-menu ul li .has-homemenu {
  width: 800px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  left: -250px;
  visibility: hidden;
  padding: 30px 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: 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;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 14px 20px;
  color: var(--white) !important;
  width: initial;
  font-size: 14px;
  text-align: center;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--white) !important;
}
.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 .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
}
.header-main .main-menu ul li:hover > a {
  color: var(--theme);
}
.header-main .main-menu ul li:hover > a::after {
  color: var(--theme);
}
.header-main .main-menu ul li:hover > .submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}
.header-main .sidebar__toggle {
  cursor: pointer;
  color: var(--header);
  font-size: 20px;
}

.header-1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
}
.header-1 .container-fluid {
  padding: 0 100px;
}
@media (max-width: 1600px) {
  .header-1 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) {
  .header-1 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .header-1 .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .header-1 .header-main .header-left .header-logo img {
    width: 150px;
  }
}
.header-1 .header-main .header-left .header-logo-2 {
  display: none;
}
@media (max-width: 575px) {
  .header-1 .header-main .header-left .header-logo-2 img {
    width: 150px;
  }
}
.header-1 .header-main ul li a {
  color: var(--white);
}
.header-1 .header-main .header-right {
  gap: 30px;
}
@media (max-width: 1199px) {
  .header-1 .header-main .header-right {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .header-1 .header-main .header-right {
    gap: 10px;
  }
}
@media (max-width: 1199px) {
  .header-1 .header-main .header-right .header-button {
    display: none;
  }
}
.header-1 .header-main .header-right .header__hamburger .sidebar__toggle {
  color: var(--white);
}

.header-2 .container-fluid {
  padding: 0 100px;
}
@media (max-width: 1600px) {
  .header-2 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) {
  .header-2 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .header-2 .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .header-2 .header-main .header-left .logo .header-logo img {
    width: 150px;
  }
}
@media (max-width: 575px) {
  .header-2 .header-main .header-left .logo .header-logo-2 img {
    width: 150px;
  }
}
@media (max-width: 1199px) {
  .header-2 .header-main .header-right .header-button {
    display: none;
  }
}
.header-2.header-3 {
  border-bottom: 1px solid var(--border);
}

.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.9s;
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}
.sticky.header-1 .header-main .header-left .header-logo {
  display: none;
}
.sticky.header-1 .header-main .header-left .header-logo-2 {
  display: block;
}
@media (max-width: 575px) {
  .sticky.header-1 .header-main .header-left .header-logo-2 img {
    width: 150px;
  }
}
.sticky.header-1 .header-main ul li a {
  color: var(--header);
}
.sticky.header-1 .header-main .header__hamburger .sidebar__toggle {
  color: var(--header);
}
.sticky.header-2 .header-main {
  padding: 15px 0;
  border-radius: 0;
}
.sticky.header-5 .header-main .main-menu ul li a {
  color: var(--header);
}
.sticky.header-5 .header-main .header-right .search-icon {
  border: 1px solid var(--header);
  color: var(--header);
}

.offcanvas__info {
  background: var(--bg) none repeat scroll 0 0;
  border-left: 2px solid var(--theme);
  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__logo a img {
  width: 150px;
}

.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;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  position: relative;
  z-index: 9;
  cursor: pointer;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--white);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact h1 {
  font-size: 24px;
  color: var(--header);
}
.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: var(--theme);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
  text-transform: initial;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
  width: 100%;
  padding: 16px 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: var(--theme);
  color: var(--white);
}

.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;
  }
}
.breadcrumb-wrapper {
  position: relative;
}
.breadcrumb-wrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, rgba(14, 18, 29, 0.9) 7.24%, rgba(14, 18, 29, 0.8) 19.95%, rgba(14, 18, 29, 0.68) 35.78%, rgba(14, 18, 29, 0) 67.24%);
}
.breadcrumb-wrapper .page-heading {
  padding: 180px 0 180px;
  position: relative;
}
@media (max-width: 1199px) {
  .breadcrumb-wrapper .page-heading {
    padding: 100px 0 100px;
    text-align: center;
  }
}
@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading {
    padding: 80px 0 80px;
  }
}
.breadcrumb-wrapper .page-heading h2 {
  color: var(--white);
  font-size: 54px;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading h2 {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading h2 {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading h2 {
    font-size: 40px;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1199px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-list {
    justify-content: center;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-list li {
  color: var(--white);
  font-weight: 600;
  font-size: 18px;
}
.breadcrumb-wrapper .page-heading .breadcrumb-list li i {
  color: var(--white);
}
.breadcrumb-wrapper .page-heading .breadcrumb-list li a {
  color: var(--theme);
}

.error-items {
  text-align: center;
}
.error-items .error-image {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .error-items .error-image {
    margin-bottom: 30px;
  }
}
.error-items .error-image img {
  width: 100%;
  height: 100%;
}
.error-items h2 {
  font-size: 64px;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .error-items h2 {
    font-size: 50px;
  }
}
@media (max-width: 991px) {
  .error-items h2 {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .error-items h2 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .error-items h2 {
    font-size: 30px;
  }
}
.error-items h2 span {
  color: var(--theme);
}
.error-items p {
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .error-items p {
    margin-bottom: 30px;
  }
}

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

/* 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;
}

.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: 60px;
  height: 60px;
  -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;
}

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

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

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

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

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

.swiper-dot {
  text-align: center;
  margin-top: 50px;
  z-index: 1;
}
.swiper-dot .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  transition: 0.6s;
  background: var(--header);
  opacity: 1;
  border-radius: 10px;
}
.swiper-dot .swiper-pagination-bullet:not(:last-child) {
  margin-right: 20px;
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: rgb(40, 44, 50);
  transition: 0.6s;
  position: relative;
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  width: 21px;
  height: 21px;
  line-height: 21px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid rgb(0, 56, 101);
  content: "";
}
.swiper-dot.style-2 .swiper-pagination-bullet {
  background: var(--theme);
}
.swiper-dot.style-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme);
}
.swiper-dot.style-2 .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  border: 2px solid var(--header);
}

.page-nav-wrap {
  margin-top: 60px;
}
@media (max-width: 1199px) {
  .page-nav-wrap {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .page-nav-wrap.style-2 {
    margin-top: 0px;
  }
}
.page-nav-wrap ul li {
  display: inline-block;
}
.page-nav-wrap ul li.active .page-numbers {
  background-color: var(--theme);
  color: var(--white);
}
.page-nav-wrap ul li .page-numbers.current {
  background-color: var(--theme);
  color: var(--white);
}
.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 56px;
  height: 56px;
  text-align: center;
  line-height: 56px;
  border-radius: 0;
  background: #EEE;
  color: var(--black);
  font-weight: 400;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
}
@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
}
.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
}
.page-nav-wrap ul li .page-numbers:hover {
  background-color: var(--theme);
  color: var(--white);
}

.array-buttons {
  display: grid;
  gap: 60px;
}
@media (max-width: 1199px) {
  .array-buttons {
    flex-wrap: wrap;
  }
}
.array-buttons .array-prev {
  width: 56px;
  height: 56px;
  line-height: 56px;
  border-radius: 0;
  text-align: center;
  background-color: var(--header);
  color: var(--white);
  transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .array-buttons .array-prev {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
}
.array-buttons .array-prev:hover {
  background-color: var(--theme);
  color: var(--white);
}
.array-buttons .array-next {
  width: 56px;
  height: 56px;
  line-height: 56px;
  border-radius: 0;
  text-align: center;
  background-color: var(--theme);
  color: var(--white);
  transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .array-buttons .array-next {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
}
.array-buttons .array-next:hover {
  background-color: var(--header);
  color: var(--white);
}

.swiper-dot-3 {
  margin-top: 50px;
  z-index: 1;
}
.swiper-dot-3 .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  transition: 0.6s;
  background: var(--header);
  opacity: 1;
  border-radius: 10px;
}
.swiper-dot-3 .swiper-pagination-bullet:not(:last-child) {
  margin-right: 20px;
}
.swiper-dot-3 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: rgb(40, 44, 50);
  transition: 0.6s;
  position: relative;
}
.swiper-dot-3 .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  width: 14px;
  height: 14px;
  line-height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: var(--theme);
  content: "";
}

.swiper-dot2 {
  text-align: center;
}
.swiper-dot2 .swiper-pagination-bullet {
  width: 36px;
  height: 3px;
  transition: 0.6s;
  background-color: var(--white);
  opacity: 1;
  border-radius: 0;
  position: relative;
}
.swiper-dot2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme);
  transition: 0.6s;
  position: relative;
  width: 36px;
  border-radius: 0;
}

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

.hero-1 {
  position: relative;
  padding: 430px 0 130px;
}
@media (max-width: 1199px) {
  .hero-1 {
    padding: 180px 0 100px;
  }
}
@media (max-width: 991px) {
  .hero-1 {
    padding: 150px 0 80px;
  }
}
.hero-1 .container-fluid {
  padding: 0 100px;
}
@media (max-width: 1199px) {
  .hero-1 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 991px) {
  .hero-1 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 767px) {
  .hero-1 .container-fluid {
    padding: 0 30px;
  }
}
.hero-1::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(4, 2, 0, 0) 0%, rgba(4, 2, 0, 0.74) 80.87%);
}
.hero-1 .hero-wrapper {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
@media (max-width: 1600px) {
  .hero-1 .hero-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.hero-1 .hero-wrapper .left-content {
  position: relative;
}
.hero-1 .hero-wrapper .left-content h1 {
  color: var(--white);
  font-size: 96px;
  font-weight: 700;
}
@media (max-width: 1199px) {
  .hero-1 .hero-wrapper .left-content h1 {
    font-size: 55px;
  }
}
@media (max-width: 991px) {
  .hero-1 .hero-wrapper .left-content h1 {
    font-size: 45px;
  }
}
@media (max-width: 767px) {
  .hero-1 .hero-wrapper .left-content h1 {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .hero-1 .hero-wrapper .left-content h1 {
    font-size: 30px;
  }
}
.hero-1 .hero-wrapper .right-content {
  position: relative;
}
.hero-1 .hero-wrapper .right-content p {
  color: var(--white);
}
.hero-1 .hero-wrapper .right-content .hero-us-btn {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .hero-1 .hero-wrapper .right-content .hero-us-btn {
    flex-wrap: wrap;
  }
}
.hero-1 .hero-wrapper .right-content .hero-us-btn .client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}
.hero-1 .hero-wrapper .right-content .hero-us-btn .client-info .text .title {
  margin-bottom: 5px;
  color: var(--white);
}
.hero-1 .hero-wrapper .right-content .hero-us-btn .client-info .text span {
  font-weight: 700;
  color: var(--white);
  font-size: 16px;
}
@media (max-width: 767px) {
  .hero-1 .hero-wrapper .right-content .hero-us-btn .client-info .text span {
    text-align: left;
  }
}

.hero-2 {
  position: relative;
  padding: 0px 0 0px;
  z-index: 9;
}
@media (max-width: 1600px) {
  .hero-2 {
    overflow: hidden;
  }
}
@media (max-width: 1199px) {
  .hero-2 {
    padding: 80px 0 0;
  }
}
.hero-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--bg-3);
  z-index: -1;
  top: 21px;
}
@media (max-width: 1199px) {
  .hero-2::before {
    top: 0;
  }
}
.hero-2 .left-shape {
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 1199px) {
  .hero-2 .left-shape {
    display: none;
  }
}
.hero-2 .container-fluid {
  padding: 0 100px;
}
@media (max-width: 1600px) {
  .hero-2 .container-fluid {
    padding: 0 60px;
  }
}
@media (max-width: 1199px) {
  .hero-2 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 991px) {
  .hero-2 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 767px) {
  .hero-2 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 575px) {
  .hero-2 .container-fluid {
    padding: 0 30px;
  }
}
.hero-2 .hero-content-box {
  background-color: var(--header);
  padding: 80px;
  margin-right: -266px;
  position: relative;
  z-index: 9;
  clip-path: polygon(92% 0, 100% 12%, 100% 100%, 50% 100%, 0 100%, 0 0);
}
@media (max-width: 1600px) {
  .hero-2 .hero-content-box {
    padding: 50px;
    margin-right: -230px;
  }
}
@media (max-width: 1199px) {
  .hero-2 .hero-content-box {
    padding: 30px;
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .hero-2 .hero-content-box {
    padding: 50px;
  }
}
@media (max-width: 767px) {
  .hero-2 .hero-content-box {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .hero-2 .hero-content-box {
    padding: 30px;
  }
}
.hero-2 .hero-content-box h2 {
  font-size: 185px;
  font-weight: 800;
  line-height: 41%;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--white);
  color: transparent;
  position: absolute;
  top: 85px;
  left: 60px;
  opacity: 0.05;
}
@media (max-width: 1600px) {
  .hero-2 .hero-content-box h2 {
    font-size: 150px;
  }
}
@media (max-width: 1199px) {
  .hero-2 .hero-content-box h2 {
    display: none;
  }
}
.hero-2 .hero-content-box .hero-list {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .hero-2 .hero-content-box .hero-list {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.hero-2 .hero-content-box .hero-list h3 {
  color: var(--theme);
  font-size: 20px;
  font-weight: 600;
}
.hero-2 .hero-content-box h1 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 64px;
  font-weight: 700;
}
@media (max-width: 1600px) {
  .hero-2 .hero-content-box h1 {
    font-size: 45px;
  }
}
@media (max-width: 1399px) {
  .hero-2 .hero-content-box h1 {
    font-size: 40px;
  }
}
@media (max-width: 1199px) {
  .hero-2 .hero-content-box h1 {
    font-size: 35px;
  }
}
@media (max-width: 991px) {
  .hero-2 .hero-content-box h1 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .hero-2 .hero-content-box h1 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .hero-2 .hero-content-box h1 {
    font-size: 25px;
  }
}
.hero-2 .hero-content-box h1 span {
  color: var(--theme);
}
.hero-2 .hero-content-box p {
  max-width: 607px;
  color: var(--white);
}
.hero-2 .hero-content-box .hero-button {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}
@media (max-width: 1199px) {
  .hero-2 .hero-content-box .hero-button {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
  }
}
.hero-2 .hero-content-box .hero-button .theme-btn::before {
  background-color: var(--white);
}
.hero-2 .hero-content-box .hero-button .theme-btn::after {
  background-color: var(--white);
}
.hero-2 .hero-content-box .hero-button .theme-btn:hover {
  color: var(--theme);
}
.hero-2 .hero-image {
  margin-right: -100px;
  position: relative;
}
@media (max-width: 1199px) {
  .hero-2 .hero-image {
    margin-right: 0;
  }
}
.hero-2 .hero-image img {
  width: 100%;
  height: 100%;
}
.hero-2 .hero-image .hero-info-item {
  display: flex;
  align-items: center;
  gap: 160px;
  background-color: var(--bg-3);
  padding: 60px;
  position: absolute;
  right: 0;
  bottom: -80px;
}
@media (max-width: 1600px) {
  .hero-2 .hero-image .hero-info-item {
    padding: 50px;
    gap: 90px;
    bottom: 0;
    z-index: 9;
  }
}
@media (max-width: 1199px) {
  .hero-2 .hero-image .hero-info-item {
    bottom: 0;
    position: static;
    padding: 20px 0;
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .hero-2 .hero-image .hero-info-item {
    padding: 50px 0;
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .hero-2 .hero-image .hero-info-item {
    padding: 40px 0;
  }
}
@media (max-width: 575px) {
  .hero-2 .hero-image .hero-info-item {
    padding: 30px 0;
  }
}
.hero-2 .hero-image .hero-info-item:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--border);
  width: 1px;
  left: 40%;
}
@media (max-width: 1199px) {
  .hero-2 .hero-image .hero-info-item:before {
    display: none;
  }
}
.hero-2 .hero-image .hero-info-item::after {
  position: absolute;
  content: "";
  background-color: var(--border);
  width: 1px;
  right: 30%;
  top: 0;
  bottom: 0;
}
@media (max-width: 1199px) {
  .hero-2 .hero-image .hero-info-item::after {
    display: none;
  }
}
.hero-2 .hero-image .hero-info-item .shape {
  position: absolute;
  left: 20px;
  top: 20px;
}
@media (max-width: 1199px) {
  .hero-2 .hero-image .hero-info-item .shape {
    display: none;
  }
}
.hero-2 .hero-image .hero-info-item .client-info .text {
  font-weight: 400;
  font-size: 16px;
  line-height: 141%;
}
.hero-2 .hero-image .hero-info-item .client-info .client-image {
  margin-top: 10px;
  margin-bottom: 10px;
}
.hero-2 .hero-image .hero-info-item .client-info .client-image img {
  width: initial;
  height: initial;
}
.hero-2 .hero-image .hero-info-item .client-info h3 {
  font-size: 16px;
  font-weight: 600;
}
.hero-2 .hero-image .hero-info-item .video {
  position: relative;
  width: 150px;
  height: 150px;
  line-height: 150px;
  text-align: center;
  border-radius: 100%;
  background-color: var(--theme);
  z-index: 999;
}
@media (max-width: 767px) {
  .hero-2 .hero-image .hero-info-item .video {
    width: 100px;
    height: 100px;
    line-height: 100px;
    font-size: 18px;
  }
}
.hero-2 .hero-image .hero-info-item .video .video-btn {
  text-align: center;
  color: var(--white);
  display: inline-block;
  text-align: center;
  font-size: 24px;
  z-index: 999;
  position: absolute;
  z-index: 99;
  width: 80px;
  height: 80px;
  line-height: 80px;
  background-color: transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid var(--white);
  border-radius: 100%;
}
@media (max-width: 1199px) {
  .hero-2 .hero-image .hero-info-item .video .video-btn {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
}
.hero-2 .hero-image .hero-info-item .video .video-btn i {
  z-index: 99;
  position: relative;
}
.hero-2 .hero-image .hero-info-item .video .circle-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-2 .hero-image .hero-info-item .video .circle-image img {
  animation: cir36 10s linear infinite;
  width: initial;
  height: initial;
}
@media (max-width: 575px) {
  .hero-2 .hero-image .hero-info-item .video .circle-image img {
    width: 80px;
  }
}
.hero-2 .hero-image .hero-info-item .right-content h4 {
  font-size: 20px;
  font-weight: 600;
}
.hero-2 .hero-image .hero-info-item .right-content h5 {
  color: var(--theme);
  margin-bottom: 5px;
  margin-top: 5px;
  font-size: 48px;
}
@media (max-width: 1199px) {
  .hero-2 .hero-image .hero-info-item .right-content h5 {
    font-size: 35px;
  }
}
@media (max-width: 991px) {
  .hero-2 .hero-image .hero-info-item .right-content h5 {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .hero-2 .hero-image .hero-info-item .right-content h5 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .hero-2 .hero-image .hero-info-item .right-content h5 {
    font-size: 30px;
  }
}
@media (max-width: 470px) {
  .hero-2 .hero-image .hero-info-item .right-content h5 {
    font-size: 25px;
  }
}

.hero-3 {
  padding: 120px 0 0;
  position: relative;
}
@media (max-width: 1199px) {
  .hero-3 {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  .hero-3 {
    padding: 80px 0;
  }
}
.hero-3 .right-shape {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}
.hero-3 .hero-left-content {
  position: relative;
}
.hero-3 .hero-left-content .text {
  font-size: 20px;
  font-weight: 600;
  color: var(--theme);
  text-transform: uppercase;
  position: relative;
  padding-right: 95px;
  display: inline-block;
  margin-bottom: 15px;
}
.hero-3 .hero-left-content .text::before {
  position: absolute;
  content: "";
  left: initial;
  right: 0;
  top: 10px;
  background-color: var(--theme);
  height: 2px;
  width: 80px;
}
.hero-3 .hero-left-content h1 {
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.hero-3 .hero-left-content h1 span {
  color: var(--theme);
  font-size: 110px;
  font-weight: 500;
}
@media (max-width: 1600px) {
  .hero-3 .hero-left-content h1 span {
    font-size: 70px;
  }
}
@media (max-width: 1199px) {
  .hero-3 .hero-left-content h1 span {
    font-size: 60px;
  }
}
@media (max-width: 991px) {
  .hero-3 .hero-left-content h1 span {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .hero-3 .hero-left-content h1 span {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .hero-3 .hero-left-content h1 span {
    font-size: 30px;
  }
}
.hero-3 .hero-left-content h2 {
  font-size: 24px;
  font-weight: 600;
  line-height: 141%;
}
@media (max-width: 1399px) {
  .hero-3 .hero-left-content h2 {
    font-size: 20px;
  }
}
.hero-3 .hero-left-content h6 {
  font-weight: 500;
}
.hero-3 .hero-right-content {
  margin-right: -100px;
  position: relative;
}
@media (max-width: 1199px) {
  .hero-3 .hero-right-content {
    margin-right: 0;
  }
}
.hero-3 .hero-right-content .hero-count {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 1199px) {
  .hero-3 .hero-right-content .hero-count {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.hero-3 .hero-right-content .hero-count h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 141%;
}
@media (max-width: 1199px) {
  .hero-3 .hero-right-content .hero-count h3 {
    font-size: 20px;
  }
}
.hero-3 .hero-right-content .hero-count h4 {
  font-size: 16px;
  font-weight: 400;
  color: var(--header);
}
.hero-3 .hero-right-content p {
  margin-top: 60px;
}
@media (max-width: 1199px) {
  .hero-3 .hero-right-content p {
    margin-top: 30px;
  }
}
.hero-3 .hero-right-content p span {
  font-weight: 600;
}
.hero-3 .hero-image {
  margin-right: -30%;
  position: relative;
  margin-top: 20px;
  z-index: 9;
}
@media (max-width: 1199px) {
  .hero-3 .hero-image {
    margin-right: 0;
  }
}
.hero-3 .hero-image img {
  width: 100%;
  height: 100%;
}
.hero-3 .hero-image .video-btn {
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  background-color: var(--header);
  color: var(--white);
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .hero-3 .hero-image .video-btn {
    width: 70px;
    height: 70px;
    line-height: 70px;
  }
}
@media (max-width: 1199px) {
  .hero-3 .hero-image .video-btn {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

.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: var(--white) !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: var(--white) !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;
  color: var(--header);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  text-transform: capitalize;
  border-bottom: 1px solid var(--border) !important;
  border: none;
}
.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

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

.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

.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;
}

.news-box-items {
  margin-top: 30px;
}
.news-box-items .news-image {
  position: relative;
}
.news-box-items .news-image img {
  width: 100%;
  height: 100%;
}
.news-box-items .news-image .post-date {
  position: absolute;
  display: grid;
  top: 25px;
  left: 20px;
  background-color: var(--theme);
  text-align: center;
}
.news-box-items .news-image .post-date li {
  font-size: 18px;
  font-weight: 700;
  font-family: "Exo", sans-serif;
  color: var(--white);
  padding-top: 10px;
  width: 65px;
  height: 38px;
}
.news-box-items .news-image .post-date li:last-child {
  background-color: var(--header);
  font-size: 14px;
  font-weight: 400;
  font-family: "Public Sans", sans-serif;
  padding: 5px 8px;
  margin: 3px;
  margin-top: 0;
}
.news-box-items .news-content {
  padding: 40px;
  background-color: var(--bg);
}
@media (max-width: 1199px) {
  .news-box-items .news-content {
    padding: 30px;
  }
}
@media (max-width: 470px) {
  .news-box-items .news-content {
    padding: 25px;
  }
}
.news-box-items .news-content .post-box li img {
  margin-right: 10px;
}
.news-box-items .news-content h3 {
  font-weight: 700;
  margin-top: 15px;
  font-size: 24px;
}
@media (max-width: 575px) {
  .news-box-items .news-content h3 {
    font-size: 20px;
  }
}
.news-box-items .news-content h3 a:hover {
  color: var(--theme);
}
.news-box-items .news-content .text-btn {
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  margin-top: 20px;
  text-decoration: underline;
  text-transform: uppercase;
  color: var(--theme);
}
.news-box-items .news-content .text-btn:hover {
  color: var(--black);
}
.news-box-items .news-content .text-btn i {
  margin-left: 5px;
  transform: rotate(-40deg);
  transition: all 0.4s ease-in-out;
}

.news-card-items-3 {
  margin-top: 30px;
}
.news-card-items-3 .news-image {
  position: relative;
}
.news-card-items-3 .news-image .post {
  background-color: var(--theme);
  padding: 18px 12px;
  position: absolute;
  left: 18px;
  top: 18px;
}
.news-card-items-3 .news-image .post h3 {
  font-size: 36px;
  line-height: 1;
  color: var(--white);
  text-align: center;
}
.news-card-items-3 .news-image .post span {
  color: var(--white);
  font-size: 12px;
  font-weight: 400;
}
.news-card-items-3 .news-image img {
  width: 100%;
  height: 100%;
}
.news-card-items-3 .news-content {
  padding: 30px;
  background-color: var(--bg);
}
.news-card-items-3 .news-content .post-list {
  display: flex;
  align-items: center;
  gap: 30px;
}
.news-card-items-3 .news-content .post-list li {
  font-size: 14px;
  font-weight: 400;
}
.news-card-items-3 .news-content .post-list li i {
  margin-right: 5px;
  color: var(--theme);
}
.news-card-items-3 .news-content h3 {
  font-weight: 600;
  margin-bottom: 15px;
}
.news-card-items-3 .news-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.news-card-items-3 .news-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(#FF5E14, #FF5E14);
}
.news-card-items-3 .news-content p {
  border-bottom: 1px solid var(--border);
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.news-card-items-3 .news-content .text-btn {
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  text-decoration: underline;
  text-transform: uppercase;
  color: var(--theme);
}
.news-card-items-3 .news-content .text-btn:hover {
  color: var(--black);
}
.news-card-items-3 .news-content .text-btn i {
  margin-left: 5px;
  transform: rotate(-40deg);
  transition: all 0.4s ease-in-out;
}
.news-card-items-3.style-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .news-card-items-3.style-2 {
    flex-wrap: wrap;
    background-color: var(--bg);
  }
}
.news-card-items-3.style-2 .news-image img {
  width: initial;
  height: initial;
}
@media (max-width: 1199px) {
  .news-card-items-3.style-2 .news-image {
    flex-basis: 100%;
  }
  .news-card-items-3.style-2 .news-image img {
    width: 100%;
    height: 100%;
  }
}
.news-card-items-3.style-2 .news-content {
  padding: 30px 20px;
  background-color: var(--bg);
}
.news-card-items-3.style-2 .news-content h4 {
  font-weight: 600;
  margin-bottom: 15px;
}
.news-card-items-3.style-2 .news-content h4 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.news-card-items-3.style-2 .news-content h4 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(#FF5E14, #FF5E14);
}
.news-card-items-3.style-2 .news-content p {
  margin-bottom: 18px;
  padding-bottom: 18px;
}
.news-card-items-3.style-3 {
  margin-top: 20px;
}

.news-card-items-1 {
  margin-top: 30px;
}
.news-card-items-1 .news-image {
  overflow: hidden;
}
.news-card-items-1 .news-image img {
  width: 100%;
  height: 100%;
  transform: scale(1.02);
  transition: all 1.5s ease-out;
}
.news-card-items-1 .news-content {
  padding: 30px 0 0;
}
.news-card-items-1 .news-content .post-list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .news-card-items-1 .news-content .post-list {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.news-card-items-1 .news-content .post-list li {
  font-size: 14px;
  font-weight: 400;
}
.news-card-items-1 .news-content .post-list li i {
  margin-right: 5px;
  color: var(--theme);
}
.news-card-items-1 .news-content h3 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}
@media (max-width: 1399px) {
  .news-card-items-1 .news-content h3 {
    font-size: 20px;
  }
}
.news-card-items-1 .news-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.news-card-items-1 .news-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(#FF5E14, #FF5E14);
}
.news-card-items-1 .news-content .text-btn {
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  text-decoration: underline;
  text-transform: uppercase;
  color: var(--theme);
}
.news-card-items-1 .news-content .text-btn:hover {
  color: var(--black);
}
.news-card-items-1 .news-content .text-btn i {
  margin-left: 5px;
  transform: rotate(-40deg);
  transition: all 0.4s ease-in-out;
}
.news-card-items-1:hover .news-image img {
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}

.news-standard-items {
  margin-bottom: 20px;
}
.news-standard-items .news-image img {
  width: 100%;
  height: 100%;
}
.news-standard-items .news-content {
  padding: 30px 0;
}
.news-standard-items .news-content .post-list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .news-standard-items .news-content .post-list {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.news-standard-items .news-content .post-list li {
  font-size: 14px;
  font-weight: 400;
}
.news-standard-items .news-content .post-list li i {
  margin-right: 5px;
  color: var(--theme);
}
.news-standard-items .news-content h3 {
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 36px;
}
@media (max-width: 1199px) {
  .news-standard-items .news-content h3 {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  .news-standard-items .news-content h3 {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .news-standard-items .news-content h3 {
    font-size: 25px;
  }
}
.news-standard-items .news-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.news-standard-items .news-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(#FF5E14, #FF5E14);
}
.news-standard-items .news-content p {
  max-width: 796px;
}
.news-standard-items .news-content .theme-btn {
  margin-top: 40px;
}

.main-sideber .single-sidebar-widget {
  padding: 40px 30px;
  margin-bottom: 30px;
  background-color: var(--bg-3);
}
.main-sideber .single-sidebar-widget .wid-title {
  margin-bottom: 40px;
}
.main-sideber .single-sidebar-widget .wid-title h3 {
  position: relative;
  padding-bottom: 15px;
}
.main-sideber .single-sidebar-widget .wid-title h3::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 40px;
  height: 3px;
  background-color: var(--theme);
}
.main-sideber .single-sidebar-widget .wid-title h3::after {
  position: absolute;
  bottom: 0;
  left: 60px;
  content: "";
  width: 77px;
  height: 3px;
  background-color: var(--header);
}
.main-sideber .single-sidebar-widget .search-widget form {
  width: 100%;
  position: relative;
}
.main-sideber .single-sidebar-widget .search-widget form input {
  background-color: var(--white);
  font-size: 18px;
  font-weight: 400;
  padding: 16px 20px;
  width: 100%;
  border: none;
  color: var(--text);
}
.main-sideber .single-sidebar-widget .search-widget form button {
  position: absolute;
  right: -2px;
  top: 0;
  width: 58px;
  border-radius: 8px;
  font-size: 18px;
  height: 100%;
  background-color: var(--theme);
  color: var(--white);
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.main-sideber .single-sidebar-widget .search-widget form button:hover {
  background-color: var(--header);
}
.main-sideber .single-sidebar-widget .news-widget-categories ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 400;
  background-color: var(--white);
  transition: all 0.4s ease-in-out;
  border-radius: 0;
  line-height: 1;
  padding: 20px;
}
.main-sideber .single-sidebar-widget .news-widget-categories ul li a {
  color: var(--text);
}
.main-sideber .single-sidebar-widget .news-widget-categories ul li a i {
  color: var(--theme);
  margin-right: 5px;
}
.main-sideber .single-sidebar-widget .news-widget-categories ul li span {
  transition: all 0.4s ease-in-out;
  color: var(--text);
}
.main-sideber .single-sidebar-widget .news-widget-categories ul li:not(:last-child) {
  margin-bottom: 20px;
}
.main-sideber .single-sidebar-widget .news-widget-categories ul li:hover a {
  color: var(--theme);
}
.main-sideber .single-sidebar-widget .news-widget-categories ul li:hover a i {
  color: var(--theme);
}
.main-sideber .single-sidebar-widget .news-widget-categories ul li:hover span {
  color: var(--theme);
}
.main-sideber .single-sidebar-widget .recent-post-area .recent-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-sideber .single-sidebar-widget .recent-post-area .recent-items:not(:last-child) {
  margin-bottom: 20px;
}
.main-sideber .single-sidebar-widget .recent-post-area .recent-items .recent-content ul li {
  color: var(--text);
}
.main-sideber .single-sidebar-widget .recent-post-area .recent-items .recent-content ul li i {
  margin-right: 5px;
  color: var(--theme);
}
.main-sideber .single-sidebar-widget .recent-post-area .recent-items .recent-content h4 {
  font-size: 18px;
  margin-top: 10px;
  line-height: 133%;
}
@media (max-width: 1199px) {
  .main-sideber .single-sidebar-widget .recent-post-area .recent-items .recent-content h4 {
    font-size: 16px;
  }
}
.main-sideber .single-sidebar-widget .recent-post-area .recent-items .recent-content h4 a:hover {
  color: var(--theme);
}
.main-sideber .single-sidebar-widget .tagcloud a {
  display: inline-block;
  padding: 14px 16px;
  line-height: 1;
  font-size: 16px;
  font-weight: 400;
  background: var(--white);
  margin-right: 5px;
  text-transform: capitalize;
  margin-bottom: 10px;
  color: var(--text);
  transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .main-sideber .single-sidebar-widget .tagcloud a {
    padding: 10px;
  }
}
.main-sideber .single-sidebar-widget .tagcloud a:last-child {
  margin-right: 0;
}
.main-sideber .single-sidebar-widget .tagcloud a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.news-details-wrapper .news-details-items .news-image img {
  width: 100%;
  height: 100%;
}
.news-details-wrapper .news-details-items .news-content {
  margin-top: 30px;
}
.news-details-wrapper .news-details-items .news-content .post-list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .news-details-wrapper .news-details-items .news-content .post-list {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.news-details-wrapper .news-details-items .news-content .post-list li {
  font-size: 14px;
  font-weight: 400;
}
.news-details-wrapper .news-details-items .news-content .post-list li i {
  margin-right: 5px;
  color: var(--theme);
}
.news-details-wrapper .news-details-items .news-content h3 {
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 36px;
}
@media (max-width: 1199px) {
  .news-details-wrapper .news-details-items .news-content h3 {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .news-details-wrapper .news-details-items .news-content h3 {
    font-size: 25px;
  }
}
@media (max-width: 575px) {
  .news-details-wrapper .news-details-items .news-content h3 {
    font-size: 20px;
  }
}
.news-details-wrapper .news-details-items .news-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.news-details-wrapper .news-details-items .news-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(#FF5E14, #FF5E14);
}
.news-details-wrapper .news-details-items .news-content p {
  max-width: 796px;
}
.news-details-wrapper .news-details-items .news-content .theme-btn {
  margin-top: 40px;
}
.news-details-wrapper .sideber-box {
  padding: 40px 80px;
  border: 1px solid var(--border);
  position: relative;
  margin-top: 50px;
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .news-details-wrapper .sideber-box {
    padding: 60px;
  }
}
@media (max-width: 991px) {
  .news-details-wrapper .sideber-box {
    padding: 50px;
  }
}
@media (max-width: 767px) {
  .news-details-wrapper .sideber-box {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .news-details-wrapper .sideber-box {
    padding: 30px;
  }
}
.news-details-wrapper .sideber-box .quate-icon {
  font-size: 30px;
  color: var(--theme);
  position: absolute;
  left: 30px;
  top: -15px;
}
.news-details-wrapper .sideber-box p {
  font-style: italic;
  font-weight: 500;
  color: var(--header);
}
.news-details-wrapper .sideber-box span {
  color: var(--white);
  font-size: 18px;
  padding: 5px 24px;
  background-color: var(--theme);
  position: absolute;
  left: 90px;
  bottom: -15px;
}
.news-details-wrapper .news-thumb img {
  width: 100%;
  height: 100%;
}
.news-details-wrapper .tag-share-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 30px 0;
}
.news-details-wrapper .tag-share-wrap .tagcloud span {
  font-size: 20px;
  font-weight: 600;
  display: inline-block;
  margin-right: 15px;
  color: var(--header);
  font-family: "Exo", sans-serif;
}
@media (max-width: 1199px) {
  .news-details-wrapper .tag-share-wrap .tagcloud span {
    margin-right: 10px;
  }
}
.news-details-wrapper .tag-share-wrap .tagcloud a {
  display: inline-block;
  padding: 12px 26px;
  line-height: 1;
  background: var(--white);
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
  margin-right: 8px;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) {
  .news-details-wrapper .tag-share-wrap .tagcloud a {
    padding: 10px 7px;
  }
}
@media (max-width: 991px) {
  .news-details-wrapper .tag-share-wrap .tagcloud a {
    padding: 10px 18px;
  }
}
@media (max-width: 1199px) {
  .news-details-wrapper .tag-share-wrap .tagcloud a {
    margin-bottom: 15px;
  }
}
.news-details-wrapper .tag-share-wrap .tagcloud a:hover {
  background-color: var(--theme);
  color: var(--white);
}
.news-details-wrapper .tag-share-wrap .social-share span {
  color: var(--header);
  font-family: "Exo", sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-right: 15px;
  display: inline-block;
}
.news-details-wrapper .tag-share-wrap .social-share a {
  font-size: 16px;
  color: var(--text);
  display: inline-block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  background-color: rgba(14, 18, 29, 0.08);
  border-radius: 100%;
}
.news-details-wrapper .tag-share-wrap .social-share a:not(:last-child) {
  margin-right: 10px;
}
.news-details-wrapper .tag-share-wrap .social-share a:hover {
  color: var(--white);
  background-color: var(--theme);
}
.news-details-wrapper .comments-area {
  margin-top: 40px;
}
.news-details-wrapper .comments-area .comments-heading {
  margin-bottom: 30px;
}
.news-details-wrapper .comments-area .comments-heading h3 {
  font-size: 30px;
}
@media (max-width: 575px) {
  .news-details-wrapper .comments-area .comments-heading h3 {
    font-size: 25px;
  }
}
.news-details-wrapper .comments-area .comments-heading h3 i {
  margin-right: 5px;
  color: var(--theme);
}
@media (max-width: 575px) {
  .news-details-wrapper .comments-area .comments-heading {
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .news-details-wrapper .comments-area .blog-single-comment {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.news-details-wrapper .comments-area .blog-single-comment .content .head .con h3 {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 600;
}
.news-details-wrapper .comments-area .blog-single-comment .content .head .con span {
  display: inline-block;
  margin-bottom: 5px;
}
.news-details-wrapper .comments-area .blog-single-comment .content .head .reply {
  font-weight: 500;
  font-size: 18px;
  color: var(--theme);
}
.news-details-wrapper .comments-area .blog-single-comment.style-2 {
  margin-left: 120px;
}
@media (max-width: 1199px) {
  .news-details-wrapper .comments-area .blog-single-comment.style-2 {
    margin-left: 0;
  }
}
.news-details-wrapper .comment-form-wrap {
  border-top: 1px solid var(--border);
  padding-top: 40px;
}
.news-details-wrapper .comment-form-wrap h3 {
  font-size: 30px;
}
.news-details-wrapper .comment-form-wrap h3 i {
  margin-right: 5px;
  color: var(--theme);
}
.news-details-wrapper .comment-form-wrap p {
  margin-bottom: 20px;
}
.news-details-wrapper .comment-form-wrap .form-clt {
  position: relative;
}
.news-details-wrapper .comment-form-wrap .form-clt input, .news-details-wrapper .comment-form-wrap .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--white);
  padding-bottom: 20px;
  border: 1px solid var(--border);
  padding: 16px 20px;
  transition: all 0.4s ease-in-out;
  color: var(--text);
  font-size: 14px;
  font-weight: 400;
}
.news-details-wrapper .comment-form-wrap .form-clt input::placeholder, .news-details-wrapper .comment-form-wrap .form-clt textarea::placeholder {
  color: var(--text);
}
.news-details-wrapper .comment-form-wrap .form-clt .icon {
  position: absolute;
  right: 24px;
  top: 15px;
}
.news-details-wrapper .comment-form-wrap .form-clt textarea {
  padding-bottom: 150px;
  resize: none;
}
@media (max-width: 1199px) {
  .news-details-wrapper .comment-form-wrap .form-clt textarea {
    padding-bottom: 100px;
  }
}
.news-details-wrapper .comment-form-wrap .theme-btn {
  margin-top: 20px !important;
}
.news-details-wrapper .comment-form-wrap .form-check .form-check-label {
  font-size: 15px;
  color: #57595C;
}
.news-details-wrapper .comment-form-wrap .form-check .form-check-input {
  float: left;
  margin-left: -25px;
  transform: translateY(1x);
}
.news-details-wrapper .comment-form-wrap .form-check .form-check-input:checked {
  background-color: var(--theme);
  border-color: var(--theme);
}

.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 "Exo", sans-serif, "Public Sans", 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(--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: "Exo", 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: 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: var(--theme);
  border-bottom: 2px solid var(--theme);
  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: var(--theme);
}

input.main-search-input::placeholder {
  color: var(--theme);
  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: var(--theme);
  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: var(--theme);
  -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: var(--theme);
  opacity: 0.3;
}

.cursor-outer {
  margin-left: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--theme);
  -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: var(--theme);
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: var(--white);
  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: var(--header);
  color: var(--white);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

.tab-content {
  margin-top: 30px;
}
.tab-content .pricing-card-item {
  padding: 40px;
  background-color: var(--white);
  position: relative;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) {
  .tab-content .pricing-card-item {
    padding: 30px;
  }
}
.tab-content .pricing-card-item.style-bg {
  background-color: var(--header);
}
.tab-content .pricing-card-item.style-bg .pricing-shape {
  opacity: 1;
  visibility: visible;
}
.tab-content .pricing-card-item.style-bg .pricing-header span {
  color: var(--white);
}
.tab-content .pricing-card-item.style-bg::before {
  display: none;
}
.tab-content .pricing-card-item .pricing-shape {
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.tab-content .pricing-card-item .popular {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  background-color: var(--theme);
  border-radius: 100px;
  padding: 5px 10px;
  line-height: 1;
  transform: rotate(-90deg);
  position: absolute;
  top: 60px;
  right: -24px;
}
.tab-content .pricing-card-item .pricing-header span {
  border-bottom: 2px solid var(--theme);
  display: inline-block;
  margin-bottom: 30px;
  padding-bottom: 5px;
  transition: all 0.4s ease-in-out;
  font-size: 20px;
  font-weight: 600;
  color: var(--header);
}
.tab-content .pricing-card-item .pricing-header h2 {
  color: var(--theme);
  padding-bottom: 20px;
  border-bottom: 1px solid #E0E0E0;
}
.tab-content .pricing-card-item .pricing-header h2 span {
  font-size: 18px;
  font-weight: 500;
  color: #4D5765;
  font-family: "Exo", sans-serif;
}
.tab-content .pricing-card-item .pricing-list {
  margin-top: 30px;
  margin-bottom: 30px;
}
.tab-content .pricing-card-item .pricing-list li {
  color: var(--text);
}
.tab-content .pricing-card-item .pricing-list li:not(:last-child) {
  margin-bottom: 10px;
}
.tab-content .pricing-card-item .pricing-list li i {
  color: var(--theme);
  margin-right: 5px;
}
.tab-content .pricing-card-item::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--header);
  transform: scaleX(0.7) rotateX(20deg);
  opacity: 0;
  transition: all 0.4s linear;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}
.tab-content .pricing-card-item:hover::before {
  transform: scaleX(1) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
  z-index: 1;
}
.tab-content .pricing-card-item:hover .pricing-shape {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.tab-content .pricing-card-item:hover .popular {
  z-index: 1;
}
.tab-content .pricing-card-item:hover .pricing-header {
  position: relative;
  z-index: 1;
}
.tab-content .pricing-card-item:hover .pricing-header span {
  color: var(--white);
  z-index: 1;
}
.tab-content .pricing-card-item:hover .pricing-header h2 {
  border-bottom: 1px solid #E0E0E0;
  z-index: 1;
}
.tab-content .pricing-card-item:hover .pricing-list {
  z-index: 1;
  position: relative;
}

.pricing-section {
  position: relative;
}
.pricing-section .left-shape {
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 1199px) {
  .pricing-section .left-shape {
    display: none;
  }
}
.pricing-section .right-shape {
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 1199px) {
  .pricing-section .right-shape {
    display: none;
  }
}

.project-card-item-1 {
  margin-top: 30px;
}
.project-card-item-1 .project-image {
  position: relative;
  overflow: hidden;
}
.project-card-item-1 .project-image .arrow-icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: var(--white);
  border: 1px solid var(--border);
  position: absolute;
  left: 50%;
  top: -100px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%);
}
.project-card-item-1 .project-image .arrow-icon .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--theme);
  color: var(--white);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}
.project-card-item-1 .project-image .arrow-icon .icon i {
  transform: rotate(0deg);
}
.project-card-item-1 .project-image img {
  width: 100%;
  height: 100%;
}
.project-card-item-1 .project-content {
  margin-top: 30px;
}
.project-card-item-1 .project-content h3 {
  margin-bottom: 5px;
}
.project-card-item-1 .project-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.project-card-item-1 .project-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(#FF5E14, #FF5E14);
}
.project-card-item-1:hover .project-image .arrow-icon {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

.project-section-1 .container-fluid {
  padding: 0 100px;
}
@media (max-width: 1199px) {
  .project-section-1 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 991px) {
  .project-section-1 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 575px) {
  .project-section-1 .container-fluid {
    padding: 0 15px;
  }
}
.project-section-1 .swiper-slide.swiper-slide-active .project-image .arrow-icon {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

.project-section {
  position: relative;
}
.project-section .project-shape-1 {
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 1600px) {
  .project-section .project-shape-1 {
    display: none;
  }
}
.project-section .project-shape-2 {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 1600px) {
  .project-section .project-shape-2 {
    display: none;
  }
}

.project-wrapper .project-image img {
  width: 100%;
  height: 100%;
}
.project-wrapper .project-image-2 img {
  width: 100%;
  height: 100%;
}
.project-wrapper .counter-box-area {
  display: flex;
  justify-content: space-between;
  margin-left: 30px;
}
@media (max-width: 1199px) {
  .project-wrapper .counter-box-area {
    margin-left: 0;
  }
}
.project-wrapper .counter-box-area .count-items {
  margin-top: 40px;
}
.project-wrapper .counter-box-area .count-items p {
  border-top: 1px solid var(--border);
  padding-top: 10px;
  margin-top: 10px;
}

.projct-card-items {
  margin-top: 30px;
}
.projct-card-items .thumb {
  height: 428px;
}
.projct-card-items .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.projct-card-items .content {
  margin-top: 20px;
}
.projct-card-items .content h3 {
  font-size: 24px;
  font-weight: 600;
}
.projct-card-items .content h3 a:hover {
  color: var(--theme);
}

.project-wrapper-2 {
  margin-top: 50px;
  margin-right: -30%;
}
@media (max-width: 1199px) {
  .project-wrapper-2 {
    margin-top: 30px;
    margin-right: 0;
  }
}
.project-wrapper-2 .project-card-item-2 .project-image {
  position: relative;
}
.project-wrapper-2 .project-card-item-2 .project-image img {
  width: 100%;
  height: 100%;
}
.project-wrapper-2 .project-card-item-2 .project-image .project-content {
  background-color: var(--white);
  padding: 20px 30px;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.project-wrapper-2 .project-card-item-2 .project-image .project-content h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
}
.project-wrapper-2 .project-card-item-2 .project-image .project-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.project-wrapper-2 .project-card-item-2 .project-image .project-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(#FF5E14, #FF5E14);
}
.project-wrapper-2 .project-card-item-2 .project-image .project-content h3 a i {
  margin-left: 50px;
}
.project-wrapper-2 .project-card-item-2:hover .project-image .project-content {
  opacity: 1;
  visibility: visible;
}

.project-section-2 {
  position: relative;
}
.project-section-2 .line-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
@media (max-width: 1199px) {
  .project-section-2 .line-shape {
    display: none;
  }
}
.project-section-2 .left-shape {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}
@media (max-width: 1199px) {
  .project-section-2 .left-shape {
    display: none;
  }
}
.project-section-2 .array-button-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 70px;
  position: relative;
}
@media (max-width: 1199px) {
  .project-section-2 .array-button-item {
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
  }
}
.project-section-2 .array-button-item::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  height: 1px;
  background: #2A2A2A;
  width: 965px;
  top: 30px;
  left: 86px;
}
@media (max-width: 1199px) {
  .project-section-2 .array-button-item::before {
    display: none;
  }
}
.project-section-2 .array-button-item .content {
  display: flex;
  align-items: center;
  gap: 10px;
}
.project-section-2 .array-button-item .content h4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.project-section-2 .array-button-item .content h5 {
  font-weight: 700;
  color: var(--theme);
}
.project-section-2 .array-button-item .content h5 span {
  color: var(--border);
  font-size: 16px;
  display: inline-block;
  margin-right: 5px;
}
.project-section-2 .array-button-item .array-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}
.project-section-2 .array-button-item .array-buttons .array-prev {
  background-color: var(--white);
  color: var(--theme);
}
.project-section-2 .array-button-item .array-buttons .array-prev:hover {
  background-color: var(--theme);
  color: var(--white);
}
.project-section-2 .array-button-item .array-buttons .array-next:hover {
  background-color: var(--white);
  color: var(--theme);
}
.project-section-2 .swiper-slide.swiper-slide-active .project-image .project-content {
  opacity: 1;
  visibility: visible;
  bottom: 0;
  left: 0;
}

.project-details-wrapper .project-details-image {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .project-details-wrapper .project-details-image {
    margin-bottom: 0;
  }
}
.project-details-wrapper .project-details-image img {
  width: 100%;
  height: 100%;
}
.project-details-wrapper .project-informaion-box {
  background-color: var(--bg-3);
  border-top: 4px solid var(--theme);
  padding: 40px;
  margin-right: 30px;
  margin-top: -220px;
}
@media (max-width: 1199px) {
  .project-details-wrapper .project-informaion-box {
    margin-right: 0;
    margin-top: 0;
  }
}
.project-details-wrapper .project-informaion-box h2 {
  padding-bottom: 10px;
  border-bottom: 2px solid var(--theme);
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 600;
}
.project-details-wrapper .project-informaion-box .project-list li {
  font-size: 18px;
  font-weight: 600;
  color: var(--header);
  font-family: "Exo", sans-serif;
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.project-details-wrapper .project-informaion-box .project-list li span {
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  font-family: "Public Sans", sans-serif;
  display: inline-block;
  margin-left: 5px;
}
.project-details-wrapper .project-thumb img {
  width: 100%;
  height: 100%;
}
.project-details-wrapper h3 {
  font-size: 36px;
  margin-top: 60px;
}
@media (max-width: 1199px) {
  .project-details-wrapper h3 {
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .project-details-wrapper h3 {
    font-size: 25px;
  }
}
.project-details-wrapper .thumb img {
  width: 100%;
  height: 100%;
}
.project-details-wrapper .project-list-content p {
  max-width: 793px;
  margin-bottom: 20px;
}
.project-details-wrapper .project-list-content .list-item {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media (max-width: 1199px) {
  .project-details-wrapper .project-list-content .list-item {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .project-details-wrapper .project-list-content .list-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 1199px) {
  .project-details-wrapper .project-list-content .list-item .list li {
    font-size: 14px;
  }
}
.project-details-wrapper .project-list-content .list-item .list li i {
  color: var(--theme);
  margin-right: 5px;
}
.project-details-wrapper .project-list-content .list-item .list li:not(:last-child) {
  margin-bottom: 5px;
}
.project-details-wrapper .text {
  margin-top: 60px;
}
@media (max-width: 1199px) {
  .project-details-wrapper .text {
    margin-top: 30px;
  }
}

.project-card-items-2 .project-image {
  position: relative;
  overflow: hidden;
}
.project-card-items-2 .project-image img {
  width: 100%;
  height: 100%;
  transform: scale(1.02);
  transition: all 1.5s ease-out;
}
.project-card-items-2 .project-image .project-content {
  padding: 24px 16px;
  background-color: var(--white);
  left: 24px;
  bottom: -24px;
  position: absolute;
  width: 230px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 1199px) {
  .project-card-items-2 .project-image .project-content {
    left: 10px;
    padding: 20px 10px;
  }
}
.project-card-items-2 .project-image .project-content .arrow-icon {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background-color: var(--theme);
  color: var(--white);
  position: absolute;
  right: 0;
  top: 0;
}
.project-card-items-2 .project-image .project-content .arrow-icon i {
  transform: rotate(-45deg);
}
.project-card-items-2 .project-image .project-content p {
  color: var(--theme);
  margin-bottom: 10px;
}
.project-card-items-2 .project-image .project-content h2 {
  font-size: 18px;
}
.project-card-items-2 .project-image .project-content h2 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.project-card-items-2 .project-image .project-content h2 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(#FF5E14, #FF5E14);
}
.project-card-items-2:hover .project-image img {
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}
.project-card-items-2:hover .project-image .project-content {
  bottom: 24px;
  opacity: 1;
  visibility: visible;
}

.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
}
.section-title span {
  font-size: 20px;
  font-weight: 600;
  color: var(--theme);
  text-transform: uppercase;
  position: relative;
  padding-right: 95px;
  display: inline-block;
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .section-title span {
    font-size: 16px;
  }
}
.section-title span::before {
  position: absolute;
  content: "";
  left: initial;
  right: 0;
  top: 10px;
  background-color: var(--theme);
  height: 2px;
  width: 80px;
}
.section-title span.style-2 {
  padding-left: 95px;
}
.section-title span.style-2:after {
  position: absolute;
  content: "";
  left: 0;
  right: initial;
  top: 10px;
  background-color: var(--theme);
  height: 2px;
  width: 80px;
}
@media (max-width: 767px) {
  .section-title {
    margin-bottom: 0;
  }
}

.section-title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 9;
}
@media (max-width: 991px) {
  .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.section-title-area p {
  max-width: 532px;
}
.section-title-area .contact-from-item {
  display: flex;
  align-items: center;
  gap: 24px;
  border-left: 1px solid var(--white);
  height: 160px;
  padding-left: 100px;
}
@media (max-width: 1199px) {
  .section-title-area .contact-from-item {
    padding-left: 0;
    flex-wrap: wrap;
    gap: 20px;
    border-left: 1px none;
  }
}
.section-title-area .contact-from-item .contact-from-box {
  background-color: var(--white);
  padding: 20px;
  text-align: center;
  width: 100px;
  height: 100px;
  line-height: 10px;
  display: inline-block;
  transition: all 0.4s ease-in-out;
}
.section-title-area .contact-from-item .contact-from-box p {
  font-size: 12px;
  font-weight: 400;
  margin-top: 10px;
}
.section-title-area .contact-from-item .contact-from-box:hover {
  background-color: var(--theme);
}
.section-title-area .contact-from-item .contact-from-box:hover .icon img {
  filter: brightness(0) invert(1);
}
.section-title-area .contact-from-item .contact-from-box:hover p {
  color: var(--white);
}
.section-title-area .nav {
  display: flex;
  gap: 0;
  background-color: var(--bg);
}
.section-title-area .nav li {
  font-size: 16px;
  font-weight: 400;
}
.section-title-area .nav li .nav-link {
  color: var(--header);
  transition: all 0.4s ease-in-out;
  padding: 20px 32px;
  border-radius: 0;
  line-height: 1;
  background-color: var(--border);
}
.section-title-area .nav li .nav-link.active {
  position: relative;
  background-color: var(--theme);
  color: var(--white);
}
.section-title-area .counter-cont h2 {
  font-size: 60px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 5px;
  margin-bottom: 10px;
}

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

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

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

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

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

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

.section-padding {
  padding: 140px 0;
}
@media (max-width: 1199px) {
  .section-padding {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }
}

.service-wrapper {
  margin-top: 30px;
}
.service-wrapper .service-main-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1199px) {
  .service-wrapper .service-main-item {
    padding: 30px;
    flex-wrap: wrap;
    gap: 15px;
  }
}
@media (max-width: 991px) {
  .service-wrapper .service-main-item {
    padding: 30px 0px 0;
  }
}
.service-wrapper .service-main-item::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 0;
  height: 100%;
  content: "";
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover;
  background: url("../../assets/img/home-1/service/bg.jpg");
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
@media (max-width: 991px) {
  .service-wrapper .service-main-item::before {
    display: none;
  }
}
.service-wrapper .service-main-item .service-left-content {
  flex-basis: 20%;
}
@media (max-width: 991px) {
  .service-wrapper .service-main-item .service-left-content {
    flex-basis: initial;
  }
}
.service-wrapper .service-main-item .service-left-content h3 {
  font-size: 23px;
}
.service-wrapper .service-main-item .service-left-content h3 a span {
  font-weight: 400;
}
.service-wrapper .service-main-item .service-left-content h3 a:hover {
  color: var(--theme);
}
.service-wrapper .service-main-item .service-middle-content p {
  max-width: 291px;
}
@media (max-width: 991px) {
  .service-wrapper .service-main-item .service-middle-content p {
    max-width: initial;
  }
}
.service-wrapper .service-main-item .service-button .theme-btn {
  border: 1px solid #E4E4E4;
  background-color: transparent;
  color: var(--header);
}
.service-wrapper .service-main-item:hover::before {
  width: 100%;
}
.service-wrapper .service-main-item:hover .service-left-content h3 a {
  color: var(--white);
}
@media (max-width: 991px) {
  .service-wrapper .service-main-item:hover .service-left-content h3 a {
    color: var(--header);
  }
}
.service-wrapper .service-main-item:hover .service-middle-content p {
  color: var(--white);
}
@media (max-width: 991px) {
  .service-wrapper .service-main-item:hover .service-middle-content p {
    color: var(--header);
  }
}
.service-wrapper .service-main-item:hover .service-button .theme-btn {
  color: var(--white);
}
@media (max-width: 991px) {
  .service-wrapper .service-main-item:hover .service-button .theme-btn {
    color: var(--header);
  }
}
.service-wrapper .service-main-item:hover .service-button .theme-btn::before {
  background-color: var(--theme);
}
.service-wrapper .service-main-item:hover .service-button .theme-btn::after {
  background-color: var(--theme);
}
.service-wrapper .service-main-item:hover .service-button .theme-btn:hover {
  border: 1px solid var(--theme);
}

.service-right-item .accordion-item {
  border: 0;
  background-color: var(--bg);
}
.service-right-item .accordion-item .accordion-header {
  border-top: 1px solid var(--border);
  font-size: 20px;
  font-weight: 600;
}
.service-right-item .accordion-item .accordion-header.style-2 {
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}
.service-right-item .accordion-item .accordion-header .accordion-button {
  font-weight: 600;
  color: var(--theme);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background-color: var(--bg);
  padding: 25px 30px 0;
  text-transform: capitalize;
  font-size: 24px;
  border: none;
  padding: 20px 20px 0;
}
.service-right-item .accordion-item .accordion-header .accordion-button::after {
  content: "\f061";
  font-family: "Font Awesome 6 Pro";
  background: transparent;
  font-weight: 500;
  transition: all 0.3s ease-in-out !important;
  color: var(--header);
}
.service-right-item .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  content: "\f061";
  font-family: "Font Awesome 6 Pro";
  background: transparent;
  font-weight: 500;
  color: var(--theme);
  transform: rotate(-45deg);
}
.service-right-item .accordion-item .accordion-header .accordion-button.collapsed {
  background-color: var(--bg);
  padding: 25px 20px 5px;
  color: var(--header);
}
.service-right-item .accordion-item .accordion-collapse .accordion-body {
  padding-left: 50px;
  padding-top: 15px;
  color: var(--text);
  background-color: var(--bg);
  font-weight: 500;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 1199px) {
  .service-right-item .accordion-item .accordion-collapse .accordion-body {
    flex-wrap: wrap;
    gap: 10px;
  }
}
@media (max-width: 1199px) {
  .service-right-item .accordion-item .accordion-collapse .accordion-body .thumb {
    flex-basis: 100%;
  }
}
@media (max-width: 1199px) {
  .service-right-item .accordion-item .accordion-collapse .accordion-body .thumb img {
    width: 100%;
    height: 100%;
  }
}
.service-right-item .accordion-item .accordion-collapse .accordion-body .content .service-button {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .service-right-item .accordion-item .accordion-collapse .accordion-body {
    padding-left: 20px;
  }
}

.service-section-2 {
  position: relative;
  z-index: 9;
}
.service-section-2 .left-shape {
  position: absolute;
  left: -30px;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 1199px) {
  .service-section-2 .left-shape {
    display: none;
  }
}

.service-main-box-item {
  border: 1px solid var(--border);
  margin-top: 30px;
}
.service-main-box-item .service-main-box {
  display: flex;
  align-items: center;
}
@media (max-width: 1199px) {
  .service-main-box-item .service-main-box {
    flex-wrap: wrap;
  }
}
.service-main-box-item .service-main-box .service-box-item {
  padding: 30px;
}
@media (max-width: 1199px) {
  .service-main-box-item .service-main-box .service-box-item {
    padding: 30px;
  }
}
.service-main-box-item .service-main-box .service-box-item.style-2 {
  border-right: 1px solid var(--border);
}
@media (max-width: 1199px) {
  .service-main-box-item .service-main-box .service-box-item.style-2 {
    border-right: none;
  }
}
.service-main-box-item .service-main-box .service-box-item .service-icon-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .service-main-box-item .service-main-box .service-box-item .service-icon-item {
    margin-bottom: 30px;
  }
}
.service-main-box-item .service-main-box .service-box-item .service-icon-item h3 {
  font-weight: 400;
  color: var(--text);
}
.service-main-box-item .service-main-box .service-box-item h3 {
  color: var(--text);
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .service-main-box-item .service-main-box .service-box-item h3 {
    margin-bottom: 30px;
  }
}
.service-main-box-item .service-main-box .service-box-item h3 a span {
  font-weight: 400;
}
.service-main-box-item .service-main-box .service-box-item h3:hover {
  color: var(--theme);
}
.service-main-box-item .service-main-box .service-box-item p {
  max-width: 246px;
}
@media (max-width: 1199px) {
  .service-main-box-item .service-main-box .service-box-item p {
    max-width: initial;
  }
}
.service-main-box-item .service-main-box .service-box-item .link-btn {
  margin-top: 40px;
  display: inline-block;
}
.service-main-box-item .service-image img {
  width: 100%;
  height: 100%;
}

.service-box-item-2 {
  padding: 30px 27px;
  border: 1px solid var(--border);
  position: relative;
  z-index: 9;
}
.service-box-item-2 .shape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.service-box-item-2 .shape img {
  width: 100%;
  height: 100%;
}
.service-box-item-2 .shape-2 {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.service-box-item-2 .shape-2 img {
  width: 100%;
  height: 100%;
}
.service-box-item-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--header);
  transform: scaleX(0.7) rotateX(20deg);
  opacity: 0;
  transition: all 0.4s linear;
  z-index: -1;
}
.service-box-item-2 .service-icon-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}
.service-box-item-2 .service-icon-item h3 {
  font-weight: 400;
  color: var(--text);
  transition: all 0.4s ease-in-out;
}
.service-box-item-2 h3 {
  font-weight: 600;
  margin-bottom: 15px;
}
.service-box-item-2 h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.service-box-item-2 h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(#FF5E14, #FF5E14);
}
.service-box-item-2 p {
  max-width: 328px;
}
.service-box-item-2 .link-btn {
  margin-top: 40px;
  display: inline-block;
  color: var(--header);
}
.service-box-item-2 .link-btn i {
  color: var(--header);
  transition: all 0.4s ease-in-out;
}
.service-box-item-2 .link-btn:hover {
  color: var(--theme);
}
.service-box-item-2 .link-btn:hover i {
  color: var(--theme);
}
.service-box-item-2:hover::before {
  transform: scaleX(1) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}
.service-box-item-2:hover .service-icon-item .service-icon img {
  filter: brightness(0) invert(1);
}
.service-box-item-2:hover .service-icon-item h3 {
  color: var(--white);
}
.service-box-item-2:hover .shape {
  opacity: 0;
  visibility: hidden;
}
.service-box-item-2:hover .shape-2 {
  opacity: 1;
  visibility: visible;
}
.service-box-item-2:hover h3 a {
  color: var(--white);
}
.service-box-item-2:hover p {
  color: var(--white);
}
.service-box-item-2:hover .link-btn {
  color: var(--white);
}
.service-box-item-2:hover .link-btn i {
  color: var(--white);
}

.service-details-wrapper .service-details-post .service-details-image {
  margin-bottom: 40px;
}
.service-details-wrapper .service-details-post .service-details-image img {
  width: 100%;
  height: 100%;
}
.service-details-wrapper .service-details-post .service-details-content .side-list-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 60px;
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .service-details-wrapper .service-details-post .service-details-content .side-list-item {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.service-details-wrapper .service-details-post .service-details-content .side-list-item .list li:not(:last-child) {
  margin-bottom: 12px;
}
.service-details-wrapper .service-details-post .service-details-content .thumb img {
  width: 100%;
  height: 100%;
}
.service-details-wrapper .service-details-post .service-details-content .service-benefit-content h3 {
  margin-bottom: 10px;
}
.service-details-wrapper .service-details-post .service-details-content .service-benefit-content p {
  max-width: 375px;
}
.service-details-wrapper .service-details-post .service-details-content .service-benefit-content .details-list {
  margin-top: 15px;
}
.service-details-wrapper .service-details-post .service-details-content .service-benefit-content .details-list li {
  font-size: 18px;
}
.service-details-wrapper .service-details-post .service-details-content .service-benefit-content .details-list li i {
  color: var(--theme);
  margin-right: 5px;
}
.service-details-wrapper .service-details-post .service-details-content .service-benefit-content .details-list li:not(:last-child) {
  margin-bottom: 10px;
}
.service-details-wrapper .service-details-post .service-details-content .text-2 {
  margin-top: 60px;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .service-details-wrapper .service-details-post .service-details-content .text-2 {
    margin-top: 30px;
  }
}
.service-details-wrapper .service-details-post .service-details-content .service-details-box-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .service-details-wrapper .service-details-post .service-details-content .service-details-box-item {
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .service-details-wrapper .service-details-post .service-details-content .service-details-box-item {
    flex-wrap: wrap;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.service-details-wrapper .service-details-post .service-details-content .service-details-box-item .service-details-box {
  background-color: var(--white);
  box-shadow: 0px 6px 30px 0px rgba(0, 0, 0, 0.07);
  padding: 20px;
  text-align: center;
  position: relative;
}
.service-details-wrapper .service-details-post .service-details-content .service-details-box-item .service-details-box .icon {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  background-color: var(--theme);
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: -30px;
}
.service-details-wrapper .service-details-post .service-details-content .service-details-box-item .service-details-box h4 {
  margin-bottom: 10px;
}
.service-details-wrapper .service-details-post .service-details-content .service-details-box-item .service-details-box p {
  max-width: 201px;
}
.service-details-wrapper .main-sideber .service-sideber-widget {
  margin-bottom: 30px;
}
.service-details-wrapper .main-sideber .service-sideber-widget .service-widget-categories ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 400;
  background-color: var(--bg-3);
  transition: all 0.4s ease-in-out;
  border-radius: 0;
  line-height: 1;
  padding: 20px;
}
.service-details-wrapper .main-sideber .service-sideber-widget .service-widget-categories ul li a {
  color: var(--header);
}
.service-details-wrapper .main-sideber .service-sideber-widget .service-widget-categories ul li i {
  transition: all 0.4s ease-in-out;
  color: var(--header);
}
.service-details-wrapper .main-sideber .service-sideber-widget .service-widget-categories ul li:not(:last-child) {
  margin-bottom: 20px;
}
.service-details-wrapper .main-sideber .service-sideber-widget .service-widget-categories ul li:hover {
  background-color: var(--theme);
}
.service-details-wrapper .main-sideber .service-sideber-widget .service-widget-categories ul li:hover a {
  color: var(--white);
}
.service-details-wrapper .main-sideber .service-sideber-widget .service-widget-categories ul li:hover i {
  color: var(--white);
}
.service-details-wrapper .main-sideber .service-bg {
  padding: 40px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1199px) {
  .service-details-wrapper .main-sideber .service-bg {
    padding: 30px;
  }
}
.service-details-wrapper .main-sideber .service-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(14, 18, 29, 0.85);
  z-index: -1;
}
.service-details-wrapper .main-sideber .service-bg .content h4 {
  color: var(--white);
  margin-bottom: 20px;
}
.service-details-wrapper .main-sideber .service-bg .content h5 {
  font-size: 18px;
}
.service-details-wrapper .main-sideber .service-bg .content h5 a {
  color: var(--white);
}
.service-details-wrapper .main-sideber .service-bg .content .theme-btn {
  margin-top: 220px;
}
@media (max-width: 1199px) {
  .service-details-wrapper .main-sideber .service-bg .content .theme-btn {
    margin-top: 120px;
  }
}
@media (max-width: 575px) {
  .service-details-wrapper .main-sideber .service-bg .content .theme-btn {
    margin-top: 50px;
  }
}
.service-details-wrapper .main-sideber .brochure-button {
  margin-top: 40px;
  margin-bottom: 16px;
}
.service-details-wrapper .main-sideber .brochure-button .theme-btn {
  width: 100%;
  text-align: center;
}
.service-details-wrapper .main-sideber .download-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color: var(--bg-3);
}
.service-details-wrapper .main-sideber .download-button .down-btn {
  display: flex;
  align-items: center;
  gap: 16px;
}
.service-details-wrapper .main-sideber .download-button i {
  font-size: 20px;
  color: var(--theme);
}

.team-box-items {
  margin-top: 30px;
}
.team-box-items .team-image {
  position: relative;
  overflow: hidden;
}
.team-box-items .team-image .social-icon {
  display: grid;
  align-items: center;
  gap: 10px;
  position: absolute;
  transform: translateX(100%) perspective(120px) rotateY(-50deg) scaleY(0.5);
  bottom: 30px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.team-box-items .team-image .social-icon a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  background-color: var(--white);
  text-align: center;
  color: var(--header);
}
.team-box-items .team-image .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}
.team-box-items .team-image img {
  width: 100%;
  height: 100%;
}
.team-box-items .team-content {
  margin-top: 15px;
}
.team-box-items .team-content p {
  margin-bottom: 5px;
}
.team-box-items .team-content h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 141%;
}
@media (max-width: 575px) {
  .team-box-items .team-content h3 {
    font-size: 20px;
  }
}
.team-box-items .team-content h3 a:hover {
  color: var(--theme);
}
.team-box-items:hover .team-image .social-icon {
  opacity: 1;
  visibility: visible;
  transform: translateX(20px) translateY(-10px) scale(1.05) rotateZ(1deg);
}

.team-card-items {
  margin-top: 30px;
}
.team-card-items .team-image {
  position: relative;
}
.team-card-items .team-image .social-profile {
  position: absolute;
  left: 0;
  bottom: 10px;
  content: "";
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 2;
  display: flex;
  overflow: hidden;
  align-items: center;
}
.team-card-items .team-image .social-profile ul {
  transform: translateX(-100px);
  transition: all 0.6s ease-in-out;
  opacity: 0;
  visibility: hidden;
  display: flex;
}
.team-card-items .team-image .social-profile ul li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-left: 10px;
  display: inline-block;
  text-align: center;
  font-size: 14px;
  color: #4D5765;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  background-color: var(--white);
}
.team-card-items .team-image .social-profile ul li a:hover {
  background-color: var(--theme);
  color: var(--white);
}
.team-card-items .team-image .social-profile .plus-btn {
  z-index: 2;
  cursor: pointer;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 14px;
  display: inline-block;
  background: var(--header);
  color: var(--white);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.team-card-items .team-image .social-profile:hover ul {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.team-card-items .team-image img {
  width: 100%;
  height: 100%;
}
.team-card-items .team-content {
  margin-top: 15px;
}
.team-card-items .team-content p {
  margin-bottom: 5px;
}
.team-card-items .team-content h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 141%;
}
.team-card-items .team-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.team-card-items .team-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(#FF5E14, #FF5E14);
}

.team-details-wrapper .team-author-items {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 40px;
  border: 1px solid var(--border);
}
@media (max-width: 1199px) {
  .team-details-wrapper .team-author-items {
    padding: 30px;
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .team-details-wrapper .team-author-items {
    flex-wrap: wrap;
  }
}
.team-details-wrapper .team-author-items .team-details-image img {
  width: 100%;
  height: 100%;
}
.team-details-wrapper .team-author-items .team-details-content h2 {
  font-size: 36px;
}
@media (max-width: 1199px) {
  .team-details-wrapper .team-author-items .team-details-content h2 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .team-details-wrapper .team-author-items .team-details-content h2 {
    font-size: 25px;
  }
}
.team-details-wrapper .team-author-items .team-details-content p {
  max-width: 562px;
  margin-top: 15px;
}
.team-details-wrapper .team-author-items .team-details-content .contact-list {
  margin-top: 30px;
}
.team-details-wrapper .team-author-items .team-details-content .contact-list .contact-info {
  position: relative;
  font-size: 16px;
  font-weight: 600;
}
.team-details-wrapper .team-author-items .team-details-content .contact-list .contact-info:not(:last-child) {
  margin-bottom: 20px;
}
.team-details-wrapper .team-author-items .team-details-content .contact-list .contact-info span {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 18px;
  font-weight: 600;
  color: var(--header);
  text-transform: capitalize;
  font-family: "Exo", sans-serif;
}
@media (max-width: 575px) {
  .team-details-wrapper .team-author-items .team-details-content .contact-list .contact-info span {
    position: static;
  }
}
.team-details-wrapper .team-author-items .team-details-content .contact-list .contact-info a {
  margin-left: 180px;
  font-size: 16px;
  color: var(--text);
  text-transform: capitalize;
  font-weight: 400;
}
@media (max-width: 575px) {
  .team-details-wrapper .team-author-items .team-details-content .contact-list .contact-info a {
    margin-left: 0;
  }
}
.team-details-wrapper .team-author-items .team-details-content .social-icon {
  gap: 15px;
  margin-top: 40px;
}
.team-details-wrapper .team-author-items .team-details-content .social-icon a {
  display: inline-block;
  width: 46px;
  height: 46px;
  line-height: 46px;
  border-radius: 100px;
  text-align: center;
  background: var(--bg-3);
  color: var(--header);
  transition: all 0.4s ease-in-out;
}
.team-details-wrapper .team-author-items .team-details-content .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}
.team-details-wrapper .details-info-items {
  margin-top: 60px;
}
@media (max-width: 1199px) {
  .team-details-wrapper .details-info-items {
    margin-top: 30px;
  }
}
.team-details-wrapper .details-info-items .info-content .text {
  margin-bottom: 20px;
  font-size: 30px;
}
.team-details-wrapper .details-info-items .progress-area {
  margin-left: 20px;
}
@media (max-width: 1199px) {
  .team-details-wrapper .details-info-items .progress-area {
    margin-left: 0;
  }
}
.team-details-wrapper .details-info-items .progress-area .text {
  margin-bottom: 20px;
  font-size: 30px;
}
.team-details-wrapper .details-info-items .progress-area p {
  max-width: 590px;
  margin-bottom: 20px;
}
.team-details-wrapper .details-info-items .progress-area .progress-wrap .pro-items {
  width: 100%;
}
.team-details-wrapper .details-info-items .progress-area .progress-wrap .pro-items:not(:last-child) {
  margin-bottom: 20px;
}
.team-details-wrapper .details-info-items .progress-area .progress-wrap .pro-items .pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.team-details-wrapper .details-info-items .progress-area .progress-wrap .pro-items .pro-head .title {
  font-size: 18px;
  font-weight: 600;
}
.team-details-wrapper .details-info-items .progress-area .progress-wrap .pro-items .pro-head .point {
  font-size: 18px;
  font-weight: 600;
  color: var(--header);
}
.team-details-wrapper .details-info-items .progress-area .progress-wrap .pro-items .progress {
  background: #E4E4E4;
  justify-content: flex-start;
  border-radius: 4px;
  align-items: center;
  position: relative;
  display: flex;
  height: 8px;
  width: 100%;
}
.team-details-wrapper .details-info-items .progress-area .progress-wrap .pro-items .progress-value {
  animation: load 3s normal forwards;
  border-radius: 0;
  background: var(--theme);
  height: 10px;
  width: 0;
}
.team-details-wrapper .details-info-items .progress-area .progress-wrap .pro-items .style-two {
  animation: load2 3s normal forwards;
}
.team-details-wrapper .details-info-items .progress-area .progress-wrap .pro-items .style-three {
  animation: load3 3s normal forwards;
}
@keyframes load {
  0% {
    width: 0;
  }
  100% {
    width: 90%;
  }
}
@keyframes load2 {
  0% {
    width: 0;
  }
  100% {
    width: 70%;
  }
}
@keyframes load3 {
  0% {
    width: 0;
  }
  100% {
    width: 55%;
  }
}

.testimonial-wrapper {
  border-bottom: 1px solid var(--border);
  padding-bottom: 80px;
}
.testimonial-wrapper .quote-icon img {
  width: 100%;
  height: 100%;
}
.testimonial-wrapper .testimonial-content-items {
  margin-left: 30px;
  border-right: 1px solid var(--border);
  padding-right: 40px;
}
@media (max-width: 1199px) {
  .testimonial-wrapper .testimonial-content-items {
    margin-left: 0;
    border-right: 1px none;
    padding-right: 0;
  }
}
.testimonial-wrapper .testimonial-content-items p {
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  color: var(--header);
  max-width: 701px;
  line-height: 150%;
}
@media (max-width: 1199px) {
  .testimonial-wrapper .testimonial-content-items p {
    font-size: 16px;
  }
}
.testimonial-wrapper .testimonial-content-items .client-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}
.testimonial-wrapper .testimonial-content-items .client-info h2 {
  font-size: 20px;
  font-weight: 600;
}
.testimonial-wrapper .testimonial-content-items .client-info span {
  display: inline-block;
  margin-top: 5px;
}
.testimonial-wrapper .array-buttons {
  justify-content: end;
  align-items: end;
}
@media (max-width: 1199px) {
  .testimonial-wrapper .array-buttons {
    justify-content: start;
    gap: 30px;
    display: flex;
    align-items: center;
  }
}

.testimonail-box-item {
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-left: 1px solid rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(104deg, rgba(255, 255, 255, 0.2) -52.49%, rgba(255, 255, 255, 0) 101.11%);
  backdrop-filter: blur(20px);
  padding: 40px 30px;
  position: relative;
}
.testimonail-box-item::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme);
  transform: scaleX(0.7) rotateX(20deg);
  opacity: 0;
  transition: all 0.4s linear;
  z-index: -1;
}
.testimonail-box-item .star {
  margin-bottom: 30px;
  color: var(--theme);
}
.testimonail-box-item p {
  color: var(--white);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 155%;
}
.testimonail-box-item .client-info-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.testimonail-box-item .client-info-item .client-image img {
  width: 100%;
  height: 100%;
}
.testimonail-box-item .client-info-item .info-content h3 {
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 20px;
}
.testimonail-box-item .client-info-item .info-content span {
  color: var(--theme);
  font-size: 14px;
  font-weight: 400;
}
.testimonail-box-item:hover .star {
  color: var(--white);
}
.testimonail-box-item:hover .client-info-item .info-content span {
  color: var(--white);
}
.testimonail-box-item:hover::before {
  transform: scaleX(1) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.testimonail-section-2 {
  position: relative;
  z-index: 9;
}
.testimonail-section-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(1deg, #0E121D 0.18%, rgba(14, 18, 29, 0.9) 56.12%, rgba(38, 41, 51, 0.05) 106.04%);
  z-index: -1;
}
@media (max-width: 1399px) {
  .testimonail-section-2 .array-buttons {
    display: none;
  }
}
.testimonail-section-2 .array-buttons .array-prev {
  position: absolute;
  left: 13%;
  top: 60%;
  background-color: var(--theme);
}
.testimonail-section-2 .array-buttons .array-prev:hover {
  background-color: var(--white);
  color: var(--theme);
}
.testimonail-section-2 .array-buttons .array-next {
  position: absolute;
  right: 13%;
  top: 60%;
}
.testimonail-section-2 .array-buttons .array-next:hover {
  background-color: var(--white);
  color: var(--theme);
}

.testimonials-card-item {
  background-color: var(--white);
  padding: 40px 30px;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .testimonials-card-item {
    padding: 30px;
  }
}
.testimonials-card-item .star {
  font-size: 14px;
  font-weight: 900;
  color: var(--theme);
  margin-bottom: 15px;
}
.testimonials-card-item p {
  max-width: 487px;
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .testimonials-card-item p {
    margin-bottom: 30px;
  }
}
.testimonials-card-item .cient-info-card-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .testimonials-card-item .cient-info-card-item {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.testimonials-card-item .cient-info-card-item .client-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.testimonials-card-item .cient-info-card-item .client-item .content h3 {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 600;
}/*# sourceMappingURL=main.css.map */