/*
  Theme Name: Bricklix - Modern Construction & Building HTML Template
  Support: 
  Description: Bricklix - Modern Construction & Building HTML Template
  Version: 1.0
*/
/* TABLE OF CONTENT
============================

*** Template Components ***
============================
01. Variable CSS
02. Common CSS
03. Backgrond CSS
04. Button CSS
05. Icon box CSS
06. Heading CSS
07. Spacing CSS
08. Section title CSS
09. Form Filed CSS
10. Animation CSS
11. Top Header CSS
12. Header CSS
13. Offcanvas CSS
14. Bnnaer CSS
15. Services CSS
16. Text Slider CSS
17. About Us CSS
18. Projects CSS
19. Features CSS
20. Messages CSS
21. Testimonial CSS
22. Team CSS
23. FAQ CSS
24. Blog CSS
25. Counter CSS
26. Video CSS
27. Work process CSS
28. Brand CSS
29. Footer CSS
30. Page header CSS

*** Template Pages ***
=========================
31. Service Details Page CSS
32. Project list page CSS
33. Project details page CSS
34. Blog list page CSS
35. Blog details page CSS
36. Contact us page CSS
============================
*/
/*=============================
	1. Google Fonts
===============================*/
@import url("https://fonts.googleapis.com/css2?family=Yantramanav:wght@100;300;400;500;700;900&amp;display=swap");
/*=============================
	01. Variable CSS start
===============================*/
:root {
  --bs-body-font: "Yantramanav", serif;
  --bs-primary-color: #EB5849;
  --bs-secondary-color: #F8BC1E;
  --bs-white-color: #ffffff;
  --bs-black-color: #0F1B24;
  --bs-black-color-two: #111111;
  --bs-background-color: #F5F5F5;
  --bs-border-color: #CCCCCC;
  --bs-border-color-two: #CCCCCC;
  --bs-paragraph-color: #787878;
  --bs-body-font-size: 18px;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 150%;
  --bs-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
  --bs-transition: all 0.3s ease-out 0s;
}

/*=============================
	02. Common CSS start
===============================*/
* {
  margin: 0;
  padding: 0;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: var(--bs-body-font);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-black-color);
  overflow-x: hidden;
}

a,
span,
small {
  display: inline-block;
}

a,
button {
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

a:focus,
.btn:focus,
button:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

p {
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-paragraph-color);
  margin: 0;
  padding: 0;
}

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

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

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

/* Reveal image */
.reveal {
  visibility: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden !important;
}

/* Custom border radious */
.rounded-20 {
  border-radius: 20px;
}

/*=============================
	03. Backgrond CSS Start
===============================*/
.primary-bg {
  background-color: var(--bs-primary-color);
}

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

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

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

.bg-control {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/*=============================
	04. Button CSS Start
===============================*/
.theme-btn {
  color: var(--bs-black-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.32px;
  padding: 14px 30px;
  border-radius: 60px;
  z-index: 9;
  border: 0;
  position: relative;
  overflow: hidden;
}
.theme-btn .btn-icon {
  margin-left: 10px;
}
.theme-btn::before {
  -webkit-transition-duration: 800ms;
          transition-duration: 800ms;
  position: absolute;
  width: 210%;
  height: 290%;
  content: "";
  top: 162%;
  left: 50%;
  background: var(--bs-primary-color);
  -webkit-transform: translateX(-50%) rotate(-8deg);
          transform: translateX(-50%) rotate(-8deg);
  border-radius: 80%;
  z-index: -1;
}
.theme-btn:hover {
  color: var(--bs-white-color);
}
.theme-btn:hover::before {
  top: -96%;
}
.theme-btn.primary {
  color: var(--bs-white-color);
}
.theme-btn.primary::before {
  background-color: var(--bs-black-color);
}
.theme-btn.secondary {
  color: var(--bs-black-color);
}
.theme-btn.secondary:hover {
  color: var(--bs-white-color);
}
.theme-btn.secondary::before {
  background-color: var(--bs-primary-color);
}
.theme-btn.black {
  color: var(--bs-white-color);
}
.theme-btn.black::before {
  background-color: var(--bs-primary-color);
}
.theme-btn.transparent-btn {
  padding: 0;
  background: transparent;
}
.theme-btn.transparent-btn::before {
  display: none;
}
.theme-btn.transparent-btn:hover {
  color: var(--bs-primary-color);
}

/*=============================
	05. Icon box CSS Start
===============================*/
.icon-box {
  width: 50px;
  height: 50px;
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
  color: var(--bs-white-color);
}
.icon-box:hover {
  background: var(--bs-secondary-color);
}
.icon-box.icon-box-border {
  width: 44px;
  height: 44px;
  font-size: 16px;
  border: 1px solid var(--bs-primary-color);
  color: var(--bs-primary-color);
}
.icon-box.secondary-bg {
  color: var(--bs-black-color);
  font-size: 15px;
  width: 42px;
  height: 42px;
}
.icon-box.secondary-bg:hover {
  background-color: var(--bs-primary-color);
  color: var(--bs-white-color);
}

/*=============================
	06. Heading CSS Start
===============================*/
.heading-one {
  color: var(--bs-black-color);
  font-size: 80px;
  font-weight: 900;
  line-height: 80px;
}
@media (max-width: 1399.98px) {
  .heading-one {
    font-size: 68px;
    line-height: 68px;
  }
}
@media (max-width: 1199.98px) {
  .heading-one {
    font-size: 56px;
    line-height: 60px;
  }
}
@media (max-width: 575.98px) {
  .heading-one {
    font-size: 50px;
    line-height: 54px;
  }
}

.heading-two {
  color: var(--bs-black-color);
  font-size: 60px;
  font-weight: 700;
  line-height: 57.6px;
  letter-spacing: -1.2px;
}
@media (max-width: 1399.98px) {
  .heading-two {
    font-size: 56px;
  }
}
@media (max-width: 1199.98px) {
  .heading-two {
    font-size: 50px;
    line-height: 52px;
  }
}
@media (max-width: 991.98px) {
  .heading-two {
    font-size: 46px;
    line-height: 48px;
  }
}
@media (max-width: 767.98px) {
  .heading-two {
    font-size: 40px;
    line-height: 44px;
  }
}
@media (max-width: 575.98px) {
  .heading-two {
    font-size: 36px;
    line-height: 40px;
  }
}

.heading-three {
  color: var(--bs-black-color);
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
}
@media (max-width: 1199.98px) {
  .heading-three {
    font-size: 34px;
    line-height: 36px;
  }
}

.heading-four {
  color: var(--bs-black-color);
  font-size: 26px;
  font-weight: 700;
  line-height: 29.9px;
}

.heading-five {
  color: var(--bs-black-color);
  font-size: 18px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 1.2px;
}

.heading-six {
  color: var(--bs-black-color);
  font-size: 15px;
  font-weight: 700;
  line-height: 18px;
  text-transform: capitalize;
}

/*=============================
	07. Spacing CSS Start
===============================*/
.pt-15 {
  padding-top: 15px;
}

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

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

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

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

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

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

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

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

.py-30 {
  padding: 30px 0;
}

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

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

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

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

.pt-60 {
  padding-top: 60px;
}
@media (max-width: 767.98px) {
  .pt-60 {
    padding-top: 40px;
  }
}

.pb-60 {
  padding-bottom: 60px;
}
@media (max-width: 767.98px) {
  .pb-60 {
    padding-bottom: 40px;
  }
}

.py-100 {
  padding: 100px 0;
}
@media (max-width: 767.98px) {
  .py-100 {
    padding: 80px 0;
  }
}

.mt-120 {
  margin-top: 120px;
}
@media (max-width: 767.98px) {
  .mt-120 {
    margin-top: 100px;
  }
}

.py-120 {
  padding: 120px 0;
}
@media (max-width: 767.98px) {
  .py-120 {
    padding: 100px 0;
  }
}

.pt-120 {
  padding-top: 120px;
}
@media (max-width: 767.98px) {
  .pt-120 {
    padding-top: 100px;
  }
}

/*=============================
	08. Section title CSS Start
===============================*/
.section-title .subtitle {
  color: var(--bs-primary-color);
}

/*=============================
	09. Form Filed CSS Start
===============================*/
.input-group .form-control,
.input-group .form-select {
  height: 60px;
  padding: 0 30px;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  border-radius: 60px;
  border: 1px solid var(--bs-border-color);
  background: transparent;
  opacity: 0.8;
  color: var(--bs-white-color);
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
}
.input-group .form-control:focus,
.input-group .form-select:focus {
  background: transparent;
  border-color: var(--bs-secondary-color);
}
.input-group .form-control::-webkit-input-placeholder, .input-group .form-select::-webkit-input-placeholder {
  color: var(--bs-white-color);
  opacity: 0.8;
}
.input-group .form-control::-moz-placeholder, .input-group .form-select::-moz-placeholder {
  color: var(--bs-white-color);
  opacity: 0.8;
}
.input-group .form-control:-ms-input-placeholder, .input-group .form-select:-ms-input-placeholder {
  color: var(--bs-white-color);
  opacity: 0.8;
}
.input-group .form-control::-ms-input-placeholder, .input-group .form-select::-ms-input-placeholder {
  color: var(--bs-white-color);
  opacity: 0.8;
}
.input-group .form-control::placeholder,
.input-group .form-select::placeholder {
  color: var(--bs-white-color);
  opacity: 0.8;
}
.input-group .form-control option,
.input-group .form-select option {
  color: var(--bs-black-color);
}
.input-group .form-control.textarea {
  padding: 15px 30px;
  height: 140px;
  border-radius: 20px;
}
.input-group.black .form-control,
.input-group.black .form-select {
  opacity: 1;
  color: var(--bs-black-color);
}
.input-group.black .form-control::-webkit-input-placeholder, .input-group.black .form-select::-webkit-input-placeholder {
  color: var(--bs-black-color);
  opacity: 0.8;
}
.input-group.black .form-control::-moz-placeholder, .input-group.black .form-select::-moz-placeholder {
  color: var(--bs-black-color);
  opacity: 0.8;
}
.input-group.black .form-control:-ms-input-placeholder, .input-group.black .form-select:-ms-input-placeholder {
  color: var(--bs-black-color);
  opacity: 0.8;
}
.input-group.black .form-control::-ms-input-placeholder, .input-group.black .form-select::-ms-input-placeholder {
  color: var(--bs-black-color);
  opacity: 0.8;
}
.input-group.black .form-control::placeholder,
.input-group.black .form-select::placeholder {
  color: var(--bs-black-color);
  opacity: 0.8;
}

/*=============================
	10. Animation CSS Start
===============================*/
/* Riplle animation */
.ripple::before,
.ripple::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--ienet-white-rgb, 255, 255, 255), 0.8);
          box-shadow: 0 0 0 0 rgba(var(--ienet-white-rgb, 255, 255, 255), 0.8);
  -webkit-animation: ripple 3s infinite;
          animation: ripple 3s infinite;
  border-radius: 50%;
}

.ripple::before {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.ripple::after {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  content: "";
  position: absolute;
}

@-webkit-keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
            box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
            box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
  }
}

@keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
            box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
            box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
  }
}
/* swiper slide animation */
.slide-transtion {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

/* text slider animation */
@-webkit-keyframes scroll2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(calc(-100% - 2.6rem));
            transform: translateX(calc(-100% - 2.6rem));
  }
}
@keyframes scroll2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(calc(-100% - 2.6rem));
            transform: translateX(calc(-100% - 2.6rem));
  }
}
/* Loader css */
.fullpage_loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bs-white-color);
  z-index: 99999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.fullpage_loader .loader {
  width: 100px;
  height: 100px;
  border: 2px solid;
  border-color: var(--bs-primary-color) transparent;
  border-radius: 50%;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-animation: rotation 1s linear infinite;
          animation: rotation 1s linear infinite;
}
@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/*=============================
	11. Top Header CSS Start
===============================*/
.ep-top-header-section {
  padding: 10px 0;
}
.ep-top-header-section .contact-info {
  -webkit-column-gap: 52px;
     -moz-column-gap: 52px;
          column-gap: 52px;
}
.ep-top-header-section .contact-info li i {
  font-size: 16px;
}
.ep-top-header-section .contact-info li a {
  color: var(--bs-white-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: -0.36px;
  position: relative;
}
.ep-top-header-section .contact-info li a::before {
  width: 0;
  height: 1px;
  background: var(--bs-white-color);
  position: absolute;
  bottom: 3px;
  left: 0;
  content: "";
  opacity: 0;
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
}
.ep-top-header-section .contact-info li a:hover::before {
  opacity: 0.5;
  width: 100%;
}

/*=============================
	12. Header CSS Start
===============================*/
/* Header section one */
.ep-header-section {
  z-index: 999;
  position: absolute;
  /* Header section two */
}
.ep-header-section .navbar .navbar-nav .nav-item {
  margin: 0 5px;
  position: relative;
}
.ep-header-section .navbar .navbar-nav .nav-item .nav-link {
  color: var(--bs-black-color);
  font-size: 18px;
  font-weight: 500;
  line-height: 74px;
}
.ep-header-section .navbar .navbar-nav .nav-item .nav-link i {
  font-size: 10px;
  position: relative;
  top: -1px;
}
.ep-header-section .navbar .navbar-nav .nav-item .active {
  color: var(--bs-primary-color);
}
.ep-header-section .navbar .navbar-nav .nav-item .sub-menu {
  width: 226px;
  background-color: var(--bs-white-color);
  position: absolute;
  top: 100%;
  margin-top: 10px;
  left: 0;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
  -webkit-box-shadow: 0px 10px 30px 0px rgba(137, 139, 142, 0.2);
          box-shadow: 0px 10px 30px 0px rgba(137, 139, 142, 0.2);
}
.ep-header-section .navbar .navbar-nav .nav-item .sub-menu li a {
  color: var(--bs-black-color);
  display: block;
  background-color: transparent;
  width: 100%;
  padding: 8px 16px;
  font-weight: 500;
}
.ep-header-section .navbar .navbar-nav .nav-item .sub-menu li a:hover {
  background-color: var(--bs-primary-color);
  color: var(--bs-white-color);
}
.ep-header-section .navbar .navbar-nav .nav-item:hover > .nav-link {
  color: var(--bs-primary-color);
}
.ep-header-section .navbar .navbar-nav .nav-item:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
  margin-top: 0px;
}
.ep-header-section .navbar .menu-right-info {
  gap: 30px;
}
.ep-header-section.header-two {
  top: 36px;
}
@media (max-width: 1199.98px) {
  .ep-header-section.header-two {
    top: 0;
  }
}
.ep-header-section.header-two .header-container {
  border: 2px solid var(--bs-primary-color);
  border-radius: 80px;
  max-width: 1296px;
  padding: 0 30px;
}
@media (max-width: 1399.98px) {
  .ep-header-section.header-two .header-container {
    max-width: 1116px;
  }
}
.ep-header-section.header-two .navbar .navbar-nav .nav-item .nav-link {
  line-height: 70px;
}
@media (max-width: 1199.98px) {
  .ep-header-section.header-two .sticky-menu {
    -webkit-box-shadow: none;
            box-shadow: none;
    top: 0;
  }
  .ep-header-section.header-two .sticky-menu .mobile-topbar {
    background: var(--bs-white-color);
  }
}

/* Header search css star */
.header-search {
  background: rgba(0, 0, 0, 0.8);
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
          transform-origin: top;
  visibility: hidden;
  opacity: 0;
}
.header-search .close-header-search {
  top: 50px;
  right: 50px;
  width: 60px;
  height: 60px;
  font-size: 22px;
}
.header-search .search-main {
  max-width: 800px;
  width: 100%;
}
.header-search .search-main .form-control {
  color: var(--bs-white-color);
  opacity: 1;
  height: 70px;
}
.header-search .search-main .search-btn {
  right: 5px;
  font-size: 18px;
  font-weight: 500;
}
.header-search .search-main .search-btn::before {
  background-color: var(--bs-primary-color);
}
.header-search.active {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  visibility: visible;
  opacity: 1;
}

#header-fixed-height.active-height {
  display: block;
  height: 90px;
}

.sticky-menu {
  background-color: var(--bs-white-color);
  -webkit-animation: 400ms ease-in-out 0s normal none 1 running fadeInDown;
          animation: 400ms ease-in-out 0s normal none 1 running fadeInDown;
  -webkit-box-shadow: 0 2px 20px rgba(25, 25, 25, 0.1);
          box-shadow: 0 2px 20px rgba(25, 25, 25, 0.1);
  border-radius: 0;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0;
}

.header-two .sticky-menu {
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  top: 26px;
}
.header-two .sticky-menu .header-container {
  background: var(--bs-white-color);
}

/* Mobile menu area start */
.mobile-menu-area {
  z-index: 999;
  background-color: var(--bs-white-color);
  width: 100%;
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
  margin-top: 0;
}
.mobile-menu-area .mobile-topbar {
  width: 100%;
  background-color: var(--bs-white-color);
  padding: 16px 0;
}
.mobile-menu-area .mobile-topbar .bars {
  height: 40px;
  width: 40px;
  color: var(--bs-black-color);
  font-size: 18px;
  border-radius: 50% !important;
  text-align: center;
  line-height: 35px;
  cursor: pointer;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid var(--bs-black-color);
}
.mobile-menu-area .mobile-topbar .bars:hover {
  background-color: var(--bs-secondary-color);
  border-color: var(--bs-secondary-color);
  color: var(--bs-white-color);
}
.mobile-menu-area .mobile-menu-overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  visibility: hidden;
  opacity: 0;
}
.mobile-menu-area .mobile-menu-overlay.active {
  visibility: visible;
  opacity: 1;
}
.mobile-menu-area .mobile-menu-main {
  width: 320px;
  height: 100%;
  background-color: var(--bs-white-color);
  position: fixed;
  top: 0;
  left: -320px;
  z-index: 999;
  overflow-y: scroll;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.mobile-menu-area .mobile-menu-main .logo {
  padding: 20px;
}
.mobile-menu-area .mobile-menu-main .close-mobile-menu {
  position: absolute;
  top: 22px;
  right: 10px;
}
.mobile-menu-area .mobile-menu-main .close-mobile-menu i {
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  color: var(--bs-black-color);
  font-size: 20px;
  cursor: pointer;
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
  border-radius: 4px;
}
.mobile-menu-area .mobile-menu-main .close-mobile-menu i:hover {
  background: var(--bs-primary-color);
  color: var(--bs-white-color);
}
.mobile-menu-area .mobile-menu-main .menu-body .menu-list {
  padding-top: 10px;
}
.mobile-menu-area .mobile-menu-main .menu-body .menu-list ul li a {
  color: var(--bs-black-color);
  font-size: 18px;
  font-weight: 500;
  line-height: 78px;
  border-top: 1px solid var(--bs-border-color-two);
  width: 100%;
  padding: 0px 20px;
  line-height: 44px;
  padding-right: 10px;
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mobile-menu-area .mobile-menu-main .menu-body .menu-list ul li a i {
  width: 32px;
  height: 32px;
  background-color: var(--bs-background-color);
  text-align: center;
  line-height: 32px;
  font-size: 12px;
  border-radius: 3px;
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
}
.mobile-menu-area .mobile-menu-main .menu-body .menu-list ul li a:hover {
  color: var(--bs-primary-color);
}
.mobile-menu-area .mobile-menu-main .menu-body .menu-list ul li a:hover i {
  background-color: var(--bs-primary-color);
  color: var(--bs-white-color);
}
.mobile-menu-area .mobile-menu-main .menu-body .menu-list ul li ul {
  padding-left: 0;
  display: none;
}
.mobile-menu-area .mobile-menu-main .menu-body .menu-list ul li ul a {
  padding: 0px 20px;
  padding-left: 40px;
}
.mobile-menu-area .mobile-menu-main .menu-body .menu-list ul li ul li:last-child a {
  border-bottom: 0;
}
.mobile-menu-area .mobile-menu-main .menu-body .menu-list ul li:last-child a {
  border-bottom: 1px solid var(--bs-border-color-two);
}
.mobile-menu-area .mobile-menu-main.active {
  left: 0 !important;
}
.mobile-menu-area .mobile-menu-action-btn {
  padding: 20px;
}
.mobile-menu-area .mobile-menu-action-btn a {
  color: var(--bs-white-color);
  padding: 12px 0;
  font-size: 16px;
  font-weight: 700;
  border-radius: 5px;
  width: 100%;
  text-align: center;
}
.mobile-menu-area .mobile-menu-action-btn a i {
  font-size: 14px;
  margin-left: 8px;
}
.mobile-menu-area .mobile-menu-action-btn a:hover {
  background-color: var(--bs-black-color);
}
.mobile-menu-area.style2 {
  background: transparent;
}
.mobile-menu-area.style2 .mobile-topbar {
  background: transparent;
  border: 2px solid var(--bs-primary-color);
  border-radius: 80px;
  padding: 12px 30px;
  padding-right: 18px;
  position: relative;
  top: 20px;
}

/*=============================
	13. Offcanvas CSS Start
===============================*/
.offcanvas-overlay {
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
  visibility: hidden;
  opacity: 0;
  cursor: crosshair;
}
.offcanvas-overlay.active {
  visibility: visible;
  opacity: 1;
}

.offcanvas-menu {
  max-width: 450px;
  z-index: 9999;
  padding: 40px;
  overflow-y: auto;
  scrollbar-width: thin;
  font-size: 20px;
  right: -450px;
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
  visibility: hidden;
  opacity: 0;
}
.offcanvas-menu .des {
  padding: 40px 0;
}
.offcanvas-menu .des p {
  font-weight: 20px;
  font-weight: 400;
  color: var(--bs-black-color);
}
.offcanvas-menu.active {
  right: 0;
  visibility: visible;
  opacity: 1;
}

.contact-info .contact-title {
  margin-bottom: 20px;
}
.contact-info ul li {
  margin-bottom: 20px;
}
.contact-info ul li:last-child {
  margin-bottom: 0;
}
.contact-info ul li .info .info-label {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}
.contact-info ul li .info .info-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--bs-black-color);
}
.contact-info ul li:hover .icon-box {
  background: var(--bs-primary-color);
  color: var(--bs-white-color);
}
.contact-info ul li:hover .info .info-text {
  color: var(--bs-primary-color);
}
.contact-info.separator {
  border-top: 1px solid var(--bs-border-color);
  border-bottom: 1px solid var(--bs-border-color);
  padding: 30px 0;
}

.social-icon .social-title {
  margin-bottom: 20px;
}

