/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Geist", sans-serif;
  --open-sans: "Open Sans", sans-serif;
}

:root {
  --primary-color: #fbca01;
  --accent-color: #4d4d4d;
  --default-color: #102D2C;
  --bg-color: #102D2C;
  --heading-color: #141414;
}


html,
body {
  height: 100%;
  box-sizing: border-box
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.fix {
  overflow: hidden;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  border-radius: 50px;
  background: var(--primary-color);
  width: 40px;
  height: 40px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: var(--bg-color);
  line-height: 0;
}

.back-to-top:hover {
  background: #60ccdc;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

.clear {
  clear: both;
}

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

input,
select,
textarea,
input[type=text],
input[type=date],
input[type=url],
input[type=email],
input[type=password],
input[type=tel],
button,
button[type=submit] {
  -moz-appearance: none;
  box-shadow: none !important;
}

div#preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999;
  width: 100%;
  height: 100%;
  overflow: visible;
  background: #fff url("../img/preloader.gif") no-repeat center center;
}

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

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

.section {
  padding: 100px 0px;
}

.section-2 {
  padding: 80px 0px 50px;
}

.section-bg {
  background-color: #f9f9f9;
}

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

.padding-2 {
  padding-bottom: 90px;
}

.section-title h2 {
  display: inline-block;
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}

.section-title h2::after {
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  bottom: -20px;
  content: "";
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 40%;
}

.section-title h2.title-2 {
  display: inline-block;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

.section-title h2.title-2::after {
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  bottom: -12px;
  content: "";
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: auto;
  width: 30%;
}

.section-title h4 {
  font-size: 24px;
  font-weight: 600;
  line-height: initial;
  color: #111E21;
}

.section-title p {
  font-size: 16px;
  position: relative;
}

.section-title ul {
  font-size: 16px;
  font-weight: 500;
  list-style: unset;
  margin: auto;
  padding-left: 2rem;
}

.tag-head {
  background: #e9f4d2;
  color: black;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 20px;
  margin-bottom: 16px;
  width: fit-content;
  border-radius: 50px;
}

.sec-head {
  display: inline-block;
  font-size: 48px;
  line-height: 58px;
  padding: 0 0 20px;
}

.sec-para {
  display: inline-block;
  font-size: 18px;
  line-height: 28px;
}

.btn-phn {
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  padding: 12px;
  min-width: 50px;
  border-radius: 6px;
  transition: 0.5s;
  color: white;
  background: var(--accent-color);
}

.btn-phn:hover {
  background: var(--primary-color);
  color: var(--accent-color);
}

.btn-default {
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  transition: 0.5s;
  color: var(--default-color);
  background: var(--primary-color);
}

.btn-default:hover {
  background: var(--accent-color);
  color: white;
}

.btn-know {
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  padding: 10px 0;
  border-radius: 6px;
  transition: 0.5s all ease;
  color: #5c5c5c;
  background: transparent;
}

.btn-know:hover {
  background: #e9e9e9;
  color: black;
  padding: 10px 18px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  padding: 16px 0;
  z-index: 997;
  transition: all 0.5s;
  background: #fff;
  border-bottom: 1px solid #e9e9e9;
}

#header.header-scrolled {
  background: #fff;
}

#header .logo img {
  padding: 0;
  margin: 0;
  width: 100%;
  max-height: 36px;
}

@media (max-width: 768px) {
  #header {
    height: 64px;
    background: rgba(0, 0, 0, 0.8);
  }

  #header .logo h1 {
    font-size: 28px;
  }
}

