/*-----------------------------------------------------------------------

  * Modus Template v1.0 
  * Copyright 2024 The Koppa Author (https://themeforest.net/user/gianfar)

  =======================================================================*/
/* Scrollbar Styles */
/* Preloader */
/* Loaded */
/* Animation Item */
/* Typography*/
/* Navigation */
/* Mobile Navigation */
/* Page Header*/
/* Accordion Settings*/
/* Slider Settings */
/* Button */
/* Social links */
/* Home Freelancer */
/* About Section */
/* Services Section */
/* Tagline */
/* Portfolio Filter */
/* 1 Columns */
/* 2 Columns */
/* 3 Columns */
/* 4 Columns */
/* Testimonials Section */
/* Why Choose Us Section */
/* Tagline Section */
/* Footer */
/* Creative Agency Page */
/* Works Section */
/* Digital Agency */
/* Team Section */
/* Why Choose Us */
/* About Us Page */
/* Horizontal Porfolio Slider */
/* Parallax Slider */
/* Centered Slider */
/* Portfolio Tooltip */
/* Single Progect Page */
/* Blog Page */
/* Contact Page */
/* Media Queries For Responsive Design */
/* =======================================================================*/
/* Scrollbar Styles */
* {
  scrollbar-width: thin;
  scrollbar-color: #8b8b8b #cecece;
}
*::-webkit-scrollbar {
  width: 7px;
}
*::-webkit-scrollbar-track {
  background: #cecece;
}
*::-webkit-scrollbar-thumb {
  background-color: #8b8b8b;
  border-radius: 10px;
}
.section {
  position: relative;
  padding: 96px 0 144px 0;
}
.wrap-content {
  overflow: hidden;
}
/* Preloader */
.preloader-svg {
  position: relative;
  z-index: 1001;
}
#loader-wrapper {
  font-family: 'Poppins', sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