/*=============================
	14. Bnnaer CSS Start
===============================*/
/* Banner section one */
.ep-banner-section .banner-content {
  padding: 293px 0 148px 0;
}
@media (min-width: 1400px) and (max-width: 1699.98px) {
  .ep-banner-section .banner-content {
    padding: 287px 0 148px 0;
  }
}
@media (max-width: 1399.98px) {
  .ep-banner-section .banner-content {
    padding: 263px 0 98px 0;
  }
}
@media (max-width: 1199.98px) {
  .ep-banner-section .banner-content {
    padding: 230px 0 70px 0;
  }
}
@media (max-width: 991.98px) {
  .ep-banner-section .banner-content {
    padding: 150px 0 100px 0;
  }
}
@media (max-width: 575.98px) {
  .ep-banner-section .banner-content {
    padding: 150px 0 80px 0;
  }
}
.ep-banner-section .banner-content .banner-shadow .shadow {
  width: 212px;
  height: 216px;
  background: var(--bs-primary-color);
}
.ep-banner-section .banner-content .banner-shadow .shadow.shadow1 {
  top: 32px;
  left: -62px;
  -webkit-filter: blur(152px);
          filter: blur(152px);
  opacity: 0.6;
}
.ep-banner-section .banner-content .banner-shadow .shadow.shadow2 {
  bottom: 0;
  right: 0;
  -webkit-filter: blur(160px);
          filter: blur(160px);
  opacity: 0.6;
}
.ep-banner-section .banner-image {
  width: 966px;
  right: -92px;
  margin-top: 90px;
}
@media (min-width: 1400px) and (max-width: 1699.98px) {
  .ep-banner-section .banner-image {
    width: 900px;
    right: -49px;
    margin-top: 136px;
  }
}
@media (max-width: 1399.8px) {
  .ep-banner-section .banner-image {
    width: 856px;
    right: -35px;
  }
}
@media (max-width: 1199.8px) {
  .ep-banner-section .banner-image {
    width: 758px;
  }
}
@media (max-width: 991.8px) {
  .ep-banner-section .banner-image {
    width: 100%;
    right: 0;
    margin-top: 0;
  }
}
.ep-banner-section .banner-image .img {
  clip-path: polygon(180px 0, 100% 0, 100% 100%, 180px 100%, 0 50%);
  z-index: 9;
}
@media (max-width: 767.98px) {
  .ep-banner-section .banner-image .img {
    clip-path: polygon(120px 0, 100% 0, 100% 100%, 120px 100%, 0 50%);
  }
}
@media (max-width: 575.98px) {
  .ep-banner-section .banner-image .img {
    clip-path: polygon(70px 0, 100% 0, 100% 100%, 70px 100%, 0 50%);
  }
}
.ep-banner-section .banner-image .img-shapes .shape-1 {
  top: 0;
  left: 57px;
}
@media (max-width: 575.98px) {
  .ep-banner-section .banner-image .img-shapes .shape-1 {
    left: 19px;
  }
}
.ep-banner-section .banner-image .img-shapes .shape-2 {
  top: 156px;
  left: 0;
  z-index: 99;
}
@media (max-width: 1399.98px) {
  .ep-banner-section .banner-image .img-shapes .shape-2 {
    top: 147px;
    left: 1px;
    width: 150px;
  }
}
@media (max-width: 1199.98px) {
  .ep-banner-section .banner-image .img-shapes .shape-2 {
    top: 136px;
    width: 123px;
  }
}
@media (max-width: 991.98px) {
  .ep-banner-section .banner-image .img-shapes .shape-2 {
    top: 114px;
  }
}
@media (max-width: 767.98px) {
  .ep-banner-section .banner-image .img-shapes .shape-2 {
    top: 74px;
    width: 100px;
  }
}
@media (max-width: 575.98px) {
  .ep-banner-section .banner-image .img-shapes .shape-2 {
    display: none;
  }
}
.ep-banner-section .banner-image .img-shapes .shape-3 {
  bottom: 0;
  left: -50px;
}
@media (max-width: 991.98px) {
  .ep-banner-section .banner-image .img-shapes .shape-3 {
    width: 70%;
  }
}

.banner-profile-image {
  bottom: 13px;
  left: 198px;
  position: absolute;
}
@media (max-width: 1399.98px) {
  .banner-profile-image {
    bottom: 5px;
    left: 162px;
  }
}
@media (max-width: 1199.98px) {
  .banner-profile-image {
    bottom: 1px;
    left: 135px;
  }
}
@media (max-width: 991.98px) {
  .banner-profile-image {
    position: static;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 30px 0 10px;
  }
}
.banner-profile-image .img {
  width: 60px;
  height: 60px;
  border: 3px solid var(--bs-primary-color);
  margin-left: -17px;
}
.banner-profile-image .img:first-child {
  margin-left: 0;
}
.banner-profile-image .img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner-profile-image.style2 .img {
  width: 50px;
  height: 50px;
  border-color: var(--bs-black-color);
  margin-left: -12px;
}
.banner-profile-image.style2 .img:first-child {
  margin-left: 0;
}

/* Banner section two */
.ep-banner-section-two {
  padding-top: 206px;
}
@media (max-width: 1199.98px) {
  .ep-banner-section-two {
    padding-top: 160px;
  }
}
@media (max-width: 767.98px) {
  .ep-banner-section-two {
    padding-top: 135px;
  }
}
.ep-banner-section-two .social-box {
  right: 140px;
}
@media (max-width: 1699.98px) {
  .ep-banner-section-two .social-box {
    right: 30px;
  }
}
@media (max-width: 991.98px) {
  .ep-banner-section-two .social-box {
    display: none;
  }
}
.ep-banner-section-two .social-box ul li {
  margin: 35px 0;
}
.ep-banner-section-two .social-box ul li a {
  color: var(--bs-black-color);
}
.ep-banner-section-two .social-box ul li a:hover {
  color: var(--bs-primary-color);
}
.ep-banner-section-two .banner-text .banner-title {
  font-size: 110px;
  font-weight: 500;
  line-height: 100px;
}
@media (max-width: 1399.98px) {
  .ep-banner-section-two .banner-text .banner-title {
    font-size: 84px;
    line-height: 86px;
  }
}
@media (max-width: 1199.98px) {
  .ep-banner-section-two .banner-text .banner-title {
    font-size: 76px;
    line-height: 76px;
  }
}
@media (max-width: 991.98px) {
  .ep-banner-section-two .banner-text .banner-title {
    font-size: 70px;
    line-height: 68px;
  }
}
@media (max-width: 767.98px) {
  .ep-banner-section-two .banner-text .banner-title {
    font-size: 56px;
    line-height: 56px;
  }
}
@media (max-width: 575.98px) {
  .ep-banner-section-two .banner-text .banner-title {
    font-size: 46px;
    line-height: 46px;
  }
}
@media (max-width: 1699.98px) {
  .ep-banner-section-two .banner-text .banner-info {
    padding-right: 60px;
  }
}
@media (max-width: 991.98px) {
  .ep-banner-section-two .banner-text .banner-info {
    padding-right: 0;
  }
}
.ep-banner-section-two .banner-text .banner-info .profile-text {
  max-width: 170px;
}
.ep-banner-section-two .banner-text .banner-info .play-video {
  gap: 20px;
}
.ep-banner-section-two .banner-text .banner-info .play-video .icon-box {
  color: var(--bs-secondary-color);
  border: 2px solid var(--bs-secondary-color);
}
.ep-banner-section-two .banner-text .banner-info .play-video .icon-box:hover {
  color: var(--bs-white-color);
}

/*=============================
	15. Services CSS Start
===============================*/
/* Services section one */
.service-item {
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
}
.service-item .overlay {
  padding: 30px;
  background: rgba(255, 255, 255, 0.9);
}
@media (max-width: 991.98px) {
  .service-item .overlay {
    padding: 24px;
  }
}
.service-item .overlay .service-title {
  gap: 20px;
  border-bottom: 1px solid var(--bs-border-color);
}
.service-item .overlay .service-title .service-icon {
  background: var(--bs-white-color);
  width: 60px;
  height: 60px;
  color: var(--bs-primary-color);
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
}
.service-item:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.service-item:hover .overlay .service-icon {
  color: var(--bs-white-color);
  background: var(--bs-primary-color);
}