.header-bg {
  background: url(../img/banner/banner-inner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  padding: 140px 0 60px;
}

.header-bg::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

@media (min-width: 1025px) {
  .header-bg {
    background-attachment: fixed;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  gap: 38px;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--default-color);
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #020042;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 16px;
  text-transform: none;
  color: #0d2529;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: var(--primary-color);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(1, 2, 2, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #0d2529;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--primary-color);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: var(--primary-color);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
	width: 100%;
	height: 100vh;
	max-height: 1200px;
	position: relative;
	padding: 60px 0;
	display: grid;
	align-content: end;
  overflow: clip;
}

.hero::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100vh;
  max-height: 1200px;
  background: linear-gradient(#00000063 50%, #000000d6);
}

/* Hero Pagination */
.hero .swiper-container {
  width: 100%;
  height: 100vh;
  max-height: 1200px;
  position: absolute;
  z-index: -1;
  top: 0;
  margin-bottom: unset;
}

.hero .swiper-container+.swiper-container {
  margin-top: 30px;
}

.hero .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.hero .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .swiper-pagination {
  position: relative;
  z-index: 2;
  margin: 0;
  text-align: left;
}

.hero .swiper-pagination-bullet {
  width: 160px;
  height: 5px;
  border-radius: 50px;
  opacity: 1;
  position: relative;
  overflow: hidden;
}

.hero .swiper-pagination-bullet::before {
  content: "";
  display: block;
  background-color: var(--accent-color);
  opacity: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.hero .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.hero .swiper-pagination-bullet-active::before {
  background-color: var(--primary-color);
  border-radius: 50px;
  -webkit-animation: slide-progress 3s cubic-bezier(0.3, 0, 0.3, 1) forwards;
  animation: slide-progress 3s cubic-bezier(0.3, 0, 0.3, 1) forwards;
}

.hero .swiper-paused .swiper-pagination-bullet-active::before {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

@-webkit-keyframes slide-progress {
  0% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(100%);
  }
}

@keyframes slide-progress {
  0% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(100%);
  }
}

.hero h1 {
  margin: 0 0 16px 0;
  color: #fff;
  font-family: var(--heading-font);
  font-size: 64px;
  font-weight: 600;
  line-height: 82px;
}

.hero p {
  margin: 5px 0 30px 0;
  color: #dadada;
  font-size: 20px;
  line-height: 34px;
  max-width: 50%;
}

.hero .social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	/* border: 1px solid #ffffff3f; */
	background: #ffffff17;
	font-size: 16px;
	color: #fff;
	margin-right: 10px;
	transition: 0.3s;
}

.hero .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

@media (max-width: 640px) {
	.hero {
    min-height: 100svh;
    padding: 20px 0;
	}
  .hero h1 {
    font-size: 36px;
    line-height: 48px;
		margin-bottom: 20px;
  }
	.hero p {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 16px;
    max-width: 100%;
	}
	.hero .swiper-pagination-bullet {
    width: 25%;
    height: 5px;
    margin: 0!important;
    padding: 0;
	}
	.hero .swiper-pagination {
    display: flex;
    gap: 4px;
	}
}

.hero .content-wrapper {
	position: relative;
	z-index: 3;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  background-size: cover !important;
  min-height: 350px;
  margin-top: 80px;
  padding: 50px 0 30px;
  display: flex;
  align-items: end;
  color: #fff;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 58px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #505a63;
  content: "/";
}

.breadcrumbs ol a {
  color: #b6b6b6;
}

.breadcrumbs .section-title h1 {
  font-size: 28px;
  font-weight: 600;
  color: #5C5C5C;
  border-radius: 50px;
}

.breadcrumbs .section-title p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #fff;
}

.btn-banner {
  font-weight: 600;
  font-size: 18px;
  padding: 6px;
  margin-right: 5px;
  transition: 0.5s;
  line-height: 1;
  animation-delay: 0.8s;
  color: #fff;
  background: var(--primary-color);
  border: 4px solid var(--primary-color);
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
}

.btn-banner:hover {
  color: #fff;
  background: var(--primary-color);
  border: 4px solid var(--primary-color);
}

.btn-banner i {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  animation-delay: 0.8s;
  color: var(--primary-color);
  background-color: #ffffff;
  border-radius: 50px;
  text-align: center;
  margin-right: 10px;
  font-size: 18px;
  width: 30px;
  height: 30px;
}

.btn-banner:hover i {
  background-color: #fff;
  color: var(--primary-color);
}