@-webkit-keyframes loading {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes loading {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
#loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  width: 51%;
  height: 100%;
  background: #fafafa;
  z-index: 1000;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.load-line {
  position: absolute;
  top: 0;
  height: 3px;
  width: 0%;
  background-color: #f15a25;
  z-index: 2000;
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s;
  -webkit-animation-name: loading;
          animation-name: loading;
  -webkit-animation-direction: normal;
          animation-direction: normal;
}
#loader-wrapper .loader-section.section-left {
  left: 0;
}
#loader-wrapper .loader-section.section-right {
  right: 0;
}
/* Loaded */
.loaded #loader-wrapper .loader-section.section-left {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded #loader-wrapper .loader-section.section-right {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded #loader,
.loaded .preloader-svg {
  opacity: 0;
  transition: all 0.3s ease-out;
}
.loaded #loader-wrapper {
  visibility: hidden;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  transition: all 0.3s 1s ease-out;
}
/* Animation Item */
.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
/* Typography */
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: unset;
}
html {
  scroll-behavior: smooth;
}
.h1,
h1 {
  font-size: 48px;
}
.h2,
h2 {
  font-size: 36px;
  line-height: 1.4;
}
.h3,
h3 {
  font-size: 21px;
  line-height: 1.4;
}
.h4,
h4 {
  font-size: 14px;
}
.h5,
h5 {
  font-size: 12px;
}
.h6,
h6 {
  font-size: 10px;
}
ul,
menu,
dir {
  display: block;
  list-style-type: disc;
  -webkit-margin-before: 0px;
  -webkit-margin-after: 0px;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
  -webkit-padding-start: 0px;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
figure {
  margin: 0;
}
p {
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.3px;
}
.s-subtitle {
  display: inline-block;
  margin-bottom: 12px;
  letter-spacing: 1px;
  border-radius: 100px;
  padding: 6px 12px;
  margin-right: 3px;
  border: 1px solid #f15a25;
  font-size: 14px;
  color: white;
}
.s-subtitle-white {
  display: inline-block;
  margin-bottom: 12px;
  letter-spacing: 1px;
  border-radius: 100px;
  padding: 6px 12px;
  margin-right: 3px;
  border: 1px solid #fff;
  font-size: 14px;
  color: #fff;
}
.sub-title-2 {
  font-family: "Khand", sans-serif;
  font-weight: 600;
}
.s-title {
  margin-bottom: 24px;
  font-weight: 500;
}
.text-white {
  color: #fff;
}
.p-white {
  color: #ccc;
}
.m-icon {
  font-size: 24px !important;
  color: #f15a25;
}
html,
body {
  position: relative;
  min-height: 100%;
  touch-action: auto;
  overflow-x: hidden;
}
body {
  font-family: 'Poppins', 'Montserrat', 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.3px;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* Navigation */
.header-logo {
  display: flex;
  align-items: center;
  height: 100%;
  position: absolute;
  left: 24px;
  z-index: 10;
}
.header-white .header-logo {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.header-logo img {
  height: 30px;
  width: auto;
}
.logo-hover {
  display: flex;
  align-items: center;
  height: 100%;
  position: absolute;
  z-index: 10;
  opacity: 0;
}
.header-logo:hover .logo-default {
  opacity: 0;
}

.header-logo:hover .logo-hover {
  opacity: 1;
}

a.menu-active:before {
  -webkit-transform: translateY(0px) !important;
  transform: translateY(0px) !important;
  opacity: 1 !important;
}
.nav-down {
  transition-duration: 0.4s;
}
.nav-up {
  -webkit-transform: translateY(-73px);
  transform: translateY(-73px);
  transition-property: all;
  transition-duration: 0.4s;
}
#typewriter {
  display: inline-block;
  min-width: 80px; /* Adjust based on the name length */
  white-space: nowrap;
}

.page-navigation {
  margin-top: 0;
  position: fixed;
  height: 56px;
  width: 100%;
  right: 0;
  z-index: 12;
  transition-duration: 0.5s;
  border-bottom: 1px solid #e1e1e1;
}
.home-menu-text {
  height: 100%;
}
.home-menu-text .menu {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  background-color: black;
}
.home-menu-text .menu-item {
  display: inline-block;
  margin: 0 26px;
  font-size: 10px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: unset;
  letter-spacing: 0.1em;
  transition-duration: 0.5s;
}
.home-menu-text a {
  position: relative;
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: unset;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}

.home-menu-text a:hover {
  color: #f15a25;
}

.home-menu-text a.isActive {
  color: #f15a25;
}

.home-menu-text .seen a {
  color: #fff;
}
.home-menu-text .seen a:before {
  background-color: #fff;
}
.home-menu-text a:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #1f2022;
  position: absolute;
  left: 0;
  bottom: 0px;
  opacity: 0;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  transition-duration: 0.3s;
}
.home-menu-text a:hover:before {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.home-menu-text .seen > li > a {
  color: #fff;
  font-size: 24px;
  margin-bottom: 18px;
}
.seen > .menu-item-has-children > .sub-menu {
  padding-top: 0;
  padding-bottom: 34px;
}
/* Mobile Navigation */
.navigation_menu {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 24px 48px 48px 48px;
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  z-index: 11;
  right: 0;
  opacity: 0;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  transition-property: all;
  transition-duration: 0.5s;
  background-color: #191c1f;
}
.navigation_menu .social-icon .social-icon-text {
  font-size: 10px;
  color: #6c6f70 !important;
  letter-spacing: 1em;
  display: block;
}
.navigation_menu .social-icon .wrap-link {
  margin-top: 0;
}
.navigation_menu a p {
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 300;
  color: #4db6ac;
}
.seen {
  -webkit-transform: unset !important;
          transform: unset !important;
}
.nav-down {
  transition-duration: 0.4s;
}
.hamburger {
  width: 45px;
  height: 33px;
  position: absolute;
  cursor: pointer;
  z-index: 1041;
  right: 15px;
  top: 16px;
  transition: 0.5s;
  display: flex;
 
}
.hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 30px;
  opacity: 1;
  top: 5px;
  right: 5px;
  transition: all 0.25s ease-in-out 0s;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  color: #ffffff;
}
.color-menu {
  background: #ffffff none repeat scroll 0% 0%;
}
.opened .color-menu {
  background: #fff;
}
.opened {
  margin-top: -5px;
}
.hamburger span:nth-child(1) {
  margin-top: 0px;
}
.hamburger span:nth-child(2) {
  margin-top: 5px;
  margin-right: 0px;
}
.hamburger span:nth-child(3) {
  margin-top: 10px;
}
.hamburger.opened span:nth-child(1) {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  margin-top: 11px;
}
.hamburger.opened span:nth-child(2) {
  opacity: 0;
  right: 75px;
}
.hamburger.opened span:nth-child(3) {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  margin-top: 11px;
}
.collapse-section > li > a {
  position: relative;
  font-size: 13px !important;
  color: #d0cfcb !important;
}
ul.sub-menu {
  flex-direction: column;
  display: none;
  position: absolute;
  background-color: #fff;
  border: 1px solid #cecece;
}
.menu-item:hover ul.sub-menu {
  display: flex;
}
.menu > .menu-item-has-children > .sub-menu {
  padding: 12px 0;
}
.menu-item > .sub-menu > .menu-item > .sub-menu {
  position: relative;
}
#menu-all-pages > li > .sub-menu {
  padding: 6px 0;
}
.menu > .menu-item-has-children:before {
  content: url("../icons/arrow-down.svg");
  font-size: 10px;
  top: 10px;
  -webkit-filter: invert(1);
          filter: invert(1);
}
.menu.seen > .menu-item-has-children:before {
  -webkit-filter: invert(0);
          filter: invert(0);
}
#menu-all-pages-flat {
  display: inline;
}
.top-separator-line {
  border-top: 1px solid #cecece;
}
.bottom-separator-line {
  border-top: 1px solid #cecece;
}
.main-info {
  right: 0;
  top: 0;
  width: 320px;
  height: 100vh;
  position: fixed;
  background-color: #11141b;
  z-index: 12;
  -webkit-transform: translateX(320px);
          transform: translateX(320px);
  transition-duration: 0.5s;
  padding: 48px 24px;
  color: #fff;
  overflow: auto;
}
.show-info {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}
.menu-follow-us {
  margin-top: 24px;
}
.menu-about-info p {
  margin-top: 14px;
}
.menu-contact-info {
  margin-top: 24px;
}
.menu-contact-info h5 {
  text-transform: uppercase;
}
.menu-contact-info span {
  color: #ccc;
  font-weight: 300;
  text-transform: none;
}
.overflow-hidden {
  overflow: hidden;
}
.white-menu {
  border-bottom: 1px solid #e1e1e147;
  background-color: transparent !important;
}
.white-menu .color-menu {
  background-color: #fff;
}
.white-menu .menu > li > a {
  color: #fff;
}
.white-menu .menu > li > a:before {
  background-color: #fff;
}
.white-menu .menu-item-has-children:before {
  -webkit-filter: unset;
          filter: unset;
}
/* Page Header */
.page-header {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.page-header .header-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  text-align: center;
  align-items: center;
}
.page-header .header-content .title {
  padding-top: 144px;
  width: 100%;
  height: 100%;
  font-size: 10vw;
  text-transform: uppercase;
  font-weight: 700;
  background: #fff;
  color: black;
  mix-blend-mode: screen;
  line-height: 1;
}
.page-sb-title {
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
  background: #fff;
  width: 100%;
  height: 100%;
  padding-bottom: 30px;
}
.page-sb-title h3 {
  margin-top: 12px;
  margin-bottom: 24px;
  width: 700px;
  font-weight: 300;
}
/* Accordion Settings */
.section-slider {
  margin-top: 48px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.m-accordion {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.m-accordion .sl-item {
  overflow: hidden;
  position: relative;
  width: 30%;
  height: 400px !important;
  border-radius: 5px;
  cursor: pointer;
  margin: 0 12px;
  background-position: center;
  background-size: cover;
  padding: 24px;
  color: #fff;
  transition-duration: 0.5s;
}
.m-accordion .sl-item h3 {
  text-transform: uppercase;
  align-items: center;
  font-weight: 600;
}
.sl-item {
  width: 30%;
  transition-duration: 0.3s;
}
.sl-active.sl-item {
  width: 100%;
  transition-duration: 0.3s;
}
.sl-content {
  opacity: 0;
}
.sl-active .sl-content {
  opacity: 1;
  transition-delay: 0.5s;
  width: 100%;
  transition-duration: 0.3s;
}
.slide {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 150px;
}
.slide li {
  padding: 10px;
  border: 2px solid #1c1c1c;
  border-radius: 50%;
  margin-right: 0.8em;
}
.fived {
  margin-right: 0;
}
.m-accordion div.sl-active {
  width: 100%;
}
.acd-number {
  text-align: center;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  height: 35px;
  line-height: 30px;
  border: 2px solid #fff;
  border-radius: 40px;
  width: 35px;
  position: absolute;
  bottom: 24px;
  left: 24px;
}
/* Slider Settings */
[class^="swiper-button-"] {
  transition: all 0.3s ease;
}
.swiper-slide {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.main-slider {
  height: 100vh;
}
.swiper-container {
  width: 100%;
  height: 100vh;
  float: left;
  transition: opacity 0.6s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.6s ease, transform 0.3s ease;
  transition: opacity 0.6s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.swiper-container.nav-slider {
  width: 20%;
  padding-left: 5px;
}
.swiper-container.nav-slider .swiper-slide {
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}
.swiper-container.nav-slider .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.swiper-container.nav-slider .swiper-slide .content {
  width: 100%;
}
.swiper-container:hover .swiper-button-prev,
.swiper-container:hover .swiper-button-next {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.swiper-container.loading {
  opacity: 0;
  visibility: hidden;
}
.swiper-slide {
  overflow: hidden;
}
.swiper-slide .img-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center !important;
  background-size: cover !important;
}
.swiper-slide .entity-img {
  display: none;
}
.swiper-slide .content {
  position: absolute;
  top: 40%;
  left: 0;
  width: 50%;
  padding-left: 5%;
  color: #000000;
}
.slider-content {
  width: 100%;
  z-index: 1;
}
.wrap-caption {
  overflow: hidden;
}
[class^="swiper-button-"] {
  width: 72px;
  opacity: 0;
  visibility: hidden;
}
.swiper-button-prev {
  -webkit-transform: translateX(50px);
  transform: translateX(50px);
}
.swiper-button-next {
  -webkit-transform: translateX(-50px);
  transform: translateX(-50px);
}
.swiper-button-next,
.swiper-button-prev {
  height: 36px;
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white,
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: none;
}
.slider-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #ffffff;
}
.slider-arrow:before {
  content: "";
  width: 100%;
  height: 1px;
  bottom: 0;
  background-color: #ffffff;
  position: absolute;
}
.counter {
  bottom: 24px;
  right: 130px;
  position: absolute;
  color: #ffffff;
}
.first-number span {
  position: absolute;
  right: 0;
}
.custom-pagination {
  display: flex;
  font-size: 32px;
  letter-spacing: 8px;
  font-weight: 600;
}
.slider-arrow-text {
  transition-duration: 0.5s;
  font-size: 18px;
  letter-spacing: 1px;
  font-family: "Khand", sans-serif;
}
.swiper-button-prev:hover div .slider-arrow-text {
  -webkit-transform: translateX(24px);
          transform: translateX(24px);
  transition-duration: 0.5s;
}
.swiper-button-next:hover div .slider-arrow-text {
  -webkit-transform: translateX(-24px);
          transform: translateX(-24px);
  transition-duration: 0.5s;
}
/* Button */
.black-button,
.default-button,
.orange-button {
  display: inline-block;
}
.button-pos {
  text-align: center;
  color: #1f2022;
  position: relative;
  display: inline-block;
  overflow: hidden;
  height: 48px;
  line-height: 48px;
  text-transform: uppercase;
  border: 1px solid #f15a25;
  border-radius: 100px;
  text-decoration: none;
  padding: 0 40px;
  font-size: 10px;
  transition-duration: 0.3s;
  font-weight: 400;
  letter-spacing: 1px;
}
.button-pos .btn-bg-1 {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #1f2022;
  transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
.button-pos:hover {
  color: #fff;
}
.button-pos:hover .btn-bg-1 {
  width: 220%;
  height: 565px;
}
.button-pos:active {
  background-color: #1f2022;
}
.circle-button .button-pos {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 160px;
  border-radius: 100%;
  padding: unset;
}
.btn-bg-2 {
  position: absolute;
  z-index: -2;
  width: 100%;
  height: 100%;
  top: 0 !important;
  left: 0 !important;
}
.orange-button {
  position: relative;
  z-index: 1;
}
.orange-button .btn-bg-2 {
  background-color: #f15a25;
}
.orange-button > .button-pos {
  color: #fff;
  border: none;
}
.orange-button a:hover {
  border-color: transparent;
  background-color: transparent;
}
.orange .button-pos .btn-bg-1 {
  background-color: #fff;
  z-index: 2;
}
.orange .button-pos:active {
  background-color: #fff;
}
.black-button .btn-bg-2 {
  background-color: #1f2022;
}
.black-button .button-pos .btn-bg-1 {
  background-color: #f15a25;
}
.black-button > .button-pos {
  color: #fff;
}
.white-button {
  position: relative;
  z-index: 1;
}
.white-button .btn-bg-2 {
  background-color: trannsparent;
}
.white-button .button-pos .btn-bg-1 {
  background-color: #f15a25;
}
.white-button > a {
  color: #fff;
  border-color: #fff;
}
.white-button a:hover {
  border-color: transparent;
}
/* Social links */
.wrap-link {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.wrap-link:hover .link-hover {
  position: absolute;
  -webkit-transform: translateY(-32px);
  transform: translateY(-32px);
  transition-duration: 0.5s;
}
.wrap-link:hover span {
  -webkit-transform: translateY(-32px);
  transform: translateY(-32px);
  transition-duration: 0.5s;
}
.wrap-link span {
  color: #f15a25;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  transition-duration: 0.5s;
}
.wrap-link .link-hover {
  color: #f15a25;
  text-transform: uppercase;
  position: absolute;
  display: inline-block;
  left: 0;
  width: 100%;
  transition-duration: 0.5s;
}
.link-text {
  position: relative;
  overflow: hidden;
  height: 24px;
}
.s-link {
  display: inline-block;
  margin-right: 8px;
}
.s-link a {
  position: relative;
  display: inline-block;
  text-decoration: unset;
}
.social-icon-img, .social-icon i {
  width: 35px;
  height: 35px;
  color: #000000;
  font-size: 24px;
  margin: 0 5px;
  transition: all 0.3s ease;
}

/* Responsive styles for social icons */
@media (max-width: 768px) {
  .social-icon-img, .social-icon i {
    width: 30px;
    height: 30px;
    font-size: 20px;
    margin: 0 4px;
  }
}

@media (max-width: 480px) {
  .social-icon-img, .social-icon i {
    width: 15px;
    height: 15px;
    font-size: 16px;
    margin: 0 3px;
  }
}
.social-icon-img:hover, .social-icon i:hover {
  color: #f15a25;
}

.wrap-link.wrap-link-white span {
  color: #fff;
}
.wrap-link.wrap-link-white .link-hover {
  color: #fff;
}
.wrap-link.wrap-link-white:after {
  background-color: #fff;
}
.s-bg-img {
  top: 0;
  left: 0;
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #11141b;
  z-index: -1;
}
.s-bg-img .bg-img-1 {
  width: 50%;
  height: 100%;
  overflow: hidden;
}
.s-bg-img .bg-img-1 div {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}
.s-bg-img .bg-img-2 {
  width: 50%;
  height: 100%;
  overflow: hidden;
}
.s-bg-img .bg-img-2 div {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  opacity: 0.7;
}
.s-bg-img .sec-bg-anim {
  -webkit-transform: scale(3);
          transform: scale(3);
}
/* Home Freelancer */
.header-content {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.header-content .social-icon {
  margin-bottom: 12px;
}
.header-content h1 {
  font-weight: 500;
  letter-spacing: -2px;
}
.header-content h1 span {
  color: #f15a25;
  font-style: italic;
}
.head-group-btn {
  position: relative;
  margin-top: 48px;
  z-index: 0;
}
.head-group-btn .black-button {
  margin-right: 12px;
}
.photo-user-item {
  overflow: hidden;
  border-radius: 1000px;
  background-size: cover;
}
.header-img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.photo-user-wrap {
  position: relative;
  height: 600px;
  width: 600px;
}
/* About Section */
.s-about {
  position: relative;
}
.s-about h3 {
  margin-top: 24px;
  font-weight: 200;
  line-height: 32px;
}
.s-about .f-skill h3 {
  margin-bottom: 60px;
}
.s-about .f-skill span {
  display: inline-block;
  color: #fff;
  margin-bottom: 6px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
}
.sec-1 {
  padding-right: 33px;
}
.sec-2 {
  padding-left: 33px;
}
.progress {
  background-color: #ffffff29;
  height: 4px;
  border-radius: unset;
  margin-bottom: 48px;
}
.progress-bar {
  background-color: #f15a25;
}
/* Services Section */
.f-sevices {
  margin-top: 48px;
}
.he-item {
  position: relative;
  padding-top: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #cecece;
  background-position: center !important;
  background-size: cover !important;
  border-radius: 5px;
  transition-duration: 0.3s;
}
.he-item .service-name {
  position: relative;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 1;
}
.he-item span {
  position: relative;
  text-align: center;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  width: 35px;
  height: 35px;
  line-height: 30px;
  border: 2px solid #1f2022;
  border-radius: 40px;
  z-index: 1;
}
.he-item P {
  position: relative;
  z-index: 1;
}
.he-item:hover {
  color: #fff;
}
.he-item:hover span {
  border-color: #fff;
}
.he-item:hover p {
  color: #fff;
}
.s-bg-hover {
  top: 0;
  left: 0;
  position: absolute;
  display: flex;
  height: 100%;
  width: 100.1%;
  z-index: 0;
  overflow: hidden;
}
.s-bg-hover div {
  background-color: #fff;
  width: 100.1%;
  height: 100%;
  opacity: 1;
}
/* Tagline */
.tagline-section {
  overflow: hidden;
  position: relative;
  background-color: #11141b;
}
.tagline-marquee {
  font-family: "Khand", sans-serif;
  position: relative;
  padding: 18px 0;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  z-index: 1;
}
.tagline-marquee span {
  display: inline-block;
  font-size: 40px;
  color: #fafafa;
  line-height: 70px;
  text-transform: uppercase;
  z-index: 1;
}
/* Portfolio Filter */
.item {
  width: 33.3333%;
  padding: 14px !important;
}
.filter-btn {
  margin-bottom: 26px;
  box-shadow: none !important;
}
#filter {
  text-align: center;
  padding-bottom: 24px;
}
#filter li {
  display: inline-block;
}
#filter a {
  position: relative;
  display: inline-block;
  margin: 0 14px;
  font-size: 12px;
  line-height: 12px;
  text-transform: uppercase;
  color: #1f2022;
  text-decoration: unset;
  transition-duration: 0.5s;
  font-weight: 600;
}
#filter a:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: #f15a25;
  position: absolute;
  left: -14px;
  bottom: 8px;
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  transition-duration: 0.3s;
}
#filter a:hover:before {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
#filter a.active-filter {
  color: #f15a25;
}
a.active-filter:before {
  -webkit-transform: translateY(0px) !important;
          transform: translateY(0px) !important;
  opacity: 1 !important;
}
/* 1 Columns */
.item.column-1 {
  width: 100%;
  padding: 9px !important;
}
/* 2 Columns */
.item.column-2 {
  width: 50%;
  padding: 9px !important;
}
/* 3 Columns */
.item {
  position: relative;
  width: 33.3333%;
  padding: 9px !important;
}
/* 4 Columns */
.item.column-4 {
  width: 25%;
  padding: 9px !important;
}
.works-content {
  margin-top: 48px;
}
a.work-link {
  display: inline-block;
  text-decoration: none;
  color: #1f2022;
}
.head-text-img {
  text-align: center;
  margin-top: 12px;
  text-transform: uppercase;
  font-weight: 600;
}
.f-zoom-img {
  top: 12px;
  left: 12px;
  display: inline-block;
  position: absolute;
  font-size: 24px;
  padding: 6px;
  border-radius: 2px;
  color: #fff;
  background-color: #0000007a;
  line-height: 0;
  z-index: 2;
  -webkit-transform: scale(0);
          transform: scale(0);
  transition-duration: 0.3s;
}
.single-wrap-item:hover .f-zoom-img,
.wrap-item:hover .f-zoom-img,
.item:hover .f-zoom-img {
  -webkit-transform: scale(1);
          transform: scale(1);
}
/* Testimonials Section */
.f-testimonials {
  padding-left: 48px;
  position: relative;
}
.f-testimonials:before {
  content: url('../icons/quotes.svg');
  opacity: 0.5;
  right: 0;
  bottom: 0;
  position: absolute;
}
.testimonials-slider {
  margin-top: 78px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.testimonials-slider .tst-pagination {
  position: relative;
  margin-top: 78px;
}
.testimonials-slider .swiper-pagination-bullet {
  border: 1px solid #fff;
  opacity: 1;
  background-color: unset;
}
.testimonials-slider .swiper-pagination-bullet-active {
  background-color: #fff;
}
.tst-name-wrap {
  margin-top: 24px;
  display: flex;
  align-items: center;
}
.tst-name-wrap img {
  border-radius: 500px;
  margin-right: 24px;
  width: 120px;
  height: 120px;
}
.tst-name-wrap p {
  font-family: "Khand", sans-serif;
}
.tst-name h3 {
  margin-bottom: 0;
}
/* Why Choose Us Section */
.f-card {
  padding-top: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #1f2022;
}
.f-card p {
  padding-left: 54px;
}
.f-card h3 {
  text-transform: uppercase;
  display: flex;
  align-items: center;
  font-weight: 600;
}
.f-card h3 span {
  position: relative;
  text-align: center;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  width: 35px;
  height: 35px;
  line-height: 30px;
  border: 2px solid #f15a25;
  border-radius: 40px;
  margin-right: 18px;
}
.choose-us-cont {
  margin-top: 24px;
}
/* Tagline Section */
.plx-tagline .container {
  text-align: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.plx-tagline .main-title,
.plx-tagline .sub-title {
  color: #fff;
}
.plx-tagline .main-title {
  font-size: 60px;
}
.plx-tagline h3 {
  font-weight: 200;
  color: #fff;
  margin-bottom: 48px;
}
.plx-tagline {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.plx-tagline h2 {
  letter-spacing: -1px;
  font-weight: 300;
}
/* Footer */
.footer {
  position: relative;
  border-top: 1px solid #cecece;
  padding-top: 42px;
  z-index: 0;
  background-color: #000000;
}
.footer-menu a {
  position: relative;
  color: #1f2022;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 500;
  text-decoration: none;
}
.footer-menu a:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #1f2022;
  position: absolute;
  left: 0;
  bottom: 0px;
  opacity: 0;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  transition-duration: 0.3s;
}
.footer-menu a:hover:before {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.footer-logo img {
  width: 100px;
}
.contacts-info span {
  display: block;
  font-weight: 300;
}
.copyright {
  text-align: center;
  border-top: 1px solid #cecece;
  font-size: 11px;
  margin-top: 32px;
  padding: 12px 0;
  letter-spacing: 1px;
}
/* Creative Agency Page */
.c-agency {
  background-position: center;
  background-size: cover;
}
.c-agency .title {
  font-size: 100px;
  line-height: 1;
}
.c-agency p {
  margin-top: 24px;
}
.ca-header-img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ca-header-img div:nth-child(2) {
  margin-top: 96px;
  margin-left: 12px;
}
.ca-header-img div:nth-child(1) {
  margin-right: 12px;
}
.ca-header-img div {
  width: 50%;
  background-position: center;
  background-size: cover;
  height: 70%;
}
.ca-choose {
  color: #fff;
}
.ca-choose .f-card {
  border-bottom: 1px solid #ffffff21;
}
.ca-choose .f-card h3 span {
  background-color: transparent;
  border: none;
}
/* Works Section */
.works-section {
  padding-bottom: 96px;
}
.works-slider .swiper-slide {
  overflow: unset;
}
.clients {
  padding-bottom: 96px;
}
/* Digital Agency */
.da-header {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
}
.d-bottom {
  display: flex;
  justify-content: space-between;
}
.d-bottom .social-icon {
  margin-top: 72px;
  margin-bottom: unset;
}
.d-prlx-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -3;
  opacity: 1;
}
#scene {
  width: 100%;
  height: 100%;
  touch-action: auto;
}
#scene .d-img-bg {
  position: absolute;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
.da-about-content .black-button {
  margin-top: 48px;
}
.da-about-content p {
  margin-top: 12px;
}
.da-about-content p span {
  font-family: "Khand", sans-serif;
  font-weight: 500;
}
.da-about-img {
  position: relative;
}
.da-about-img img:nth-child(2) {
  position: absolute;
  width: 75%;
  height: auto;
  right: -40%;
  bottom: 0%;
}
.da-about-img img:nth-child(3) {
  position: absolute;
  width: 135%;
  height: auto;
  right: -40%;
  bottom: 5%;
  z-index: -1;
}
.da-counter-wrap {
  margin-top: 96px;
}
.da-counter-wrap .da-counter-symbol,
.da-counter-wrap .da-counter {
  font-size: 48px;
  font-weight: 600;
  color: #f15a25;
  line-height: 1.2;
}
.da-counter-wrap p {
  font-family: "Khand", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
}
.da-counter-symbol {
  display: flex;
  justify-content: center;
}
/* Team Section */
.dark-section {
  background-color: #11141b;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.team-slider .info {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
}
.team-slider .info h3 {
  font-weight: 500;
  margin-bottom: 0;
}
.team-content {
  margin-top: 48px;
}
.team-name p {
  font-family: "Khand", sans-serif;
}
.da-clients {
  padding-top: 48px;
  padding-bottom: 48px;
  background-color: #11141b;
}
.da-works {
  background-size: 100%;
  background-repeat: no-repeat;
}
/* Why Choose Us */
.da-choose {
  height: 1035px;
}
.da-circle {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.circle-1,
.circle-2,
.circle-3 {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #f15a25;
  position: absolute;
  border-radius: 500px;
  color: #f15a25;
  font-weight: 500;
  padding: 24px;
  width: 350px;
  height: 350px;
  font-weight: 700;
  background-color: #fff;
}
.circle-3,
.circle-2 {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
/* About Us Page */
.h-button-tags span {
  display: inline-block;
  line-height: 1.4;
  border-radius: 100px;
  padding: 6px 12px;
  margin-right: 3px;
  border: 1px solid #f15a25;
}
.section-counter {
  padding: 96px 0;
}
.section-counter .da-counter-wrap {
  margin: unset;
}
/* Horizontal Porfolio Slider */
.ph-sld-sec {
  height: 100vh;
  display: flex;
  align-items: center;
}
.ph-sld-sec .swiper-slide {
  overflow: unset;
  width: 30%;
}
.ph-sld-sec .swiper-slide:nth-child(1) {
  height: 100%;
  display: flex;
  align-items: center;
  width: 500px !important;
}
.sp-content .title {
  font-size: 36px;
}
.sp-content .title span {
  color: #f15a25;
  font-style: italic;
  font-weight: 500;
}
.ph-slider .swiper-wrapper {
  display: flex;
  align-items: center;
}
.ph-slider .sp-content p {
  margin-top: 24px;
}
/* Parallax Slider */
.swiper-button-prev {
  left: 0;
}
.swiper-button-next {
  right: 0;
}
.wrap-slider-next-img {
  border-radius: 100px;
  border: 1px solid #ffffff45;
  bottom: 48px;
  right: 48px;
  z-index: 2;
  position: absolute;
  padding: 6px;
}
.slider-next-img {
  position: relative;
  height: 120px;
  background-position: center;
  background-size: cover;
  border-radius: 100px;
}
.slider-prev-img {
  height: 120px;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 35px;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  opacity: 0 !important;
  transition-duration: 0.5s;
}
.swiper-button-next:hover .slider-next-img,
.swiper-button-prev:hover .slider-prev-img {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1 !important;
}
.wrap-slider-content {
  position: absolute;
  bottom: 48px;
  left: 144px;
  z-index: 1;
}
.wrap-slider-content h1 {
  color: #fff;
}
.wrap-slider-content p {
  width: 50%;
  color: #fff;
  margin-top: 12px;
  margin-bottom: 24px;
}
.plx-sl-text {
  width: 100%;
  text-align: center;
  position: absolute;
  text-transform: uppercase;
  top: -32px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 32px;
  padding-left: 16px;
  font-size: 12px;
}
/* Centered Slider */
.slider-v2 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.slider-v2 .swiper-slide {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  min-height: 100vh;
}
.slider-v2 .swiper-slide .img-slider {
  position: relative;
  top: unset;
  left: unset;
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  transition: 3s cubic-bezier(0.085, 0.85, 0.17, 1);
}
.slider-v2 .swiper-slide .wrap-cen-slider {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  width: 70%;
  top: 10%;
  height: 85%;
}
.slider-v2 .swiper-slide .wrap-cen-slider h3 {
  color: #1f2022;
  margin-top: 12px;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}
.slider-v2 .button-underline {
  margin-top: 56px;
}
.slider-v2 .counter {
  color: #1f2022;
  display: unset;
  justify-content: unset;
  align-items: unset;
  bottom: 28px;
  right: 100px;
  height: auto;
}
.centered-slider .social-icon {
  display: flex;
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 1;
}
.centered-slider .social-icon .s-link {
  margin-right: 12px;
}
.centered-slider .slider-arrow {
  color: #1f2022;
  font-weight: 600;
}
.centered-slider .slider-arrow:before {
  background-color: #1f2022;
}
.centered-slider:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 50%;
  bottom: 0;
}
.grab-slider-img {
  -webkit-clip-path: inset(40px 40px 40px 40px) !important;
          clip-path: inset(40px 40px 40px 40px) !important;
}
/* Portfolio Tooltip */
.tooltip-works {
  position: relative;
  overflow: hidden;
  background-attachment: fixed !important;
  padding-top: 234px;
  background-color: #fff;
}
.mouseOver_text img {
  max-width: 100%;
  max-height: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin: 0 auto;
}
a.img-link-hover {
  display: block;
  padding: unset;
  overflow: hidden;
  text-decoration: none;
  color: #1f2022;
  transition-duration: 0.5s;
}
a.img-link-hover .s-bg-hover {
  background-color: #f15a25;
}
#show-image {
  position: absolute;
  display: none;
  color: #000000;
  z-index: 2;
}
#show-image img {
  transition-duration: 0.3s;
  width: 25vw;
}
.t-work-link-item {
  position: relative;
  height: 134px;
  border-bottom: 1px solid #cecece;
  background-position: center !important;
  background-size: cover !important;
  transition-duration: 0.3s;
}
.t-work-link-item .row {
  height: 100%;
  align-items: center;
}
.t-work-link-item .row .wrap-work-img {
  height: 100%;
  padding: 12px 18px;
}
.t-work-link-item .t-work-name {
  position: relative;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 1;
}
.t-work-link-item span {
  font-family: "Khand", sans-serif;
  position: relative;
  text-align: center;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  width: 35px;
  height: 35px;
  line-height: 30px;
  border: 2px solid #1f2022;
  border-radius: 40px;
  z-index: 1;
}
.t-work-link-item P {
  font-family: "Khand", sans-serif;
  color: #f15a25;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.t-work-link-item:hover {
  color: #fff;
}
.t-work-link-item:hover span {
  border-color: #fff;
}
.t-work-prev-img {
  position: relative;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  z-index: 1;
  border-radius: 1000px;
}
/* Single Progect Page */
.single-page-header {
  padding: 144px 0;
  background-position: center;
  background-size: cover;
}
.single-page-header .project-category {
  margin-top: 24px;
  padding: 6px 12px;
  background-color: #2c2e32;
  border-radius: 5px;
  color: #fff;
  font-weight: 500;
}
.single-page-header h1 {
  font-weight: 600;
  font-size: 70px;
  margin-bottom: 0;
}
.single-page-header .social-icon {
  margin-top: 24px;
}
.single-page-header p {
  margin-top: 12px;
  display: inline-block;
  width: 60%;
}
.single-project-info {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.single-project-info .container {
  text-align: unset;
  height: unset;
  display: block;
  align-items: unset;
  justify-content: unset;
}
.sp-text-info {
  color: #fff;
}
.sp-text-info span {
  font-family: "Khand", sans-serif;
  margin-right: 6px;
  font-weight: 500;
}
.sp-text-info a {
  color: #f15a25;
  text-decoration: none;
  font-weight: 600;
}
.sp-text-info a:hover {
  text-decoration: underline;
}
.single-project-img div:nth-child(3n) {
  margin-top: 24px;
}
.single-wrap-item {
  position: relative;
}
.project-des-text p {
  margin-bottom: 48px;
}
.other-posts-content {
  margin-top: 48px;
}
.other-posts-content .post-link {
  text-decoration: none;
  text-align: center;
}
.other-post-img {
  background-position: center;
  background-size: cover;
  height: 300px;
  width: 300px;
}
.other-posts-content .post-link h4 {
  color: #fff;
  position: relative;
  width: 100%;
  bottom: -307px;
  text-align: center;
  margin-top: 12px;
  text-transform: uppercase;
  font-weight: 500;
}
/* Blog Page */
.blog-page-header {
  padding: 144px 0;
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid #e1e1e1;
}
.blog-page-header h1 {
  font-weight: 600;
  font-size: 70px;
}
.blog-page-header p {
  margin-top: 12px;
  display: inline-block;
}
.latest-post-text .button-link {
  margin-top: 12px;
}
.latest-post-text .button-link .link-text {
  line-height: 20px;
  height: 20px;
}
.latest-post-text .button-link .wrap-link span {
  font-family: "Khand", sans-serif;
  font-size: 12px;
}
.latest-post-text .button-link .wrap-link:hover .link-hover {
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}
.latest-post-text .button-link .wrap-link:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #f15a25;
  position: absolute;
}
.latest-post-text a {
  text-decoration: none;
}
.latest-post-text h3 {
  color: #1f2022;
  margin-top: 12px;
  margin-bottom: 6px;
}
.latest-post {
  margin-bottom: 48px;
}
.blog-sidebar .sub-title-2 {
  margin-top: 12px;
  margin-bottom: 6px;
  font-weight: 500;
}
.blog-sidebar a {
  color: #f15a25;
  font-weight: 500;
}
.cloud-tags li {
  display: inline-block;
  border-radius: 100px;
  padding: 6px 12px;
  margin-right: 3px;
  border: 1px solid #1f2022;
  transition-duration: 0.3s;
  line-height: 1.4;
  margin-bottom: 6px;
}
.cloud-tags li:hover {
  background-color: #1f2022;
}
.cloud-tags li:hover a {
  color: #fff;
}
.cloud-tags a {
  color: #1f2022;
  text-decoration: none;
  font-weight: 400;
}
.blog-plx-img {
  height: 500px;
}
.arrows-obj {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
nav.navigation.pagination {
  display: inline-block;
  width: 100%;
}
.nav-links {
  width: 100%;
  display: inline-block;
  text-align: center;
}
a.prev.page-numbers {
  float: left;
}
a.next.page-numbers {
  float: right;
}
.arrow-left,
.arrow-right {
  width: 56px;
}
.arrows-obj .arrow-right {
  position: relative;
  transition-duration: 0.5s;
}
span.page-numbers.current {
  position: relative;
}
.arrows-obj span {
  color: #1f2022;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 0.4em;
  font-size: 18px;
  transition-duration: 0.5s;
}
span.page-numbers.current .v-pagination {
  color: #1f2022;
  font-weight: 600;
}
.nav-links .v-pagination {
  position: relative;
  font-size: 16px;
  display: inline-block;
  padding: 12px 6px;
  margin-top: 4px;
}
.form-control:focus {
  border-color: #f15a25;
  box-shadow: 0 0 0 0.25rem #f15a2530;
}
.blog-sidebar {
  margin-top: 48px;
}
blockquote {
  margin-top: 12px;
  margin-bottom: 12px;
  padding: 6px 6px 6px 12px;
  border-left: 2px solid #f15a25;
  font-weight: 500;
  font-style: italic;
}
.single-page-header {
  border-bottom: 1px solid #e1e1e1;
}
.single-page-header .cloud-tags {
  margin-top: 24px;
}
.header-single-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header-single-content h1 {
  width: 70%;
}
.header-single-content .latest-post-info {
  margin-top: 24px;
}
.header-single-content .latest-post-info .post-date span {
  color: #fff;
  font-weight: 500;
}
.header-single-content .post-date {
  padding: 6px 12px;
  background-color: #2c2e32;
  border-radius: 5px;
}
/* Contact Page */
.form-group {
  margin-bottom: 14px;
}
#contactForm {
  margin-top: 48px;
}
#map {
  height: 100%;
}
.form-control {
  border-color: #cecece;
  border-radius: 2px;
}
.form-control:focus {
  border-color: #f15a25;
  box-shadow: 0 0 0 0.25rem #d31e2f30;
}
button {
  background-color: unset;
  border-width: unset;
  border-style: unset;
  border-color: unset;
  -o-border-image: unset;
     border-image: unset;
}
.contact-info li span {
  font-size: 16px;
  font-family: "Khand", sans-serif;
  margin-right: 6px;
  font-weight: 600;
}
.contact-info li a {
  color: #f15a25;
  font-weight: 600;
}
div#msgSubmit {
  text-align: center;
  font-size: 14px;
  margin-top: 12px;
}
/* Media Queries For Responsive Design */
@media (min-width: 1399.98px) {
  .da-about-img img:nth-child(3) {
    bottom: -25%;
  }
  .da-about-img img:nth-child(2) {
    bottom: -15%;
  }
}
@media (max-width: 1199.98px) {
  .da-about-img img:nth-child(2) {
    bottom: 30%;
  }
  .da-about-img img:nth-child(3) {
    bottom: 30%;
  }
  .single-page-header p {
    width: 90%;
  }
  .photo-user-wrap {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 991.98px) {
  .wrap-slider-content {
    left: 48px;
  }
  .ph-sld-sec .swiper-slide {
    width: 50%;
  }
  .header-content {
    display: inline-block;
    text-align: center;
    height: 100%;
  }
  .header-img {
    flex-direction: row;
    margin-bottom: 24px;
  }
  .header-page-img {
    padding: 96px 0 144px 0;
  }
  .ca-header-img div {
    height: 400px;
  }
  .c-agency .title {
    font-size: 70px;
    margin-top: 48px;
  }
  .plx-tagline .main-title {
    display: inline-block;
    font-size: 70px;
    line-height: 1;
    margin-bottom: 24px;
  }
  .d-prlx-bg {
    top: -35%;
    left: -35%;
    height: 150%;
    width: 150%;
  }
  .da-about-img img:nth-child(2),
  .da-about-img img:nth-child(3) {
    bottom: 50%;
  }
  .other-post-img {
    width: 200px;
    height: 200px;
  }
  .other-posts-content .post-link h4 {
    bottom: -207px;
  }
}
@media (max-width: 767.98px) {
  .sp-img-2 {
    margin-top: 24px;
  }
  .single-page-header h1 {
    font-size: 48px;
  }
  .t-work-link-item {
    height: unset;
    padding: 48px 0;
  }
  .wrap-work-img {
    display: none;
  }
  .wrap-slider-next-img {
    display: none;
  }
  .wrap-slider-content p {
    width: 90%;
  }
  .ph-sld-sec .swiper-slide:nth-child(1) {
    width: 400px !important;
  }
  .sp-content .title {
    font-size: 24px;
  }
  /* Navigation */
  .menu > .menu-item-has-children > .sub-menu {
    padding-top: 0;
    background-color: #1f2022;
    border: unset;
  }
  .menu > .menu-item-has-children:before {
    top: -8px;
    position: relative;
  }
  .home-menu-text {
    position: relative;
    background-color: #000000;
  }
  .home-menu-text .menu {
    flex-direction: column;
    position: absolute;
    height: 100vh;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    transition-duration: 0.3s;
  }
  .home-menu-text .menu.seen {
    background-color: #1f2022;
  }
  .menu {
    text-align: center;
  }
  .menu-item-has-children .sub-menu {
    position: relative;
  }
  .menu > li > a {
    font-size: 13px;
    line-height: 32px;
  }
  .sub-menu li a {
    font-size: 10px;
    color: #b7b7b7;
    font-weight: 300;
  }
  .sub-menu .menu-item-has-children .sub-menu {
    margin-left: 24px;
  }
  .home-menu-text .menu-item {
    display: block;
  }
  .menu-item:hover ul.sub-menu {
    display: none;
  }
  /*Typography*/
  .h1,
  h1 {
    font-size: 36px;
    line-height: 1.4;
  }
  .h2,
  h2 {
    font-size: 24px;
  }
  .h3,
  h3 {
    font-size: 18px;
  }
  .sec-1 {
    padding-right: unset;
  }
  .sec-2 {
    padding-left: unset;
  }
  .s-about .f-skill h3 {
    margin-top: 48px;
    margin-bottom: 24px;
  }
  .column-3 {
    width: 49.8%;
  }
  .s-bg-img > div:nth-child(1) {
    width: 0;
  }
  .s-bg-img > div:nth-child(2) {
    width: 100%;
  }
  .testimonials-slider {
    margin-top: 24px;
  }
  .c-agency .title {
    font-size: 48px;
  }
  .m-accordion {
    flex-direction: column;
  }
  .m-accordion div.sl-item {
    height: 98px !important;
    width: 100% !important;
    margin: 6px 0;
    transition-duration: 0.5s;
  }
  .m-accordion div.sl-active {
    height: 300px !important;
    transition-duration: 0.5s;
  }
  .d-bottom {
    flex-direction: column;
  }
  .da-about-img img:nth-child(2),
  .da-about-img img:nth-child(3) {
    display: none;
  }
  .da-about-content {
    margin-top: 24px;
  }
  .da-counter-wrap div:nth-child(2),
  .da-counter-wrap div:nth-child(3),
  .da-counter-wrap div:nth-child(4) {
    margin-top: 24px;
  }
  .circle-1,
  .circle-2,
  .circle-3 {
    width: 200px;
    height: 200px;
  }
  .da-choose {
    height: 720px;
  }
  .plx-tagline h2 {
    font-size: 36px;
  }
  .da-works {
    background-size: 140%;
  }
  .page-sb-title h3 {
    width: 500px;
  }
  .slider-v2 .counter {
    display: none;
  }
  .other-posts-content .post-link {
    margin-bottom: 56px;
    display: flex;
    flex-direction: column;
    align-items: center !important;
  }
  .other-post-img {
    width: 300px;
    height: 300px;
  }
  .other-posts-content .post-link h4 {
    bottom: -307px;
  }
  #map {
    margin-top: 48px;
    height: 400px;
  }
}
@media (max-width: 575.98px) {
  .ph-sld-sec .swiper-slide {
    width: 70%;
  }
  .ph-sld-sec .swiper-slide:nth-child(1) {
    width: 300px !important;
  }
  .h1,
  h1 {
    font-size: 24px;
  }
  .photo-user-wrap {
    height: 300px;
    width: 300px;
  }
  .plx-tagline .main-title {
    font-size: 48px;
  }
  .footer {
    padding-top: 24px;
  }
  a.footer-logo {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 24px;
  }
  a.footer-logo img {
    width: 50px;
  }
  .copyright {
    margin-top: 48px;
  }
  .ca-header-img div {
    height: 300px;
  }
  .c-agency .title {
    margin-top: 24px;
  }
  .page-sb-title h3 {
    width: 300px;
  }
  .plx-tagline h2 {
    font-size: 24px;
  }
  .team-slider .info {
    flex-direction: column;
  }
}
@media (max-width: 379.98px) {
  .ph-sld-sec .swiper-slide {
    width: 100%;
  }
  .head-group-btn .black-button {
    margin-right: 0;
  }
}
@media (max-height: 575.98px) {
  .ph-sld-sec .swiper-slide {
    width: 30%;
  }
  .sp-content .title {
    font-size: 14px;
  }
  .sp-content .head-group-btn {
    margin-top: 24px;
  }
  .ph-sld-sec .swiper-slide:nth-child(1) {
    width: 300px !important;
  }
}
.skill-card {
  background-color: #ffffff; 
  border: none;
  color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  opacity: 0.8;
}
.skill-card .card-title {
  font-size: 1.2rem;
}
.skill-card .card-text {
  font-size: 0.9rem;
}
.social-icon-img {
  width: 35px;
  height: 35px;
  transition: all 0.3s ease;
  object-fit: cover;
}