/* Services section two */
.ep-services-section-two .services-main {
  gap: 60px;
}
@media (max-width: 1399.98px) {
  .ep-services-section-two .services-main {
    gap: 30px;
  }
}
@media (max-width: 1199.98px) {
  .ep-services-section-two .services-main {
    gap: 20px;
  }
}
@media (max-width: 991.98px) {
  .ep-services-section-two .services-main {
    gap: 24px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.ep-services-section-two .services-main .service-item-two {
  gap: 60px;
  padding-left: 100px;
}
@media (max-width: 991.98px) {
  .ep-services-section-two .services-main .service-item-two {
    padding-left: 0;
    width: 48%;
  }
}
@media (max-width: 767.98px) {
  .ep-services-section-two .services-main .service-item-two {
    padding-left: 0;
    width: 100%;
  }
}
.ep-services-section-two .services-main .service-item-two .service-title {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  border-bottom: 1px solid var(--bs-border-color);
  position: absolute;
  top: 100%;
  gap: 20px;
  padding-bottom: 20px;
  width: 460px;
  left: 0;
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
}
@media (max-width: 991.98px) {
  .ep-services-section-two .services-main .service-item-two .service-title {
    -webkit-transform: unset;
            transform: unset;
    position: static;
    width: 100%;
    -webkit-transition: unset;
    transition: unset;
  }
}
@media (max-width: 991.98px) {
  .ep-services-section-two .services-main .service-item-two .service-title .title {
    font-size: 22px;
  }
}
.ep-services-section-two .services-main .service-item-two .service-title .icon {
  width: 80px;
  height: 80px;
  background: var(--bs-white-color);
  color: var(--bs-primary-color);
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media (max-width: 991.98px) {
  .ep-services-section-two .services-main .service-item-two .service-title .icon {
    width: 50px;
    height: 50px;
  }
  .ep-services-section-two .services-main .service-item-two .service-title .icon svg {
    width: 26px;
    height: 26px;
  }
}
.ep-services-section-two .services-main .service-item-two .service-image {
  text-wrap: nowrap;
  width: 0;
  height: 460px;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
  overflow: hidden;
}
.ep-services-section-two .services-main .service-item-two .service-image .img {
  height: 100%;
}
@media (max-width: 991.98px) {
  .ep-services-section-two .services-main .service-item-two .service-image {
    -webkit-transform: unset;
            transform: unset;
    height: unset;
    width: 100%;
  }
}
.ep-services-section-two .services-main .service-item-two .service-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
}
.ep-services-section-two .services-main .service-item-two .service-image .theme-btn {
  bottom: 40px;
}
@media (max-width: 991.98px) {
  .ep-services-section-two .services-main .service-item-two .service-image .theme-btn {
    bottom: 20px;
    visibility: hidden;
    opacity: 0;
  }
}
.ep-services-section-two .services-main .service-item-two .service-image:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.ep-services-section-two .services-main .service-item-two.active .service-image {
  margin-left: 60px;
  width: 490px;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
@media (max-width: 1399.98px) {
  .ep-services-section-two .services-main .service-item-two.active .service-image {
    margin-left: 30px;
    width: 466px;
  }
}
@media (max-width: 1199.98px) {
  .ep-services-section-two .services-main .service-item-two.active .service-image {
    margin-left: 20px;
    width: 336px;
  }
}
@media (max-width: 991.98px) {
  .ep-services-section-two .services-main .service-item-two.active .service-image {
    -webkit-transform: unset;
            transform: unset;
    height: unset;
    width: 100%;
    margin-left: 0;
  }
}
.ep-services-section-two .services-main .service-item-two.active .service-title {
  border-color: var(--bs-primary-color);
}
.ep-services-section-two .services-main .service-item-two.active .service-title .icon {
  background: var(--bs-primary-color);
  color: var(--bs-white-color);
}

/*=============================
	16. Text Slider CSS Start
===============================*/
.ep-text-slider-section .slider-main {
  border-top: 2px solid var(--bs-primary-color);
  border-bottom: 2px solid var(--bs-primary-color);
  padding: 20px 0;
}
@media (max-width: 767.98px) {
  .ep-text-slider-section .slider-main {
    padding: 14px 0;
  }
}
.ep-text-slider-section .slider-main {
  gap: 40px;
}
.ep-text-slider-section .slider-main .slider-item {
  white-space: nowrap;
  -webkit-animation: scroll2 18s linear infinite;
          animation: scroll2 18s linear infinite;
  gap: 40px;
}
.ep-text-slider-section .slider-main .slider-item .title {
  font-size: 60px;
  font-size: 72px;
  font-weight: 700;
  line-height: 72px;
  letter-spacing: -2px;
  gap: 40px;
}
@media (max-width: 1199.98px) {
  .ep-text-slider-section .slider-main .slider-item .title {
    font-size: 58px;
    line-height: 60px;
  }
}
@media (max-width: 767.98px) {
  .ep-text-slider-section .slider-main .slider-item .title {
    font-size: 46px;
    line-height: 46px;
    gap: 34px;
  }
}
.ep-text-slider-section .slider-main .slider-item .title .slider-icon {
  width: 80px;
  height: 80px;
}
@media (max-width: 767.98px) {
  .ep-text-slider-section .slider-main .slider-item .title .slider-icon {
    width: 60px;
    height: 60px;
  }
}
.ep-text-slider-section .slider-main .slider-item .title:nth-child(even) {
  color: var(--bs-white-color);
  -webkit-text-stroke: 2px var(--bs-black-color);
  text-stroke: 2px var(--bs-black-color);
}
.ep-text-slider-section .slider-main:hover .slider-item {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.ep-text-slider-section.text-slider-two .slider-main {
  border: 0;
}
.ep-text-slider-section.text-slider-two .slider-main .slider-item .title .slider-icon {
  background: rgba(17, 17, 17, 0.1);
}
.ep-text-slider-section.text-slider-two .slider-main .slider-item .title:nth-child(even) {
  color: var(--bs-black-color);
  -webkit-text-stroke: 0;
  text-stroke: 0;
}
.ep-text-slider-section.style2 {
  padding-bottom: 24px;
  padding-top: 180px;
}
@media (max-width: 991.98px) {
  .ep-text-slider-section.style2 {
    padding-bottom: 0;
  }
}
@media (max-width: 575.98px) {
  .ep-text-slider-section.style2 {
    padding-top: 139px;
  }
}

/*=============================
	17. About Us CSS Start
===============================*/
/* About section one */
.ep-about-us-section .about-list-info {
  -webkit-column-gap: 57px;
     -moz-column-gap: 57px;
          column-gap: 57px;
  row-gap: 20px;
}
@media (max-width: 1399.98px) {
  .ep-about-us-section .about-list-info {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
    row-gap: 14px;
  }
}
.ep-about-us-section .about-list-info li {
  width: 43%;
  padding-left: 31px;
}
@media (max-width: 767.98px) {
  .ep-about-us-section .about-list-info li {
    width: 100%;
    margin-bottom: 8px;
  }
  .ep-about-us-section .about-list-info li:last-child {
    margin-bottom: 0;
  }
}
.ep-about-us-section .about-list-info li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: var(--bs-black-color);
  background: url(../img/icons/circle-check-solid.svg);
  width: 16px;
  height: 16px;
}

/* About section two */
.ep-about-us-section-two .about-image {
  margin-right: 18px;
  height: 100%;
}
@media (max-width: 1399.98px) {
  .ep-about-us-section-two .about-image {
    margin-right: 0;
  }
}
.ep-about-us-section-two .about-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ep-about-us-section-two .about-text {
  padding-right: 18px;
}
@media (max-width: 1399.98px) {
  .ep-about-us-section-two .about-text {
    padding-right: 0;
  }
}
.ep-about-us-section-two .about-text .list-info li {
  margin-bottom: 30px;
}
.ep-about-us-section-two .about-text .list-info li:last-child {
  margin-bottom: 0;
}
.ep-about-us-section-two .about-text .list-info li .list-title {
  gap: 20px;
  margin-bottom: 10px;
}
.ep-about-us-section-two .about-text .list-info li .icon-box {
  border: 1px solid var(--bs-border-color);
  width: 60px;
  height: 60px;
  color: var(--bs-primary-color);
}
.ep-about-us-section-two .about-text .list-info li .icon-box:hover {
  color: var(--bs-white-color);
  background: var(--bs-primary-color);
  border-color: var(--bs-primary-color);
}
.ep-about-us-section-two .about-text .list-info li:hover .icon-box {
  color: var(--bs-white-color);
  background: var(--bs-primary-color);
  border-color: var(--bs-primary-color);
}
@media (max-width: 1199.98px) {
  .ep-about-us-section-two .about-des .text {
    padding-top: 0;
  }
}
@media (max-width: 991.98px) {
  .ep-about-us-section-two .about-des .text {
    padding-top: 30px;
  }
}

/*=============================
	18. Projects CSS Start
===============================*/
/* Project section one */
.ep-projects-section .project-item .img img {
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
}
.ep-projects-section .project-item .project-info {
  padding: 10px;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
  opacity: 0;
  visibility: hidden;
}
.ep-projects-section .project-item .project-info .text {
  padding: 30px;
}
@media (max-width: 1699.98px) {
  .ep-projects-section .project-item .project-info .text {
    padding: 18px;
  }
}
@media (max-width: 1399.98px) {
  .ep-projects-section .project-item .project-info .text .title {
    padding-bottom: 10px;
  }
}
.ep-projects-section .project-item .project-info .text p {
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media (max-width: 575.98px) {
  .ep-projects-section .project-item .project-info .text p {
    -webkit-line-clamp: 1;
  }
}
.ep-projects-section .project-item .project-info .text .project-details {
  border-top: 1px solid var(--bs-border-color);
}
.ep-projects-section .project-item .project-info .text .project-details .project-list-info li {
  padding-left: 31px;
  color: var(--bs-paragraph-color);
  margin-bottom: 18px;
}
.ep-projects-section .project-item .project-info .text .project-details .project-list-info li:last-child {
  margin-bottom: 0;
}
@media (max-width: 1699.98px) {
  .ep-projects-section .project-item .project-info .text .project-details .project-list-info li {
    margin-bottom: 6px;
  }
}
.ep-projects-section .project-item .project-info .text .project-details .project-list-info li strong {
  margin-right: 10px;
  color: var(--bs-black-color);
  font-size: 15px;
  font-weight: 700;
  line-height: 18px;
  text-transform: capitalize;
}
.ep-projects-section .project-item .project-info .text .project-details .project-list-info li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: var(--bs-black-color);
  background: url(../img/icons/circle-check-solid.svg);
  width: 16px;
  height: 16px;
}
.ep-projects-section .project-item:hover .img img {
  -webkit-transform: scale(1.05) rotate(2deg);
          transform: scale(1.05) rotate(2deg);
}
.ep-projects-section .project-item:hover .project-info {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

/* Project section two */
.ep-project-section-two .project-main .swiper {
  width: 100%;
  height: 100%;
}
.ep-project-section-two .project-main .swiper-slide {
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}
.ep-project-section-two .project-main .swiper-slide .project-item {
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
}
.ep-project-section-two .project-main .project-item .icon {
  width: 80px;
  height: 80px;
  opacity: 0;
}
@media (max-width: 575.98px) {
  .ep-project-section-two .project-main .project-item .icon {
    width: 50px;
    height: 50px;
  }
}
.ep-project-section-two .project-main .swiper-slide-active .project-item {
  -webkit-transform: scale(1.07);
          transform: scale(1.07);
}
.ep-project-section-two .project-main .swiper-slide-active .project-item .icon {
  opacity: 1;
}
.ep-project-section-two .project-main .swiper-pagination {
  margin-top: 60px;
}
@media (max-width: 767.98px) {
  .ep-project-section-two .project-main .swiper-pagination {
    margin-top: 10px;
  }
}
.ep-project-section-two .project-main .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--bs-primary-color);
  border-radius: 50%;
  opacity: 1;
  position: relative;
  margin: 0 7px;
}
.ep-project-section-two .project-main .swiper-pagination .swiper-pagination-bullet::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border: 2px solid var(--bs-primary-color);
  border-radius: 50%;
  content: "";
  opacity: 0;
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
}
.ep-project-section-two .project-main .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  opacity: 1;
}

/*=============================
	19. Features CSS Start
===============================*/
.ep-features-section .section-title {
  padding-bottom: 74px;
}

.feature-item {
  border-bottom: 1px solid var(--bs-border-color);
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
}
.feature-item .feature-title a {
  color: var(--bs-black-color);
}
.feature-item .feature-title a:hover {
  color: var(--bs-primary-color);
}
.feature-item .feature-des {
  padding-left: 86px;
}
@media (max-width: 1199.98px) {
  .feature-item .feature-des {
    padding-left: 0;
  }
}
.feature-item .hover-image {
  visibility: hidden;
  opacity: 0;
  z-index: 9;
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
}
.feature-item .feature-img {
  width: 203px;
  height: 156px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(15deg);
          transform: translateY(-50%) rotate(15deg);
}
@media (max-width: 991.98px) {
  .feature-item .feature-img {
    display: none;
  }
}
.feature-item .feature-img img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 100%;
}
.feature-item .icon-box {
  width: 80px;
  height: 80px;
  color: var(--bs-black-color);
}
@media (max-width: 991.98px) {
  .feature-item .icon-box {
    width: 62px;
    height: 62px;
  }
}
.feature-item:hover {
  border-color: var(--bs-primary-color);
}
.feature-item:hover .icon-box {
  background-color: var(--bs-primary-color);
  color: var(--bs-white-color);
}
.feature-item.active-feature {
  border-color: var(--bs-primary-color);
}
.feature-item.active-feature .hover-image {
  visibility: visible;
  opacity: 1;
}
.feature-item.active-feature .icon-box {
  background-color: var(--bs-primary-color);
  color: var(--bs-white-color);
}
.feature-item:last-child {
  margin-bottom: 0;
}

/*=============================
	20. Messages CSS Start
===============================*/
.ep-messages-section {
  padding-top: 222px;
}
@media (max-width: 991.98px) {
  .ep-messages-section {
    padding-top: 120px;
  }
}
@media (max-width: 767.98px) {
  .ep-messages-section {
    padding-top: 100px;
  }
}
.ep-messages-section .messages-main {
  padding: 60px;
}
@media (max-width: 1399.98px) {
  .ep-messages-section .messages-main {
    padding: 40px;
  }
}
@media (max-width: 767.98px) {
  .ep-messages-section .messages-main {
    padding: 24px;
  }
}
.ep-messages-section .messages-main .contact-form {
  padding: 45px 40px 35px;
  position: absolute;
  top: -163px;
  border: 1px solid var(--bs-secondary-color);
}
@media (max-width: 1399.98px) {
  .ep-messages-section .messages-main .contact-form {
    padding: 38px 26px 32px;
  }
}
@media (max-width: 991.98px) {
  .ep-messages-section .messages-main .contact-form {
    position: static;
  }
}
@media (max-width: 575.98px) {
  .ep-messages-section .messages-main .contact-form {
    padding: 30px 20px 30px;
  }
}
.ep-messages-section .messages-main .contact-form .input-group .form-select {
  background-image: url(../img/icons/arrow-down-white.svg);
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 12px 12px;
  font-family: sans-serif;
}
.ep-messages-section.style2 {
  padding-top: 0;
}
@media (max-width: 991.98px) {
  .ep-messages-section.style2 {
    padding-top: 100px;
  }
}
.ep-messages-section.style2 .messages-main .message-wrapper {
  top: 60px;
  position: absolute;
}
@media (max-width: 991.98px) {
  .ep-messages-section.style2 .messages-main .message-wrapper {
    position: static;
  }
}
.ep-messages-section.style2 .messages-main .contact-form {
  border: 0;
  -webkit-box-shadow: var(--bs-shadow);
          box-shadow: var(--bs-shadow);
  top: unset;
}
@media (max-width: 1399.98px) {
  .ep-messages-section.style2 .messages-main .message-image {
    padding-top: 130px;
  }
}
@media (max-width: 1199.98px) {
  .ep-messages-section.style2 .messages-main .message-image {
    padding-top: 180px;
  }
}
@media (max-width: 991.98px) {
  .ep-messages-section.style2 .messages-main .message-image {
    padding-top: 0;
  }
}
.ep-messages-section.style3 {
  margin-bottom: 120px;
}
@media (max-width: 1399.98px) {
  .ep-messages-section.style3 {
    margin-bottom: 71px;
  }
}
@media (max-width: 1199.98px) {
  .ep-messages-section.style3 {
    margin-bottom: 102px;
  }
}
@media (max-width: 991.98px) {
  .ep-messages-section.style3 {
    margin-bottom: 0;
  }
}