/*--------------------------------------------------------------
# CTA
--------------------------------------------------------------*/

.cta {
  background: linear-gradient(rgba(12, 13, 14, 0.8), rgba(12, 13, 14, 0.8)), url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 50px 0;
}

.cta h3 {
  color: #fff;
  font-size: 32px;
  line-height: 38px;
  font-weight: 600;
  margin-bottom: 15px;
}

.cta p {
  color: #fff;
  font-size: 20px;
  line-height: 26px;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about-area img {
  border-radius: 15px;
  transition: all 0.3s ease 0s;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services-area {
  & .item {
    transition: all 0.5s ease 0s;
    position: relative;

    & img {
      margin-bottom: 25px;
      border-radius: 15px;
      box-shadow: 0 0 0 0 var(--accent-color);
      transition: all .5s;
    }

    &:hover img {
      transform: scale(1.01);
      box-shadow: 10px 10px 0 0 var(--primary-color);
    }

    & h4 {
      font-size: 24px;
      letter-spacing: 1px;
      color: white;
    }

    & p {
      color: #979797;
      line-height: 24px;
      font-size: 16px;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
  }
}

/*--------------------------------------------------------------
# Review
--------------------------------------------------------------*/
.reviews-area {
  background: var(--accent-color);
  overflow: hidden;
  width: 100%;
  position: relative;
}

.reviews-area .image {
  width: 100%;
  height: 100%;
  min-height: 600px;
}

.reviews-area .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-right-text h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 600;
}

.work-right-text p {
  color: #fff;
  font-size: 20px;
  line-height: 30px;
}

.work-right-text .sus-btn {
  margin-left: 0;
  margin-top: 20px;
}

.single-awesome-4 {
  display: block;
  float: left;
  overflow: hidden;
  width: 33.33%;
}

.single-awesome-4 .add-actions {
  padding: 10px 20px;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.pst-content {
  padding-left: 10px;
}

.portfolio-area {
  background-color: #f9f9f9;
}

#portfolio-flters {
  padding: 0;
  margin: 5px 0 35px 0;
  list-style: none;
  text-align: center;
}

#portfolio-flters li {
  cursor: pointer;
  margin: 15px 15px 15px 0;
  display: inline-block;
  padding: 8px 24px;
  font-size: 12px;
  line-height: 20px;
  color: #555;
  border-radius: 50px;
  text-transform: uppercase;
  background: #fff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border: 1px solid #020042;
}

#portfolio-flters li:hover,
#portfolio-flters li.filter-active {
  border-color: var(--primary-color);
  background: var(--primary-color);
  color: #fff;
}

#portfolio-flters li:last-child {
  margin-right: 0;
}

.single-awesome-portfolio {
  float: left;
  overflow: hidden;
  padding: 15px;
  width: 25%;
  position: relative;
}

.single-awesome-project {
  overflow: hidden;
  margin-bottom: 30px;
}

.first-item {
  margin-bottom: 30px;
}