/* Optional: Reduce size for smaller screens */
@media (max-width: 768px) {
  .social-icon-img {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .social-icon-img {
    width: 24px;
    height: 24px;
  }
}


.projects-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-header {
    margin-bottom: 40px;
}

.section-subtitle {
    color: #6c757d;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    color: #212529;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.filter-controls {
    margin-bottom: 30px;
}

#filter {
    display: flex;
    flex-direction: row;
    align-items: center;
    /* gap: 15px; */
    list-style: none;
    padding: 0;
}

#filter a {
    color: #6c757d;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

#filter a.active-filter,
#filter a:hover {
    background: linear-gradient(90deg, #000000, #f15f2c);
    color: white;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.project-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    border: 1px groove #f15a25;
}

.project-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.card-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
   
}

.card-image:hover::before {
    opacity: 1;
}

.card-image:hover .zoom-icon {
    opacity: 1;
}

.card-image:hover img {
    transform: scale(1.05);
}

.card-content {
    padding: 20px;
}

.project-link {
    text-decoration: none;
    color: inherit;
}

.project-title {
    color: #212529;
    font-size: 1.3rem;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.project-tags {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.project-card:hover .project-title {
    color: #f15a25;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .projects-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .card-image {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .projects-section {
        padding: 60px 0;
    }
    
    #filter {
        gap: 10px;
    }
    
    #filter a {
        padding: 2px 2px;
        font-size: 0.9rem;
    }
}



.tools-slider-container {
  position: relative;
  width: 100%;
}

@media (max-width: 768px) {
  .tools-slider-container {
    width: 100%;
    overflow: hidden;
  }
}

.tools-slider-track {
  display: flex;
  width: max-content;
  animation: scrollLeft 40s linear infinite;
  gap: 24px;
}

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

.tool-card {
  min-width: 120px;
  max-width: 120px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 12px;
  border-radius: 12px;
  text-align: center;
  flex-shrink: 0;
  border: 1px solid #f15a25;
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border-color: #f15a25;
  outline: 1px solid #f15a25;
  outline-offset: -1px;
}

.tool-card img {
  height: 40px;
  object-fit: contain;
  margin-bottom: 6px;
}

.tool-name {
  font-size: 13px;
  color: rgb(49, 49, 49);
  font-weight: 500;
}