.base-contact-info {
  max-width: 506px;
}
.base-contact-info .contact-item {
  padding: 20px 30px;
  border: 1px solid var(--bs-white-color);
  margin-bottom: 40px;
  gap: 20px;
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
}
@media (max-width: 1399.98px) {
  .base-contact-info .contact-item {
    padding: 20px 20px;
  }
}
@media (max-width: 575.98px) {
  .base-contact-info .contact-item {
    text-align: center;
  }
}
.base-contact-info .contact-item .icon-box {
  width: 57px;
  height: 57px;
  border: 1px solid var(--bs-border-color);
  background: rgba(17, 17, 17, 0.2);
}
@media (max-width: 575.98px) {
  .base-contact-info .contact-item .icon-box {
    margin: 0 auto;
  }
}
.base-contact-info .contact-item .info .title {
  color: var(--bs-white-color);
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  text-transform: capitalize;
  width: 64px;
  margin-right: 30px;
}
@media (max-width: 1399.98px) {
  .base-contact-info .contact-item .info .title {
    margin-right: 12px;
  }
}
@media (max-width: 575.98px) {
  .base-contact-info .contact-item .info .title {
    width: 100%;
    margin: 12px 0 5px;
  }
}
.base-contact-info .contact-item .info p a {
  color: var(--bs-white-color);
}
.base-contact-info .contact-item:last-child {
  margin-bottom: 0;
}
.base-contact-info .contact-item:hover {
  border-color: var(--bs-secondary-color);
}
.base-contact-info .contact-item:hover .icon-box {
  background: var(--bs-secondary-color);
  border-color: var(--bs-secondary-color);
}

/*=============================
	21. Testimonial CSS Start
===============================*/
.ep-testimonial-section .testimonial-info .slider-item {
  padding: 40px;
  border: 1px solid var(--bs-black-color);
}
@media (max-width: 1399.98px) {
  .ep-testimonial-section .testimonial-info .slider-item {
    padding: 26px;
  }
}
@media (max-width: 1399.98px) {
  .ep-testimonial-section .testimonial-info .slider-item .icon {
    padding-bottom: 0;
  }
}
.ep-testimonial-section .testimonial-info .slider-item .des p {
  font-size: 28px;
  font-weight: 400;
  line-height: 36px;
}
@media (max-width: 1399.98px) {
  .ep-testimonial-section .testimonial-info .slider-item .des p {
    font-size: 22px;
    line-height: 32px;
  }
}
.ep-testimonial-section .testimonial-info .slider-item .author-info .author {
  gap: 20px;
}
.ep-testimonial-section .testimonial-info .slider-item .author-info .author .img {
  width: 65px;
  height: 65px;
}
.ep-testimonial-section .testimonial-info .slider-item .rating i {
  color: var(--bs-white-color);
}
.ep-testimonial-section .testimonial-info .slider-item .rating .rate {
  color: var(--bs-secondary-color);
}
.ep-testimonial-section.style2 {
  padding-top: 184px;
}
@media (max-width: 575.98px) {
  .ep-testimonial-section.style2 {
    padding-top: 137px;
  }
}
.ep-testimonial-section.style2 .testimonial-img {
  height: 100%;
}
.ep-testimonial-section.style2 .testimonial-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.ep-testimonial-section.style2 .testimonial-info {
  height: 100%;
}
.ep-testimonial-section.style2 .testimonial-info .swiper {
  height: 100%;
  padding-bottom: 2px;
}
.ep-testimonial-section.style2 .testimonial-info .slider-item {
  border-color: var(--bs-primary-color);
}
.ep-testimonial-section.style2 .testimonial-info .slider-item .rating i {
  color: var(--bs-black-color);
  opacity: 0.1;
}
.ep-testimonial-section.style2 .testimonial-info .slider-item .rating .rate {
  color: var(--bs-secondary-color);
  opacity: 1;
}
.ep-testimonial-section.style2 .helpline {
  height: 100%;
}
@media (max-width: 1199.98px) {
  .ep-testimonial-section.style2 .helpline .title {
    font-size: 20px;
  }
}
@media (max-width: 575.98px) {
  .ep-testimonial-section.style2 .helpline .title {
    font-size: 24px;
  }
}
.ep-testimonial-section.style3 {
  padding-top: 230px;
}
@media (max-width: 1399.98px) {
  .ep-testimonial-section.style3 {
    padding-top: 190px;
  }
}
@media (max-width: 1199.98px) {
  .ep-testimonial-section.style3 {
    padding-top: 225px;
  }
}
@media (max-width: 991.98px) {
  .ep-testimonial-section.style3 {
    padding-top: 120px;
  }
}
@media (max-width: 767.98px) {
  .ep-testimonial-section.style3 {
    padding-top: 100px;
  }
}

.help-info-item {
  -webkit-box-shadow: var(--bs-shadow);
          box-shadow: var(--bs-shadow);
  padding: 40px;
  height: 100%;
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
  border: 1px solid transparent;
}
@media (max-width: 1399.98px) {
  .help-info-item {
    padding: 24px 20px;
  }
}
@media (max-width: 1199.98px) {
  .help-info-item .icon {
    padding: 14px 0;
  }
}
.help-info-item .icon-box {
  width: 80px;
  height: 80px;
  color: var(--bs-primary-color);
  font-size: 28px;
}
.help-info-item .icon-box:hover {
  color: var(--bs-white-color);
}
.help-info-item .cell-number {
  color: var(--bs-black-color);
}
@media (max-width: 1199.98px) {
  .help-info-item .cell-number {
    font-size: 20px;
  }
}
.help-info-item .cell-number:hover {
  color: var(--bs-primary-color);
}
.help-info-item:hover {
  border-color: var(--bs-primary-color);
  -webkit-box-shadow: none;
          box-shadow: none;
}