.awesome-img {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.awesome-img>a {
  display: block;
  position: relative;
}

.single-awesome-project:hover .awesome-img>a::after {
  opacity: 1;
}

.single-awesome-project:hover .add-actions {
  opacity: 1;
  bottom: 0;
}

.awesome-img>a::after {
  background: rgba(0, 0, 0, 0.7) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  opacity: 0;
  transition: 0.4s;
}

.add-actions {
  background: rgba(0, 0, 0, 0.6) none repeat scroll 0 0;
  bottom: 30px;
  display: block;
  height: 100%;
  left: 0;
  opacity: 0;
  overflow: hidden;
  padding: 10px 15px;
  position: absolute;
  transition: all 0.4s ease 0s;
  width: 100%;
}

.project-dec {
  display: block;
  height: 100%;
  width: 100%;
}

.project-dec a {
  display: block;
  height: 100%;
  width: 100%;
}

.project-dec h4 {
  margin-bottom: 5px;
}

.project-dec h4:hover {
  color: #fff;
}

.project-dec h4 {
  color: #ddd;
  font-size: 24px;
  margin-top: -45px;
  padding-top: 50%;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 800;
}

.project-dec span {
  color: #ddd;
  font-size: 13px;
}

.project-action-btn {
  display: block;
  height: 100%;
  text-align: center;
  transition: all 1s ease 0s;
  width: 100%;
}

.project-action-btn li {
  display: block;
  height: 100%;
  width: 100%;
}

.project-action-btn li a {
  display: block;
  height: 100%;
  width: 100%;
}

/*--------------------------------------------------------------
# Quote
--------------------------------------------------------------*/
.suscribe-area {
  background: var(--primary-color) none repeat scroll 0 0;
  padding: 30px 0;
}

.suscribe-text {
  display: block;
  padding: 10px 0;
}

.suscribe-text h3 {
  color: #fff;
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.sus-btn {
  background: #fff none repeat scroll 0 0;
  border: 2px solid #fff;
  color: var(--primary-color);
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  margin-left: 100px;
  padding: 10px 20px;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 30px;
}

.sus-btn:hover {
  background: var(--primary-color) none repeat scroll 0 0;
  border: 2px solid #fff;
  color: #fff;
}

/*--------------------------------------------------------------
# exp-strip
--------------------------------------------------------------*/

.exp-strip .box {
  display: flex;
  align-items: center;
  border-radius: 50px;
  padding: 10px;
  background-color: #f3e6e8;
  background-image: linear-gradient(315deg, #f3e6e8 0%, #d5d0e5 74%);
  border-left: 0;
  border-right: 5px solid var(--primary-color);
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.05) !important;
  transition: all .2s ease-in-out;
}

.exp-strip .box:hover {
  border-right: 0;
  border-left: 5px solid var(--primary-color);
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.10) !important;
  transition: all .2s ease-in-out;
}

.exp-strip img {
  background: var(--primary-color);
  width: 70px;
  padding: 10px;
  margin-right: 15px;
  border-radius: 50px;
}

.exp-strip h4 {
  font-size: 22px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-area {
  height: auto;
  width: 100%;
}

.contact-content {
  padding: 100px;
  background: #000 none repeat scroll 0 0;
}

.contact-content-right {
  padding: 100px;
}

.single-icon i {
  font-size: 32px;
  width: 50px;
  height: 50px;
  line-height: 56px;
  border-radius: 50%;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.single-icon p {
  font-size: 16px;
  line-height: 30px;
}

.single-icon p a {
  color: #333;
}

.contact-icon {
  margin-bottom: 40px;
}

.contact-form {
  padding: 15px 10px 15px 15px;
  border: none;
  border-bottom: 10px solid var(--primary-color);
  border-radius: 10px;
}

.contact-form h3 {
  font-size: 28px;
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 10px;
}

/*--------------------------------------------------------------
# Free-quote
--------------------------------------------------------------*/

.free-quote {
  background: var(--primary-color);
}

.free-quote h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 600;
}

.free-quote .btn-send {
  background: #fff;
}

.free-quote .btn-send:hover {
  background: #dadada;
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog .icon-box {
  background: #fff;
  height: 100%;
  border: 2px solid #fff;
  transition: all .3s ease-in-out;
  position: relative;
  box-shadow: 0 0 35px 1px rgba(0, 0, 0, .05) !important;
  border-radius: 5px;
  overflow: hidden;
}

.blog .icon-box:hover {
  border: 2px solid var(--primary-color);
  transition: all .3s ease-in-out;
  box-shadow: none !important;
  border-radius: 10px;
  transform: scale(1.015);
}

.blog .title {
  font-size: 21px;
  line-height: 28px;
  padding: 20px;
  margin-bottom: 0;
}

.blog .description {
  font-weight: 500;
  line-height: 28px;
  font-size: 16px;
  padding: 0 10px;
  /* display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
	overflow: hidden; */
}

.blog-area {
  height: auto;
  width: 100%;
}

.blog-area img {
  margin-bottom: 25px;
  border-radius: 15px;
  transition: all 0.3s ease 0s;
  box-shadow: 10px 10px 14px rgb(39 39 39 / 25%);
}

.blog-text h4 {
  color: #020042;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
}

.blog-text p {
  color: #333;
  font-weight: 500;
  line-height: 24px;
  font-size: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.single-blog {
  position: relative;
  transition: all 0.3s ease 0s;
}

.single-blog:hover a.stretched-link {
  transition: all 0.3s ease 0s;
  color: #fff;
  padding: 5px 25px;
}

.single-blog:hover .single-services>img {
  transition: all 0.3s ease 0s;
  transform: scale(1.01);
  box-shadow: 15px 15px 16px rgb(39 39 39 / 25%);
}

.comments-type>a,
.date-type,
.blog-meta span.comments-type {
  color: #333;
  letter-spacing: 1px;
  margin-right: 5px;
}

.blog-meta .comments-type i {
  padding-right: 0 !important;
}

.blog-content-right .comments-type>a,
.blog-content-right .date-type,
.blog-content-right .blog-meta span.comments-type,
.blog-content-right .blog-text p {
  color: #fff;
  letter-spacing: 1px;
}

.single-blog .ready-btn {
  border: 1px solid #020042;
  border-radius: 30px;
  color: #020042;
  cursor: pointer;
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  margin-top: 10px;
  padding: 10px 20px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.4s ease 0s;
}

.single-blog .ready-btn:hover {
  border: 1px solid var(--primary-color);
  color: #fff;
}

/*--------------------------------------------------------------
# Blog page
--------------------------------------------------------------*/
.page-area {
  position: relative;
}

.blog-page .banner-box {
  margin-bottom: 40px;
}

.search-option input {
  border: medium none;
  padding: 6px 15px;
  width: 80%;
}

.search-option {
  border: 1px solid #ccc;
  height: 42px;
  margin-bottom: 30px;
}

.search-option button {
  background: transparent none repeat scroll 0 0;
  border: medium none;
  font-size: 20px;
  padding: 8px 23px;
}

.search-option button:hover {
  color: var(--primary-color);
}

.left-blog h4 {
  border-bottom: 1px solid #ddd;
  color: #020042;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 0;
  padding: 15px 10px;
  text-transform: uppercase;
}

.left-blog {
  background: #f9f9f9 none repeat scroll 0 0;
  margin-bottom: 30px;
  overflow: hidden;
  padding-bottom: 20px;
}

.left-blog li {
  border-bottom: 1px solid #ddd;
  display: block;
}

.left-blog ul li a {
  color: #020042;
  display: block;
  font-size: 14px;
  padding: 10px;
  text-transform: capitalize;
}

.recent-single-post {
  border-bottom: 1px solid #ddd;
  display: block;
  overflow: hidden;
  padding: 15px 10px;
}

.ready-btn {
  border: 1px solid #fff;
  border-radius: 30px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  margin-top: 15px;
  padding: 12px 40px;
  text-align: center;
  transition: all 0.4s ease 0s;
  z-index: 222;
}

.ready-btn:hover {
  color: #fff;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  text-decoration: none;
}

.post-img {
  display: inline-block;
  float: left;
  padding: 0 5px;
  width: 35%;
}

.pst-content {
  display: inline-block;
  float: left;
  width: 65%;
}

.pst-content p a:hover,
.left-blog ul li a:hover {
  color: var(--primary-color);
}

.blog-page .single-blog {
  margin-bottom: 40px;
}

.pst-content p a {
  color: #020042;
  font-size: 15px;
}

.header-bottom h1 {
  color: #fff;
  font-size: 34px;
  line-height: 36px;
}

.header-bottom h2 {
  color: #fff;
  font-size: 18px;
  line-height: 22px;
}

.blog-tags {
  padding: 1px 0;
}

.left-blog li:last-child {
  border-bottom: 0;
}

.popular-tag.left-blog ul li a:hover {
  color: #fff;
}

.popular-tag.left-side-tags.left-blog ul {
  padding: 0 10px;
}

.blog-1 .banner-box {
  margin-bottom: 30px;
}

.left-tags .left-side-tags ul li {
  border-bottom: 0;
}

.left-tags .left-side-tags ul li a {
  padding: 3px 10px;
  width: auto;
}

.left-side-tags h4 {
  margin-bottom: 15px;
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.post-information h2 {
  color: #363636;
  font-size: 22px;
  text-transform: uppercase;
}

.post-information {
  padding: 20px 0;
}

.post-information .entry-meta span a {
  color: #020042;
  display: inline-block;
  padding: 10px 0;
}

.entry-meta span a:hover {
  color: var(--primary-color);
}

.post-information .entry-meta {
  border-bottom: 1px solid #ccc;
  margin: 20px 0;
}

.post-information .entry-meta span i {
  padding: 0 10px;
}

.entry-content>p {
  color: #020042;
}

.entry-meta>span {
  color: #020042;
}

.entry-content blockquote {
  background: #fff none repeat scroll 0 0;
  border-left: 5px solid var(--primary-color);
  font-size: 17.5px;
  font-style: italic;
  margin: 0 0 20px 40px;
  padding: 22px 20px;
}

.pagination>.active>a,
.pagination>.active>span,
.pagination>.active>a:hover,
.pagination>.active>span:hover,
.pagination>.active>a:focus,
.pagination>.active>span:focus {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  cursor: default;
  z-index: 3;
}

.social-sharing {
  background: #fff none repeat scroll 0 0;
  border: 1px solid #ccc;
  display: block;
  margin: 30px 0;
}

.social-sharing>h3 {
  display: inline-block;
  font-size: 18px;
  margin: 0;
  padding: 20px 10px;
}

.sharing-icon {
  display: inline-block;
  float: right;
  padding: 13px 10px;
}

.sharing-icon a {
  border: 1px solid #020042;
  color: #020042;
  display: block;
  float: left;
  font-size: 18px;
  height: 34px;
  line-height: 30px;
  margin-left: 10px;
  text-align: center;
  width: 34px;
}

.sharing-icon a:hover {
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.single-blog .author-avatar {
  float: left;
  margin-right: 10px;
}

.single-blog .author-description h2 {
  font-size: 18px;
  margin: 0;
  padding: 0 0 5px;
}

.author-info {
  background: #fff none repeat scroll 0 0;
  float: left;
  margin: 30px 0;
  padding: 15px;
  width: 100%;
}

.single-post-comments {
  margin-bottom: 60px;
  max-width: 650px;
}

.comments-heading h3,
h3.comment-reply-title {
  border-bottom: 1px solid #e8e8e9;
  color: #020042;
  font-size: 18px;
  margin: 0 0 20px;
  padding: 0 0 5px;
  text-transform: uppercase;
}

.comments-list ul li {
  margin-bottom: 25px;
}

.comments-list-img {
  float: left;
  margin-right: 15px;
}

.comments-content-wrap {
  color: #42414f;
  font-size: 12px;
  line-height: 1;
  margin: 0 0 15px 80px;
  padding: 10px;
  position: relative;
}

.author-avatar {
  display: inline-block;
  float: left;
  width: 10%;
}

.author-description h2 {
  color: #777;
  font-size: 20px;
  text-transform: uppercase;
}

.author-description h2 a {
  color: #000;
}

.comments-content-wrap span b {
  margin-right: 5px;
}

span.post-time {
  margin-right: 5px;
}

.comments-content-wrap p {
  color: #909295;
  line-height: 18px;
  margin-bottom: 5px;
  margin-top: 15px;
}

li.threaded-comments {
  margin-left: 50px;
}

.comment-respond {
  margin-top: 60px;
}

span.email-notes {
  color: #42414f;
  display: block;
  font-size: 12px;
  margin-bottom: 10px;
}

.comment-respond p {
  color: #020042;
  margin-bottom: 5px;
}

.comment-respond input[type=text],
.comment-respond input[type=email] {
  border: 1px solid #e5e5e5;
  border-radius: 0;
  height: 32px;
  margin-bottom: 15px;
  padding: 0 0 0 10px;
  width: 100%;
}

.comment-respond textarea#message-box {
  border: 1px solid #e5e5e5;
  border-radius: 0;
  max-width: 100%;
  padding: 10px;
  height: 130px;
  width: 100%;
}

.comment-respond input[type=submit] {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: 1px solid var(--primary-color);
  border-radius: 20px;
  box-shadow: none;
  color: #020042;
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  height: 40px;
  line-height: 14px;
  margin-top: 20px;
  padding: 10px 15px;
  text-shadow: none;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
  white-space: nowrap;
}

.comments-content-wrap span a {
  color: #000;
}

.comments-content-wrap span a:hover {
  color: var(--primary-color);
}

.comment-respond input[type=submit]:hover {
  border: 1px solid var(--primary-color);
  color: #fff;
  background: var(--primary-color);
}

.single-blog .blog-pagination {
  border-top: 1px solid #e5e5e5;
  margin: 0;
  padding-top: 30px;
}

/*--------------------------------------------------------------
# Swiper
--------------------------------------------------------------*/
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.supplier-swipper .swiper-slide {
  padding: 10px 80px;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: var(--bg-color);
  color: white;
  padding: 100px 0 40px;
  position: relative;
}

.footer .logo {
  margin-bottom: 30px;
  display: flex;
  width: 100%;
  height: 78px;
}

.footer h2 {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 20px;
  color: white;
  width: 60%;
}

.footer .social-links {
  display: flex;
  gap: 10px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--accent-color);
  border-radius: 50px;
  color: white;
  font-size: 18px;
  transition: all .5s;
  will-change: transform, background-color;
}

.footer .social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-4px);
}

.footer .footer-links .image {
  width: 80%;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
}

.footer .footer-links h4 {
  font-size: 16px;
  color: white;
  margin-bottom: 16px;
}

.footer .footer-links a {
  font-size: 16px;
  color: #cacaca;
  transition: all .5s;
}

.footer .footer-links a:hover {
  color: var(--primary-color);
  padding-left: 8px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
}

.footer .footer-links ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .bt-container {
  border-top: 1px solid #404040;
  margin-top: 40px;
}

.footer .credits,
.footer .copyright {
  text-align: center;
  padding-top: 20px;
  margin-top: 20px;
  opacity: 0.8;
}

.footer .credits a {
  font-size: 16px;
  color: var(--primary-color);
}

.footer .credits a:hover {
  color: #fff
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (min-width: 1920px) {
  .work-right-text {
    padding: 150px 150px;
  }
}

/* Normal desktop :992px. */
@media (min-width: 992px) and (max-width: 1169px) {
  .slider-content {
    padding: 146px 0;
  }

  .work-right-text {
    padding: 40px 0;
  }

  .work-right-text h2 {
    font-size: 18px;
    line-height: 28px;
  }
}

/* Tablet desktop :768px. */
@media (min-width: 768px) and (max-width: 991px) {
  .layer-1-1 h2 {
    font-size: 24px;
  }

  .layer-1-2 h1 {
    font-size: 31px;
    line-height: 38px;
    padding: 0px 30px;
  }

  .tab-menu ul.nav li a {
    padding: 10px 16px;
  }

  .suscribe-input input {
    width: 60%;
  }

  .suscribe-input button {
    width: 40%;
  }

  .team-content.text-center>h4 {
    font-size: 20px;
  }

  .sus-btn {
    margin-left: 0;
  }

  .suscribe-text h3 {
    font-size: 16px;
    padding-right: 20px;
  }

  .work-right-text h5 {
    font-size: 14px;
    line-height: 22px;
  }

  .work-right-text {
    padding: 36px 0;
  }

  .work-right-text h2 {
    font-size: 14px;
    line-height: 22px;
  }

  .work-right-text .ready-btn {
    font-size: 13px;
    padding: 7px 20px;
    margin-top: 5px;
  }

  .single-awesome-portfolio {
    width: 33.33%;
  }

  .widget-product a img {
    display: block;
    float: none;
    width: 100%;
  }

  .widget-product .product-info {
    display: block;
    float: none;
    padding-left: 0;
    width: 100%;
    margin-top: 20px;
  }

  .map-column {
    margin-left: 0;
    padding-right: 40px;
  }

  .post-information .entry-meta {
    font-size: 13px;
    padding: 5px 0;
  }

  .post-information .entry-meta span a {
    padding: 4px 0;
  }

  .service-pic {
    margin-bottom: 30px;
    text-align: center;
  }

  .single-add-itms {
    width: 50%;
  }

  .left-sidebar-title>h4 {
    font-size: 18px;
  }

  .contact-form {
    margin-top: 0px;
  }

  .search-option input {
    width: 67%;
  }
}

/* small mobile :320px. */
@media (max-width: 767px) {
  .slider-area {
    margin-top: 60px;
  }

  .slider-content {
    padding: 80px 0;
  }

  .slider-content h2 {
    font-size: 18px !important;
    line-height: 24px !important;
  }

  .slider-content h1 {
    font-size: 20px !important;
    line-height: 26px !important;
  }

  .layer-1-3 a.ready-btn {
    padding: 8px 15px;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .well-middle .single-well {
    margin-top: 30px;
  }

  .single-skill {
    margin-bottom: 40px;
  }

  .tab-menu {
    margin-top: 30px;
  }

  .tab-menu ul.nav li a {
    padding: 8px 6px;
  }

  .wellcome-text {
    margin: 0px;
    padding: 70px 0px;
  }

  .subs-feilds {
    width: 100%;
  }

  .suscribe-input input {
    width: 60%;
  }

  .suscribe-input button {
    font-size: 15px;
    padding: 14px 10px;
    width: 40%;
  }

  .section-title h3 {
    font-size: 25px;
  }

  .well-text>h2 {
    font-size: 18px;
  }

  .well-text p {
    display: none;
  }

  .single-team-member {
    margin-bottom: 30px;
  }

  .service-right {
    width: 100%;
  }

  .service-images:hover .overly-text {
    display: none;
  }

  .portfolio-area {
    padding-top: 0px;
  }

  .project-menu li a {
    padding: 8px 12px;
    margin: 10px 4px;
  }

  .pri_table_list {
    margin-bottom: 30px;
  }

  .single-awesome-project,
  .portfolio-2 .single-awesome-project {
    width: 100%;
    float: none;
  }

  .single-blog {
    margin-bottom: 30px;
  }

  .sus-btn {
    margin-left: 0;
    margin-top: 30px;
  }

  .contact-form {
    margin-top: 30px;
  }

  .head-team h5 {
    font-size: 22px;
  }

  .footer-content {
    margin-bottom: 30px;
  }

  .header-bottom h1 {
    font-size: 30px;
    margin-bottom: 0;
  }

  .page-area .slider-content {
    padding: 500px 0;
  }

  .search-option input {
    width: 74%;
  }

  .header-bottom h2 {
    font-size: 20px;
    margin-bottom: 0;
  }

  li.threaded-comments {
    margin-left: 0;
  }
}

/* Large Mobile :480px. */
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .submitbtn {
    float: none;
    width: 99.8%;
  }

  .icons-bottom ul li a {
    height: 40px;
    line-height: 37px;
    width: 40px;
  }

  .blog-post-dlc ul li {
    padding-left: 20px;
    padding-right: 20px;
  }

  .awesome-portfolio-content .portfolio-2 {
    width: 50%;
  }

  .gallary-details .single-awesome-portfolio {
    width: 50%;
  }

  .tab-menu ul.nav li a {
    padding: 8px 20px;
  }
}

@media (max-width: 575px) {
  .slider-content {
    padding: 0;
  }
}