/*=============================
	22. Team CSS Start
===============================*/
.ep-team-section .team-item {
  height: 555px;
}
@media (max-width: 1399.98px) {
  .ep-team-section .team-item {
    height: 480px;
  }
}
@media (max-width: 1199.98px) {
  .ep-team-section .team-item {
    height: 400px;
  }
}
@media (max-width: 991.98px) {
  .ep-team-section .team-item {
    height: unset;
  }
}
.ep-team-section .team-item .img {
  height: 460px;
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
}
@media (max-width: 1399.98px) {
  .ep-team-section .team-item .img {
    height: 390px;
  }
}
@media (max-width: 1199.98px) {
  .ep-team-section .team-item .img {
    height: 320px;
  }
}
@media (max-width: 991.98px) {
  .ep-team-section .team-item .img {
    height: unset;
  }
}
.ep-team-section .team-item .img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
  overflow: hidden;
}
.ep-team-section .team-item.active-team .img {
  height: 100%;
}
.ep-team-section .team-item.active-team .img .team-name {
  visibility: visible;
  opacity: 1;
}
.ep-team-section .team-item.active-team .img .team-info .social-wrapper {
  -webkit-transform: unset;
          transform: unset;
}
.ep-team-section .team-info {
  padding: 34px 24px;
}
.ep-team-section .team-info .social-wrapper {
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
  -webkit-transform: translateY(137px);
          transform: translateY(137px);
}
.ep-team-section .team-info .social-icon {
  width: 40px;
  height: 40px;
  font-size: 14px;
  bottom: -22px;
  margin-top: 20px;
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
}
.ep-team-section .team-info .team-name {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
}
.ep-team-section .social-box {
  width: 38px;
  border-radius: 50px;
  margin: 0 auto;
  background: var(--bs-white-color);
  padding: 8px 0;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
  opacity: 0;
  visibility: hidden;
}
.ep-team-section .social-box ul li {
  padding: 8px 0;
}
.ep-team-section .social-box ul li a {
  color: var(--bs-black-color);
}
.ep-team-section .social-box ul li a:hover {
  color: var(--bs-primary-color);
}
.ep-team-section .social-box.active {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  opacity: 1;
  visibility: visible;
}
.ep-team-section.style2 .team-item-two {
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
}
.ep-team-section.style2 .team-item-two .img {
  border: 1px solid var(--bs-border-color);
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
}
.ep-team-section.style2 .team-item-two .team-info {
  padding: 0;
}
.ep-team-section.style2 .team-item-two .team-info .social-icon {
  color: var(--bs-primary-color);
}
.ep-team-section.style2 .team-item-two .team-info .social-icon:hover {
  background: var(--bs-primary-color);
  color: var(--bs-white-color);
}
.ep-team-section.style2 .team-item-two .team-info .social-wrapper {
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
.ep-team-section.style2 .team-item-two .team-name {
  margin-top: 40px;
}
.ep-team-section.style2 .team-item-two:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.ep-team-section.style2 .team-item-two:hover .img {
  border-color: var(--bs-primary-color);
}

/*=============================
	23. FAQ CSS Start
===============================*/
.ep-faq-section {
  margin-bottom: 34px;
}
.ep-faq-section .faq-image .clients {
  -webkit-box-shadow: var(--bs-shadow);
          box-shadow: var(--bs-shadow);
  padding: 30px;
  bottom: -30px;
  left: 30px;
}
.ep-faq-section .faq-image .clients .icon {
  color: var(--bs-primary-color);
}

.faq-main {
  padding: 40px;
}
@media (max-width: 1399.98px) {
  .faq-main {
    padding: 30px;
  }
}
@media (max-width: 575.98px) {
  .faq-main {
    padding: 30px 20px;
  }
}
.faq-main .faq-body .accordion-button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.faq-main .faq-body .accordion-item {
  border: 0;
  border-bottom: 1px solid rgba(15, 27, 36, 0.2);
  border-radius: 0;
  background: transparent;
}
.faq-main .faq-body .accordion-button {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 0 !important;
  position: relative;
  padding: 26px 0 22px 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  text-transform: capitalize;
  padding-right: 50px;
}
@media (max-width: 575.98px) {
  .faq-main .faq-body .accordion-button {
    padding-right: 38px;
  }
}
.faq-main .faq-body .accordion-button .sl {
  color: transparent;
  -webkit-text-stroke: 0.7px var(--bs-black-color);
  text-stroke: 0.7px var(--bs-black-color);
  margin-right: 6px;
}
.faq-main .faq-body .accordion-button::after {
  display: none;
}
.faq-main .faq-body .accordion-button .arrow-icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(15, 27, 36, 0.1);
  width: 40px;
  height: 40px;
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
}
@media (max-width: 575.98px) {
  .faq-main .faq-body .accordion-button .arrow-icon {
    width: 32px;
    height: 32px;
  }
}
.faq-main .faq-body .accordion-button .arrow-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--bs-black-color);
}
@media (max-width: 575.98px) {
  .faq-main .faq-body .accordion-button .arrow-icon svg {
    width: 15px;
    height: 15px;
  }
}
.faq-main .faq-body .accordion-button .arrow-icon .minus {
  display: none;
}
.faq-main .faq-body .accordion-button:not(.collapsed) {
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.faq-main .faq-body .accordion-button:not(.collapsed) .arrow-icon {
  background: transparent;
  background-color: var(--bs-primary-color);
}
.faq-main .faq-body .accordion-button:not(.collapsed) .arrow-icon svg {
  stroke: var(--bs-white-color);
}
.faq-main .faq-body .accordion-button:not(.collapsed) .arrow-icon .minus {
  display: block;
}
.faq-main .faq-body .accordion-button:not(.collapsed) .arrow-icon .plus {
  display: none;
}
.faq-main .faq-body .accordion-body {
  padding: 0 0 15px 0;
}
.faq-main .faq-body .accordion-body p {
  color: var(--bs-black-color);
}
.faq-main.style2 .accordion-item {
  border: 0;
  border-bottom: 0;
  border-left: 1px solid var(--bs-primary-color);
  border-radius: 20px;
  background: var(--bs-white-color);
  margin-bottom: 25px;
}
.faq-main.style2 .accordion-item:last-child {
  margin-bottom: 0;
}
.faq-main.style2 .accordion-button {
  padding: 25px 30px;
  padding-right: 40px;
}
@media (max-width: 575.98px) {
  .faq-main.style2 .accordion-button {
    padding: 25px 17px;
    padding-right: 40px;
  }
}
.faq-main.style2 .accordion-button .arrow-icon {
  background: transparent;
  right: 13px;
}
.faq-main.style2 .accordion-button:not(.collapsed) {
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.faq-main.style2 .accordion-button:not(.collapsed) .arrow-icon {
  background: transparent;
}
.faq-main.style2 .accordion-button:not(.collapsed) .arrow-icon svg {
  stroke: var(--bs-primary-color);
}
.faq-main.style2 .accordion-button:not(.collapsed) .arrow-icon .plus {
  display: block;
}
.faq-main.style2 .accordion-body {
  padding: 0 83px 25px 60px;
}
.faq-main.style2 .accordion-body p {
  color: var(--bs-paragraph-color);
}
@media (max-width: 575.98px) {
  .faq-main.style2 .accordion-body {
    padding: 0 17px 25px 17px;
  }
}
.faq-main.style3 .accordion-item {
  -webkit-box-shadow: var(--bs-shadow);
          box-shadow: var(--bs-shadow);
}

/*=============================
	24. Blog CSS Start
===============================*/
.ep-blog-section .blog-item {
  padding: 10px;
  padding-bottom: 0;
  height: 100%;
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
}
.ep-blog-section .blog-item .blog-img img {
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
}
.ep-blog-section .blog-item .blog-img .date {
  bottom: 20px;
  right: 30px;
}
.ep-blog-section .blog-item .blog-img .date .icon {
  width: 30px;
  height: 30px;
  margin-right: 5px;
  color: var(--bs-black-color);
  font-size: 14px;
}
.ep-blog-section .blog-item .blog-img .date .text {
  color: var(--bs-paragraph-color);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  padding: 5px 10px;
  border-radius: 30px;
}
.ep-blog-section .blog-item .blog-text {
  padding: 20px 20px 30px;
}
@media (max-width: 1399.98px) {
  .ep-blog-section .blog-item .blog-text {
    padding: 20px 15px 30px;
  }
}
.ep-blog-section .blog-item .blog-text .blog-title a {
  color: var(--bs-black-color);
}
.ep-blog-section .blog-item .blog-text .blog-title a:hover {
  color: var(--bs-primary-color);
}
@media (max-width: 575.98px) {
  .ep-blog-section .blog-item .blog-meta {
    margin-bottom: 10px;
  }
}
.ep-blog-section .blog-item .blog-meta ul {
  gap: 30px;
}
.ep-blog-section .blog-item .blog-meta ul li a {
  color: var(--bs-paragraph-color);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
.ep-blog-section .blog-item .blog-meta ul li a i {
  margin-right: 5px;
  color: var(--bs-black-color);
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
}
.ep-blog-section .blog-item .blog-meta ul li a:hover {
  color: var(--bs-primary-color);
}
.ep-blog-section .blog-item .blog-meta ul li a:hover i {
  color: var(--bs-primary-color);
}
.ep-blog-section .blog-item:hover {
  -webkit-box-shadow: var(--bs-shadow);
          box-shadow: var(--bs-shadow);
  background: var(--bs-white-color);
}
.ep-blog-section .blog-item:hover .blog-img img {
  -webkit-transform: scale(1.05) rotate(2deg);
          transform: scale(1.05) rotate(2deg);
}
.ep-blog-section.style2 {
  margin-bottom: 100px;
}
@media (max-width: 991.98px) {
  .ep-blog-section.style2 {
    margin-bottom: 0;
  }
}
.ep-blog-section.style2 .blog-item {
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.ep-blog-section.style2 .blog-item .blog-text-wrapper {
  padding: 0 20px;
  position: absolute;
  bottom: -100px;
}
@media (max-width: 991.98px) {
  .ep-blog-section.style2 .blog-item .blog-text-wrapper {
    position: static;
    margin-top: 10px;
    padding: 0;
  }
}
.ep-blog-section.style2 .blog-item .blog-text {
  padding: 30px;
}
@media (max-width: 1199.98px) {
  .ep-blog-section.style2 .blog-item .blog-text {
    padding: 22px;
  }
}
.ep-blog-section.style2 .blog-item .blog-text .blog-title a {
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/*=============================
	25. Counter CSS Start
===============================*/
@media (max-width: 767.98px) {
  .ep-counter-section .counter-main {
    row-gap: 30px;
  }
}
@media (max-width: 767.98px) {
  .ep-counter-section .counter-item {
    width: 50%;
  }
}
.ep-counter-section .counter-item .counter-title::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 133px;
  height: 1px;
  background: var(--bs-border-color);
  content: "";
}

/*=============================
	26. Video CSS Start
===============================*/
.ep-video-section .overlay {
  padding: 280px 0;
  background: rgba(15, 27, 36, 0.6);
}
@media (max-width: 1199.98px) {
  .ep-video-section .overlay {
    padding: 180px 0;
  }
}
@media (max-width: 575.98px) {
  .ep-video-section .overlay {
    padding: 100px 0;
  }
}
.ep-video-section .overlay .text .title {
  max-width: 746px;
}
@media (max-width: 1199.98px) {
  .ep-video-section .overlay .text .title {
    font-size: 46px;
    line-height: 48px;
  }
}
@media (max-width: 575.98px) {
  .ep-video-section .overlay .text .title {
    font-size: 36px;
    line-height: 40px;
  }
}
.ep-video-section .overlay .text .play-video {
  gap: 20px;
  padding-left: 40px;
  margin-left: 40px;
}
@media (max-width: 767.98px) {
  .ep-video-section .overlay .text .play-video {
    padding-left: 0;
    margin-left: 0;
  }
}
.ep-video-section .overlay .text .play-video::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 1px;
  height: 104px;
  background: var(--bs-white-color);
  content: "";
}
@media (max-width: 767.98px) {
  .ep-video-section .overlay .text .play-video::before {
    display: none;
  }
}
.ep-video-section .overlay .text .play-video .icon-box {
  width: 52px;
  height: 52px;
  color: var(--bs-black-color);
  border: 2px solid var(--bs-black-color);
}
.ep-video-section .overlay .text .play-video .icon-box:hover {
  color: var(--bs-white-color);
}
.ep-video-section .overlay .text .play-video .video-title {
  max-width: 120px;
}
@media (max-width: 767.98px) {
  .ep-video-section .overlay .text .play-video .video-title {
    max-width: 100%;
  }
}
@media (max-width: 1199.98px) {
  .ep-video-section .overlay .text .play-video .video-title {
    font-size: 22px;
    line-height: 26px;
  }
}
.ep-video-section.style2 {
  padding-top: 230px;
}
@media (max-width: 1399.98px) {
  .ep-video-section.style2 {
    padding-top: 190px;
  }
}
@media (max-width: 1199.98px) {
  .ep-video-section.style2 {
    padding-top: 222px;
  }
}
@media (max-width: 991.98px) {
  .ep-video-section.style2 {
    padding-top: 120px;
  }
}
@media (max-width: 767.98px) {
  .ep-video-section.style2 {
    padding-top: 100px;
  }
}
@media (max-width: 767.98px) {
  .ep-video-section.style2 .video-main {
    max-height: 340px;
  }
}
.ep-video-section.style2 .icon-box {
  width: 80px;
  height: 80px;
}
@media (max-width: 767.98px) {
  .ep-video-section.style2 .icon-box {
    width: 60px;
    height: 60px;
  }
}

/*=============================
	27. Work process CSS Start
===============================*/
@media (max-width: 575.98px) {
  .ep-work-process-section {
    padding-bottom: 40px;
  }
}
.ep-work-process-section .theme-btn::before {
  background: var(--bs-black-color);
}
.ep-work-process-section .work-process .work-step .sl {
  color: transparent;
  -webkit-text-stroke: 1px var(--bs-white-color);
  text-stroke: 1px var(--bs-white-color);
  opacity: 0.6;
}
.ep-work-process-section .work-process-img {
  bottom: 0;
  right: 0;
  z-index: -1;
}
@media (max-width: 1199.98px) {
  .ep-work-process-section .work-process-img {
    display: none;
  }
}

/*=============================
	28. Brand CSS Start
===============================*/
.brand-logo-main {
  padding: 52px 60px;
  -webkit-transform: translateY(120px);
          transform: translateY(120px);
}
@media (max-width: 575.98px) {
  .brand-logo-main {
    padding: 38px 47px;
    -webkit-transform: translateY(80px);
            transform: translateY(80px);
  }
}
.brand-logo-main .swiper-slide {
  display: inline-block;
  width: auto;
}

/*=============================
	29. Footer CSS Start
===============================*/
/* Footer section one */
.ep-footer-section .footer-bg {
  padding: 80px 0 30px 0;
}
@media (max-width: 1399.98px) {
  .ep-footer-section .footer-bg .footer-widget .footer-title {
    font-size: 48px;
  }
}
@media (max-width: 1399.98px) {
  .ep-footer-section .footer-bg .footer-widget .footer-title {
    font-size: 40px;
    line-height: 46px;
  }
}
.ep-footer-section .footer-bg .footer-widget .lets-talk {
  width: 140px;
  height: 140px;
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.32px;
}
.ep-footer-section .footer-bg .footer-widget .important-link li {
  margin-bottom: 17px;
}
.ep-footer-section .footer-bg .footer-widget .important-link li:last-child {
  margin-bottom: 0;
}
.ep-footer-section .footer-bg .footer-widget .important-link li a {
  color: var(--bs-white-color);
  opacity: 0.9;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  position: relative;
}
.ep-footer-section .footer-bg .footer-widget .important-link li a::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 0px;
  height: 6px;
  border-radius: 10px;
  content: "";
  background: var(--bs-primary-color);
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
}
.ep-footer-section .footer-bg .footer-widget .important-link li a:hover {
  color: var(--bs-primary-color);
  padding-left: 20px;
  opacity: 1;
}
.ep-footer-section .footer-bg .footer-widget .important-link li a:hover::before {
  width: 12px;
}
.ep-footer-section .footer-bg .footer-widget .contact-info li {
  margin-bottom: 30px;
}
.ep-footer-section .footer-bg .footer-widget .contact-info li:last-child {
  margin-bottom: 0;
}
.ep-footer-section .footer-bg .footer-widget .contact-info li p {
  margin-bottom: 12px;
}
.ep-footer-section .footer-bg .footer-widget .contact-info li a {
  color: var(--bs-white-color);
}
.ep-footer-section .footer-bg .footer-widget .contact-info li a:hover {
  color: var(--bs-primary-color);
}
.ep-footer-section .footer-bg .footer-widget.contact-widget {
  padding-left: 82px;
}
@media (max-width: 1399.98px) {
  .ep-footer-section .footer-bg .footer-widget.contact-widget {
    padding-left: 30px;
  }
}
@media (max-width: 1199.98px) {
  .ep-footer-section .footer-bg .footer-widget.contact-widget {
    padding-left: 0;
  }
}
@media (max-width: 1199.98px) {
  .ep-footer-section .footer-bg .footer-widget.contact-widget ul li .contact-title {
    font-size: 22px;
  }
}
.ep-footer-section .footer-bg .footer-btm {
  margin-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
}
.ep-footer-section .footer-bg .footer-btm .footer-copyright p {
  color: var(--bs-white-color);
  opacity: 0.8;
}
.ep-footer-section .footer-bg .footer-btm .footer-menu ul {
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
.ep-footer-section .footer-bg .footer-btm .footer-menu ul li a {
  color: var(--bs-white-color);
  opacity: 0.8;
}
.ep-footer-section .footer-bg .footer-btm .footer-menu ul li a:hover {
  color: var(--bs-primary-color);
  opacity: 1;
}
.ep-footer-section.style2 .footer-bg .footer-top-info {
  border-bottom: 1px solid var(--bs-border-color);
  margin-bottom: 80px;
}
.ep-footer-section.style2 .footer-bg .footer-top-info .location p strong {
  opacity: 0.8;
  font-size: 16px;
  font-weight: 700;
  padding-right: 15px;
}
.ep-footer-section.style2 .footer-bg .footer-widget .input-group {
  max-width: 450px;
}
.ep-footer-section.style2 .footer-bg .footer-widget .input-group .form-control {
  height: 50px;
  opacity: 1;
}
.ep-footer-section.style2 .footer-bg .footer-widget .input-group .form-control::-webkit-input-placeholder {
  opacity: 1;
}
.ep-footer-section.style2 .footer-bg .footer-widget .input-group .form-control::-moz-placeholder {
  opacity: 1;
}
.ep-footer-section.style2 .footer-bg .footer-widget .input-group .form-control:-ms-input-placeholder {
  opacity: 1;
}
.ep-footer-section.style2 .footer-bg .footer-widget .input-group .form-control::-ms-input-placeholder {
  opacity: 1;
}
.ep-footer-section.style2 .footer-bg .footer-widget .input-group .form-control::placeholder {
  opacity: 1;
}
.ep-footer-section.style2 .footer-bg .footer-widget .input-group .submit-btn {
  width: 50px;
  height: 50px;
}
.ep-footer-section.style2 .footer-bg .footer-widget .input-group .submit-btn:hover {
  background: var(--bs-primary-color);
  color: var(--bs-white-color);
}
.ep-footer-section.style2 .footer-bg .footer-widget .social-icon ul li a {
  width: 37px;
  height: 37px;
  background: var(--bs-black-color-two);
  color: var(--bs-white-color);
}
.ep-footer-section.style2 .footer-bg .footer-widget .social-icon ul li a:hover {
  background: var(--bs-primary-color);
}
.ep-footer-section.style2 .footer-bg .footer-widget.contact-widget {
  padding-left: 40px;
}
@media (max-width: 1399.98px) {
  .ep-footer-section.style2 .footer-bg .footer-widget.contact-widget {
    padding-left: 0;
  }
}
.ep-footer-section.style2 .footer-bg .footer-btm {
  padding-top: 0;
  border-top: 0;
}
.ep-footer-section.style2 .footer-bg .footer-btm .footer-copyright p {
  opacity: 1;
}
.ep-footer-section.style2 .footer-bg .footer-btm .footer-menu ul li a {
  opacity: 1;
}

/* back to top button */
.scroll-to-top {
  background: var(--bs-primary-color);
  width: 40px;
  height: 40px;
  color: var(--bs-white-color);
  border-radius: 5px;
  border: 0;
  bottom: -45px;
  right: 24px;
  opacity: 0;
  visibility: hidden;
  font-size: 15px;
  z-index: 99;
  cursor: pointer;
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
}
.scroll-to-top:hover {
  background-color: var(--bs-secondary-color);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 24px;
}

/*=============================
	30. Page header CSS start
===============================*/
.ep-page-header-section .overlay {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(235, 88, 73, 0.25)), to(rgba(235, 88, 73, 0)));
  background: linear-gradient(180deg, rgba(235, 88, 73, 0.25) 0%, rgba(235, 88, 73, 0) 100%);
  padding: 290px 0 165px;
}
@media (max-width: 1399.98px) {
  .ep-page-header-section .overlay {
    padding: 260px 0 130px;
  }
}
@media (max-width: 1199.98px) {
  .ep-page-header-section .overlay {
    padding: 230px 0 110px;
  }
}
@media (max-width: 991.98px) {
  .ep-page-header-section .overlay {
    padding: 180px 0 90px;
  }
}
@media (max-width: 767.98px) {
  .ep-page-header-section .overlay {
    padding: 130px 0 55px;
  }
}
.ep-page-header-section .overlay .page-image {
  max-width: 458px;
}
@media (max-width: 1199.98px) {
  .ep-page-header-section .overlay .page-image {
    max-width: 300px;
  }
}
@media (max-width: 575.98px) {
  .ep-page-header-section .overlay .page-image {
    display: none;
  }
}
.ep-page-header-section .overlay .text .page-title {
  font-size: 60px;
  font-weight: 700;
  line-height: 57px;
  letter-spacing: -1.2px;
}
@media (max-width: 1199.98px) {
  .ep-page-header-section .overlay .text .page-title {
    font-size: 46px;
    line-height: 46px;
  }
}
@media (max-width: 575.98px) {
  .ep-page-header-section .overlay .text .page-title {
    font-size: 38px;
    line-height: 38px;
    padding-bottom: 20px;
  }
}
.ep-page-header-section .overlay .text .bread-crumb {
  -webkit-column-gap: 46px;
     -moz-column-gap: 46px;
          column-gap: 46px;
  row-gap: 10px;
}
.ep-page-header-section .overlay .text .bread-crumb li {
  color: var(--bs-black-color);
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  text-transform: capitalize;
  position: relative;
}
@media (max-width: 575.98px) {
  .ep-page-header-section .overlay .text .bread-crumb li {
    font-size: 16px;
    line-height: 16px;
  }
}
.ep-page-header-section .overlay .text .bread-crumb li a {
  color: var(--bs-black-color);
}
.ep-page-header-section .overlay .text .bread-crumb li a:hover {
  color: var(--bs-primary-color);
}
.ep-page-header-section .overlay .text .bread-crumb li::before {
  position: absolute;
  top: 50%;
  left: -27px;
  font-size: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "\f054";
  font-family: "Font Awesome 6 Pro";
  color: var(--bs-primary-color);
}
.ep-page-header-section .overlay .text .bread-crumb li:first-child::before {
  display: none;
}

/*=================================
	31. Service details page CSS Start
===================================*/
.ep-service-details-section .service-list-info .details {
  padding-left: 40px;
}
@media (max-width: 991.98px) {
  .ep-service-details-section .service-list-info .details {
    padding-left: 0;
    padding-top: 0;
  }
}
.ep-service-details-section .service-content {
  position: relative;
  top: -200px;
  margin-bottom: -200px;
}
@media (max-width: 991.98px) {
  .ep-service-details-section .service-content {
    top: 0;
    margin-bottom: 0;
  }
}
.ep-service-details-section .service-content p + p {
  margin-top: 30px;
}
.ep-service-details-section .service-item .overlay {
  background: var(--bs-background-color);
}
.ep-service-details-section .service-item .overlay .service-icon {
  color: var(--bs-black-color);
}
.ep-service-details-section .service-item:hover .overlay .service-icon {
  color: var(--bs-white-color);
}

.service-list-box {
  padding: 30px 20px 20px;
  -webkit-box-shadow: var(--bs-shadow);
          box-shadow: var(--bs-shadow);
  position: relative;
  left: 40px;
  top: -200px;
}
@media (max-width: 991.98px) {
  .service-list-box {
    position: static;
    margin-top: 40px;
  }
}
.service-list-box .service-list-title {
  padding: 20px 30px;
  -webkit-box-shadow: var(--bs-shadow);
          box-shadow: var(--bs-shadow);
}
.service-list-box ul li {
  margin-bottom: 30px;
}
.service-list-box ul li:last-child {
  margin-bottom: 0;
}
.service-list-box ul li a {
  border: 1px solid var(--bs-border-color);
  padding: 15px 30px;
  color: var(--bs-black-color);
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}
.service-list-box ul li a span {
  width: 30px;
  height: 30px;
  color: var(--bs-primary-color);
  background: rgba(235, 88, 73, 0.1);
  text-align: center;
  line-height: 30px;
  font-size: 14px;
}
.service-list-box ul li a:hover {
  background: var(--bs-primary-color);
  color: var(--bs-white-color);
  border-color: var(--bs-primary-color);
}
.service-list-box ul li a:hover span {
  color: var(--bs-white-color);
}

.details-list li {
  position: relative;
  margin-bottom: 19px;
  color: var(--bs-paragraph-color);
  padding-left: 31px;
}
.details-list li:last-child {
  margin-bottom: 0;
}
.details-list li::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  content: "\f101";
  font-family: "Font Awesome 6 Pro";
  color: var(--bs-primary-color);
  font-size: 16px;
}

.page-navigate {
  margin-top: 60px;
}
.page-navigate ul {
  padding: 19px 34px;
}
@media (max-width: 575.98px) {
  .page-navigate ul {
    padding: 17px 24px;
  }
}
.page-navigate ul li a {
  color: var(--bs-black-color);
  font-size: 26px;
  font-weight: 700;
  line-height: 29.9px;
}
@media (max-width: 575.98px) {
  .page-navigate ul li a {
    font-size: 20px;
  }
}
.page-navigate ul li a i {
  font-size: 16px;
}
.page-navigate ul li a:hover {
  color: var(--bs-primary-color);
}

/*================================
	32. Project list page CSS Start
==================================*/
.ep-project-list-section .project-item .icon-box {
  width: 120px;
  height: 120px;
  visibility: hidden;
  opacity: 0;
  font-size: 16px;
}
@media (max-width: 1399.98px) {
  .ep-project-list-section .project-item .icon-box {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 575.98px) {
  .ep-project-list-section .project-item .icon-box {
    width: 80px;
    height: 80px;
    font-size: 14px;
  }
}
.ep-project-list-section .project-item:hover .icon-box {
  visibility: visible;
  opacity: 1;
}

/*================================
	33. Project details page CSS Start
==================================*/
.ep-project-details-section .project-info {
  border: 1px solid var(--bs-border-color);
  padding: 30px 80px;
}
@media (max-width: 991.98px) {
  .ep-project-details-section .project-info {
    padding: 30px 30px;
  }
}
@media (max-width: 767.98px) {
  .ep-project-details-section .project-info .list-item {
    width: 47%;
  }
}
@media (max-width: 575.98px) {
  .ep-project-details-section .project-info .list-item {
    width: 100%;
    text-align: center;
  }
}
.ep-project-details-section .project-content p + p {
  margin-top: 28px;
}

/*=============================
	34. Blog list page CSS Start
===============================*/
.blog-list-section.style2 {
  margin-bottom: 0;
}
.blog-list-section.style2 .blog-item {
  height: unset;
  margin-bottom: 26px;
  -webkit-transition: none;
  transition: none;
}
.blog-list-section.style2 .blog-item img {
  -webkit-transition: none;
  transition: none;
}
.blog-list-section.style2 .blog-item .blog-text-wrapper {
  padding: 0 30px;
  position: relative;
  bottom: 57px;
}
@media (max-width: 575.98px) {
  .blog-list-section.style2 .blog-item .blog-text-wrapper {
    padding: 0;
    position: static;
    margin-top: 12px;
  }
}
@media (max-width: 575.98px) {
  .blog-list-section.style2 .blog-item .blog-text-wrapper .blog-title {
    font-size: 25px;
    line-height: 28px;
  }
}

@media (max-width: 575.98px) {
  .base-pagination {
    margin: 50px 0 0 0;
  }
}
.base-pagination ul {
  gap: 10px;
}
.base-pagination ul li a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  border: 1px solid var(--bs-border-color);
  color: var(--bs-black-color);
}
.base-pagination ul li a:hover {
  border-color: var(--bs-primary-color);
  color: var(--bs-primary-color);
}
.base-pagination ul li a i {
  font-size: 14px;
}
.base-pagination ul li a.active {
  border-color: var(--bs-primary-color);
  background: var(--bs-primary-color);
  color: var(--bs-white-color);
}

.blog-sidebar {
  padding-left: 10px;
}
@media (max-width: 1199.98px) {
  .blog-sidebar {
    padding-left: 0;
  }
}
.blog-sidebar .sidebar-widget {
  margin-bottom: 30px;
  -webkit-box-shadow: var(--bs-shadow);
          box-shadow: var(--bs-shadow);
  padding: 30px;
}
@media (max-width: 575.98px) {
  .blog-sidebar .sidebar-widget {
    padding: 20px;
  }
}
.blog-sidebar .sidebar-widget:last-child {
  margin-bottom: 0;
}
.blog-sidebar .sidebar-widget .input-group .form-control {
  border: 2px solid var(--bs-border-color);
  padding-right: 45px;
}
.blog-sidebar .sidebar-widget .input-group .form-control:focus {
  border-color: var(--bs-primary-color);
  z-index: -1;
}
.blog-sidebar .sidebar-widget .input-group button {
  right: 30px;
}
.blog-sidebar .sidebar-widget .recent-blog .blog-item {
  margin-bottom: 20px;
}
.blog-sidebar .sidebar-widget .recent-blog .blog-item:last-child {
  margin-bottom: 0;
}
.blog-sidebar .sidebar-widget .recent-blog .blog-item a {
  padding: 15px 20px;
  gap: 20px;
  border: 1px solid var(--bs-border-color);
}
.blog-sidebar .sidebar-widget .recent-blog .blog-item a .img {
  width: 80px;
  height: 80px;
}
.blog-sidebar .sidebar-widget .recent-blog .blog-item a .img img {
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
}
.blog-sidebar .sidebar-widget .recent-blog .blog-item a .category {
  color: var(--bs-black-color);
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
}
.blog-sidebar .sidebar-widget .recent-blog .blog-item a:hover {
  border-color: var(--bs-primary-color);
}
.blog-sidebar .sidebar-widget .recent-blog .blog-item a:hover .img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.blog-sidebar .sidebar-widget .service-list-box {
  position: static;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0;
  margin-top: 0;
}
@media (max-width: 575.8px) {
  .blog-sidebar .sidebar-widget .service-list-box ul li a {
    padding: 15px 20px;
  }
}
.blog-sidebar .sidebar-widget.help-info-item {
  border: 1px solid var(--bs-primary-color);
}
.blog-sidebar .sidebar-widget.help-info-item .icon-box {
  width: 96px;
  height: 96px;
  background: var(--bs-primary-color);
  color: var(--bs-white-color);
  font-size: 30px;
}
@media (max-width: 1399.98px) {
  .blog-sidebar .sidebar-widget.help-info-item .number {
    font-size: 34px;
  }
}

.blog-tags {
  gap: 20px;
}
.blog-tags li a {
  border: 1px solid var(--bs-border-color);
  border-radius: 50px;
  color: var(--bs-paragraph-color);
  padding: 5px 14px;
}
.blog-tags li a:hover {
  background: var(--bs-primary-color);
  color: var(--bs-white-color);
  border-color: var(--bs-primary-color);
}

.blog-social-box ul {
  gap: 30px;
}
.blog-social-box ul li a {
  width: 35px;
  height: 35px;
  background: var(--bs-background-color);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--bs-black-color);
  font-size: 14px;
  border: 0;
  padding: 0;
}
.blog-social-box ul li a:hover {
  color: var(--bs-white-color);
  background: var(--bs-primary-color);
}

/*=============================
	35. Blog details page CSS Start
===============================*/
.blog-details .blog-content p + p {
  margin-top: 20px;
}
.blog-details .blog-content blockquote {
  padding: 30px;
}
@media (max-width: 575.98px) {
  .blog-details .blog-content blockquote {
    padding: 20px;
  }
}
.blog-details .blog-content .blog-paginate {
  padding: 20px 30px;
  border: 1px solid var(--bs-border-color);
  margin-top: 24px;
  position: relative;
}
@media (max-width: 575.98px) {
  .blog-details .blog-content .blog-paginate {
    padding: 20px 20px;
  }
}
.blog-details .blog-content .blog-paginate::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1px;
  height: 50px;
  background: var(--bs-primary-color);
  content: "";
}
@media (max-width: 575.98px) {
  .blog-details .blog-content .blog-paginate::before {
    display: none;
  }
}
.blog-details .blog-content .blog-paginate a {
  gap: 20px;
}
.blog-details .blog-content .blog-paginate a .icon-box {
  color: var(--bs-black-color);
}
.blog-details .blog-content .blog-paginate a .text {
  color: var(--bs-black-color);
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.blog-details .blog-content .blog-paginate a:hover .icon-box {
  background: var(--bs-primary-color);
  color: var(--bs-white-color);
}
.blog-details .blog-content .blog-paginate .prev {
  max-width: 170px;
}
@media (max-width: 575.98px) {
  .blog-details .blog-content .blog-paginate .prev {
    max-width: 100%;
  }
}
.blog-details .blog-content .blog-paginate .next {
  max-width: 170px;
  text-align: right;
}
@media (max-width: 575.98px) {
  .blog-details .blog-content .blog-paginate .next {
    max-width: 100%;
  }
}
.blog-details .blog-content .comments ul {
  padding-left: 60px;
}
@media (max-width: 575.98px) {
  .blog-details .blog-content .comments ul {
    padding-left: 0;
  }
}
.blog-details .blog-content .comments ul li {
  margin-bottom: 20px;
}
.blog-details .blog-content .comments ul li:last-child {
  margin-bottom: 0;
}
.blog-details .blog-content .comments ul li .child {
  padding-left: 60px;
}
@media (max-width: 767.98px) {
  .blog-details .blog-content .comments ul li .child {
    padding-left: 20px;
  }
}
@media (max-width: 575.98px) {
  .blog-details .blog-content .comments ul li .child {
    padding-left: 0;
  }
}
.blog-details .blog-content .comments ul .comment-list {
  border: 1px solid var(--bs-primary-color);
  -webkit-box-shadow: var(--bs-shadow);
          box-shadow: var(--bs-shadow);
  padding: 30px 30px 30px 80px;
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .blog-details .blog-content .comments ul .comment-list {
    padding: 20px 20px 20px 52px;
  }
}
@media (max-width: 575.98px) {
  .blog-details .blog-content .comments ul .comment-list {
    padding: 20px;
  }
}
.blog-details .blog-content .comments ul .comment-list:last-child {
  margin-bottom: 0;
}
.blog-details .blog-content .comments ul .comment-list .img {
  width: 120px;
  height: 120px;
  border: 1px solid var(--bs-primary-color);
  left: -60px;
  position: absolute;
}
@media (max-width: 767.98px) {
  .blog-details .blog-content .comments ul .comment-list .img {
    width: 90px;
    height: 90px;
  }
}
@media (max-width: 575.98px) {
  .blog-details .blog-content .comments ul .comment-list .img {
    position: static;
    margin-bottom: 24px;
  }
}
@media (max-width: 767.98px) {
  .blog-details .blog-content .comments ul .comment-list .content .heading {
    padding-bottom: 10px;
  }
}
.blog-details .blog-content .comments ul .comment-list .content .heading .reply {
  padding: 4px 30px;
  border: 1px solid var(--bs-border-color);
  background: var(--bs-white-color);
  color: var(--bs-black-color);
}
.blog-details .blog-content .comments ul .comment-list .content .heading .reply:hover {
  color: var(--bs-white-color);
  border-color: var(--bs-primary-color);
  background: var(--bs-primary-color);
}
.blog-details .blog-content .comment-box .textarea {
  height: 196px;
  padding: 30px;
}

/*=============================
	36. Contact us page CSS Start
===============================*/
.ep-contact-section .base-contact-info .contact-item {
  margin-bottom: 30px;
}
.ep-contact-section .base-contact-info .contact-item:last-child {
  margin-bottom: 0;
}
.ep-contact-section .base-contact-info .contact-item .icon-box {
  color: var(--bs-primary-color);
  font-size: 20px;
}
.ep-contact-section .base-contact-info .contact-item .info .title {
  color: var(--bs-black-color);
}
.ep-contact-section .base-contact-info .contact-item .info p a {
  color: var(--bs-paragraph-color);
}
.ep-contact-section .base-contact-info .contact-item .info p a:hover {
  color: var(--bs-primary-color);
}
.ep-contact-section .contact-form {
  -webkit-box-shadow: var(--bs-shadow);
          box-shadow: var(--bs-shadow);
  padding: 40px;
}
@media (max-width: 767.98px) {
  .ep-contact-section .contact-form {
    padding: 24px;
  }
}
.ep-contact-section .contact-map {
  margin-bottom: -120px;
}
@media (max-width: 767.98px) {
  .ep-contact-section .contact-map {
    margin-bottom: -100px;
  }
}
.ep-contact-section .contact-map .maps {
  height: 670px;
}
@media (max-width: 1399.98px) {
  .ep-contact-section .contact-map .maps {
    height: 550px;
  }
}
@media (max-width: 991.98px) {
  .ep-contact-section .contact-map .maps {
    height: 450px;
  }
}
@media (max-width: 575.98px) {
  .ep-contact-section .contact-map .maps {
    height: 350px;
  }
}
.ep-contact-section .contact-map .maps iframe {
  width: 100%;
  height: 100%;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

.ajax-response.error {
  margin-top: 30px;
  color: red;
  font-size: 14px;
  font-weight: 500;
  background-color: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.5);
  border-radius: 8px;
  padding: 10px 20px;
}

.ajax-response.success {
  margin-top: 30px;
  color: green;
  background-color: rgba(0, 128, 0, 0.1);
  border: 1px solid rgba(0, 128, 0, 0.5);
  font-weight: 500;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  padding: 10px 20px;
}